From c022f31543c7275e02d1a8c655e450e575e13bd0 Mon Sep 17 00:00:00 2001 From: Morgan Deters Date: Tue, 6 Jul 2010 00:44:14 +0000 Subject: add regressions from bug reports --- test/regress/regress0/Makefile.am | 7 + test/regress/regress0/bug1.cvc | 9 - test/regress/regress0/bug161.smt | 12 + test/regress/regress0/bug164.smt | 13 + test/regress/regress0/bug167.smt | 19 + test/regress/regress0/bug168.smt | 9 + test/regress/regress0/bug2.smt | 14498 +++++++++++++++++++++++++++++++++ test/regress/regress0/bug49.smt | 67 + test/regress/regress0/cvc3-bug15.cvc | 10 + test/regress/regress0/fuzz_1.smt | 32 + test/regress/regress1/Makefile.am | 5 +- test/regress/regress1/bug136.smt | 1149 +++ test/regress/regress1/bug148.smt | 147 + test/regress/regress1/fuzz_1.smt | 32 - test/regress/regress3/Makefile.am | 3 +- test/regress/regress3/bug143.smt | 1427 ++++ 16 files changed, 17395 insertions(+), 44 deletions(-) delete mode 100644 test/regress/regress0/bug1.cvc create mode 100644 test/regress/regress0/bug161.smt create mode 100644 test/regress/regress0/bug164.smt create mode 100644 test/regress/regress0/bug167.smt create mode 100644 test/regress/regress0/bug168.smt create mode 100644 test/regress/regress0/bug2.smt create mode 100644 test/regress/regress0/bug49.smt create mode 100644 test/regress/regress0/cvc3-bug15.cvc create mode 100644 test/regress/regress0/fuzz_1.smt create mode 100644 test/regress/regress1/bug136.smt create mode 100644 test/regress/regress1/bug148.smt delete mode 100644 test/regress/regress1/fuzz_1.smt create mode 100644 test/regress/regress3/bug143.smt diff --git a/test/regress/regress0/Makefile.am b/test/regress/regress0/Makefile.am index 47ff97d61..830b1022d 100644 --- a/test/regress/regress0/Makefile.am +++ b/test/regress/regress0/Makefile.am @@ -26,7 +26,13 @@ TESTS = \ simple-lra.smt2 \ simple-rdl.smt2 \ simple-uf.smt2 \ + bug2.smt \ bug32.cvc \ + bug49.smt \ + bug161.smt \ + bug164.smt \ + bug167.smt \ + bug168.smt \ hole6.cvc \ logops.01.cvc \ logops.02.cvc \ @@ -61,6 +67,7 @@ TESTS = \ wiki.19.cvc \ wiki.20.cvc \ wiki.21.cvc \ + fuzz_1.smt \ fuzz_3.smt EXTRA_DIST = $(TESTS) diff --git a/test/regress/regress0/bug1.cvc b/test/regress/regress0/bug1.cvc deleted file mode 100644 index 2b59638d1..000000000 --- a/test/regress/regress0/bug1.cvc +++ /dev/null @@ -1,9 +0,0 @@ -% EXPECT: VALID -x : REAL; -y : REAL; -f : REAL -> REAL; -ASSERT ((x > y) => f(x) > f (y)); -ASSERT (x = 3); -ASSERT (y = 2); -QUERY(f(x) > f (y)); -% EXIT: 20 diff --git a/test/regress/regress0/bug161.smt b/test/regress/regress0/bug161.smt new file mode 100644 index 000000000..be9b7c486 --- /dev/null +++ b/test/regress/regress0/bug161.smt @@ -0,0 +1,12 @@ +(benchmark uart +:logic QF_LRA +:extrafuns ((x_1 Real)) +:status unsat +:formula +(let (?n1 10) +(flet ($n2 (= x_1 ?n1)) +(let (?n3 1) +(flet ($n4 (< x_1 ?n3)) +(flet ($n5 (and $n2 $n4)) +$n5 +)))))) diff --git a/test/regress/regress0/bug164.smt b/test/regress/regress0/bug164.smt new file mode 100644 index 000000000..c992b7f1f --- /dev/null +++ b/test/regress/regress0/bug164.smt @@ -0,0 +1,13 @@ +(benchmark Carpark2_t1_1.smt +:logic QF_LRA +:extrafuns ((x_34 Real)) +:extrafuns ((x_13 Real)) +:extrafuns ((x_30 Real)) +:extrafuns ((x_59 Real)) +:status unsat +:formula +(and (not (<= x_59 0)) + (= x_30 x_59) + (= x_30 0) + (or true (= x_13 x_34))) +) diff --git a/test/regress/regress0/bug167.smt b/test/regress/regress0/bug167.smt new file mode 100644 index 000000000..075cf3914 --- /dev/null +++ b/test/regress/regress0/bug167.smt @@ -0,0 +1,19 @@ +(benchmark tta_startup +:logic QF_LRA +:extrafuns ((x_62 Real)) +:extrafuns ((x_63 Real)) +:extrafuns ((x_65 Real)) +:extrafuns ((x_22 Real)) +:extrafuns ((x_21 Real)) +:extrafuns ((x_53 Real)) +:extrafuns ((x_54 Real)) +:status sat +:formula +(and + (= x_54 (ite (= 2 x_53) x_22 x_21)) + (or (= 4 x_65) (= 3 x_65) (= 2 x_65) (= 1 x_65)) + (or (= 4 x_63) (= 1 x_63)) + (<= x_62 4) + (or (= 1 x_62) (= 4 x_62)) +) +) diff --git a/test/regress/regress0/bug168.smt b/test/regress/regress0/bug168.smt new file mode 100644 index 000000000..8fb0ddf5d --- /dev/null +++ b/test/regress/regress0/bug168.smt @@ -0,0 +1,9 @@ +(benchmark fuzzsmt +:logic QF_LRA +:extrafuns ((v0 Real)) +:status sat +:formula +(let (?n1 3) +(flet ($n2 (distinct ?n1 v0)) +$n2 +))) diff --git a/test/regress/regress0/bug2.smt b/test/regress/regress0/bug2.smt new file mode 100644 index 000000000..cfc0f9f7c --- /dev/null +++ b/test/regress/regress0/bug2.smt @@ -0,0 +1,14498 @@ +(benchmark b +:status sat +:logic QF_UF +:extrapreds ((x1)) +:extrapreds ((x2)) +:extrapreds ((x3)) +:extrapreds ((x4)) +:extrapreds ((x5)) +:extrapreds ((x6)) +:extrapreds ((x7)) +:extrapreds ((x8)) +:extrapreds ((x9)) +:extrapreds ((x10)) +:extrapreds ((x11)) +:extrapreds ((x12)) +:extrapreds ((x13)) +:extrapreds ((x14)) +:extrapreds ((x15)) +:extrapreds ((x16)) +:extrapreds ((x17)) +:extrapreds ((x18)) +:extrapreds ((x19)) +:extrapreds ((x20)) +:extrapreds ((x21)) +:extrapreds ((x22)) +:extrapreds ((x23)) +:extrapreds ((x24)) +:extrapreds ((x25)) +:extrapreds ((x26)) +:extrapreds ((x27)) +:extrapreds ((x28)) +:extrapreds ((x29)) +:extrapreds ((x30)) +:extrapreds ((x31)) +:extrapreds ((x32)) +:extrapreds ((x33)) +:extrapreds ((x34)) +:extrapreds ((x35)) +:extrapreds ((x36)) +:extrapreds ((x37)) +:extrapreds ((x38)) +:extrapreds ((x39)) +:extrapreds ((x40)) +:extrapreds ((x41)) +:extrapreds ((x42)) +:extrapreds ((x43)) +:extrapreds ((x44)) +:extrapreds ((x45)) +:extrapreds ((x46)) +:extrapreds ((x47)) +:extrapreds ((x48)) +:extrapreds ((x49)) +:extrapreds ((x50)) +:extrapreds ((x51)) +:extrapreds ((x52)) +:extrapreds ((x53)) +:extrapreds ((x54)) +:extrapreds ((x55)) +:extrapreds ((x56)) +:extrapreds ((x57)) +:extrapreds ((x58)) +:extrapreds ((x59)) +:extrapreds ((x60)) +:extrapreds ((x61)) +:extrapreds ((x62)) +:extrapreds ((x63)) +:extrapreds ((x64)) +:extrapreds ((x65)) +:extrapreds ((x66)) +:extrapreds ((x67)) +:extrapreds ((x68)) +:extrapreds ((x69)) +:extrapreds ((x70)) +:extrapreds ((x71)) +:extrapreds ((x72)) +:extrapreds ((x73)) +:extrapreds ((x74)) +:extrapreds ((x75)) +:extrapreds ((x76)) +:extrapreds ((x77)) +:extrapreds ((x78)) +:extrapreds ((x79)) +:extrapreds ((x80)) +:extrapreds ((x81)) +:extrapreds ((x82)) +:extrapreds ((x83)) +:extrapreds ((x84)) +:extrapreds ((x85)) +:extrapreds ((x86)) +:extrapreds ((x87)) +:extrapreds ((x88)) +:extrapreds ((x89)) +:extrapreds ((x90)) +:extrapreds ((x91)) +:extrapreds ((x92)) +:extrapreds ((x93)) +:extrapreds ((x94)) +:extrapreds ((x95)) +:extrapreds ((x96)) +:extrapreds ((x97)) +:extrapreds ((x98)) +:extrapreds ((x99)) +:extrapreds ((x100)) +:extrapreds ((x101)) +:extrapreds ((x102)) +:extrapreds ((x103)) +:extrapreds ((x104)) +:extrapreds ((x105)) +:extrapreds ((x106)) +:extrapreds ((x107)) +:extrapreds ((x108)) +:extrapreds ((x109)) +:extrapreds ((x110)) +:extrapreds ((x111)) +:extrapreds ((x112)) +:extrapreds ((x113)) +:extrapreds ((x114)) +:extrapreds ((x115)) +:extrapreds ((x116)) +:extrapreds ((x117)) +:extrapreds ((x118)) +:extrapreds ((x119)) +:extrapreds ((x120)) +:extrapreds ((x121)) +:extrapreds ((x122)) +:extrapreds ((x123)) +:extrapreds ((x124)) +:extrapreds ((x125)) +:extrapreds ((x126)) +:extrapreds ((x127)) +:extrapreds ((x128)) +:extrapreds ((x129)) +:extrapreds ((x130)) +:extrapreds ((x131)) +:extrapreds ((x132)) +:extrapreds ((x133)) +:extrapreds ((x134)) +:extrapreds ((x135)) +:extrapreds ((x136)) +:extrapreds ((x137)) +:extrapreds ((x138)) +:extrapreds ((x139)) +:extrapreds ((x140)) +:extrapreds ((x141)) +:extrapreds ((x142)) +:extrapreds ((x143)) +:extrapreds ((x144)) +:extrapreds ((x145)) +:extrapreds ((x146)) +:extrapreds ((x147)) +:extrapreds ((x148)) +:extrapreds ((x149)) +:extrapreds ((x150)) +:extrapreds ((x151)) +:extrapreds ((x152)) +:extrapreds ((x153)) +:extrapreds ((x154)) +:extrapreds ((x155)) +:extrapreds ((x156)) +:extrapreds ((x157)) +:extrapreds ((x158)) +:extrapreds ((x159)) +:extrapreds ((x160)) +:extrapreds ((x161)) +:extrapreds ((x162)) +:extrapreds ((x163)) +:extrapreds ((x164)) +:extrapreds ((x165)) +:extrapreds ((x166)) +:extrapreds ((x167)) +:extrapreds ((x168)) +:extrapreds ((x169)) +:extrapreds ((x170)) +:extrapreds ((x171)) +:extrapreds ((x172)) +:extrapreds ((x173)) +:extrapreds ((x174)) +:extrapreds ((x175)) +:extrapreds ((x176)) +:extrapreds ((x177)) +:extrapreds ((x178)) +:extrapreds ((x179)) +:extrapreds ((x180)) +:extrapreds ((x181)) +:extrapreds ((x182)) +:extrapreds ((x183)) +:extrapreds ((x184)) +:extrapreds ((x185)) +:extrapreds ((x186)) +:extrapreds ((x187)) +:extrapreds ((x188)) +:extrapreds ((x189)) +:extrapreds ((x190)) +:extrapreds ((x191)) +:extrapreds ((x192)) +:extrapreds ((x193)) +:extrapreds ((x194)) +:extrapreds ((x195)) +:extrapreds ((x196)) +:extrapreds ((x197)) +:extrapreds ((x198)) +:extrapreds ((x199)) +:extrapreds ((x200)) +:extrapreds ((x201)) +:extrapreds ((x202)) +:extrapreds ((x203)) +:extrapreds ((x204)) +:extrapreds ((x205)) +:extrapreds ((x206)) +:extrapreds ((x207)) +:extrapreds ((x208)) +:extrapreds ((x209)) +:extrapreds ((x210)) +:extrapreds ((x211)) +:extrapreds ((x212)) +:extrapreds ((x213)) +:extrapreds ((x214)) +:extrapreds ((x215)) +:extrapreds ((x216)) +:extrapreds ((x217)) +:extrapreds ((x218)) +:extrapreds ((x219)) +:extrapreds ((x220)) +:extrapreds ((x221)) +:extrapreds ((x222)) +:extrapreds ((x223)) +:extrapreds ((x224)) +:extrapreds ((x225)) +:extrapreds ((x226)) +:extrapreds ((x227)) +:extrapreds ((x228)) +:extrapreds ((x229)) +:extrapreds ((x230)) +:extrapreds ((x231)) +:extrapreds ((x232)) +:extrapreds ((x233)) +:extrapreds ((x234)) +:extrapreds ((x235)) +:extrapreds ((x236)) +:extrapreds ((x237)) +:extrapreds ((x238)) +:extrapreds ((x239)) +:extrapreds ((x240)) +:extrapreds ((x241)) +:extrapreds ((x242)) +:extrapreds ((x243)) +:extrapreds ((x244)) +:extrapreds ((x245)) +:extrapreds ((x246)) +:extrapreds ((x247)) +:extrapreds ((x248)) +:extrapreds ((x249)) +:extrapreds ((x250)) +:extrapreds ((x251)) +:extrapreds ((x252)) +:extrapreds ((x253)) +:extrapreds ((x254)) +:extrapreds ((x255)) +:extrapreds ((x256)) +:extrapreds ((x257)) +:extrapreds ((x258)) +:extrapreds ((x259)) +:extrapreds ((x260)) +:extrapreds ((x261)) +:extrapreds ((x262)) +:extrapreds ((x263)) +:extrapreds ((x264)) +:extrapreds ((x265)) +:extrapreds ((x266)) +:extrapreds ((x267)) +:extrapreds ((x268)) +:extrapreds ((x269)) +:extrapreds ((x270)) +:extrapreds ((x271)) +:extrapreds ((x272)) +:extrapreds ((x273)) +:extrapreds ((x274)) +:extrapreds ((x275)) +:extrapreds ((x276)) +:extrapreds ((x277)) +:extrapreds ((x278)) +:extrapreds ((x279)) +:extrapreds ((x280)) +:extrapreds ((x281)) +:extrapreds ((x282)) +:extrapreds ((x283)) +:extrapreds ((x284)) +:extrapreds ((x285)) +:extrapreds ((x286)) +:extrapreds ((x287)) +:extrapreds ((x288)) +:extrapreds ((x289)) +:extrapreds ((x290)) +:extrapreds ((x291)) +:extrapreds ((x292)) +:extrapreds ((x293)) +:extrapreds ((x294)) +:extrapreds ((x295)) +:extrapreds ((x296)) +:extrapreds ((x297)) +:extrapreds ((x298)) +:extrapreds ((x299)) +:extrapreds ((x300)) +:extrapreds ((x301)) +:extrapreds ((x302)) +:extrapreds ((x303)) +:extrapreds ((x304)) +:extrapreds ((x305)) +:extrapreds ((x306)) +:extrapreds ((x307)) +:extrapreds ((x308)) +:extrapreds ((x309)) +:extrapreds ((x310)) +:extrapreds ((x311)) +:extrapreds ((x312)) +:extrapreds ((x313)) +:extrapreds ((x314)) +:extrapreds ((x315)) +:extrapreds ((x316)) +:extrapreds ((x317)) +:extrapreds ((x318)) +:extrapreds ((x319)) +:extrapreds ((x320)) +:extrapreds ((x321)) +:extrapreds ((x322)) +:extrapreds ((x323)) +:extrapreds ((x324)) +:extrapreds ((x325)) +:extrapreds ((x326)) +:extrapreds ((x327)) +:extrapreds ((x328)) +:extrapreds ((x329)) +:extrapreds ((x330)) +:extrapreds ((x331)) +:extrapreds ((x332)) +:extrapreds ((x333)) +:extrapreds ((x334)) +:extrapreds ((x335)) +:extrapreds ((x336)) +:extrapreds ((x337)) +:extrapreds ((x338)) +:extrapreds ((x339)) +:extrapreds ((x340)) +:extrapreds ((x341)) +:extrapreds ((x342)) +:extrapreds ((x343)) +:extrapreds ((x344)) +:extrapreds ((x345)) +:extrapreds ((x346)) +:extrapreds ((x347)) +:extrapreds ((x348)) +:extrapreds ((x349)) +:extrapreds ((x350)) +:extrapreds ((x351)) +:extrapreds ((x352)) +:extrapreds ((x353)) +:extrapreds ((x354)) +:extrapreds ((x355)) +:extrapreds ((x356)) +:extrapreds ((x357)) +:extrapreds ((x358)) +:extrapreds ((x359)) +:extrapreds ((x360)) +:extrapreds ((x361)) +:extrapreds ((x362)) +:extrapreds ((x363)) +:extrapreds ((x364)) +:extrapreds ((x365)) +:extrapreds ((x366)) +:extrapreds ((x367)) +:extrapreds ((x368)) +:extrapreds ((x369)) +:extrapreds ((x370)) +:extrapreds ((x371)) +:extrapreds ((x372)) +:extrapreds ((x373)) +:extrapreds ((x374)) +:extrapreds ((x375)) +:extrapreds ((x376)) +:extrapreds ((x377)) +:extrapreds ((x378)) +:extrapreds ((x379)) +:extrapreds ((x380)) +:extrapreds ((x381)) +:extrapreds ((x382)) +:extrapreds ((x383)) +:extrapreds ((x384)) +:extrapreds ((x385)) +:extrapreds ((x386)) +:extrapreds ((x387)) +:extrapreds ((x388)) +:extrapreds ((x389)) +:extrapreds ((x390)) +:extrapreds ((x391)) +:extrapreds ((x392)) +:extrapreds ((x393)) +:extrapreds ((x394)) +:extrapreds ((x395)) +:extrapreds ((x396)) +:extrapreds ((x397)) +:extrapreds ((x398)) +:extrapreds ((x399)) +:extrapreds ((x400)) +:extrapreds ((x401)) +:extrapreds ((x402)) +:extrapreds ((x403)) +:extrapreds ((x404)) +:extrapreds ((x405)) +:extrapreds ((x406)) +:extrapreds ((x407)) +:extrapreds ((x408)) +:extrapreds ((x409)) +:extrapreds ((x410)) +:extrapreds ((x411)) +:extrapreds ((x412)) +:extrapreds ((x413)) +:extrapreds ((x414)) +:extrapreds ((x415)) +:extrapreds ((x416)) +:extrapreds ((x417)) +:extrapreds ((x418)) +:extrapreds ((x419)) +:extrapreds ((x420)) +:extrapreds ((x421)) +:extrapreds ((x422)) +:extrapreds ((x423)) +:extrapreds ((x424)) +:extrapreds ((x425)) +:extrapreds ((x426)) +:extrapreds ((x427)) +:extrapreds ((x428)) +:extrapreds ((x429)) +:extrapreds ((x430)) +:extrapreds ((x431)) +:extrapreds ((x432)) +:extrapreds ((x433)) +:extrapreds ((x434)) +:extrapreds ((x435)) +:extrapreds ((x436)) +:extrapreds ((x437)) +:extrapreds ((x438)) +:extrapreds ((x439)) +:extrapreds ((x440)) +:extrapreds ((x441)) +:extrapreds ((x442)) +:extrapreds ((x443)) +:extrapreds ((x444)) +:extrapreds ((x445)) +:extrapreds ((x446)) +:extrapreds ((x447)) +:extrapreds ((x448)) +:extrapreds ((x449)) +:extrapreds ((x450)) +:extrapreds ((x451)) +:extrapreds ((x452)) +:extrapreds ((x453)) +:extrapreds ((x454)) +:extrapreds ((x455)) +:extrapreds ((x456)) +:extrapreds ((x457)) +:extrapreds ((x458)) +:extrapreds ((x459)) +:extrapreds ((x460)) +:extrapreds ((x461)) +:extrapreds ((x462)) +:extrapreds ((x463)) +:extrapreds ((x464)) +:extrapreds ((x465)) +:extrapreds ((x466)) +:extrapreds ((x467)) +:extrapreds ((x468)) +:extrapreds ((x469)) +:extrapreds ((x470)) +:extrapreds ((x471)) +:extrapreds ((x472)) +:extrapreds ((x473)) +:extrapreds ((x474)) +:extrapreds ((x475)) +:extrapreds ((x476)) +:extrapreds ((x477)) +:extrapreds ((x478)) +:extrapreds ((x479)) +:extrapreds ((x480)) +:extrapreds ((x481)) +:extrapreds ((x482)) +:extrapreds ((x483)) +:extrapreds ((x484)) +:extrapreds ((x485)) +:extrapreds ((x486)) +:extrapreds ((x487)) +:extrapreds ((x488)) +:extrapreds ((x489)) +:extrapreds ((x490)) +:extrapreds ((x491)) +:extrapreds ((x492)) +:extrapreds ((x493)) +:extrapreds ((x494)) +:extrapreds ((x495)) +:extrapreds ((x496)) +:extrapreds ((x497)) +:extrapreds ((x498)) +:extrapreds ((x499)) +:extrapreds ((x500)) +:extrapreds ((x501)) +:extrapreds ((x502)) +:extrapreds ((x503)) +:extrapreds ((x504)) +:extrapreds ((x505)) +:extrapreds ((x506)) +:extrapreds ((x507)) +:extrapreds ((x508)) +:extrapreds ((x509)) +:extrapreds ((x510)) +:extrapreds ((x511)) +:extrapreds ((x512)) +:extrapreds ((x513)) +:extrapreds ((x514)) +:extrapreds ((x515)) +:extrapreds ((x516)) +:extrapreds ((x517)) +:extrapreds ((x518)) +:extrapreds ((x519)) +:extrapreds ((x520)) +:extrapreds ((x521)) +:extrapreds ((x522)) +:extrapreds ((x523)) +:extrapreds ((x524)) +:extrapreds ((x525)) +:extrapreds ((x526)) +:extrapreds ((x527)) +:extrapreds ((x528)) +:extrapreds ((x529)) +:extrapreds ((x530)) +:extrapreds ((x531)) +:extrapreds ((x532)) +:extrapreds ((x533)) +:extrapreds ((x534)) +:extrapreds ((x535)) +:extrapreds ((x536)) +:extrapreds ((x537)) +:extrapreds ((x538)) +:extrapreds ((x539)) +:extrapreds ((x540)) +:extrapreds ((x541)) +:extrapreds ((x542)) +:extrapreds ((x543)) +:extrapreds ((x544)) +:extrapreds ((x545)) +:extrapreds ((x546)) +:extrapreds ((x547)) +:extrapreds ((x548)) +:extrapreds ((x549)) +:extrapreds ((x550)) +:extrapreds ((x551)) +:extrapreds ((x552)) +:extrapreds ((x553)) +:extrapreds ((x554)) +:extrapreds ((x555)) +:extrapreds ((x556)) +:extrapreds ((x557)) +:extrapreds ((x558)) +:extrapreds ((x559)) +:extrapreds ((x560)) +:extrapreds ((x561)) +:extrapreds ((x562)) +:extrapreds ((x563)) +:extrapreds ((x564)) +:extrapreds ((x565)) +:extrapreds ((x566)) +:extrapreds ((x567)) +:extrapreds ((x568)) +:extrapreds ((x569)) +:extrapreds ((x570)) +:extrapreds ((x571)) +:extrapreds ((x572)) +:extrapreds ((x573)) +:extrapreds ((x574)) +:extrapreds ((x575)) +:extrapreds ((x576)) +:extrapreds ((x577)) +:extrapreds ((x578)) +:extrapreds ((x579)) +:extrapreds ((x580)) +:extrapreds ((x581)) +:extrapreds ((x582)) +:extrapreds ((x583)) +:extrapreds ((x584)) +:extrapreds ((x585)) +:extrapreds ((x586)) +:extrapreds ((x587)) +:extrapreds ((x588)) +:extrapreds ((x589)) +:extrapreds ((x590)) +:extrapreds ((x591)) +:extrapreds ((x592)) +:extrapreds ((x593)) +:extrapreds ((x594)) +:extrapreds ((x595)) +:extrapreds ((x596)) +:extrapreds ((x597)) +:extrapreds ((x598)) +:extrapreds ((x599)) +:extrapreds ((x600)) +:extrapreds ((x601)) +:extrapreds ((x602)) +:extrapreds ((x603)) +:extrapreds ((x604)) +:extrapreds ((x605)) +:extrapreds ((x606)) +:extrapreds ((x607)) +:extrapreds ((x608)) +:extrapreds ((x609)) +:extrapreds ((x610)) +:extrapreds ((x611)) +:extrapreds ((x612)) +:extrapreds ((x613)) +:extrapreds ((x614)) +:extrapreds ((x615)) +:extrapreds ((x616)) +:extrapreds ((x617)) +:extrapreds ((x618)) +:extrapreds ((x619)) +:extrapreds ((x620)) +:extrapreds ((x621)) +:extrapreds ((x622)) +:extrapreds ((x623)) +:extrapreds ((x624)) +:extrapreds ((x625)) +:extrapreds ((x626)) +:extrapreds ((x627)) +:extrapreds ((x628)) +:extrapreds ((x629)) +:extrapreds ((x630)) +:extrapreds ((x631)) +:extrapreds ((x632)) +:extrapreds ((x633)) +:extrapreds ((x634)) +:extrapreds ((x635)) +:extrapreds ((x636)) +:extrapreds ((x637)) +:extrapreds ((x638)) +:extrapreds ((x639)) +:extrapreds ((x640)) +:extrapreds ((x641)) +:extrapreds ((x642)) +:extrapreds ((x643)) +:extrapreds ((x644)) +:extrapreds ((x645)) +:extrapreds ((x646)) +:extrapreds ((x647)) +:extrapreds ((x648)) +:extrapreds ((x649)) +:extrapreds ((x650)) +:extrapreds ((x651)) +:extrapreds ((x652)) +:extrapreds ((x653)) +:extrapreds ((x654)) +:extrapreds ((x655)) +:extrapreds ((x656)) +:extrapreds ((x657)) +:extrapreds ((x658)) +:extrapreds ((x659)) +:extrapreds ((x660)) +:extrapreds ((x661)) +:extrapreds ((x662)) +:extrapreds ((x663)) +:extrapreds ((x664)) +:extrapreds ((x665)) +:extrapreds ((x666)) +:extrapreds ((x667)) +:extrapreds ((x668)) +:extrapreds ((x669)) +:extrapreds ((x670)) +:extrapreds ((x671)) +:extrapreds ((x672)) +:extrapreds ((x673)) +:extrapreds ((x674)) +:extrapreds ((x675)) +:extrapreds ((x676)) +:extrapreds ((x677)) +:extrapreds ((x678)) +:extrapreds ((x679)) +:extrapreds ((x680)) +:extrapreds ((x681)) +:extrapreds ((x682)) +:extrapreds ((x683)) +:extrapreds ((x684)) +:extrapreds ((x685)) +:extrapreds ((x686)) +:extrapreds ((x687)) +:extrapreds ((x688)) +:extrapreds ((x689)) +:extrapreds ((x690)) +:extrapreds ((x691)) +:extrapreds ((x692)) +:extrapreds ((x693)) +:extrapreds ((x694)) +:extrapreds ((x695)) +:extrapreds ((x696)) +:extrapreds ((x697)) +:extrapreds ((x698)) +:extrapreds ((x699)) +:extrapreds ((x700)) +:extrapreds ((x701)) +:extrapreds ((x702)) +:extrapreds ((x703)) +:extrapreds ((x704)) +:extrapreds ((x705)) +:extrapreds ((x706)) +:extrapreds ((x707)) +:extrapreds ((x708)) +:extrapreds ((x709)) +:extrapreds ((x710)) +:extrapreds ((x711)) +:extrapreds ((x712)) +:extrapreds ((x713)) +:extrapreds ((x714)) +:extrapreds ((x715)) +:extrapreds ((x716)) +:extrapreds ((x717)) +:extrapreds ((x718)) +:extrapreds ((x719)) +:extrapreds ((x720)) +:extrapreds ((x721)) +:extrapreds ((x722)) +:extrapreds ((x723)) +:extrapreds ((x724)) +:extrapreds ((x725)) +:extrapreds ((x726)) +:extrapreds ((x727)) +:extrapreds ((x728)) +:extrapreds ((x729)) +:extrapreds ((x730)) +:extrapreds ((x731)) +:extrapreds ((x732)) +:extrapreds ((x733)) +:extrapreds ((x734)) +:extrapreds ((x735)) +:extrapreds ((x736)) +:extrapreds ((x737)) +:extrapreds ((x738)) +:extrapreds ((x739)) +:extrapreds ((x740)) +:extrapreds ((x741)) +:extrapreds ((x742)) +:extrapreds ((x743)) +:extrapreds ((x744)) +:extrapreds ((x745)) +:extrapreds ((x746)) +:extrapreds ((x747)) +:extrapreds ((x748)) +:extrapreds ((x749)) +:extrapreds ((x750)) +:extrapreds ((x751)) +:extrapreds ((x752)) +:extrapreds ((x753)) +:extrapreds ((x754)) +:extrapreds ((x755)) +:extrapreds ((x756)) +:extrapreds ((x757)) +:extrapreds ((x758)) +:extrapreds ((x759)) +:extrapreds ((x760)) +:extrapreds ((x761)) +:extrapreds ((x762)) +:extrapreds ((x763)) +:extrapreds ((x764)) +:extrapreds ((x765)) +:extrapreds ((x766)) +:extrapreds ((x767)) +:extrapreds ((x768)) +:extrapreds ((x769)) +:extrapreds ((x770)) +:extrapreds ((x771)) +:extrapreds ((x772)) +:extrapreds ((x773)) +:extrapreds ((x774)) +:extrapreds ((x775)) +:extrapreds ((x776)) +:extrapreds ((x777)) +:extrapreds ((x778)) +:extrapreds ((x779)) +:extrapreds ((x780)) +:extrapreds ((x781)) +:extrapreds ((x782)) +:extrapreds ((x783)) +:extrapreds ((x784)) +:extrapreds ((x785)) +:extrapreds ((x786)) +:extrapreds ((x787)) +:extrapreds ((x788)) +:extrapreds ((x789)) +:extrapreds ((x790)) +:extrapreds ((x791)) +:extrapreds ((x792)) +:extrapreds ((x793)) +:extrapreds ((x794)) +:extrapreds ((x795)) +:extrapreds ((x796)) +:extrapreds ((x797)) +:extrapreds ((x798)) +:extrapreds ((x799)) +:extrapreds ((x800)) +:extrapreds ((x801)) +:extrapreds ((x802)) +:extrapreds ((x803)) +:extrapreds ((x804)) +:extrapreds ((x805)) +:extrapreds ((x806)) +:extrapreds ((x807)) +:extrapreds ((x808)) +:extrapreds ((x809)) +:extrapreds ((x810)) +:extrapreds ((x811)) +:extrapreds ((x812)) +:extrapreds ((x813)) +:extrapreds ((x814)) +:extrapreds ((x815)) +:extrapreds ((x816)) +:extrapreds ((x817)) +:extrapreds ((x818)) +:extrapreds ((x819)) +:extrapreds ((x820)) +:extrapreds ((x821)) +:extrapreds ((x822)) +:extrapreds ((x823)) +:extrapreds ((x824)) +:extrapreds ((x825)) +:extrapreds ((x826)) +:extrapreds ((x827)) +:extrapreds ((x828)) +:extrapreds ((x829)) +:extrapreds ((x830)) +:extrapreds ((x831)) +:extrapreds ((x832)) +:extrapreds ((x833)) +:extrapreds ((x834)) +:extrapreds ((x835)) +:extrapreds ((x836)) +:extrapreds ((x837)) +:extrapreds ((x838)) +:extrapreds ((x839)) +:extrapreds ((x840)) +:extrapreds ((x841)) +:extrapreds ((x842)) +:extrapreds ((x843)) +:extrapreds ((x844)) +:extrapreds ((x845)) +:extrapreds ((x846)) +:extrapreds ((x847)) +:extrapreds ((x848)) +:extrapreds ((x849)) +:extrapreds ((x850)) +:extrapreds ((x851)) +:extrapreds ((x852)) +:extrapreds ((x853)) +:extrapreds ((x854)) +:extrapreds ((x855)) +:extrapreds ((x856)) +:extrapreds ((x857)) +:extrapreds ((x858)) +:extrapreds ((x859)) +:extrapreds ((x860)) +:extrapreds ((x861)) +:extrapreds ((x862)) +:extrapreds ((x863)) +:extrapreds ((x864)) +:extrapreds ((x865)) +:extrapreds ((x866)) +:extrapreds ((x867)) +:extrapreds ((x868)) +:extrapreds ((x869)) +:extrapreds ((x870)) +:extrapreds ((x871)) +:extrapreds ((x872)) +:extrapreds ((x873)) +:extrapreds ((x874)) +:extrapreds ((x875)) +:extrapreds ((x876)) +:extrapreds ((x877)) +:extrapreds ((x878)) +:extrapreds ((x879)) +:extrapreds ((x880)) +:extrapreds ((x881)) +:extrapreds ((x882)) +:extrapreds ((x883)) +:extrapreds ((x884)) +:extrapreds ((x885)) +:extrapreds ((x886)) +:extrapreds ((x887)) +:extrapreds ((x888)) +:extrapreds ((x889)) +:extrapreds ((x890)) +:extrapreds ((x891)) +:extrapreds ((x892)) +:extrapreds ((x893)) +:extrapreds ((x894)) +:extrapreds ((x895)) +:extrapreds ((x896)) +:extrapreds ((x897)) +:extrapreds ((x898)) +:extrapreds ((x899)) +:extrapreds ((x900)) +:extrapreds ((x901)) +:extrapreds ((x902)) +:extrapreds ((x903)) +:extrapreds ((x904)) +:extrapreds ((x905)) +:extrapreds ((x906)) +:extrapreds ((x907)) +:extrapreds ((x908)) +:extrapreds ((x909)) +:extrapreds ((x910)) +:extrapreds ((x911)) +:extrapreds ((x912)) +:extrapreds ((x913)) +:extrapreds ((x914)) +:extrapreds ((x915)) +:extrapreds ((x916)) +:extrapreds ((x917)) +:extrapreds ((x918)) +:extrapreds ((x919)) +:extrapreds ((x920)) +:extrapreds ((x921)) +:extrapreds ((x922)) +:extrapreds ((x923)) +:extrapreds ((x924)) +:extrapreds ((x925)) +:extrapreds ((x926)) +:extrapreds ((x927)) +:extrapreds ((x928)) +:extrapreds ((x929)) +:extrapreds ((x930)) +:extrapreds ((x931)) +:extrapreds ((x932)) +:extrapreds ((x933)) +:extrapreds ((x934)) +:extrapreds ((x935)) +:extrapreds ((x936)) +:extrapreds ((x937)) +:extrapreds ((x938)) +:extrapreds ((x939)) +:extrapreds ((x940)) +:extrapreds ((x941)) +:extrapreds ((x942)) +:extrapreds ((x943)) +:extrapreds ((x944)) +:extrapreds ((x945)) +:extrapreds ((x946)) +:extrapreds ((x947)) +:extrapreds ((x948)) +:extrapreds ((x949)) +:extrapreds ((x950)) +:extrapreds ((x951)) +:extrapreds ((x952)) +:extrapreds ((x953)) +:extrapreds ((x954)) +:extrapreds ((x955)) +:extrapreds ((x956)) +:extrapreds ((x957)) +:extrapreds ((x958)) +:extrapreds ((x959)) +:extrapreds ((x960)) +:extrapreds ((x961)) +:extrapreds ((x962)) +:extrapreds ((x963)) +:extrapreds ((x964)) +:extrapreds ((x965)) +:extrapreds ((x966)) +:extrapreds ((x967)) +:extrapreds ((x968)) +:extrapreds ((x969)) +:extrapreds ((x970)) +:extrapreds ((x971)) +:extrapreds ((x972)) +:extrapreds ((x973)) +:extrapreds ((x974)) +:extrapreds ((x975)) +:extrapreds ((x976)) +:extrapreds ((x977)) +:extrapreds ((x978)) +:extrapreds ((x979)) +:extrapreds ((x980)) +:extrapreds ((x981)) +:extrapreds ((x982)) +:extrapreds ((x983)) +:extrapreds ((x984)) +:extrapreds ((x985)) +:extrapreds ((x986)) +:extrapreds ((x987)) +:extrapreds ((x988)) +:extrapreds ((x989)) +:extrapreds ((x990)) +:extrapreds ((x991)) +:extrapreds ((x992)) +:extrapreds ((x993)) +:extrapreds ((x994)) +:extrapreds ((x995)) +:extrapreds ((x996)) +:extrapreds ((x997)) +:extrapreds ((x998)) +:extrapreds ((x999)) +:extrapreds ((x1000)) +:extrapreds ((x1001)) +:extrapreds ((x1002)) +:extrapreds ((x1003)) +:extrapreds ((x1004)) +:extrapreds ((x1005)) +:extrapreds ((x1006)) +:extrapreds ((x1007)) +:extrapreds ((x1008)) +:extrapreds ((x1009)) +:extrapreds ((x1010)) +:extrapreds ((x1011)) +:extrapreds ((x1012)) +:extrapreds ((x1013)) +:extrapreds ((x1014)) +:extrapreds ((x1015)) +:extrapreds ((x1016)) +:extrapreds ((x1017)) +:extrapreds ((x1018)) +:extrapreds ((x1019)) +:extrapreds ((x1020)) +:extrapreds ((x1021)) +:extrapreds ((x1022)) +:extrapreds ((x1023)) +:extrapreds ((x1024)) +:extrapreds ((x1025)) +:extrapreds ((x1026)) +:extrapreds ((x1027)) +:extrapreds ((x1028)) +:extrapreds ((x1029)) +:extrapreds ((x1030)) +:extrapreds ((x1031)) +:extrapreds ((x1032)) +:extrapreds ((x1033)) +:extrapreds ((x1034)) +:extrapreds ((x1035)) +:extrapreds ((x1036)) +:extrapreds ((x1037)) +:extrapreds ((x1038)) +:extrapreds ((x1039)) +:extrapreds ((x1040)) +:extrapreds ((x1041)) +:extrapreds ((x1042)) +:extrapreds ((x1043)) +:extrapreds ((x1044)) +:extrapreds ((x1045)) +:extrapreds ((x1046)) +:extrapreds ((x1047)) +:extrapreds ((x1048)) +:extrapreds ((x1049)) +:extrapreds ((x1050)) +:extrapreds ((x1051)) +:extrapreds ((x1052)) +:extrapreds ((x1053)) +:extrapreds ((x1054)) +:extrapreds ((x1055)) +:extrapreds ((x1056)) +:extrapreds ((x1057)) +:extrapreds ((x1058)) +:extrapreds ((x1059)) +:extrapreds ((x1060)) +:extrapreds ((x1061)) +:extrapreds ((x1062)) +:extrapreds ((x1063)) +:extrapreds ((x1064)) +:extrapreds ((x1065)) +:extrapreds ((x1066)) +:extrapreds ((x1067)) +:extrapreds ((x1068)) +:extrapreds ((x1069)) +:extrapreds ((x1070)) +:extrapreds ((x1071)) +:extrapreds ((x1072)) +:extrapreds ((x1073)) +:extrapreds ((x1074)) +:extrapreds ((x1075)) +:extrapreds ((x1076)) +:extrapreds ((x1077)) +:extrapreds ((x1078)) +:extrapreds ((x1079)) +:extrapreds ((x1080)) +:extrapreds ((x1081)) +:extrapreds ((x1082)) +:extrapreds ((x1083)) +:extrapreds ((x1084)) +:extrapreds ((x1085)) +:extrapreds ((x1086)) +:extrapreds ((x1087)) +:extrapreds ((x1088)) +:extrapreds ((x1089)) +:extrapreds ((x1090)) +:extrapreds ((x1091)) +:extrapreds ((x1092)) +:extrapreds ((x1093)) +:extrapreds ((x1094)) +:extrapreds ((x1095)) +:extrapreds ((x1096)) +:extrapreds ((x1097)) +:extrapreds ((x1098)) +:extrapreds ((x1099)) +:extrapreds ((x1100)) +:extrapreds ((x1101)) +:extrapreds ((x1102)) +:extrapreds ((x1103)) +:extrapreds ((x1104)) +:extrapreds ((x1105)) +:extrapreds ((x1106)) +:extrapreds ((x1107)) +:extrapreds ((x1108)) +:extrapreds ((x1109)) +:extrapreds ((x1110)) +:extrapreds ((x1111)) +:extrapreds ((x1112)) +:extrapreds ((x1113)) +:extrapreds ((x1114)) +:extrapreds ((x1115)) +:extrapreds ((x1116)) +:extrapreds ((x1117)) +:extrapreds ((x1118)) +:extrapreds ((x1119)) +:extrapreds ((x1120)) +:extrapreds ((x1121)) +:extrapreds ((x1122)) +:extrapreds ((x1123)) +:extrapreds ((x1124)) +:extrapreds ((x1125)) +:extrapreds ((x1126)) +:extrapreds ((x1127)) +:extrapreds ((x1128)) +:extrapreds ((x1129)) +:extrapreds ((x1130)) +:extrapreds ((x1131)) +:extrapreds ((x1132)) +:extrapreds ((x1133)) +:extrapreds ((x1134)) +:extrapreds ((x1135)) +:extrapreds ((x1136)) +:extrapreds ((x1137)) +:extrapreds ((x1138)) +:extrapreds ((x1139)) +:extrapreds ((x1140)) +:extrapreds ((x1141)) +:extrapreds ((x1142)) +:extrapreds ((x1143)) +:extrapreds ((x1144)) +:extrapreds ((x1145)) +:extrapreds ((x1146)) +:extrapreds ((x1147)) +:extrapreds ((x1148)) +:extrapreds ((x1149)) +:extrapreds ((x1150)) +:extrapreds ((x1151)) +:extrapreds ((x1152)) +:extrapreds ((x1153)) +:extrapreds ((x1154)) +:extrapreds ((x1155)) +:extrapreds ((x1156)) +:extrapreds ((x1157)) +:extrapreds ((x1158)) +:extrapreds ((x1159)) +:extrapreds ((x1160)) +:extrapreds ((x1161)) +:extrapreds ((x1162)) +:extrapreds ((x1163)) +:extrapreds ((x1164)) +:extrapreds ((x1165)) +:extrapreds ((x1166)) +:extrapreds ((x1167)) +:extrapreds ((x1168)) +:extrapreds ((x1169)) +:extrapreds ((x1170)) +:extrapreds ((x1171)) +:extrapreds ((x1172)) +:extrapreds ((x1173)) +:extrapreds ((x1174)) +:extrapreds ((x1175)) +:extrapreds ((x1176)) +:extrapreds ((x1177)) +:extrapreds ((x1178)) +:extrapreds ((x1179)) +:extrapreds ((x1180)) +:extrapreds ((x1181)) +:extrapreds ((x1182)) +:extrapreds ((x1183)) +:extrapreds ((x1184)) +:extrapreds ((x1185)) +:extrapreds ((x1186)) +:extrapreds ((x1187)) +:extrapreds ((x1188)) +:extrapreds ((x1189)) +:extrapreds ((x1190)) +:extrapreds ((x1191)) +:extrapreds ((x1192)) +:extrapreds ((x1193)) +:extrapreds ((x1194)) +:extrapreds ((x1195)) +:extrapreds ((x1196)) +:extrapreds ((x1197)) +:extrapreds ((x1198)) +:extrapreds ((x1199)) +:extrapreds ((x1200)) +:extrapreds ((x1201)) +:extrapreds ((x1202)) +:extrapreds ((x1203)) +:extrapreds ((x1204)) +:extrapreds ((x1205)) +:extrapreds ((x1206)) +:extrapreds ((x1207)) +:extrapreds ((x1208)) +:extrapreds ((x1209)) +:extrapreds ((x1210)) +:extrapreds ((x1211)) +:extrapreds ((x1212)) +:extrapreds ((x1213)) +:extrapreds ((x1214)) +:extrapreds ((x1215)) +:extrapreds ((x1216)) +:extrapreds ((x1217)) +:extrapreds ((x1218)) +:extrapreds ((x1219)) +:extrapreds ((x1220)) +:extrapreds ((x1221)) +:extrapreds ((x1222)) +:extrapreds ((x1223)) +:extrapreds ((x1224)) +:extrapreds ((x1225)) +:extrapreds ((x1226)) +:extrapreds ((x1227)) +:extrapreds ((x1228)) +:extrapreds ((x1229)) +:extrapreds ((x1230)) +:extrapreds ((x1231)) +:extrapreds ((x1232)) +:extrapreds ((x1233)) +:extrapreds ((x1234)) +:extrapreds ((x1235)) +:extrapreds ((x1236)) +:extrapreds ((x1237)) +:extrapreds ((x1238)) +:extrapreds ((x1239)) +:extrapreds ((x1240)) +:extrapreds ((x1241)) +:extrapreds ((x1242)) +:extrapreds ((x1243)) +:extrapreds ((x1244)) +:extrapreds ((x1245)) +:extrapreds ((x1246)) +:extrapreds ((x1247)) +:extrapreds ((x1248)) +:extrapreds ((x1249)) +:extrapreds ((x1250)) +:extrapreds ((x1251)) +:extrapreds ((x1252)) +:extrapreds ((x1253)) +:extrapreds ((x1254)) +:extrapreds ((x1255)) +:extrapreds ((x1256)) +:extrapreds ((x1257)) +:extrapreds ((x1258)) +:extrapreds ((x1259)) +:extrapreds ((x1260)) +:extrapreds ((x1261)) +:extrapreds ((x1262)) +:extrapreds ((x1263)) +:extrapreds ((x1264)) +:extrapreds ((x1265)) +:extrapreds ((x1266)) +:extrapreds ((x1267)) +:extrapreds ((x1268)) +:extrapreds ((x1269)) +:extrapreds ((x1270)) +:extrapreds ((x1271)) +:extrapreds ((x1272)) +:extrapreds ((x1273)) +:extrapreds ((x1274)) +:extrapreds ((x1275)) +:extrapreds ((x1276)) +:extrapreds ((x1277)) +:extrapreds ((x1278)) +:extrapreds ((x1279)) +:extrapreds ((x1280)) +:extrapreds ((x1281)) +:extrapreds ((x1282)) +:extrapreds ((x1283)) +:extrapreds ((x1284)) +:extrapreds ((x1285)) +:extrapreds ((x1286)) +:extrapreds ((x1287)) +:extrapreds ((x1288)) +:extrapreds ((x1289)) +:extrapreds ((x1290)) +:extrapreds ((x1291)) +:extrapreds ((x1292)) +:extrapreds ((x1293)) +:extrapreds ((x1294)) +:extrapreds ((x1295)) +:extrapreds ((x1296)) +:extrapreds ((x1297)) +:extrapreds ((x1298)) +:extrapreds ((x1299)) +:extrapreds ((x1300)) +:extrapreds ((x1301)) +:extrapreds ((x1302)) +:extrapreds ((x1303)) +:extrapreds ((x1304)) +:extrapreds ((x1305)) +:extrapreds ((x1306)) +:extrapreds ((x1307)) +:extrapreds ((x1308)) +:extrapreds ((x1309)) +:extrapreds ((x1310)) +:extrapreds ((x1311)) +:extrapreds ((x1312)) +:extrapreds ((x1313)) +:extrapreds ((x1314)) +:extrapreds ((x1315)) +:extrapreds ((x1316)) +:extrapreds ((x1317)) +:extrapreds ((x1318)) +:extrapreds ((x1319)) +:extrapreds ((x1320)) +:extrapreds ((x1321)) +:extrapreds ((x1322)) +:extrapreds ((x1323)) +:extrapreds ((x1324)) +:extrapreds ((x1325)) +:extrapreds ((x1326)) +:extrapreds ((x1327)) +:extrapreds ((x1328)) +:extrapreds ((x1329)) +:extrapreds ((x1330)) +:extrapreds ((x1331)) +:extrapreds ((x1332)) +:extrapreds ((x1333)) +:extrapreds ((x1334)) +:extrapreds ((x1335)) +:extrapreds ((x1336)) +:extrapreds ((x1337)) +:extrapreds ((x1338)) +:extrapreds ((x1339)) +:extrapreds ((x1340)) +:extrapreds ((x1341)) +:extrapreds ((x1342)) +:extrapreds ((x1343)) +:extrapreds ((x1344)) +:extrapreds ((x1345)) +:extrapreds ((x1346)) +:extrapreds ((x1347)) +:extrapreds ((x1348)) +:extrapreds ((x1349)) +:extrapreds ((x1350)) +:extrapreds ((x1351)) +:extrapreds ((x1352)) +:extrapreds ((x1353)) +:extrapreds ((x1354)) +:extrapreds ((x1355)) +:extrapreds ((x1356)) +:extrapreds ((x1357)) +:extrapreds ((x1358)) +:extrapreds ((x1359)) +:extrapreds ((x1360)) +:extrapreds ((x1361)) +:extrapreds ((x1362)) +:extrapreds ((x1363)) +:extrapreds ((x1364)) +:extrapreds ((x1365)) +:extrapreds ((x1366)) +:extrapreds ((x1367)) +:extrapreds ((x1368)) +:extrapreds ((x1369)) +:extrapreds ((x1370)) +:extrapreds ((x1371)) +:extrapreds ((x1372)) +:extrapreds ((x1373)) +:extrapreds ((x1374)) +:extrapreds ((x1375)) +:extrapreds ((x1376)) +:extrapreds ((x1377)) +:extrapreds ((x1378)) +:extrapreds ((x1379)) +:extrapreds ((x1380)) +:extrapreds ((x1381)) +:extrapreds ((x1382)) +:extrapreds ((x1383)) +:extrapreds ((x1384)) +:extrapreds ((x1385)) +:extrapreds ((x1386)) +:extrapreds ((x1387)) +:extrapreds ((x1388)) +:extrapreds ((x1389)) +:extrapreds ((x1390)) +:extrapreds ((x1391)) +:extrapreds ((x1392)) +:extrapreds ((x1393)) +:extrapreds ((x1394)) +:extrapreds ((x1395)) +:extrapreds ((x1396)) +:extrapreds ((x1397)) +:extrapreds ((x1398)) +:extrapreds ((x1399)) +:extrapreds ((x1400)) +:extrapreds ((x1401)) +:extrapreds ((x1402)) +:extrapreds ((x1403)) +:extrapreds ((x1404)) +:extrapreds ((x1405)) +:extrapreds ((x1406)) +:extrapreds ((x1407)) +:extrapreds ((x1408)) +:extrapreds ((x1409)) +:extrapreds ((x1410)) +:extrapreds ((x1411)) +:extrapreds ((x1412)) +:extrapreds ((x1413)) +:extrapreds ((x1414)) +:extrapreds ((x1415)) +:extrapreds ((x1416)) +:extrapreds ((x1417)) +:extrapreds ((x1418)) +:extrapreds ((x1419)) +:extrapreds ((x1420)) +:extrapreds ((x1421)) +:extrapreds ((x1422)) +:extrapreds ((x1423)) +:extrapreds ((x1424)) +:extrapreds ((x1425)) +:extrapreds ((x1426)) +:extrapreds ((x1427)) +:extrapreds ((x1428)) +:extrapreds ((x1429)) +:extrapreds ((x1430)) +:extrapreds ((x1431)) +:extrapreds ((x1432)) +:extrapreds ((x1433)) +:extrapreds ((x1434)) +:extrapreds ((x1435)) +:extrapreds ((x1436)) +:extrapreds ((x1437)) +:extrapreds ((x1438)) +:extrapreds ((x1439)) +:extrapreds ((x1440)) +:extrapreds ((x1441)) +:extrapreds ((x1442)) +:extrapreds ((x1443)) +:extrapreds ((x1444)) +:extrapreds ((x1445)) +:extrapreds ((x1446)) +:extrapreds ((x1447)) +:extrapreds ((x1448)) +:extrapreds ((x1449)) +:extrapreds ((x1450)) +:extrapreds ((x1451)) +:extrapreds ((x1452)) +:extrapreds ((x1453)) +:extrapreds ((x1454)) +:extrapreds ((x1455)) +:extrapreds ((x1456)) +:extrapreds ((x1457)) +:extrapreds ((x1458)) +:extrapreds ((x1459)) +:extrapreds ((x1460)) +:extrapreds ((x1461)) +:extrapreds ((x1462)) +:extrapreds ((x1463)) +:extrapreds ((x1464)) +:extrapreds ((x1465)) +:extrapreds ((x1466)) +:extrapreds ((x1467)) +:extrapreds ((x1468)) +:extrapreds ((x1469)) +:extrapreds ((x1470)) +:extrapreds ((x1471)) +:extrapreds ((x1472)) +:extrapreds ((x1473)) +:extrapreds ((x1474)) +:extrapreds ((x1475)) +:extrapreds ((x1476)) +:extrapreds ((x1477)) +:extrapreds ((x1478)) +:extrapreds ((x1479)) +:extrapreds ((x1480)) +:extrapreds ((x1481)) +:extrapreds ((x1482)) +:extrapreds ((x1483)) +:extrapreds ((x1484)) +:extrapreds ((x1485)) +:extrapreds ((x1486)) +:extrapreds ((x1487)) +:extrapreds ((x1488)) +:extrapreds ((x1489)) +:extrapreds ((x1490)) +:extrapreds ((x1491)) +:extrapreds ((x1492)) +:extrapreds ((x1493)) +:extrapreds ((x1494)) +:extrapreds ((x1495)) +:extrapreds ((x1496)) +:extrapreds ((x1497)) +:extrapreds ((x1498)) +:extrapreds ((x1499)) +:extrapreds ((x1500)) +:extrapreds ((x1501)) +:extrapreds ((x1502)) +:extrapreds ((x1503)) +:extrapreds ((x1504)) +:extrapreds ((x1505)) +:extrapreds ((x1506)) +:extrapreds ((x1507)) +:extrapreds ((x1508)) +:extrapreds ((x1509)) +:extrapreds ((x1510)) +:extrapreds ((x1511)) +:extrapreds ((x1512)) +:extrapreds ((x1513)) +:extrapreds ((x1514)) +:extrapreds ((x1515)) +:extrapreds ((x1516)) +:extrapreds ((x1517)) +:extrapreds ((x1518)) +:extrapreds ((x1519)) +:extrapreds ((x1520)) +:extrapreds ((x1521)) +:extrapreds ((x1522)) +:extrapreds ((x1523)) +:extrapreds ((x1524)) +:extrapreds ((x1525)) +:extrapreds ((x1526)) +:extrapreds ((x1527)) +:extrapreds ((x1528)) +:extrapreds ((x1529)) +:extrapreds ((x1530)) +:extrapreds ((x1531)) +:extrapreds ((x1532)) +:extrapreds ((x1533)) +:extrapreds ((x1534)) +:extrapreds ((x1535)) +:extrapreds ((x1536)) +:extrapreds ((x1537)) +:extrapreds ((x1538)) +:extrapreds ((x1539)) +:extrapreds ((x1540)) +:extrapreds ((x1541)) +:extrapreds ((x1542)) +:extrapreds ((x1543)) +:extrapreds ((x1544)) +:extrapreds ((x1545)) +:extrapreds ((x1546)) +:extrapreds ((x1547)) +:extrapreds ((x1548)) +:extrapreds ((x1549)) +:extrapreds ((x1550)) +:extrapreds ((x1551)) +:extrapreds ((x1552)) +:extrapreds ((x1553)) +:extrapreds ((x1554)) +:extrapreds ((x1555)) +:extrapreds ((x1556)) +:extrapreds ((x1557)) +:extrapreds ((x1558)) +:extrapreds ((x1559)) +:extrapreds ((x1560)) +:extrapreds ((x1561)) +:extrapreds ((x1562)) +:extrapreds ((x1563)) +:extrapreds ((x1564)) +:extrapreds ((x1565)) +:extrapreds ((x1566)) +:extrapreds ((x1567)) +:extrapreds ((x1568)) +:extrapreds ((x1569)) +:extrapreds ((x1570)) +:extrapreds ((x1571)) +:extrapreds ((x1572)) +:extrapreds ((x1573)) +:extrapreds ((x1574)) +:extrapreds ((x1575)) +:extrapreds ((x1576)) +:extrapreds ((x1577)) +:extrapreds ((x1578)) +:extrapreds ((x1579)) +:extrapreds ((x1580)) +:extrapreds ((x1581)) +:extrapreds ((x1582)) +:extrapreds ((x1583)) +:extrapreds ((x1584)) +:extrapreds ((x1585)) +:extrapreds ((x1586)) +:extrapreds ((x1587)) +:extrapreds ((x1588)) +:extrapreds ((x1589)) +:extrapreds ((x1590)) +:extrapreds ((x1591)) +:extrapreds ((x1592)) +:extrapreds ((x1593)) +:extrapreds ((x1594)) +:extrapreds ((x1595)) +:extrapreds ((x1596)) +:extrapreds ((x1597)) +:extrapreds ((x1598)) +:extrapreds ((x1599)) +:extrapreds ((x1600)) +:extrapreds ((x1601)) +:extrapreds ((x1602)) +:extrapreds ((x1603)) +:extrapreds ((x1604)) +:extrapreds ((x1605)) +:extrapreds ((x1606)) +:extrapreds ((x1607)) +:extrapreds ((x1608)) +:extrapreds ((x1609)) +:extrapreds ((x1610)) +:extrapreds ((x1611)) +:extrapreds ((x1612)) +:extrapreds ((x1613)) +:extrapreds ((x1614)) +:extrapreds ((x1615)) +:extrapreds ((x1616)) +:extrapreds ((x1617)) +:extrapreds ((x1618)) +:extrapreds ((x1619)) +:extrapreds ((x1620)) +:extrapreds ((x1621)) +:extrapreds ((x1622)) +:extrapreds ((x1623)) +:extrapreds ((x1624)) +:extrapreds ((x1625)) +:extrapreds ((x1626)) +:extrapreds ((x1627)) +:extrapreds ((x1628)) +:extrapreds ((x1629)) +:extrapreds ((x1630)) +:extrapreds ((x1631)) +:extrapreds ((x1632)) +:extrapreds ((x1633)) +:extrapreds ((x1634)) +:extrapreds ((x1635)) +:extrapreds ((x1636)) +:extrapreds ((x1637)) +:extrapreds ((x1638)) +:extrapreds ((x1639)) +:extrapreds ((x1640)) +:extrapreds ((x1641)) +:extrapreds ((x1642)) +:extrapreds ((x1643)) +:extrapreds ((x1644)) +:extrapreds ((x1645)) +:extrapreds ((x1646)) +:extrapreds ((x1647)) +:extrapreds ((x1648)) +:extrapreds ((x1649)) +:extrapreds ((x1650)) +:extrapreds ((x1651)) +:extrapreds ((x1652)) +:extrapreds ((x1653)) +:extrapreds ((x1654)) +:extrapreds ((x1655)) +:extrapreds ((x1656)) +:extrapreds ((x1657)) +:extrapreds ((x1658)) +:extrapreds ((x1659)) +:extrapreds ((x1660)) +:extrapreds ((x1661)) +:extrapreds ((x1662)) +:extrapreds ((x1663)) +:extrapreds ((x1664)) +:extrapreds ((x1665)) +:extrapreds ((x1666)) +:extrapreds ((x1667)) +:extrapreds ((x1668)) +:extrapreds ((x1669)) +:extrapreds ((x1670)) +:extrapreds ((x1671)) +:extrapreds ((x1672)) +:extrapreds ((x1673)) +:extrapreds ((x1674)) +:extrapreds ((x1675)) +:extrapreds ((x1676)) +:extrapreds ((x1677)) +:extrapreds ((x1678)) +:extrapreds ((x1679)) +:extrapreds ((x1680)) +:extrapreds ((x1681)) +:extrapreds ((x1682)) +:extrapreds ((x1683)) +:extrapreds ((x1684)) +:extrapreds ((x1685)) +:extrapreds ((x1686)) +:extrapreds ((x1687)) +:extrapreds ((x1688)) +:extrapreds ((x1689)) +:extrapreds ((x1690)) +:extrapreds ((x1691)) +:extrapreds ((x1692)) +:extrapreds ((x1693)) +:extrapreds ((x1694)) +:extrapreds ((x1695)) +:extrapreds ((x1696)) +:extrapreds ((x1697)) +:extrapreds ((x1698)) +:extrapreds ((x1699)) +:extrapreds ((x1700)) +:extrapreds ((x1701)) +:extrapreds ((x1702)) +:extrapreds ((x1703)) +:extrapreds ((x1704)) +:extrapreds ((x1705)) +:extrapreds ((x1706)) +:extrapreds ((x1707)) +:extrapreds ((x1708)) +:extrapreds ((x1709)) +:extrapreds ((x1710)) +:extrapreds ((x1711)) +:extrapreds ((x1712)) +:extrapreds ((x1713)) +:extrapreds ((x1714)) +:extrapreds ((x1715)) +:extrapreds ((x1716)) +:extrapreds ((x1717)) +:extrapreds ((x1718)) +:extrapreds ((x1719)) +:extrapreds ((x1720)) +:extrapreds ((x1721)) +:extrapreds ((x1722)) +:extrapreds ((x1723)) +:extrapreds ((x1724)) +:extrapreds ((x1725)) +:extrapreds ((x1726)) +:extrapreds ((x1727)) +:extrapreds ((x1728)) +:extrapreds ((x1729)) +:extrapreds ((x1730)) +:extrapreds ((x1731)) +:extrapreds ((x1732)) +:extrapreds ((x1733)) +:extrapreds ((x1734)) +:extrapreds ((x1735)) +:extrapreds ((x1736)) +:extrapreds ((x1737)) +:extrapreds ((x1738)) +:extrapreds ((x1739)) +:extrapreds ((x1740)) +:extrapreds ((x1741)) +:extrapreds ((x1742)) +:extrapreds ((x1743)) +:extrapreds ((x1744)) +:extrapreds ((x1745)) +:extrapreds ((x1746)) +:extrapreds ((x1747)) +:extrapreds ((x1748)) +:extrapreds ((x1749)) +:extrapreds ((x1750)) +:extrapreds ((x1751)) +:extrapreds ((x1752)) +:extrapreds ((x1753)) +:extrapreds ((x1754)) +:extrapreds ((x1755)) +:extrapreds ((x1756)) +:extrapreds ((x1757)) +:extrapreds ((x1758)) +:extrapreds ((x1759)) +:extrapreds ((x1760)) +:extrapreds ((x1761)) +:extrapreds ((x1762)) +:extrapreds ((x1763)) +:extrapreds ((x1764)) +:extrapreds ((x1765)) +:extrapreds ((x1766)) +:extrapreds ((x1767)) +:extrapreds ((x1768)) +:extrapreds ((x1769)) +:extrapreds ((x1770)) +:extrapreds ((x1771)) +:extrapreds ((x1772)) +:extrapreds ((x1773)) +:extrapreds ((x1774)) +:extrapreds ((x1775)) +:extrapreds ((x1776)) +:extrapreds ((x1777)) +:extrapreds ((x1778)) +:extrapreds ((x1779)) +:extrapreds ((x1780)) +:extrapreds ((x1781)) +:extrapreds ((x1782)) +:extrapreds ((x1783)) +:extrapreds ((x1784)) +:extrapreds ((x1785)) +:extrapreds ((x1786)) +:extrapreds ((x1787)) +:extrapreds ((x1788)) +:extrapreds ((x1789)) +:extrapreds ((x1790)) +:extrapreds ((x1791)) +:extrapreds ((x1792)) +:extrapreds ((x1793)) +:extrapreds ((x1794)) +:extrapreds ((x1795)) +:extrapreds ((x1796)) +:extrapreds ((x1797)) +:extrapreds ((x1798)) +:extrapreds ((x1799)) +:extrapreds ((x1800)) +:extrapreds ((x1801)) +:extrapreds ((x1802)) +:extrapreds ((x1803)) +:extrapreds ((x1804)) +:extrapreds ((x1805)) +:extrapreds ((x1806)) +:extrapreds ((x1807)) +:extrapreds ((x1808)) +:extrapreds ((x1809)) +:extrapreds ((x1810)) +:extrapreds ((x1811)) +:extrapreds ((x1812)) +:extrapreds ((x1813)) +:extrapreds ((x1814)) +:extrapreds ((x1815)) +:extrapreds ((x1816)) +:extrapreds ((x1817)) +:extrapreds ((x1818)) +:extrapreds ((x1819)) +:extrapreds ((x1820)) +:extrapreds ((x1821)) +:extrapreds ((x1822)) +:extrapreds ((x1823)) +:extrapreds ((x1824)) +:extrapreds ((x1825)) +:extrapreds ((x1826)) +:extrapreds ((x1827)) +:extrapreds ((x1828)) +:extrapreds ((x1829)) +:extrapreds ((x1830)) +:extrapreds ((x1831)) +:extrapreds ((x1832)) +:extrapreds ((x1833)) +:extrapreds ((x1834)) +:extrapreds ((x1835)) +:extrapreds ((x1836)) +:extrapreds ((x1837)) +:extrapreds ((x1838)) +:extrapreds ((x1839)) +:extrapreds ((x1840)) +:extrapreds ((x1841)) +:extrapreds ((x1842)) +:extrapreds ((x1843)) +:extrapreds ((x1844)) +:extrapreds ((x1845)) +:extrapreds ((x1846)) +:extrapreds ((x1847)) +:extrapreds ((x1848)) +:extrapreds ((x1849)) +:extrapreds ((x1850)) +:extrapreds ((x1851)) +:extrapreds ((x1852)) +:extrapreds ((x1853)) +:extrapreds ((x1854)) +:extrapreds ((x1855)) +:extrapreds ((x1856)) +:extrapreds ((x1857)) +:extrapreds ((x1858)) +:extrapreds ((x1859)) +:extrapreds ((x1860)) +:extrapreds ((x1861)) +:extrapreds ((x1862)) +:extrapreds ((x1863)) +:extrapreds ((x1864)) +:extrapreds ((x1865)) +:extrapreds ((x1866)) +:extrapreds ((x1867)) +:extrapreds ((x1868)) +:extrapreds ((x1869)) +:extrapreds ((x1870)) +:extrapreds ((x1871)) +:extrapreds ((x1872)) +:extrapreds ((x1873)) +:extrapreds ((x1874)) +:extrapreds ((x1875)) +:extrapreds ((x1876)) +:extrapreds ((x1877)) +:extrapreds ((x1878)) +:extrapreds ((x1879)) +:extrapreds ((x1880)) +:extrapreds ((x1881)) +:extrapreds ((x1882)) +:extrapreds ((x1883)) +:extrapreds ((x1884)) +:extrapreds ((x1885)) +:extrapreds ((x1886)) +:extrapreds ((x1887)) +:extrapreds ((x1888)) +:extrapreds ((x1889)) +:extrapreds ((x1890)) +:extrapreds ((x1891)) +:extrapreds ((x1892)) +:extrapreds ((x1893)) +:extrapreds ((x1894)) +:extrapreds ((x1895)) +:extrapreds ((x1896)) +:extrapreds ((x1897)) +:extrapreds ((x1898)) +:extrapreds ((x1899)) +:extrapreds ((x1900)) +:extrapreds ((x1901)) +:extrapreds ((x1902)) +:extrapreds ((x1903)) +:extrapreds ((x1904)) +:extrapreds ((x1905)) +:extrapreds ((x1906)) +:extrapreds ((x1907)) +:extrapreds ((x1908)) +:extrapreds ((x1909)) +:extrapreds ((x1910)) +:extrapreds ((x1911)) +:extrapreds ((x1912)) +:extrapreds ((x1913)) +:extrapreds ((x1914)) +:extrapreds ((x1915)) +:extrapreds ((x1916)) +:extrapreds ((x1917)) +:extrapreds ((x1918)) +:extrapreds ((x1919)) +:extrapreds ((x1920)) +:extrapreds ((x1921)) +:extrapreds ((x1922)) +:extrapreds ((x1923)) +:extrapreds ((x1924)) +:extrapreds ((x1925)) +:extrapreds ((x1926)) +:extrapreds ((x1927)) +:extrapreds ((x1928)) +:extrapreds ((x1929)) +:extrapreds ((x1930)) +:extrapreds ((x1931)) +:extrapreds ((x1932)) +:extrapreds ((x1933)) +:extrapreds ((x1934)) +:extrapreds ((x1935)) +:extrapreds ((x1936)) +:extrapreds ((x1937)) +:extrapreds ((x1938)) +:extrapreds ((x1939)) +:extrapreds ((x1940)) +:extrapreds ((x1941)) +:extrapreds ((x1942)) +:extrapreds ((x1943)) +:extrapreds ((x1944)) +:extrapreds ((x1945)) +:extrapreds ((x1946)) +:extrapreds ((x1947)) +:extrapreds ((x1948)) +:extrapreds ((x1949)) +:extrapreds ((x1950)) +:extrapreds ((x1951)) +:extrapreds ((x1952)) +:extrapreds ((x1953)) +:extrapreds ((x1954)) +:extrapreds ((x1955)) +:extrapreds ((x1956)) +:extrapreds ((x1957)) +:extrapreds ((x1958)) +:extrapreds ((x1959)) +:extrapreds ((x1960)) +:extrapreds ((x1961)) +:extrapreds ((x1962)) +:extrapreds ((x1963)) +:extrapreds ((x1964)) +:extrapreds ((x1965)) +:extrapreds ((x1966)) +:extrapreds ((x1967)) +:extrapreds ((x1968)) +:extrapreds ((x1969)) +:extrapreds ((x1970)) +:extrapreds ((x1971)) +:extrapreds ((x1972)) +:extrapreds ((x1973)) +:extrapreds ((x1974)) +:extrapreds ((x1975)) +:extrapreds ((x1976)) +:extrapreds ((x1977)) +:extrapreds ((x1978)) +:extrapreds ((x1979)) +:extrapreds ((x1980)) +:extrapreds ((x1981)) +:extrapreds ((x1982)) +:extrapreds ((x1983)) +:extrapreds ((x1984)) +:extrapreds ((x1985)) +:extrapreds ((x1986)) +:extrapreds ((x1987)) +:extrapreds ((x1988)) +:extrapreds ((x1989)) +:extrapreds ((x1990)) +:extrapreds ((x1991)) +:extrapreds ((x1992)) +:extrapreds ((x1993)) +:extrapreds ((x1994)) +:extrapreds ((x1995)) +:extrapreds ((x1996)) +:extrapreds ((x1997)) +:extrapreds ((x1998)) +:extrapreds ((x1999)) +:extrapreds ((x2000)) +:extrapreds ((x2001)) +:extrapreds ((x2002)) +:extrapreds ((x2003)) +:extrapreds ((x2004)) +:extrapreds ((x2005)) +:extrapreds ((x2006)) +:extrapreds ((x2007)) +:extrapreds ((x2008)) +:extrapreds ((x2009)) +:extrapreds ((x2010)) +:extrapreds ((x2011)) +:extrapreds ((x2012)) +:extrapreds ((x2013)) +:extrapreds ((x2014)) +:extrapreds ((x2015)) +:extrapreds ((x2016)) +:extrapreds ((x2017)) +:extrapreds ((x2018)) +:extrapreds ((x2019)) +:extrapreds ((x2020)) +:extrapreds ((x2021)) +:extrapreds ((x2022)) +:extrapreds ((x2023)) +:extrapreds ((x2024)) +:extrapreds ((x2025)) +:extrapreds ((x2026)) +:extrapreds ((x2027)) +:extrapreds ((x2028)) +:extrapreds ((x2029)) +:extrapreds ((x2030)) +:extrapreds ((x2031)) +:extrapreds ((x2032)) +:extrapreds ((x2033)) +:extrapreds ((x2034)) +:extrapreds ((x2035)) +:extrapreds ((x2036)) +:extrapreds ((x2037)) +:extrapreds ((x2038)) +:extrapreds ((x2039)) +:extrapreds ((x2040)) +:extrapreds ((x2041)) +:extrapreds ((x2042)) +:extrapreds ((x2043)) +:extrapreds ((x2044)) +:extrapreds ((x2045)) +:extrapreds ((x2046)) +:extrapreds ((x2047)) +:extrapreds ((x2048)) +:extrapreds ((x2049)) +:extrapreds ((x2050)) +:extrapreds ((x2051)) +:extrapreds ((x2052)) +:extrapreds ((x2053)) +:extrapreds ((x2054)) +:extrapreds ((x2055)) +:extrapreds ((x2056)) +:extrapreds ((x2057)) +:extrapreds ((x2058)) +:extrapreds ((x2059)) +:extrapreds ((x2060)) +:extrapreds ((x2061)) +:extrapreds ((x2062)) +:extrapreds ((x2063)) +:extrapreds ((x2064)) +:extrapreds ((x2065)) +:extrapreds ((x2066)) +:extrapreds ((x2067)) +:extrapreds ((x2068)) +:extrapreds ((x2069)) +:extrapreds ((x2070)) +:extrapreds ((x2071)) +:extrapreds ((x2072)) +:extrapreds ((x2073)) +:extrapreds ((x2074)) +:extrapreds ((x2075)) +:extrapreds ((x2076)) +:extrapreds ((x2077)) +:extrapreds ((x2078)) +:extrapreds ((x2079)) +:extrapreds ((x2080)) +:extrapreds ((x2081)) +:extrapreds ((x2082)) +:extrapreds ((x2083)) +:extrapreds ((x2084)) +:extrapreds ((x2085)) +:extrapreds ((x2086)) +:extrapreds ((x2087)) +:extrapreds ((x2088)) +:extrapreds ((x2089)) +:extrapreds ((x2090)) +:extrapreds ((x2091)) +:extrapreds ((x2092)) +:extrapreds ((x2093)) +:extrapreds ((x2094)) +:extrapreds ((x2095)) +:extrapreds ((x2096)) +:extrapreds ((x2097)) +:extrapreds ((x2098)) +:extrapreds ((x2099)) +:extrapreds ((x2100)) +:extrapreds ((x2101)) +:extrapreds ((x2102)) +:extrapreds ((x2103)) +:extrapreds ((x2104)) +:extrapreds ((x2105)) +:extrapreds ((x2106)) +:extrapreds ((x2107)) +:extrapreds ((x2108)) +:extrapreds ((x2109)) +:extrapreds ((x2110)) +:extrapreds ((x2111)) +:extrapreds ((x2112)) +:extrapreds ((x2113)) +:extrapreds ((x2114)) +:extrapreds ((x2115)) +:extrapreds ((x2116)) +:extrapreds ((x2117)) +:extrapreds ((x2118)) +:extrapreds ((x2119)) +:extrapreds ((x2120)) +:extrapreds ((x2121)) +:extrapreds ((x2122)) +:extrapreds ((x2123)) +:extrapreds ((x2124)) +:extrapreds ((x2125)) +:extrapreds ((x2126)) +:extrapreds ((x2127)) +:extrapreds ((x2128)) +:extrapreds ((x2129)) +:extrapreds ((x2130)) +:extrapreds ((x2131)) +:extrapreds ((x2132)) +:extrapreds ((x2133)) +:extrapreds ((x2134)) +:extrapreds ((x2135)) +:extrapreds ((x2136)) +:extrapreds ((x2137)) +:extrapreds ((x2138)) +:extrapreds ((x2139)) +:extrapreds ((x2140)) +:extrapreds ((x2141)) +:extrapreds ((x2142)) +:extrapreds ((x2143)) +:extrapreds ((x2144)) +:extrapreds ((x2145)) +:extrapreds ((x2146)) +:extrapreds ((x2147)) +:extrapreds ((x2148)) +:extrapreds ((x2149)) +:extrapreds ((x2150)) +:extrapreds ((x2151)) +:extrapreds ((x2152)) +:extrapreds ((x2153)) +:extrapreds ((x2154)) +:extrapreds ((x2155)) +:extrapreds ((x2156)) +:extrapreds ((x2157)) +:extrapreds ((x2158)) +:extrapreds ((x2159)) +:extrapreds ((x2160)) +:extrapreds ((x2161)) +:extrapreds ((x2162)) +:extrapreds ((x2163)) +:extrapreds ((x2164)) +:extrapreds ((x2165)) +:extrapreds ((x2166)) +:extrapreds ((x2167)) +:extrapreds ((x2168)) +:extrapreds ((x2169)) +:extrapreds ((x2170)) +:extrapreds ((x2171)) +:extrapreds ((x2172)) +:extrapreds ((x2173)) +:extrapreds ((x2174)) +:extrapreds ((x2175)) +:extrapreds ((x2176)) +:extrapreds ((x2177)) +:extrapreds ((x2178)) +:extrapreds ((x2179)) +:extrapreds ((x2180)) +:extrapreds ((x2181)) +:extrapreds ((x2182)) +:extrapreds ((x2183)) +:extrapreds ((x2184)) +:extrapreds ((x2185)) +:extrapreds ((x2186)) +:extrapreds ((x2187)) +:extrapreds ((x2188)) +:extrapreds ((x2189)) +:extrapreds ((x2190)) +:extrapreds ((x2191)) +:extrapreds ((x2192)) +:extrapreds ((x2193)) +:extrapreds ((x2194)) +:extrapreds ((x2195)) +:extrapreds ((x2196)) +:extrapreds ((x2197)) +:extrapreds ((x2198)) +:extrapreds ((x2199)) +:extrapreds ((x2200)) +:extrapreds ((x2201)) +:extrapreds ((x2202)) +:extrapreds ((x2203)) +:extrapreds ((x2204)) +:extrapreds ((x2205)) +:extrapreds ((x2206)) +:extrapreds ((x2207)) +:extrapreds ((x2208)) +:extrapreds ((x2209)) +:extrapreds ((x2210)) +:extrapreds ((x2211)) +:extrapreds ((x2212)) +:extrapreds ((x2213)) +:extrapreds ((x2214)) +:extrapreds ((x2215)) +:extrapreds ((x2216)) +:extrapreds ((x2217)) +:extrapreds ((x2218)) +:extrapreds ((x2219)) +:extrapreds ((x2220)) +:extrapreds ((x2221)) +:extrapreds ((x2222)) +:extrapreds ((x2223)) +:extrapreds ((x2224)) +:extrapreds ((x2225)) +:extrapreds ((x2226)) +:extrapreds ((x2227)) +:extrapreds ((x2228)) +:extrapreds ((x2229)) +:extrapreds ((x2230)) +:extrapreds ((x2231)) +:extrapreds ((x2232)) +:extrapreds ((x2233)) +:extrapreds ((x2234)) +:extrapreds ((x2235)) +:extrapreds ((x2236)) +:extrapreds ((x2237)) +:extrapreds ((x2238)) +:extrapreds ((x2239)) +:extrapreds ((x2240)) +:extrapreds ((x2241)) +:extrapreds ((x2242)) +:extrapreds ((x2243)) +:extrapreds ((x2244)) +:extrapreds ((x2245)) +:extrapreds ((x2246)) +:extrapreds ((x2247)) +:extrapreds ((x2248)) +:extrapreds ((x2249)) +:extrapreds ((x2250)) +:extrapreds ((x2251)) +:extrapreds ((x2252)) +:extrapreds ((x2253)) +:extrapreds ((x2254)) +:extrapreds ((x2255)) +:extrapreds ((x2256)) +:extrapreds ((x2257)) +:extrapreds ((x2258)) +:extrapreds ((x2259)) +:extrapreds ((x2260)) +:extrapreds ((x2261)) +:extrapreds ((x2262)) +:extrapreds ((x2263)) +:extrapreds ((x2264)) +:extrapreds ((x2265)) +:extrapreds ((x2266)) +:extrapreds ((x2267)) +:extrapreds ((x2268)) +:extrapreds ((x2269)) +:extrapreds ((x2270)) +:extrapreds ((x2271)) +:extrapreds ((x2272)) +:extrapreds ((x2273)) +:extrapreds ((x2274)) +:extrapreds ((x2275)) +:extrapreds ((x2276)) +:extrapreds ((x2277)) +:extrapreds ((x2278)) +:extrapreds ((x2279)) +:extrapreds ((x2280)) +:extrapreds ((x2281)) +:extrapreds ((x2282)) +:extrapreds ((x2283)) +:extrapreds ((x2284)) +:extrapreds ((x2285)) +:extrapreds ((x2286)) +:extrapreds ((x2287)) +:extrapreds ((x2288)) +:extrapreds ((x2289)) +:extrapreds ((x2290)) +:extrapreds ((x2291)) +:extrapreds ((x2292)) +:extrapreds ((x2293)) +:extrapreds ((x2294)) +:extrapreds ((x2295)) +:extrapreds ((x2296)) +:extrapreds ((x2297)) +:extrapreds ((x2298)) +:extrapreds ((x2299)) +:extrapreds ((x2300)) +:extrapreds ((x2301)) +:extrapreds ((x2302)) +:extrapreds ((x2303)) +:extrapreds ((x2304)) +:extrapreds ((x2305)) +:extrapreds ((x2306)) +:extrapreds ((x2307)) +:extrapreds ((x2308)) +:extrapreds ((x2309)) +:extrapreds ((x2310)) +:extrapreds ((x2311)) +:extrapreds ((x2312)) +:extrapreds ((x2313)) +:extrapreds ((x2314)) +:extrapreds ((x2315)) +:extrapreds ((x2316)) +:extrapreds ((x2317)) +:extrapreds ((x2318)) +:extrapreds ((x2319)) +:extrapreds ((x2320)) +:extrapreds ((x2321)) +:extrapreds ((x2322)) +:extrapreds ((x2323)) +:extrapreds ((x2324)) +:extrapreds ((x2325)) +:extrapreds ((x2326)) +:extrapreds ((x2327)) +:extrapreds ((x2328)) +:extrapreds ((x2329)) +:extrapreds ((x2330)) +:extrapreds ((x2331)) +:extrapreds ((x2332)) +:extrapreds ((x2333)) +:extrapreds ((x2334)) +:extrapreds ((x2335)) +:extrapreds ((x2336)) +:extrapreds ((x2337)) +:extrapreds ((x2338)) +:extrapreds ((x2339)) +:extrapreds ((x2340)) +:extrapreds ((x2341)) +:extrapreds ((x2342)) +:extrapreds ((x2343)) +:extrapreds ((x2344)) +:extrapreds ((x2345)) +:extrapreds ((x2346)) +:extrapreds ((x2347)) +:extrapreds ((x2348)) +:extrapreds ((x2349)) +:extrapreds ((x2350)) +:extrapreds ((x2351)) +:extrapreds ((x2352)) +:extrapreds ((x2353)) +:extrapreds ((x2354)) +:extrapreds ((x2355)) +:extrapreds ((x2356)) +:extrapreds ((x2357)) +:extrapreds ((x2358)) +:extrapreds ((x2359)) +:extrapreds ((x2360)) +:extrapreds ((x2361)) +:extrapreds ((x2362)) +:extrapreds ((x2363)) +:extrapreds ((x2364)) +:extrapreds ((x2365)) +:extrapreds ((x2366)) +:extrapreds ((x2367)) +:extrapreds ((x2368)) +:extrapreds ((x2369)) +:extrapreds ((x2370)) +:extrapreds ((x2371)) +:extrapreds ((x2372)) +:extrapreds ((x2373)) +:extrapreds ((x2374)) +:extrapreds ((x2375)) +:extrapreds ((x2376)) +:extrapreds ((x2377)) +:extrapreds ((x2378)) +:extrapreds ((x2379)) +:extrapreds ((x2380)) +:extrapreds ((x2381)) +:extrapreds ((x2382)) +:extrapreds ((x2383)) +:extrapreds ((x2384)) +:extrapreds ((x2385)) +:extrapreds ((x2386)) +:extrapreds ((x2387)) +:extrapreds ((x2388)) +:extrapreds ((x2389)) +:extrapreds ((x2390)) +:extrapreds ((x2391)) +:extrapreds ((x2392)) +:extrapreds ((x2393)) +:extrapreds ((x2394)) +:extrapreds ((x2395)) +:extrapreds ((x2396)) +:extrapreds ((x2397)) +:extrapreds ((x2398)) +:extrapreds ((x2399)) +:extrapreds ((x2400)) +:extrapreds ((x2401)) +:extrapreds ((x2402)) +:extrapreds ((x2403)) +:extrapreds ((x2404)) +:extrapreds ((x2405)) +:extrapreds ((x2406)) +:extrapreds ((x2407)) +:extrapreds ((x2408)) +:extrapreds ((x2409)) +:extrapreds ((x2410)) +:extrapreds ((x2411)) +:extrapreds ((x2412)) +:extrapreds ((x2413)) +:extrapreds ((x2414)) +:extrapreds ((x2415)) +:extrapreds ((x2416)) +:extrapreds ((x2417)) +:extrapreds ((x2418)) +:extrapreds ((x2419)) +:extrapreds ((x2420)) +:extrapreds ((x2421)) +:extrapreds ((x2422)) +:extrapreds ((x2423)) +:extrapreds ((x2424)) +:extrapreds ((x2425)) +:extrapreds ((x2426)) +:extrapreds ((x2427)) +:extrapreds ((x2428)) +:extrapreds ((x2429)) +:extrapreds ((x2430)) +:extrapreds ((x2431)) +:extrapreds ((x2432)) +:extrapreds ((x2433)) +:extrapreds ((x2434)) +:extrapreds ((x2435)) +:extrapreds ((x2436)) +:extrapreds ((x2437)) +:extrapreds ((x2438)) +:extrapreds ((x2439)) +:extrapreds ((x2440)) +:extrapreds ((x2441)) +:extrapreds ((x2442)) +:extrapreds ((x2443)) +:extrapreds ((x2444)) +:extrapreds ((x2445)) +:extrapreds ((x2446)) +:extrapreds ((x2447)) +:extrapreds ((x2448)) +:extrapreds ((x2449)) +:extrapreds ((x2450)) +:extrapreds ((x2451)) +:extrapreds ((x2452)) +:extrapreds ((x2453)) +:extrapreds ((x2454)) +:extrapreds ((x2455)) +:extrapreds ((x2456)) +:extrapreds ((x2457)) +:extrapreds ((x2458)) +:extrapreds ((x2459)) +:extrapreds ((x2460)) +:extrapreds ((x2461)) +:extrapreds ((x2462)) +:extrapreds ((x2463)) +:extrapreds ((x2464)) +:extrapreds ((x2465)) +:extrapreds ((x2466)) +:extrapreds ((x2467)) +:extrapreds ((x2468)) +:extrapreds ((x2469)) +:extrapreds ((x2470)) +:extrapreds ((x2471)) +:extrapreds ((x2472)) +:extrapreds ((x2473)) +:extrapreds ((x2474)) +:extrapreds ((x2475)) +:extrapreds ((x2476)) +:extrapreds ((x2477)) +:extrapreds ((x2478)) +:extrapreds ((x2479)) +:extrapreds ((x2480)) +:extrapreds ((x2481)) +:extrapreds ((x2482)) +:extrapreds ((x2483)) +:extrapreds ((x2484)) +:extrapreds ((x2485)) +:extrapreds ((x2486)) +:extrapreds ((x2487)) +:extrapreds ((x2488)) +:extrapreds ((x2489)) +:extrapreds ((x2490)) +:extrapreds ((x2491)) +:extrapreds ((x2492)) +:extrapreds ((x2493)) +:extrapreds ((x2494)) +:extrapreds ((x2495)) +:extrapreds ((x2496)) +:extrapreds ((x2497)) +:extrapreds ((x2498)) +:extrapreds ((x2499)) +:extrapreds ((x2500)) +:extrapreds ((x2501)) +:extrapreds ((x2502)) +:extrapreds ((x2503)) +:extrapreds ((x2504)) +:extrapreds ((x2505)) +:extrapreds ((x2506)) +:extrapreds ((x2507)) +:extrapreds ((x2508)) +:extrapreds ((x2509)) +:extrapreds ((x2510)) +:extrapreds ((x2511)) +:extrapreds ((x2512)) +:extrapreds ((x2513)) +:extrapreds ((x2514)) +:extrapreds ((x2515)) +:extrapreds ((x2516)) +:extrapreds ((x2517)) +:extrapreds ((x2518)) +:extrapreds ((x2519)) +:extrapreds ((x2520)) +:extrapreds ((x2521)) +:extrapreds ((x2522)) +:extrapreds ((x2523)) +:extrapreds ((x2524)) +:extrapreds ((x2525)) +:extrapreds ((x2526)) +:extrapreds ((x2527)) +:extrapreds ((x2528)) +:extrapreds ((x2529)) +:extrapreds ((x2530)) +:extrapreds ((x2531)) +:extrapreds ((x2532)) +:extrapreds ((x2533)) +:extrapreds ((x2534)) +:extrapreds ((x2535)) +:extrapreds ((x2536)) +:extrapreds ((x2537)) +:extrapreds ((x2538)) +:extrapreds ((x2539)) +:extrapreds ((x2540)) +:extrapreds ((x2541)) +:extrapreds ((x2542)) +:extrapreds ((x2543)) +:extrapreds ((x2544)) +:extrapreds ((x2545)) +:extrapreds ((x2546)) +:extrapreds ((x2547)) +:extrapreds ((x2548)) +:extrapreds ((x2549)) +:extrapreds ((x2550)) +:extrapreds ((x2551)) +:extrapreds ((x2552)) +:extrapreds ((x2553)) +:extrapreds ((x2554)) +:extrapreds ((x2555)) +:extrapreds ((x2556)) +:extrapreds ((x2557)) +:extrapreds ((x2558)) +:extrapreds ((x2559)) +:extrapreds ((x2560)) +:extrapreds ((x2561)) +:extrapreds ((x2562)) +:extrapreds ((x2563)) +:extrapreds ((x2564)) +:extrapreds ((x2565)) +:extrapreds ((x2566)) +:extrapreds ((x2567)) +:extrapreds ((x2568)) +:extrapreds ((x2569)) +:extrapreds ((x2570)) +:extrapreds ((x2571)) +:extrapreds ((x2572)) +:extrapreds ((x2573)) +:extrapreds ((x2574)) +:extrapreds ((x2575)) +:extrapreds ((x2576)) +:extrapreds ((x2577)) +:extrapreds ((x2578)) +:extrapreds ((x2579)) +:extrapreds ((x2580)) +:extrapreds ((x2581)) +:extrapreds ((x2582)) +:extrapreds ((x2583)) +:extrapreds ((x2584)) +:extrapreds ((x2585)) +:extrapreds ((x2586)) +:extrapreds ((x2587)) +:extrapreds ((x2588)) +:extrapreds ((x2589)) +:extrapreds ((x2590)) +:extrapreds ((x2591)) +:extrapreds ((x2592)) +:extrapreds ((x2593)) +:extrapreds ((x2594)) +:extrapreds ((x2595)) +:extrapreds ((x2596)) +:extrapreds ((x2597)) +:extrapreds ((x2598)) +:extrapreds ((x2599)) +:extrapreds ((x2600)) +:extrapreds ((x2601)) +:extrapreds ((x2602)) +:extrapreds ((x2603)) +:extrapreds ((x2604)) +:extrapreds ((x2605)) +:extrapreds ((x2606)) +:extrapreds ((x2607)) +:extrapreds ((x2608)) +:extrapreds ((x2609)) +:extrapreds ((x2610)) +:extrapreds ((x2611)) +:extrapreds ((x2612)) +:extrapreds ((x2613)) +:extrapreds ((x2614)) +:extrapreds ((x2615)) +:extrapreds ((x2616)) +:extrapreds ((x2617)) +:extrapreds ((x2618)) +:extrapreds ((x2619)) +:extrapreds ((x2620)) +:extrapreds ((x2621)) +:extrapreds ((x2622)) +:extrapreds ((x2623)) +:extrapreds ((x2624)) +:extrapreds ((x2625)) +:extrapreds ((x2626)) +:extrapreds ((x2627)) +:extrapreds ((x2628)) +:extrapreds ((x2629)) +:extrapreds ((x2630)) +:extrapreds ((x2631)) +:extrapreds ((x2632)) +:extrapreds ((x2633)) +:extrapreds ((x2634)) +:extrapreds ((x2635)) +:extrapreds ((x2636)) +:extrapreds ((x2637)) +:extrapreds ((x2638)) +:extrapreds ((x2639)) +:extrapreds ((x2640)) +:extrapreds ((x2641)) +:extrapreds ((x2642)) +:extrapreds ((x2643)) +:extrapreds ((x2644)) +:extrapreds ((x2645)) +:extrapreds ((x2646)) +:extrapreds ((x2647)) +:extrapreds ((x2648)) +:extrapreds ((x2649)) +:extrapreds ((x2650)) +:extrapreds ((x2651)) +:extrapreds ((x2652)) +:extrapreds ((x2653)) +:extrapreds ((x2654)) +:extrapreds ((x2655)) +:extrapreds ((x2656)) +:extrapreds ((x2657)) +:extrapreds ((x2658)) +:extrapreds ((x2659)) +:extrapreds ((x2660)) +:extrapreds ((x2661)) +:extrapreds ((x2662)) +:extrapreds ((x2663)) +:extrapreds ((x2664)) +:extrapreds ((x2665)) +:extrapreds ((x2666)) +:extrapreds ((x2667)) +:extrapreds ((x2668)) +:extrapreds ((x2669)) +:extrapreds ((x2670)) +:extrapreds ((x2671)) +:extrapreds ((x2672)) +:extrapreds ((x2673)) +:extrapreds ((x2674)) +:extrapreds ((x2675)) +:extrapreds ((x2676)) +:extrapreds ((x2677)) +:extrapreds ((x2678)) +:extrapreds ((x2679)) +:extrapreds ((x2680)) +:extrapreds ((x2681)) +:extrapreds ((x2682)) +:extrapreds ((x2683)) +:extrapreds ((x2684)) +:extrapreds ((x2685)) +:extrapreds ((x2686)) +:extrapreds ((x2687)) +:extrapreds ((x2688)) +:extrapreds ((x2689)) +:extrapreds ((x2690)) +:extrapreds ((x2691)) +:extrapreds ((x2692)) +:extrapreds ((x2693)) +:extrapreds ((x2694)) +:extrapreds ((x2695)) +:extrapreds ((x2696)) +:extrapreds ((x2697)) +:extrapreds ((x2698)) +:extrapreds ((x2699)) +:extrapreds ((x2700)) +:extrapreds ((x2701)) +:extrapreds ((x2702)) +:extrapreds ((x2703)) +:extrapreds ((x2704)) +:extrapreds ((x2705)) +:extrapreds ((x2706)) +:extrapreds ((x2707)) +:extrapreds ((x2708)) +:extrapreds ((x2709)) +:extrapreds ((x2710)) +:extrapreds ((x2711)) +:extrapreds ((x2712)) +:extrapreds ((x2713)) +:extrapreds ((x2714)) +:extrapreds ((x2715)) +:extrapreds ((x2716)) +:extrapreds ((x2717)) +:extrapreds ((x2718)) +:extrapreds ((x2719)) +:extrapreds ((x2720)) +:extrapreds ((x2721)) +:extrapreds ((x2722)) +:extrapreds ((x2723)) +:extrapreds ((x2724)) +:extrapreds ((x2725)) +:extrapreds ((x2726)) +:extrapreds ((x2727)) +:extrapreds ((x2728)) +:extrapreds ((x2729)) +:extrapreds ((x2730)) +:extrapreds ((x2731)) +:extrapreds ((x2732)) +:extrapreds ((x2733)) +:extrapreds ((x2734)) +:extrapreds ((x2735)) +:extrapreds ((x2736)) +:extrapreds ((x2737)) +:extrapreds ((x2738)) +:extrapreds ((x2739)) +:extrapreds ((x2740)) +:extrapreds ((x2741)) +:extrapreds ((x2742)) +:extrapreds ((x2743)) +:extrapreds ((x2744)) +:extrapreds ((x2745)) +:extrapreds ((x2746)) +:extrapreds ((x2747)) +:extrapreds ((x2748)) +:extrapreds ((x2749)) +:extrapreds ((x2750)) +:extrapreds ((x2751)) +:extrapreds ((x2752)) +:extrapreds ((x2753)) +:extrapreds ((x2754)) +:extrapreds ((x2755)) +:extrapreds ((x2756)) +:extrapreds ((x2757)) +:extrapreds ((x2758)) +:extrapreds ((x2759)) +:extrapreds ((x2760)) +:extrapreds ((x2761)) +:extrapreds ((x2762)) +:extrapreds ((x2763)) +:extrapreds ((x2764)) +:extrapreds ((x2765)) +:extrapreds ((x2766)) +:extrapreds ((x2767)) +:extrapreds ((x2768)) +:extrapreds ((x2769)) +:extrapreds ((x2770)) +:extrapreds ((x2771)) +:extrapreds ((x2772)) +:extrapreds ((x2773)) +:extrapreds ((x2774)) +:extrapreds ((x2775)) +:extrapreds ((x2776)) +:extrapreds ((x2777)) +:extrapreds ((x2778)) +:extrapreds ((x2779)) +:extrapreds ((x2780)) +:extrapreds ((x2781)) +:extrapreds ((x2782)) +:extrapreds ((x2783)) +:extrapreds ((x2784)) +:extrapreds ((x2785)) +:extrapreds ((x2786)) +:extrapreds ((x2787)) +:extrapreds ((x2788)) +:extrapreds ((x2789)) +:extrapreds ((x2790)) +:extrapreds ((x2791)) +:extrapreds ((x2792)) +:extrapreds ((x2793)) +:extrapreds ((x2794)) +:extrapreds ((x2795)) +:extrapreds ((x2796)) +:extrapreds ((x2797)) +:extrapreds ((x2798)) +:extrapreds ((x2799)) +:extrapreds ((x2800)) +:extrapreds ((x2801)) +:extrapreds ((x2802)) +:extrapreds ((x2803)) +:extrapreds ((x2804)) +:extrapreds ((x2805)) +:extrapreds ((x2806)) +:extrapreds ((x2807)) +:extrapreds ((x2808)) +:extrapreds ((x2809)) +:extrapreds ((x2810)) +:assumption (or (not x1) x3) +:assumption (or (not x1) x2) +:assumption (or (not x1) (not x4)) +:assumption (or (not x1) (not x5)) +:assumption (or (not x1) (not x6)) +:assumption (or (not x1) (not x7)) +:assumption (or (not x1) (not x8)) +:assumption (or (not x1) (not x9)) +:assumption (or (not x1) (not x10)) +:assumption (or (not x1) (not x11)) +:assumption (or (not x1) (not x12)) +:assumption (or (not x1) (not x13)) +:assumption (or (not x1) (not x14)) +:assumption (or (not x1) (not x15)) +:assumption (or (not x1) (not x16)) +:assumption (or (not x1) (not x17)) +:assumption (or (not x1) (not x18)) +:assumption (or (not x1) (not x19)) +:assumption (or (not x20) x22) +:assumption (or (not x20) x21) +:assumption (or (not x20) (not x23)) +:assumption (or (not x20) (not x24)) +:assumption (or (not x20) (not x25)) +:assumption (or (not x20) (not x26)) +:assumption (or (not x20) (not x27)) +:assumption (or (not x20) (not x28)) +:assumption (or (not x20) (not x29)) +:assumption (or (not x20) (not x30)) +:assumption (or (not x20) (not x31)) +:assumption (or (not x20) (not x32)) +:assumption (or (not x20) (not x33)) +:assumption (or (not x20) (not x34)) +:assumption (or (not x20) (not x35)) +:assumption (or (not x20) (not x36)) +:assumption (or (not x20) (not x37)) +:assumption (or (not x20) (not x38)) +:assumption (or (not x39) x41) +:assumption (or (not x39) x40) +:assumption (or (not x39) (not x42)) +:assumption (or (not x39) (not x43)) +:assumption (or (not x39) (not x44)) +:assumption (or (not x39) (not x45)) +:assumption (or (not x39) (not x46)) +:assumption (or (not x39) (not x47)) +:assumption (or (not x39) (not x48)) +:assumption (or (not x39) (not x49)) +:assumption (or (not x39) (not x50)) +:assumption (or (not x39) (not x51)) +:assumption (or (not x39) (not x52)) +:assumption (or (not x39) (not x53)) +:assumption (or (not x39) (not x54)) +:assumption (or (not x39) (not x55)) +:assumption (or (not x39) (not x56)) +:assumption (or (not x39) (not x57)) +:assumption (or (not x58) x60) +:assumption (or (not x58) x59) +:assumption (or (not x58) (not x61)) +:assumption (or (not x58) (not x62)) +:assumption (or (not x58) (not x63)) +:assumption (or (not x58) (not x64)) +:assumption (or (not x58) (not x65)) +:assumption (or (not x58) (not x66)) +:assumption (or (not x58) (not x67)) +:assumption (or (not x58) (not x68)) +:assumption (or (not x58) (not x69)) +:assumption (or (not x58) (not x70)) +:assumption (or (not x58) (not x71)) +:assumption (or (not x58) (not x72)) +:assumption (or (not x58) (not x73)) +:assumption (or (not x58) (not x74)) +:assumption (or (not x58) (not x75)) +:assumption (or (not x58) (not x76)) +:assumption (or (not x77) x79) +:assumption (or (not x77) x78) +:assumption (or (not x77) (not x80)) +:assumption (or (not x77) (not x81)) +:assumption (or (not x77) (not x82)) +:assumption (or (not x77) (not x83)) +:assumption (or (not x77) (not x84)) +:assumption (or (not x77) (not x85)) +:assumption (or (not x77) (not x86)) +:assumption (or (not x77) (not x87)) +:assumption (or (not x77) (not x88)) +:assumption (or (not x77) (not x89)) +:assumption (or (not x77) (not x90)) +:assumption (or (not x77) (not x91)) +:assumption (or (not x77) (not x92)) +:assumption (or (not x77) (not x93)) +:assumption (or (not x77) (not x94)) +:assumption (or (not x77) (not x95)) +:assumption (or (not x96) x98) +:assumption (or (not x96) x97) +:assumption (or (not x96) (not x99)) +:assumption (or (not x96) (not x100)) +:assumption (or (not x96) (not x101)) +:assumption (or (not x96) (not x102)) +:assumption (or (not x96) (not x103)) +:assumption (or (not x96) (not x104)) +:assumption (or (not x96) (not x105)) +:assumption (or (not x96) (not x106)) +:assumption (or (not x96) (not x107)) +:assumption (or (not x96) (not x108)) +:assumption (or (not x96) (not x109)) +:assumption (or (not x96) (not x110)) +:assumption (or (not x96) (not x111)) +:assumption (or (not x96) (not x112)) +:assumption (or (not x96) (not x113)) +:assumption (or (not x96) (not x114)) +:assumption (or x115 (not x96)) +:assumption (or x115 (not x77)) +:assumption (or x115 (not x58)) +:assumption (or x115 (not x39)) +:assumption (or x115 (not x20)) +:assumption (or x115 (not x1)) +:assumption (or x96 x77 x58 x39 x20 x1 (not x115)) +:assumption (or x116 (not x22)) +:assumption (or x116 x21) +:assumption (or x116 x117) +:assumption (or x22 (not x21) (not x117) (not x116)) +:assumption (or (not x116) (not x118) x119) +:assumption (or (not x119) x116) +:assumption (or (not x119) x118) +:assumption (or x120 (not x23)) +:assumption (or x120 (not x24)) +:assumption (or x120 (not x25)) +:assumption (or x120 (not x26)) +:assumption (or x120 (not x27)) +:assumption (or x120 (not x28)) +:assumption (or x120 (not x29)) +:assumption (or x120 (not x30)) +:assumption (or x120 (not x31)) +:assumption (or x120 (not x32)) +:assumption (or x120 (not x33)) +:assumption (or x120 (not x34)) +:assumption (or x120 (not x35)) +:assumption (or x120 (not x36)) +:assumption (or x120 (not x37)) +:assumption (or x120 (not x38)) +:assumption (or x23 x24 x25 x26 x27 x28 x29 x30 x31 x32 x33 x34 x35 x36 x37 x38 (not x120)) +:assumption (or (not x22) x21 (not x120) x121) +:assumption (or (not x121) x22) +:assumption (or (not x121) (not x21)) +:assumption (or (not x121) x120) +:assumption (or x22 (not x21) x122) +:assumption (or (not x122) (not x22)) +:assumption (or (not x122) x21) +:assumption (or x118 (not x122)) +:assumption (or x118 (not x121)) +:assumption (or x122 x121 (not x118)) +:assumption (or x123 (not x22)) +:assumption (or x123 x21) +:assumption (or x123 (not x117)) +:assumption (or x22 (not x21) x117 (not x123)) +:assumption (or (not x123) (not x118) x124) +:assumption (or (not x124) x123) +:assumption (or (not x124) x118) +:assumption (or (not x38) (not x125) (not x126) (not x127) (not x128) x129) +:assumption (or (not x129) x38) +:assumption (or (not x129) x125) +:assumption (or (not x129) x126) +:assumption (or (not x129) x127) +:assumption (or (not x129) x128) +:assumption (or (not x26) (not x126) (not x125) (not x130) (not x131) x132) +:assumption (or (not x132) x26) +:assumption (or (not x132) x126) +:assumption (or (not x132) x125) +:assumption (or (not x132) x130) +:assumption (or (not x132) x131) +:assumption (or (not x23) (not x126) (not x125) (not x133) (not x134) (not x135) (not x136) (not x130) x137) +:assumption (or (not x137) x23) +:assumption (or (not x137) x126) +:assumption (or (not x137) x125) +:assumption (or (not x137) x133) +:assumption (or (not x137) x134) +:assumption (or (not x137) x135) +:assumption (or (not x137) x136) +:assumption (or (not x137) x130) +:assumption (or (not x138) (not x139) (not x125) (not x130) (not x140) (not x141) (not x140) x142) +:assumption (or (not x142) x138) +:assumption (or (not x142) x139) +:assumption (or (not x142) x125) +:assumption (or (not x142) x130) +:assumption (or (not x142) x140) +:assumption (or (not x142) x141) +:assumption (or (not x142) x140) +:assumption (or x143 (not x142)) +:assumption (or x143 (not x137)) +:assumption (or x143 (not x132)) +:assumption (or x143 (not x129)) +:assumption (or x143 (not x144)) +:assumption (or x142 x137 x132 x129 x144 (not x143)) +:assumption (or (not x37) (not x125) (not x126) (not x127) (not x128) x145) +:assumption (or (not x145) x37) +:assumption (or (not x145) x125) +:assumption (or (not x145) x126) +:assumption (or (not x145) x127) +:assumption (or (not x145) x128) +:assumption (or (not x25) (not x126) (not x125) (not x130) (not x131) x146) +:assumption (or (not x146) x25) +:assumption (or (not x146) x126) +:assumption (or (not x146) x125) +:assumption (or (not x146) x130) +:assumption (or (not x146) x131) +:assumption (or (not x38) (not x126) (not x125) (not x133) (not x134) (not x135) (not x136) (not x130) x147) +:assumption (or (not x147) x38) +:assumption (or (not x147) x126) +:assumption (or (not x147) x125) +:assumption (or (not x147) x133) +:assumption (or (not x147) x134) +:assumption (or (not x147) x135) +:assumption (or (not x147) x136) +:assumption (or (not x147) x130) +:assumption (or (not x38) (not x148) (not x125) (not x130) (not x140) (not x141) (not x140) x149) +:assumption (or (not x149) x38) +:assumption (or (not x149) x148) +:assumption (or (not x149) x125) +:assumption (or (not x149) x130) +:assumption (or (not x149) x140) +:assumption (or (not x149) x141) +:assumption (or (not x149) x140) +:assumption (or x150 (not x149)) +:assumption (or x150 (not x147)) +:assumption (or x150 (not x146)) +:assumption (or x150 (not x145)) +:assumption (or x149 x147 x146 x145 (not x150)) +:assumption (or (not x36) (not x125) (not x126) (not x127) (not x128) x151) +:assumption (or (not x151) x36) +:assumption (or (not x151) x125) +:assumption (or (not x151) x126) +:assumption (or (not x151) x127) +:assumption (or (not x151) x128) +:assumption (or (not x24) (not x126) (not x125) (not x130) (not x131) x152) +:assumption (or (not x152) x24) +:assumption (or (not x152) x126) +:assumption (or (not x152) x125) +:assumption (or (not x152) x130) +:assumption (or (not x152) x131) +:assumption (or (not x37) (not x126) (not x125) (not x133) (not x134) (not x135) (not x136) (not x130) x153) +:assumption (or (not x153) x37) +:assumption (or (not x153) x126) +:assumption (or (not x153) x125) +:assumption (or (not x153) x133) +:assumption (or (not x153) x134) +:assumption (or (not x153) x135) +:assumption (or (not x153) x136) +:assumption (or (not x153) x130) +:assumption (or (not x154) (not x155) (not x125) (not x130) (not x140) (not x141) (not x140) x156) +:assumption (or (not x156) x154) +:assumption (or (not x156) x155) +:assumption (or (not x156) x125) +:assumption (or (not x156) x130) +:assumption (or (not x156) x140) +:assumption (or (not x156) x141) +:assumption (or (not x156) x140) +:assumption (or x157 (not x156)) +:assumption (or x157 (not x153)) +:assumption (or x157 (not x152)) +:assumption (or x157 (not x151)) +:assumption (or x156 x153 x152 x151 (not x157)) +:assumption (or (not x35) (not x125) (not x126) (not x127) (not x128) x158) +:assumption (or (not x158) x35) +:assumption (or (not x158) x125) +:assumption (or (not x158) x126) +:assumption (or (not x158) x127) +:assumption (or (not x158) x128) +:assumption (or (not x23) (not x126) (not x125) (not x130) (not x131) x159) +:assumption (or (not x159) x23) +:assumption (or (not x159) x126) +:assumption (or (not x159) x125) +:assumption (or (not x159) x130) +:assumption (or (not x159) x131) +:assumption (or (not x36) (not x126) (not x125) (not x133) (not x134) (not x135) (not x136) (not x130) x160) +:assumption (or (not x160) x36) +:assumption (or (not x160) x126) +:assumption (or (not x160) x125) +:assumption (or (not x160) x133) +:assumption (or (not x160) x134) +:assumption (or (not x160) x135) +:assumption (or (not x160) x136) +:assumption (or (not x160) x130) +:assumption (or (not x161) (not x162) (not x125) (not x130) (not x140) (not x141) (not x140) x163) +:assumption (or (not x163) x161) +:assumption (or (not x163) x162) +:assumption (or (not x163) x125) +:assumption (or (not x163) x130) +:assumption (or (not x163) x140) +:assumption (or (not x163) x141) +:assumption (or (not x163) x140) +:assumption (or x164 (not x163)) +:assumption (or x164 (not x160)) +:assumption (or x164 (not x159)) +:assumption (or x164 (not x158)) +:assumption (or x163 x160 x159 x158 (not x164)) +:assumption (or (not x34) (not x125) (not x126) (not x127) (not x128) x165) +:assumption (or (not x165) x34) +:assumption (or (not x165) x125) +:assumption (or (not x165) x126) +:assumption (or (not x165) x127) +:assumption (or (not x165) x128) +:assumption (or (not x38) (not x126) (not x125) (not x130) (not x131) x166) +:assumption (or (not x166) x38) +:assumption (or (not x166) x126) +:assumption (or (not x166) x125) +:assumption (or (not x166) x130) +:assumption (or (not x166) x131) +:assumption (or (not x35) (not x126) (not x125) (not x133) (not x134) (not x135) (not x136) (not x130) x167) +:assumption (or (not x167) x35) +:assumption (or (not x167) x126) +:assumption (or (not x167) x125) +:assumption (or (not x167) x133) +:assumption (or (not x167) x134) +:assumption (or (not x167) x135) +:assumption (or (not x167) x136) +:assumption (or (not x167) x130) +:assumption (or (not x168) (not x169) (not x125) (not x130) (not x140) (not x141) (not x140) x170) +:assumption (or (not x170) x168) +:assumption (or (not x170) x169) +:assumption (or (not x170) x125) +:assumption (or (not x170) x130) +:assumption (or (not x170) x140) +:assumption (or (not x170) x141) +:assumption (or (not x170) x140) +:assumption (or x171 (not x170)) +:assumption (or x171 (not x167)) +:assumption (or x171 (not x166)) +:assumption (or x171 (not x165)) +:assumption (or x170 x167 x166 x165 (not x171)) +:assumption (or (not x33) (not x125) (not x126) (not x127) (not x128) x172) +:assumption (or (not x172) x33) +:assumption (or (not x172) x125) +:assumption (or (not x172) x126) +:assumption (or (not x172) x127) +:assumption (or (not x172) x128) +:assumption (or (not x37) (not x126) (not x125) (not x130) (not x131) x173) +:assumption (or (not x173) x37) +:assumption (or (not x173) x126) +:assumption (or (not x173) x125) +:assumption (or (not x173) x130) +:assumption (or (not x173) x131) +:assumption (or (not x34) (not x126) (not x125) (not x133) (not x134) (not x135) (not x136) (not x130) x174) +:assumption (or (not x174) x34) +:assumption (or (not x174) x126) +:assumption (or (not x174) x125) +:assumption (or (not x174) x133) +:assumption (or (not x174) x134) +:assumption (or (not x174) x135) +:assumption (or (not x174) x136) +:assumption (or (not x174) x130) +:assumption (or (not x34) (not x175) (not x125) (not x130) (not x140) (not x141) (not x140) x176) +:assumption (or (not x176) x34) +:assumption (or (not x176) x175) +:assumption (or (not x176) x125) +:assumption (or (not x176) x130) +:assumption (or (not x176) x140) +:assumption (or (not x176) x141) +:assumption (or (not x176) x140) +:assumption (or x177 (not x176)) +:assumption (or x177 (not x174)) +:assumption (or x177 (not x173)) +:assumption (or x177 (not x172)) +:assumption (or x176 x174 x173 x172 (not x177)) +:assumption (or (not x32) (not x125) (not x126) (not x127) (not x128) x178) +:assumption (or (not x178) x32) +:assumption (or (not x178) x125) +:assumption (or (not x178) x126) +:assumption (or (not x178) x127) +:assumption (or (not x178) x128) +:assumption (or (not x36) (not x126) (not x125) (not x130) (not x131) x179) +:assumption (or (not x179) x36) +:assumption (or (not x179) x126) +:assumption (or (not x179) x125) +:assumption (or (not x179) x130) +:assumption (or (not x179) x131) +:assumption (or (not x33) (not x126) (not x125) (not x133) (not x134) (not x135) (not x136) (not x130) x180) +:assumption (or (not x180) x33) +:assumption (or (not x180) x126) +:assumption (or (not x180) x125) +:assumption (or (not x180) x133) +:assumption (or (not x180) x134) +:assumption (or (not x180) x135) +:assumption (or (not x180) x136) +:assumption (or (not x180) x130) +:assumption (or (not x181) (not x182) (not x125) (not x130) (not x140) (not x141) (not x140) x183) +:assumption (or (not x183) x181) +:assumption (or (not x183) x182) +:assumption (or (not x183) x125) +:assumption (or (not x183) x130) +:assumption (or (not x183) x140) +:assumption (or (not x183) x141) +:assumption (or (not x183) x140) +:assumption (or x184 (not x183)) +:assumption (or x184 (not x180)) +:assumption (or x184 (not x179)) +:assumption (or x184 (not x178)) +:assumption (or x183 x180 x179 x178 (not x184)) +:assumption (or (not x31) (not x125) (not x126) (not x127) (not x128) x185) +:assumption (or (not x185) x31) +:assumption (or (not x185) x125) +:assumption (or (not x185) x126) +:assumption (or (not x185) x127) +:assumption (or (not x185) x128) +:assumption (or (not x35) (not x126) (not x125) (not x130) (not x131) x186) +:assumption (or (not x186) x35) +:assumption (or (not x186) x126) +:assumption (or (not x186) x125) +:assumption (or (not x186) x130) +:assumption (or (not x186) x131) +:assumption (or (not x32) (not x126) (not x125) (not x133) (not x134) (not x135) (not x136) (not x130) x187) +:assumption (or (not x187) x32) +:assumption (or (not x187) x126) +:assumption (or (not x187) x125) +:assumption (or (not x187) x133) +:assumption (or (not x187) x134) +:assumption (or (not x187) x135) +:assumption (or (not x187) x136) +:assumption (or (not x187) x130) +:assumption (or (not x188) (not x189) (not x125) (not x130) (not x140) (not x141) (not x140) x190) +:assumption (or (not x190) x188) +:assumption (or (not x190) x189) +:assumption (or (not x190) x125) +:assumption (or (not x190) x130) +:assumption (or (not x190) x140) +:assumption (or (not x190) x141) +:assumption (or (not x190) x140) +:assumption (or x191 (not x190)) +:assumption (or x191 (not x187)) +:assumption (or x191 (not x186)) +:assumption (or x191 (not x185)) +:assumption (or x190 x187 x186 x185 (not x191)) +:assumption (or (not x30) (not x125) (not x126) (not x127) (not x128) x192) +:assumption (or (not x192) x30) +:assumption (or (not x192) x125) +:assumption (or (not x192) x126) +:assumption (or (not x192) x127) +:assumption (or (not x192) x128) +:assumption (or (not x34) (not x126) (not x125) (not x130) (not x131) x193) +:assumption (or (not x193) x34) +:assumption (or (not x193) x126) +:assumption (or (not x193) x125) +:assumption (or (not x193) x130) +:assumption (or (not x193) x131) +:assumption (or (not x31) (not x126) (not x125) (not x133) (not x134) (not x135) (not x136) (not x130) x194) +:assumption (or (not x194) x31) +:assumption (or (not x194) x126) +:assumption (or (not x194) x125) +:assumption (or (not x194) x133) +:assumption (or (not x194) x134) +:assumption (or (not x194) x135) +:assumption (or (not x194) x136) +:assumption (or (not x194) x130) +:assumption (or (not x195) (not x196) (not x125) (not x130) (not x140) (not x141) (not x140) x197) +:assumption (or (not x197) x195) +:assumption (or (not x197) x196) +:assumption (or (not x197) x125) +:assumption (or (not x197) x130) +:assumption (or (not x197) x140) +:assumption (or (not x197) x141) +:assumption (or (not x197) x140) +:assumption (or x198 (not x197)) +:assumption (or x198 (not x194)) +:assumption (or x198 (not x193)) +:assumption (or x198 (not x192)) +:assumption (or x197 x194 x193 x192 (not x198)) +:assumption (or (not x29) (not x125) (not x126) (not x127) (not x128) x199) +:assumption (or (not x199) x29) +:assumption (or (not x199) x125) +:assumption (or (not x199) x126) +:assumption (or (not x199) x127) +:assumption (or (not x199) x128) +:assumption (or (not x33) (not x126) (not x125) (not x130) (not x131) x200) +:assumption (or (not x200) x33) +:assumption (or (not x200) x126) +:assumption (or (not x200) x125) +:assumption (or (not x200) x130) +:assumption (or (not x200) x131) +:assumption (or (not x30) (not x126) (not x125) (not x133) (not x134) (not x135) (not x136) (not x130) x201) +:assumption (or (not x201) x30) +:assumption (or (not x201) x126) +:assumption (or (not x201) x125) +:assumption (or (not x201) x133) +:assumption (or (not x201) x134) +:assumption (or (not x201) x135) +:assumption (or (not x201) x136) +:assumption (or (not x201) x130) +:assumption (or (not x30) (not x202) (not x125) (not x130) (not x140) (not x141) (not x140) x203) +:assumption (or (not x203) x30) +:assumption (or (not x203) x202) +:assumption (or (not x203) x125) +:assumption (or (not x203) x130) +:assumption (or (not x203) x140) +:assumption (or (not x203) x141) +:assumption (or (not x203) x140) +:assumption (or x204 (not x203)) +:assumption (or x204 (not x201)) +:assumption (or x204 (not x200)) +:assumption (or x204 (not x199)) +:assumption (or x203 x201 x200 x199 (not x204)) +:assumption (or (not x28) (not x125) (not x126) (not x127) (not x128) x205) +:assumption (or (not x205) x28) +:assumption (or (not x205) x125) +:assumption (or (not x205) x126) +:assumption (or (not x205) x127) +:assumption (or (not x205) x128) +:assumption (or (not x32) (not x126) (not x125) (not x130) (not x131) x206) +:assumption (or (not x206) x32) +:assumption (or (not x206) x126) +:assumption (or (not x206) x125) +:assumption (or (not x206) x130) +:assumption (or (not x206) x131) +:assumption (or (not x29) (not x126) (not x125) (not x133) (not x134) (not x135) (not x136) (not x130) x207) +:assumption (or (not x207) x29) +:assumption (or (not x207) x126) +:assumption (or (not x207) x125) +:assumption (or (not x207) x133) +:assumption (or (not x207) x134) +:assumption (or (not x207) x135) +:assumption (or (not x207) x136) +:assumption (or (not x207) x130) +:assumption (or (not x208) (not x209) (not x125) (not x130) (not x140) (not x141) (not x140) x210) +:assumption (or (not x210) x208) +:assumption (or (not x210) x209) +:assumption (or (not x210) x125) +:assumption (or (not x210) x130) +:assumption (or (not x210) x140) +:assumption (or (not x210) x141) +:assumption (or (not x210) x140) +:assumption (or x211 (not x210)) +:assumption (or x211 (not x207)) +:assumption (or x211 (not x206)) +:assumption (or x211 (not x205)) +:assumption (or x210 x207 x206 x205 (not x211)) +:assumption (or (not x27) (not x125) (not x126) (not x127) (not x128) x212) +:assumption (or (not x212) x27) +:assumption (or (not x212) x125) +:assumption (or (not x212) x126) +:assumption (or (not x212) x127) +:assumption (or (not x212) x128) +:assumption (or (not x31) (not x126) (not x125) (not x130) (not x131) x213) +:assumption (or (not x213) x31) +:assumption (or (not x213) x126) +:assumption (or (not x213) x125) +:assumption (or (not x213) x130) +:assumption (or (not x213) x131) +:assumption (or (not x28) (not x126) (not x125) (not x133) (not x134) (not x135) (not x136) (not x130) x214) +:assumption (or (not x214) x28) +:assumption (or (not x214) x126) +:assumption (or (not x214) x125) +:assumption (or (not x214) x133) +:assumption (or (not x214) x134) +:assumption (or (not x214) x135) +:assumption (or (not x214) x136) +:assumption (or (not x214) x130) +:assumption (or (not x215) (not x216) (not x125) (not x130) (not x140) (not x141) (not x140) x217) +:assumption (or (not x217) x215) +:assumption (or (not x217) x216) +:assumption (or (not x217) x125) +:assumption (or (not x217) x130) +:assumption (or (not x217) x140) +:assumption (or (not x217) x141) +:assumption (or (not x217) x140) +:assumption (or x218 (not x217)) +:assumption (or x218 (not x214)) +:assumption (or x218 (not x213)) +:assumption (or x218 (not x212)) +:assumption (or x217 x214 x213 x212 (not x218)) +:assumption (or (not x26) (not x125) (not x126) (not x127) (not x128) x219) +:assumption (or (not x219) x26) +:assumption (or (not x219) x125) +:assumption (or (not x219) x126) +:assumption (or (not x219) x127) +:assumption (or (not x219) x128) +:assumption (or (not x30) (not x126) (not x125) (not x130) (not x131) x220) +:assumption (or (not x220) x30) +:assumption (or (not x220) x126) +:assumption (or (not x220) x125) +:assumption (or (not x220) x130) +:assumption (or (not x220) x131) +:assumption (or (not x27) (not x126) (not x125) (not x133) (not x134) (not x135) (not x136) (not x130) x221) +:assumption (or (not x221) x27) +:assumption (or (not x221) x126) +:assumption (or (not x221) x125) +:assumption (or (not x221) x133) +:assumption (or (not x221) x134) +:assumption (or (not x221) x135) +:assumption (or (not x221) x136) +:assumption (or (not x221) x130) +:assumption (or (not x222) (not x223) (not x125) (not x130) (not x140) (not x141) (not x140) x224) +:assumption (or (not x224) x222) +:assumption (or (not x224) x223) +:assumption (or (not x224) x125) +:assumption (or (not x224) x130) +:assumption (or (not x224) x140) +:assumption (or (not x224) x141) +:assumption (or (not x224) x140) +:assumption (or x225 (not x224)) +:assumption (or x225 (not x221)) +:assumption (or x225 (not x220)) +:assumption (or x225 (not x219)) +:assumption (or x224 x221 x220 x219 (not x225)) +:assumption (or (not x25) (not x125) (not x126) (not x127) (not x128) x226) +:assumption (or (not x226) x25) +:assumption (or (not x226) x125) +:assumption (or (not x226) x126) +:assumption (or (not x226) x127) +:assumption (or (not x226) x128) +:assumption (or (not x29) (not x126) (not x125) (not x130) (not x131) x227) +:assumption (or (not x227) x29) +:assumption (or (not x227) x126) +:assumption (or (not x227) x125) +:assumption (or (not x227) x130) +:assumption (or (not x227) x131) +:assumption (or (not x26) (not x126) (not x125) (not x133) (not x134) (not x135) (not x136) (not x130) x228) +:assumption (or (not x228) x26) +:assumption (or (not x228) x126) +:assumption (or (not x228) x125) +:assumption (or (not x228) x133) +:assumption (or (not x228) x134) +:assumption (or (not x228) x135) +:assumption (or (not x228) x136) +:assumption (or (not x228) x130) +:assumption (or (not x26) (not x229) (not x125) (not x130) (not x140) (not x141) (not x140) x230) +:assumption (or (not x230) x26) +:assumption (or (not x230) x229) +:assumption (or (not x230) x125) +:assumption (or (not x230) x130) +:assumption (or (not x230) x140) +:assumption (or (not x230) x141) +:assumption (or (not x230) x140) +:assumption (or x231 (not x230)) +:assumption (or x231 (not x228)) +:assumption (or x231 (not x227)) +:assumption (or x231 (not x226)) +:assumption (or x230 x228 x227 x226 (not x231)) +:assumption (or (not x24) (not x125) (not x126) (not x127) (not x128) x232) +:assumption (or (not x232) x24) +:assumption (or (not x232) x125) +:assumption (or (not x232) x126) +:assumption (or (not x232) x127) +:assumption (or (not x232) x128) +:assumption (or (not x28) (not x126) (not x125) (not x130) (not x131) x233) +:assumption (or (not x233) x28) +:assumption (or (not x233) x126) +:assumption (or (not x233) x125) +:assumption (or (not x233) x130) +:assumption (or (not x233) x131) +:assumption (or (not x25) (not x126) (not x125) (not x133) (not x134) (not x135) (not x136) (not x130) x234) +:assumption (or (not x234) x25) +:assumption (or (not x234) x126) +:assumption (or (not x234) x125) +:assumption (or (not x234) x133) +:assumption (or (not x234) x134) +:assumption (or (not x234) x135) +:assumption (or (not x234) x136) +:assumption (or (not x234) x130) +:assumption (or (not x235) (not x236) (not x125) (not x130) (not x140) (not x141) (not x140) x237) +:assumption (or (not x237) x235) +:assumption (or (not x237) x236) +:assumption (or (not x237) x125) +:assumption (or (not x237) x130) +:assumption (or (not x237) x140) +:assumption (or (not x237) x141) +:assumption (or (not x237) x140) +:assumption (or x238 (not x237)) +:assumption (or x238 (not x234)) +:assumption (or x238 (not x233)) +:assumption (or x238 (not x232)) +:assumption (or x237 x234 x233 x232 (not x238)) +:assumption (or x128 (not x239)) +:assumption (or x128 (not x144)) +:assumption (or x128 (not x240)) +:assumption (or x128 (not x241)) +:assumption (or x128 (not x242)) +:assumption (or x128 (not x243)) +:assumption (or x128 x130) +:assumption (or x239 x144 x240 x241 x242 x243 (not x130) (not x128)) +:assumption (or x38 x37 x36 x35 x34 x33 x32 x31 x30 x29 x28 x27 x26 x25 x24 x23 x144) +:assumption (or (not x144) (not x38)) +:assumption (or (not x144) (not x37)) +:assumption (or (not x144) (not x36)) +:assumption (or (not x144) (not x35)) +:assumption (or (not x144) (not x34)) +:assumption (or (not x144) (not x33)) +:assumption (or (not x144) (not x32)) +:assumption (or (not x144) (not x31)) +:assumption (or (not x144) (not x30)) +:assumption (or (not x144) (not x29)) +:assumption (or (not x144) (not x28)) +:assumption (or (not x144) (not x27)) +:assumption (or (not x144) (not x26)) +:assumption (or (not x144) (not x25)) +:assumption (or (not x144) (not x24)) +:assumption (or (not x144) (not x23)) +:assumption (or x127 (not x239)) +:assumption (or x127 (not x144)) +:assumption (or x127 x130) +:assumption (or x127 (not x244)) +:assumption (or x239 x144 (not x130) x244 (not x127)) +:assumption (or (not x23) (not x125) (not x126) (not x127) (not x128) x245) +:assumption (or (not x245) x23) +:assumption (or (not x245) x125) +:assumption (or (not x245) x126) +:assumption (or (not x245) x127) +:assumption (or (not x245) x128) +:assumption (or x246 (not x24) x247) +:assumption (or (not x247) (not x246)) +:assumption (or (not x247) x24) +:assumption (or x236 x246 (not x25) x248) +:assumption (or (not x248) (not x236)) +:assumption (or (not x248) (not x246)) +:assumption (or (not x248) x25) +:assumption (or x229 x236 x246 (not x26) x249) +:assumption (or (not x249) (not x229)) +:assumption (or (not x249) (not x236)) +:assumption (or (not x249) (not x246)) +:assumption (or (not x249) x26) +:assumption (or x138 (not x23)) +:assumption (or x138 (not x249)) +:assumption (or x138 (not x248)) +:assumption (or x138 (not x247)) +:assumption (or x23 x249 x248 x247 (not x138)) +:assumption (or (not x138) (not x139) (not x130) (not x140) (not x141) (not x140) x250) +:assumption (or (not x250) x138) +:assumption (or (not x250) x139) +:assumption (or (not x250) x130) +:assumption (or (not x250) x140) +:assumption (or (not x250) x141) +:assumption (or (not x250) x140) +:assumption (or x251 (not x250)) +:assumption (or x251 x139) +:assumption (or x250 (not x139) (not x251)) +:assumption (or (not x252) (not x246) (not x130) (not x140) (not x141) (not x140) x253) +:assumption (or (not x253) x252) +:assumption (or (not x253) x246) +:assumption (or (not x253) x130) +:assumption (or (not x253) x140) +:assumption (or (not x253) x141) +:assumption (or (not x253) x140) +:assumption (or x254 (not x253)) +:assumption (or x254 x246) +:assumption (or x253 (not x246) (not x254)) +:assumption (or x229 (not x26) x255) +:assumption (or (not x255) (not x229)) +:assumption (or (not x255) x26) +:assumption (or x235 (not x25)) +:assumption (or x235 (not x255)) +:assumption (or x25 x255 (not x235)) +:assumption (or (not x235) (not x236) (not x130) (not x140) (not x141) (not x140) x256) +:assumption (or (not x256) x235) +:assumption (or (not x256) x236) +:assumption (or (not x256) x130) +:assumption (or (not x256) x140) +:assumption (or (not x256) x141) +:assumption (or (not x256) x140) +:assumption (or x257 (not x256)) +:assumption (or x257 x236) +:assumption (or x256 (not x236) (not x257)) +:assumption (or (not x26) (not x229) (not x130) (not x140) (not x141) (not x140) x258) +:assumption (or (not x258) x26) +:assumption (or (not x258) x229) +:assumption (or (not x258) x130) +:assumption (or (not x258) x140) +:assumption (or (not x258) x141) +:assumption (or (not x258) x140) +:assumption (or x259 (not x258)) +:assumption (or x259 x229) +:assumption (or x258 (not x229) (not x259)) +:assumption (or (not x259) (not x257) (not x254) (not x251) (not x26) x243) +:assumption (or (not x243) x259) +:assumption (or (not x243) x257) +:assumption (or (not x243) x254) +:assumption (or (not x243) x251) +:assumption (or (not x243) x26) +:assumption (or x216 (not x28) x260) +:assumption (or (not x260) (not x216)) +:assumption (or (not x260) x28) +:assumption (or x209 x216 (not x29) x261) +:assumption (or (not x261) (not x209)) +:assumption (or (not x261) (not x216)) +:assumption (or (not x261) x29) +:assumption (or x202 x209 x216 (not x30) x262) +:assumption (or (not x262) (not x202)) +:assumption (or (not x262) (not x209)) +:assumption (or (not x262) (not x216)) +:assumption (or (not x262) x30) +:assumption (or x222 (not x27)) +:assumption (or x222 (not x262)) +:assumption (or x222 (not x261)) +:assumption (or x222 (not x260)) +:assumption (or x27 x262 x261 x260 (not x222)) +:assumption (or (not x222) (not x223) (not x130) (not x140) (not x141) (not x140) x263) +:assumption (or (not x263) x222) +:assumption (or (not x263) x223) +:assumption (or (not x263) x130) +:assumption (or (not x263) x140) +:assumption (or (not x263) x141) +:assumption (or (not x263) x140) +:assumption (or x264 (not x263)) +:assumption (or x264 x223) +:assumption (or x263 (not x223) (not x264)) +:assumption (or x209 (not x29) x265) +:assumption (or (not x265) (not x209)) +:assumption (or (not x265) x29) +:assumption (or x202 x209 (not x30) x266) +:assumption (or (not x266) (not x202)) +:assumption (or (not x266) (not x209)) +:assumption (or (not x266) x30) +:assumption (or x215 (not x28)) +:assumption (or x215 (not x266)) +:assumption (or x215 (not x265)) +:assumption (or x28 x266 x265 (not x215)) +:assumption (or (not x215) (not x216) (not x130) (not x140) (not x141) (not x140) x267) +:assumption (or (not x267) x215) +:assumption (or (not x267) x216) +:assumption (or (not x267) x130) +:assumption (or (not x267) x140) +:assumption (or (not x267) x141) +:assumption (or (not x267) x140) +:assumption (or x268 (not x267)) +:assumption (or x268 x216) +:assumption (or x267 (not x216) (not x268)) +:assumption (or x202 (not x30) x269) +:assumption (or (not x269) (not x202)) +:assumption (or (not x269) x30) +:assumption (or x208 (not x29)) +:assumption (or x208 (not x269)) +:assumption (or x29 x269 (not x208)) +:assumption (or (not x208) (not x209) (not x130) (not x140) (not x141) (not x140) x270) +:assumption (or (not x270) x208) +:assumption (or (not x270) x209) +:assumption (or (not x270) x130) +:assumption (or (not x270) x140) +:assumption (or (not x270) x141) +:assumption (or (not x270) x140) +:assumption (or x271 (not x270)) +:assumption (or x271 x209) +:assumption (or x270 (not x209) (not x271)) +:assumption (or (not x30) (not x202) (not x130) (not x140) (not x141) (not x140) x272) +:assumption (or (not x272) x30) +:assumption (or (not x272) x202) +:assumption (or (not x272) x130) +:assumption (or (not x272) x140) +:assumption (or (not x272) x141) +:assumption (or (not x272) x140) +:assumption (or x273 (not x272)) +:assumption (or x273 x202) +:assumption (or x272 (not x202) (not x273)) +:assumption (or (not x273) (not x271) (not x268) (not x264) (not x30) x242) +:assumption (or (not x242) x273) +:assumption (or (not x242) x271) +:assumption (or (not x242) x268) +:assumption (or (not x242) x264) +:assumption (or (not x242) x30) +:assumption (or x189 (not x32) x274) +:assumption (or (not x274) (not x189)) +:assumption (or (not x274) x32) +:assumption (or x182 x189 (not x33) x275) +:assumption (or (not x275) (not x182)) +:assumption (or (not x275) (not x189)) +:assumption (or (not x275) x33) +:assumption (or x175 x182 x189 (not x34) x276) +:assumption (or (not x276) (not x175)) +:assumption (or (not x276) (not x182)) +:assumption (or (not x276) (not x189)) +:assumption (or (not x276) x34) +:assumption (or x195 (not x31)) +:assumption (or x195 (not x276)) +:assumption (or x195 (not x275)) +:assumption (or x195 (not x274)) +:assumption (or x31 x276 x275 x274 (not x195)) +:assumption (or (not x195) (not x196) (not x130) (not x140) (not x141) (not x140) x277) +:assumption (or (not x277) x195) +:assumption (or (not x277) x196) +:assumption (or (not x277) x130) +:assumption (or (not x277) x140) +:assumption (or (not x277) x141) +:assumption (or (not x277) x140) +:assumption (or x278 (not x277)) +:assumption (or x278 x196) +:assumption (or x277 (not x196) (not x278)) +:assumption (or x182 (not x33) x279) +:assumption (or (not x279) (not x182)) +:assumption (or (not x279) x33) +:assumption (or x175 x182 (not x34) x280) +:assumption (or (not x280) (not x175)) +:assumption (or (not x280) (not x182)) +:assumption (or (not x280) x34) +:assumption (or x188 (not x32)) +:assumption (or x188 (not x280)) +:assumption (or x188 (not x279)) +:assumption (or x32 x280 x279 (not x188)) +:assumption (or (not x188) (not x189) (not x130) (not x140) (not x141) (not x140) x281) +:assumption (or (not x281) x188) +:assumption (or (not x281) x189) +:assumption (or (not x281) x130) +:assumption (or (not x281) x140) +:assumption (or (not x281) x141) +:assumption (or (not x281) x140) +:assumption (or x282 (not x281)) +:assumption (or x282 x189) +:assumption (or x281 (not x189) (not x282)) +:assumption (or x175 (not x34) x283) +:assumption (or (not x283) (not x175)) +:assumption (or (not x283) x34) +:assumption (or x181 (not x33)) +:assumption (or x181 (not x283)) +:assumption (or x33 x283 (not x181)) +:assumption (or (not x181) (not x182) (not x130) (not x140) (not x141) (not x140) x284) +:assumption (or (not x284) x181) +:assumption (or (not x284) x182) +:assumption (or (not x284) x130) +:assumption (or (not x284) x140) +:assumption (or (not x284) x141) +:assumption (or (not x284) x140) +:assumption (or x285 (not x284)) +:assumption (or x285 x182) +:assumption (or x284 (not x182) (not x285)) +:assumption (or (not x34) (not x175) (not x130) (not x140) (not x141) (not x140) x286) +:assumption (or (not x286) x34) +:assumption (or (not x286) x175) +:assumption (or (not x286) x130) +:assumption (or (not x286) x140) +:assumption (or (not x286) x141) +:assumption (or (not x286) x140) +:assumption (or x287 (not x286)) +:assumption (or x287 x175) +:assumption (or x286 (not x175) (not x287)) +:assumption (or (not x287) (not x285) (not x282) (not x278) (not x34) x241) +:assumption (or (not x241) x287) +:assumption (or (not x241) x285) +:assumption (or (not x241) x282) +:assumption (or (not x241) x278) +:assumption (or (not x241) x34) +:assumption (or x162 (not x36) x288) +:assumption (or (not x288) (not x162)) +:assumption (or (not x288) x36) +:assumption (or x155 x162 (not x37) x289) +:assumption (or (not x289) (not x155)) +:assumption (or (not x289) (not x162)) +:assumption (or (not x289) x37) +:assumption (or x148 x155 x162 (not x38) x290) +:assumption (or (not x290) (not x148)) +:assumption (or (not x290) (not x155)) +:assumption (or (not x290) (not x162)) +:assumption (or (not x290) x38) +:assumption (or x168 (not x35)) +:assumption (or x168 (not x290)) +:assumption (or x168 (not x289)) +:assumption (or x168 (not x288)) +:assumption (or x35 x290 x289 x288 (not x168)) +:assumption (or (not x168) (not x169) (not x130) (not x140) (not x141) (not x140) x291) +:assumption (or (not x291) x168) +:assumption (or (not x291) x169) +:assumption (or (not x291) x130) +:assumption (or (not x291) x140) +:assumption (or (not x291) x141) +:assumption (or (not x291) x140) +:assumption (or x292 (not x291)) +:assumption (or x292 x169) +:assumption (or x291 (not x169) (not x292)) +:assumption (or x155 (not x37) x293) +:assumption (or (not x293) (not x155)) +:assumption (or (not x293) x37) +:assumption (or x148 x155 (not x38) x294) +:assumption (or (not x294) (not x148)) +:assumption (or (not x294) (not x155)) +:assumption (or (not x294) x38) +:assumption (or x161 (not x36)) +:assumption (or x161 (not x294)) +:assumption (or x161 (not x293)) +:assumption (or x36 x294 x293 (not x161)) +:assumption (or (not x161) (not x162) (not x130) (not x140) (not x141) (not x140) x295) +:assumption (or (not x295) x161) +:assumption (or (not x295) x162) +:assumption (or (not x295) x130) +:assumption (or (not x295) x140) +:assumption (or (not x295) x141) +:assumption (or (not x295) x140) +:assumption (or x296 (not x295)) +:assumption (or x296 x162) +:assumption (or x295 (not x162) (not x296)) +:assumption (or x148 (not x38) x297) +:assumption (or (not x297) (not x148)) +:assumption (or (not x297) x38) +:assumption (or x154 (not x37)) +:assumption (or x154 (not x297)) +:assumption (or x37 x297 (not x154)) +:assumption (or (not x154) (not x155) (not x130) (not x140) (not x141) (not x140) x298) +:assumption (or (not x298) x154) +:assumption (or (not x298) x155) +:assumption (or (not x298) x130) +:assumption (or (not x298) x140) +:assumption (or (not x298) x141) +:assumption (or (not x298) x140) +:assumption (or x299 (not x298)) +:assumption (or x299 x155) +:assumption (or x298 (not x155) (not x299)) +:assumption (or (not x38) (not x148) (not x130) (not x140) (not x141) (not x140) x300) +:assumption (or (not x300) x38) +:assumption (or (not x300) x148) +:assumption (or (not x300) x130) +:assumption (or (not x300) x140) +:assumption (or (not x300) x141) +:assumption (or (not x300) x140) +:assumption (or x301 (not x300)) +:assumption (or x301 x148) +:assumption (or x300 (not x148) (not x301)) +:assumption (or (not x301) (not x299) (not x296) (not x292) (not x38) x240) +:assumption (or (not x240) x301) +:assumption (or (not x240) x299) +:assumption (or (not x240) x296) +:assumption (or (not x240) x292) +:assumption (or (not x240) x38) +:assumption (or x131 (not x240)) +:assumption (or x131 (not x241)) +:assumption (or x131 (not x242)) +:assumption (or x131 (not x243)) +:assumption (or x240 x241 x242 x243 (not x131)) +:assumption (or (not x27) (not x126) (not x125) (not x130) (not x131) x302) +:assumption (or (not x302) x27) +:assumption (or (not x302) x126) +:assumption (or (not x302) x125) +:assumption (or (not x302) x130) +:assumption (or (not x302) x131) +:assumption (or x303 (not x246)) +:assumption (or x303 x24) +:assumption (or x246 (not x24) (not x303)) +:assumption (or x304 (not x236)) +:assumption (or x304 (not x246)) +:assumption (or x304 x25) +:assumption (or x236 x246 (not x25) (not x304)) +:assumption (or x305 (not x229)) +:assumption (or x305 (not x236)) +:assumption (or x305 (not x246)) +:assumption (or x305 x26) +:assumption (or x229 x236 x246 (not x26) (not x305)) +:assumption (or x23 (not x305) (not x304) (not x303) x306) +:assumption (or (not x306) (not x23)) +:assumption (or (not x306) x305) +:assumption (or (not x306) x304) +:assumption (or (not x306) x303) +:assumption (or x307 (not x306)) +:assumption (or x307 x139) +:assumption (or x307 x130) +:assumption (or x307 (not x308)) +:assumption (or x307 (not x309)) +:assumption (or x307 (not x308)) +:assumption (or x306 (not x139) (not x130) x308 x309 x308 (not x307)) +:assumption (or (not x307) (not x139) x310) +:assumption (or (not x310) x307) +:assumption (or (not x310) x139) +:assumption (or x311 (not x236)) +:assumption (or x311 x25) +:assumption (or x236 (not x25) (not x311)) +:assumption (or x312 (not x229)) +:assumption (or x312 (not x236)) +:assumption (or x312 x26) +:assumption (or x229 x236 (not x26) (not x312)) +:assumption (or x24 (not x312) (not x311) x313) +:assumption (or (not x313) (not x24)) +:assumption (or (not x313) x312) +:assumption (or (not x313) x311) +:assumption (or x314 (not x313)) +:assumption (or x314 x246) +:assumption (or x314 x130) +:assumption (or x314 (not x308)) +:assumption (or x314 (not x309)) +:assumption (or x314 (not x308)) +:assumption (or x313 (not x246) (not x130) x308 x309 x308 (not x314)) +:assumption (or (not x314) (not x246) x315) +:assumption (or (not x315) x314) +:assumption (or (not x315) x246) +:assumption (or x316 (not x229)) +:assumption (or x316 x26) +:assumption (or x229 (not x26) (not x316)) +:assumption (or x25 (not x316) x317) +:assumption (or (not x317) (not x25)) +:assumption (or (not x317) x316) +:assumption (or x318 (not x317)) +:assumption (or x318 x236) +:assumption (or x318 x130) +:assumption (or x318 (not x308)) +:assumption (or x318 (not x309)) +:assumption (or x318 (not x308)) +:assumption (or x317 (not x236) (not x130) x308 x309 x308 (not x318)) +:assumption (or (not x318) (not x236) x319) +:assumption (or (not x319) x318) +:assumption (or (not x319) x236) +:assumption (or x320 x26) +:assumption (or x320 x229) +:assumption (or x320 x130) +:assumption (or x320 (not x308)) +:assumption (or x320 (not x309)) +:assumption (or x320 (not x308)) +:assumption (or (not x26) (not x229) (not x130) x308 x309 x308 (not x320)) +:assumption (or (not x320) (not x229) x321) +:assumption (or (not x321) x320) +:assumption (or (not x321) x229) +:assumption (or x136 (not x321)) +:assumption (or x136 (not x319)) +:assumption (or x136 (not x315)) +:assumption (or x136 (not x310)) +:assumption (or x136 x26) +:assumption (or x321 x319 x315 x310 (not x26) (not x136)) +:assumption (or x322 (not x216)) +:assumption (or x322 x28) +:assumption (or x216 (not x28) (not x322)) +:assumption (or x323 (not x209)) +:assumption (or x323 (not x216)) +:assumption (or x323 x29) +:assumption (or x209 x216 (not x29) (not x323)) +:assumption (or x324 (not x202)) +:assumption (or x324 (not x209)) +:assumption (or x324 (not x216)) +:assumption (or x324 x30) +:assumption (or x202 x209 x216 (not x30) (not x324)) +:assumption (or x27 (not x324) (not x323) (not x322) x325) +:assumption (or (not x325) (not x27)) +:assumption (or (not x325) x324) +:assumption (or (not x325) x323) +:assumption (or (not x325) x322) +:assumption (or x326 (not x325)) +:assumption (or x326 x223) +:assumption (or x326 x130) +:assumption (or x326 (not x308)) +:assumption (or x326 (not x309)) +:assumption (or x326 (not x308)) +:assumption (or x325 (not x223) (not x130) x308 x309 x308 (not x326)) +:assumption (or (not x326) (not x223) x327) +:assumption (or (not x327) x326) +:assumption (or (not x327) x223) +:assumption (or x328 (not x209)) +:assumption (or x328 x29) +:assumption (or x209 (not x29) (not x328)) +:assumption (or x329 (not x202)) +:assumption (or x329 (not x209)) +:assumption (or x329 x30) +:assumption (or x202 x209 (not x30) (not x329)) +:assumption (or x28 (not x329) (not x328) x330) +:assumption (or (not x330) (not x28)) +:assumption (or (not x330) x329) +:assumption (or (not x330) x328) +:assumption (or x331 (not x330)) +:assumption (or x331 x216) +:assumption (or x331 x130) +:assumption (or x331 (not x308)) +:assumption (or x331 (not x309)) +:assumption (or x331 (not x308)) +:assumption (or x330 (not x216) (not x130) x308 x309 x308 (not x331)) +:assumption (or (not x331) (not x216) x332) +:assumption (or (not x332) x331) +:assumption (or (not x332) x216) +:assumption (or x333 (not x202)) +:assumption (or x333 x30) +:assumption (or x202 (not x30) (not x333)) +:assumption (or x29 (not x333) x334) +:assumption (or (not x334) (not x29)) +:assumption (or (not x334) x333) +:assumption (or x335 (not x334)) +:assumption (or x335 x209) +:assumption (or x335 x130) +:assumption (or x335 (not x308)) +:assumption (or x335 (not x309)) +:assumption (or x335 (not x308)) +:assumption (or x334 (not x209) (not x130) x308 x309 x308 (not x335)) +:assumption (or (not x335) (not x209) x336) +:assumption (or (not x336) x335) +:assumption (or (not x336) x209) +:assumption (or x337 x30) +:assumption (or x337 x202) +:assumption (or x337 x130) +:assumption (or x337 (not x308)) +:assumption (or x337 (not x309)) +:assumption (or x337 (not x308)) +:assumption (or (not x30) (not x202) (not x130) x308 x309 x308 (not x337)) +:assumption (or (not x337) (not x202) x338) +:assumption (or (not x338) x337) +:assumption (or (not x338) x202) +:assumption (or x135 (not x338)) +:assumption (or x135 (not x336)) +:assumption (or x135 (not x332)) +:assumption (or x135 (not x327)) +:assumption (or x135 x30) +:assumption (or x338 x336 x332 x327 (not x30) (not x135)) +:assumption (or x339 (not x189)) +:assumption (or x339 x32) +:assumption (or x189 (not x32) (not x339)) +:assumption (or x340 (not x182)) +:assumption (or x340 (not x189)) +:assumption (or x340 x33) +:assumption (or x182 x189 (not x33) (not x340)) +:assumption (or x341 (not x175)) +:assumption (or x341 (not x182)) +:assumption (or x341 (not x189)) +:assumption (or x341 x34) +:assumption (or x175 x182 x189 (not x34) (not x341)) +:assumption (or x31 (not x341) (not x340) (not x339) x342) +:assumption (or (not x342) (not x31)) +:assumption (or (not x342) x341) +:assumption (or (not x342) x340) +:assumption (or (not x342) x339) +:assumption (or x343 (not x342)) +:assumption (or x343 x196) +:assumption (or x343 x130) +:assumption (or x343 (not x308)) +:assumption (or x343 (not x309)) +:assumption (or x343 (not x308)) +:assumption (or x342 (not x196) (not x130) x308 x309 x308 (not x343)) +:assumption (or (not x343) (not x196) x344) +:assumption (or (not x344) x343) +:assumption (or (not x344) x196) +:assumption (or x345 (not x182)) +:assumption (or x345 x33) +:assumption (or x182 (not x33) (not x345)) +:assumption (or x346 (not x175)) +:assumption (or x346 (not x182)) +:assumption (or x346 x34) +:assumption (or x175 x182 (not x34) (not x346)) +:assumption (or x32 (not x346) (not x345) x347) +:assumption (or (not x347) (not x32)) +:assumption (or (not x347) x346) +:assumption (or (not x347) x345) +:assumption (or x348 (not x347)) +:assumption (or x348 x189) +:assumption (or x348 x130) +:assumption (or x348 (not x308)) +:assumption (or x348 (not x309)) +:assumption (or x348 (not x308)) +:assumption (or x347 (not x189) (not x130) x308 x309 x308 (not x348)) +:assumption (or (not x348) (not x189) x349) +:assumption (or (not x349) x348) +:assumption (or (not x349) x189) +:assumption (or x350 (not x175)) +:assumption (or x350 x34) +:assumption (or x175 (not x34) (not x350)) +:assumption (or x33 (not x350) x351) +:assumption (or (not x351) (not x33)) +:assumption (or (not x351) x350) +:assumption (or x352 (not x351)) +:assumption (or x352 x182) +:assumption (or x352 x130) +:assumption (or x352 (not x308)) +:assumption (or x352 (not x309)) +:assumption (or x352 (not x308)) +:assumption (or x351 (not x182) (not x130) x308 x309 x308 (not x352)) +:assumption (or (not x352) (not x182) x353) +:assumption (or (not x353) x352) +:assumption (or (not x353) x182) +:assumption (or x354 x34) +:assumption (or x354 x175) +:assumption (or x354 x130) +:assumption (or x354 (not x308)) +:assumption (or x354 (not x309)) +:assumption (or x354 (not x308)) +:assumption (or (not x34) (not x175) (not x130) x308 x309 x308 (not x354)) +:assumption (or (not x354) (not x175) x355) +:assumption (or (not x355) x354) +:assumption (or (not x355) x175) +:assumption (or x134 (not x355)) +:assumption (or x134 (not x353)) +:assumption (or x134 (not x349)) +:assumption (or x134 (not x344)) +:assumption (or x134 x34) +:assumption (or x355 x353 x349 x344 (not x34) (not x134)) +:assumption (or x356 (not x162)) +:assumption (or x356 x36) +:assumption (or x162 (not x36) (not x356)) +:assumption (or x357 (not x155)) +:assumption (or x357 (not x162)) +:assumption (or x357 x37) +:assumption (or x155 x162 (not x37) (not x357)) +:assumption (or x358 (not x148)) +:assumption (or x358 (not x155)) +:assumption (or x358 (not x162)) +:assumption (or x358 x38) +:assumption (or x148 x155 x162 (not x38) (not x358)) +:assumption (or x35 (not x358) (not x357) (not x356) x359) +:assumption (or (not x359) (not x35)) +:assumption (or (not x359) x358) +:assumption (or (not x359) x357) +:assumption (or (not x359) x356) +:assumption (or x360 (not x359)) +:assumption (or x360 x169) +:assumption (or x360 x130) +:assumption (or x360 (not x308)) +:assumption (or x360 (not x309)) +:assumption (or x360 (not x308)) +:assumption (or x359 (not x169) (not x130) x308 x309 x308 (not x360)) +:assumption (or (not x360) (not x169) x361) +:assumption (or (not x361) x360) +:assumption (or (not x361) x169) +:assumption (or x362 (not x155)) +:assumption (or x362 x37) +:assumption (or x155 (not x37) (not x362)) +:assumption (or x363 (not x148)) +:assumption (or x363 (not x155)) +:assumption (or x363 x38) +:assumption (or x148 x155 (not x38) (not x363)) +:assumption (or x36 (not x363) (not x362) x364) +:assumption (or (not x364) (not x36)) +:assumption (or (not x364) x363) +:assumption (or (not x364) x362) +:assumption (or x365 (not x364)) +:assumption (or x365 x162) +:assumption (or x365 x130) +:assumption (or x365 (not x308)) +:assumption (or x365 (not x309)) +:assumption (or x365 (not x308)) +:assumption (or x364 (not x162) (not x130) x308 x309 x308 (not x365)) +:assumption (or (not x365) (not x162) x366) +:assumption (or (not x366) x365) +:assumption (or (not x366) x162) +:assumption (or x367 (not x148)) +:assumption (or x367 x38) +:assumption (or x148 (not x38) (not x367)) +:assumption (or x37 (not x367) x368) +:assumption (or (not x368) (not x37)) +:assumption (or (not x368) x367) +:assumption (or x369 (not x368)) +:assumption (or x369 x155) +:assumption (or x369 x130) +:assumption (or x369 (not x308)) +:assumption (or x369 (not x309)) +:assumption (or x369 (not x308)) +:assumption (or x368 (not x155) (not x130) x308 x309 x308 (not x369)) +:assumption (or (not x369) (not x155) x370) +:assumption (or (not x370) x369) +:assumption (or (not x370) x155) +:assumption (or x371 x38) +:assumption (or x371 x148) +:assumption (or x371 x130) +:assumption (or x371 (not x308)) +:assumption (or x371 (not x309)) +:assumption (or x371 (not x308)) +:assumption (or (not x38) (not x148) (not x130) x308 x309 x308 (not x371)) +:assumption (or (not x371) (not x148) x372) +:assumption (or (not x372) x371) +:assumption (or (not x372) x148) +:assumption (or x133 (not x372)) +:assumption (or x133 (not x370)) +:assumption (or x133 (not x366)) +:assumption (or x133 (not x361)) +:assumption (or x133 x38) +:assumption (or x372 x370 x366 x361 (not x38) (not x133)) +:assumption (or (not x133) (not x134) (not x135) (not x136) x244) +:assumption (or (not x244) x133) +:assumption (or (not x244) x134) +:assumption (or (not x244) x135) +:assumption (or (not x244) x136) +:assumption (or x373 x374) +:assumption (or x373 x375) +:assumption (or x373 x376) +:assumption (or x373 x377) +:assumption (or (not x374) (not x375) (not x376) (not x377) (not x373)) +:assumption (or x378 (not x379) x380) +:assumption (or (not x380) (not x378)) +:assumption (or (not x380) x379) +:assumption (or x381 (not x382) x383) +:assumption (or (not x383) (not x381)) +:assumption (or (not x383) x382) +:assumption (or x384 (not x385) x386) +:assumption (or (not x386) (not x384)) +:assumption (or (not x386) x385) +:assumption (or x387 (not x388) x389) +:assumption (or (not x389) (not x387)) +:assumption (or (not x389) x388) +:assumption (or x390 (not x389)) +:assumption (or x390 (not x386)) +:assumption (or x390 (not x383)) +:assumption (or x390 (not x380)) +:assumption (or x389 x386 x383 x380 (not x390)) +:assumption (or (not x390) (not x373) x309) +:assumption (or (not x309) x390) +:assumption (or (not x309) x373) +:assumption (or x229 x236 x246 x139 x391) +:assumption (or (not x391) (not x229)) +:assumption (or (not x391) (not x236)) +:assumption (or (not x391) (not x246)) +:assumption (or (not x391) (not x139)) +:assumption (or x26 x25 x24 x23 x392) +:assumption (or (not x392) (not x26)) +:assumption (or (not x392) (not x25)) +:assumption (or (not x392) (not x24)) +:assumption (or (not x392) (not x23)) +:assumption (or x393 (not x392)) +:assumption (or x393 (not x391)) +:assumption (or x392 x391 (not x393)) +:assumption (or x202 x209 x216 x223 x394) +:assumption (or (not x394) (not x202)) +:assumption (or (not x394) (not x209)) +:assumption (or (not x394) (not x216)) +:assumption (or (not x394) (not x223)) +:assumption (or x30 x29 x28 x27 x395) +:assumption (or (not x395) (not x30)) +:assumption (or (not x395) (not x29)) +:assumption (or (not x395) (not x28)) +:assumption (or (not x395) (not x27)) +:assumption (or x396 (not x395)) +:assumption (or x396 (not x394)) +:assumption (or x395 x394 (not x396)) +:assumption (or x175 x182 x189 x196 x397) +:assumption (or (not x397) (not x175)) +:assumption (or (not x397) (not x182)) +:assumption (or (not x397) (not x189)) +:assumption (or (not x397) (not x196)) +:assumption (or x34 x33 x32 x31 x398) +:assumption (or (not x398) (not x34)) +:assumption (or (not x398) (not x33)) +:assumption (or (not x398) (not x32)) +:assumption (or (not x398) (not x31)) +:assumption (or x399 (not x398)) +:assumption (or x399 (not x397)) +:assumption (or x398 x397 (not x399)) +:assumption (or x148 x155 x162 x169 x400) +:assumption (or (not x400) (not x148)) +:assumption (or (not x400) (not x155)) +:assumption (or (not x400) (not x162)) +:assumption (or (not x400) (not x169)) +:assumption (or x38 x37 x36 x35 x401) +:assumption (or (not x401) (not x38)) +:assumption (or (not x401) (not x37)) +:assumption (or (not x401) (not x36)) +:assumption (or (not x401) (not x35)) +:assumption (or x402 (not x401)) +:assumption (or x402 (not x400)) +:assumption (or x401 x400 (not x402)) +:assumption (or (not x402) (not x399) (not x396) (not x393) x308) +:assumption (or (not x308) x402) +:assumption (or (not x308) x399) +:assumption (or (not x308) x396) +:assumption (or (not x308) x393) +:assumption (or x126 x130) +:assumption (or x126 (not x308)) +:assumption (or x126 (not x309)) +:assumption (or x126 (not x308)) +:assumption (or (not x130) x308 x309 x308 (not x126)) +:assumption (or (not x24) (not x126) (not x125) (not x133) (not x134) (not x135) (not x136) (not x130) x403) +:assumption (or (not x403) x24) +:assumption (or (not x403) x126) +:assumption (or (not x403) x125) +:assumption (or (not x403) x133) +:assumption (or (not x403) x134) +:assumption (or (not x403) x135) +:assumption (or (not x403) x136) +:assumption (or (not x403) x130) +:assumption (or (not x374) (not x375) (not x376) (not x377) x404) +:assumption (or (not x404) x374) +:assumption (or (not x404) x375) +:assumption (or (not x404) x376) +:assumption (or (not x404) x377) +:assumption (or x405 (not x378)) +:assumption (or x405 x379) +:assumption (or x378 (not x379) (not x405)) +:assumption (or x406 (not x381)) +:assumption (or x406 x382) +:assumption (or x381 (not x382) (not x406)) +:assumption (or x407 (not x384)) +:assumption (or x407 x385) +:assumption (or x384 (not x385) (not x407)) +:assumption (or x408 (not x387)) +:assumption (or x408 x388) +:assumption (or x387 (not x388) (not x408)) +:assumption (or (not x408) (not x407) (not x406) (not x405) x409) +:assumption (or (not x409) x408) +:assumption (or (not x409) x407) +:assumption (or (not x409) x406) +:assumption (or (not x409) x405) +:assumption (or x141 (not x409)) +:assumption (or x141 (not x404)) +:assumption (or x409 x404 (not x141)) +:assumption (or x410 (not x229)) +:assumption (or x410 (not x236)) +:assumption (or x410 (not x246)) +:assumption (or x410 (not x139)) +:assumption (or x229 x236 x246 x139 (not x410)) +:assumption (or x411 (not x26)) +:assumption (or x411 (not x25)) +:assumption (or x411 (not x24)) +:assumption (or x411 (not x23)) +:assumption (or x26 x25 x24 x23 (not x411)) +:assumption (or (not x411) (not x410) x412) +:assumption (or (not x412) x411) +:assumption (or (not x412) x410) +:assumption (or x413 (not x202)) +:assumption (or x413 (not x209)) +:assumption (or x413 (not x216)) +:assumption (or x413 (not x223)) +:assumption (or x202 x209 x216 x223 (not x413)) +:assumption (or x414 (not x30)) +:assumption (or x414 (not x29)) +:assumption (or x414 (not x28)) +:assumption (or x414 (not x27)) +:assumption (or x30 x29 x28 x27 (not x414)) +:assumption (or (not x414) (not x413) x415) +:assumption (or (not x415) x414) +:assumption (or (not x415) x413) +:assumption (or x416 (not x175)) +:assumption (or x416 (not x182)) +:assumption (or x416 (not x189)) +:assumption (or x416 (not x196)) +:assumption (or x175 x182 x189 x196 (not x416)) +:assumption (or x417 (not x34)) +:assumption (or x417 (not x33)) +:assumption (or x417 (not x32)) +:assumption (or x417 (not x31)) +:assumption (or x34 x33 x32 x31 (not x417)) +:assumption (or (not x417) (not x416) x418) +:assumption (or (not x418) x417) +:assumption (or (not x418) x416) +:assumption (or x419 (not x148)) +:assumption (or x419 (not x155)) +:assumption (or x419 (not x162)) +:assumption (or x419 (not x169)) +:assumption (or x148 x155 x162 x169 (not x419)) +:assumption (or (not x420) (not x419) x421) +:assumption (or (not x421) x420) +:assumption (or (not x421) x419) +:assumption (or x140 (not x421)) +:assumption (or x140 (not x418)) +:assumption (or x140 (not x415)) +:assumption (or x140 (not x412)) +:assumption (or x421 x418 x415 x412 (not x140)) +:assumption (or (not x130) (not x140) (not x141) (not x140) x239) +:assumption (or (not x239) x130) +:assumption (or (not x239) x140) +:assumption (or (not x239) x141) +:assumption (or (not x239) x140) +:assumption (or x420 (not x38)) +:assumption (or x420 (not x37)) +:assumption (or x420 (not x36)) +:assumption (or x420 (not x35)) +:assumption (or x38 x37 x36 x35 (not x420)) +:assumption (or x125 (not x38)) +:assumption (or x125 (not x37)) +:assumption (or x125 (not x36)) +:assumption (or x125 (not x35)) +:assumption (or x125 (not x34)) +:assumption (or x125 (not x33)) +:assumption (or x125 (not x32)) +:assumption (or x125 (not x31)) +:assumption (or x125 (not x30)) +:assumption (or x125 (not x29)) +:assumption (or x125 (not x28)) +:assumption (or x125 (not x27)) +:assumption (or x125 (not x26)) +:assumption (or x125 (not x25)) +:assumption (or x125 (not x24)) +:assumption (or x125 (not x23)) +:assumption (or x38 x37 x36 x35 x34 x33 x32 x31 x30 x29 x28 x27 x26 x25 x24 x23 (not x125)) +:assumption (or x236 (not x25) x422) +:assumption (or (not x422) (not x236)) +:assumption (or (not x422) x25) +:assumption (or x229 x236 (not x26) x423) +:assumption (or (not x423) (not x229)) +:assumption (or (not x423) (not x236)) +:assumption (or (not x423) x26) +:assumption (or x252 (not x24)) +:assumption (or x252 (not x423)) +:assumption (or x252 (not x422)) +:assumption (or x24 x423 x422 (not x252)) +:assumption (or (not x252) (not x246) (not x125) (not x130) (not x140) (not x141) (not x140) x424) +:assumption (or (not x424) x252) +:assumption (or (not x424) x246) +:assumption (or (not x424) x125) +:assumption (or (not x424) x130) +:assumption (or (not x424) x140) +:assumption (or (not x424) x141) +:assumption (or (not x424) x140) +:assumption (or x425 (not x424)) +:assumption (or x425 (not x403)) +:assumption (or x425 (not x302)) +:assumption (or x425 (not x245)) +:assumption (or x424 x403 x302 x245 (not x425)) +:assumption (or x426 (not x41)) +:assumption (or x426 x40) +:assumption (or x426 x427) +:assumption (or x41 (not x40) (not x427) (not x426)) +:assumption (or (not x426) (not x428) x429) +:assumption (or (not x429) x426) +:assumption (or (not x429) x428) +:assumption (or x430 (not x42)) +:assumption (or x430 (not x43)) +:assumption (or x430 (not x44)) +:assumption (or x430 (not x45)) +:assumption (or x430 (not x46)) +:assumption (or x430 (not x47)) +:assumption (or x430 (not x48)) +:assumption (or x430 (not x49)) +:assumption (or x430 (not x50)) +:assumption (or x430 (not x51)) +:assumption (or x430 (not x52)) +:assumption (or x430 (not x53)) +:assumption (or x430 (not x54)) +:assumption (or x430 (not x55)) +:assumption (or x430 (not x56)) +:assumption (or x430 (not x57)) +:assumption (or x42 x43 x44 x45 x46 x47 x48 x49 x50 x51 x52 x53 x54 x55 x56 x57 (not x430)) +:assumption (or (not x41) x40 (not x430) x431) +:assumption (or (not x431) x41) +:assumption (or (not x431) (not x40)) +:assumption (or (not x431) x430) +:assumption (or x41 (not x40) x432) +:assumption (or (not x432) (not x41)) +:assumption (or (not x432) x40) +:assumption (or x428 (not x432)) +:assumption (or x428 (not x431)) +:assumption (or x432 x431 (not x428)) +:assumption (or x433 (not x41)) +:assumption (or x433 x40) +:assumption (or x433 (not x427)) +:assumption (or x41 (not x40) x427 (not x433)) +:assumption (or (not x433) (not x428) x434) +:assumption (or (not x434) x433) +:assumption (or (not x434) x428) +:assumption (or (not x435) (not x436) x437) +:assumption (or (not x437) x435) +:assumption (or (not x437) x436) +:assumption (or (not x438) (not x435) (not x439) x440) +:assumption (or (not x440) x438) +:assumption (or (not x440) x435) +:assumption (or (not x440) x439) +:assumption (or (not x441) (not x438) (not x435) (not x442) x443) +:assumption (or (not x443) x441) +:assumption (or (not x443) x438) +:assumption (or (not x443) x435) +:assumption (or (not x443) x442) +:assumption (or x444 (not x445)) +:assumption (or x444 (not x443)) +:assumption (or x444 (not x440)) +:assumption (or x444 (not x437)) +:assumption (or x445 x443 x440 x437 (not x444)) +:assumption (or (not x444) x446 (not x447) (not x448) (not x449) x450) +:assumption (or (not x450) x444) +:assumption (or (not x450) (not x446)) +:assumption (or (not x450) x447) +:assumption (or (not x450) x448) +:assumption (or (not x450) x449) +:assumption (or (not x438) (not x439) x451) +:assumption (or (not x451) x438) +:assumption (or (not x451) x439) +:assumption (or (not x441) (not x438) (not x442) x452) +:assumption (or (not x452) x441) +:assumption (or (not x452) x438) +:assumption (or (not x452) x442) +:assumption (or (not x453) (not x441) (not x438) (not x445) x454) +:assumption (or (not x454) x453) +:assumption (or (not x454) x441) +:assumption (or (not x454) x438) +:assumption (or (not x454) x445) +:assumption (or x455 (not x436)) +:assumption (or x455 (not x454)) +:assumption (or x455 (not x452)) +:assumption (or x455 (not x451)) +:assumption (or x436 x454 x452 x451 (not x455)) +:assumption (or (not x455) x456 (not x457) (not x448) (not x449) x458) +:assumption (or (not x458) x455) +:assumption (or (not x458) (not x456)) +:assumption (or (not x458) x457) +:assumption (or (not x458) x448) +:assumption (or (not x458) x449) +:assumption (or (not x441) (not x442) x459) +:assumption (or (not x459) x441) +:assumption (or (not x459) x442) +:assumption (or (not x453) (not x441) (not x445) x460) +:assumption (or (not x460) x453) +:assumption (or (not x460) x441) +:assumption (or (not x460) x445) +:assumption (or (not x435) (not x453) (not x441) (not x436) x461) +:assumption (or (not x461) x435) +:assumption (or (not x461) x453) +:assumption (or (not x461) x441) +:assumption (or (not x461) x436) +:assumption (or x462 (not x439)) +:assumption (or x462 (not x461)) +:assumption (or x462 (not x460)) +:assumption (or x462 (not x459)) +:assumption (or x439 x461 x460 x459 (not x462)) +:assumption (or (not x462) x463 (not x464) (not x448) (not x449) x465) +:assumption (or (not x465) x462) +:assumption (or (not x465) (not x463)) +:assumption (or (not x465) x464) +:assumption (or (not x465) x448) +:assumption (or (not x465) x449) +:assumption (or (not x453) (not x445) x466) +:assumption (or (not x466) x453) +:assumption (or (not x466) x445) +:assumption (or (not x435) (not x453) (not x436) x467) +:assumption (or (not x467) x435) +:assumption (or (not x467) x453) +:assumption (or (not x467) x436) +:assumption (or (not x438) (not x435) (not x453) (not x439) x468) +:assumption (or (not x468) x438) +:assumption (or (not x468) x435) +:assumption (or (not x468) x453) +:assumption (or (not x468) x439) +:assumption (or x469 (not x442)) +:assumption (or x469 (not x468)) +:assumption (or x469 (not x467)) +:assumption (or x469 (not x466)) +:assumption (or x442 x468 x467 x466 (not x469)) +:assumption (or (not x469) x470 (not x471) (not x448) (not x449) x472) +:assumption (or (not x472) x469) +:assumption (or (not x472) (not x470)) +:assumption (or (not x472) x471) +:assumption (or (not x472) x448) +:assumption (or (not x472) x449) +:assumption (or x473 (not x474) x475) +:assumption (or (not x475) (not x473)) +:assumption (or (not x475) x474) +:assumption (or (not x448) (not x476) (not x477) x478) +:assumption (or (not x478) x448) +:assumption (or (not x478) x476) +:assumption (or (not x478) x477) +:assumption (or x479 (not x478)) +:assumption (or x479 (not x475)) +:assumption (or x478 x475 (not x479)) +:assumption (or x473 (not x476) x480) +:assumption (or (not x480) (not x473)) +:assumption (or (not x480) x476) +:assumption (or (not x448) (not x481) (not x477) x482) +:assumption (or (not x482) x448) +:assumption (or (not x482) x481) +:assumption (or (not x482) x477) +:assumption (or x483 (not x482)) +:assumption (or x483 (not x480)) +:assumption (or x482 x480 (not x483)) +:assumption (or x473 (not x481) x484) +:assumption (or (not x484) (not x473)) +:assumption (or (not x484) x481) +:assumption (or (not x448) (not x485) (not x477) x486) +:assumption (or (not x486) x448) +:assumption (or (not x486) x485) +:assumption (or (not x486) x477) +:assumption (or x487 (not x486)) +:assumption (or x487 (not x484)) +:assumption (or x486 x484 (not x487)) +:assumption (or x473 (not x485) x488) +:assumption (or (not x488) (not x473)) +:assumption (or (not x488) x485) +:assumption (or (not x448) (not x477) x489) +:assumption (or (not x489) x448) +:assumption (or (not x489) x477) +:assumption (or x490 (not x489)) +:assumption (or x490 (not x488)) +:assumption (or x489 x488 (not x490)) +:assumption (or x491 (not x446)) +:assumption (or x491 x447) +:assumption (or x491 (not x447)) +:assumption (or x446 (not x447) x447 (not x491)) +:assumption (or x492 (not x493)) +:assumption (or x492 x494) +:assumption (or x493 (not x494) (not x492)) +:assumption (or (not x492) (not x491) x495) +:assumption (or (not x495) x492) +:assumption (or (not x495) x491) +:assumption (or x496 (not x456)) +:assumption (or x496 x457) +:assumption (or x496 (not x457)) +:assumption (or x456 (not x457) x457 (not x496)) +:assumption (or x497 (not x498)) +:assumption (or x497 x499) +:assumption (or x498 (not x499) (not x497)) +:assumption (or (not x497) (not x496) x500) +:assumption (or (not x500) x497) +:assumption (or (not x500) x496) +:assumption (or x501 (not x463)) +:assumption (or x501 x464) +:assumption (or x501 (not x464)) +:assumption (or x463 (not x464) x464 (not x501)) +:assumption (or x502 (not x503)) +:assumption (or x502 x504) +:assumption (or x503 (not x504) (not x502)) +:assumption (or (not x502) (not x501) x505) +:assumption (or (not x505) x502) +:assumption (or (not x505) x501) +:assumption (or x506 (not x470)) +:assumption (or x506 x471) +:assumption (or x506 (not x471)) +:assumption (or x470 (not x471) x471 (not x506)) +:assumption (or x507 (not x508)) +:assumption (or x507 x509) +:assumption (or x508 (not x509) (not x507)) +:assumption (or (not x507) (not x506) x510) +:assumption (or (not x510) x507) +:assumption (or (not x510) x506) +:assumption (or x511 (not x448)) +:assumption (or x511 (not x473)) +:assumption (or x448 x473 (not x511)) +:assumption (or x512 (not x513)) +:assumption (or x512 (not x515)) +:assumption (or x513 x515 (not x512)) +:assumption (or x516 (not x517)) +:assumption (or x516 (not x519)) +:assumption (or x517 x519 (not x516)) +:assumption (or x520 (not x521)) +:assumption (or x520 (not x523)) +:assumption (or x521 x523 (not x520)) +:assumption (or x524 (not x525)) +:assumption (or x524 (not x527)) +:assumption (or x525 x527 (not x524)) +:assumption (or x528 (not x529)) +:assumption (or x528 (not x531)) +:assumption (or x529 x531 (not x528)) +:assumption (or x532 (not x533)) +:assumption (or x532 (not x535)) +:assumption (or x533 x535 (not x532)) +:assumption (or x536 (not x537)) +:assumption (or x536 (not x539)) +:assumption (or x537 x539 (not x536)) +:assumption (or x540 (not x541)) +:assumption (or x540 (not x543)) +:assumption (or x541 x543 (not x540)) +:assumption (or x544 (not x545)) +:assumption (or x544 (not x547)) +:assumption (or x545 x547 (not x544)) +:assumption (or x548 (not x549)) +:assumption (or x548 (not x551)) +:assumption (or x549 x551 (not x548)) +:assumption (or x552 (not x553)) +:assumption (or x552 (not x555)) +:assumption (or x553 x555 (not x552)) +:assumption (or x556 (not x557)) +:assumption (or x556 (not x559)) +:assumption (or x557 x559 (not x556)) +:assumption (or x560 (not x561)) +:assumption (or x560 (not x563)) +:assumption (or x561 x563 (not x560)) +:assumption (or x564 (not x565)) +:assumption (or x564 (not x567)) +:assumption (or x565 x567 (not x564)) +:assumption (or x568 (not x569)) +:assumption (or x568 (not x571)) +:assumption (or x569 x571 (not x568)) +:assumption (or x572 (not x573)) +:assumption (or x572 (not x575)) +:assumption (or x573 x575 (not x572)) +:assumption (or (not x57) (not x576) (not x577) (not x578) (not x579) x580) +:assumption (or (not x580) x57) +:assumption (or (not x580) x576) +:assumption (or (not x580) x577) +:assumption (or (not x580) x578) +:assumption (or (not x580) x579) +:assumption (or (not x45) (not x577) (not x576) (not x581) (not x582) x583) +:assumption (or (not x583) x45) +:assumption (or (not x583) x577) +:assumption (or (not x583) x576) +:assumption (or (not x583) x581) +:assumption (or (not x583) x582) +:assumption (or (not x42) (not x577) (not x576) (not x584) (not x585) (not x586) (not x587) (not x581) x588) +:assumption (or (not x588) x42) +:assumption (or (not x588) x577) +:assumption (or (not x588) x576) +:assumption (or (not x588) x584) +:assumption (or (not x588) x585) +:assumption (or (not x588) x586) +:assumption (or (not x588) x587) +:assumption (or (not x588) x581) +:assumption (or (not x589) (not x590) (not x576) (not x581) (not x477) (not x591) (not x477) x592) +:assumption (or (not x592) x589) +:assumption (or (not x592) x590) +:assumption (or (not x592) x576) +:assumption (or (not x592) x581) +:assumption (or (not x592) x477) +:assumption (or (not x592) x591) +:assumption (or (not x592) x477) +:assumption (or x593 (not x592)) +:assumption (or x593 (not x588)) +:assumption (or x593 (not x583)) +:assumption (or x593 (not x580)) +:assumption (or x593 (not x594)) +:assumption (or x592 x588 x583 x580 x594 (not x593)) +:assumption (or (not x56) (not x576) (not x577) (not x578) (not x579) x595) +:assumption (or (not x595) x56) +:assumption (or (not x595) x576) +:assumption (or (not x595) x577) +:assumption (or (not x595) x578) +:assumption (or (not x595) x579) +:assumption (or (not x44) (not x577) (not x576) (not x581) (not x582) x596) +:assumption (or (not x596) x44) +:assumption (or (not x596) x577) +:assumption (or (not x596) x576) +:assumption (or (not x596) x581) +:assumption (or (not x596) x582) +:assumption (or (not x57) (not x577) (not x576) (not x584) (not x585) (not x586) (not x587) (not x581) x597) +:assumption (or (not x597) x57) +:assumption (or (not x597) x577) +:assumption (or (not x597) x576) +:assumption (or (not x597) x584) +:assumption (or (not x597) x585) +:assumption (or (not x597) x586) +:assumption (or (not x597) x587) +:assumption (or (not x597) x581) +:assumption (or (not x57) (not x598) (not x576) (not x581) (not x477) (not x591) (not x477) x599) +:assumption (or (not x599) x57) +:assumption (or (not x599) x598) +:assumption (or (not x599) x576) +:assumption (or (not x599) x581) +:assumption (or (not x599) x477) +:assumption (or (not x599) x591) +:assumption (or (not x599) x477) +:assumption (or x600 (not x599)) +:assumption (or x600 (not x597)) +:assumption (or x600 (not x596)) +:assumption (or x600 (not x595)) +:assumption (or x599 x597 x596 x595 (not x600)) +:assumption (or (not x55) (not x576) (not x577) (not x578) (not x579) x601) +:assumption (or (not x601) x55) +:assumption (or (not x601) x576) +:assumption (or (not x601) x577) +:assumption (or (not x601) x578) +:assumption (or (not x601) x579) +:assumption (or (not x43) (not x577) (not x576) (not x581) (not x582) x602) +:assumption (or (not x602) x43) +:assumption (or (not x602) x577) +:assumption (or (not x602) x576) +:assumption (or (not x602) x581) +:assumption (or (not x602) x582) +:assumption (or (not x56) (not x577) (not x576) (not x584) (not x585) (not x586) (not x587) (not x581) x603) +:assumption (or (not x603) x56) +:assumption (or (not x603) x577) +:assumption (or (not x603) x576) +:assumption (or (not x603) x584) +:assumption (or (not x603) x585) +:assumption (or (not x603) x586) +:assumption (or (not x603) x587) +:assumption (or (not x603) x581) +:assumption (or (not x604) (not x605) (not x576) (not x581) (not x477) (not x591) (not x477) x606) +:assumption (or (not x606) x604) +:assumption (or (not x606) x605) +:assumption (or (not x606) x576) +:assumption (or (not x606) x581) +:assumption (or (not x606) x477) +:assumption (or (not x606) x591) +:assumption (or (not x606) x477) +:assumption (or x607 (not x606)) +:assumption (or x607 (not x603)) +:assumption (or x607 (not x602)) +:assumption (or x607 (not x601)) +:assumption (or x606 x603 x602 x601 (not x607)) +:assumption (or (not x54) (not x576) (not x577) (not x578) (not x579) x608) +:assumption (or (not x608) x54) +:assumption (or (not x608) x576) +:assumption (or (not x608) x577) +:assumption (or (not x608) x578) +:assumption (or (not x608) x579) +:assumption (or (not x42) (not x577) (not x576) (not x581) (not x582) x609) +:assumption (or (not x609) x42) +:assumption (or (not x609) x577) +:assumption (or (not x609) x576) +:assumption (or (not x609) x581) +:assumption (or (not x609) x582) +:assumption (or (not x55) (not x577) (not x576) (not x584) (not x585) (not x586) (not x587) (not x581) x610) +:assumption (or (not x610) x55) +:assumption (or (not x610) x577) +:assumption (or (not x610) x576) +:assumption (or (not x610) x584) +:assumption (or (not x610) x585) +:assumption (or (not x610) x586) +:assumption (or (not x610) x587) +:assumption (or (not x610) x581) +:assumption (or (not x611) (not x612) (not x576) (not x581) (not x477) (not x591) (not x477) x613) +:assumption (or (not x613) x611) +:assumption (or (not x613) x612) +:assumption (or (not x613) x576) +:assumption (or (not x613) x581) +:assumption (or (not x613) x477) +:assumption (or (not x613) x591) +:assumption (or (not x613) x477) +:assumption (or x614 (not x613)) +:assumption (or x614 (not x610)) +:assumption (or x614 (not x609)) +:assumption (or x614 (not x608)) +:assumption (or x613 x610 x609 x608 (not x614)) +:assumption (or (not x53) (not x576) (not x577) (not x578) (not x579) x615) +:assumption (or (not x615) x53) +:assumption (or (not x615) x576) +:assumption (or (not x615) x577) +:assumption (or (not x615) x578) +:assumption (or (not x615) x579) +:assumption (or (not x57) (not x577) (not x576) (not x581) (not x582) x616) +:assumption (or (not x616) x57) +:assumption (or (not x616) x577) +:assumption (or (not x616) x576) +:assumption (or (not x616) x581) +:assumption (or (not x616) x582) +:assumption (or (not x54) (not x577) (not x576) (not x584) (not x585) (not x586) (not x587) (not x581) x617) +:assumption (or (not x617) x54) +:assumption (or (not x617) x577) +:assumption (or (not x617) x576) +:assumption (or (not x617) x584) +:assumption (or (not x617) x585) +:assumption (or (not x617) x586) +:assumption (or (not x617) x587) +:assumption (or (not x617) x581) +:assumption (or (not x618) (not x619) (not x576) (not x581) (not x477) (not x591) (not x477) x620) +:assumption (or (not x620) x618) +:assumption (or (not x620) x619) +:assumption (or (not x620) x576) +:assumption (or (not x620) x581) +:assumption (or (not x620) x477) +:assumption (or (not x620) x591) +:assumption (or (not x620) x477) +:assumption (or x621 (not x620)) +:assumption (or x621 (not x617)) +:assumption (or x621 (not x616)) +:assumption (or x621 (not x615)) +:assumption (or x620 x617 x616 x615 (not x621)) +:assumption (or (not x52) (not x576) (not x577) (not x578) (not x579) x622) +:assumption (or (not x622) x52) +:assumption (or (not x622) x576) +:assumption (or (not x622) x577) +:assumption (or (not x622) x578) +:assumption (or (not x622) x579) +:assumption (or (not x56) (not x577) (not x576) (not x581) (not x582) x623) +:assumption (or (not x623) x56) +:assumption (or (not x623) x577) +:assumption (or (not x623) x576) +:assumption (or (not x623) x581) +:assumption (or (not x623) x582) +:assumption (or (not x53) (not x577) (not x576) (not x584) (not x585) (not x586) (not x587) (not x581) x624) +:assumption (or (not x624) x53) +:assumption (or (not x624) x577) +:assumption (or (not x624) x576) +:assumption (or (not x624) x584) +:assumption (or (not x624) x585) +:assumption (or (not x624) x586) +:assumption (or (not x624) x587) +:assumption (or (not x624) x581) +:assumption (or (not x53) (not x625) (not x576) (not x581) (not x477) (not x591) (not x477) x626) +:assumption (or (not x626) x53) +:assumption (or (not x626) x625) +:assumption (or (not x626) x576) +:assumption (or (not x626) x581) +:assumption (or (not x626) x477) +:assumption (or (not x626) x591) +:assumption (or (not x626) x477) +:assumption (or x627 (not x626)) +:assumption (or x627 (not x624)) +:assumption (or x627 (not x623)) +:assumption (or x627 (not x622)) +:assumption (or x626 x624 x623 x622 (not x627)) +:assumption (or (not x51) (not x576) (not x577) (not x578) (not x579) x628) +:assumption (or (not x628) x51) +:assumption (or (not x628) x576) +:assumption (or (not x628) x577) +:assumption (or (not x628) x578) +:assumption (or (not x628) x579) +:assumption (or (not x55) (not x577) (not x576) (not x581) (not x582) x629) +:assumption (or (not x629) x55) +:assumption (or (not x629) x577) +:assumption (or (not x629) x576) +:assumption (or (not x629) x581) +:assumption (or (not x629) x582) +:assumption (or (not x52) (not x577) (not x576) (not x584) (not x585) (not x586) (not x587) (not x581) x630) +:assumption (or (not x630) x52) +:assumption (or (not x630) x577) +:assumption (or (not x630) x576) +:assumption (or (not x630) x584) +:assumption (or (not x630) x585) +:assumption (or (not x630) x586) +:assumption (or (not x630) x587) +:assumption (or (not x630) x581) +:assumption (or (not x631) (not x632) (not x576) (not x581) (not x477) (not x591) (not x477) x633) +:assumption (or (not x633) x631) +:assumption (or (not x633) x632) +:assumption (or (not x633) x576) +:assumption (or (not x633) x581) +:assumption (or (not x633) x477) +:assumption (or (not x633) x591) +:assumption (or (not x633) x477) +:assumption (or x634 (not x633)) +:assumption (or x634 (not x630)) +:assumption (or x634 (not x629)) +:assumption (or x634 (not x628)) +:assumption (or x633 x630 x629 x628 (not x634)) +:assumption (or (not x50) (not x576) (not x577) (not x578) (not x579) x635) +:assumption (or (not x635) x50) +:assumption (or (not x635) x576) +:assumption (or (not x635) x577) +:assumption (or (not x635) x578) +:assumption (or (not x635) x579) +:assumption (or (not x54) (not x577) (not x576) (not x581) (not x582) x636) +:assumption (or (not x636) x54) +:assumption (or (not x636) x577) +:assumption (or (not x636) x576) +:assumption (or (not x636) x581) +:assumption (or (not x636) x582) +:assumption (or (not x51) (not x577) (not x576) (not x584) (not x585) (not x586) (not x587) (not x581) x637) +:assumption (or (not x637) x51) +:assumption (or (not x637) x577) +:assumption (or (not x637) x576) +:assumption (or (not x637) x584) +:assumption (or (not x637) x585) +:assumption (or (not x637) x586) +:assumption (or (not x637) x587) +:assumption (or (not x637) x581) +:assumption (or (not x638) (not x639) (not x576) (not x581) (not x477) (not x591) (not x477) x640) +:assumption (or (not x640) x638) +:assumption (or (not x640) x639) +:assumption (or (not x640) x576) +:assumption (or (not x640) x581) +:assumption (or (not x640) x477) +:assumption (or (not x640) x591) +:assumption (or (not x640) x477) +:assumption (or x641 (not x640)) +:assumption (or x641 (not x637)) +:assumption (or x641 (not x636)) +:assumption (or x641 (not x635)) +:assumption (or x640 x637 x636 x635 (not x641)) +:assumption (or (not x49) (not x576) (not x577) (not x578) (not x579) x642) +:assumption (or (not x642) x49) +:assumption (or (not x642) x576) +:assumption (or (not x642) x577) +:assumption (or (not x642) x578) +:assumption (or (not x642) x579) +:assumption (or (not x53) (not x577) (not x576) (not x581) (not x582) x643) +:assumption (or (not x643) x53) +:assumption (or (not x643) x577) +:assumption (or (not x643) x576) +:assumption (or (not x643) x581) +:assumption (or (not x643) x582) +:assumption (or (not x50) (not x577) (not x576) (not x584) (not x585) (not x586) (not x587) (not x581) x644) +:assumption (or (not x644) x50) +:assumption (or (not x644) x577) +:assumption (or (not x644) x576) +:assumption (or (not x644) x584) +:assumption (or (not x644) x585) +:assumption (or (not x644) x586) +:assumption (or (not x644) x587) +:assumption (or (not x644) x581) +:assumption (or (not x645) (not x646) (not x576) (not x581) (not x477) (not x591) (not x477) x647) +:assumption (or (not x647) x645) +:assumption (or (not x647) x646) +:assumption (or (not x647) x576) +:assumption (or (not x647) x581) +:assumption (or (not x647) x477) +:assumption (or (not x647) x591) +:assumption (or (not x647) x477) +:assumption (or x648 (not x647)) +:assumption (or x648 (not x644)) +:assumption (or x648 (not x643)) +:assumption (or x648 (not x642)) +:assumption (or x647 x644 x643 x642 (not x648)) +:assumption (or (not x48) (not x576) (not x577) (not x578) (not x579) x649) +:assumption (or (not x649) x48) +:assumption (or (not x649) x576) +:assumption (or (not x649) x577) +:assumption (or (not x649) x578) +:assumption (or (not x649) x579) +:assumption (or (not x52) (not x577) (not x576) (not x581) (not x582) x650) +:assumption (or (not x650) x52) +:assumption (or (not x650) x577) +:assumption (or (not x650) x576) +:assumption (or (not x650) x581) +:assumption (or (not x650) x582) +:assumption (or (not x49) (not x577) (not x576) (not x584) (not x585) (not x586) (not x587) (not x581) x651) +:assumption (or (not x651) x49) +:assumption (or (not x651) x577) +:assumption (or (not x651) x576) +:assumption (or (not x651) x584) +:assumption (or (not x651) x585) +:assumption (or (not x651) x586) +:assumption (or (not x651) x587) +:assumption (or (not x651) x581) +:assumption (or (not x49) (not x652) (not x576) (not x581) (not x477) (not x591) (not x477) x653) +:assumption (or (not x653) x49) +:assumption (or (not x653) x652) +:assumption (or (not x653) x576) +:assumption (or (not x653) x581) +:assumption (or (not x653) x477) +:assumption (or (not x653) x591) +:assumption (or (not x653) x477) +:assumption (or x654 (not x653)) +:assumption (or x654 (not x651)) +:assumption (or x654 (not x650)) +:assumption (or x654 (not x649)) +:assumption (or x653 x651 x650 x649 (not x654)) +:assumption (or (not x47) (not x576) (not x577) (not x578) (not x579) x655) +:assumption (or (not x655) x47) +:assumption (or (not x655) x576) +:assumption (or (not x655) x577) +:assumption (or (not x655) x578) +:assumption (or (not x655) x579) +:assumption (or (not x51) (not x577) (not x576) (not x581) (not x582) x656) +:assumption (or (not x656) x51) +:assumption (or (not x656) x577) +:assumption (or (not x656) x576) +:assumption (or (not x656) x581) +:assumption (or (not x656) x582) +:assumption (or (not x48) (not x577) (not x576) (not x584) (not x585) (not x586) (not x587) (not x581) x657) +:assumption (or (not x657) x48) +:assumption (or (not x657) x577) +:assumption (or (not x657) x576) +:assumption (or (not x657) x584) +:assumption (or (not x657) x585) +:assumption (or (not x657) x586) +:assumption (or (not x657) x587) +:assumption (or (not x657) x581) +:assumption (or (not x658) (not x659) (not x576) (not x581) (not x477) (not x591) (not x477) x660) +:assumption (or (not x660) x658) +:assumption (or (not x660) x659) +:assumption (or (not x660) x576) +:assumption (or (not x660) x581) +:assumption (or (not x660) x477) +:assumption (or (not x660) x591) +:assumption (or (not x660) x477) +:assumption (or x661 (not x660)) +:assumption (or x661 (not x657)) +:assumption (or x661 (not x656)) +:assumption (or x661 (not x655)) +:assumption (or x660 x657 x656 x655 (not x661)) +:assumption (or (not x46) (not x576) (not x577) (not x578) (not x579) x662) +:assumption (or (not x662) x46) +:assumption (or (not x662) x576) +:assumption (or (not x662) x577) +:assumption (or (not x662) x578) +:assumption (or (not x662) x579) +:assumption (or (not x50) (not x577) (not x576) (not x581) (not x582) x663) +:assumption (or (not x663) x50) +:assumption (or (not x663) x577) +:assumption (or (not x663) x576) +:assumption (or (not x663) x581) +:assumption (or (not x663) x582) +:assumption (or (not x47) (not x577) (not x576) (not x584) (not x585) (not x586) (not x587) (not x581) x664) +:assumption (or (not x664) x47) +:assumption (or (not x664) x577) +:assumption (or (not x664) x576) +:assumption (or (not x664) x584) +:assumption (or (not x664) x585) +:assumption (or (not x664) x586) +:assumption (or (not x664) x587) +:assumption (or (not x664) x581) +:assumption (or (not x665) (not x666) (not x576) (not x581) (not x477) (not x591) (not x477) x667) +:assumption (or (not x667) x665) +:assumption (or (not x667) x666) +:assumption (or (not x667) x576) +:assumption (or (not x667) x581) +:assumption (or (not x667) x477) +:assumption (or (not x667) x591) +:assumption (or (not x667) x477) +:assumption (or x668 (not x667)) +:assumption (or x668 (not x664)) +:assumption (or x668 (not x663)) +:assumption (or x668 (not x662)) +:assumption (or x667 x664 x663 x662 (not x668)) +:assumption (or (not x45) (not x576) (not x577) (not x578) (not x579) x669) +:assumption (or (not x669) x45) +:assumption (or (not x669) x576) +:assumption (or (not x669) x577) +:assumption (or (not x669) x578) +:assumption (or (not x669) x579) +:assumption (or (not x49) (not x577) (not x576) (not x581) (not x582) x670) +:assumption (or (not x670) x49) +:assumption (or (not x670) x577) +:assumption (or (not x670) x576) +:assumption (or (not x670) x581) +:assumption (or (not x670) x582) +:assumption (or (not x46) (not x577) (not x576) (not x584) (not x585) (not x586) (not x587) (not x581) x671) +:assumption (or (not x671) x46) +:assumption (or (not x671) x577) +:assumption (or (not x671) x576) +:assumption (or (not x671) x584) +:assumption (or (not x671) x585) +:assumption (or (not x671) x586) +:assumption (or (not x671) x587) +:assumption (or (not x671) x581) +:assumption (or (not x672) (not x673) (not x576) (not x581) (not x477) (not x591) (not x477) x674) +:assumption (or (not x674) x672) +:assumption (or (not x674) x673) +:assumption (or (not x674) x576) +:assumption (or (not x674) x581) +:assumption (or (not x674) x477) +:assumption (or (not x674) x591) +:assumption (or (not x674) x477) +:assumption (or x675 (not x674)) +:assumption (or x675 (not x671)) +:assumption (or x675 (not x670)) +:assumption (or x675 (not x669)) +:assumption (or x674 x671 x670 x669 (not x675)) +:assumption (or (not x44) (not x576) (not x577) (not x578) (not x579) x676) +:assumption (or (not x676) x44) +:assumption (or (not x676) x576) +:assumption (or (not x676) x577) +:assumption (or (not x676) x578) +:assumption (or (not x676) x579) +:assumption (or (not x48) (not x577) (not x576) (not x581) (not x582) x677) +:assumption (or (not x677) x48) +:assumption (or (not x677) x577) +:assumption (or (not x677) x576) +:assumption (or (not x677) x581) +:assumption (or (not x677) x582) +:assumption (or (not x45) (not x577) (not x576) (not x584) (not x585) (not x586) (not x587) (not x581) x678) +:assumption (or (not x678) x45) +:assumption (or (not x678) x577) +:assumption (or (not x678) x576) +:assumption (or (not x678) x584) +:assumption (or (not x678) x585) +:assumption (or (not x678) x586) +:assumption (or (not x678) x587) +:assumption (or (not x678) x581) +:assumption (or (not x45) (not x679) (not x576) (not x581) (not x477) (not x591) (not x477) x680) +:assumption (or (not x680) x45) +:assumption (or (not x680) x679) +:assumption (or (not x680) x576) +:assumption (or (not x680) x581) +:assumption (or (not x680) x477) +:assumption (or (not x680) x591) +:assumption (or (not x680) x477) +:assumption (or x681 (not x680)) +:assumption (or x681 (not x678)) +:assumption (or x681 (not x677)) +:assumption (or x681 (not x676)) +:assumption (or x680 x678 x677 x676 (not x681)) +:assumption (or (not x43) (not x576) (not x577) (not x578) (not x579) x682) +:assumption (or (not x682) x43) +:assumption (or (not x682) x576) +:assumption (or (not x682) x577) +:assumption (or (not x682) x578) +:assumption (or (not x682) x579) +:assumption (or (not x47) (not x577) (not x576) (not x581) (not x582) x683) +:assumption (or (not x683) x47) +:assumption (or (not x683) x577) +:assumption (or (not x683) x576) +:assumption (or (not x683) x581) +:assumption (or (not x683) x582) +:assumption (or (not x44) (not x577) (not x576) (not x584) (not x585) (not x586) (not x587) (not x581) x684) +:assumption (or (not x684) x44) +:assumption (or (not x684) x577) +:assumption (or (not x684) x576) +:assumption (or (not x684) x584) +:assumption (or (not x684) x585) +:assumption (or (not x684) x586) +:assumption (or (not x684) x587) +:assumption (or (not x684) x581) +:assumption (or (not x685) (not x686) (not x576) (not x581) (not x477) (not x591) (not x477) x687) +:assumption (or (not x687) x685) +:assumption (or (not x687) x686) +:assumption (or (not x687) x576) +:assumption (or (not x687) x581) +:assumption (or (not x687) x477) +:assumption (or (not x687) x591) +:assumption (or (not x687) x477) +:assumption (or x688 (not x687)) +:assumption (or x688 (not x684)) +:assumption (or x688 (not x683)) +:assumption (or x688 (not x682)) +:assumption (or x687 x684 x683 x682 (not x688)) +:assumption (or x579 (not x689)) +:assumption (or x579 (not x594)) +:assumption (or x579 (not x690)) +:assumption (or x579 (not x691)) +:assumption (or x579 (not x692)) +:assumption (or x579 (not x693)) +:assumption (or x579 x581) +:assumption (or x689 x594 x690 x691 x692 x693 (not x581) (not x579)) +:assumption (or x57 x56 x55 x54 x53 x52 x51 x50 x49 x48 x47 x46 x45 x44 x43 x42 x594) +:assumption (or (not x594) (not x57)) +:assumption (or (not x594) (not x56)) +:assumption (or (not x594) (not x55)) +:assumption (or (not x594) (not x54)) +:assumption (or (not x594) (not x53)) +:assumption (or (not x594) (not x52)) +:assumption (or (not x594) (not x51)) +:assumption (or (not x594) (not x50)) +:assumption (or (not x594) (not x49)) +:assumption (or (not x594) (not x48)) +:assumption (or (not x594) (not x47)) +:assumption (or (not x594) (not x46)) +:assumption (or (not x594) (not x45)) +:assumption (or (not x594) (not x44)) +:assumption (or (not x594) (not x43)) +:assumption (or (not x594) (not x42)) +:assumption (or x578 (not x689)) +:assumption (or x578 (not x594)) +:assumption (or x578 x581) +:assumption (or x578 (not x694)) +:assumption (or x689 x594 (not x581) x694 (not x578)) +:assumption (or (not x42) (not x576) (not x577) (not x578) (not x579) x695) +:assumption (or (not x695) x42) +:assumption (or (not x695) x576) +:assumption (or (not x695) x577) +:assumption (or (not x695) x578) +:assumption (or (not x695) x579) +:assumption (or x696 (not x43) x697) +:assumption (or (not x697) (not x696)) +:assumption (or (not x697) x43) +:assumption (or x686 x696 (not x44) x698) +:assumption (or (not x698) (not x686)) +:assumption (or (not x698) (not x696)) +:assumption (or (not x698) x44) +:assumption (or x679 x686 x696 (not x45) x699) +:assumption (or (not x699) (not x679)) +:assumption (or (not x699) (not x686)) +:assumption (or (not x699) (not x696)) +:assumption (or (not x699) x45) +:assumption (or x589 (not x42)) +:assumption (or x589 (not x699)) +:assumption (or x589 (not x698)) +:assumption (or x589 (not x697)) +:assumption (or x42 x699 x698 x697 (not x589)) +:assumption (or (not x589) (not x590) (not x581) (not x477) (not x591) (not x477) x700) +:assumption (or (not x700) x589) +:assumption (or (not x700) x590) +:assumption (or (not x700) x581) +:assumption (or (not x700) x477) +:assumption (or (not x700) x591) +:assumption (or (not x700) x477) +:assumption (or x701 (not x700)) +:assumption (or x701 x590) +:assumption (or x700 (not x590) (not x701)) +:assumption (or (not x702) (not x696) (not x581) (not x477) (not x591) (not x477) x703) +:assumption (or (not x703) x702) +:assumption (or (not x703) x696) +:assumption (or (not x703) x581) +:assumption (or (not x703) x477) +:assumption (or (not x703) x591) +:assumption (or (not x703) x477) +:assumption (or x704 (not x703)) +:assumption (or x704 x696) +:assumption (or x703 (not x696) (not x704)) +:assumption (or x679 (not x45) x705) +:assumption (or (not x705) (not x679)) +:assumption (or (not x705) x45) +:assumption (or x685 (not x44)) +:assumption (or x685 (not x705)) +:assumption (or x44 x705 (not x685)) +:assumption (or (not x685) (not x686) (not x581) (not x477) (not x591) (not x477) x706) +:assumption (or (not x706) x685) +:assumption (or (not x706) x686) +:assumption (or (not x706) x581) +:assumption (or (not x706) x477) +:assumption (or (not x706) x591) +:assumption (or (not x706) x477) +:assumption (or x707 (not x706)) +:assumption (or x707 x686) +:assumption (or x706 (not x686) (not x707)) +:assumption (or (not x45) (not x679) (not x581) (not x477) (not x591) (not x477) x708) +:assumption (or (not x708) x45) +:assumption (or (not x708) x679) +:assumption (or (not x708) x581) +:assumption (or (not x708) x477) +:assumption (or (not x708) x591) +:assumption (or (not x708) x477) +:assumption (or x709 (not x708)) +:assumption (or x709 x679) +:assumption (or x708 (not x679) (not x709)) +:assumption (or (not x709) (not x707) (not x704) (not x701) (not x45) x693) +:assumption (or (not x693) x709) +:assumption (or (not x693) x707) +:assumption (or (not x693) x704) +:assumption (or (not x693) x701) +:assumption (or (not x693) x45) +:assumption (or x666 (not x47) x710) +:assumption (or (not x710) (not x666)) +:assumption (or (not x710) x47) +:assumption (or x659 x666 (not x48) x711) +:assumption (or (not x711) (not x659)) +:assumption (or (not x711) (not x666)) +:assumption (or (not x711) x48) +:assumption (or x652 x659 x666 (not x49) x712) +:assumption (or (not x712) (not x652)) +:assumption (or (not x712) (not x659)) +:assumption (or (not x712) (not x666)) +:assumption (or (not x712) x49) +:assumption (or x672 (not x46)) +:assumption (or x672 (not x712)) +:assumption (or x672 (not x711)) +:assumption (or x672 (not x710)) +:assumption (or x46 x712 x711 x710 (not x672)) +:assumption (or (not x672) (not x673) (not x581) (not x477) (not x591) (not x477) x713) +:assumption (or (not x713) x672) +:assumption (or (not x713) x673) +:assumption (or (not x713) x581) +:assumption (or (not x713) x477) +:assumption (or (not x713) x591) +:assumption (or (not x713) x477) +:assumption (or x714 (not x713)) +:assumption (or x714 x673) +:assumption (or x713 (not x673) (not x714)) +:assumption (or x659 (not x48) x715) +:assumption (or (not x715) (not x659)) +:assumption (or (not x715) x48) +:assumption (or x652 x659 (not x49) x716) +:assumption (or (not x716) (not x652)) +:assumption (or (not x716) (not x659)) +:assumption (or (not x716) x49) +:assumption (or x665 (not x47)) +:assumption (or x665 (not x716)) +:assumption (or x665 (not x715)) +:assumption (or x47 x716 x715 (not x665)) +:assumption (or (not x665) (not x666) (not x581) (not x477) (not x591) (not x477) x717) +:assumption (or (not x717) x665) +:assumption (or (not x717) x666) +:assumption (or (not x717) x581) +:assumption (or (not x717) x477) +:assumption (or (not x717) x591) +:assumption (or (not x717) x477) +:assumption (or x718 (not x717)) +:assumption (or x718 x666) +:assumption (or x717 (not x666) (not x718)) +:assumption (or x652 (not x49) x719) +:assumption (or (not x719) (not x652)) +:assumption (or (not x719) x49) +:assumption (or x658 (not x48)) +:assumption (or x658 (not x719)) +:assumption (or x48 x719 (not x658)) +:assumption (or (not x658) (not x659) (not x581) (not x477) (not x591) (not x477) x720) +:assumption (or (not x720) x658) +:assumption (or (not x720) x659) +:assumption (or (not x720) x581) +:assumption (or (not x720) x477) +:assumption (or (not x720) x591) +:assumption (or (not x720) x477) +:assumption (or x721 (not x720)) +:assumption (or x721 x659) +:assumption (or x720 (not x659) (not x721)) +:assumption (or (not x49) (not x652) (not x581) (not x477) (not x591) (not x477) x722) +:assumption (or (not x722) x49) +:assumption (or (not x722) x652) +:assumption (or (not x722) x581) +:assumption (or (not x722) x477) +:assumption (or (not x722) x591) +:assumption (or (not x722) x477) +:assumption (or x723 (not x722)) +:assumption (or x723 x652) +:assumption (or x722 (not x652) (not x723)) +:assumption (or (not x723) (not x721) (not x718) (not x714) (not x49) x692) +:assumption (or (not x692) x723) +:assumption (or (not x692) x721) +:assumption (or (not x692) x718) +:assumption (or (not x692) x714) +:assumption (or (not x692) x49) +:assumption (or x639 (not x51) x724) +:assumption (or (not x724) (not x639)) +:assumption (or (not x724) x51) +:assumption (or x632 x639 (not x52) x725) +:assumption (or (not x725) (not x632)) +:assumption (or (not x725) (not x639)) +:assumption (or (not x725) x52) +:assumption (or x625 x632 x639 (not x53) x726) +:assumption (or (not x726) (not x625)) +:assumption (or (not x726) (not x632)) +:assumption (or (not x726) (not x639)) +:assumption (or (not x726) x53) +:assumption (or x645 (not x50)) +:assumption (or x645 (not x726)) +:assumption (or x645 (not x725)) +:assumption (or x645 (not x724)) +:assumption (or x50 x726 x725 x724 (not x645)) +:assumption (or (not x645) (not x646) (not x581) (not x477) (not x591) (not x477) x727) +:assumption (or (not x727) x645) +:assumption (or (not x727) x646) +:assumption (or (not x727) x581) +:assumption (or (not x727) x477) +:assumption (or (not x727) x591) +:assumption (or (not x727) x477) +:assumption (or x728 (not x727)) +:assumption (or x728 x646) +:assumption (or x727 (not x646) (not x728)) +:assumption (or x632 (not x52) x729) +:assumption (or (not x729) (not x632)) +:assumption (or (not x729) x52) +:assumption (or x625 x632 (not x53) x730) +:assumption (or (not x730) (not x625)) +:assumption (or (not x730) (not x632)) +:assumption (or (not x730) x53) +:assumption (or x638 (not x51)) +:assumption (or x638 (not x730)) +:assumption (or x638 (not x729)) +:assumption (or x51 x730 x729 (not x638)) +:assumption (or (not x638) (not x639) (not x581) (not x477) (not x591) (not x477) x731) +:assumption (or (not x731) x638) +:assumption (or (not x731) x639) +:assumption (or (not x731) x581) +:assumption (or (not x731) x477) +:assumption (or (not x731) x591) +:assumption (or (not x731) x477) +:assumption (or x732 (not x731)) +:assumption (or x732 x639) +:assumption (or x731 (not x639) (not x732)) +:assumption (or x625 (not x53) x733) +:assumption (or (not x733) (not x625)) +:assumption (or (not x733) x53) +:assumption (or x631 (not x52)) +:assumption (or x631 (not x733)) +:assumption (or x52 x733 (not x631)) +:assumption (or (not x631) (not x632) (not x581) (not x477) (not x591) (not x477) x734) +:assumption (or (not x734) x631) +:assumption (or (not x734) x632) +:assumption (or (not x734) x581) +:assumption (or (not x734) x477) +:assumption (or (not x734) x591) +:assumption (or (not x734) x477) +:assumption (or x735 (not x734)) +:assumption (or x735 x632) +:assumption (or x734 (not x632) (not x735)) +:assumption (or (not x53) (not x625) (not x581) (not x477) (not x591) (not x477) x736) +:assumption (or (not x736) x53) +:assumption (or (not x736) x625) +:assumption (or (not x736) x581) +:assumption (or (not x736) x477) +:assumption (or (not x736) x591) +:assumption (or (not x736) x477) +:assumption (or x737 (not x736)) +:assumption (or x737 x625) +:assumption (or x736 (not x625) (not x737)) +:assumption (or (not x737) (not x735) (not x732) (not x728) (not x53) x691) +:assumption (or (not x691) x737) +:assumption (or (not x691) x735) +:assumption (or (not x691) x732) +:assumption (or (not x691) x728) +:assumption (or (not x691) x53) +:assumption (or x612 (not x55) x738) +:assumption (or (not x738) (not x612)) +:assumption (or (not x738) x55) +:assumption (or x605 x612 (not x56) x739) +:assumption (or (not x739) (not x605)) +:assumption (or (not x739) (not x612)) +:assumption (or (not x739) x56) +:assumption (or x598 x605 x612 (not x57) x740) +:assumption (or (not x740) (not x598)) +:assumption (or (not x740) (not x605)) +:assumption (or (not x740) (not x612)) +:assumption (or (not x740) x57) +:assumption (or x618 (not x54)) +:assumption (or x618 (not x740)) +:assumption (or x618 (not x739)) +:assumption (or x618 (not x738)) +:assumption (or x54 x740 x739 x738 (not x618)) +:assumption (or (not x618) (not x619) (not x581) (not x477) (not x591) (not x477) x741) +:assumption (or (not x741) x618) +:assumption (or (not x741) x619) +:assumption (or (not x741) x581) +:assumption (or (not x741) x477) +:assumption (or (not x741) x591) +:assumption (or (not x741) x477) +:assumption (or x742 (not x741)) +:assumption (or x742 x619) +:assumption (or x741 (not x619) (not x742)) +:assumption (or x605 (not x56) x743) +:assumption (or (not x743) (not x605)) +:assumption (or (not x743) x56) +:assumption (or x598 x605 (not x57) x744) +:assumption (or (not x744) (not x598)) +:assumption (or (not x744) (not x605)) +:assumption (or (not x744) x57) +:assumption (or x611 (not x55)) +:assumption (or x611 (not x744)) +:assumption (or x611 (not x743)) +:assumption (or x55 x744 x743 (not x611)) +:assumption (or (not x611) (not x612) (not x581) (not x477) (not x591) (not x477) x745) +:assumption (or (not x745) x611) +:assumption (or (not x745) x612) +:assumption (or (not x745) x581) +:assumption (or (not x745) x477) +:assumption (or (not x745) x591) +:assumption (or (not x745) x477) +:assumption (or x746 (not x745)) +:assumption (or x746 x612) +:assumption (or x745 (not x612) (not x746)) +:assumption (or x598 (not x57) x747) +:assumption (or (not x747) (not x598)) +:assumption (or (not x747) x57) +:assumption (or x604 (not x56)) +:assumption (or x604 (not x747)) +:assumption (or x56 x747 (not x604)) +:assumption (or (not x604) (not x605) (not x581) (not x477) (not x591) (not x477) x748) +:assumption (or (not x748) x604) +:assumption (or (not x748) x605) +:assumption (or (not x748) x581) +:assumption (or (not x748) x477) +:assumption (or (not x748) x591) +:assumption (or (not x748) x477) +:assumption (or x749 (not x748)) +:assumption (or x749 x605) +:assumption (or x748 (not x605) (not x749)) +:assumption (or (not x57) (not x598) (not x581) (not x477) (not x591) (not x477) x750) +:assumption (or (not x750) x57) +:assumption (or (not x750) x598) +:assumption (or (not x750) x581) +:assumption (or (not x750) x477) +:assumption (or (not x750) x591) +:assumption (or (not x750) x477) +:assumption (or x751 (not x750)) +:assumption (or x751 x598) +:assumption (or x750 (not x598) (not x751)) +:assumption (or (not x751) (not x749) (not x746) (not x742) (not x57) x690) +:assumption (or (not x690) x751) +:assumption (or (not x690) x749) +:assumption (or (not x690) x746) +:assumption (or (not x690) x742) +:assumption (or (not x690) x57) +:assumption (or x582 (not x690)) +:assumption (or x582 (not x691)) +:assumption (or x582 (not x692)) +:assumption (or x582 (not x693)) +:assumption (or x690 x691 x692 x693 (not x582)) +:assumption (or (not x46) (not x577) (not x576) (not x581) (not x582) x752) +:assumption (or (not x752) x46) +:assumption (or (not x752) x577) +:assumption (or (not x752) x576) +:assumption (or (not x752) x581) +:assumption (or (not x752) x582) +:assumption (or x753 (not x696)) +:assumption (or x753 x43) +:assumption (or x696 (not x43) (not x753)) +:assumption (or x754 (not x686)) +:assumption (or x754 (not x696)) +:assumption (or x754 x44) +:assumption (or x686 x696 (not x44) (not x754)) +:assumption (or x755 (not x679)) +:assumption (or x755 (not x686)) +:assumption (or x755 (not x696)) +:assumption (or x755 x45) +:assumption (or x679 x686 x696 (not x45) (not x755)) +:assumption (or x42 (not x755) (not x754) (not x753) x756) +:assumption (or (not x756) (not x42)) +:assumption (or (not x756) x755) +:assumption (or (not x756) x754) +:assumption (or (not x756) x753) +:assumption (or x757 (not x756)) +:assumption (or x757 x590) +:assumption (or x757 x581) +:assumption (or x757 (not x758)) +:assumption (or x757 (not x759)) +:assumption (or x757 (not x758)) +:assumption (or x756 (not x590) (not x581) x758 x759 x758 (not x757)) +:assumption (or (not x757) (not x590) x515) +:assumption (or (not x515) x757) +:assumption (or (not x515) x590) +:assumption (or x760 (not x686)) +:assumption (or x760 x44) +:assumption (or x686 (not x44) (not x760)) +:assumption (or x761 (not x679)) +:assumption (or x761 (not x686)) +:assumption (or x761 x45) +:assumption (or x679 x686 (not x45) (not x761)) +:assumption (or x43 (not x761) (not x760) x762) +:assumption (or (not x762) (not x43)) +:assumption (or (not x762) x761) +:assumption (or (not x762) x760) +:assumption (or x763 (not x762)) +:assumption (or x763 x696) +:assumption (or x763 x581) +:assumption (or x763 (not x758)) +:assumption (or x763 (not x759)) +:assumption (or x763 (not x758)) +:assumption (or x762 (not x696) (not x581) x758 x759 x758 (not x763)) +:assumption (or (not x763) (not x696) x575) +:assumption (or (not x575) x763) +:assumption (or (not x575) x696) +:assumption (or x764 (not x679)) +:assumption (or x764 x45) +:assumption (or x679 (not x45) (not x764)) +:assumption (or x44 (not x764) x765) +:assumption (or (not x765) (not x44)) +:assumption (or (not x765) x764) +:assumption (or x766 (not x765)) +:assumption (or x766 x686) +:assumption (or x766 x581) +:assumption (or x766 (not x758)) +:assumption (or x766 (not x759)) +:assumption (or x766 (not x758)) +:assumption (or x765 (not x686) (not x581) x758 x759 x758 (not x766)) +:assumption (or (not x766) (not x686) x571) +:assumption (or (not x571) x766) +:assumption (or (not x571) x686) +:assumption (or x767 x45) +:assumption (or x767 x679) +:assumption (or x767 x581) +:assumption (or x767 (not x758)) +:assumption (or x767 (not x759)) +:assumption (or x767 (not x758)) +:assumption (or (not x45) (not x679) (not x581) x758 x759 x758 (not x767)) +:assumption (or (not x767) (not x679) x567) +:assumption (or (not x567) x767) +:assumption (or (not x567) x679) +:assumption (or x587 (not x567)) +:assumption (or x587 (not x571)) +:assumption (or x587 (not x575)) +:assumption (or x587 (not x515)) +:assumption (or x587 x45) +:assumption (or x567 x571 x575 x515 (not x45) (not x587)) +:assumption (or x768 (not x666)) +:assumption (or x768 x47) +:assumption (or x666 (not x47) (not x768)) +:assumption (or x769 (not x659)) +:assumption (or x769 (not x666)) +:assumption (or x769 x48) +:assumption (or x659 x666 (not x48) (not x769)) +:assumption (or x770 (not x652)) +:assumption (or x770 (not x659)) +:assumption (or x770 (not x666)) +:assumption (or x770 x49) +:assumption (or x652 x659 x666 (not x49) (not x770)) +:assumption (or x46 (not x770) (not x769) (not x768) x771) +:assumption (or (not x771) (not x46)) +:assumption (or (not x771) x770) +:assumption (or (not x771) x769) +:assumption (or (not x771) x768) +:assumption (or x772 (not x771)) +:assumption (or x772 x673) +:assumption (or x772 x581) +:assumption (or x772 (not x758)) +:assumption (or x772 (not x759)) +:assumption (or x772 (not x758)) +:assumption (or x771 (not x673) (not x581) x758 x759 x758 (not x772)) +:assumption (or (not x772) (not x673) x563) +:assumption (or (not x563) x772) +:assumption (or (not x563) x673) +:assumption (or x773 (not x659)) +:assumption (or x773 x48) +:assumption (or x659 (not x48) (not x773)) +:assumption (or x774 (not x652)) +:assumption (or x774 (not x659)) +:assumption (or x774 x49) +:assumption (or x652 x659 (not x49) (not x774)) +:assumption (or x47 (not x774) (not x773) x775) +:assumption (or (not x775) (not x47)) +:assumption (or (not x775) x774) +:assumption (or (not x775) x773) +:assumption (or x776 (not x775)) +:assumption (or x776 x666) +:assumption (or x776 x581) +:assumption (or x776 (not x758)) +:assumption (or x776 (not x759)) +:assumption (or x776 (not x758)) +:assumption (or x775 (not x666) (not x581) x758 x759 x758 (not x776)) +:assumption (or (not x776) (not x666) x559) +:assumption (or (not x559) x776) +:assumption (or (not x559) x666) +:assumption (or x777 (not x652)) +:assumption (or x777 x49) +:assumption (or x652 (not x49) (not x777)) +:assumption (or x48 (not x777) x778) +:assumption (or (not x778) (not x48)) +:assumption (or (not x778) x777) +:assumption (or x779 (not x778)) +:assumption (or x779 x659) +:assumption (or x779 x581) +:assumption (or x779 (not x758)) +:assumption (or x779 (not x759)) +:assumption (or x779 (not x758)) +:assumption (or x778 (not x659) (not x581) x758 x759 x758 (not x779)) +:assumption (or (not x779) (not x659) x555) +:assumption (or (not x555) x779) +:assumption (or (not x555) x659) +:assumption (or x780 x49) +:assumption (or x780 x652) +:assumption (or x780 x581) +:assumption (or x780 (not x758)) +:assumption (or x780 (not x759)) +:assumption (or x780 (not x758)) +:assumption (or (not x49) (not x652) (not x581) x758 x759 x758 (not x780)) +:assumption (or (not x780) (not x652) x551) +:assumption (or (not x551) x780) +:assumption (or (not x551) x652) +:assumption (or x586 (not x551)) +:assumption (or x586 (not x555)) +:assumption (or x586 (not x559)) +:assumption (or x586 (not x563)) +:assumption (or x586 x49) +:assumption (or x551 x555 x559 x563 (not x49) (not x586)) +:assumption (or x781 (not x639)) +:assumption (or x781 x51) +:assumption (or x639 (not x51) (not x781)) +:assumption (or x782 (not x632)) +:assumption (or x782 (not x639)) +:assumption (or x782 x52) +:assumption (or x632 x639 (not x52) (not x782)) +:assumption (or x783 (not x625)) +:assumption (or x783 (not x632)) +:assumption (or x783 (not x639)) +:assumption (or x783 x53) +:assumption (or x625 x632 x639 (not x53) (not x783)) +:assumption (or x50 (not x783) (not x782) (not x781) x784) +:assumption (or (not x784) (not x50)) +:assumption (or (not x784) x783) +:assumption (or (not x784) x782) +:assumption (or (not x784) x781) +:assumption (or x785 (not x784)) +:assumption (or x785 x646) +:assumption (or x785 x581) +:assumption (or x785 (not x758)) +:assumption (or x785 (not x759)) +:assumption (or x785 (not x758)) +:assumption (or x784 (not x646) (not x581) x758 x759 x758 (not x785)) +:assumption (or (not x785) (not x646) x547) +:assumption (or (not x547) x785) +:assumption (or (not x547) x646) +:assumption (or x786 (not x632)) +:assumption (or x786 x52) +:assumption (or x632 (not x52) (not x786)) +:assumption (or x787 (not x625)) +:assumption (or x787 (not x632)) +:assumption (or x787 x53) +:assumption (or x625 x632 (not x53) (not x787)) +:assumption (or x51 (not x787) (not x786) x788) +:assumption (or (not x788) (not x51)) +:assumption (or (not x788) x787) +:assumption (or (not x788) x786) +:assumption (or x789 (not x788)) +:assumption (or x789 x639) +:assumption (or x789 x581) +:assumption (or x789 (not x758)) +:assumption (or x789 (not x759)) +:assumption (or x789 (not x758)) +:assumption (or x788 (not x639) (not x581) x758 x759 x758 (not x789)) +:assumption (or (not x789) (not x639) x543) +:assumption (or (not x543) x789) +:assumption (or (not x543) x639) +:assumption (or x790 (not x625)) +:assumption (or x790 x53) +:assumption (or x625 (not x53) (not x790)) +:assumption (or x52 (not x790) x791) +:assumption (or (not x791) (not x52)) +:assumption (or (not x791) x790) +:assumption (or x792 (not x791)) +:assumption (or x792 x632) +:assumption (or x792 x581) +:assumption (or x792 (not x758)) +:assumption (or x792 (not x759)) +:assumption (or x792 (not x758)) +:assumption (or x791 (not x632) (not x581) x758 x759 x758 (not x792)) +:assumption (or (not x792) (not x632) x539) +:assumption (or (not x539) x792) +:assumption (or (not x539) x632) +:assumption (or x793 x53) +:assumption (or x793 x625) +:assumption (or x793 x581) +:assumption (or x793 (not x758)) +:assumption (or x793 (not x759)) +:assumption (or x793 (not x758)) +:assumption (or (not x53) (not x625) (not x581) x758 x759 x758 (not x793)) +:assumption (or (not x793) (not x625) x535) +:assumption (or (not x535) x793) +:assumption (or (not x535) x625) +:assumption (or x585 (not x535)) +:assumption (or x585 (not x539)) +:assumption (or x585 (not x543)) +:assumption (or x585 (not x547)) +:assumption (or x585 x53) +:assumption (or x535 x539 x543 x547 (not x53) (not x585)) +:assumption (or x794 (not x612)) +:assumption (or x794 x55) +:assumption (or x612 (not x55) (not x794)) +:assumption (or x795 (not x605)) +:assumption (or x795 (not x612)) +:assumption (or x795 x56) +:assumption (or x605 x612 (not x56) (not x795)) +:assumption (or x796 (not x598)) +:assumption (or x796 (not x605)) +:assumption (or x796 (not x612)) +:assumption (or x796 x57) +:assumption (or x598 x605 x612 (not x57) (not x796)) +:assumption (or x54 (not x796) (not x795) (not x794) x797) +:assumption (or (not x797) (not x54)) +:assumption (or (not x797) x796) +:assumption (or (not x797) x795) +:assumption (or (not x797) x794) +:assumption (or x798 (not x797)) +:assumption (or x798 x619) +:assumption (or x798 x581) +:assumption (or x798 (not x758)) +:assumption (or x798 (not x759)) +:assumption (or x798 (not x758)) +:assumption (or x797 (not x619) (not x581) x758 x759 x758 (not x798)) +:assumption (or (not x798) (not x619) x531) +:assumption (or (not x531) x798) +:assumption (or (not x531) x619) +:assumption (or x799 (not x605)) +:assumption (or x799 x56) +:assumption (or x605 (not x56) (not x799)) +:assumption (or x800 (not x598)) +:assumption (or x800 (not x605)) +:assumption (or x800 x57) +:assumption (or x598 x605 (not x57) (not x800)) +:assumption (or x55 (not x800) (not x799) x801) +:assumption (or (not x801) (not x55)) +:assumption (or (not x801) x800) +:assumption (or (not x801) x799) +:assumption (or x802 (not x801)) +:assumption (or x802 x612) +:assumption (or x802 x581) +:assumption (or x802 (not x758)) +:assumption (or x802 (not x759)) +:assumption (or x802 (not x758)) +:assumption (or x801 (not x612) (not x581) x758 x759 x758 (not x802)) +:assumption (or (not x802) (not x612) x527) +:assumption (or (not x527) x802) +:assumption (or (not x527) x612) +:assumption (or x803 (not x598)) +:assumption (or x803 x57) +:assumption (or x598 (not x57) (not x803)) +:assumption (or x56 (not x803) x804) +:assumption (or (not x804) (not x56)) +:assumption (or (not x804) x803) +:assumption (or x805 (not x804)) +:assumption (or x805 x605) +:assumption (or x805 x581) +:assumption (or x805 (not x758)) +:assumption (or x805 (not x759)) +:assumption (or x805 (not x758)) +:assumption (or x804 (not x605) (not x581) x758 x759 x758 (not x805)) +:assumption (or (not x805) (not x605) x523) +:assumption (or (not x523) x805) +:assumption (or (not x523) x605) +:assumption (or x806 x57) +:assumption (or x806 x598) +:assumption (or x806 x581) +:assumption (or x806 (not x758)) +:assumption (or x806 (not x759)) +:assumption (or x806 (not x758)) +:assumption (or (not x57) (not x598) (not x581) x758 x759 x758 (not x806)) +:assumption (or (not x806) (not x598) x519) +:assumption (or (not x519) x806) +:assumption (or (not x519) x598) +:assumption (or x584 (not x519)) +:assumption (or x584 (not x523)) +:assumption (or x584 (not x527)) +:assumption (or x584 (not x531)) +:assumption (or x584 x57) +:assumption (or x519 x523 x527 x531 (not x57) (not x584)) +:assumption (or (not x584) (not x585) (not x586) (not x587) x694) +:assumption (or (not x694) x584) +:assumption (or (not x694) x585) +:assumption (or (not x694) x586) +:assumption (or (not x694) x587) +:assumption (or x807 x485) +:assumption (or x807 x481) +:assumption (or x807 x476) +:assumption (or x807 x474) +:assumption (or (not x485) (not x481) (not x476) (not x474) (not x807)) +:assumption (or x446 (not x447) x493) +:assumption (or (not x493) (not x446)) +:assumption (or (not x493) x447) +:assumption (or x456 (not x457) x498) +:assumption (or (not x498) (not x456)) +:assumption (or (not x498) x457) +:assumption (or x463 (not x464) x503) +:assumption (or (not x503) (not x463)) +:assumption (or (not x503) x464) +:assumption (or x470 (not x471) x508) +:assumption (or (not x508) (not x470)) +:assumption (or (not x508) x471) +:assumption (or x449 (not x508)) +:assumption (or x449 (not x503)) +:assumption (or x449 (not x498)) +:assumption (or x449 (not x493)) +:assumption (or x508 x503 x498 x493 (not x449)) +:assumption (or (not x449) (not x807) x759) +:assumption (or (not x759) x449) +:assumption (or (not x759) x807) +:assumption (or x679 x686 x696 x590 x808) +:assumption (or (not x808) (not x679)) +:assumption (or (not x808) (not x686)) +:assumption (or (not x808) (not x696)) +:assumption (or (not x808) (not x590)) +:assumption (or x45 x44 x43 x42 x809) +:assumption (or (not x809) (not x45)) +:assumption (or (not x809) (not x44)) +:assumption (or (not x809) (not x43)) +:assumption (or (not x809) (not x42)) +:assumption (or x810 (not x809)) +:assumption (or x810 (not x808)) +:assumption (or x809 x808 (not x810)) +:assumption (or x652 x659 x666 x673 x811) +:assumption (or (not x811) (not x652)) +:assumption (or (not x811) (not x659)) +:assumption (or (not x811) (not x666)) +:assumption (or (not x811) (not x673)) +:assumption (or x49 x48 x47 x46 x812) +:assumption (or (not x812) (not x49)) +:assumption (or (not x812) (not x48)) +:assumption (or (not x812) (not x47)) +:assumption (or (not x812) (not x46)) +:assumption (or x813 (not x812)) +:assumption (or x813 (not x811)) +:assumption (or x812 x811 (not x813)) +:assumption (or x625 x632 x639 x646 x814) +:assumption (or (not x814) (not x625)) +:assumption (or (not x814) (not x632)) +:assumption (or (not x814) (not x639)) +:assumption (or (not x814) (not x646)) +:assumption (or x53 x52 x51 x50 x815) +:assumption (or (not x815) (not x53)) +:assumption (or (not x815) (not x52)) +:assumption (or (not x815) (not x51)) +:assumption (or (not x815) (not x50)) +:assumption (or x816 (not x815)) +:assumption (or x816 (not x814)) +:assumption (or x815 x814 (not x816)) +:assumption (or x598 x605 x612 x619 x817) +:assumption (or (not x817) (not x598)) +:assumption (or (not x817) (not x605)) +:assumption (or (not x817) (not x612)) +:assumption (or (not x817) (not x619)) +:assumption (or x57 x56 x55 x54 x818) +:assumption (or (not x818) (not x57)) +:assumption (or (not x818) (not x56)) +:assumption (or (not x818) (not x55)) +:assumption (or (not x818) (not x54)) +:assumption (or x819 (not x818)) +:assumption (or x819 (not x817)) +:assumption (or x818 x817 (not x819)) +:assumption (or (not x819) (not x816) (not x813) (not x810) x758) +:assumption (or (not x758) x819) +:assumption (or (not x758) x816) +:assumption (or (not x758) x813) +:assumption (or (not x758) x810) +:assumption (or x577 x581) +:assumption (or x577 (not x758)) +:assumption (or x577 (not x759)) +:assumption (or x577 (not x758)) +:assumption (or (not x581) x758 x759 x758 (not x577)) +:assumption (or (not x43) (not x577) (not x576) (not x584) (not x585) (not x586) (not x587) (not x581) x820) +:assumption (or (not x820) x43) +:assumption (or (not x820) x577) +:assumption (or (not x820) x576) +:assumption (or (not x820) x584) +:assumption (or (not x820) x585) +:assumption (or (not x820) x586) +:assumption (or (not x820) x587) +:assumption (or (not x820) x581) +:assumption (or (not x485) (not x481) (not x476) (not x474) x821) +:assumption (or (not x821) x485) +:assumption (or (not x821) x481) +:assumption (or (not x821) x476) +:assumption (or (not x821) x474) +:assumption (or x453 (not x446)) +:assumption (or x453 x447) +:assumption (or x446 (not x447) (not x453)) +:assumption (or x435 (not x456)) +:assumption (or x435 x457) +:assumption (or x456 (not x457) (not x435)) +:assumption (or x438 (not x463)) +:assumption (or x438 x464) +:assumption (or x463 (not x464) (not x438)) +:assumption (or x441 (not x470)) +:assumption (or x441 x471) +:assumption (or x470 (not x471) (not x441)) +:assumption (or (not x441) (not x438) (not x435) (not x453) x822) +:assumption (or (not x822) x441) +:assumption (or (not x822) x438) +:assumption (or (not x822) x435) +:assumption (or (not x822) x453) +:assumption (or x591 (not x822)) +:assumption (or x591 (not x821)) +:assumption (or x822 x821 (not x591)) +:assumption (or x823 (not x679)) +:assumption (or x823 (not x686)) +:assumption (or x823 (not x696)) +:assumption (or x823 (not x590)) +:assumption (or x679 x686 x696 x590 (not x823)) +:assumption (or x824 (not x45)) +:assumption (or x824 (not x44)) +:assumption (or x824 (not x43)) +:assumption (or x824 (not x42)) +:assumption (or x45 x44 x43 x42 (not x824)) +:assumption (or (not x824) (not x823) x825) +:assumption (or (not x825) x824) +:assumption (or (not x825) x823) +:assumption (or x826 (not x652)) +:assumption (or x826 (not x659)) +:assumption (or x826 (not x666)) +:assumption (or x826 (not x673)) +:assumption (or x652 x659 x666 x673 (not x826)) +:assumption (or x827 (not x49)) +:assumption (or x827 (not x48)) +:assumption (or x827 (not x47)) +:assumption (or x827 (not x46)) +:assumption (or x49 x48 x47 x46 (not x827)) +:assumption (or (not x827) (not x826) x828) +:assumption (or (not x828) x827) +:assumption (or (not x828) x826) +:assumption (or x829 (not x625)) +:assumption (or x829 (not x632)) +:assumption (or x829 (not x639)) +:assumption (or x829 (not x646)) +:assumption (or x625 x632 x639 x646 (not x829)) +:assumption (or x830 (not x53)) +:assumption (or x830 (not x52)) +:assumption (or x830 (not x51)) +:assumption (or x830 (not x50)) +:assumption (or x53 x52 x51 x50 (not x830)) +:assumption (or (not x830) (not x829) x831) +:assumption (or (not x831) x830) +:assumption (or (not x831) x829) +:assumption (or x832 (not x598)) +:assumption (or x832 (not x605)) +:assumption (or x832 (not x612)) +:assumption (or x832 (not x619)) +:assumption (or x598 x605 x612 x619 (not x832)) +:assumption (or (not x833) (not x832) x834) +:assumption (or (not x834) x833) +:assumption (or (not x834) x832) +:assumption (or x477 (not x834)) +:assumption (or x477 (not x831)) +:assumption (or x477 (not x828)) +:assumption (or x477 (not x825)) +:assumption (or x834 x831 x828 x825 (not x477)) +:assumption (or (not x581) (not x477) (not x591) (not x477) x689) +:assumption (or (not x689) x581) +:assumption (or (not x689) x477) +:assumption (or (not x689) x591) +:assumption (or (not x689) x477) +:assumption (or x833 (not x57)) +:assumption (or x833 (not x56)) +:assumption (or x833 (not x55)) +:assumption (or x833 (not x54)) +:assumption (or x57 x56 x55 x54 (not x833)) +:assumption (or x576 (not x57)) +:assumption (or x576 (not x56)) +:assumption (or x576 (not x55)) +:assumption (or x576 (not x54)) +:assumption (or x576 (not x53)) +:assumption (or x576 (not x52)) +:assumption (or x576 (not x51)) +:assumption (or x576 (not x50)) +:assumption (or x576 (not x49)) +:assumption (or x576 (not x48)) +:assumption (or x576 (not x47)) +:assumption (or x576 (not x46)) +:assumption (or x576 (not x45)) +:assumption (or x576 (not x44)) +:assumption (or x576 (not x43)) +:assumption (or x576 (not x42)) +:assumption (or x57 x56 x55 x54 x53 x52 x51 x50 x49 x48 x47 x46 x45 x44 x43 x42 (not x576)) +:assumption (or x686 (not x44) x835) +:assumption (or (not x835) (not x686)) +:assumption (or (not x835) x44) +:assumption (or x679 x686 (not x45) x836) +:assumption (or (not x836) (not x679)) +:assumption (or (not x836) (not x686)) +:assumption (or (not x836) x45) +:assumption (or x702 (not x43)) +:assumption (or x702 (not x836)) +:assumption (or x702 (not x835)) +:assumption (or x43 x836 x835 (not x702)) +:assumption (or (not x702) (not x696) (not x576) (not x581) (not x477) (not x591) (not x477) x837) +:assumption (or (not x837) x702) +:assumption (or (not x837) x696) +:assumption (or (not x837) x576) +:assumption (or (not x837) x581) +:assumption (or (not x837) x477) +:assumption (or (not x837) x591) +:assumption (or (not x837) x477) +:assumption (or x838 (not x837)) +:assumption (or x838 (not x820)) +:assumption (or x838 (not x752)) +:assumption (or x838 (not x695)) +:assumption (or x837 x820 x752 x695 (not x838)) +:assumption (or x839 (not x60)) +:assumption (or x839 x59) +:assumption (or x839 x840) +:assumption (or x60 (not x59) (not x840) (not x839)) +:assumption (or (not x839) (not x841) x842) +:assumption (or (not x842) x839) +:assumption (or (not x842) x841) +:assumption (or x843 (not x61)) +:assumption (or x843 (not x62)) +:assumption (or x843 (not x63)) +:assumption (or x843 (not x64)) +:assumption (or x843 (not x65)) +:assumption (or x843 (not x66)) +:assumption (or x843 (not x67)) +:assumption (or x843 (not x68)) +:assumption (or x843 (not x69)) +:assumption (or x843 (not x70)) +:assumption (or x843 (not x71)) +:assumption (or x843 (not x72)) +:assumption (or x843 (not x73)) +:assumption (or x843 (not x74)) +:assumption (or x843 (not x75)) +:assumption (or x843 (not x76)) +:assumption (or x61 x62 x63 x64 x65 x66 x67 x68 x69 x70 x71 x72 x73 x74 x75 x76 (not x843)) +:assumption (or (not x60) x59 (not x843) x844) +:assumption (or (not x844) x60) +:assumption (or (not x844) (not x59)) +:assumption (or (not x844) x843) +:assumption (or x60 (not x59) x845) +:assumption (or (not x845) (not x60)) +:assumption (or (not x845) x59) +:assumption (or x841 (not x845)) +:assumption (or x841 (not x844)) +:assumption (or x845 x844 (not x841)) +:assumption (or x846 (not x60)) +:assumption (or x846 x59) +:assumption (or x846 (not x840)) +:assumption (or x60 (not x59) x840 (not x846)) +:assumption (or (not x846) (not x841) x847) +:assumption (or (not x847) x846) +:assumption (or (not x847) x841) +:assumption (or (not x848) x849 (not x850) (not x851) (not x852) (not x853) x854) +:assumption (or (not x854) x848) +:assumption (or (not x854) (not x849)) +:assumption (or (not x854) x850) +:assumption (or (not x854) x851) +:assumption (or (not x854) x852) +:assumption (or (not x854) x853) +:assumption (or (not x855) (not x851) (not x856) x857) +:assumption (or (not x857) x855) +:assumption (or (not x857) x851) +:assumption (or (not x857) x856) +:assumption (or x858 (not x857)) +:assumption (or x858 (not x854)) +:assumption (or x857 x854 (not x858)) +:assumption (or (not x859) x860 (not x861) (not x851) (not x852) (not x853) x862) +:assumption (or (not x862) x859) +:assumption (or (not x862) (not x860)) +:assumption (or (not x862) x861) +:assumption (or (not x862) x851) +:assumption (or (not x862) x852) +:assumption (or (not x862) x853) +:assumption (or (not x863) (not x851) (not x856) x864) +:assumption (or (not x864) x863) +:assumption (or (not x864) x851) +:assumption (or (not x864) x856) +:assumption (or x865 (not x864)) +:assumption (or x865 (not x862)) +:assumption (or x864 x862 (not x865)) +:assumption (or (not x866) x867 (not x868) (not x851) (not x852) (not x853) x869) +:assumption (or (not x869) x866) +:assumption (or (not x869) (not x867)) +:assumption (or (not x869) x868) +:assumption (or (not x869) x851) +:assumption (or (not x869) x852) +:assumption (or (not x869) x853) +:assumption (or (not x870) (not x851) (not x856) x871) +:assumption (or (not x871) x870) +:assumption (or (not x871) x851) +:assumption (or (not x871) x856) +:assumption (or x872 (not x871)) +:assumption (or x872 (not x869)) +:assumption (or x871 x869 (not x872)) +:assumption (or (not x873) x874 (not x875) (not x851) (not x852) (not x853) x876) +:assumption (or (not x876) x873) +:assumption (or (not x876) (not x874)) +:assumption (or (not x876) x875) +:assumption (or (not x876) x851) +:assumption (or (not x876) x852) +:assumption (or (not x876) x853) +:assumption (or x856 x852) +:assumption (or x856 (not x877)) +:assumption (or (not x852) x877 (not x856)) +:assumption (or x851 (not x878)) +:assumption (or x851 (not x870)) +:assumption (or x851 (not x863)) +:assumption (or x851 (not x855)) +:assumption (or x878 x870 x863 x855 (not x851)) +:assumption (or (not x878) (not x851) (not x856) x879) +:assumption (or (not x879) x878) +:assumption (or (not x879) x851) +:assumption (or (not x879) x856) +:assumption (or x878 x870 x863 x855 x880) +:assumption (or (not x880) (not x878)) +:assumption (or (not x880) (not x870)) +:assumption (or (not x880) (not x863)) +:assumption (or (not x880) (not x855)) +:assumption (or x881 (not x880)) +:assumption (or x881 (not x879)) +:assumption (or x881 (not x876)) +:assumption (or x880 x879 x876 (not x881)) +:assumption (or (not x882) (not x882) (not x883) (not x884) x885) +:assumption (or (not x885) x882) +:assumption (or (not x885) x882) +:assumption (or (not x885) x883) +:assumption (or (not x885) x884) +:assumption (or (not x886) (not x882) x887) +:assumption (or (not x887) x886) +:assumption (or (not x887) x882) +:assumption (or x882 x888 x852 x889) +:assumption (or (not x889) (not x882)) +:assumption (or (not x889) (not x888)) +:assumption (or (not x889) (not x852)) +:assumption (or x890 (not x889)) +:assumption (or x890 (not x887)) +:assumption (or x889 x887 (not x890)) +:assumption (or (not x892) x891 (not x893) x894) +:assumption (or (not x894) x892) +:assumption (or (not x894) (not x891)) +:assumption (or (not x894) x893) +:assumption (or x895 (not x896)) +:assumption (or x895 (not x897)) +:assumption (or x895 (not x894)) +:assumption (or x895 (not x891)) +:assumption (or x896 x897 x894 x891 (not x895)) +:assumption (or x898 (not x896)) +:assumption (or x898 (not x897)) +:assumption (or x898 x892) +:assumption (or x898 (not x891)) +:assumption (or x898 x893) +:assumption (or x896 x897 (not x892) x891 (not x893) (not x898)) +:assumption (or x899 (not x896)) +:assumption (or x899 (not x892)) +:assumption (or x899 x891) +:assumption (or x896 x892 (not x891) (not x899)) +:assumption (or x900 (not x892)) +:assumption (or x900 (not x891)) +:assumption (or x900 x901) +:assumption (or x892 x891 (not x901) (not x900)) +:assumption (or (not x900) (not x899) (not x898) (not x895) x902) +:assumption (or (not x902) x900) +:assumption (or (not x902) x899) +:assumption (or (not x902) x898) +:assumption (or (not x902) x895) +:assumption (or (not x904) x903 (not x905) x906) +:assumption (or (not x906) x904) +:assumption (or (not x906) (not x903)) +:assumption (or (not x906) x905) +:assumption (or x907 (not x908)) +:assumption (or x907 (not x909)) +:assumption (or x907 (not x906)) +:assumption (or x907 (not x903)) +:assumption (or x908 x909 x906 x903 (not x907)) +:assumption (or x910 (not x908)) +:assumption (or x910 (not x909)) +:assumption (or x910 x904) +:assumption (or x910 (not x903)) +:assumption (or x910 x905) +:assumption (or x908 x909 (not x904) x903 (not x905) (not x910)) +:assumption (or x911 (not x908)) +:assumption (or x911 (not x904)) +:assumption (or x911 x903) +:assumption (or x908 x904 (not x903) (not x911)) +:assumption (or x912 (not x904)) +:assumption (or x912 (not x903)) +:assumption (or x912 x913) +:assumption (or x904 x903 (not x913) (not x912)) +:assumption (or (not x912) (not x911) (not x910) (not x907) x914) +:assumption (or (not x914) x912) +:assumption (or (not x914) x911) +:assumption (or (not x914) x910) +:assumption (or (not x914) x907) +:assumption (or (not x916) x915 (not x917) x918) +:assumption (or (not x918) x916) +:assumption (or (not x918) (not x915)) +:assumption (or (not x918) x917) +:assumption (or x919 (not x920)) +:assumption (or x919 (not x921)) +:assumption (or x919 (not x918)) +:assumption (or x919 (not x915)) +:assumption (or x920 x921 x918 x915 (not x919)) +:assumption (or x922 (not x920)) +:assumption (or x922 (not x921)) +:assumption (or x922 x916) +:assumption (or x922 (not x915)) +:assumption (or x922 x917) +:assumption (or x920 x921 (not x916) x915 (not x917) (not x922)) +:assumption (or x923 (not x920)) +:assumption (or x923 (not x916)) +:assumption (or x923 x915) +:assumption (or x920 x916 (not x915) (not x923)) +:assumption (or x924 (not x916)) +:assumption (or x924 (not x915)) +:assumption (or x924 x925) +:assumption (or x916 x915 (not x925) (not x924)) +:assumption (or (not x924) (not x923) (not x922) (not x919) x926) +:assumption (or (not x926) x924) +:assumption (or (not x926) x923) +:assumption (or (not x926) x922) +:assumption (or (not x926) x919) +:assumption (or (not x928) x927 (not x929) x930) +:assumption (or (not x930) x928) +:assumption (or (not x930) (not x927)) +:assumption (or (not x930) x929) +:assumption (or x931 (not x932)) +:assumption (or x931 (not x933)) +:assumption (or x931 (not x930)) +:assumption (or x931 (not x927)) +:assumption (or x932 x933 x930 x927 (not x931)) +:assumption (or x934 (not x932)) +:assumption (or x934 (not x933)) +:assumption (or x934 x928) +:assumption (or x934 (not x927)) +:assumption (or x934 x929) +:assumption (or x932 x933 (not x928) x927 (not x929) (not x934)) +:assumption (or x935 (not x932)) +:assumption (or x935 (not x928)) +:assumption (or x935 x927) +:assumption (or x932 x928 (not x927) (not x935)) +:assumption (or x936 (not x928)) +:assumption (or x936 (not x927)) +:assumption (or x936 x937) +:assumption (or x928 x927 (not x937) (not x936)) +:assumption (or (not x936) (not x935) (not x934) (not x931) x938) +:assumption (or (not x938) x936) +:assumption (or (not x938) x935) +:assumption (or (not x938) x934) +:assumption (or (not x938) x931) +:assumption (or (not x940) x939 (not x941) x942) +:assumption (or (not x942) x940) +:assumption (or (not x942) (not x939)) +:assumption (or (not x942) x941) +:assumption (or x943 (not x944)) +:assumption (or x943 (not x945)) +:assumption (or x943 (not x942)) +:assumption (or x943 (not x939)) +:assumption (or x944 x945 x942 x939 (not x943)) +:assumption (or x946 (not x944)) +:assumption (or x946 (not x945)) +:assumption (or x946 x940) +:assumption (or x946 (not x939)) +:assumption (or x946 x941) +:assumption (or x944 x945 (not x940) x939 (not x941) (not x946)) +:assumption (or x947 (not x944)) +:assumption (or x947 (not x940)) +:assumption (or x947 x939) +:assumption (or x944 x940 (not x939) (not x947)) +:assumption (or x948 (not x940)) +:assumption (or x948 (not x939)) +:assumption (or x948 x949) +:assumption (or x940 x939 (not x949) (not x948)) +:assumption (or (not x948) (not x947) (not x946) (not x943) x950) +:assumption (or (not x950) x948) +:assumption (or (not x950) x947) +:assumption (or (not x950) x946) +:assumption (or (not x950) x943) +:assumption (or (not x952) x951 (not x953) x954) +:assumption (or (not x954) x952) +:assumption (or (not x954) (not x951)) +:assumption (or (not x954) x953) +:assumption (or x955 (not x956)) +:assumption (or x955 (not x957)) +:assumption (or x955 (not x954)) +:assumption (or x955 (not x951)) +:assumption (or x956 x957 x954 x951 (not x955)) +:assumption (or x958 (not x956)) +:assumption (or x958 (not x957)) +:assumption (or x958 x952) +:assumption (or x958 (not x951)) +:assumption (or x958 x953) +:assumption (or x956 x957 (not x952) x951 (not x953) (not x958)) +:assumption (or x959 (not x956)) +:assumption (or x959 (not x952)) +:assumption (or x959 x951) +:assumption (or x956 x952 (not x951) (not x959)) +:assumption (or x960 (not x952)) +:assumption (or x960 (not x951)) +:assumption (or x960 x961) +:assumption (or x952 x951 (not x961) (not x960)) +:assumption (or (not x960) (not x959) (not x958) (not x955) x962) +:assumption (or (not x962) x960) +:assumption (or (not x962) x959) +:assumption (or (not x962) x958) +:assumption (or (not x962) x955) +:assumption (or (not x964) x963 (not x965) x966) +:assumption (or (not x966) x964) +:assumption (or (not x966) (not x963)) +:assumption (or (not x966) x965) +:assumption (or x967 (not x968)) +:assumption (or x967 (not x969)) +:assumption (or x967 (not x966)) +:assumption (or x967 (not x963)) +:assumption (or x968 x969 x966 x963 (not x967)) +:assumption (or x970 (not x968)) +:assumption (or x970 (not x969)) +:assumption (or x970 x964) +:assumption (or x970 (not x963)) +:assumption (or x970 x965) +:assumption (or x968 x969 (not x964) x963 (not x965) (not x970)) +:assumption (or x971 (not x968)) +:assumption (or x971 (not x964)) +:assumption (or x971 x963) +:assumption (or x968 x964 (not x963) (not x971)) +:assumption (or x972 (not x964)) +:assumption (or x972 (not x963)) +:assumption (or x972 x973) +:assumption (or x964 x963 (not x973) (not x972)) +:assumption (or (not x972) (not x971) (not x970) (not x967) x974) +:assumption (or (not x974) x972) +:assumption (or (not x974) x971) +:assumption (or (not x974) x970) +:assumption (or (not x974) x967) +:assumption (or (not x976) x975 (not x977) x978) +:assumption (or (not x978) x976) +:assumption (or (not x978) (not x975)) +:assumption (or (not x978) x977) +:assumption (or x979 (not x980)) +:assumption (or x979 (not x981)) +:assumption (or x979 (not x978)) +:assumption (or x979 (not x975)) +:assumption (or x980 x981 x978 x975 (not x979)) +:assumption (or x982 (not x980)) +:assumption (or x982 (not x981)) +:assumption (or x982 x976) +:assumption (or x982 (not x975)) +:assumption (or x982 x977) +:assumption (or x980 x981 (not x976) x975 (not x977) (not x982)) +:assumption (or x983 (not x980)) +:assumption (or x983 (not x976)) +:assumption (or x983 x975) +:assumption (or x980 x976 (not x975) (not x983)) +:assumption (or x984 (not x976)) +:assumption (or x984 (not x975)) +:assumption (or x984 x985) +:assumption (or x976 x975 (not x985) (not x984)) +:assumption (or (not x984) (not x983) (not x982) (not x979) x986) +:assumption (or (not x986) x984) +:assumption (or (not x986) x983) +:assumption (or (not x986) x982) +:assumption (or (not x986) x979) +:assumption (or (not x988) x987 (not x989) x990) +:assumption (or (not x990) x988) +:assumption (or (not x990) (not x987)) +:assumption (or (not x990) x989) +:assumption (or x991 (not x992)) +:assumption (or x991 (not x993)) +:assumption (or x991 (not x990)) +:assumption (or x991 (not x987)) +:assumption (or x992 x993 x990 x987 (not x991)) +:assumption (or x994 (not x992)) +:assumption (or x994 (not x993)) +:assumption (or x994 x988) +:assumption (or x994 (not x987)) +:assumption (or x994 x989) +:assumption (or x992 x993 (not x988) x987 (not x989) (not x994)) +:assumption (or x995 (not x992)) +:assumption (or x995 (not x988)) +:assumption (or x995 x987) +:assumption (or x992 x988 (not x987) (not x995)) +:assumption (or x996 (not x988)) +:assumption (or x996 (not x987)) +:assumption (or x996 x997) +:assumption (or x988 x987 (not x997) (not x996)) +:assumption (or (not x996) (not x995) (not x994) (not x991) x998) +:assumption (or (not x998) x996) +:assumption (or (not x998) x995) +:assumption (or (not x998) x994) +:assumption (or (not x998) x991) +:assumption (or (not x1000) x999 (not x1001) x1002) +:assumption (or (not x1002) x1000) +:assumption (or (not x1002) (not x999)) +:assumption (or (not x1002) x1001) +:assumption (or x1003 (not x1004)) +:assumption (or x1003 (not x1005)) +:assumption (or x1003 (not x1002)) +:assumption (or x1003 (not x999)) +:assumption (or x1004 x1005 x1002 x999 (not x1003)) +:assumption (or x1006 (not x1004)) +:assumption (or x1006 (not x1005)) +:assumption (or x1006 x1000) +:assumption (or x1006 (not x999)) +:assumption (or x1006 x1001) +:assumption (or x1004 x1005 (not x1000) x999 (not x1001) (not x1006)) +:assumption (or x1007 (not x1004)) +:assumption (or x1007 (not x1000)) +:assumption (or x1007 x999) +:assumption (or x1004 x1000 (not x999) (not x1007)) +:assumption (or x1008 (not x1000)) +:assumption (or x1008 (not x999)) +:assumption (or x1008 x1009) +:assumption (or x1000 x999 (not x1009) (not x1008)) +:assumption (or (not x1008) (not x1007) (not x1006) (not x1003) x1010) +:assumption (or (not x1010) x1008) +:assumption (or (not x1010) x1007) +:assumption (or (not x1010) x1006) +:assumption (or (not x1010) x1003) +:assumption (or (not x1012) x1011 (not x1013) x1014) +:assumption (or (not x1014) x1012) +:assumption (or (not x1014) (not x1011)) +:assumption (or (not x1014) x1013) +:assumption (or x1015 (not x1016)) +:assumption (or x1015 (not x1017)) +:assumption (or x1015 (not x1014)) +:assumption (or x1015 (not x1011)) +:assumption (or x1016 x1017 x1014 x1011 (not x1015)) +:assumption (or x1018 (not x1016)) +:assumption (or x1018 (not x1017)) +:assumption (or x1018 x1012) +:assumption (or x1018 (not x1011)) +:assumption (or x1018 x1013) +:assumption (or x1016 x1017 (not x1012) x1011 (not x1013) (not x1018)) +:assumption (or x1019 (not x1016)) +:assumption (or x1019 (not x1012)) +:assumption (or x1019 x1011) +:assumption (or x1016 x1012 (not x1011) (not x1019)) +:assumption (or x1020 (not x1012)) +:assumption (or x1020 (not x1011)) +:assumption (or x1020 x1021) +:assumption (or x1012 x1011 (not x1021) (not x1020)) +:assumption (or (not x1020) (not x1019) (not x1018) (not x1015) x1022) +:assumption (or (not x1022) x1020) +:assumption (or (not x1022) x1019) +:assumption (or (not x1022) x1018) +:assumption (or (not x1022) x1015) +:assumption (or (not x1024) x1023 (not x1025) x1026) +:assumption (or (not x1026) x1024) +:assumption (or (not x1026) (not x1023)) +:assumption (or (not x1026) x1025) +:assumption (or x1027 (not x1028)) +:assumption (or x1027 (not x1029)) +:assumption (or x1027 (not x1026)) +:assumption (or x1027 (not x1023)) +:assumption (or x1028 x1029 x1026 x1023 (not x1027)) +:assumption (or x1030 (not x1028)) +:assumption (or x1030 (not x1029)) +:assumption (or x1030 x1024) +:assumption (or x1030 (not x1023)) +:assumption (or x1030 x1025) +:assumption (or x1028 x1029 (not x1024) x1023 (not x1025) (not x1030)) +:assumption (or x1031 (not x1028)) +:assumption (or x1031 (not x1024)) +:assumption (or x1031 x1023) +:assumption (or x1028 x1024 (not x1023) (not x1031)) +:assumption (or x1032 (not x1024)) +:assumption (or x1032 (not x1023)) +:assumption (or x1032 x1033) +:assumption (or x1024 x1023 (not x1033) (not x1032)) +:assumption (or (not x1032) (not x1031) (not x1030) (not x1027) x1034) +:assumption (or (not x1034) x1032) +:assumption (or (not x1034) x1031) +:assumption (or (not x1034) x1030) +:assumption (or (not x1034) x1027) +:assumption (or (not x1036) x1035 (not x1037) x1038) +:assumption (or (not x1038) x1036) +:assumption (or (not x1038) (not x1035)) +:assumption (or (not x1038) x1037) +:assumption (or x1039 (not x1040)) +:assumption (or x1039 (not x1041)) +:assumption (or x1039 (not x1038)) +:assumption (or x1039 (not x1035)) +:assumption (or x1040 x1041 x1038 x1035 (not x1039)) +:assumption (or x1042 (not x1040)) +:assumption (or x1042 (not x1041)) +:assumption (or x1042 x1036) +:assumption (or x1042 (not x1035)) +:assumption (or x1042 x1037) +:assumption (or x1040 x1041 (not x1036) x1035 (not x1037) (not x1042)) +:assumption (or x1043 (not x1040)) +:assumption (or x1043 (not x1036)) +:assumption (or x1043 x1035) +:assumption (or x1040 x1036 (not x1035) (not x1043)) +:assumption (or x1044 (not x1036)) +:assumption (or x1044 (not x1035)) +:assumption (or x1044 x1045) +:assumption (or x1036 x1035 (not x1045) (not x1044)) +:assumption (or (not x1044) (not x1043) (not x1042) (not x1039) x1046) +:assumption (or (not x1046) x1044) +:assumption (or (not x1046) x1043) +:assumption (or (not x1046) x1042) +:assumption (or (not x1046) x1039) +:assumption (or (not x1048) x1047 (not x1049) x1050) +:assumption (or (not x1050) x1048) +:assumption (or (not x1050) (not x1047)) +:assumption (or (not x1050) x1049) +:assumption (or x1051 (not x1052)) +:assumption (or x1051 (not x1053)) +:assumption (or x1051 (not x1050)) +:assumption (or x1051 (not x1047)) +:assumption (or x1052 x1053 x1050 x1047 (not x1051)) +:assumption (or x1054 (not x1052)) +:assumption (or x1054 (not x1053)) +:assumption (or x1054 x1048) +:assumption (or x1054 (not x1047)) +:assumption (or x1054 x1049) +:assumption (or x1052 x1053 (not x1048) x1047 (not x1049) (not x1054)) +:assumption (or x1055 (not x1052)) +:assumption (or x1055 (not x1048)) +:assumption (or x1055 x1047) +:assumption (or x1052 x1048 (not x1047) (not x1055)) +:assumption (or x1056 (not x1048)) +:assumption (or x1056 (not x1047)) +:assumption (or x1056 x1057) +:assumption (or x1048 x1047 (not x1057) (not x1056)) +:assumption (or (not x1056) (not x1055) (not x1054) (not x1051) x1058) +:assumption (or (not x1058) x1056) +:assumption (or (not x1058) x1055) +:assumption (or (not x1058) x1054) +:assumption (or (not x1058) x1051) +:assumption (or (not x1060) x1059 (not x1061) x1062) +:assumption (or (not x1062) x1060) +:assumption (or (not x1062) (not x1059)) +:assumption (or (not x1062) x1061) +:assumption (or x1063 (not x1064)) +:assumption (or x1063 (not x1065)) +:assumption (or x1063 (not x1062)) +:assumption (or x1063 (not x1059)) +:assumption (or x1064 x1065 x1062 x1059 (not x1063)) +:assumption (or x1066 (not x1064)) +:assumption (or x1066 (not x1065)) +:assumption (or x1066 x1060) +:assumption (or x1066 (not x1059)) +:assumption (or x1066 x1061) +:assumption (or x1064 x1065 (not x1060) x1059 (not x1061) (not x1066)) +:assumption (or x1067 (not x1064)) +:assumption (or x1067 (not x1060)) +:assumption (or x1067 x1059) +:assumption (or x1064 x1060 (not x1059) (not x1067)) +:assumption (or x1068 (not x1060)) +:assumption (or x1068 (not x1059)) +:assumption (or x1068 x1069) +:assumption (or x1060 x1059 (not x1069) (not x1068)) +:assumption (or (not x1068) (not x1067) (not x1066) (not x1063) x1070) +:assumption (or (not x1070) x1068) +:assumption (or (not x1070) x1067) +:assumption (or (not x1070) x1066) +:assumption (or (not x1070) x1063) +:assumption (or (not x1071) (not x863) x1072) +:assumption (or (not x1072) x1071) +:assumption (or (not x1072) x863) +:assumption (or (not x1073) (not x1071) (not x870) x1074) +:assumption (or (not x1074) x1073) +:assumption (or (not x1074) x1071) +:assumption (or (not x1074) x870) +:assumption (or (not x1075) (not x1073) (not x1071) (not x878) x1076) +:assumption (or (not x1076) x1075) +:assumption (or (not x1076) x1073) +:assumption (or (not x1076) x1071) +:assumption (or (not x1076) x878) +:assumption (or x873 (not x855)) +:assumption (or x873 (not x1076)) +:assumption (or x873 (not x1074)) +:assumption (or x873 (not x1072)) +:assumption (or x855 x1076 x1074 x1072 (not x873)) +:assumption (or (not x873) x874 (not x875) (not x852) (not x853) x1077) +:assumption (or (not x1077) x873) +:assumption (or (not x1077) (not x874)) +:assumption (or (not x1077) x875) +:assumption (or (not x1077) x852) +:assumption (or (not x1077) x853) +:assumption (or (not x1073) (not x870) x1078) +:assumption (or (not x1078) x1073) +:assumption (or (not x1078) x870) +:assumption (or (not x1075) (not x1073) (not x878) x1079) +:assumption (or (not x1079) x1075) +:assumption (or (not x1079) x1073) +:assumption (or (not x1079) x878) +:assumption (or (not x1080) (not x1075) (not x1073) (not x855) x1081) +:assumption (or (not x1081) x1080) +:assumption (or (not x1081) x1075) +:assumption (or (not x1081) x1073) +:assumption (or (not x1081) x855) +:assumption (or x848 (not x863)) +:assumption (or x848 (not x1081)) +:assumption (or x848 (not x1079)) +:assumption (or x848 (not x1078)) +:assumption (or x863 x1081 x1079 x1078 (not x848)) +:assumption (or (not x848) x849 (not x850) (not x852) (not x853) x1082) +:assumption (or (not x1082) x848) +:assumption (or (not x1082) (not x849)) +:assumption (or (not x1082) x850) +:assumption (or (not x1082) x852) +:assumption (or (not x1082) x853) +:assumption (or (not x1075) (not x878) x1083) +:assumption (or (not x1083) x1075) +:assumption (or (not x1083) x878) +:assumption (or (not x1080) (not x1075) (not x855) x1084) +:assumption (or (not x1084) x1080) +:assumption (or (not x1084) x1075) +:assumption (or (not x1084) x855) +:assumption (or (not x1071) (not x1080) (not x1075) (not x863) x1085) +:assumption (or (not x1085) x1071) +:assumption (or (not x1085) x1080) +:assumption (or (not x1085) x1075) +:assumption (or (not x1085) x863) +:assumption (or x859 (not x870)) +:assumption (or x859 (not x1085)) +:assumption (or x859 (not x1084)) +:assumption (or x859 (not x1083)) +:assumption (or x870 x1085 x1084 x1083 (not x859)) +:assumption (or (not x859) x860 (not x861) (not x852) (not x853) x1086) +:assumption (or (not x1086) x859) +:assumption (or (not x1086) (not x860)) +:assumption (or (not x1086) x861) +:assumption (or (not x1086) x852) +:assumption (or (not x1086) x853) +:assumption (or (not x1080) (not x855) x1087) +:assumption (or (not x1087) x1080) +:assumption (or (not x1087) x855) +:assumption (or (not x1071) (not x1080) (not x863) x1088) +:assumption (or (not x1088) x1071) +:assumption (or (not x1088) x1080) +:assumption (or (not x1088) x863) +:assumption (or (not x1073) (not x1071) (not x1080) (not x870) x1089) +:assumption (or (not x1089) x1073) +:assumption (or (not x1089) x1071) +:assumption (or (not x1089) x1080) +:assumption (or (not x1089) x870) +:assumption (or x866 (not x878)) +:assumption (or x866 (not x1089)) +:assumption (or x866 (not x1088)) +:assumption (or x866 (not x1087)) +:assumption (or x878 x1089 x1088 x1087 (not x866)) +:assumption (or (not x866) x867 (not x868) (not x852) (not x853) x1090) +:assumption (or (not x1090) x866) +:assumption (or (not x1090) (not x867)) +:assumption (or (not x1090) x868) +:assumption (or (not x1090) x852) +:assumption (or (not x1090) x853) +:assumption (or (not x1092) x1091 (not x1093) x1094) +:assumption (or (not x1094) x1092) +:assumption (or (not x1094) (not x1091)) +:assumption (or (not x1094) x1093) +:assumption (or x1095 (not x1096)) +:assumption (or x1095 (not x1097)) +:assumption (or x1095 (not x1094)) +:assumption (or x1095 (not x1091)) +:assumption (or x1096 x1097 x1094 x1091 (not x1095)) +:assumption (or x1098 (not x1096)) +:assumption (or x1098 (not x1097)) +:assumption (or x1098 x1092) +:assumption (or x1098 (not x1091)) +:assumption (or x1098 x1093) +:assumption (or x1096 x1097 (not x1092) x1091 (not x1093) (not x1098)) +:assumption (or x1099 (not x1096)) +:assumption (or x1099 (not x1092)) +:assumption (or x1099 x1091) +:assumption (or x1096 x1092 (not x1091) (not x1099)) +:assumption (or x1100 (not x1092)) +:assumption (or x1100 (not x1091)) +:assumption (or x1100 x1101) +:assumption (or x1092 x1091 (not x1101) (not x1100)) +:assumption (or (not x1100) (not x1099) (not x1098) (not x1095) x1102) +:assumption (or (not x1102) x1100) +:assumption (or (not x1102) x1099) +:assumption (or (not x1102) x1098) +:assumption (or (not x1102) x1095) +:assumption (or x888 (not x1103) x1104) +:assumption (or (not x1104) (not x888)) +:assumption (or (not x1104) x1103) +:assumption (or (not x852) (not x1105) (not x883) x1106) +:assumption (or (not x1106) x852) +:assumption (or (not x1106) x1105) +:assumption (or (not x1106) x883) +:assumption (or x1107 (not x1106)) +:assumption (or x1107 (not x1104)) +:assumption (or x1106 x1104 (not x1107)) +:assumption (or x888 (not x1105) x1108) +:assumption (or (not x1108) (not x888)) +:assumption (or (not x1108) x1105) +:assumption (or (not x852) (not x1109) (not x883) x1110) +:assumption (or (not x1110) x852) +:assumption (or (not x1110) x1109) +:assumption (or (not x1110) x883) +:assumption (or x1111 (not x1110)) +:assumption (or x1111 (not x1108)) +:assumption (or x1110 x1108 (not x1111)) +:assumption (or x888 (not x1109) x1112) +:assumption (or (not x1112) (not x888)) +:assumption (or (not x1112) x1109) +:assumption (or (not x852) (not x1113) (not x883) x1114) +:assumption (or (not x1114) x852) +:assumption (or (not x1114) x1113) +:assumption (or (not x1114) x883) +:assumption (or x1115 (not x1114)) +:assumption (or x1115 (not x1112)) +:assumption (or x1114 x1112 (not x1115)) +:assumption (or x888 (not x1113) x1116) +:assumption (or (not x1116) (not x888)) +:assumption (or (not x1116) x1113) +:assumption (or (not x852) (not x883) x1117) +:assumption (or (not x1117) x852) +:assumption (or (not x1117) x883) +:assumption (or x1118 (not x1117)) +:assumption (or x1118 (not x1116)) +:assumption (or x1117 x1116 (not x1118)) +:assumption (or x1119 (not x874)) +:assumption (or x1119 x875) +:assumption (or x1119 (not x875)) +:assumption (or x874 (not x875) x875 (not x1119)) +:assumption (or x1120 (not x1121)) +:assumption (or x1120 x1122) +:assumption (or x1121 (not x1122) (not x1120)) +:assumption (or (not x1120) (not x1119) x1123) +:assumption (or (not x1123) x1120) +:assumption (or (not x1123) x1119) +:assumption (or x1124 (not x849)) +:assumption (or x1124 x850) +:assumption (or x1124 (not x850)) +:assumption (or x849 (not x850) x850 (not x1124)) +:assumption (or x1125 (not x1126)) +:assumption (or x1125 x1127) +:assumption (or x1126 (not x1127) (not x1125)) +:assumption (or (not x1125) (not x1124) x1128) +:assumption (or (not x1128) x1125) +:assumption (or (not x1128) x1124) +:assumption (or x1129 (not x860)) +:assumption (or x1129 x861) +:assumption (or x1129 (not x861)) +:assumption (or x860 (not x861) x861 (not x1129)) +:assumption (or x1130 (not x1131)) +:assumption (or x1130 x1132) +:assumption (or x1131 (not x1132) (not x1130)) +:assumption (or (not x1130) (not x1129) x1133) +:assumption (or (not x1133) x1130) +:assumption (or (not x1133) x1129) +:assumption (or x1134 (not x867)) +:assumption (or x1134 x868) +:assumption (or x1134 (not x868)) +:assumption (or x867 (not x868) x868 (not x1134)) +:assumption (or x1135 (not x1136)) +:assumption (or x1135 x1137) +:assumption (or x1136 (not x1137) (not x1135)) +:assumption (or (not x1135) (not x1134) x1138) +:assumption (or (not x1138) x1135) +:assumption (or (not x1138) x1134) +:assumption (or x1139 (not x852)) +:assumption (or x1139 (not x888)) +:assumption (or x852 x888 (not x1139)) +:assumption (or x1140 (not x891)) +:assumption (or x1140 (not x1141)) +:assumption (or x891 x1141 (not x1140)) +:assumption (or x1142 (not x903)) +:assumption (or x1142 (not x1143)) +:assumption (or x903 x1143 (not x1142)) +:assumption (or x1144 (not x915)) +:assumption (or x1144 (not x1145)) +:assumption (or x915 x1145 (not x1144)) +:assumption (or x1146 (not x927)) +:assumption (or x1146 (not x1147)) +:assumption (or x927 x1147 (not x1146)) +:assumption (or x1148 (not x939)) +:assumption (or x1148 (not x1149)) +:assumption (or x939 x1149 (not x1148)) +:assumption (or x1150 (not x951)) +:assumption (or x1150 (not x1151)) +:assumption (or x951 x1151 (not x1150)) +:assumption (or x1152 (not x963)) +:assumption (or x1152 (not x1153)) +:assumption (or x963 x1153 (not x1152)) +:assumption (or x1154 (not x975)) +:assumption (or x1154 (not x1155)) +:assumption (or x975 x1155 (not x1154)) +:assumption (or x1156 (not x987)) +:assumption (or x1156 (not x1157)) +:assumption (or x987 x1157 (not x1156)) +:assumption (or x1158 (not x999)) +:assumption (or x1158 (not x1159)) +:assumption (or x999 x1159 (not x1158)) +:assumption (or x1160 (not x1011)) +:assumption (or x1160 (not x1161)) +:assumption (or x1011 x1161 (not x1160)) +:assumption (or x1162 (not x1023)) +:assumption (or x1162 (not x1163)) +:assumption (or x1023 x1163 (not x1162)) +:assumption (or x1164 (not x1035)) +:assumption (or x1164 (not x1165)) +:assumption (or x1035 x1165 (not x1164)) +:assumption (or x1166 (not x1047)) +:assumption (or x1166 (not x1167)) +:assumption (or x1047 x1167 (not x1166)) +:assumption (or x1168 (not x1059)) +:assumption (or x1168 (not x1169)) +:assumption (or x1059 x1169 (not x1168)) +:assumption (or x1170 (not x1091)) +:assumption (or x1170 (not x1171)) +:assumption (or x1091 x1171 (not x1170)) +:assumption (or (not x76) (not x1172) (not x1173) (not x1174) (not x1175) x1176) +:assumption (or (not x1176) x76) +:assumption (or (not x1176) x1172) +:assumption (or (not x1176) x1173) +:assumption (or (not x1176) x1174) +:assumption (or (not x1176) x1175) +:assumption (or (not x64) (not x1173) (not x1172) (not x882) (not x1177) x1178) +:assumption (or (not x1178) x64) +:assumption (or (not x1178) x1173) +:assumption (or (not x1178) x1172) +:assumption (or (not x1178) x882) +:assumption (or (not x1178) x1177) +:assumption (or (not x61) (not x1173) (not x1172) (not x1179) (not x1180) (not x1181) (not x1182) (not x882) x1183) +:assumption (or (not x1183) x61) +:assumption (or (not x1183) x1173) +:assumption (or (not x1183) x1172) +:assumption (or (not x1183) x1179) +:assumption (or (not x1183) x1180) +:assumption (or (not x1183) x1181) +:assumption (or (not x1183) x1182) +:assumption (or (not x1183) x882) +:assumption (or (not x1184) (not x1185) (not x1172) (not x882) (not x883) (not x884) (not x883) x1186) +:assumption (or (not x1186) x1184) +:assumption (or (not x1186) x1185) +:assumption (or (not x1186) x1172) +:assumption (or (not x1186) x882) +:assumption (or (not x1186) x883) +:assumption (or (not x1186) x884) +:assumption (or (not x1186) x883) +:assumption (or x1187 (not x1186)) +:assumption (or x1187 (not x1183)) +:assumption (or x1187 (not x1178)) +:assumption (or x1187 (not x1176)) +:assumption (or x1187 (not x1188)) +:assumption (or x1186 x1183 x1178 x1176 x1188 (not x1187)) +:assumption (or (not x75) (not x1172) (not x1173) (not x1174) (not x1175) x1189) +:assumption (or (not x1189) x75) +:assumption (or (not x1189) x1172) +:assumption (or (not x1189) x1173) +:assumption (or (not x1189) x1174) +:assumption (or (not x1189) x1175) +:assumption (or (not x63) (not x1173) (not x1172) (not x882) (not x1177) x1190) +:assumption (or (not x1190) x63) +:assumption (or (not x1190) x1173) +:assumption (or (not x1190) x1172) +:assumption (or (not x1190) x882) +:assumption (or (not x1190) x1177) +:assumption (or (not x76) (not x1173) (not x1172) (not x1179) (not x1180) (not x1181) (not x1182) (not x882) x1191) +:assumption (or (not x1191) x76) +:assumption (or (not x1191) x1173) +:assumption (or (not x1191) x1172) +:assumption (or (not x1191) x1179) +:assumption (or (not x1191) x1180) +:assumption (or (not x1191) x1181) +:assumption (or (not x1191) x1182) +:assumption (or (not x1191) x882) +:assumption (or (not x76) (not x1192) (not x1172) (not x882) (not x883) (not x884) (not x883) x1193) +:assumption (or (not x1193) x76) +:assumption (or (not x1193) x1192) +:assumption (or (not x1193) x1172) +:assumption (or (not x1193) x882) +:assumption (or (not x1193) x883) +:assumption (or (not x1193) x884) +:assumption (or (not x1193) x883) +:assumption (or x1194 (not x1193)) +:assumption (or x1194 (not x1191)) +:assumption (or x1194 (not x1190)) +:assumption (or x1194 (not x1189)) +:assumption (or x1193 x1191 x1190 x1189 (not x1194)) +:assumption (or (not x74) (not x1172) (not x1173) (not x1174) (not x1175) x1195) +:assumption (or (not x1195) x74) +:assumption (or (not x1195) x1172) +:assumption (or (not x1195) x1173) +:assumption (or (not x1195) x1174) +:assumption (or (not x1195) x1175) +:assumption (or (not x62) (not x1173) (not x1172) (not x882) (not x1177) x1196) +:assumption (or (not x1196) x62) +:assumption (or (not x1196) x1173) +:assumption (or (not x1196) x1172) +:assumption (or (not x1196) x882) +:assumption (or (not x1196) x1177) +:assumption (or (not x75) (not x1173) (not x1172) (not x1179) (not x1180) (not x1181) (not x1182) (not x882) x1197) +:assumption (or (not x1197) x75) +:assumption (or (not x1197) x1173) +:assumption (or (not x1197) x1172) +:assumption (or (not x1197) x1179) +:assumption (or (not x1197) x1180) +:assumption (or (not x1197) x1181) +:assumption (or (not x1197) x1182) +:assumption (or (not x1197) x882) +:assumption (or (not x1198) (not x1199) (not x1172) (not x882) (not x883) (not x884) (not x883) x1200) +:assumption (or (not x1200) x1198) +:assumption (or (not x1200) x1199) +:assumption (or (not x1200) x1172) +:assumption (or (not x1200) x882) +:assumption (or (not x1200) x883) +:assumption (or (not x1200) x884) +:assumption (or (not x1200) x883) +:assumption (or x1201 (not x1200)) +:assumption (or x1201 (not x1197)) +:assumption (or x1201 (not x1196)) +:assumption (or x1201 (not x1195)) +:assumption (or x1200 x1197 x1196 x1195 (not x1201)) +:assumption (or (not x73) (not x1172) (not x1173) (not x1174) (not x1175) x1202) +:assumption (or (not x1202) x73) +:assumption (or (not x1202) x1172) +:assumption (or (not x1202) x1173) +:assumption (or (not x1202) x1174) +:assumption (or (not x1202) x1175) +:assumption (or (not x61) (not x1173) (not x1172) (not x882) (not x1177) x1203) +:assumption (or (not x1203) x61) +:assumption (or (not x1203) x1173) +:assumption (or (not x1203) x1172) +:assumption (or (not x1203) x882) +:assumption (or (not x1203) x1177) +:assumption (or (not x74) (not x1173) (not x1172) (not x1179) (not x1180) (not x1181) (not x1182) (not x882) x1204) +:assumption (or (not x1204) x74) +:assumption (or (not x1204) x1173) +:assumption (or (not x1204) x1172) +:assumption (or (not x1204) x1179) +:assumption (or (not x1204) x1180) +:assumption (or (not x1204) x1181) +:assumption (or (not x1204) x1182) +:assumption (or (not x1204) x882) +:assumption (or (not x1205) (not x1206) (not x1172) (not x882) (not x883) (not x884) (not x883) x1207) +:assumption (or (not x1207) x1205) +:assumption (or (not x1207) x1206) +:assumption (or (not x1207) x1172) +:assumption (or (not x1207) x882) +:assumption (or (not x1207) x883) +:assumption (or (not x1207) x884) +:assumption (or (not x1207) x883) +:assumption (or x1208 (not x1207)) +:assumption (or x1208 (not x1204)) +:assumption (or x1208 (not x1203)) +:assumption (or x1208 (not x1202)) +:assumption (or x1207 x1204 x1203 x1202 (not x1208)) +:assumption (or (not x72) (not x1172) (not x1173) (not x1174) (not x1175) x1209) +:assumption (or (not x1209) x72) +:assumption (or (not x1209) x1172) +:assumption (or (not x1209) x1173) +:assumption (or (not x1209) x1174) +:assumption (or (not x1209) x1175) +:assumption (or (not x76) (not x1173) (not x1172) (not x882) (not x1177) x1210) +:assumption (or (not x1210) x76) +:assumption (or (not x1210) x1173) +:assumption (or (not x1210) x1172) +:assumption (or (not x1210) x882) +:assumption (or (not x1210) x1177) +:assumption (or (not x73) (not x1173) (not x1172) (not x1179) (not x1180) (not x1181) (not x1182) (not x882) x1211) +:assumption (or (not x1211) x73) +:assumption (or (not x1211) x1173) +:assumption (or (not x1211) x1172) +:assumption (or (not x1211) x1179) +:assumption (or (not x1211) x1180) +:assumption (or (not x1211) x1181) +:assumption (or (not x1211) x1182) +:assumption (or (not x1211) x882) +:assumption (or (not x1212) (not x1213) (not x1172) (not x882) (not x883) (not x884) (not x883) x1214) +:assumption (or (not x1214) x1212) +:assumption (or (not x1214) x1213) +:assumption (or (not x1214) x1172) +:assumption (or (not x1214) x882) +:assumption (or (not x1214) x883) +:assumption (or (not x1214) x884) +:assumption (or (not x1214) x883) +:assumption (or x1215 (not x1214)) +:assumption (or x1215 (not x1211)) +:assumption (or x1215 (not x1210)) +:assumption (or x1215 (not x1209)) +:assumption (or x1214 x1211 x1210 x1209 (not x1215)) +:assumption (or (not x71) (not x1172) (not x1173) (not x1174) (not x1175) x1216) +:assumption (or (not x1216) x71) +:assumption (or (not x1216) x1172) +:assumption (or (not x1216) x1173) +:assumption (or (not x1216) x1174) +:assumption (or (not x1216) x1175) +:assumption (or (not x75) (not x1173) (not x1172) (not x882) (not x1177) x1217) +:assumption (or (not x1217) x75) +:assumption (or (not x1217) x1173) +:assumption (or (not x1217) x1172) +:assumption (or (not x1217) x882) +:assumption (or (not x1217) x1177) +:assumption (or (not x72) (not x1173) (not x1172) (not x1179) (not x1180) (not x1181) (not x1182) (not x882) x1218) +:assumption (or (not x1218) x72) +:assumption (or (not x1218) x1173) +:assumption (or (not x1218) x1172) +:assumption (or (not x1218) x1179) +:assumption (or (not x1218) x1180) +:assumption (or (not x1218) x1181) +:assumption (or (not x1218) x1182) +:assumption (or (not x1218) x882) +:assumption (or (not x72) (not x1219) (not x1172) (not x882) (not x883) (not x884) (not x883) x1220) +:assumption (or (not x1220) x72) +:assumption (or (not x1220) x1219) +:assumption (or (not x1220) x1172) +:assumption (or (not x1220) x882) +:assumption (or (not x1220) x883) +:assumption (or (not x1220) x884) +:assumption (or (not x1220) x883) +:assumption (or x1221 (not x1220)) +:assumption (or x1221 (not x1218)) +:assumption (or x1221 (not x1217)) +:assumption (or x1221 (not x1216)) +:assumption (or x1220 x1218 x1217 x1216 (not x1221)) +:assumption (or (not x70) (not x1172) (not x1173) (not x1174) (not x1175) x1222) +:assumption (or (not x1222) x70) +:assumption (or (not x1222) x1172) +:assumption (or (not x1222) x1173) +:assumption (or (not x1222) x1174) +:assumption (or (not x1222) x1175) +:assumption (or (not x74) (not x1173) (not x1172) (not x882) (not x1177) x1223) +:assumption (or (not x1223) x74) +:assumption (or (not x1223) x1173) +:assumption (or (not x1223) x1172) +:assumption (or (not x1223) x882) +:assumption (or (not x1223) x1177) +:assumption (or (not x71) (not x1173) (not x1172) (not x1179) (not x1180) (not x1181) (not x1182) (not x882) x1224) +:assumption (or (not x1224) x71) +:assumption (or (not x1224) x1173) +:assumption (or (not x1224) x1172) +:assumption (or (not x1224) x1179) +:assumption (or (not x1224) x1180) +:assumption (or (not x1224) x1181) +:assumption (or (not x1224) x1182) +:assumption (or (not x1224) x882) +:assumption (or (not x1225) (not x1226) (not x1172) (not x882) (not x883) (not x884) (not x883) x1227) +:assumption (or (not x1227) x1225) +:assumption (or (not x1227) x1226) +:assumption (or (not x1227) x1172) +:assumption (or (not x1227) x882) +:assumption (or (not x1227) x883) +:assumption (or (not x1227) x884) +:assumption (or (not x1227) x883) +:assumption (or x1228 (not x1227)) +:assumption (or x1228 (not x1224)) +:assumption (or x1228 (not x1223)) +:assumption (or x1228 (not x1222)) +:assumption (or x1227 x1224 x1223 x1222 (not x1228)) +:assumption (or (not x69) (not x1172) (not x1173) (not x1174) (not x1175) x1229) +:assumption (or (not x1229) x69) +:assumption (or (not x1229) x1172) +:assumption (or (not x1229) x1173) +:assumption (or (not x1229) x1174) +:assumption (or (not x1229) x1175) +:assumption (or (not x73) (not x1173) (not x1172) (not x882) (not x1177) x1230) +:assumption (or (not x1230) x73) +:assumption (or (not x1230) x1173) +:assumption (or (not x1230) x1172) +:assumption (or (not x1230) x882) +:assumption (or (not x1230) x1177) +:assumption (or (not x70) (not x1173) (not x1172) (not x1179) (not x1180) (not x1181) (not x1182) (not x882) x1231) +:assumption (or (not x1231) x70) +:assumption (or (not x1231) x1173) +:assumption (or (not x1231) x1172) +:assumption (or (not x1231) x1179) +:assumption (or (not x1231) x1180) +:assumption (or (not x1231) x1181) +:assumption (or (not x1231) x1182) +:assumption (or (not x1231) x882) +:assumption (or (not x1232) (not x1233) (not x1172) (not x882) (not x883) (not x884) (not x883) x1234) +:assumption (or (not x1234) x1232) +:assumption (or (not x1234) x1233) +:assumption (or (not x1234) x1172) +:assumption (or (not x1234) x882) +:assumption (or (not x1234) x883) +:assumption (or (not x1234) x884) +:assumption (or (not x1234) x883) +:assumption (or x1235 (not x1234)) +:assumption (or x1235 (not x1231)) +:assumption (or x1235 (not x1230)) +:assumption (or x1235 (not x1229)) +:assumption (or x1234 x1231 x1230 x1229 (not x1235)) +:assumption (or (not x68) (not x1172) (not x1173) (not x1174) (not x1175) x1236) +:assumption (or (not x1236) x68) +:assumption (or (not x1236) x1172) +:assumption (or (not x1236) x1173) +:assumption (or (not x1236) x1174) +:assumption (or (not x1236) x1175) +:assumption (or (not x72) (not x1173) (not x1172) (not x882) (not x1177) x1237) +:assumption (or (not x1237) x72) +:assumption (or (not x1237) x1173) +:assumption (or (not x1237) x1172) +:assumption (or (not x1237) x882) +:assumption (or (not x1237) x1177) +:assumption (or (not x69) (not x1173) (not x1172) (not x1179) (not x1180) (not x1181) (not x1182) (not x882) x1238) +:assumption (or (not x1238) x69) +:assumption (or (not x1238) x1173) +:assumption (or (not x1238) x1172) +:assumption (or (not x1238) x1179) +:assumption (or (not x1238) x1180) +:assumption (or (not x1238) x1181) +:assumption (or (not x1238) x1182) +:assumption (or (not x1238) x882) +:assumption (or (not x1239) (not x1240) (not x1172) (not x882) (not x883) (not x884) (not x883) x1241) +:assumption (or (not x1241) x1239) +:assumption (or (not x1241) x1240) +:assumption (or (not x1241) x1172) +:assumption (or (not x1241) x882) +:assumption (or (not x1241) x883) +:assumption (or (not x1241) x884) +:assumption (or (not x1241) x883) +:assumption (or x1242 (not x1241)) +:assumption (or x1242 (not x1238)) +:assumption (or x1242 (not x1237)) +:assumption (or x1242 (not x1236)) +:assumption (or x1241 x1238 x1237 x1236 (not x1242)) +:assumption (or (not x67) (not x1172) (not x1173) (not x1174) (not x1175) x1243) +:assumption (or (not x1243) x67) +:assumption (or (not x1243) x1172) +:assumption (or (not x1243) x1173) +:assumption (or (not x1243) x1174) +:assumption (or (not x1243) x1175) +:assumption (or (not x71) (not x1173) (not x1172) (not x882) (not x1177) x1244) +:assumption (or (not x1244) x71) +:assumption (or (not x1244) x1173) +:assumption (or (not x1244) x1172) +:assumption (or (not x1244) x882) +:assumption (or (not x1244) x1177) +:assumption (or (not x68) (not x1173) (not x1172) (not x1179) (not x1180) (not x1181) (not x1182) (not x882) x1245) +:assumption (or (not x1245) x68) +:assumption (or (not x1245) x1173) +:assumption (or (not x1245) x1172) +:assumption (or (not x1245) x1179) +:assumption (or (not x1245) x1180) +:assumption (or (not x1245) x1181) +:assumption (or (not x1245) x1182) +:assumption (or (not x1245) x882) +:assumption (or (not x68) (not x1246) (not x1172) (not x882) (not x883) (not x884) (not x883) x1247) +:assumption (or (not x1247) x68) +:assumption (or (not x1247) x1246) +:assumption (or (not x1247) x1172) +:assumption (or (not x1247) x882) +:assumption (or (not x1247) x883) +:assumption (or (not x1247) x884) +:assumption (or (not x1247) x883) +:assumption (or x1248 (not x1247)) +:assumption (or x1248 (not x1245)) +:assumption (or x1248 (not x1244)) +:assumption (or x1248 (not x1243)) +:assumption (or x1247 x1245 x1244 x1243 (not x1248)) +:assumption (or (not x66) (not x1172) (not x1173) (not x1174) (not x1175) x1249) +:assumption (or (not x1249) x66) +:assumption (or (not x1249) x1172) +:assumption (or (not x1249) x1173) +:assumption (or (not x1249) x1174) +:assumption (or (not x1249) x1175) +:assumption (or (not x70) (not x1173) (not x1172) (not x882) (not x1177) x1250) +:assumption (or (not x1250) x70) +:assumption (or (not x1250) x1173) +:assumption (or (not x1250) x1172) +:assumption (or (not x1250) x882) +:assumption (or (not x1250) x1177) +:assumption (or (not x67) (not x1173) (not x1172) (not x1179) (not x1180) (not x1181) (not x1182) (not x882) x1251) +:assumption (or (not x1251) x67) +:assumption (or (not x1251) x1173) +:assumption (or (not x1251) x1172) +:assumption (or (not x1251) x1179) +:assumption (or (not x1251) x1180) +:assumption (or (not x1251) x1181) +:assumption (or (not x1251) x1182) +:assumption (or (not x1251) x882) +:assumption (or (not x1252) (not x1253) (not x1172) (not x882) (not x883) (not x884) (not x883) x1254) +:assumption (or (not x1254) x1252) +:assumption (or (not x1254) x1253) +:assumption (or (not x1254) x1172) +:assumption (or (not x1254) x882) +:assumption (or (not x1254) x883) +:assumption (or (not x1254) x884) +:assumption (or (not x1254) x883) +:assumption (or x1255 (not x1254)) +:assumption (or x1255 (not x1251)) +:assumption (or x1255 (not x1250)) +:assumption (or x1255 (not x1249)) +:assumption (or x1254 x1251 x1250 x1249 (not x1255)) +:assumption (or (not x65) (not x1172) (not x1173) (not x1174) (not x1175) x1256) +:assumption (or (not x1256) x65) +:assumption (or (not x1256) x1172) +:assumption (or (not x1256) x1173) +:assumption (or (not x1256) x1174) +:assumption (or (not x1256) x1175) +:assumption (or (not x69) (not x1173) (not x1172) (not x882) (not x1177) x1257) +:assumption (or (not x1257) x69) +:assumption (or (not x1257) x1173) +:assumption (or (not x1257) x1172) +:assumption (or (not x1257) x882) +:assumption (or (not x1257) x1177) +:assumption (or (not x66) (not x1173) (not x1172) (not x1179) (not x1180) (not x1181) (not x1182) (not x882) x1258) +:assumption (or (not x1258) x66) +:assumption (or (not x1258) x1173) +:assumption (or (not x1258) x1172) +:assumption (or (not x1258) x1179) +:assumption (or (not x1258) x1180) +:assumption (or (not x1258) x1181) +:assumption (or (not x1258) x1182) +:assumption (or (not x1258) x882) +:assumption (or (not x1259) (not x1260) (not x1172) (not x882) (not x883) (not x884) (not x883) x1261) +:assumption (or (not x1261) x1259) +:assumption (or (not x1261) x1260) +:assumption (or (not x1261) x1172) +:assumption (or (not x1261) x882) +:assumption (or (not x1261) x883) +:assumption (or (not x1261) x884) +:assumption (or (not x1261) x883) +:assumption (or x1262 (not x1261)) +:assumption (or x1262 (not x1258)) +:assumption (or x1262 (not x1257)) +:assumption (or x1262 (not x1256)) +:assumption (or x1261 x1258 x1257 x1256 (not x1262)) +:assumption (or (not x64) (not x1172) (not x1173) (not x1174) (not x1175) x1263) +:assumption (or (not x1263) x64) +:assumption (or (not x1263) x1172) +:assumption (or (not x1263) x1173) +:assumption (or (not x1263) x1174) +:assumption (or (not x1263) x1175) +:assumption (or (not x68) (not x1173) (not x1172) (not x882) (not x1177) x1264) +:assumption (or (not x1264) x68) +:assumption (or (not x1264) x1173) +:assumption (or (not x1264) x1172) +:assumption (or (not x1264) x882) +:assumption (or (not x1264) x1177) +:assumption (or (not x65) (not x1173) (not x1172) (not x1179) (not x1180) (not x1181) (not x1182) (not x882) x1265) +:assumption (or (not x1265) x65) +:assumption (or (not x1265) x1173) +:assumption (or (not x1265) x1172) +:assumption (or (not x1265) x1179) +:assumption (or (not x1265) x1180) +:assumption (or (not x1265) x1181) +:assumption (or (not x1265) x1182) +:assumption (or (not x1265) x882) +:assumption (or (not x1266) (not x1267) (not x1172) (not x882) (not x883) (not x884) (not x883) x1268) +:assumption (or (not x1268) x1266) +:assumption (or (not x1268) x1267) +:assumption (or (not x1268) x1172) +:assumption (or (not x1268) x882) +:assumption (or (not x1268) x883) +:assumption (or (not x1268) x884) +:assumption (or (not x1268) x883) +:assumption (or x1269 (not x1268)) +:assumption (or x1269 (not x1265)) +:assumption (or x1269 (not x1264)) +:assumption (or x1269 (not x1263)) +:assumption (or x1268 x1265 x1264 x1263 (not x1269)) +:assumption (or (not x63) (not x1172) (not x1173) (not x1174) (not x1175) x1270) +:assumption (or (not x1270) x63) +:assumption (or (not x1270) x1172) +:assumption (or (not x1270) x1173) +:assumption (or (not x1270) x1174) +:assumption (or (not x1270) x1175) +:assumption (or (not x67) (not x1173) (not x1172) (not x882) (not x1177) x1271) +:assumption (or (not x1271) x67) +:assumption (or (not x1271) x1173) +:assumption (or (not x1271) x1172) +:assumption (or (not x1271) x882) +:assumption (or (not x1271) x1177) +:assumption (or (not x64) (not x1173) (not x1172) (not x1179) (not x1180) (not x1181) (not x1182) (not x882) x1272) +:assumption (or (not x1272) x64) +:assumption (or (not x1272) x1173) +:assumption (or (not x1272) x1172) +:assumption (or (not x1272) x1179) +:assumption (or (not x1272) x1180) +:assumption (or (not x1272) x1181) +:assumption (or (not x1272) x1182) +:assumption (or (not x1272) x882) +:assumption (or (not x64) (not x1273) (not x1172) (not x882) (not x883) (not x884) (not x883) x1274) +:assumption (or (not x1274) x64) +:assumption (or (not x1274) x1273) +:assumption (or (not x1274) x1172) +:assumption (or (not x1274) x882) +:assumption (or (not x1274) x883) +:assumption (or (not x1274) x884) +:assumption (or (not x1274) x883) +:assumption (or x1275 (not x1274)) +:assumption (or x1275 (not x1272)) +:assumption (or x1275 (not x1271)) +:assumption (or x1275 (not x1270)) +:assumption (or x1274 x1272 x1271 x1270 (not x1275)) +:assumption (or (not x62) (not x1172) (not x1173) (not x1174) (not x1175) x1276) +:assumption (or (not x1276) x62) +:assumption (or (not x1276) x1172) +:assumption (or (not x1276) x1173) +:assumption (or (not x1276) x1174) +:assumption (or (not x1276) x1175) +:assumption (or (not x66) (not x1173) (not x1172) (not x882) (not x1177) x1277) +:assumption (or (not x1277) x66) +:assumption (or (not x1277) x1173) +:assumption (or (not x1277) x1172) +:assumption (or (not x1277) x882) +:assumption (or (not x1277) x1177) +:assumption (or (not x63) (not x1173) (not x1172) (not x1179) (not x1180) (not x1181) (not x1182) (not x882) x1278) +:assumption (or (not x1278) x63) +:assumption (or (not x1278) x1173) +:assumption (or (not x1278) x1172) +:assumption (or (not x1278) x1179) +:assumption (or (not x1278) x1180) +:assumption (or (not x1278) x1181) +:assumption (or (not x1278) x1182) +:assumption (or (not x1278) x882) +:assumption (or (not x1279) (not x1280) (not x1172) (not x882) (not x883) (not x884) (not x883) x1281) +:assumption (or (not x1281) x1279) +:assumption (or (not x1281) x1280) +:assumption (or (not x1281) x1172) +:assumption (or (not x1281) x882) +:assumption (or (not x1281) x883) +:assumption (or (not x1281) x884) +:assumption (or (not x1281) x883) +:assumption (or x1282 (not x1281)) +:assumption (or x1282 (not x1278)) +:assumption (or x1282 (not x1277)) +:assumption (or x1282 (not x1276)) +:assumption (or x1281 x1278 x1277 x1276 (not x1282)) +:assumption (or x1175 (not x1283)) +:assumption (or x1175 (not x1188)) +:assumption (or x1175 (not x1284)) +:assumption (or x1175 (not x1285)) +:assumption (or x1175 (not x1286)) +:assumption (or x1175 (not x1287)) +:assumption (or x1175 x882) +:assumption (or x1283 x1188 x1284 x1285 x1286 x1287 (not x882) (not x1175)) +:assumption (or x76 x75 x74 x73 x72 x71 x70 x69 x68 x67 x66 x65 x64 x63 x62 x61 x1188) +:assumption (or (not x1188) (not x76)) +:assumption (or (not x1188) (not x75)) +:assumption (or (not x1188) (not x74)) +:assumption (or (not x1188) (not x73)) +:assumption (or (not x1188) (not x72)) +:assumption (or (not x1188) (not x71)) +:assumption (or (not x1188) (not x70)) +:assumption (or (not x1188) (not x69)) +:assumption (or (not x1188) (not x68)) +:assumption (or (not x1188) (not x67)) +:assumption (or (not x1188) (not x66)) +:assumption (or (not x1188) (not x65)) +:assumption (or (not x1188) (not x64)) +:assumption (or (not x1188) (not x63)) +:assumption (or (not x1188) (not x62)) +:assumption (or (not x1188) (not x61)) +:assumption (or x1174 (not x1283)) +:assumption (or x1174 (not x1188)) +:assumption (or x1174 x882) +:assumption (or x1174 (not x1288)) +:assumption (or x1283 x1188 (not x882) x1288 (not x1174)) +:assumption (or (not x61) (not x1172) (not x1173) (not x1174) (not x1175) x1289) +:assumption (or (not x1289) x61) +:assumption (or (not x1289) x1172) +:assumption (or (not x1289) x1173) +:assumption (or (not x1289) x1174) +:assumption (or (not x1289) x1175) +:assumption (or x1290 (not x62) x1291) +:assumption (or (not x1291) (not x1290)) +:assumption (or (not x1291) x62) +:assumption (or x1280 x1290 (not x63) x1292) +:assumption (or (not x1292) (not x1280)) +:assumption (or (not x1292) (not x1290)) +:assumption (or (not x1292) x63) +:assumption (or x1273 x1280 x1290 (not x64) x1293) +:assumption (or (not x1293) (not x1273)) +:assumption (or (not x1293) (not x1280)) +:assumption (or (not x1293) (not x1290)) +:assumption (or (not x1293) x64) +:assumption (or x1184 (not x61)) +:assumption (or x1184 (not x1293)) +:assumption (or x1184 (not x1292)) +:assumption (or x1184 (not x1291)) +:assumption (or x61 x1293 x1292 x1291 (not x1184)) +:assumption (or (not x1184) (not x1185) (not x882) (not x883) (not x884) (not x883) x1294) +:assumption (or (not x1294) x1184) +:assumption (or (not x1294) x1185) +:assumption (or (not x1294) x882) +:assumption (or (not x1294) x883) +:assumption (or (not x1294) x884) +:assumption (or (not x1294) x883) +:assumption (or x1295 (not x1294)) +:assumption (or x1295 x1185) +:assumption (or x1294 (not x1185) (not x1295)) +:assumption (or (not x1296) (not x1290) (not x882) (not x883) (not x884) (not x883) x1297) +:assumption (or (not x1297) x1296) +:assumption (or (not x1297) x1290) +:assumption (or (not x1297) x882) +:assumption (or (not x1297) x883) +:assumption (or (not x1297) x884) +:assumption (or (not x1297) x883) +:assumption (or x1298 (not x1297)) +:assumption (or x1298 x1290) +:assumption (or x1297 (not x1290) (not x1298)) +:assumption (or x1273 (not x64) x1299) +:assumption (or (not x1299) (not x1273)) +:assumption (or (not x1299) x64) +:assumption (or x1279 (not x63)) +:assumption (or x1279 (not x1299)) +:assumption (or x63 x1299 (not x1279)) +:assumption (or (not x1279) (not x1280) (not x882) (not x883) (not x884) (not x883) x1300) +:assumption (or (not x1300) x1279) +:assumption (or (not x1300) x1280) +:assumption (or (not x1300) x882) +:assumption (or (not x1300) x883) +:assumption (or (not x1300) x884) +:assumption (or (not x1300) x883) +:assumption (or x1301 (not x1300)) +:assumption (or x1301 x1280) +:assumption (or x1300 (not x1280) (not x1301)) +:assumption (or (not x64) (not x1273) (not x882) (not x883) (not x884) (not x883) x1302) +:assumption (or (not x1302) x64) +:assumption (or (not x1302) x1273) +:assumption (or (not x1302) x882) +:assumption (or (not x1302) x883) +:assumption (or (not x1302) x884) +:assumption (or (not x1302) x883) +:assumption (or x1303 (not x1302)) +:assumption (or x1303 x1273) +:assumption (or x1302 (not x1273) (not x1303)) +:assumption (or (not x1303) (not x1301) (not x1298) (not x1295) (not x64) x1287) +:assumption (or (not x1287) x1303) +:assumption (or (not x1287) x1301) +:assumption (or (not x1287) x1298) +:assumption (or (not x1287) x1295) +:assumption (or (not x1287) x64) +:assumption (or x1260 (not x66) x1304) +:assumption (or (not x1304) (not x1260)) +:assumption (or (not x1304) x66) +:assumption (or x1253 x1260 (not x67) x1305) +:assumption (or (not x1305) (not x1253)) +:assumption (or (not x1305) (not x1260)) +:assumption (or (not x1305) x67) +:assumption (or x1246 x1253 x1260 (not x68) x1306) +:assumption (or (not x1306) (not x1246)) +:assumption (or (not x1306) (not x1253)) +:assumption (or (not x1306) (not x1260)) +:assumption (or (not x1306) x68) +:assumption (or x1266 (not x65)) +:assumption (or x1266 (not x1306)) +:assumption (or x1266 (not x1305)) +:assumption (or x1266 (not x1304)) +:assumption (or x65 x1306 x1305 x1304 (not x1266)) +:assumption (or (not x1266) (not x1267) (not x882) (not x883) (not x884) (not x883) x1307) +:assumption (or (not x1307) x1266) +:assumption (or (not x1307) x1267) +:assumption (or (not x1307) x882) +:assumption (or (not x1307) x883) +:assumption (or (not x1307) x884) +:assumption (or (not x1307) x883) +:assumption (or x1308 (not x1307)) +:assumption (or x1308 x1267) +:assumption (or x1307 (not x1267) (not x1308)) +:assumption (or x1253 (not x67) x1309) +:assumption (or (not x1309) (not x1253)) +:assumption (or (not x1309) x67) +:assumption (or x1246 x1253 (not x68) x1310) +:assumption (or (not x1310) (not x1246)) +:assumption (or (not x1310) (not x1253)) +:assumption (or (not x1310) x68) +:assumption (or x1259 (not x66)) +:assumption (or x1259 (not x1310)) +:assumption (or x1259 (not x1309)) +:assumption (or x66 x1310 x1309 (not x1259)) +:assumption (or (not x1259) (not x1260) (not x882) (not x883) (not x884) (not x883) x1311) +:assumption (or (not x1311) x1259) +:assumption (or (not x1311) x1260) +:assumption (or (not x1311) x882) +:assumption (or (not x1311) x883) +:assumption (or (not x1311) x884) +:assumption (or (not x1311) x883) +:assumption (or x1312 (not x1311)) +:assumption (or x1312 x1260) +:assumption (or x1311 (not x1260) (not x1312)) +:assumption (or x1246 (not x68) x1313) +:assumption (or (not x1313) (not x1246)) +:assumption (or (not x1313) x68) +:assumption (or x1252 (not x67)) +:assumption (or x1252 (not x1313)) +:assumption (or x67 x1313 (not x1252)) +:assumption (or (not x1252) (not x1253) (not x882) (not x883) (not x884) (not x883) x1314) +:assumption (or (not x1314) x1252) +:assumption (or (not x1314) x1253) +:assumption (or (not x1314) x882) +:assumption (or (not x1314) x883) +:assumption (or (not x1314) x884) +:assumption (or (not x1314) x883) +:assumption (or x1315 (not x1314)) +:assumption (or x1315 x1253) +:assumption (or x1314 (not x1253) (not x1315)) +:assumption (or (not x68) (not x1246) (not x882) (not x883) (not x884) (not x883) x1316) +:assumption (or (not x1316) x68) +:assumption (or (not x1316) x1246) +:assumption (or (not x1316) x882) +:assumption (or (not x1316) x883) +:assumption (or (not x1316) x884) +:assumption (or (not x1316) x883) +:assumption (or x1317 (not x1316)) +:assumption (or x1317 x1246) +:assumption (or x1316 (not x1246) (not x1317)) +:assumption (or (not x1317) (not x1315) (not x1312) (not x1308) (not x68) x1286) +:assumption (or (not x1286) x1317) +:assumption (or (not x1286) x1315) +:assumption (or (not x1286) x1312) +:assumption (or (not x1286) x1308) +:assumption (or (not x1286) x68) +:assumption (or x1233 (not x70) x1318) +:assumption (or (not x1318) (not x1233)) +:assumption (or (not x1318) x70) +:assumption (or x1226 x1233 (not x71) x1319) +:assumption (or (not x1319) (not x1226)) +:assumption (or (not x1319) (not x1233)) +:assumption (or (not x1319) x71) +:assumption (or x1219 x1226 x1233 (not x72) x1320) +:assumption (or (not x1320) (not x1219)) +:assumption (or (not x1320) (not x1226)) +:assumption (or (not x1320) (not x1233)) +:assumption (or (not x1320) x72) +:assumption (or x1239 (not x69)) +:assumption (or x1239 (not x1320)) +:assumption (or x1239 (not x1319)) +:assumption (or x1239 (not x1318)) +:assumption (or x69 x1320 x1319 x1318 (not x1239)) +:assumption (or (not x1239) (not x1240) (not x882) (not x883) (not x884) (not x883) x1321) +:assumption (or (not x1321) x1239) +:assumption (or (not x1321) x1240) +:assumption (or (not x1321) x882) +:assumption (or (not x1321) x883) +:assumption (or (not x1321) x884) +:assumption (or (not x1321) x883) +:assumption (or x1322 (not x1321)) +:assumption (or x1322 x1240) +:assumption (or x1321 (not x1240) (not x1322)) +:assumption (or x1226 (not x71) x1323) +:assumption (or (not x1323) (not x1226)) +:assumption (or (not x1323) x71) +:assumption (or x1219 x1226 (not x72) x1324) +:assumption (or (not x1324) (not x1219)) +:assumption (or (not x1324) (not x1226)) +:assumption (or (not x1324) x72) +:assumption (or x1232 (not x70)) +:assumption (or x1232 (not x1324)) +:assumption (or x1232 (not x1323)) +:assumption (or x70 x1324 x1323 (not x1232)) +:assumption (or (not x1232) (not x1233) (not x882) (not x883) (not x884) (not x883) x1325) +:assumption (or (not x1325) x1232) +:assumption (or (not x1325) x1233) +:assumption (or (not x1325) x882) +:assumption (or (not x1325) x883) +:assumption (or (not x1325) x884) +:assumption (or (not x1325) x883) +:assumption (or x1326 (not x1325)) +:assumption (or x1326 x1233) +:assumption (or x1325 (not x1233) (not x1326)) +:assumption (or x1219 (not x72) x1327) +:assumption (or (not x1327) (not x1219)) +:assumption (or (not x1327) x72) +:assumption (or x1225 (not x71)) +:assumption (or x1225 (not x1327)) +:assumption (or x71 x1327 (not x1225)) +:assumption (or (not x1225) (not x1226) (not x882) (not x883) (not x884) (not x883) x1328) +:assumption (or (not x1328) x1225) +:assumption (or (not x1328) x1226) +:assumption (or (not x1328) x882) +:assumption (or (not x1328) x883) +:assumption (or (not x1328) x884) +:assumption (or (not x1328) x883) +:assumption (or x1329 (not x1328)) +:assumption (or x1329 x1226) +:assumption (or x1328 (not x1226) (not x1329)) +:assumption (or (not x72) (not x1219) (not x882) (not x883) (not x884) (not x883) x1330) +:assumption (or (not x1330) x72) +:assumption (or (not x1330) x1219) +:assumption (or (not x1330) x882) +:assumption (or (not x1330) x883) +:assumption (or (not x1330) x884) +:assumption (or (not x1330) x883) +:assumption (or x1331 (not x1330)) +:assumption (or x1331 x1219) +:assumption (or x1330 (not x1219) (not x1331)) +:assumption (or (not x1331) (not x1329) (not x1326) (not x1322) (not x72) x1285) +:assumption (or (not x1285) x1331) +:assumption (or (not x1285) x1329) +:assumption (or (not x1285) x1326) +:assumption (or (not x1285) x1322) +:assumption (or (not x1285) x72) +:assumption (or x1206 (not x74) x1332) +:assumption (or (not x1332) (not x1206)) +:assumption (or (not x1332) x74) +:assumption (or x1199 x1206 (not x75) x1333) +:assumption (or (not x1333) (not x1199)) +:assumption (or (not x1333) (not x1206)) +:assumption (or (not x1333) x75) +:assumption (or x1192 x1199 x1206 (not x76) x1334) +:assumption (or (not x1334) (not x1192)) +:assumption (or (not x1334) (not x1199)) +:assumption (or (not x1334) (not x1206)) +:assumption (or (not x1334) x76) +:assumption (or x1212 (not x73)) +:assumption (or x1212 (not x1334)) +:assumption (or x1212 (not x1333)) +:assumption (or x1212 (not x1332)) +:assumption (or x73 x1334 x1333 x1332 (not x1212)) +:assumption (or (not x1212) (not x1213) (not x882) (not x883) (not x884) (not x883) x1335) +:assumption (or (not x1335) x1212) +:assumption (or (not x1335) x1213) +:assumption (or (not x1335) x882) +:assumption (or (not x1335) x883) +:assumption (or (not x1335) x884) +:assumption (or (not x1335) x883) +:assumption (or x1336 (not x1335)) +:assumption (or x1336 x1213) +:assumption (or x1335 (not x1213) (not x1336)) +:assumption (or x1199 (not x75) x1337) +:assumption (or (not x1337) (not x1199)) +:assumption (or (not x1337) x75) +:assumption (or x1192 x1199 (not x76) x1338) +:assumption (or (not x1338) (not x1192)) +:assumption (or (not x1338) (not x1199)) +:assumption (or (not x1338) x76) +:assumption (or x1205 (not x74)) +:assumption (or x1205 (not x1338)) +:assumption (or x1205 (not x1337)) +:assumption (or x74 x1338 x1337 (not x1205)) +:assumption (or (not x1205) (not x1206) (not x882) (not x883) (not x884) (not x883) x1339) +:assumption (or (not x1339) x1205) +:assumption (or (not x1339) x1206) +:assumption (or (not x1339) x882) +:assumption (or (not x1339) x883) +:assumption (or (not x1339) x884) +:assumption (or (not x1339) x883) +:assumption (or x1340 (not x1339)) +:assumption (or x1340 x1206) +:assumption (or x1339 (not x1206) (not x1340)) +:assumption (or x1192 (not x76) x1341) +:assumption (or (not x1341) (not x1192)) +:assumption (or (not x1341) x76) +:assumption (or x1198 (not x75)) +:assumption (or x1198 (not x1341)) +:assumption (or x75 x1341 (not x1198)) +:assumption (or (not x1198) (not x1199) (not x882) (not x883) (not x884) (not x883) x1342) +:assumption (or (not x1342) x1198) +:assumption (or (not x1342) x1199) +:assumption (or (not x1342) x882) +:assumption (or (not x1342) x883) +:assumption (or (not x1342) x884) +:assumption (or (not x1342) x883) +:assumption (or x1343 (not x1342)) +:assumption (or x1343 x1199) +:assumption (or x1342 (not x1199) (not x1343)) +:assumption (or (not x76) (not x1192) (not x882) (not x883) (not x884) (not x883) x1344) +:assumption (or (not x1344) x76) +:assumption (or (not x1344) x1192) +:assumption (or (not x1344) x882) +:assumption (or (not x1344) x883) +:assumption (or (not x1344) x884) +:assumption (or (not x1344) x883) +:assumption (or x1345 (not x1344)) +:assumption (or x1345 x1192) +:assumption (or x1344 (not x1192) (not x1345)) +:assumption (or (not x1345) (not x1343) (not x1340) (not x1336) (not x76) x1284) +:assumption (or (not x1284) x1345) +:assumption (or (not x1284) x1343) +:assumption (or (not x1284) x1340) +:assumption (or (not x1284) x1336) +:assumption (or (not x1284) x76) +:assumption (or x1177 (not x1284)) +:assumption (or x1177 (not x1285)) +:assumption (or x1177 (not x1286)) +:assumption (or x1177 (not x1287)) +:assumption (or x1284 x1285 x1286 x1287 (not x1177)) +:assumption (or (not x65) (not x1173) (not x1172) (not x882) (not x1177) x1346) +:assumption (or (not x1346) x65) +:assumption (or (not x1346) x1173) +:assumption (or (not x1346) x1172) +:assumption (or (not x1346) x882) +:assumption (or (not x1346) x1177) +:assumption (or x1347 (not x1290)) +:assumption (or x1347 x62) +:assumption (or x1290 (not x62) (not x1347)) +:assumption (or x1348 (not x1280)) +:assumption (or x1348 (not x1290)) +:assumption (or x1348 x63) +:assumption (or x1280 x1290 (not x63) (not x1348)) +:assumption (or x1349 (not x1273)) +:assumption (or x1349 (not x1280)) +:assumption (or x1349 (not x1290)) +:assumption (or x1349 x64) +:assumption (or x1273 x1280 x1290 (not x64) (not x1349)) +:assumption (or x61 (not x1349) (not x1348) (not x1347) x1350) +:assumption (or (not x1350) (not x61)) +:assumption (or (not x1350) x1349) +:assumption (or (not x1350) x1348) +:assumption (or (not x1350) x1347) +:assumption (or x1351 (not x1350)) +:assumption (or x1351 x1185) +:assumption (or x1351 x882) +:assumption (or x1351 (not x1352)) +:assumption (or x1351 (not x1353)) +:assumption (or x1351 (not x1352)) +:assumption (or x1350 (not x1185) (not x882) x1352 x1353 x1352 (not x1351)) +:assumption (or (not x1351) (not x1185) x1141) +:assumption (or (not x1141) x1351) +:assumption (or (not x1141) x1185) +:assumption (or x1354 (not x1280)) +:assumption (or x1354 x63) +:assumption (or x1280 (not x63) (not x1354)) +:assumption (or x1355 (not x1273)) +:assumption (or x1355 (not x1280)) +:assumption (or x1355 x64) +:assumption (or x1273 x1280 (not x64) (not x1355)) +:assumption (or x62 (not x1355) (not x1354) x1356) +:assumption (or (not x1356) (not x62)) +:assumption (or (not x1356) x1355) +:assumption (or (not x1356) x1354) +:assumption (or x1357 (not x1356)) +:assumption (or x1357 x1290) +:assumption (or x1357 x882) +:assumption (or x1357 (not x1352)) +:assumption (or x1357 (not x1353)) +:assumption (or x1357 (not x1352)) +:assumption (or x1356 (not x1290) (not x882) x1352 x1353 x1352 (not x1357)) +:assumption (or (not x1357) (not x1290) x1171) +:assumption (or (not x1171) x1357) +:assumption (or (not x1171) x1290) +:assumption (or x1358 (not x1273)) +:assumption (or x1358 x64) +:assumption (or x1273 (not x64) (not x1358)) +:assumption (or x63 (not x1358) x1359) +:assumption (or (not x1359) (not x63)) +:assumption (or (not x1359) x1358) +:assumption (or x1360 (not x1359)) +:assumption (or x1360 x1280) +:assumption (or x1360 x882) +:assumption (or x1360 (not x1352)) +:assumption (or x1360 (not x1353)) +:assumption (or x1360 (not x1352)) +:assumption (or x1359 (not x1280) (not x882) x1352 x1353 x1352 (not x1360)) +:assumption (or (not x1360) (not x1280) x1169) +:assumption (or (not x1169) x1360) +:assumption (or (not x1169) x1280) +:assumption (or x1361 x64) +:assumption (or x1361 x1273) +:assumption (or x1361 x882) +:assumption (or x1361 (not x1352)) +:assumption (or x1361 (not x1353)) +:assumption (or x1361 (not x1352)) +:assumption (or (not x64) (not x1273) (not x882) x1352 x1353 x1352 (not x1361)) +:assumption (or (not x1361) (not x1273) x1167) +:assumption (or (not x1167) x1361) +:assumption (or (not x1167) x1273) +:assumption (or x1182 (not x1167)) +:assumption (or x1182 (not x1169)) +:assumption (or x1182 (not x1171)) +:assumption (or x1182 (not x1141)) +:assumption (or x1182 x64) +:assumption (or x1167 x1169 x1171 x1141 (not x64) (not x1182)) +:assumption (or x1362 (not x1260)) +:assumption (or x1362 x66) +:assumption (or x1260 (not x66) (not x1362)) +:assumption (or x1363 (not x1253)) +:assumption (or x1363 (not x1260)) +:assumption (or x1363 x67) +:assumption (or x1253 x1260 (not x67) (not x1363)) +:assumption (or x1364 (not x1246)) +:assumption (or x1364 (not x1253)) +:assumption (or x1364 (not x1260)) +:assumption (or x1364 x68) +:assumption (or x1246 x1253 x1260 (not x68) (not x1364)) +:assumption (or x65 (not x1364) (not x1363) (not x1362) x1365) +:assumption (or (not x1365) (not x65)) +:assumption (or (not x1365) x1364) +:assumption (or (not x1365) x1363) +:assumption (or (not x1365) x1362) +:assumption (or x1366 (not x1365)) +:assumption (or x1366 x1267) +:assumption (or x1366 x882) +:assumption (or x1366 (not x1352)) +:assumption (or x1366 (not x1353)) +:assumption (or x1366 (not x1352)) +:assumption (or x1365 (not x1267) (not x882) x1352 x1353 x1352 (not x1366)) +:assumption (or (not x1366) (not x1267) x1165) +:assumption (or (not x1165) x1366) +:assumption (or (not x1165) x1267) +:assumption (or x1367 (not x1253)) +:assumption (or x1367 x67) +:assumption (or x1253 (not x67) (not x1367)) +:assumption (or x1368 (not x1246)) +:assumption (or x1368 (not x1253)) +:assumption (or x1368 x68) +:assumption (or x1246 x1253 (not x68) (not x1368)) +:assumption (or x66 (not x1368) (not x1367) x1369) +:assumption (or (not x1369) (not x66)) +:assumption (or (not x1369) x1368) +:assumption (or (not x1369) x1367) +:assumption (or x1370 (not x1369)) +:assumption (or x1370 x1260) +:assumption (or x1370 x882) +:assumption (or x1370 (not x1352)) +:assumption (or x1370 (not x1353)) +:assumption (or x1370 (not x1352)) +:assumption (or x1369 (not x1260) (not x882) x1352 x1353 x1352 (not x1370)) +:assumption (or (not x1370) (not x1260) x1163) +:assumption (or (not x1163) x1370) +:assumption (or (not x1163) x1260) +:assumption (or x1371 (not x1246)) +:assumption (or x1371 x68) +:assumption (or x1246 (not x68) (not x1371)) +:assumption (or x67 (not x1371) x1372) +:assumption (or (not x1372) (not x67)) +:assumption (or (not x1372) x1371) +:assumption (or x1373 (not x1372)) +:assumption (or x1373 x1253) +:assumption (or x1373 x882) +:assumption (or x1373 (not x1352)) +:assumption (or x1373 (not x1353)) +:assumption (or x1373 (not x1352)) +:assumption (or x1372 (not x1253) (not x882) x1352 x1353 x1352 (not x1373)) +:assumption (or (not x1373) (not x1253) x1161) +:assumption (or (not x1161) x1373) +:assumption (or (not x1161) x1253) +:assumption (or x1374 x68) +:assumption (or x1374 x1246) +:assumption (or x1374 x882) +:assumption (or x1374 (not x1352)) +:assumption (or x1374 (not x1353)) +:assumption (or x1374 (not x1352)) +:assumption (or (not x68) (not x1246) (not x882) x1352 x1353 x1352 (not x1374)) +:assumption (or (not x1374) (not x1246) x1159) +:assumption (or (not x1159) x1374) +:assumption (or (not x1159) x1246) +:assumption (or x1181 (not x1159)) +:assumption (or x1181 (not x1161)) +:assumption (or x1181 (not x1163)) +:assumption (or x1181 (not x1165)) +:assumption (or x1181 x68) +:assumption (or x1159 x1161 x1163 x1165 (not x68) (not x1181)) +:assumption (or x1375 (not x1233)) +:assumption (or x1375 x70) +:assumption (or x1233 (not x70) (not x1375)) +:assumption (or x1376 (not x1226)) +:assumption (or x1376 (not x1233)) +:assumption (or x1376 x71) +:assumption (or x1226 x1233 (not x71) (not x1376)) +:assumption (or x1377 (not x1219)) +:assumption (or x1377 (not x1226)) +:assumption (or x1377 (not x1233)) +:assumption (or x1377 x72) +:assumption (or x1219 x1226 x1233 (not x72) (not x1377)) +:assumption (or x69 (not x1377) (not x1376) (not x1375) x1378) +:assumption (or (not x1378) (not x69)) +:assumption (or (not x1378) x1377) +:assumption (or (not x1378) x1376) +:assumption (or (not x1378) x1375) +:assumption (or x1379 (not x1378)) +:assumption (or x1379 x1240) +:assumption (or x1379 x882) +:assumption (or x1379 (not x1352)) +:assumption (or x1379 (not x1353)) +:assumption (or x1379 (not x1352)) +:assumption (or x1378 (not x1240) (not x882) x1352 x1353 x1352 (not x1379)) +:assumption (or (not x1379) (not x1240) x1157) +:assumption (or (not x1157) x1379) +:assumption (or (not x1157) x1240) +:assumption (or x1380 (not x1226)) +:assumption (or x1380 x71) +:assumption (or x1226 (not x71) (not x1380)) +:assumption (or x1381 (not x1219)) +:assumption (or x1381 (not x1226)) +:assumption (or x1381 x72) +:assumption (or x1219 x1226 (not x72) (not x1381)) +:assumption (or x70 (not x1381) (not x1380) x1382) +:assumption (or (not x1382) (not x70)) +:assumption (or (not x1382) x1381) +:assumption (or (not x1382) x1380) +:assumption (or x1383 (not x1382)) +:assumption (or x1383 x1233) +:assumption (or x1383 x882) +:assumption (or x1383 (not x1352)) +:assumption (or x1383 (not x1353)) +:assumption (or x1383 (not x1352)) +:assumption (or x1382 (not x1233) (not x882) x1352 x1353 x1352 (not x1383)) +:assumption (or (not x1383) (not x1233) x1155) +:assumption (or (not x1155) x1383) +:assumption (or (not x1155) x1233) +:assumption (or x1384 (not x1219)) +:assumption (or x1384 x72) +:assumption (or x1219 (not x72) (not x1384)) +:assumption (or x71 (not x1384) x1385) +:assumption (or (not x1385) (not x71)) +:assumption (or (not x1385) x1384) +:assumption (or x1386 (not x1385)) +:assumption (or x1386 x1226) +:assumption (or x1386 x882) +:assumption (or x1386 (not x1352)) +:assumption (or x1386 (not x1353)) +:assumption (or x1386 (not x1352)) +:assumption (or x1385 (not x1226) (not x882) x1352 x1353 x1352 (not x1386)) +:assumption (or (not x1386) (not x1226) x1153) +:assumption (or (not x1153) x1386) +:assumption (or (not x1153) x1226) +:assumption (or x1387 x72) +:assumption (or x1387 x1219) +:assumption (or x1387 x882) +:assumption (or x1387 (not x1352)) +:assumption (or x1387 (not x1353)) +:assumption (or x1387 (not x1352)) +:assumption (or (not x72) (not x1219) (not x882) x1352 x1353 x1352 (not x1387)) +:assumption (or (not x1387) (not x1219) x1151) +:assumption (or (not x1151) x1387) +:assumption (or (not x1151) x1219) +:assumption (or x1180 (not x1151)) +:assumption (or x1180 (not x1153)) +:assumption (or x1180 (not x1155)) +:assumption (or x1180 (not x1157)) +:assumption (or x1180 x72) +:assumption (or x1151 x1153 x1155 x1157 (not x72) (not x1180)) +:assumption (or x1388 (not x1206)) +:assumption (or x1388 x74) +:assumption (or x1206 (not x74) (not x1388)) +:assumption (or x1389 (not x1199)) +:assumption (or x1389 (not x1206)) +:assumption (or x1389 x75) +:assumption (or x1199 x1206 (not x75) (not x1389)) +:assumption (or x1390 (not x1192)) +:assumption (or x1390 (not x1199)) +:assumption (or x1390 (not x1206)) +:assumption (or x1390 x76) +:assumption (or x1192 x1199 x1206 (not x76) (not x1390)) +:assumption (or x73 (not x1390) (not x1389) (not x1388) x1391) +:assumption (or (not x1391) (not x73)) +:assumption (or (not x1391) x1390) +:assumption (or (not x1391) x1389) +:assumption (or (not x1391) x1388) +:assumption (or x1392 (not x1391)) +:assumption (or x1392 x1213) +:assumption (or x1392 x882) +:assumption (or x1392 (not x1352)) +:assumption (or x1392 (not x1353)) +:assumption (or x1392 (not x1352)) +:assumption (or x1391 (not x1213) (not x882) x1352 x1353 x1352 (not x1392)) +:assumption (or (not x1392) (not x1213) x1149) +:assumption (or (not x1149) x1392) +:assumption (or (not x1149) x1213) +:assumption (or x1393 (not x1199)) +:assumption (or x1393 x75) +:assumption (or x1199 (not x75) (not x1393)) +:assumption (or x1394 (not x1192)) +:assumption (or x1394 (not x1199)) +:assumption (or x1394 x76) +:assumption (or x1192 x1199 (not x76) (not x1394)) +:assumption (or x74 (not x1394) (not x1393) x1395) +:assumption (or (not x1395) (not x74)) +:assumption (or (not x1395) x1394) +:assumption (or (not x1395) x1393) +:assumption (or x1396 (not x1395)) +:assumption (or x1396 x1206) +:assumption (or x1396 x882) +:assumption (or x1396 (not x1352)) +:assumption (or x1396 (not x1353)) +:assumption (or x1396 (not x1352)) +:assumption (or x1395 (not x1206) (not x882) x1352 x1353 x1352 (not x1396)) +:assumption (or (not x1396) (not x1206) x1147) +:assumption (or (not x1147) x1396) +:assumption (or (not x1147) x1206) +:assumption (or x1397 (not x1192)) +:assumption (or x1397 x76) +:assumption (or x1192 (not x76) (not x1397)) +:assumption (or x75 (not x1397) x1398) +:assumption (or (not x1398) (not x75)) +:assumption (or (not x1398) x1397) +:assumption (or x1399 (not x1398)) +:assumption (or x1399 x1199) +:assumption (or x1399 x882) +:assumption (or x1399 (not x1352)) +:assumption (or x1399 (not x1353)) +:assumption (or x1399 (not x1352)) +:assumption (or x1398 (not x1199) (not x882) x1352 x1353 x1352 (not x1399)) +:assumption (or (not x1399) (not x1199) x1145) +:assumption (or (not x1145) x1399) +:assumption (or (not x1145) x1199) +:assumption (or x1400 x76) +:assumption (or x1400 x1192) +:assumption (or x1400 x882) +:assumption (or x1400 (not x1352)) +:assumption (or x1400 (not x1353)) +:assumption (or x1400 (not x1352)) +:assumption (or (not x76) (not x1192) (not x882) x1352 x1353 x1352 (not x1400)) +:assumption (or (not x1400) (not x1192) x1143) +:assumption (or (not x1143) x1400) +:assumption (or (not x1143) x1192) +:assumption (or x1179 (not x1143)) +:assumption (or x1179 (not x1145)) +:assumption (or x1179 (not x1147)) +:assumption (or x1179 (not x1149)) +:assumption (or x1179 x76) +:assumption (or x1143 x1145 x1147 x1149 (not x76) (not x1179)) +:assumption (or (not x1179) (not x1180) (not x1181) (not x1182) x1288) +:assumption (or (not x1288) x1179) +:assumption (or (not x1288) x1180) +:assumption (or (not x1288) x1181) +:assumption (or (not x1288) x1182) +:assumption (or x1401 x1113) +:assumption (or x1401 x1109) +:assumption (or x1401 x1105) +:assumption (or x1401 x1103) +:assumption (or (not x1113) (not x1109) (not x1105) (not x1103) (not x1401)) +:assumption (or x874 (not x875) x1121) +:assumption (or (not x1121) (not x874)) +:assumption (or (not x1121) x875) +:assumption (or x849 (not x850) x1126) +:assumption (or (not x1126) (not x849)) +:assumption (or (not x1126) x850) +:assumption (or x860 (not x861) x1131) +:assumption (or (not x1131) (not x860)) +:assumption (or (not x1131) x861) +:assumption (or x867 (not x868) x1136) +:assumption (or (not x1136) (not x867)) +:assumption (or (not x1136) x868) +:assumption (or x853 (not x1136)) +:assumption (or x853 (not x1131)) +:assumption (or x853 (not x1126)) +:assumption (or x853 (not x1121)) +:assumption (or x1136 x1131 x1126 x1121 (not x853)) +:assumption (or (not x853) (not x1401) x1353) +:assumption (or (not x1353) x853) +:assumption (or (not x1353) x1401) +:assumption (or x1273 x1280 x1290 x1185 x1402) +:assumption (or (not x1402) (not x1273)) +:assumption (or (not x1402) (not x1280)) +:assumption (or (not x1402) (not x1290)) +:assumption (or (not x1402) (not x1185)) +:assumption (or x64 x63 x62 x61 x1403) +:assumption (or (not x1403) (not x64)) +:assumption (or (not x1403) (not x63)) +:assumption (or (not x1403) (not x62)) +:assumption (or (not x1403) (not x61)) +:assumption (or x1404 (not x1403)) +:assumption (or x1404 (not x1402)) +:assumption (or x1403 x1402 (not x1404)) +:assumption (or x1246 x1253 x1260 x1267 x1405) +:assumption (or (not x1405) (not x1246)) +:assumption (or (not x1405) (not x1253)) +:assumption (or (not x1405) (not x1260)) +:assumption (or (not x1405) (not x1267)) +:assumption (or x68 x67 x66 x65 x1406) +:assumption (or (not x1406) (not x68)) +:assumption (or (not x1406) (not x67)) +:assumption (or (not x1406) (not x66)) +:assumption (or (not x1406) (not x65)) +:assumption (or x1407 (not x1406)) +:assumption (or x1407 (not x1405)) +:assumption (or x1406 x1405 (not x1407)) +:assumption (or x1219 x1226 x1233 x1240 x1408) +:assumption (or (not x1408) (not x1219)) +:assumption (or (not x1408) (not x1226)) +:assumption (or (not x1408) (not x1233)) +:assumption (or (not x1408) (not x1240)) +:assumption (or x72 x71 x70 x69 x1409) +:assumption (or (not x1409) (not x72)) +:assumption (or (not x1409) (not x71)) +:assumption (or (not x1409) (not x70)) +:assumption (or (not x1409) (not x69)) +:assumption (or x1410 (not x1409)) +:assumption (or x1410 (not x1408)) +:assumption (or x1409 x1408 (not x1410)) +:assumption (or x1192 x1199 x1206 x1213 x1411) +:assumption (or (not x1411) (not x1192)) +:assumption (or (not x1411) (not x1199)) +:assumption (or (not x1411) (not x1206)) +:assumption (or (not x1411) (not x1213)) +:assumption (or x76 x75 x74 x73 x1412) +:assumption (or (not x1412) (not x76)) +:assumption (or (not x1412) (not x75)) +:assumption (or (not x1412) (not x74)) +:assumption (or (not x1412) (not x73)) +:assumption (or x1413 (not x1412)) +:assumption (or x1413 (not x1411)) +:assumption (or x1412 x1411 (not x1413)) +:assumption (or (not x1413) (not x1410) (not x1407) (not x1404) x1352) +:assumption (or (not x1352) x1413) +:assumption (or (not x1352) x1410) +:assumption (or (not x1352) x1407) +:assumption (or (not x1352) x1404) +:assumption (or x886 x882) +:assumption (or x886 (not x1352)) +:assumption (or x886 (not x1353)) +:assumption (or (not x882) x1352 x1353 (not x886)) +:assumption (or x1173 x882) +:assumption (or x1173 (not x1352)) +:assumption (or x1173 (not x1353)) +:assumption (or x1173 (not x1352)) +:assumption (or (not x882) x1352 x1353 x1352 (not x1173)) +:assumption (or (not x62) (not x1173) (not x1172) (not x1179) (not x1180) (not x1181) (not x1182) (not x882) x1414) +:assumption (or (not x1414) x62) +:assumption (or (not x1414) x1173) +:assumption (or (not x1414) x1172) +:assumption (or (not x1414) x1179) +:assumption (or (not x1414) x1180) +:assumption (or (not x1414) x1181) +:assumption (or (not x1414) x1182) +:assumption (or (not x1414) x882) +:assumption (or (not x1113) (not x1109) (not x1105) (not x1103) x1415) +:assumption (or (not x1415) x1113) +:assumption (or (not x1415) x1109) +:assumption (or (not x1415) x1105) +:assumption (or (not x1415) x1103) +:assumption (or x1080 (not x874)) +:assumption (or x1080 x875) +:assumption (or x874 (not x875) (not x1080)) +:assumption (or x1071 (not x849)) +:assumption (or x1071 x850) +:assumption (or x849 (not x850) (not x1071)) +:assumption (or x1073 (not x860)) +:assumption (or x1073 x861) +:assumption (or x860 (not x861) (not x1073)) +:assumption (or x1075 (not x867)) +:assumption (or x1075 x868) +:assumption (or x867 (not x868) (not x1075)) +:assumption (or (not x1075) (not x1073) (not x1071) (not x1080) x877) +:assumption (or (not x877) x1075) +:assumption (or (not x877) x1073) +:assumption (or (not x877) x1071) +:assumption (or (not x877) x1080) +:assumption (or x884 (not x877)) +:assumption (or x884 (not x1415)) +:assumption (or x877 x1415 (not x884)) +:assumption (or x1416 (not x1273)) +:assumption (or x1416 (not x1280)) +:assumption (or x1416 (not x1290)) +:assumption (or x1416 (not x1185)) +:assumption (or x1273 x1280 x1290 x1185 (not x1416)) +:assumption (or x1417 (not x64)) +:assumption (or x1417 (not x63)) +:assumption (or x1417 (not x62)) +:assumption (or x1417 (not x61)) +:assumption (or x64 x63 x62 x61 (not x1417)) +:assumption (or (not x1417) (not x1416) x1418) +:assumption (or (not x1418) x1417) +:assumption (or (not x1418) x1416) +:assumption (or x1419 (not x1246)) +:assumption (or x1419 (not x1253)) +:assumption (or x1419 (not x1260)) +:assumption (or x1419 (not x1267)) +:assumption (or x1246 x1253 x1260 x1267 (not x1419)) +:assumption (or x1420 (not x68)) +:assumption (or x1420 (not x67)) +:assumption (or x1420 (not x66)) +:assumption (or x1420 (not x65)) +:assumption (or x68 x67 x66 x65 (not x1420)) +:assumption (or (not x1420) (not x1419) x1421) +:assumption (or (not x1421) x1420) +:assumption (or (not x1421) x1419) +:assumption (or x1422 (not x1219)) +:assumption (or x1422 (not x1226)) +:assumption (or x1422 (not x1233)) +:assumption (or x1422 (not x1240)) +:assumption (or x1219 x1226 x1233 x1240 (not x1422)) +:assumption (or x1423 (not x72)) +:assumption (or x1423 (not x71)) +:assumption (or x1423 (not x70)) +:assumption (or x1423 (not x69)) +:assumption (or x72 x71 x70 x69 (not x1423)) +:assumption (or (not x1423) (not x1422) x1424) +:assumption (or (not x1424) x1423) +:assumption (or (not x1424) x1422) +:assumption (or x1425 (not x1192)) +:assumption (or x1425 (not x1199)) +:assumption (or x1425 (not x1206)) +:assumption (or x1425 (not x1213)) +:assumption (or x1192 x1199 x1206 x1213 (not x1425)) +:assumption (or (not x1426) (not x1425) x1427) +:assumption (or (not x1427) x1426) +:assumption (or (not x1427) x1425) +:assumption (or x883 (not x1427)) +:assumption (or x883 (not x1424)) +:assumption (or x883 (not x1421)) +:assumption (or x883 (not x1418)) +:assumption (or x1427 x1424 x1421 x1418 (not x883)) +:assumption (or (not x882) (not x883) (not x884) (not x883) x1283) +:assumption (or (not x1283) x882) +:assumption (or (not x1283) x883) +:assumption (or (not x1283) x884) +:assumption (or (not x1283) x883) +:assumption (or x1426 (not x76)) +:assumption (or x1426 (not x75)) +:assumption (or x1426 (not x74)) +:assumption (or x1426 (not x73)) +:assumption (or x76 x75 x74 x73 (not x1426)) +:assumption (or x1172 (not x76)) +:assumption (or x1172 (not x75)) +:assumption (or x1172 (not x74)) +:assumption (or x1172 (not x73)) +:assumption (or x1172 (not x72)) +:assumption (or x1172 (not x71)) +:assumption (or x1172 (not x70)) +:assumption (or x1172 (not x69)) +:assumption (or x1172 (not x68)) +:assumption (or x1172 (not x67)) +:assumption (or x1172 (not x66)) +:assumption (or x1172 (not x65)) +:assumption (or x1172 (not x64)) +:assumption (or x1172 (not x63)) +:assumption (or x1172 (not x62)) +:assumption (or x1172 (not x61)) +:assumption (or x76 x75 x74 x73 x72 x71 x70 x69 x68 x67 x66 x65 x64 x63 x62 x61 (not x1172)) +:assumption (or x1280 (not x63) x1428) +:assumption (or (not x1428) (not x1280)) +:assumption (or (not x1428) x63) +:assumption (or x1273 x1280 (not x64) x1429) +:assumption (or (not x1429) (not x1273)) +:assumption (or (not x1429) (not x1280)) +:assumption (or (not x1429) x64) +:assumption (or x1296 (not x62)) +:assumption (or x1296 (not x1429)) +:assumption (or x1296 (not x1428)) +:assumption (or x62 x1429 x1428 (not x1296)) +:assumption (or (not x1296) (not x1290) (not x1172) (not x882) (not x883) (not x884) (not x883) x1430) +:assumption (or (not x1430) x1296) +:assumption (or (not x1430) x1290) +:assumption (or (not x1430) x1172) +:assumption (or (not x1430) x882) +:assumption (or (not x1430) x883) +:assumption (or (not x1430) x884) +:assumption (or (not x1430) x883) +:assumption (or x1431 (not x1430)) +:assumption (or x1431 (not x1414)) +:assumption (or x1431 (not x1346)) +:assumption (or x1431 (not x1289)) +:assumption (or x1430 x1414 x1346 x1289 (not x1431)) +:assumption (or (not x1432) x892) +:assumption (or (not x1432) (not x891)) +:assumption (or x892 (not x891) x897) +:assumption (or (not x897) (not x892)) +:assumption (or (not x897) x891) +:assumption (or x892 x891 x896) +:assumption (or (not x896) (not x892)) +:assumption (or (not x896) (not x891)) +:assumption (or x1433 (not x896)) +:assumption (or x1433 (not x897)) +:assumption (or x896 x897 (not x1433)) +:assumption (or (not x1434) x904) +:assumption (or (not x1434) (not x903)) +:assumption (or x904 (not x903) x909) +:assumption (or (not x909) (not x904)) +:assumption (or (not x909) x903) +:assumption (or x904 x903 x908) +:assumption (or (not x908) (not x904)) +:assumption (or (not x908) (not x903)) +:assumption (or x1435 (not x908)) +:assumption (or x1435 (not x909)) +:assumption (or x908 x909 (not x1435)) +:assumption (or (not x1436) x916) +:assumption (or (not x1436) (not x915)) +:assumption (or x916 (not x915) x921) +:assumption (or (not x921) (not x916)) +:assumption (or (not x921) x915) +:assumption (or x916 x915 x920) +:assumption (or (not x920) (not x916)) +:assumption (or (not x920) (not x915)) +:assumption (or x1437 (not x920)) +:assumption (or x1437 (not x921)) +:assumption (or x920 x921 (not x1437)) +:assumption (or (not x1438) x928) +:assumption (or (not x1438) (not x927)) +:assumption (or x928 (not x927) x933) +:assumption (or (not x933) (not x928)) +:assumption (or (not x933) x927) +:assumption (or x928 x927 x932) +:assumption (or (not x932) (not x928)) +:assumption (or (not x932) (not x927)) +:assumption (or x1439 (not x932)) +:assumption (or x1439 (not x933)) +:assumption (or x932 x933 (not x1439)) +:assumption (or (not x1440) x940) +:assumption (or (not x1440) (not x939)) +:assumption (or x940 (not x939) x945) +:assumption (or (not x945) (not x940)) +:assumption (or (not x945) x939) +:assumption (or x940 x939 x944) +:assumption (or (not x944) (not x940)) +:assumption (or (not x944) (not x939)) +:assumption (or x1441 (not x944)) +:assumption (or x1441 (not x945)) +:assumption (or x944 x945 (not x1441)) +:assumption (or (not x1442) x952) +:assumption (or (not x1442) (not x951)) +:assumption (or x952 (not x951) x957) +:assumption (or (not x957) (not x952)) +:assumption (or (not x957) x951) +:assumption (or x952 x951 x956) +:assumption (or (not x956) (not x952)) +:assumption (or (not x956) (not x951)) +:assumption (or x1443 (not x956)) +:assumption (or x1443 (not x957)) +:assumption (or x956 x957 (not x1443)) +:assumption (or (not x1444) x964) +:assumption (or (not x1444) (not x963)) +:assumption (or x964 (not x963) x969) +:assumption (or (not x969) (not x964)) +:assumption (or (not x969) x963) +:assumption (or x964 x963 x968) +:assumption (or (not x968) (not x964)) +:assumption (or (not x968) (not x963)) +:assumption (or x1445 (not x968)) +:assumption (or x1445 (not x969)) +:assumption (or x968 x969 (not x1445)) +:assumption (or (not x1446) x976) +:assumption (or (not x1446) (not x975)) +:assumption (or x976 (not x975) x981) +:assumption (or (not x981) (not x976)) +:assumption (or (not x981) x975) +:assumption (or x976 x975 x980) +:assumption (or (not x980) (not x976)) +:assumption (or (not x980) (not x975)) +:assumption (or x1447 (not x980)) +:assumption (or x1447 (not x981)) +:assumption (or x980 x981 (not x1447)) +:assumption (or (not x1448) x988) +:assumption (or (not x1448) (not x987)) +:assumption (or x988 (not x987) x993) +:assumption (or (not x993) (not x988)) +:assumption (or (not x993) x987) +:assumption (or x988 x987 x992) +:assumption (or (not x992) (not x988)) +:assumption (or (not x992) (not x987)) +:assumption (or x1449 (not x992)) +:assumption (or x1449 (not x993)) +:assumption (or x992 x993 (not x1449)) +:assumption (or (not x1450) x1000) +:assumption (or (not x1450) (not x999)) +:assumption (or x1000 (not x999) x1005) +:assumption (or (not x1005) (not x1000)) +:assumption (or (not x1005) x999) +:assumption (or x1000 x999 x1004) +:assumption (or (not x1004) (not x1000)) +:assumption (or (not x1004) (not x999)) +:assumption (or x1451 (not x1004)) +:assumption (or x1451 (not x1005)) +:assumption (or x1004 x1005 (not x1451)) +:assumption (or (not x1452) x1012) +:assumption (or (not x1452) (not x1011)) +:assumption (or x1012 (not x1011) x1017) +:assumption (or (not x1017) (not x1012)) +:assumption (or (not x1017) x1011) +:assumption (or x1012 x1011 x1016) +:assumption (or (not x1016) (not x1012)) +:assumption (or (not x1016) (not x1011)) +:assumption (or x1453 (not x1016)) +:assumption (or x1453 (not x1017)) +:assumption (or x1016 x1017 (not x1453)) +:assumption (or (not x1454) x1024) +:assumption (or (not x1454) (not x1023)) +:assumption (or x1024 (not x1023) x1029) +:assumption (or (not x1029) (not x1024)) +:assumption (or (not x1029) x1023) +:assumption (or x1024 x1023 x1028) +:assumption (or (not x1028) (not x1024)) +:assumption (or (not x1028) (not x1023)) +:assumption (or x1455 (not x1028)) +:assumption (or x1455 (not x1029)) +:assumption (or x1028 x1029 (not x1455)) +:assumption (or (not x1456) x1036) +:assumption (or (not x1456) (not x1035)) +:assumption (or x1036 (not x1035) x1041) +:assumption (or (not x1041) (not x1036)) +:assumption (or (not x1041) x1035) +:assumption (or x1036 x1035 x1040) +:assumption (or (not x1040) (not x1036)) +:assumption (or (not x1040) (not x1035)) +:assumption (or x1457 (not x1040)) +:assumption (or x1457 (not x1041)) +:assumption (or x1040 x1041 (not x1457)) +:assumption (or (not x1458) x1048) +:assumption (or (not x1458) (not x1047)) +:assumption (or x1048 (not x1047) x1053) +:assumption (or (not x1053) (not x1048)) +:assumption (or (not x1053) x1047) +:assumption (or x1048 x1047 x1052) +:assumption (or (not x1052) (not x1048)) +:assumption (or (not x1052) (not x1047)) +:assumption (or x1459 (not x1052)) +:assumption (or x1459 (not x1053)) +:assumption (or x1052 x1053 (not x1459)) +:assumption (or (not x1460) x1060) +:assumption (or (not x1460) (not x1059)) +:assumption (or x1060 (not x1059) x1065) +:assumption (or (not x1065) (not x1060)) +:assumption (or (not x1065) x1059) +:assumption (or x1060 x1059 x1064) +:assumption (or (not x1064) (not x1060)) +:assumption (or (not x1064) (not x1059)) +:assumption (or x1461 (not x1064)) +:assumption (or x1461 (not x1065)) +:assumption (or x1064 x1065 (not x1461)) +:assumption (or (not x1462) x1092) +:assumption (or (not x1462) (not x1091)) +:assumption (or x1092 (not x1091) x1097) +:assumption (or (not x1097) (not x1092)) +:assumption (or (not x1097) x1091) +:assumption (or x1092 x1091 x1096) +:assumption (or (not x1096) (not x1092)) +:assumption (or (not x1096) (not x1091)) +:assumption (or x1463 (not x1096)) +:assumption (or x1463 (not x1097)) +:assumption (or x1096 x1097 (not x1463)) +:assumption (or x1464 (not x79)) +:assumption (or x1464 x78) +:assumption (or x1464 x1465) +:assumption (or x79 (not x78) (not x1465) (not x1464)) +:assumption (or (not x1464) (not x1466) x1467) +:assumption (or (not x1467) x1464) +:assumption (or (not x1467) x1466) +:assumption (or x1468 (not x80)) +:assumption (or x1468 (not x81)) +:assumption (or x1468 (not x82)) +:assumption (or x1468 (not x83)) +:assumption (or x1468 (not x84)) +:assumption (or x1468 (not x85)) +:assumption (or x1468 (not x86)) +:assumption (or x1468 (not x87)) +:assumption (or x1468 (not x88)) +:assumption (or x1468 (not x89)) +:assumption (or x1468 (not x90)) +:assumption (or x1468 (not x91)) +:assumption (or x1468 (not x92)) +:assumption (or x1468 (not x93)) +:assumption (or x1468 (not x94)) +:assumption (or x1468 (not x95)) +:assumption (or x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 x90 x91 x92 x93 x94 x95 (not x1468)) +:assumption (or (not x79) x78 (not x1468) x1469) +:assumption (or (not x1469) x79) +:assumption (or (not x1469) (not x78)) +:assumption (or (not x1469) x1468) +:assumption (or x79 (not x78) x1470) +:assumption (or (not x1470) (not x79)) +:assumption (or (not x1470) x78) +:assumption (or x1466 (not x1470)) +:assumption (or x1466 (not x1469)) +:assumption (or x1470 x1469 (not x1466)) +:assumption (or x1471 (not x79)) +:assumption (or x1471 x78) +:assumption (or x1471 (not x1465)) +:assumption (or x79 (not x78) x1465 (not x1471)) +:assumption (or (not x1471) (not x1466) x1472) +:assumption (or (not x1472) x1471) +:assumption (or (not x1472) x1466) +:assumption (or (not x1473) x1474 (not x1475) (not x1476) (not x1477) (not x1478) x1479) +:assumption (or (not x1479) x1473) +:assumption (or (not x1479) (not x1474)) +:assumption (or (not x1479) x1475) +:assumption (or (not x1479) x1476) +:assumption (or (not x1479) x1477) +:assumption (or (not x1479) x1478) +:assumption (or (not x1480) (not x1476) (not x1481) x1482) +:assumption (or (not x1482) x1480) +:assumption (or (not x1482) x1476) +:assumption (or (not x1482) x1481) +:assumption (or x1483 (not x1482)) +:assumption (or x1483 (not x1479)) +:assumption (or x1482 x1479 (not x1483)) +:assumption (or (not x1484) x1485 (not x1486) (not x1476) (not x1477) (not x1478) x1487) +:assumption (or (not x1487) x1484) +:assumption (or (not x1487) (not x1485)) +:assumption (or (not x1487) x1486) +:assumption (or (not x1487) x1476) +:assumption (or (not x1487) x1477) +:assumption (or (not x1487) x1478) +:assumption (or (not x1488) (not x1476) (not x1481) x1489) +:assumption (or (not x1489) x1488) +:assumption (or (not x1489) x1476) +:assumption (or (not x1489) x1481) +:assumption (or x1490 (not x1489)) +:assumption (or x1490 (not x1487)) +:assumption (or x1489 x1487 (not x1490)) +:assumption (or (not x1491) x1492 (not x1493) (not x1476) (not x1477) (not x1478) x1494) +:assumption (or (not x1494) x1491) +:assumption (or (not x1494) (not x1492)) +:assumption (or (not x1494) x1493) +:assumption (or (not x1494) x1476) +:assumption (or (not x1494) x1477) +:assumption (or (not x1494) x1478) +:assumption (or (not x1495) (not x1476) (not x1481) x1496) +:assumption (or (not x1496) x1495) +:assumption (or (not x1496) x1476) +:assumption (or (not x1496) x1481) +:assumption (or x1497 (not x1496)) +:assumption (or x1497 (not x1494)) +:assumption (or x1496 x1494 (not x1497)) +:assumption (or (not x1498) x1499 (not x1500) (not x1476) (not x1477) (not x1478) x1501) +:assumption (or (not x1501) x1498) +:assumption (or (not x1501) (not x1499)) +:assumption (or (not x1501) x1500) +:assumption (or (not x1501) x1476) +:assumption (or (not x1501) x1477) +:assumption (or (not x1501) x1478) +:assumption (or x1481 x1477) +:assumption (or x1481 (not x1502)) +:assumption (or (not x1477) x1502 (not x1481)) +:assumption (or x1476 (not x1503)) +:assumption (or x1476 (not x1495)) +:assumption (or x1476 (not x1488)) +:assumption (or x1476 (not x1480)) +:assumption (or x1503 x1495 x1488 x1480 (not x1476)) +:assumption (or (not x1503) (not x1476) (not x1481) x1504) +:assumption (or (not x1504) x1503) +:assumption (or (not x1504) x1476) +:assumption (or (not x1504) x1481) +:assumption (or x1503 x1495 x1488 x1480 x1505) +:assumption (or (not x1505) (not x1503)) +:assumption (or (not x1505) (not x1495)) +:assumption (or (not x1505) (not x1488)) +:assumption (or (not x1505) (not x1480)) +:assumption (or x1506 (not x1505)) +:assumption (or x1506 (not x1504)) +:assumption (or x1506 (not x1501)) +:assumption (or x1505 x1504 x1501 (not x1506)) +:assumption (or (not x1507) (not x1507) (not x1508) (not x1509) x1510) +:assumption (or (not x1510) x1507) +:assumption (or (not x1510) x1507) +:assumption (or (not x1510) x1508) +:assumption (or (not x1510) x1509) +:assumption (or (not x1511) (not x1507) x1512) +:assumption (or (not x1512) x1511) +:assumption (or (not x1512) x1507) +:assumption (or x1507 x1513 x1477 x1514) +:assumption (or (not x1514) (not x1507)) +:assumption (or (not x1514) (not x1513)) +:assumption (or (not x1514) (not x1477)) +:assumption (or x1515 (not x1514)) +:assumption (or x1515 (not x1512)) +:assumption (or x1514 x1512 (not x1515)) +:assumption (or x1516 (not x1517)) +:assumption (or x1516 (not x1518)) +:assumption (or x1516 (not x1519)) +:assumption (or x1516 (not x1521)) +:assumption (or x1517 x1518 x1519 x1521 (not x1516)) +:assumption (or (not x1522) (not x1523) (not x1516) x1524) +:assumption (or (not x1524) x1522) +:assumption (or (not x1524) x1523) +:assumption (or (not x1524) x1516) +:assumption (or (not x1521) x1520 (not x1525) x1519) +:assumption (or (not x1519) x1521) +:assumption (or (not x1519) (not x1520)) +:assumption (or (not x1519) x1525) +:assumption (or x1526 (not x1517)) +:assumption (or x1526 (not x1518)) +:assumption (or x1526 (not x1519)) +:assumption (or x1526 (not x1520)) +:assumption (or x1517 x1518 x1519 x1520 (not x1526)) +:assumption (or x1523 (not x1517)) +:assumption (or x1523 (not x1518)) +:assumption (or x1523 x1521) +:assumption (or x1523 (not x1520)) +:assumption (or x1523 x1525) +:assumption (or x1517 x1518 (not x1521) x1520 (not x1525) (not x1523)) +:assumption (or x1527 (not x1517)) +:assumption (or x1527 (not x1521)) +:assumption (or x1527 x1520) +:assumption (or x1517 x1521 (not x1520) (not x1527)) +:assumption (or x1522 (not x1521)) +:assumption (or x1522 (not x1520)) +:assumption (or x1521 x1520 (not x1522)) +:assumption (or x1528 (not x1521)) +:assumption (or x1528 (not x1520)) +:assumption (or x1528 x1529) +:assumption (or x1521 x1520 (not x1529) (not x1528)) +:assumption (or (not x1528) (not x1527) (not x1523) (not x1526) x1530) +:assumption (or (not x1530) x1528) +:assumption (or (not x1530) x1527) +:assumption (or (not x1530) x1523) +:assumption (or (not x1530) x1526) +:assumption (or x1531 (not x1532)) +:assumption (or x1531 (not x1533)) +:assumption (or x1531 (not x1534)) +:assumption (or x1531 (not x1536)) +:assumption (or x1532 x1533 x1534 x1536 (not x1531)) +:assumption (or (not x1537) (not x1538) (not x1531) x1539) +:assumption (or (not x1539) x1537) +:assumption (or (not x1539) x1538) +:assumption (or (not x1539) x1531) +:assumption (or (not x1536) x1535 (not x1540) x1534) +:assumption (or (not x1534) x1536) +:assumption (or (not x1534) (not x1535)) +:assumption (or (not x1534) x1540) +:assumption (or x1541 (not x1532)) +:assumption (or x1541 (not x1533)) +:assumption (or x1541 (not x1534)) +:assumption (or x1541 (not x1535)) +:assumption (or x1532 x1533 x1534 x1535 (not x1541)) +:assumption (or x1538 (not x1532)) +:assumption (or x1538 (not x1533)) +:assumption (or x1538 x1536) +:assumption (or x1538 (not x1535)) +:assumption (or x1538 x1540) +:assumption (or x1532 x1533 (not x1536) x1535 (not x1540) (not x1538)) +:assumption (or x1542 (not x1532)) +:assumption (or x1542 (not x1536)) +:assumption (or x1542 x1535) +:assumption (or x1532 x1536 (not x1535) (not x1542)) +:assumption (or x1537 (not x1536)) +:assumption (or x1537 (not x1535)) +:assumption (or x1536 x1535 (not x1537)) +:assumption (or x1543 (not x1536)) +:assumption (or x1543 (not x1535)) +:assumption (or x1543 x1544) +:assumption (or x1536 x1535 (not x1544) (not x1543)) +:assumption (or (not x1543) (not x1542) (not x1538) (not x1541) x1545) +:assumption (or (not x1545) x1543) +:assumption (or (not x1545) x1542) +:assumption (or (not x1545) x1538) +:assumption (or (not x1545) x1541) +:assumption (or x1546 (not x1547)) +:assumption (or x1546 (not x1548)) +:assumption (or x1546 (not x1549)) +:assumption (or x1546 (not x1551)) +:assumption (or x1547 x1548 x1549 x1551 (not x1546)) +:assumption (or (not x1552) (not x1553) (not x1546) x1554) +:assumption (or (not x1554) x1552) +:assumption (or (not x1554) x1553) +:assumption (or (not x1554) x1546) +:assumption (or (not x1551) x1550 (not x1555) x1549) +:assumption (or (not x1549) x1551) +:assumption (or (not x1549) (not x1550)) +:assumption (or (not x1549) x1555) +:assumption (or x1556 (not x1547)) +:assumption (or x1556 (not x1548)) +:assumption (or x1556 (not x1549)) +:assumption (or x1556 (not x1550)) +:assumption (or x1547 x1548 x1549 x1550 (not x1556)) +:assumption (or x1553 (not x1547)) +:assumption (or x1553 (not x1548)) +:assumption (or x1553 x1551) +:assumption (or x1553 (not x1550)) +:assumption (or x1553 x1555) +:assumption (or x1547 x1548 (not x1551) x1550 (not x1555) (not x1553)) +:assumption (or x1557 (not x1547)) +:assumption (or x1557 (not x1551)) +:assumption (or x1557 x1550) +:assumption (or x1547 x1551 (not x1550) (not x1557)) +:assumption (or x1552 (not x1551)) +:assumption (or x1552 (not x1550)) +:assumption (or x1551 x1550 (not x1552)) +:assumption (or x1558 (not x1551)) +:assumption (or x1558 (not x1550)) +:assumption (or x1558 x1559) +:assumption (or x1551 x1550 (not x1559) (not x1558)) +:assumption (or (not x1558) (not x1557) (not x1553) (not x1556) x1560) +:assumption (or (not x1560) x1558) +:assumption (or (not x1560) x1557) +:assumption (or (not x1560) x1553) +:assumption (or (not x1560) x1556) +:assumption (or x1561 (not x1562)) +:assumption (or x1561 (not x1563)) +:assumption (or x1561 (not x1564)) +:assumption (or x1561 (not x1566)) +:assumption (or x1562 x1563 x1564 x1566 (not x1561)) +:assumption (or (not x1567) (not x1568) (not x1561) x1569) +:assumption (or (not x1569) x1567) +:assumption (or (not x1569) x1568) +:assumption (or (not x1569) x1561) +:assumption (or (not x1566) x1565 (not x1570) x1564) +:assumption (or (not x1564) x1566) +:assumption (or (not x1564) (not x1565)) +:assumption (or (not x1564) x1570) +:assumption (or x1571 (not x1562)) +:assumption (or x1571 (not x1563)) +:assumption (or x1571 (not x1564)) +:assumption (or x1571 (not x1565)) +:assumption (or x1562 x1563 x1564 x1565 (not x1571)) +:assumption (or x1568 (not x1562)) +:assumption (or x1568 (not x1563)) +:assumption (or x1568 x1566) +:assumption (or x1568 (not x1565)) +:assumption (or x1568 x1570) +:assumption (or x1562 x1563 (not x1566) x1565 (not x1570) (not x1568)) +:assumption (or x1572 (not x1562)) +:assumption (or x1572 (not x1566)) +:assumption (or x1572 x1565) +:assumption (or x1562 x1566 (not x1565) (not x1572)) +:assumption (or x1567 (not x1566)) +:assumption (or x1567 (not x1565)) +:assumption (or x1566 x1565 (not x1567)) +:assumption (or x1573 (not x1566)) +:assumption (or x1573 (not x1565)) +:assumption (or x1573 x1574) +:assumption (or x1566 x1565 (not x1574) (not x1573)) +:assumption (or (not x1573) (not x1572) (not x1568) (not x1571) x1575) +:assumption (or (not x1575) x1573) +:assumption (or (not x1575) x1572) +:assumption (or (not x1575) x1568) +:assumption (or (not x1575) x1571) +:assumption (or x1576 (not x1577)) +:assumption (or x1576 (not x1578)) +:assumption (or x1576 (not x1579)) +:assumption (or x1576 (not x1581)) +:assumption (or x1577 x1578 x1579 x1581 (not x1576)) +:assumption (or (not x1582) (not x1583) (not x1576) x1584) +:assumption (or (not x1584) x1582) +:assumption (or (not x1584) x1583) +:assumption (or (not x1584) x1576) +:assumption (or (not x1581) x1580 (not x1585) x1579) +:assumption (or (not x1579) x1581) +:assumption (or (not x1579) (not x1580)) +:assumption (or (not x1579) x1585) +:assumption (or x1586 (not x1577)) +:assumption (or x1586 (not x1578)) +:assumption (or x1586 (not x1579)) +:assumption (or x1586 (not x1580)) +:assumption (or x1577 x1578 x1579 x1580 (not x1586)) +:assumption (or x1583 (not x1577)) +:assumption (or x1583 (not x1578)) +:assumption (or x1583 x1581) +:assumption (or x1583 (not x1580)) +:assumption (or x1583 x1585) +:assumption (or x1577 x1578 (not x1581) x1580 (not x1585) (not x1583)) +:assumption (or x1587 (not x1577)) +:assumption (or x1587 (not x1581)) +:assumption (or x1587 x1580) +:assumption (or x1577 x1581 (not x1580) (not x1587)) +:assumption (or x1582 (not x1581)) +:assumption (or x1582 (not x1580)) +:assumption (or x1581 x1580 (not x1582)) +:assumption (or x1588 (not x1581)) +:assumption (or x1588 (not x1580)) +:assumption (or x1588 x1589) +:assumption (or x1581 x1580 (not x1589) (not x1588)) +:assumption (or (not x1588) (not x1587) (not x1583) (not x1586) x1590) +:assumption (or (not x1590) x1588) +:assumption (or (not x1590) x1587) +:assumption (or (not x1590) x1583) +:assumption (or (not x1590) x1586) +:assumption (or x1591 (not x1592)) +:assumption (or x1591 (not x1593)) +:assumption (or x1591 (not x1594)) +:assumption (or x1591 (not x1596)) +:assumption (or x1592 x1593 x1594 x1596 (not x1591)) +:assumption (or (not x1597) (not x1598) (not x1591) x1599) +:assumption (or (not x1599) x1597) +:assumption (or (not x1599) x1598) +:assumption (or (not x1599) x1591) +:assumption (or (not x1596) x1595 (not x1600) x1594) +:assumption (or (not x1594) x1596) +:assumption (or (not x1594) (not x1595)) +:assumption (or (not x1594) x1600) +:assumption (or x1601 (not x1592)) +:assumption (or x1601 (not x1593)) +:assumption (or x1601 (not x1594)) +:assumption (or x1601 (not x1595)) +:assumption (or x1592 x1593 x1594 x1595 (not x1601)) +:assumption (or x1598 (not x1592)) +:assumption (or x1598 (not x1593)) +:assumption (or x1598 x1596) +:assumption (or x1598 (not x1595)) +:assumption (or x1598 x1600) +:assumption (or x1592 x1593 (not x1596) x1595 (not x1600) (not x1598)) +:assumption (or x1602 (not x1592)) +:assumption (or x1602 (not x1596)) +:assumption (or x1602 x1595) +:assumption (or x1592 x1596 (not x1595) (not x1602)) +:assumption (or x1597 (not x1596)) +:assumption (or x1597 (not x1595)) +:assumption (or x1596 x1595 (not x1597)) +:assumption (or x1603 (not x1596)) +:assumption (or x1603 (not x1595)) +:assumption (or x1603 x1604) +:assumption (or x1596 x1595 (not x1604) (not x1603)) +:assumption (or (not x1603) (not x1602) (not x1598) (not x1601) x1605) +:assumption (or (not x1605) x1603) +:assumption (or (not x1605) x1602) +:assumption (or (not x1605) x1598) +:assumption (or (not x1605) x1601) +:assumption (or x1606 (not x1607)) +:assumption (or x1606 (not x1608)) +:assumption (or x1606 (not x1609)) +:assumption (or x1606 (not x1611)) +:assumption (or x1607 x1608 x1609 x1611 (not x1606)) +:assumption (or (not x1612) (not x1613) (not x1606) x1614) +:assumption (or (not x1614) x1612) +:assumption (or (not x1614) x1613) +:assumption (or (not x1614) x1606) +:assumption (or (not x1611) x1610 (not x1615) x1609) +:assumption (or (not x1609) x1611) +:assumption (or (not x1609) (not x1610)) +:assumption (or (not x1609) x1615) +:assumption (or x1616 (not x1607)) +:assumption (or x1616 (not x1608)) +:assumption (or x1616 (not x1609)) +:assumption (or x1616 (not x1610)) +:assumption (or x1607 x1608 x1609 x1610 (not x1616)) +:assumption (or x1613 (not x1607)) +:assumption (or x1613 (not x1608)) +:assumption (or x1613 x1611) +:assumption (or x1613 (not x1610)) +:assumption (or x1613 x1615) +:assumption (or x1607 x1608 (not x1611) x1610 (not x1615) (not x1613)) +:assumption (or x1617 (not x1607)) +:assumption (or x1617 (not x1611)) +:assumption (or x1617 x1610) +:assumption (or x1607 x1611 (not x1610) (not x1617)) +:assumption (or x1612 (not x1611)) +:assumption (or x1612 (not x1610)) +:assumption (or x1611 x1610 (not x1612)) +:assumption (or x1618 (not x1611)) +:assumption (or x1618 (not x1610)) +:assumption (or x1618 x1619) +:assumption (or x1611 x1610 (not x1619) (not x1618)) +:assumption (or (not x1618) (not x1617) (not x1613) (not x1616) x1620) +:assumption (or (not x1620) x1618) +:assumption (or (not x1620) x1617) +:assumption (or (not x1620) x1613) +:assumption (or (not x1620) x1616) +:assumption (or x1621 (not x1622)) +:assumption (or x1621 (not x1623)) +:assumption (or x1621 (not x1624)) +:assumption (or x1621 (not x1626)) +:assumption (or x1622 x1623 x1624 x1626 (not x1621)) +:assumption (or (not x1627) (not x1628) (not x1621) x1629) +:assumption (or (not x1629) x1627) +:assumption (or (not x1629) x1628) +:assumption (or (not x1629) x1621) +:assumption (or (not x1626) x1625 (not x1630) x1624) +:assumption (or (not x1624) x1626) +:assumption (or (not x1624) (not x1625)) +:assumption (or (not x1624) x1630) +:assumption (or x1631 (not x1622)) +:assumption (or x1631 (not x1623)) +:assumption (or x1631 (not x1624)) +:assumption (or x1631 (not x1625)) +:assumption (or x1622 x1623 x1624 x1625 (not x1631)) +:assumption (or x1628 (not x1622)) +:assumption (or x1628 (not x1623)) +:assumption (or x1628 x1626) +:assumption (or x1628 (not x1625)) +:assumption (or x1628 x1630) +:assumption (or x1622 x1623 (not x1626) x1625 (not x1630) (not x1628)) +:assumption (or x1632 (not x1622)) +:assumption (or x1632 (not x1626)) +:assumption (or x1632 x1625) +:assumption (or x1622 x1626 (not x1625) (not x1632)) +:assumption (or x1627 (not x1626)) +:assumption (or x1627 (not x1625)) +:assumption (or x1626 x1625 (not x1627)) +:assumption (or x1633 (not x1626)) +:assumption (or x1633 (not x1625)) +:assumption (or x1633 x1634) +:assumption (or x1626 x1625 (not x1634) (not x1633)) +:assumption (or (not x1633) (not x1632) (not x1628) (not x1631) x1635) +:assumption (or (not x1635) x1633) +:assumption (or (not x1635) x1632) +:assumption (or (not x1635) x1628) +:assumption (or (not x1635) x1631) +:assumption (or x1636 (not x1637)) +:assumption (or x1636 (not x1638)) +:assumption (or x1636 (not x1639)) +:assumption (or x1636 (not x1641)) +:assumption (or x1637 x1638 x1639 x1641 (not x1636)) +:assumption (or (not x1642) (not x1643) (not x1636) x1644) +:assumption (or (not x1644) x1642) +:assumption (or (not x1644) x1643) +:assumption (or (not x1644) x1636) +:assumption (or (not x1641) x1640 (not x1645) x1639) +:assumption (or (not x1639) x1641) +:assumption (or (not x1639) (not x1640)) +:assumption (or (not x1639) x1645) +:assumption (or x1646 (not x1637)) +:assumption (or x1646 (not x1638)) +:assumption (or x1646 (not x1639)) +:assumption (or x1646 (not x1640)) +:assumption (or x1637 x1638 x1639 x1640 (not x1646)) +:assumption (or x1643 (not x1637)) +:assumption (or x1643 (not x1638)) +:assumption (or x1643 x1641) +:assumption (or x1643 (not x1640)) +:assumption (or x1643 x1645) +:assumption (or x1637 x1638 (not x1641) x1640 (not x1645) (not x1643)) +:assumption (or x1647 (not x1637)) +:assumption (or x1647 (not x1641)) +:assumption (or x1647 x1640) +:assumption (or x1637 x1641 (not x1640) (not x1647)) +:assumption (or x1642 (not x1641)) +:assumption (or x1642 (not x1640)) +:assumption (or x1641 x1640 (not x1642)) +:assumption (or x1648 (not x1641)) +:assumption (or x1648 (not x1640)) +:assumption (or x1648 x1649) +:assumption (or x1641 x1640 (not x1649) (not x1648)) +:assumption (or (not x1648) (not x1647) (not x1643) (not x1646) x1650) +:assumption (or (not x1650) x1648) +:assumption (or (not x1650) x1647) +:assumption (or (not x1650) x1643) +:assumption (or (not x1650) x1646) +:assumption (or x1651 (not x1652)) +:assumption (or x1651 (not x1653)) +:assumption (or x1651 (not x1654)) +:assumption (or x1651 (not x1656)) +:assumption (or x1652 x1653 x1654 x1656 (not x1651)) +:assumption (or (not x1657) (not x1658) (not x1651) x1659) +:assumption (or (not x1659) x1657) +:assumption (or (not x1659) x1658) +:assumption (or (not x1659) x1651) +:assumption (or (not x1656) x1655 (not x1660) x1654) +:assumption (or (not x1654) x1656) +:assumption (or (not x1654) (not x1655)) +:assumption (or (not x1654) x1660) +:assumption (or x1661 (not x1652)) +:assumption (or x1661 (not x1653)) +:assumption (or x1661 (not x1654)) +:assumption (or x1661 (not x1655)) +:assumption (or x1652 x1653 x1654 x1655 (not x1661)) +:assumption (or x1658 (not x1652)) +:assumption (or x1658 (not x1653)) +:assumption (or x1658 x1656) +:assumption (or x1658 (not x1655)) +:assumption (or x1658 x1660) +:assumption (or x1652 x1653 (not x1656) x1655 (not x1660) (not x1658)) +:assumption (or x1662 (not x1652)) +:assumption (or x1662 (not x1656)) +:assumption (or x1662 x1655) +:assumption (or x1652 x1656 (not x1655) (not x1662)) +:assumption (or x1657 (not x1656)) +:assumption (or x1657 (not x1655)) +:assumption (or x1656 x1655 (not x1657)) +:assumption (or x1663 (not x1656)) +:assumption (or x1663 (not x1655)) +:assumption (or x1663 x1664) +:assumption (or x1656 x1655 (not x1664) (not x1663)) +:assumption (or (not x1663) (not x1662) (not x1658) (not x1661) x1665) +:assumption (or (not x1665) x1663) +:assumption (or (not x1665) x1662) +:assumption (or (not x1665) x1658) +:assumption (or (not x1665) x1661) +:assumption (or x1666 (not x1667)) +:assumption (or x1666 (not x1668)) +:assumption (or x1666 (not x1669)) +:assumption (or x1666 (not x1671)) +:assumption (or x1667 x1668 x1669 x1671 (not x1666)) +:assumption (or (not x1672) (not x1673) (not x1666) x1674) +:assumption (or (not x1674) x1672) +:assumption (or (not x1674) x1673) +:assumption (or (not x1674) x1666) +:assumption (or (not x1671) x1670 (not x1675) x1669) +:assumption (or (not x1669) x1671) +:assumption (or (not x1669) (not x1670)) +:assumption (or (not x1669) x1675) +:assumption (or x1676 (not x1667)) +:assumption (or x1676 (not x1668)) +:assumption (or x1676 (not x1669)) +:assumption (or x1676 (not x1670)) +:assumption (or x1667 x1668 x1669 x1670 (not x1676)) +:assumption (or x1673 (not x1667)) +:assumption (or x1673 (not x1668)) +:assumption (or x1673 x1671) +:assumption (or x1673 (not x1670)) +:assumption (or x1673 x1675) +:assumption (or x1667 x1668 (not x1671) x1670 (not x1675) (not x1673)) +:assumption (or x1677 (not x1667)) +:assumption (or x1677 (not x1671)) +:assumption (or x1677 x1670) +:assumption (or x1667 x1671 (not x1670) (not x1677)) +:assumption (or x1672 (not x1671)) +:assumption (or x1672 (not x1670)) +:assumption (or x1671 x1670 (not x1672)) +:assumption (or x1678 (not x1671)) +:assumption (or x1678 (not x1670)) +:assumption (or x1678 x1679) +:assumption (or x1671 x1670 (not x1679) (not x1678)) +:assumption (or (not x1678) (not x1677) (not x1673) (not x1676) x1680) +:assumption (or (not x1680) x1678) +:assumption (or (not x1680) x1677) +:assumption (or (not x1680) x1673) +:assumption (or (not x1680) x1676) +:assumption (or x1681 (not x1682)) +:assumption (or x1681 (not x1683)) +:assumption (or x1681 (not x1684)) +:assumption (or x1681 (not x1686)) +:assumption (or x1682 x1683 x1684 x1686 (not x1681)) +:assumption (or (not x1687) (not x1688) (not x1681) x1689) +:assumption (or (not x1689) x1687) +:assumption (or (not x1689) x1688) +:assumption (or (not x1689) x1681) +:assumption (or (not x1686) x1685 (not x1690) x1684) +:assumption (or (not x1684) x1686) +:assumption (or (not x1684) (not x1685)) +:assumption (or (not x1684) x1690) +:assumption (or x1691 (not x1682)) +:assumption (or x1691 (not x1683)) +:assumption (or x1691 (not x1684)) +:assumption (or x1691 (not x1685)) +:assumption (or x1682 x1683 x1684 x1685 (not x1691)) +:assumption (or x1688 (not x1682)) +:assumption (or x1688 (not x1683)) +:assumption (or x1688 x1686) +:assumption (or x1688 (not x1685)) +:assumption (or x1688 x1690) +:assumption (or x1682 x1683 (not x1686) x1685 (not x1690) (not x1688)) +:assumption (or x1692 (not x1682)) +:assumption (or x1692 (not x1686)) +:assumption (or x1692 x1685) +:assumption (or x1682 x1686 (not x1685) (not x1692)) +:assumption (or x1687 (not x1686)) +:assumption (or x1687 (not x1685)) +:assumption (or x1686 x1685 (not x1687)) +:assumption (or x1693 (not x1686)) +:assumption (or x1693 (not x1685)) +:assumption (or x1693 x1694) +:assumption (or x1686 x1685 (not x1694) (not x1693)) +:assumption (or (not x1693) (not x1692) (not x1688) (not x1691) x1695) +:assumption (or (not x1695) x1693) +:assumption (or (not x1695) x1692) +:assumption (or (not x1695) x1688) +:assumption (or (not x1695) x1691) +:assumption (or x1696 (not x1697)) +:assumption (or x1696 (not x1698)) +:assumption (or x1696 (not x1699)) +:assumption (or x1696 (not x1701)) +:assumption (or x1697 x1698 x1699 x1701 (not x1696)) +:assumption (or (not x1702) (not x1703) (not x1696) x1704) +:assumption (or (not x1704) x1702) +:assumption (or (not x1704) x1703) +:assumption (or (not x1704) x1696) +:assumption (or (not x1701) x1700 (not x1705) x1699) +:assumption (or (not x1699) x1701) +:assumption (or (not x1699) (not x1700)) +:assumption (or (not x1699) x1705) +:assumption (or x1706 (not x1697)) +:assumption (or x1706 (not x1698)) +:assumption (or x1706 (not x1699)) +:assumption (or x1706 (not x1700)) +:assumption (or x1697 x1698 x1699 x1700 (not x1706)) +:assumption (or x1703 (not x1697)) +:assumption (or x1703 (not x1698)) +:assumption (or x1703 x1701) +:assumption (or x1703 (not x1700)) +:assumption (or x1703 x1705) +:assumption (or x1697 x1698 (not x1701) x1700 (not x1705) (not x1703)) +:assumption (or x1707 (not x1697)) +:assumption (or x1707 (not x1701)) +:assumption (or x1707 x1700) +:assumption (or x1697 x1701 (not x1700) (not x1707)) +:assumption (or x1702 (not x1701)) +:assumption (or x1702 (not x1700)) +:assumption (or x1701 x1700 (not x1702)) +:assumption (or x1708 (not x1701)) +:assumption (or x1708 (not x1700)) +:assumption (or x1708 x1709) +:assumption (or x1701 x1700 (not x1709) (not x1708)) +:assumption (or (not x1708) (not x1707) (not x1703) (not x1706) x1710) +:assumption (or (not x1710) x1708) +:assumption (or (not x1710) x1707) +:assumption (or (not x1710) x1703) +:assumption (or (not x1710) x1706) +:assumption (or x1711 (not x1712)) +:assumption (or x1711 (not x1713)) +:assumption (or x1711 (not x1714)) +:assumption (or x1711 (not x1716)) +:assumption (or x1712 x1713 x1714 x1716 (not x1711)) +:assumption (or (not x1717) (not x1718) (not x1711) x1719) +:assumption (or (not x1719) x1717) +:assumption (or (not x1719) x1718) +:assumption (or (not x1719) x1711) +:assumption (or (not x1716) x1715 (not x1720) x1714) +:assumption (or (not x1714) x1716) +:assumption (or (not x1714) (not x1715)) +:assumption (or (not x1714) x1720) +:assumption (or x1721 (not x1712)) +:assumption (or x1721 (not x1713)) +:assumption (or x1721 (not x1714)) +:assumption (or x1721 (not x1715)) +:assumption (or x1712 x1713 x1714 x1715 (not x1721)) +:assumption (or x1718 (not x1712)) +:assumption (or x1718 (not x1713)) +:assumption (or x1718 x1716) +:assumption (or x1718 (not x1715)) +:assumption (or x1718 x1720) +:assumption (or x1712 x1713 (not x1716) x1715 (not x1720) (not x1718)) +:assumption (or x1722 (not x1712)) +:assumption (or x1722 (not x1716)) +:assumption (or x1722 x1715) +:assumption (or x1712 x1716 (not x1715) (not x1722)) +:assumption (or x1717 (not x1716)) +:assumption (or x1717 (not x1715)) +:assumption (or x1716 x1715 (not x1717)) +:assumption (or x1723 (not x1716)) +:assumption (or x1723 (not x1715)) +:assumption (or x1723 x1724) +:assumption (or x1716 x1715 (not x1724) (not x1723)) +:assumption (or (not x1723) (not x1722) (not x1718) (not x1721) x1725) +:assumption (or (not x1725) x1723) +:assumption (or (not x1725) x1722) +:assumption (or (not x1725) x1718) +:assumption (or (not x1725) x1721) +:assumption (or x1726 (not x1727)) +:assumption (or x1726 (not x1728)) +:assumption (or x1726 (not x1729)) +:assumption (or x1726 (not x1731)) +:assumption (or x1727 x1728 x1729 x1731 (not x1726)) +:assumption (or (not x1732) (not x1733) (not x1726) x1734) +:assumption (or (not x1734) x1732) +:assumption (or (not x1734) x1733) +:assumption (or (not x1734) x1726) +:assumption (or (not x1731) x1730 (not x1735) x1729) +:assumption (or (not x1729) x1731) +:assumption (or (not x1729) (not x1730)) +:assumption (or (not x1729) x1735) +:assumption (or x1736 (not x1727)) +:assumption (or x1736 (not x1728)) +:assumption (or x1736 (not x1729)) +:assumption (or x1736 (not x1730)) +:assumption (or x1727 x1728 x1729 x1730 (not x1736)) +:assumption (or x1733 (not x1727)) +:assumption (or x1733 (not x1728)) +:assumption (or x1733 x1731) +:assumption (or x1733 (not x1730)) +:assumption (or x1733 x1735) +:assumption (or x1727 x1728 (not x1731) x1730 (not x1735) (not x1733)) +:assumption (or x1737 (not x1727)) +:assumption (or x1737 (not x1731)) +:assumption (or x1737 x1730) +:assumption (or x1727 x1731 (not x1730) (not x1737)) +:assumption (or x1732 (not x1731)) +:assumption (or x1732 (not x1730)) +:assumption (or x1731 x1730 (not x1732)) +:assumption (or x1738 (not x1731)) +:assumption (or x1738 (not x1730)) +:assumption (or x1738 x1739) +:assumption (or x1731 x1730 (not x1739) (not x1738)) +:assumption (or (not x1738) (not x1737) (not x1733) (not x1736) x1740) +:assumption (or (not x1740) x1738) +:assumption (or (not x1740) x1737) +:assumption (or (not x1740) x1733) +:assumption (or (not x1740) x1736) +:assumption (or (not x1741) (not x1488) x1742) +:assumption (or (not x1742) x1741) +:assumption (or (not x1742) x1488) +:assumption (or (not x1743) (not x1741) (not x1495) x1744) +:assumption (or (not x1744) x1743) +:assumption (or (not x1744) x1741) +:assumption (or (not x1744) x1495) +:assumption (or (not x1745) (not x1743) (not x1741) (not x1503) x1746) +:assumption (or (not x1746) x1745) +:assumption (or (not x1746) x1743) +:assumption (or (not x1746) x1741) +:assumption (or (not x1746) x1503) +:assumption (or x1498 (not x1480)) +:assumption (or x1498 (not x1746)) +:assumption (or x1498 (not x1744)) +:assumption (or x1498 (not x1742)) +:assumption (or x1480 x1746 x1744 x1742 (not x1498)) +:assumption (or (not x1498) x1499 (not x1500) (not x1477) (not x1478) x1747) +:assumption (or (not x1747) x1498) +:assumption (or (not x1747) (not x1499)) +:assumption (or (not x1747) x1500) +:assumption (or (not x1747) x1477) +:assumption (or (not x1747) x1478) +:assumption (or (not x1743) (not x1495) x1748) +:assumption (or (not x1748) x1743) +:assumption (or (not x1748) x1495) +:assumption (or (not x1745) (not x1743) (not x1503) x1749) +:assumption (or (not x1749) x1745) +:assumption (or (not x1749) x1743) +:assumption (or (not x1749) x1503) +:assumption (or (not x1750) (not x1745) (not x1743) (not x1480) x1751) +:assumption (or (not x1751) x1750) +:assumption (or (not x1751) x1745) +:assumption (or (not x1751) x1743) +:assumption (or (not x1751) x1480) +:assumption (or x1473 (not x1488)) +:assumption (or x1473 (not x1751)) +:assumption (or x1473 (not x1749)) +:assumption (or x1473 (not x1748)) +:assumption (or x1488 x1751 x1749 x1748 (not x1473)) +:assumption (or (not x1473) x1474 (not x1475) (not x1477) (not x1478) x1752) +:assumption (or (not x1752) x1473) +:assumption (or (not x1752) (not x1474)) +:assumption (or (not x1752) x1475) +:assumption (or (not x1752) x1477) +:assumption (or (not x1752) x1478) +:assumption (or (not x1745) (not x1503) x1753) +:assumption (or (not x1753) x1745) +:assumption (or (not x1753) x1503) +:assumption (or (not x1750) (not x1745) (not x1480) x1754) +:assumption (or (not x1754) x1750) +:assumption (or (not x1754) x1745) +:assumption (or (not x1754) x1480) +:assumption (or (not x1741) (not x1750) (not x1745) (not x1488) x1755) +:assumption (or (not x1755) x1741) +:assumption (or (not x1755) x1750) +:assumption (or (not x1755) x1745) +:assumption (or (not x1755) x1488) +:assumption (or x1484 (not x1495)) +:assumption (or x1484 (not x1755)) +:assumption (or x1484 (not x1754)) +:assumption (or x1484 (not x1753)) +:assumption (or x1495 x1755 x1754 x1753 (not x1484)) +:assumption (or (not x1484) x1485 (not x1486) (not x1477) (not x1478) x1756) +:assumption (or (not x1756) x1484) +:assumption (or (not x1756) (not x1485)) +:assumption (or (not x1756) x1486) +:assumption (or (not x1756) x1477) +:assumption (or (not x1756) x1478) +:assumption (or (not x1750) (not x1480) x1757) +:assumption (or (not x1757) x1750) +:assumption (or (not x1757) x1480) +:assumption (or (not x1741) (not x1750) (not x1488) x1758) +:assumption (or (not x1758) x1741) +:assumption (or (not x1758) x1750) +:assumption (or (not x1758) x1488) +:assumption (or (not x1743) (not x1741) (not x1750) (not x1495) x1759) +:assumption (or (not x1759) x1743) +:assumption (or (not x1759) x1741) +:assumption (or (not x1759) x1750) +:assumption (or (not x1759) x1495) +:assumption (or x1491 (not x1503)) +:assumption (or x1491 (not x1759)) +:assumption (or x1491 (not x1758)) +:assumption (or x1491 (not x1757)) +:assumption (or x1503 x1759 x1758 x1757 (not x1491)) +:assumption (or (not x1491) x1492 (not x1493) (not x1477) (not x1478) x1760) +:assumption (or (not x1760) x1491) +:assumption (or (not x1760) (not x1492)) +:assumption (or (not x1760) x1493) +:assumption (or (not x1760) x1477) +:assumption (or (not x1760) x1478) +:assumption (or x1761 (not x1762)) +:assumption (or x1761 (not x1763)) +:assumption (or x1761 (not x1764)) +:assumption (or x1761 (not x1766)) +:assumption (or x1762 x1763 x1764 x1766 (not x1761)) +:assumption (or (not x1767) (not x1768) (not x1761) x1769) +:assumption (or (not x1769) x1767) +:assumption (or (not x1769) x1768) +:assumption (or (not x1769) x1761) +:assumption (or (not x1766) x1765 (not x1770) x1764) +:assumption (or (not x1764) x1766) +:assumption (or (not x1764) (not x1765)) +:assumption (or (not x1764) x1770) +:assumption (or x1771 (not x1762)) +:assumption (or x1771 (not x1763)) +:assumption (or x1771 (not x1764)) +:assumption (or x1771 (not x1765)) +:assumption (or x1762 x1763 x1764 x1765 (not x1771)) +:assumption (or x1768 (not x1762)) +:assumption (or x1768 (not x1763)) +:assumption (or x1768 x1766) +:assumption (or x1768 (not x1765)) +:assumption (or x1768 x1770) +:assumption (or x1762 x1763 (not x1766) x1765 (not x1770) (not x1768)) +:assumption (or x1772 (not x1762)) +:assumption (or x1772 (not x1766)) +:assumption (or x1772 x1765) +:assumption (or x1762 x1766 (not x1765) (not x1772)) +:assumption (or x1767 (not x1766)) +:assumption (or x1767 (not x1765)) +:assumption (or x1766 x1765 (not x1767)) +:assumption (or x1773 (not x1766)) +:assumption (or x1773 (not x1765)) +:assumption (or x1773 x1774) +:assumption (or x1766 x1765 (not x1774) (not x1773)) +:assumption (or (not x1773) (not x1772) (not x1768) (not x1771) x1775) +:assumption (or (not x1775) x1773) +:assumption (or (not x1775) x1772) +:assumption (or (not x1775) x1768) +:assumption (or (not x1775) x1771) +:assumption (or x1513 (not x1776) x1777) +:assumption (or (not x1777) (not x1513)) +:assumption (or (not x1777) x1776) +:assumption (or (not x1477) (not x1778) (not x1508) x1779) +:assumption (or (not x1779) x1477) +:assumption (or (not x1779) x1778) +:assumption (or (not x1779) x1508) +:assumption (or x1780 (not x1779)) +:assumption (or x1780 (not x1777)) +:assumption (or x1779 x1777 (not x1780)) +:assumption (or x1513 (not x1778) x1781) +:assumption (or (not x1781) (not x1513)) +:assumption (or (not x1781) x1778) +:assumption (or (not x1477) (not x1782) (not x1508) x1783) +:assumption (or (not x1783) x1477) +:assumption (or (not x1783) x1782) +:assumption (or (not x1783) x1508) +:assumption (or x1784 (not x1783)) +:assumption (or x1784 (not x1781)) +:assumption (or x1783 x1781 (not x1784)) +:assumption (or x1513 (not x1782) x1785) +:assumption (or (not x1785) (not x1513)) +:assumption (or (not x1785) x1782) +:assumption (or (not x1477) (not x1786) (not x1508) x1787) +:assumption (or (not x1787) x1477) +:assumption (or (not x1787) x1786) +:assumption (or (not x1787) x1508) +:assumption (or x1788 (not x1787)) +:assumption (or x1788 (not x1785)) +:assumption (or x1787 x1785 (not x1788)) +:assumption (or x1513 (not x1786) x1789) +:assumption (or (not x1789) (not x1513)) +:assumption (or (not x1789) x1786) +:assumption (or (not x1477) (not x1508) x1790) +:assumption (or (not x1790) x1477) +:assumption (or (not x1790) x1508) +:assumption (or x1791 (not x1790)) +:assumption (or x1791 (not x1789)) +:assumption (or x1790 x1789 (not x1791)) +:assumption (or x1792 (not x1499)) +:assumption (or x1792 x1500) +:assumption (or x1792 (not x1500)) +:assumption (or x1499 (not x1500) x1500 (not x1792)) +:assumption (or x1793 (not x1794)) +:assumption (or x1793 x1795) +:assumption (or x1794 (not x1795) (not x1793)) +:assumption (or (not x1793) (not x1792) x1796) +:assumption (or (not x1796) x1793) +:assumption (or (not x1796) x1792) +:assumption (or x1797 (not x1474)) +:assumption (or x1797 x1475) +:assumption (or x1797 (not x1475)) +:assumption (or x1474 (not x1475) x1475 (not x1797)) +:assumption (or x1798 (not x1799)) +:assumption (or x1798 x1800) +:assumption (or x1799 (not x1800) (not x1798)) +:assumption (or (not x1798) (not x1797) x1801) +:assumption (or (not x1801) x1798) +:assumption (or (not x1801) x1797) +:assumption (or x1802 (not x1485)) +:assumption (or x1802 x1486) +:assumption (or x1802 (not x1486)) +:assumption (or x1485 (not x1486) x1486 (not x1802)) +:assumption (or x1803 (not x1804)) +:assumption (or x1803 x1805) +:assumption (or x1804 (not x1805) (not x1803)) +:assumption (or (not x1803) (not x1802) x1806) +:assumption (or (not x1806) x1803) +:assumption (or (not x1806) x1802) +:assumption (or x1807 (not x1492)) +:assumption (or x1807 x1493) +:assumption (or x1807 (not x1493)) +:assumption (or x1492 (not x1493) x1493 (not x1807)) +:assumption (or x1808 (not x1809)) +:assumption (or x1808 x1810) +:assumption (or x1809 (not x1810) (not x1808)) +:assumption (or (not x1808) (not x1807) x1811) +:assumption (or (not x1811) x1808) +:assumption (or (not x1811) x1807) +:assumption (or x1812 (not x1477)) +:assumption (or x1812 (not x1513)) +:assumption (or x1477 x1513 (not x1812)) +:assumption (or x1813 (not x1520)) +:assumption (or x1813 (not x1814)) +:assumption (or x1520 x1814 (not x1813)) +:assumption (or x1815 (not x1535)) +:assumption (or x1815 (not x1816)) +:assumption (or x1535 x1816 (not x1815)) +:assumption (or x1817 (not x1550)) +:assumption (or x1817 (not x1818)) +:assumption (or x1550 x1818 (not x1817)) +:assumption (or x1819 (not x1565)) +:assumption (or x1819 (not x1820)) +:assumption (or x1565 x1820 (not x1819)) +:assumption (or x1821 (not x1580)) +:assumption (or x1821 (not x1822)) +:assumption (or x1580 x1822 (not x1821)) +:assumption (or x1823 (not x1595)) +:assumption (or x1823 (not x1824)) +:assumption (or x1595 x1824 (not x1823)) +:assumption (or x1825 (not x1610)) +:assumption (or x1825 (not x1826)) +:assumption (or x1610 x1826 (not x1825)) +:assumption (or x1827 (not x1625)) +:assumption (or x1827 (not x1828)) +:assumption (or x1625 x1828 (not x1827)) +:assumption (or x1829 (not x1640)) +:assumption (or x1829 (not x1830)) +:assumption (or x1640 x1830 (not x1829)) +:assumption (or x1831 (not x1655)) +:assumption (or x1831 (not x1832)) +:assumption (or x1655 x1832 (not x1831)) +:assumption (or x1833 (not x1670)) +:assumption (or x1833 (not x1834)) +:assumption (or x1670 x1834 (not x1833)) +:assumption (or x1835 (not x1685)) +:assumption (or x1835 (not x1836)) +:assumption (or x1685 x1836 (not x1835)) +:assumption (or x1837 (not x1700)) +:assumption (or x1837 (not x1838)) +:assumption (or x1700 x1838 (not x1837)) +:assumption (or x1839 (not x1715)) +:assumption (or x1839 (not x1840)) +:assumption (or x1715 x1840 (not x1839)) +:assumption (or x1841 (not x1730)) +:assumption (or x1841 (not x1842)) +:assumption (or x1730 x1842 (not x1841)) +:assumption (or x1843 (not x1765)) +:assumption (or x1843 (not x1844)) +:assumption (or x1765 x1844 (not x1843)) +:assumption (or (not x95) (not x1845) (not x1846) (not x1847) (not x1848) x1849) +:assumption (or (not x1849) x95) +:assumption (or (not x1849) x1845) +:assumption (or (not x1849) x1846) +:assumption (or (not x1849) x1847) +:assumption (or (not x1849) x1848) +:assumption (or (not x83) (not x1846) (not x1845) (not x1507) (not x1850) x1851) +:assumption (or (not x1851) x83) +:assumption (or (not x1851) x1846) +:assumption (or (not x1851) x1845) +:assumption (or (not x1851) x1507) +:assumption (or (not x1851) x1850) +:assumption (or (not x80) (not x1846) (not x1845) (not x1852) (not x1853) (not x1854) (not x1855) (not x1507) x1856) +:assumption (or (not x1856) x80) +:assumption (or (not x1856) x1846) +:assumption (or (not x1856) x1845) +:assumption (or (not x1856) x1852) +:assumption (or (not x1856) x1853) +:assumption (or (not x1856) x1854) +:assumption (or (not x1856) x1855) +:assumption (or (not x1856) x1507) +:assumption (or (not x1857) (not x1858) (not x1845) (not x1507) (not x1508) (not x1509) (not x1508) x1859) +:assumption (or (not x1859) x1857) +:assumption (or (not x1859) x1858) +:assumption (or (not x1859) x1845) +:assumption (or (not x1859) x1507) +:assumption (or (not x1859) x1508) +:assumption (or (not x1859) x1509) +:assumption (or (not x1859) x1508) +:assumption (or x1860 (not x1859)) +:assumption (or x1860 (not x1856)) +:assumption (or x1860 (not x1851)) +:assumption (or x1860 (not x1849)) +:assumption (or x1860 (not x1861)) +:assumption (or x1859 x1856 x1851 x1849 x1861 (not x1860)) +:assumption (or (not x94) (not x1845) (not x1846) (not x1847) (not x1848) x1862) +:assumption (or (not x1862) x94) +:assumption (or (not x1862) x1845) +:assumption (or (not x1862) x1846) +:assumption (or (not x1862) x1847) +:assumption (or (not x1862) x1848) +:assumption (or (not x82) (not x1846) (not x1845) (not x1507) (not x1850) x1863) +:assumption (or (not x1863) x82) +:assumption (or (not x1863) x1846) +:assumption (or (not x1863) x1845) +:assumption (or (not x1863) x1507) +:assumption (or (not x1863) x1850) +:assumption (or (not x95) (not x1846) (not x1845) (not x1852) (not x1853) (not x1854) (not x1855) (not x1507) x1864) +:assumption (or (not x1864) x95) +:assumption (or (not x1864) x1846) +:assumption (or (not x1864) x1845) +:assumption (or (not x1864) x1852) +:assumption (or (not x1864) x1853) +:assumption (or (not x1864) x1854) +:assumption (or (not x1864) x1855) +:assumption (or (not x1864) x1507) +:assumption (or (not x95) (not x1865) (not x1845) (not x1507) (not x1508) (not x1509) (not x1508) x1866) +:assumption (or (not x1866) x95) +:assumption (or (not x1866) x1865) +:assumption (or (not x1866) x1845) +:assumption (or (not x1866) x1507) +:assumption (or (not x1866) x1508) +:assumption (or (not x1866) x1509) +:assumption (or (not x1866) x1508) +:assumption (or x1867 (not x1866)) +:assumption (or x1867 (not x1864)) +:assumption (or x1867 (not x1863)) +:assumption (or x1867 (not x1862)) +:assumption (or x1866 x1864 x1863 x1862 (not x1867)) +:assumption (or (not x93) (not x1845) (not x1846) (not x1847) (not x1848) x1868) +:assumption (or (not x1868) x93) +:assumption (or (not x1868) x1845) +:assumption (or (not x1868) x1846) +:assumption (or (not x1868) x1847) +:assumption (or (not x1868) x1848) +:assumption (or (not x81) (not x1846) (not x1845) (not x1507) (not x1850) x1869) +:assumption (or (not x1869) x81) +:assumption (or (not x1869) x1846) +:assumption (or (not x1869) x1845) +:assumption (or (not x1869) x1507) +:assumption (or (not x1869) x1850) +:assumption (or (not x94) (not x1846) (not x1845) (not x1852) (not x1853) (not x1854) (not x1855) (not x1507) x1870) +:assumption (or (not x1870) x94) +:assumption (or (not x1870) x1846) +:assumption (or (not x1870) x1845) +:assumption (or (not x1870) x1852) +:assumption (or (not x1870) x1853) +:assumption (or (not x1870) x1854) +:assumption (or (not x1870) x1855) +:assumption (or (not x1870) x1507) +:assumption (or (not x1871) (not x1872) (not x1845) (not x1507) (not x1508) (not x1509) (not x1508) x1873) +:assumption (or (not x1873) x1871) +:assumption (or (not x1873) x1872) +:assumption (or (not x1873) x1845) +:assumption (or (not x1873) x1507) +:assumption (or (not x1873) x1508) +:assumption (or (not x1873) x1509) +:assumption (or (not x1873) x1508) +:assumption (or x1874 (not x1873)) +:assumption (or x1874 (not x1870)) +:assumption (or x1874 (not x1869)) +:assumption (or x1874 (not x1868)) +:assumption (or x1873 x1870 x1869 x1868 (not x1874)) +:assumption (or (not x92) (not x1845) (not x1846) (not x1847) (not x1848) x1875) +:assumption (or (not x1875) x92) +:assumption (or (not x1875) x1845) +:assumption (or (not x1875) x1846) +:assumption (or (not x1875) x1847) +:assumption (or (not x1875) x1848) +:assumption (or (not x80) (not x1846) (not x1845) (not x1507) (not x1850) x1876) +:assumption (or (not x1876) x80) +:assumption (or (not x1876) x1846) +:assumption (or (not x1876) x1845) +:assumption (or (not x1876) x1507) +:assumption (or (not x1876) x1850) +:assumption (or (not x93) (not x1846) (not x1845) (not x1852) (not x1853) (not x1854) (not x1855) (not x1507) x1877) +:assumption (or (not x1877) x93) +:assumption (or (not x1877) x1846) +:assumption (or (not x1877) x1845) +:assumption (or (not x1877) x1852) +:assumption (or (not x1877) x1853) +:assumption (or (not x1877) x1854) +:assumption (or (not x1877) x1855) +:assumption (or (not x1877) x1507) +:assumption (or (not x1878) (not x1879) (not x1845) (not x1507) (not x1508) (not x1509) (not x1508) x1880) +:assumption (or (not x1880) x1878) +:assumption (or (not x1880) x1879) +:assumption (or (not x1880) x1845) +:assumption (or (not x1880) x1507) +:assumption (or (not x1880) x1508) +:assumption (or (not x1880) x1509) +:assumption (or (not x1880) x1508) +:assumption (or x1881 (not x1880)) +:assumption (or x1881 (not x1877)) +:assumption (or x1881 (not x1876)) +:assumption (or x1881 (not x1875)) +:assumption (or x1880 x1877 x1876 x1875 (not x1881)) +:assumption (or (not x91) (not x1845) (not x1846) (not x1847) (not x1848) x1882) +:assumption (or (not x1882) x91) +:assumption (or (not x1882) x1845) +:assumption (or (not x1882) x1846) +:assumption (or (not x1882) x1847) +:assumption (or (not x1882) x1848) +:assumption (or (not x95) (not x1846) (not x1845) (not x1507) (not x1850) x1883) +:assumption (or (not x1883) x95) +:assumption (or (not x1883) x1846) +:assumption (or (not x1883) x1845) +:assumption (or (not x1883) x1507) +:assumption (or (not x1883) x1850) +:assumption (or (not x92) (not x1846) (not x1845) (not x1852) (not x1853) (not x1854) (not x1855) (not x1507) x1884) +:assumption (or (not x1884) x92) +:assumption (or (not x1884) x1846) +:assumption (or (not x1884) x1845) +:assumption (or (not x1884) x1852) +:assumption (or (not x1884) x1853) +:assumption (or (not x1884) x1854) +:assumption (or (not x1884) x1855) +:assumption (or (not x1884) x1507) +:assumption (or (not x1885) (not x1886) (not x1845) (not x1507) (not x1508) (not x1509) (not x1508) x1887) +:assumption (or (not x1887) x1885) +:assumption (or (not x1887) x1886) +:assumption (or (not x1887) x1845) +:assumption (or (not x1887) x1507) +:assumption (or (not x1887) x1508) +:assumption (or (not x1887) x1509) +:assumption (or (not x1887) x1508) +:assumption (or x1888 (not x1887)) +:assumption (or x1888 (not x1884)) +:assumption (or x1888 (not x1883)) +:assumption (or x1888 (not x1882)) +:assumption (or x1887 x1884 x1883 x1882 (not x1888)) +:assumption (or (not x90) (not x1845) (not x1846) (not x1847) (not x1848) x1889) +:assumption (or (not x1889) x90) +:assumption (or (not x1889) x1845) +:assumption (or (not x1889) x1846) +:assumption (or (not x1889) x1847) +:assumption (or (not x1889) x1848) +:assumption (or (not x94) (not x1846) (not x1845) (not x1507) (not x1850) x1890) +:assumption (or (not x1890) x94) +:assumption (or (not x1890) x1846) +:assumption (or (not x1890) x1845) +:assumption (or (not x1890) x1507) +:assumption (or (not x1890) x1850) +:assumption (or (not x91) (not x1846) (not x1845) (not x1852) (not x1853) (not x1854) (not x1855) (not x1507) x1891) +:assumption (or (not x1891) x91) +:assumption (or (not x1891) x1846) +:assumption (or (not x1891) x1845) +:assumption (or (not x1891) x1852) +:assumption (or (not x1891) x1853) +:assumption (or (not x1891) x1854) +:assumption (or (not x1891) x1855) +:assumption (or (not x1891) x1507) +:assumption (or (not x91) (not x1892) (not x1845) (not x1507) (not x1508) (not x1509) (not x1508) x1893) +:assumption (or (not x1893) x91) +:assumption (or (not x1893) x1892) +:assumption (or (not x1893) x1845) +:assumption (or (not x1893) x1507) +:assumption (or (not x1893) x1508) +:assumption (or (not x1893) x1509) +:assumption (or (not x1893) x1508) +:assumption (or x1894 (not x1893)) +:assumption (or x1894 (not x1891)) +:assumption (or x1894 (not x1890)) +:assumption (or x1894 (not x1889)) +:assumption (or x1893 x1891 x1890 x1889 (not x1894)) +:assumption (or (not x89) (not x1845) (not x1846) (not x1847) (not x1848) x1895) +:assumption (or (not x1895) x89) +:assumption (or (not x1895) x1845) +:assumption (or (not x1895) x1846) +:assumption (or (not x1895) x1847) +:assumption (or (not x1895) x1848) +:assumption (or (not x93) (not x1846) (not x1845) (not x1507) (not x1850) x1896) +:assumption (or (not x1896) x93) +:assumption (or (not x1896) x1846) +:assumption (or (not x1896) x1845) +:assumption (or (not x1896) x1507) +:assumption (or (not x1896) x1850) +:assumption (or (not x90) (not x1846) (not x1845) (not x1852) (not x1853) (not x1854) (not x1855) (not x1507) x1897) +:assumption (or (not x1897) x90) +:assumption (or (not x1897) x1846) +:assumption (or (not x1897) x1845) +:assumption (or (not x1897) x1852) +:assumption (or (not x1897) x1853) +:assumption (or (not x1897) x1854) +:assumption (or (not x1897) x1855) +:assumption (or (not x1897) x1507) +:assumption (or (not x1898) (not x1899) (not x1845) (not x1507) (not x1508) (not x1509) (not x1508) x1900) +:assumption (or (not x1900) x1898) +:assumption (or (not x1900) x1899) +:assumption (or (not x1900) x1845) +:assumption (or (not x1900) x1507) +:assumption (or (not x1900) x1508) +:assumption (or (not x1900) x1509) +:assumption (or (not x1900) x1508) +:assumption (or x1901 (not x1900)) +:assumption (or x1901 (not x1897)) +:assumption (or x1901 (not x1896)) +:assumption (or x1901 (not x1895)) +:assumption (or x1900 x1897 x1896 x1895 (not x1901)) +:assumption (or (not x88) (not x1845) (not x1846) (not x1847) (not x1848) x1902) +:assumption (or (not x1902) x88) +:assumption (or (not x1902) x1845) +:assumption (or (not x1902) x1846) +:assumption (or (not x1902) x1847) +:assumption (or (not x1902) x1848) +:assumption (or (not x92) (not x1846) (not x1845) (not x1507) (not x1850) x1903) +:assumption (or (not x1903) x92) +:assumption (or (not x1903) x1846) +:assumption (or (not x1903) x1845) +:assumption (or (not x1903) x1507) +:assumption (or (not x1903) x1850) +:assumption (or (not x89) (not x1846) (not x1845) (not x1852) (not x1853) (not x1854) (not x1855) (not x1507) x1904) +:assumption (or (not x1904) x89) +:assumption (or (not x1904) x1846) +:assumption (or (not x1904) x1845) +:assumption (or (not x1904) x1852) +:assumption (or (not x1904) x1853) +:assumption (or (not x1904) x1854) +:assumption (or (not x1904) x1855) +:assumption (or (not x1904) x1507) +:assumption (or (not x1905) (not x1906) (not x1845) (not x1507) (not x1508) (not x1509) (not x1508) x1907) +:assumption (or (not x1907) x1905) +:assumption (or (not x1907) x1906) +:assumption (or (not x1907) x1845) +:assumption (or (not x1907) x1507) +:assumption (or (not x1907) x1508) +:assumption (or (not x1907) x1509) +:assumption (or (not x1907) x1508) +:assumption (or x1908 (not x1907)) +:assumption (or x1908 (not x1904)) +:assumption (or x1908 (not x1903)) +:assumption (or x1908 (not x1902)) +:assumption (or x1907 x1904 x1903 x1902 (not x1908)) +:assumption (or (not x87) (not x1845) (not x1846) (not x1847) (not x1848) x1909) +:assumption (or (not x1909) x87) +:assumption (or (not x1909) x1845) +:assumption (or (not x1909) x1846) +:assumption (or (not x1909) x1847) +:assumption (or (not x1909) x1848) +:assumption (or (not x91) (not x1846) (not x1845) (not x1507) (not x1850) x1910) +:assumption (or (not x1910) x91) +:assumption (or (not x1910) x1846) +:assumption (or (not x1910) x1845) +:assumption (or (not x1910) x1507) +:assumption (or (not x1910) x1850) +:assumption (or (not x88) (not x1846) (not x1845) (not x1852) (not x1853) (not x1854) (not x1855) (not x1507) x1911) +:assumption (or (not x1911) x88) +:assumption (or (not x1911) x1846) +:assumption (or (not x1911) x1845) +:assumption (or (not x1911) x1852) +:assumption (or (not x1911) x1853) +:assumption (or (not x1911) x1854) +:assumption (or (not x1911) x1855) +:assumption (or (not x1911) x1507) +:assumption (or (not x1912) (not x1913) (not x1845) (not x1507) (not x1508) (not x1509) (not x1508) x1914) +:assumption (or (not x1914) x1912) +:assumption (or (not x1914) x1913) +:assumption (or (not x1914) x1845) +:assumption (or (not x1914) x1507) +:assumption (or (not x1914) x1508) +:assumption (or (not x1914) x1509) +:assumption (or (not x1914) x1508) +:assumption (or x1915 (not x1914)) +:assumption (or x1915 (not x1911)) +:assumption (or x1915 (not x1910)) +:assumption (or x1915 (not x1909)) +:assumption (or x1914 x1911 x1910 x1909 (not x1915)) +:assumption (or (not x86) (not x1845) (not x1846) (not x1847) (not x1848) x1916) +:assumption (or (not x1916) x86) +:assumption (or (not x1916) x1845) +:assumption (or (not x1916) x1846) +:assumption (or (not x1916) x1847) +:assumption (or (not x1916) x1848) +:assumption (or (not x90) (not x1846) (not x1845) (not x1507) (not x1850) x1917) +:assumption (or (not x1917) x90) +:assumption (or (not x1917) x1846) +:assumption (or (not x1917) x1845) +:assumption (or (not x1917) x1507) +:assumption (or (not x1917) x1850) +:assumption (or (not x87) (not x1846) (not x1845) (not x1852) (not x1853) (not x1854) (not x1855) (not x1507) x1918) +:assumption (or (not x1918) x87) +:assumption (or (not x1918) x1846) +:assumption (or (not x1918) x1845) +:assumption (or (not x1918) x1852) +:assumption (or (not x1918) x1853) +:assumption (or (not x1918) x1854) +:assumption (or (not x1918) x1855) +:assumption (or (not x1918) x1507) +:assumption (or (not x87) (not x1919) (not x1845) (not x1507) (not x1508) (not x1509) (not x1508) x1920) +:assumption (or (not x1920) x87) +:assumption (or (not x1920) x1919) +:assumption (or (not x1920) x1845) +:assumption (or (not x1920) x1507) +:assumption (or (not x1920) x1508) +:assumption (or (not x1920) x1509) +:assumption (or (not x1920) x1508) +:assumption (or x1921 (not x1920)) +:assumption (or x1921 (not x1918)) +:assumption (or x1921 (not x1917)) +:assumption (or x1921 (not x1916)) +:assumption (or x1920 x1918 x1917 x1916 (not x1921)) +:assumption (or (not x85) (not x1845) (not x1846) (not x1847) (not x1848) x1922) +:assumption (or (not x1922) x85) +:assumption (or (not x1922) x1845) +:assumption (or (not x1922) x1846) +:assumption (or (not x1922) x1847) +:assumption (or (not x1922) x1848) +:assumption (or (not x89) (not x1846) (not x1845) (not x1507) (not x1850) x1923) +:assumption (or (not x1923) x89) +:assumption (or (not x1923) x1846) +:assumption (or (not x1923) x1845) +:assumption (or (not x1923) x1507) +:assumption (or (not x1923) x1850) +:assumption (or (not x86) (not x1846) (not x1845) (not x1852) (not x1853) (not x1854) (not x1855) (not x1507) x1924) +:assumption (or (not x1924) x86) +:assumption (or (not x1924) x1846) +:assumption (or (not x1924) x1845) +:assumption (or (not x1924) x1852) +:assumption (or (not x1924) x1853) +:assumption (or (not x1924) x1854) +:assumption (or (not x1924) x1855) +:assumption (or (not x1924) x1507) +:assumption (or (not x1925) (not x1926) (not x1845) (not x1507) (not x1508) (not x1509) (not x1508) x1927) +:assumption (or (not x1927) x1925) +:assumption (or (not x1927) x1926) +:assumption (or (not x1927) x1845) +:assumption (or (not x1927) x1507) +:assumption (or (not x1927) x1508) +:assumption (or (not x1927) x1509) +:assumption (or (not x1927) x1508) +:assumption (or x1928 (not x1927)) +:assumption (or x1928 (not x1924)) +:assumption (or x1928 (not x1923)) +:assumption (or x1928 (not x1922)) +:assumption (or x1927 x1924 x1923 x1922 (not x1928)) +:assumption (or (not x84) (not x1845) (not x1846) (not x1847) (not x1848) x1929) +:assumption (or (not x1929) x84) +:assumption (or (not x1929) x1845) +:assumption (or (not x1929) x1846) +:assumption (or (not x1929) x1847) +:assumption (or (not x1929) x1848) +:assumption (or (not x88) (not x1846) (not x1845) (not x1507) (not x1850) x1930) +:assumption (or (not x1930) x88) +:assumption (or (not x1930) x1846) +:assumption (or (not x1930) x1845) +:assumption (or (not x1930) x1507) +:assumption (or (not x1930) x1850) +:assumption (or (not x85) (not x1846) (not x1845) (not x1852) (not x1853) (not x1854) (not x1855) (not x1507) x1931) +:assumption (or (not x1931) x85) +:assumption (or (not x1931) x1846) +:assumption (or (not x1931) x1845) +:assumption (or (not x1931) x1852) +:assumption (or (not x1931) x1853) +:assumption (or (not x1931) x1854) +:assumption (or (not x1931) x1855) +:assumption (or (not x1931) x1507) +:assumption (or (not x1932) (not x1933) (not x1845) (not x1507) (not x1508) (not x1509) (not x1508) x1934) +:assumption (or (not x1934) x1932) +:assumption (or (not x1934) x1933) +:assumption (or (not x1934) x1845) +:assumption (or (not x1934) x1507) +:assumption (or (not x1934) x1508) +:assumption (or (not x1934) x1509) +:assumption (or (not x1934) x1508) +:assumption (or x1935 (not x1934)) +:assumption (or x1935 (not x1931)) +:assumption (or x1935 (not x1930)) +:assumption (or x1935 (not x1929)) +:assumption (or x1934 x1931 x1930 x1929 (not x1935)) +:assumption (or (not x83) (not x1845) (not x1846) (not x1847) (not x1848) x1936) +:assumption (or (not x1936) x83) +:assumption (or (not x1936) x1845) +:assumption (or (not x1936) x1846) +:assumption (or (not x1936) x1847) +:assumption (or (not x1936) x1848) +:assumption (or (not x87) (not x1846) (not x1845) (not x1507) (not x1850) x1937) +:assumption (or (not x1937) x87) +:assumption (or (not x1937) x1846) +:assumption (or (not x1937) x1845) +:assumption (or (not x1937) x1507) +:assumption (or (not x1937) x1850) +:assumption (or (not x84) (not x1846) (not x1845) (not x1852) (not x1853) (not x1854) (not x1855) (not x1507) x1938) +:assumption (or (not x1938) x84) +:assumption (or (not x1938) x1846) +:assumption (or (not x1938) x1845) +:assumption (or (not x1938) x1852) +:assumption (or (not x1938) x1853) +:assumption (or (not x1938) x1854) +:assumption (or (not x1938) x1855) +:assumption (or (not x1938) x1507) +:assumption (or (not x1939) (not x1940) (not x1845) (not x1507) (not x1508) (not x1509) (not x1508) x1941) +:assumption (or (not x1941) x1939) +:assumption (or (not x1941) x1940) +:assumption (or (not x1941) x1845) +:assumption (or (not x1941) x1507) +:assumption (or (not x1941) x1508) +:assumption (or (not x1941) x1509) +:assumption (or (not x1941) x1508) +:assumption (or x1942 (not x1941)) +:assumption (or x1942 (not x1938)) +:assumption (or x1942 (not x1937)) +:assumption (or x1942 (not x1936)) +:assumption (or x1941 x1938 x1937 x1936 (not x1942)) +:assumption (or (not x82) (not x1845) (not x1846) (not x1847) (not x1848) x1943) +:assumption (or (not x1943) x82) +:assumption (or (not x1943) x1845) +:assumption (or (not x1943) x1846) +:assumption (or (not x1943) x1847) +:assumption (or (not x1943) x1848) +:assumption (or (not x86) (not x1846) (not x1845) (not x1507) (not x1850) x1944) +:assumption (or (not x1944) x86) +:assumption (or (not x1944) x1846) +:assumption (or (not x1944) x1845) +:assumption (or (not x1944) x1507) +:assumption (or (not x1944) x1850) +:assumption (or (not x83) (not x1846) (not x1845) (not x1852) (not x1853) (not x1854) (not x1855) (not x1507) x1945) +:assumption (or (not x1945) x83) +:assumption (or (not x1945) x1846) +:assumption (or (not x1945) x1845) +:assumption (or (not x1945) x1852) +:assumption (or (not x1945) x1853) +:assumption (or (not x1945) x1854) +:assumption (or (not x1945) x1855) +:assumption (or (not x1945) x1507) +:assumption (or (not x83) (not x1946) (not x1845) (not x1507) (not x1508) (not x1509) (not x1508) x1947) +:assumption (or (not x1947) x83) +:assumption (or (not x1947) x1946) +:assumption (or (not x1947) x1845) +:assumption (or (not x1947) x1507) +:assumption (or (not x1947) x1508) +:assumption (or (not x1947) x1509) +:assumption (or (not x1947) x1508) +:assumption (or x1948 (not x1947)) +:assumption (or x1948 (not x1945)) +:assumption (or x1948 (not x1944)) +:assumption (or x1948 (not x1943)) +:assumption (or x1947 x1945 x1944 x1943 (not x1948)) +:assumption (or (not x81) (not x1845) (not x1846) (not x1847) (not x1848) x1949) +:assumption (or (not x1949) x81) +:assumption (or (not x1949) x1845) +:assumption (or (not x1949) x1846) +:assumption (or (not x1949) x1847) +:assumption (or (not x1949) x1848) +:assumption (or (not x85) (not x1846) (not x1845) (not x1507) (not x1850) x1950) +:assumption (or (not x1950) x85) +:assumption (or (not x1950) x1846) +:assumption (or (not x1950) x1845) +:assumption (or (not x1950) x1507) +:assumption (or (not x1950) x1850) +:assumption (or (not x82) (not x1846) (not x1845) (not x1852) (not x1853) (not x1854) (not x1855) (not x1507) x1951) +:assumption (or (not x1951) x82) +:assumption (or (not x1951) x1846) +:assumption (or (not x1951) x1845) +:assumption (or (not x1951) x1852) +:assumption (or (not x1951) x1853) +:assumption (or (not x1951) x1854) +:assumption (or (not x1951) x1855) +:assumption (or (not x1951) x1507) +:assumption (or (not x1952) (not x1953) (not x1845) (not x1507) (not x1508) (not x1509) (not x1508) x1954) +:assumption (or (not x1954) x1952) +:assumption (or (not x1954) x1953) +:assumption (or (not x1954) x1845) +:assumption (or (not x1954) x1507) +:assumption (or (not x1954) x1508) +:assumption (or (not x1954) x1509) +:assumption (or (not x1954) x1508) +:assumption (or x1955 (not x1954)) +:assumption (or x1955 (not x1951)) +:assumption (or x1955 (not x1950)) +:assumption (or x1955 (not x1949)) +:assumption (or x1954 x1951 x1950 x1949 (not x1955)) +:assumption (or x1848 (not x1956)) +:assumption (or x1848 (not x1861)) +:assumption (or x1848 (not x1957)) +:assumption (or x1848 (not x1958)) +:assumption (or x1848 (not x1959)) +:assumption (or x1848 (not x1960)) +:assumption (or x1848 x1507) +:assumption (or x1956 x1861 x1957 x1958 x1959 x1960 (not x1507) (not x1848)) +:assumption (or x95 x94 x93 x92 x91 x90 x89 x88 x87 x86 x85 x84 x83 x82 x81 x80 x1861) +:assumption (or (not x1861) (not x95)) +:assumption (or (not x1861) (not x94)) +:assumption (or (not x1861) (not x93)) +:assumption (or (not x1861) (not x92)) +:assumption (or (not x1861) (not x91)) +:assumption (or (not x1861) (not x90)) +:assumption (or (not x1861) (not x89)) +:assumption (or (not x1861) (not x88)) +:assumption (or (not x1861) (not x87)) +:assumption (or (not x1861) (not x86)) +:assumption (or (not x1861) (not x85)) +:assumption (or (not x1861) (not x84)) +:assumption (or (not x1861) (not x83)) +:assumption (or (not x1861) (not x82)) +:assumption (or (not x1861) (not x81)) +:assumption (or (not x1861) (not x80)) +:assumption (or x1847 (not x1956)) +:assumption (or x1847 (not x1861)) +:assumption (or x1847 x1507) +:assumption (or x1847 (not x1961)) +:assumption (or x1956 x1861 (not x1507) x1961 (not x1847)) +:assumption (or (not x80) (not x1845) (not x1846) (not x1847) (not x1848) x1962) +:assumption (or (not x1962) x80) +:assumption (or (not x1962) x1845) +:assumption (or (not x1962) x1846) +:assumption (or (not x1962) x1847) +:assumption (or (not x1962) x1848) +:assumption (or x1963 (not x81) x1964) +:assumption (or (not x1964) (not x1963)) +:assumption (or (not x1964) x81) +:assumption (or x1953 x1963 (not x82) x1965) +:assumption (or (not x1965) (not x1953)) +:assumption (or (not x1965) (not x1963)) +:assumption (or (not x1965) x82) +:assumption (or x1946 x1953 x1963 (not x83) x1966) +:assumption (or (not x1966) (not x1946)) +:assumption (or (not x1966) (not x1953)) +:assumption (or (not x1966) (not x1963)) +:assumption (or (not x1966) x83) +:assumption (or x1857 (not x80)) +:assumption (or x1857 (not x1966)) +:assumption (or x1857 (not x1965)) +:assumption (or x1857 (not x1964)) +:assumption (or x80 x1966 x1965 x1964 (not x1857)) +:assumption (or (not x1857) (not x1858) (not x1507) (not x1508) (not x1509) (not x1508) x1967) +:assumption (or (not x1967) x1857) +:assumption (or (not x1967) x1858) +:assumption (or (not x1967) x1507) +:assumption (or (not x1967) x1508) +:assumption (or (not x1967) x1509) +:assumption (or (not x1967) x1508) +:assumption (or x1968 (not x1967)) +:assumption (or x1968 x1858) +:assumption (or x1967 (not x1858) (not x1968)) +:assumption (or (not x1969) (not x1963) (not x1507) (not x1508) (not x1509) (not x1508) x1970) +:assumption (or (not x1970) x1969) +:assumption (or (not x1970) x1963) +:assumption (or (not x1970) x1507) +:assumption (or (not x1970) x1508) +:assumption (or (not x1970) x1509) +:assumption (or (not x1970) x1508) +:assumption (or x1971 (not x1970)) +:assumption (or x1971 x1963) +:assumption (or x1970 (not x1963) (not x1971)) +:assumption (or x1946 (not x83) x1972) +:assumption (or (not x1972) (not x1946)) +:assumption (or (not x1972) x83) +:assumption (or x1952 (not x82)) +:assumption (or x1952 (not x1972)) +:assumption (or x82 x1972 (not x1952)) +:assumption (or (not x1952) (not x1953) (not x1507) (not x1508) (not x1509) (not x1508) x1973) +:assumption (or (not x1973) x1952) +:assumption (or (not x1973) x1953) +:assumption (or (not x1973) x1507) +:assumption (or (not x1973) x1508) +:assumption (or (not x1973) x1509) +:assumption (or (not x1973) x1508) +:assumption (or x1974 (not x1973)) +:assumption (or x1974 x1953) +:assumption (or x1973 (not x1953) (not x1974)) +:assumption (or (not x83) (not x1946) (not x1507) (not x1508) (not x1509) (not x1508) x1975) +:assumption (or (not x1975) x83) +:assumption (or (not x1975) x1946) +:assumption (or (not x1975) x1507) +:assumption (or (not x1975) x1508) +:assumption (or (not x1975) x1509) +:assumption (or (not x1975) x1508) +:assumption (or x1976 (not x1975)) +:assumption (or x1976 x1946) +:assumption (or x1975 (not x1946) (not x1976)) +:assumption (or (not x1976) (not x1974) (not x1971) (not x1968) (not x83) x1960) +:assumption (or (not x1960) x1976) +:assumption (or (not x1960) x1974) +:assumption (or (not x1960) x1971) +:assumption (or (not x1960) x1968) +:assumption (or (not x1960) x83) +:assumption (or x1933 (not x85) x1977) +:assumption (or (not x1977) (not x1933)) +:assumption (or (not x1977) x85) +:assumption (or x1926 x1933 (not x86) x1978) +:assumption (or (not x1978) (not x1926)) +:assumption (or (not x1978) (not x1933)) +:assumption (or (not x1978) x86) +:assumption (or x1919 x1926 x1933 (not x87) x1979) +:assumption (or (not x1979) (not x1919)) +:assumption (or (not x1979) (not x1926)) +:assumption (or (not x1979) (not x1933)) +:assumption (or (not x1979) x87) +:assumption (or x1939 (not x84)) +:assumption (or x1939 (not x1979)) +:assumption (or x1939 (not x1978)) +:assumption (or x1939 (not x1977)) +:assumption (or x84 x1979 x1978 x1977 (not x1939)) +:assumption (or (not x1939) (not x1940) (not x1507) (not x1508) (not x1509) (not x1508) x1980) +:assumption (or (not x1980) x1939) +:assumption (or (not x1980) x1940) +:assumption (or (not x1980) x1507) +:assumption (or (not x1980) x1508) +:assumption (or (not x1980) x1509) +:assumption (or (not x1980) x1508) +:assumption (or x1981 (not x1980)) +:assumption (or x1981 x1940) +:assumption (or x1980 (not x1940) (not x1981)) +:assumption (or x1926 (not x86) x1982) +:assumption (or (not x1982) (not x1926)) +:assumption (or (not x1982) x86) +:assumption (or x1919 x1926 (not x87) x1983) +:assumption (or (not x1983) (not x1919)) +:assumption (or (not x1983) (not x1926)) +:assumption (or (not x1983) x87) +:assumption (or x1932 (not x85)) +:assumption (or x1932 (not x1983)) +:assumption (or x1932 (not x1982)) +:assumption (or x85 x1983 x1982 (not x1932)) +:assumption (or (not x1932) (not x1933) (not x1507) (not x1508) (not x1509) (not x1508) x1984) +:assumption (or (not x1984) x1932) +:assumption (or (not x1984) x1933) +:assumption (or (not x1984) x1507) +:assumption (or (not x1984) x1508) +:assumption (or (not x1984) x1509) +:assumption (or (not x1984) x1508) +:assumption (or x1985 (not x1984)) +:assumption (or x1985 x1933) +:assumption (or x1984 (not x1933) (not x1985)) +:assumption (or x1919 (not x87) x1986) +:assumption (or (not x1986) (not x1919)) +:assumption (or (not x1986) x87) +:assumption (or x1925 (not x86)) +:assumption (or x1925 (not x1986)) +:assumption (or x86 x1986 (not x1925)) +:assumption (or (not x1925) (not x1926) (not x1507) (not x1508) (not x1509) (not x1508) x1987) +:assumption (or (not x1987) x1925) +:assumption (or (not x1987) x1926) +:assumption (or (not x1987) x1507) +:assumption (or (not x1987) x1508) +:assumption (or (not x1987) x1509) +:assumption (or (not x1987) x1508) +:assumption (or x1988 (not x1987)) +:assumption (or x1988 x1926) +:assumption (or x1987 (not x1926) (not x1988)) +:assumption (or (not x87) (not x1919) (not x1507) (not x1508) (not x1509) (not x1508) x1989) +:assumption (or (not x1989) x87) +:assumption (or (not x1989) x1919) +:assumption (or (not x1989) x1507) +:assumption (or (not x1989) x1508) +:assumption (or (not x1989) x1509) +:assumption (or (not x1989) x1508) +:assumption (or x1990 (not x1989)) +:assumption (or x1990 x1919) +:assumption (or x1989 (not x1919) (not x1990)) +:assumption (or (not x1990) (not x1988) (not x1985) (not x1981) (not x87) x1959) +:assumption (or (not x1959) x1990) +:assumption (or (not x1959) x1988) +:assumption (or (not x1959) x1985) +:assumption (or (not x1959) x1981) +:assumption (or (not x1959) x87) +:assumption (or x1906 (not x89) x1991) +:assumption (or (not x1991) (not x1906)) +:assumption (or (not x1991) x89) +:assumption (or x1899 x1906 (not x90) x1992) +:assumption (or (not x1992) (not x1899)) +:assumption (or (not x1992) (not x1906)) +:assumption (or (not x1992) x90) +:assumption (or x1892 x1899 x1906 (not x91) x1993) +:assumption (or (not x1993) (not x1892)) +:assumption (or (not x1993) (not x1899)) +:assumption (or (not x1993) (not x1906)) +:assumption (or (not x1993) x91) +:assumption (or x1912 (not x88)) +:assumption (or x1912 (not x1993)) +:assumption (or x1912 (not x1992)) +:assumption (or x1912 (not x1991)) +:assumption (or x88 x1993 x1992 x1991 (not x1912)) +:assumption (or (not x1912) (not x1913) (not x1507) (not x1508) (not x1509) (not x1508) x1994) +:assumption (or (not x1994) x1912) +:assumption (or (not x1994) x1913) +:assumption (or (not x1994) x1507) +:assumption (or (not x1994) x1508) +:assumption (or (not x1994) x1509) +:assumption (or (not x1994) x1508) +:assumption (or x1995 (not x1994)) +:assumption (or x1995 x1913) +:assumption (or x1994 (not x1913) (not x1995)) +:assumption (or x1899 (not x90) x1996) +:assumption (or (not x1996) (not x1899)) +:assumption (or (not x1996) x90) +:assumption (or x1892 x1899 (not x91) x1997) +:assumption (or (not x1997) (not x1892)) +:assumption (or (not x1997) (not x1899)) +:assumption (or (not x1997) x91) +:assumption (or x1905 (not x89)) +:assumption (or x1905 (not x1997)) +:assumption (or x1905 (not x1996)) +:assumption (or x89 x1997 x1996 (not x1905)) +:assumption (or (not x1905) (not x1906) (not x1507) (not x1508) (not x1509) (not x1508) x1998) +:assumption (or (not x1998) x1905) +:assumption (or (not x1998) x1906) +:assumption (or (not x1998) x1507) +:assumption (or (not x1998) x1508) +:assumption (or (not x1998) x1509) +:assumption (or (not x1998) x1508) +:assumption (or x1999 (not x1998)) +:assumption (or x1999 x1906) +:assumption (or x1998 (not x1906) (not x1999)) +:assumption (or x1892 (not x91) x2000) +:assumption (or (not x2000) (not x1892)) +:assumption (or (not x2000) x91) +:assumption (or x1898 (not x90)) +:assumption (or x1898 (not x2000)) +:assumption (or x90 x2000 (not x1898)) +:assumption (or (not x1898) (not x1899) (not x1507) (not x1508) (not x1509) (not x1508) x2001) +:assumption (or (not x2001) x1898) +:assumption (or (not x2001) x1899) +:assumption (or (not x2001) x1507) +:assumption (or (not x2001) x1508) +:assumption (or (not x2001) x1509) +:assumption (or (not x2001) x1508) +:assumption (or x2002 (not x2001)) +:assumption (or x2002 x1899) +:assumption (or x2001 (not x1899) (not x2002)) +:assumption (or (not x91) (not x1892) (not x1507) (not x1508) (not x1509) (not x1508) x2003) +:assumption (or (not x2003) x91) +:assumption (or (not x2003) x1892) +:assumption (or (not x2003) x1507) +:assumption (or (not x2003) x1508) +:assumption (or (not x2003) x1509) +:assumption (or (not x2003) x1508) +:assumption (or x2004 (not x2003)) +:assumption (or x2004 x1892) +:assumption (or x2003 (not x1892) (not x2004)) +:assumption (or (not x2004) (not x2002) (not x1999) (not x1995) (not x91) x1958) +:assumption (or (not x1958) x2004) +:assumption (or (not x1958) x2002) +:assumption (or (not x1958) x1999) +:assumption (or (not x1958) x1995) +:assumption (or (not x1958) x91) +:assumption (or x1879 (not x93) x2005) +:assumption (or (not x2005) (not x1879)) +:assumption (or (not x2005) x93) +:assumption (or x1872 x1879 (not x94) x2006) +:assumption (or (not x2006) (not x1872)) +:assumption (or (not x2006) (not x1879)) +:assumption (or (not x2006) x94) +:assumption (or x1865 x1872 x1879 (not x95) x2007) +:assumption (or (not x2007) (not x1865)) +:assumption (or (not x2007) (not x1872)) +:assumption (or (not x2007) (not x1879)) +:assumption (or (not x2007) x95) +:assumption (or x1885 (not x92)) +:assumption (or x1885 (not x2007)) +:assumption (or x1885 (not x2006)) +:assumption (or x1885 (not x2005)) +:assumption (or x92 x2007 x2006 x2005 (not x1885)) +:assumption (or (not x1885) (not x1886) (not x1507) (not x1508) (not x1509) (not x1508) x2008) +:assumption (or (not x2008) x1885) +:assumption (or (not x2008) x1886) +:assumption (or (not x2008) x1507) +:assumption (or (not x2008) x1508) +:assumption (or (not x2008) x1509) +:assumption (or (not x2008) x1508) +:assumption (or x2009 (not x2008)) +:assumption (or x2009 x1886) +:assumption (or x2008 (not x1886) (not x2009)) +:assumption (or x1872 (not x94) x2010) +:assumption (or (not x2010) (not x1872)) +:assumption (or (not x2010) x94) +:assumption (or x1865 x1872 (not x95) x2011) +:assumption (or (not x2011) (not x1865)) +:assumption (or (not x2011) (not x1872)) +:assumption (or (not x2011) x95) +:assumption (or x1878 (not x93)) +:assumption (or x1878 (not x2011)) +:assumption (or x1878 (not x2010)) +:assumption (or x93 x2011 x2010 (not x1878)) +:assumption (or (not x1878) (not x1879) (not x1507) (not x1508) (not x1509) (not x1508) x2012) +:assumption (or (not x2012) x1878) +:assumption (or (not x2012) x1879) +:assumption (or (not x2012) x1507) +:assumption (or (not x2012) x1508) +:assumption (or (not x2012) x1509) +:assumption (or (not x2012) x1508) +:assumption (or x2013 (not x2012)) +:assumption (or x2013 x1879) +:assumption (or x2012 (not x1879) (not x2013)) +:assumption (or x1865 (not x95) x2014) +:assumption (or (not x2014) (not x1865)) +:assumption (or (not x2014) x95) +:assumption (or x1871 (not x94)) +:assumption (or x1871 (not x2014)) +:assumption (or x94 x2014 (not x1871)) +:assumption (or (not x1871) (not x1872) (not x1507) (not x1508) (not x1509) (not x1508) x2015) +:assumption (or (not x2015) x1871) +:assumption (or (not x2015) x1872) +:assumption (or (not x2015) x1507) +:assumption (or (not x2015) x1508) +:assumption (or (not x2015) x1509) +:assumption (or (not x2015) x1508) +:assumption (or x2016 (not x2015)) +:assumption (or x2016 x1872) +:assumption (or x2015 (not x1872) (not x2016)) +:assumption (or (not x95) (not x1865) (not x1507) (not x1508) (not x1509) (not x1508) x2017) +:assumption (or (not x2017) x95) +:assumption (or (not x2017) x1865) +:assumption (or (not x2017) x1507) +:assumption (or (not x2017) x1508) +:assumption (or (not x2017) x1509) +:assumption (or (not x2017) x1508) +:assumption (or x2018 (not x2017)) +:assumption (or x2018 x1865) +:assumption (or x2017 (not x1865) (not x2018)) +:assumption (or (not x2018) (not x2016) (not x2013) (not x2009) (not x95) x1957) +:assumption (or (not x1957) x2018) +:assumption (or (not x1957) x2016) +:assumption (or (not x1957) x2013) +:assumption (or (not x1957) x2009) +:assumption (or (not x1957) x95) +:assumption (or x1850 (not x1957)) +:assumption (or x1850 (not x1958)) +:assumption (or x1850 (not x1959)) +:assumption (or x1850 (not x1960)) +:assumption (or x1957 x1958 x1959 x1960 (not x1850)) +:assumption (or (not x84) (not x1846) (not x1845) (not x1507) (not x1850) x2019) +:assumption (or (not x2019) x84) +:assumption (or (not x2019) x1846) +:assumption (or (not x2019) x1845) +:assumption (or (not x2019) x1507) +:assumption (or (not x2019) x1850) +:assumption (or x2020 (not x1963)) +:assumption (or x2020 x81) +:assumption (or x1963 (not x81) (not x2020)) +:assumption (or x2021 (not x1953)) +:assumption (or x2021 (not x1963)) +:assumption (or x2021 x82) +:assumption (or x1953 x1963 (not x82) (not x2021)) +:assumption (or x2022 (not x1946)) +:assumption (or x2022 (not x1953)) +:assumption (or x2022 (not x1963)) +:assumption (or x2022 x83) +:assumption (or x1946 x1953 x1963 (not x83) (not x2022)) +:assumption (or x80 (not x2022) (not x2021) (not x2020) x2023) +:assumption (or (not x2023) (not x80)) +:assumption (or (not x2023) x2022) +:assumption (or (not x2023) x2021) +:assumption (or (not x2023) x2020) +:assumption (or x2024 (not x2023)) +:assumption (or x2024 x1858) +:assumption (or x2024 x1507) +:assumption (or x2024 (not x2025)) +:assumption (or x2024 (not x2026)) +:assumption (or x2024 (not x2025)) +:assumption (or x2023 (not x1858) (not x1507) x2025 x2026 x2025 (not x2024)) +:assumption (or (not x2024) (not x1858) x1814) +:assumption (or (not x1814) x2024) +:assumption (or (not x1814) x1858) +:assumption (or x2027 (not x1953)) +:assumption (or x2027 x82) +:assumption (or x1953 (not x82) (not x2027)) +:assumption (or x2028 (not x1946)) +:assumption (or x2028 (not x1953)) +:assumption (or x2028 x83) +:assumption (or x1946 x1953 (not x83) (not x2028)) +:assumption (or x81 (not x2028) (not x2027) x2029) +:assumption (or (not x2029) (not x81)) +:assumption (or (not x2029) x2028) +:assumption (or (not x2029) x2027) +:assumption (or x2030 (not x2029)) +:assumption (or x2030 x1963) +:assumption (or x2030 x1507) +:assumption (or x2030 (not x2025)) +:assumption (or x2030 (not x2026)) +:assumption (or x2030 (not x2025)) +:assumption (or x2029 (not x1963) (not x1507) x2025 x2026 x2025 (not x2030)) +:assumption (or (not x2030) (not x1963) x1844) +:assumption (or (not x1844) x2030) +:assumption (or (not x1844) x1963) +:assumption (or x2031 (not x1946)) +:assumption (or x2031 x83) +:assumption (or x1946 (not x83) (not x2031)) +:assumption (or x82 (not x2031) x2032) +:assumption (or (not x2032) (not x82)) +:assumption (or (not x2032) x2031) +:assumption (or x2033 (not x2032)) +:assumption (or x2033 x1953) +:assumption (or x2033 x1507) +:assumption (or x2033 (not x2025)) +:assumption (or x2033 (not x2026)) +:assumption (or x2033 (not x2025)) +:assumption (or x2032 (not x1953) (not x1507) x2025 x2026 x2025 (not x2033)) +:assumption (or (not x2033) (not x1953) x1842) +:assumption (or (not x1842) x2033) +:assumption (or (not x1842) x1953) +:assumption (or x2034 x83) +:assumption (or x2034 x1946) +:assumption (or x2034 x1507) +:assumption (or x2034 (not x2025)) +:assumption (or x2034 (not x2026)) +:assumption (or x2034 (not x2025)) +:assumption (or (not x83) (not x1946) (not x1507) x2025 x2026 x2025 (not x2034)) +:assumption (or (not x2034) (not x1946) x1840) +:assumption (or (not x1840) x2034) +:assumption (or (not x1840) x1946) +:assumption (or x1855 (not x1840)) +:assumption (or x1855 (not x1842)) +:assumption (or x1855 (not x1844)) +:assumption (or x1855 (not x1814)) +:assumption (or x1855 x83) +:assumption (or x1840 x1842 x1844 x1814 (not x83) (not x1855)) +:assumption (or x2035 (not x1933)) +:assumption (or x2035 x85) +:assumption (or x1933 (not x85) (not x2035)) +:assumption (or x2036 (not x1926)) +:assumption (or x2036 (not x1933)) +:assumption (or x2036 x86) +:assumption (or x1926 x1933 (not x86) (not x2036)) +:assumption (or x2037 (not x1919)) +:assumption (or x2037 (not x1926)) +:assumption (or x2037 (not x1933)) +:assumption (or x2037 x87) +:assumption (or x1919 x1926 x1933 (not x87) (not x2037)) +:assumption (or x84 (not x2037) (not x2036) (not x2035) x2038) +:assumption (or (not x2038) (not x84)) +:assumption (or (not x2038) x2037) +:assumption (or (not x2038) x2036) +:assumption (or (not x2038) x2035) +:assumption (or x2039 (not x2038)) +:assumption (or x2039 x1940) +:assumption (or x2039 x1507) +:assumption (or x2039 (not x2025)) +:assumption (or x2039 (not x2026)) +:assumption (or x2039 (not x2025)) +:assumption (or x2038 (not x1940) (not x1507) x2025 x2026 x2025 (not x2039)) +:assumption (or (not x2039) (not x1940) x1838) +:assumption (or (not x1838) x2039) +:assumption (or (not x1838) x1940) +:assumption (or x2040 (not x1926)) +:assumption (or x2040 x86) +:assumption (or x1926 (not x86) (not x2040)) +:assumption (or x2041 (not x1919)) +:assumption (or x2041 (not x1926)) +:assumption (or x2041 x87) +:assumption (or x1919 x1926 (not x87) (not x2041)) +:assumption (or x85 (not x2041) (not x2040) x2042) +:assumption (or (not x2042) (not x85)) +:assumption (or (not x2042) x2041) +:assumption (or (not x2042) x2040) +:assumption (or x2043 (not x2042)) +:assumption (or x2043 x1933) +:assumption (or x2043 x1507) +:assumption (or x2043 (not x2025)) +:assumption (or x2043 (not x2026)) +:assumption (or x2043 (not x2025)) +:assumption (or x2042 (not x1933) (not x1507) x2025 x2026 x2025 (not x2043)) +:assumption (or (not x2043) (not x1933) x1836) +:assumption (or (not x1836) x2043) +:assumption (or (not x1836) x1933) +:assumption (or x2044 (not x1919)) +:assumption (or x2044 x87) +:assumption (or x1919 (not x87) (not x2044)) +:assumption (or x86 (not x2044) x2045) +:assumption (or (not x2045) (not x86)) +:assumption (or (not x2045) x2044) +:assumption (or x2046 (not x2045)) +:assumption (or x2046 x1926) +:assumption (or x2046 x1507) +:assumption (or x2046 (not x2025)) +:assumption (or x2046 (not x2026)) +:assumption (or x2046 (not x2025)) +:assumption (or x2045 (not x1926) (not x1507) x2025 x2026 x2025 (not x2046)) +:assumption (or (not x2046) (not x1926) x1834) +:assumption (or (not x1834) x2046) +:assumption (or (not x1834) x1926) +:assumption (or x2047 x87) +:assumption (or x2047 x1919) +:assumption (or x2047 x1507) +:assumption (or x2047 (not x2025)) +:assumption (or x2047 (not x2026)) +:assumption (or x2047 (not x2025)) +:assumption (or (not x87) (not x1919) (not x1507) x2025 x2026 x2025 (not x2047)) +:assumption (or (not x2047) (not x1919) x1832) +:assumption (or (not x1832) x2047) +:assumption (or (not x1832) x1919) +:assumption (or x1854 (not x1832)) +:assumption (or x1854 (not x1834)) +:assumption (or x1854 (not x1836)) +:assumption (or x1854 (not x1838)) +:assumption (or x1854 x87) +:assumption (or x1832 x1834 x1836 x1838 (not x87) (not x1854)) +:assumption (or x2048 (not x1906)) +:assumption (or x2048 x89) +:assumption (or x1906 (not x89) (not x2048)) +:assumption (or x2049 (not x1899)) +:assumption (or x2049 (not x1906)) +:assumption (or x2049 x90) +:assumption (or x1899 x1906 (not x90) (not x2049)) +:assumption (or x2050 (not x1892)) +:assumption (or x2050 (not x1899)) +:assumption (or x2050 (not x1906)) +:assumption (or x2050 x91) +:assumption (or x1892 x1899 x1906 (not x91) (not x2050)) +:assumption (or x88 (not x2050) (not x2049) (not x2048) x2051) +:assumption (or (not x2051) (not x88)) +:assumption (or (not x2051) x2050) +:assumption (or (not x2051) x2049) +:assumption (or (not x2051) x2048) +:assumption (or x2052 (not x2051)) +:assumption (or x2052 x1913) +:assumption (or x2052 x1507) +:assumption (or x2052 (not x2025)) +:assumption (or x2052 (not x2026)) +:assumption (or x2052 (not x2025)) +:assumption (or x2051 (not x1913) (not x1507) x2025 x2026 x2025 (not x2052)) +:assumption (or (not x2052) (not x1913) x1830) +:assumption (or (not x1830) x2052) +:assumption (or (not x1830) x1913) +:assumption (or x2053 (not x1899)) +:assumption (or x2053 x90) +:assumption (or x1899 (not x90) (not x2053)) +:assumption (or x2054 (not x1892)) +:assumption (or x2054 (not x1899)) +:assumption (or x2054 x91) +:assumption (or x1892 x1899 (not x91) (not x2054)) +:assumption (or x89 (not x2054) (not x2053) x2055) +:assumption (or (not x2055) (not x89)) +:assumption (or (not x2055) x2054) +:assumption (or (not x2055) x2053) +:assumption (or x2056 (not x2055)) +:assumption (or x2056 x1906) +:assumption (or x2056 x1507) +:assumption (or x2056 (not x2025)) +:assumption (or x2056 (not x2026)) +:assumption (or x2056 (not x2025)) +:assumption (or x2055 (not x1906) (not x1507) x2025 x2026 x2025 (not x2056)) +:assumption (or (not x2056) (not x1906) x1828) +:assumption (or (not x1828) x2056) +:assumption (or (not x1828) x1906) +:assumption (or x2057 (not x1892)) +:assumption (or x2057 x91) +:assumption (or x1892 (not x91) (not x2057)) +:assumption (or x90 (not x2057) x2058) +:assumption (or (not x2058) (not x90)) +:assumption (or (not x2058) x2057) +:assumption (or x2059 (not x2058)) +:assumption (or x2059 x1899) +:assumption (or x2059 x1507) +:assumption (or x2059 (not x2025)) +:assumption (or x2059 (not x2026)) +:assumption (or x2059 (not x2025)) +:assumption (or x2058 (not x1899) (not x1507) x2025 x2026 x2025 (not x2059)) +:assumption (or (not x2059) (not x1899) x1826) +:assumption (or (not x1826) x2059) +:assumption (or (not x1826) x1899) +:assumption (or x2060 x91) +:assumption (or x2060 x1892) +:assumption (or x2060 x1507) +:assumption (or x2060 (not x2025)) +:assumption (or x2060 (not x2026)) +:assumption (or x2060 (not x2025)) +:assumption (or (not x91) (not x1892) (not x1507) x2025 x2026 x2025 (not x2060)) +:assumption (or (not x2060) (not x1892) x1824) +:assumption (or (not x1824) x2060) +:assumption (or (not x1824) x1892) +:assumption (or x1853 (not x1824)) +:assumption (or x1853 (not x1826)) +:assumption (or x1853 (not x1828)) +:assumption (or x1853 (not x1830)) +:assumption (or x1853 x91) +:assumption (or x1824 x1826 x1828 x1830 (not x91) (not x1853)) +:assumption (or x2061 (not x1879)) +:assumption (or x2061 x93) +:assumption (or x1879 (not x93) (not x2061)) +:assumption (or x2062 (not x1872)) +:assumption (or x2062 (not x1879)) +:assumption (or x2062 x94) +:assumption (or x1872 x1879 (not x94) (not x2062)) +:assumption (or x2063 (not x1865)) +:assumption (or x2063 (not x1872)) +:assumption (or x2063 (not x1879)) +:assumption (or x2063 x95) +:assumption (or x1865 x1872 x1879 (not x95) (not x2063)) +:assumption (or x92 (not x2063) (not x2062) (not x2061) x2064) +:assumption (or (not x2064) (not x92)) +:assumption (or (not x2064) x2063) +:assumption (or (not x2064) x2062) +:assumption (or (not x2064) x2061) +:assumption (or x2065 (not x2064)) +:assumption (or x2065 x1886) +:assumption (or x2065 x1507) +:assumption (or x2065 (not x2025)) +:assumption (or x2065 (not x2026)) +:assumption (or x2065 (not x2025)) +:assumption (or x2064 (not x1886) (not x1507) x2025 x2026 x2025 (not x2065)) +:assumption (or (not x2065) (not x1886) x1822) +:assumption (or (not x1822) x2065) +:assumption (or (not x1822) x1886) +:assumption (or x2066 (not x1872)) +:assumption (or x2066 x94) +:assumption (or x1872 (not x94) (not x2066)) +:assumption (or x2067 (not x1865)) +:assumption (or x2067 (not x1872)) +:assumption (or x2067 x95) +:assumption (or x1865 x1872 (not x95) (not x2067)) +:assumption (or x93 (not x2067) (not x2066) x2068) +:assumption (or (not x2068) (not x93)) +:assumption (or (not x2068) x2067) +:assumption (or (not x2068) x2066) +:assumption (or x2069 (not x2068)) +:assumption (or x2069 x1879) +:assumption (or x2069 x1507) +:assumption (or x2069 (not x2025)) +:assumption (or x2069 (not x2026)) +:assumption (or x2069 (not x2025)) +:assumption (or x2068 (not x1879) (not x1507) x2025 x2026 x2025 (not x2069)) +:assumption (or (not x2069) (not x1879) x1820) +:assumption (or (not x1820) x2069) +:assumption (or (not x1820) x1879) +:assumption (or x2070 (not x1865)) +:assumption (or x2070 x95) +:assumption (or x1865 (not x95) (not x2070)) +:assumption (or x94 (not x2070) x2071) +:assumption (or (not x2071) (not x94)) +:assumption (or (not x2071) x2070) +:assumption (or x2072 (not x2071)) +:assumption (or x2072 x1872) +:assumption (or x2072 x1507) +:assumption (or x2072 (not x2025)) +:assumption (or x2072 (not x2026)) +:assumption (or x2072 (not x2025)) +:assumption (or x2071 (not x1872) (not x1507) x2025 x2026 x2025 (not x2072)) +:assumption (or (not x2072) (not x1872) x1818) +:assumption (or (not x1818) x2072) +:assumption (or (not x1818) x1872) +:assumption (or x2073 x95) +:assumption (or x2073 x1865) +:assumption (or x2073 x1507) +:assumption (or x2073 (not x2025)) +:assumption (or x2073 (not x2026)) +:assumption (or x2073 (not x2025)) +:assumption (or (not x95) (not x1865) (not x1507) x2025 x2026 x2025 (not x2073)) +:assumption (or (not x2073) (not x1865) x1816) +:assumption (or (not x1816) x2073) +:assumption (or (not x1816) x1865) +:assumption (or x1852 (not x1816)) +:assumption (or x1852 (not x1818)) +:assumption (or x1852 (not x1820)) +:assumption (or x1852 (not x1822)) +:assumption (or x1852 x95) +:assumption (or x1816 x1818 x1820 x1822 (not x95) (not x1852)) +:assumption (or (not x1852) (not x1853) (not x1854) (not x1855) x1961) +:assumption (or (not x1961) x1852) +:assumption (or (not x1961) x1853) +:assumption (or (not x1961) x1854) +:assumption (or (not x1961) x1855) +:assumption (or x2074 x1786) +:assumption (or x2074 x1782) +:assumption (or x2074 x1778) +:assumption (or x2074 x1776) +:assumption (or (not x1786) (not x1782) (not x1778) (not x1776) (not x2074)) +:assumption (or x1499 (not x1500) x1794) +:assumption (or (not x1794) (not x1499)) +:assumption (or (not x1794) x1500) +:assumption (or x1474 (not x1475) x1799) +:assumption (or (not x1799) (not x1474)) +:assumption (or (not x1799) x1475) +:assumption (or x1485 (not x1486) x1804) +:assumption (or (not x1804) (not x1485)) +:assumption (or (not x1804) x1486) +:assumption (or x1492 (not x1493) x1809) +:assumption (or (not x1809) (not x1492)) +:assumption (or (not x1809) x1493) +:assumption (or x1478 (not x1809)) +:assumption (or x1478 (not x1804)) +:assumption (or x1478 (not x1799)) +:assumption (or x1478 (not x1794)) +:assumption (or x1809 x1804 x1799 x1794 (not x1478)) +:assumption (or (not x1478) (not x2074) x2026) +:assumption (or (not x2026) x1478) +:assumption (or (not x2026) x2074) +:assumption (or x1946 x1953 x1963 x1858 x2075) +:assumption (or (not x2075) (not x1946)) +:assumption (or (not x2075) (not x1953)) +:assumption (or (not x2075) (not x1963)) +:assumption (or (not x2075) (not x1858)) +:assumption (or x83 x82 x81 x80 x2076) +:assumption (or (not x2076) (not x83)) +:assumption (or (not x2076) (not x82)) +:assumption (or (not x2076) (not x81)) +:assumption (or (not x2076) (not x80)) +:assumption (or x2077 (not x2076)) +:assumption (or x2077 (not x2075)) +:assumption (or x2076 x2075 (not x2077)) +:assumption (or x1919 x1926 x1933 x1940 x2078) +:assumption (or (not x2078) (not x1919)) +:assumption (or (not x2078) (not x1926)) +:assumption (or (not x2078) (not x1933)) +:assumption (or (not x2078) (not x1940)) +:assumption (or x87 x86 x85 x84 x2079) +:assumption (or (not x2079) (not x87)) +:assumption (or (not x2079) (not x86)) +:assumption (or (not x2079) (not x85)) +:assumption (or (not x2079) (not x84)) +:assumption (or x2080 (not x2079)) +:assumption (or x2080 (not x2078)) +:assumption (or x2079 x2078 (not x2080)) +:assumption (or x1892 x1899 x1906 x1913 x2081) +:assumption (or (not x2081) (not x1892)) +:assumption (or (not x2081) (not x1899)) +:assumption (or (not x2081) (not x1906)) +:assumption (or (not x2081) (not x1913)) +:assumption (or x91 x90 x89 x88 x2082) +:assumption (or (not x2082) (not x91)) +:assumption (or (not x2082) (not x90)) +:assumption (or (not x2082) (not x89)) +:assumption (or (not x2082) (not x88)) +:assumption (or x2083 (not x2082)) +:assumption (or x2083 (not x2081)) +:assumption (or x2082 x2081 (not x2083)) +:assumption (or x1865 x1872 x1879 x1886 x2084) +:assumption (or (not x2084) (not x1865)) +:assumption (or (not x2084) (not x1872)) +:assumption (or (not x2084) (not x1879)) +:assumption (or (not x2084) (not x1886)) +:assumption (or x95 x94 x93 x92 x2085) +:assumption (or (not x2085) (not x95)) +:assumption (or (not x2085) (not x94)) +:assumption (or (not x2085) (not x93)) +:assumption (or (not x2085) (not x92)) +:assumption (or x2086 (not x2085)) +:assumption (or x2086 (not x2084)) +:assumption (or x2085 x2084 (not x2086)) +:assumption (or (not x2086) (not x2083) (not x2080) (not x2077) x2025) +:assumption (or (not x2025) x2086) +:assumption (or (not x2025) x2083) +:assumption (or (not x2025) x2080) +:assumption (or (not x2025) x2077) +:assumption (or x1511 x1507) +:assumption (or x1511 (not x2025)) +:assumption (or x1511 (not x2026)) +:assumption (or (not x1507) x2025 x2026 (not x1511)) +:assumption (or x1846 x1507) +:assumption (or x1846 (not x2025)) +:assumption (or x1846 (not x2026)) +:assumption (or x1846 (not x2025)) +:assumption (or (not x1507) x2025 x2026 x2025 (not x1846)) +:assumption (or (not x81) (not x1846) (not x1845) (not x1852) (not x1853) (not x1854) (not x1855) (not x1507) x2087) +:assumption (or (not x2087) x81) +:assumption (or (not x2087) x1846) +:assumption (or (not x2087) x1845) +:assumption (or (not x2087) x1852) +:assumption (or (not x2087) x1853) +:assumption (or (not x2087) x1854) +:assumption (or (not x2087) x1855) +:assumption (or (not x2087) x1507) +:assumption (or (not x1786) (not x1782) (not x1778) (not x1776) x2088) +:assumption (or (not x2088) x1786) +:assumption (or (not x2088) x1782) +:assumption (or (not x2088) x1778) +:assumption (or (not x2088) x1776) +:assumption (or x1750 (not x1499)) +:assumption (or x1750 x1500) +:assumption (or x1499 (not x1500) (not x1750)) +:assumption (or x1741 (not x1474)) +:assumption (or x1741 x1475) +:assumption (or x1474 (not x1475) (not x1741)) +:assumption (or x1743 (not x1485)) +:assumption (or x1743 x1486) +:assumption (or x1485 (not x1486) (not x1743)) +:assumption (or x1745 (not x1492)) +:assumption (or x1745 x1493) +:assumption (or x1492 (not x1493) (not x1745)) +:assumption (or (not x1745) (not x1743) (not x1741) (not x1750) x1502) +:assumption (or (not x1502) x1745) +:assumption (or (not x1502) x1743) +:assumption (or (not x1502) x1741) +:assumption (or (not x1502) x1750) +:assumption (or x1509 (not x1502)) +:assumption (or x1509 (not x2088)) +:assumption (or x1502 x2088 (not x1509)) +:assumption (or x2089 (not x1946)) +:assumption (or x2089 (not x1953)) +:assumption (or x2089 (not x1963)) +:assumption (or x2089 (not x1858)) +:assumption (or x1946 x1953 x1963 x1858 (not x2089)) +:assumption (or x2090 (not x83)) +:assumption (or x2090 (not x82)) +:assumption (or x2090 (not x81)) +:assumption (or x2090 (not x80)) +:assumption (or x83 x82 x81 x80 (not x2090)) +:assumption (or (not x2090) (not x2089) x2091) +:assumption (or (not x2091) x2090) +:assumption (or (not x2091) x2089) +:assumption (or x2092 (not x1919)) +:assumption (or x2092 (not x1926)) +:assumption (or x2092 (not x1933)) +:assumption (or x2092 (not x1940)) +:assumption (or x1919 x1926 x1933 x1940 (not x2092)) +:assumption (or x2093 (not x87)) +:assumption (or x2093 (not x86)) +:assumption (or x2093 (not x85)) +:assumption (or x2093 (not x84)) +:assumption (or x87 x86 x85 x84 (not x2093)) +:assumption (or (not x2093) (not x2092) x2094) +:assumption (or (not x2094) x2093) +:assumption (or (not x2094) x2092) +:assumption (or x2095 (not x1892)) +:assumption (or x2095 (not x1899)) +:assumption (or x2095 (not x1906)) +:assumption (or x2095 (not x1913)) +:assumption (or x1892 x1899 x1906 x1913 (not x2095)) +:assumption (or x2096 (not x91)) +:assumption (or x2096 (not x90)) +:assumption (or x2096 (not x89)) +:assumption (or x2096 (not x88)) +:assumption (or x91 x90 x89 x88 (not x2096)) +:assumption (or (not x2096) (not x2095) x2097) +:assumption (or (not x2097) x2096) +:assumption (or (not x2097) x2095) +:assumption (or x2098 (not x1865)) +:assumption (or x2098 (not x1872)) +:assumption (or x2098 (not x1879)) +:assumption (or x2098 (not x1886)) +:assumption (or x1865 x1872 x1879 x1886 (not x2098)) +:assumption (or (not x2099) (not x2098) x2100) +:assumption (or (not x2100) x2099) +:assumption (or (not x2100) x2098) +:assumption (or x1508 (not x2100)) +:assumption (or x1508 (not x2097)) +:assumption (or x1508 (not x2094)) +:assumption (or x1508 (not x2091)) +:assumption (or x2100 x2097 x2094 x2091 (not x1508)) +:assumption (or (not x1507) (not x1508) (not x1509) (not x1508) x1956) +:assumption (or (not x1956) x1507) +:assumption (or (not x1956) x1508) +:assumption (or (not x1956) x1509) +:assumption (or (not x1956) x1508) +:assumption (or x2099 (not x95)) +:assumption (or x2099 (not x94)) +:assumption (or x2099 (not x93)) +:assumption (or x2099 (not x92)) +:assumption (or x95 x94 x93 x92 (not x2099)) +:assumption (or x1845 (not x95)) +:assumption (or x1845 (not x94)) +:assumption (or x1845 (not x93)) +:assumption (or x1845 (not x92)) +:assumption (or x1845 (not x91)) +:assumption (or x1845 (not x90)) +:assumption (or x1845 (not x89)) +:assumption (or x1845 (not x88)) +:assumption (or x1845 (not x87)) +:assumption (or x1845 (not x86)) +:assumption (or x1845 (not x85)) +:assumption (or x1845 (not x84)) +:assumption (or x1845 (not x83)) +:assumption (or x1845 (not x82)) +:assumption (or x1845 (not x81)) +:assumption (or x1845 (not x80)) +:assumption (or x95 x94 x93 x92 x91 x90 x89 x88 x87 x86 x85 x84 x83 x82 x81 x80 (not x1845)) +:assumption (or x1953 (not x82) x2101) +:assumption (or (not x2101) (not x1953)) +:assumption (or (not x2101) x82) +:assumption (or x1946 x1953 (not x83) x2102) +:assumption (or (not x2102) (not x1946)) +:assumption (or (not x2102) (not x1953)) +:assumption (or (not x2102) x83) +:assumption (or x1969 (not x81)) +:assumption (or x1969 (not x2102)) +:assumption (or x1969 (not x2101)) +:assumption (or x81 x2102 x2101 (not x1969)) +:assumption (or (not x1969) (not x1963) (not x1845) (not x1507) (not x1508) (not x1509) (not x1508) x2103) +:assumption (or (not x2103) x1969) +:assumption (or (not x2103) x1963) +:assumption (or (not x2103) x1845) +:assumption (or (not x2103) x1507) +:assumption (or (not x2103) x1508) +:assumption (or (not x2103) x1509) +:assumption (or (not x2103) x1508) +:assumption (or x2104 (not x2103)) +:assumption (or x2104 (not x2087)) +:assumption (or x2104 (not x2019)) +:assumption (or x2104 (not x1962)) +:assumption (or x2103 x2087 x2019 x1962 (not x2104)) +:assumption (or (not x2105) x1521) +:assumption (or (not x2105) (not x1520)) +:assumption (or x1521 (not x1520) x1518) +:assumption (or (not x1518) (not x1521)) +:assumption (or (not x1518) x1520) +:assumption (or x1521 x1520 x1517) +:assumption (or (not x1517) (not x1521)) +:assumption (or (not x1517) (not x1520)) +:assumption (or x2106 (not x1517)) +:assumption (or x2106 (not x1518)) +:assumption (or x1517 x1518 (not x2106)) +:assumption (or (not x2107) x1536) +:assumption (or (not x2107) (not x1535)) +:assumption (or x1536 (not x1535) x1533) +:assumption (or (not x1533) (not x1536)) +:assumption (or (not x1533) x1535) +:assumption (or x1536 x1535 x1532) +:assumption (or (not x1532) (not x1536)) +:assumption (or (not x1532) (not x1535)) +:assumption (or x2108 (not x1532)) +:assumption (or x2108 (not x1533)) +:assumption (or x1532 x1533 (not x2108)) +:assumption (or (not x2109) x1551) +:assumption (or (not x2109) (not x1550)) +:assumption (or x1551 (not x1550) x1548) +:assumption (or (not x1548) (not x1551)) +:assumption (or (not x1548) x1550) +:assumption (or x1551 x1550 x1547) +:assumption (or (not x1547) (not x1551)) +:assumption (or (not x1547) (not x1550)) +:assumption (or x2110 (not x1547)) +:assumption (or x2110 (not x1548)) +:assumption (or x1547 x1548 (not x2110)) +:assumption (or (not x2111) x1566) +:assumption (or (not x2111) (not x1565)) +:assumption (or x1566 (not x1565) x1563) +:assumption (or (not x1563) (not x1566)) +:assumption (or (not x1563) x1565) +:assumption (or x1566 x1565 x1562) +:assumption (or (not x1562) (not x1566)) +:assumption (or (not x1562) (not x1565)) +:assumption (or x2112 (not x1562)) +:assumption (or x2112 (not x1563)) +:assumption (or x1562 x1563 (not x2112)) +:assumption (or (not x2113) x1581) +:assumption (or (not x2113) (not x1580)) +:assumption (or x1581 (not x1580) x1578) +:assumption (or (not x1578) (not x1581)) +:assumption (or (not x1578) x1580) +:assumption (or x1581 x1580 x1577) +:assumption (or (not x1577) (not x1581)) +:assumption (or (not x1577) (not x1580)) +:assumption (or x2114 (not x1577)) +:assumption (or x2114 (not x1578)) +:assumption (or x1577 x1578 (not x2114)) +:assumption (or (not x2115) x1596) +:assumption (or (not x2115) (not x1595)) +:assumption (or x1596 (not x1595) x1593) +:assumption (or (not x1593) (not x1596)) +:assumption (or (not x1593) x1595) +:assumption (or x1596 x1595 x1592) +:assumption (or (not x1592) (not x1596)) +:assumption (or (not x1592) (not x1595)) +:assumption (or x2116 (not x1592)) +:assumption (or x2116 (not x1593)) +:assumption (or x1592 x1593 (not x2116)) +:assumption (or (not x2117) x1611) +:assumption (or (not x2117) (not x1610)) +:assumption (or x1611 (not x1610) x1608) +:assumption (or (not x1608) (not x1611)) +:assumption (or (not x1608) x1610) +:assumption (or x1611 x1610 x1607) +:assumption (or (not x1607) (not x1611)) +:assumption (or (not x1607) (not x1610)) +:assumption (or x2118 (not x1607)) +:assumption (or x2118 (not x1608)) +:assumption (or x1607 x1608 (not x2118)) +:assumption (or (not x2119) x1626) +:assumption (or (not x2119) (not x1625)) +:assumption (or x1626 (not x1625) x1623) +:assumption (or (not x1623) (not x1626)) +:assumption (or (not x1623) x1625) +:assumption (or x1626 x1625 x1622) +:assumption (or (not x1622) (not x1626)) +:assumption (or (not x1622) (not x1625)) +:assumption (or x2120 (not x1622)) +:assumption (or x2120 (not x1623)) +:assumption (or x1622 x1623 (not x2120)) +:assumption (or (not x2121) x1641) +:assumption (or (not x2121) (not x1640)) +:assumption (or x1641 (not x1640) x1638) +:assumption (or (not x1638) (not x1641)) +:assumption (or (not x1638) x1640) +:assumption (or x1641 x1640 x1637) +:assumption (or (not x1637) (not x1641)) +:assumption (or (not x1637) (not x1640)) +:assumption (or x2122 (not x1637)) +:assumption (or x2122 (not x1638)) +:assumption (or x1637 x1638 (not x2122)) +:assumption (or (not x2123) x1656) +:assumption (or (not x2123) (not x1655)) +:assumption (or x1656 (not x1655) x1653) +:assumption (or (not x1653) (not x1656)) +:assumption (or (not x1653) x1655) +:assumption (or x1656 x1655 x1652) +:assumption (or (not x1652) (not x1656)) +:assumption (or (not x1652) (not x1655)) +:assumption (or x2124 (not x1652)) +:assumption (or x2124 (not x1653)) +:assumption (or x1652 x1653 (not x2124)) +:assumption (or (not x2125) x1671) +:assumption (or (not x2125) (not x1670)) +:assumption (or x1671 (not x1670) x1668) +:assumption (or (not x1668) (not x1671)) +:assumption (or (not x1668) x1670) +:assumption (or x1671 x1670 x1667) +:assumption (or (not x1667) (not x1671)) +:assumption (or (not x1667) (not x1670)) +:assumption (or x2126 (not x1667)) +:assumption (or x2126 (not x1668)) +:assumption (or x1667 x1668 (not x2126)) +:assumption (or (not x2127) x1686) +:assumption (or (not x2127) (not x1685)) +:assumption (or x1686 (not x1685) x1683) +:assumption (or (not x1683) (not x1686)) +:assumption (or (not x1683) x1685) +:assumption (or x1686 x1685 x1682) +:assumption (or (not x1682) (not x1686)) +:assumption (or (not x1682) (not x1685)) +:assumption (or x2128 (not x1682)) +:assumption (or x2128 (not x1683)) +:assumption (or x1682 x1683 (not x2128)) +:assumption (or (not x2129) x1701) +:assumption (or (not x2129) (not x1700)) +:assumption (or x1701 (not x1700) x1698) +:assumption (or (not x1698) (not x1701)) +:assumption (or (not x1698) x1700) +:assumption (or x1701 x1700 x1697) +:assumption (or (not x1697) (not x1701)) +:assumption (or (not x1697) (not x1700)) +:assumption (or x2130 (not x1697)) +:assumption (or x2130 (not x1698)) +:assumption (or x1697 x1698 (not x2130)) +:assumption (or (not x2131) x1716) +:assumption (or (not x2131) (not x1715)) +:assumption (or x1716 (not x1715) x1713) +:assumption (or (not x1713) (not x1716)) +:assumption (or (not x1713) x1715) +:assumption (or x1716 x1715 x1712) +:assumption (or (not x1712) (not x1716)) +:assumption (or (not x1712) (not x1715)) +:assumption (or x2132 (not x1712)) +:assumption (or x2132 (not x1713)) +:assumption (or x1712 x1713 (not x2132)) +:assumption (or (not x2133) x1731) +:assumption (or (not x2133) (not x1730)) +:assumption (or x1731 (not x1730) x1728) +:assumption (or (not x1728) (not x1731)) +:assumption (or (not x1728) x1730) +:assumption (or x1731 x1730 x1727) +:assumption (or (not x1727) (not x1731)) +:assumption (or (not x1727) (not x1730)) +:assumption (or x2134 (not x1727)) +:assumption (or x2134 (not x1728)) +:assumption (or x1727 x1728 (not x2134)) +:assumption (or (not x2135) x1766) +:assumption (or (not x2135) (not x1765)) +:assumption (or x1766 (not x1765) x1763) +:assumption (or (not x1763) (not x1766)) +:assumption (or (not x1763) x1765) +:assumption (or x1766 x1765 x1762) +:assumption (or (not x1762) (not x1766)) +:assumption (or (not x1762) (not x1765)) +:assumption (or x2136 (not x1762)) +:assumption (or x2136 (not x1763)) +:assumption (or x1762 x1763 (not x2136)) +:assumption (or x2137 (not x98)) +:assumption (or x2137 x97) +:assumption (or x2137 x2138) +:assumption (or x98 (not x97) (not x2138) (not x2137)) +:assumption (or (not x2137) (not x2139) x2140) +:assumption (or (not x2140) x2137) +:assumption (or (not x2140) x2139) +:assumption (or x2141 (not x99)) +:assumption (or x2141 (not x100)) +:assumption (or x2141 (not x101)) +:assumption (or x2141 (not x102)) +:assumption (or x2141 (not x103)) +:assumption (or x2141 (not x104)) +:assumption (or x2141 (not x105)) +:assumption (or x2141 (not x106)) +:assumption (or x2141 (not x107)) +:assumption (or x2141 (not x108)) +:assumption (or x2141 (not x109)) +:assumption (or x2141 (not x110)) +:assumption (or x2141 (not x111)) +:assumption (or x2141 (not x112)) +:assumption (or x2141 (not x113)) +:assumption (or x2141 (not x114)) +:assumption (or x99 x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 x110 x111 x112 x113 x114 (not x2141)) +:assumption (or (not x98) x97 (not x2141) x2142) +:assumption (or (not x2142) x98) +:assumption (or (not x2142) (not x97)) +:assumption (or (not x2142) x2141) +:assumption (or x98 (not x97) x2143) +:assumption (or (not x2143) (not x98)) +:assumption (or (not x2143) x97) +:assumption (or x2139 (not x2143)) +:assumption (or x2139 (not x2142)) +:assumption (or x2143 x2142 (not x2139)) +:assumption (or x2144 (not x98)) +:assumption (or x2144 x97) +:assumption (or x2144 (not x2138)) +:assumption (or x98 (not x97) x2138 (not x2144)) +:assumption (or (not x2144) (not x2139) x2145) +:assumption (or (not x2145) x2144) +:assumption (or (not x2145) x2139) +:assumption (or (not x2146) x2147 (not x2148) (not x2149) (not x2150) (not x2151) x2152) +:assumption (or (not x2152) x2146) +:assumption (or (not x2152) (not x2147)) +:assumption (or (not x2152) x2148) +:assumption (or (not x2152) x2149) +:assumption (or (not x2152) x2150) +:assumption (or (not x2152) x2151) +:assumption (or (not x2153) (not x2149) (not x2154) x2155) +:assumption (or (not x2155) x2153) +:assumption (or (not x2155) x2149) +:assumption (or (not x2155) x2154) +:assumption (or x2156 (not x2155)) +:assumption (or x2156 (not x2152)) +:assumption (or x2155 x2152 (not x2156)) +:assumption (or (not x2157) x2158 (not x2159) (not x2149) (not x2150) (not x2151) x2160) +:assumption (or (not x2160) x2157) +:assumption (or (not x2160) (not x2158)) +:assumption (or (not x2160) x2159) +:assumption (or (not x2160) x2149) +:assumption (or (not x2160) x2150) +:assumption (or (not x2160) x2151) +:assumption (or (not x2161) (not x2149) (not x2154) x2162) +:assumption (or (not x2162) x2161) +:assumption (or (not x2162) x2149) +:assumption (or (not x2162) x2154) +:assumption (or x2163 (not x2162)) +:assumption (or x2163 (not x2160)) +:assumption (or x2162 x2160 (not x2163)) +:assumption (or (not x2164) x2165 (not x2166) (not x2149) (not x2150) (not x2151) x2167) +:assumption (or (not x2167) x2164) +:assumption (or (not x2167) (not x2165)) +:assumption (or (not x2167) x2166) +:assumption (or (not x2167) x2149) +:assumption (or (not x2167) x2150) +:assumption (or (not x2167) x2151) +:assumption (or (not x2168) (not x2149) (not x2154) x2169) +:assumption (or (not x2169) x2168) +:assumption (or (not x2169) x2149) +:assumption (or (not x2169) x2154) +:assumption (or x2170 (not x2169)) +:assumption (or x2170 (not x2167)) +:assumption (or x2169 x2167 (not x2170)) +:assumption (or (not x2171) x2172 (not x2173) (not x2149) (not x2150) (not x2151) x2174) +:assumption (or (not x2174) x2171) +:assumption (or (not x2174) (not x2172)) +:assumption (or (not x2174) x2173) +:assumption (or (not x2174) x2149) +:assumption (or (not x2174) x2150) +:assumption (or (not x2174) x2151) +:assumption (or x2154 x2150) +:assumption (or x2154 (not x2175)) +:assumption (or (not x2150) x2175 (not x2154)) +:assumption (or x2149 (not x2176)) +:assumption (or x2149 (not x2168)) +:assumption (or x2149 (not x2161)) +:assumption (or x2149 (not x2153)) +:assumption (or x2176 x2168 x2161 x2153 (not x2149)) +:assumption (or (not x2176) (not x2149) (not x2154) x2177) +:assumption (or (not x2177) x2176) +:assumption (or (not x2177) x2149) +:assumption (or (not x2177) x2154) +:assumption (or x2176 x2168 x2161 x2153 x2178) +:assumption (or (not x2178) (not x2176)) +:assumption (or (not x2178) (not x2168)) +:assumption (or (not x2178) (not x2161)) +:assumption (or (not x2178) (not x2153)) +:assumption (or x2179 (not x2178)) +:assumption (or x2179 (not x2177)) +:assumption (or x2179 (not x2174)) +:assumption (or x2178 x2177 x2174 (not x2179)) +:assumption (or (not x2180) (not x2180) (not x2181) (not x2182) x2183) +:assumption (or (not x2183) x2180) +:assumption (or (not x2183) x2180) +:assumption (or (not x2183) x2181) +:assumption (or (not x2183) x2182) +:assumption (or (not x2184) (not x2180) x2185) +:assumption (or (not x2185) x2184) +:assumption (or (not x2185) x2180) +:assumption (or x2180 x2186 x2150 x2187) +:assumption (or (not x2187) (not x2180)) +:assumption (or (not x2187) (not x2186)) +:assumption (or (not x2187) (not x2150)) +:assumption (or x2188 (not x2187)) +:assumption (or x2188 (not x2185)) +:assumption (or x2187 x2185 (not x2188)) +:assumption (or x2189 (not x2190)) +:assumption (or x2189 (not x2191)) +:assumption (or x2189 (not x2192)) +:assumption (or x2189 (not x2194)) +:assumption (or x2190 x2191 x2192 x2194 (not x2189)) +:assumption (or (not x2195) (not x2196) (not x2189) x2197) +:assumption (or (not x2197) x2195) +:assumption (or (not x2197) x2196) +:assumption (or (not x2197) x2189) +:assumption (or (not x2194) x2193 (not x2198) x2192) +:assumption (or (not x2192) x2194) +:assumption (or (not x2192) (not x2193)) +:assumption (or (not x2192) x2198) +:assumption (or x2199 (not x2190)) +:assumption (or x2199 (not x2191)) +:assumption (or x2199 (not x2192)) +:assumption (or x2199 (not x2193)) +:assumption (or x2190 x2191 x2192 x2193 (not x2199)) +:assumption (or x2196 (not x2190)) +:assumption (or x2196 (not x2191)) +:assumption (or x2196 x2194) +:assumption (or x2196 (not x2193)) +:assumption (or x2196 x2198) +:assumption (or x2190 x2191 (not x2194) x2193 (not x2198) (not x2196)) +:assumption (or x2200 (not x2190)) +:assumption (or x2200 (not x2194)) +:assumption (or x2200 x2193) +:assumption (or x2190 x2194 (not x2193) (not x2200)) +:assumption (or x2195 (not x2194)) +:assumption (or x2195 (not x2193)) +:assumption (or x2194 x2193 (not x2195)) +:assumption (or x2201 (not x2194)) +:assumption (or x2201 (not x2193)) +:assumption (or x2201 x2202) +:assumption (or x2194 x2193 (not x2202) (not x2201)) +:assumption (or (not x2201) (not x2200) (not x2196) (not x2199) x2203) +:assumption (or (not x2203) x2201) +:assumption (or (not x2203) x2200) +:assumption (or (not x2203) x2196) +:assumption (or (not x2203) x2199) +:assumption (or x2204 (not x2205)) +:assumption (or x2204 (not x2206)) +:assumption (or x2204 (not x2207)) +:assumption (or x2204 (not x2209)) +:assumption (or x2205 x2206 x2207 x2209 (not x2204)) +:assumption (or (not x2210) (not x2211) (not x2204) x2212) +:assumption (or (not x2212) x2210) +:assumption (or (not x2212) x2211) +:assumption (or (not x2212) x2204) +:assumption (or (not x2209) x2208 (not x2213) x2207) +:assumption (or (not x2207) x2209) +:assumption (or (not x2207) (not x2208)) +:assumption (or (not x2207) x2213) +:assumption (or x2214 (not x2205)) +:assumption (or x2214 (not x2206)) +:assumption (or x2214 (not x2207)) +:assumption (or x2214 (not x2208)) +:assumption (or x2205 x2206 x2207 x2208 (not x2214)) +:assumption (or x2211 (not x2205)) +:assumption (or x2211 (not x2206)) +:assumption (or x2211 x2209) +:assumption (or x2211 (not x2208)) +:assumption (or x2211 x2213) +:assumption (or x2205 x2206 (not x2209) x2208 (not x2213) (not x2211)) +:assumption (or x2215 (not x2205)) +:assumption (or x2215 (not x2209)) +:assumption (or x2215 x2208) +:assumption (or x2205 x2209 (not x2208) (not x2215)) +:assumption (or x2210 (not x2209)) +:assumption (or x2210 (not x2208)) +:assumption (or x2209 x2208 (not x2210)) +:assumption (or x2216 (not x2209)) +:assumption (or x2216 (not x2208)) +:assumption (or x2216 x2217) +:assumption (or x2209 x2208 (not x2217) (not x2216)) +:assumption (or (not x2216) (not x2215) (not x2211) (not x2214) x2218) +:assumption (or (not x2218) x2216) +:assumption (or (not x2218) x2215) +:assumption (or (not x2218) x2211) +:assumption (or (not x2218) x2214) +:assumption (or x2219 (not x2220)) +:assumption (or x2219 (not x2221)) +:assumption (or x2219 (not x2222)) +:assumption (or x2219 (not x2224)) +:assumption (or x2220 x2221 x2222 x2224 (not x2219)) +:assumption (or (not x2225) (not x2226) (not x2219) x2227) +:assumption (or (not x2227) x2225) +:assumption (or (not x2227) x2226) +:assumption (or (not x2227) x2219) +:assumption (or (not x2224) x2223 (not x2228) x2222) +:assumption (or (not x2222) x2224) +:assumption (or (not x2222) (not x2223)) +:assumption (or (not x2222) x2228) +:assumption (or x2229 (not x2220)) +:assumption (or x2229 (not x2221)) +:assumption (or x2229 (not x2222)) +:assumption (or x2229 (not x2223)) +:assumption (or x2220 x2221 x2222 x2223 (not x2229)) +:assumption (or x2226 (not x2220)) +:assumption (or x2226 (not x2221)) +:assumption (or x2226 x2224) +:assumption (or x2226 (not x2223)) +:assumption (or x2226 x2228) +:assumption (or x2220 x2221 (not x2224) x2223 (not x2228) (not x2226)) +:assumption (or x2230 (not x2220)) +:assumption (or x2230 (not x2224)) +:assumption (or x2230 x2223) +:assumption (or x2220 x2224 (not x2223) (not x2230)) +:assumption (or x2225 (not x2224)) +:assumption (or x2225 (not x2223)) +:assumption (or x2224 x2223 (not x2225)) +:assumption (or x2231 (not x2224)) +:assumption (or x2231 (not x2223)) +:assumption (or x2231 x2232) +:assumption (or x2224 x2223 (not x2232) (not x2231)) +:assumption (or (not x2231) (not x2230) (not x2226) (not x2229) x2233) +:assumption (or (not x2233) x2231) +:assumption (or (not x2233) x2230) +:assumption (or (not x2233) x2226) +:assumption (or (not x2233) x2229) +:assumption (or x2234 (not x2235)) +:assumption (or x2234 (not x2236)) +:assumption (or x2234 (not x2237)) +:assumption (or x2234 (not x2239)) +:assumption (or x2235 x2236 x2237 x2239 (not x2234)) +:assumption (or (not x2240) (not x2241) (not x2234) x2242) +:assumption (or (not x2242) x2240) +:assumption (or (not x2242) x2241) +:assumption (or (not x2242) x2234) +:assumption (or (not x2239) x2238 (not x2243) x2237) +:assumption (or (not x2237) x2239) +:assumption (or (not x2237) (not x2238)) +:assumption (or (not x2237) x2243) +:assumption (or x2244 (not x2235)) +:assumption (or x2244 (not x2236)) +:assumption (or x2244 (not x2237)) +:assumption (or x2244 (not x2238)) +:assumption (or x2235 x2236 x2237 x2238 (not x2244)) +:assumption (or x2241 (not x2235)) +:assumption (or x2241 (not x2236)) +:assumption (or x2241 x2239) +:assumption (or x2241 (not x2238)) +:assumption (or x2241 x2243) +:assumption (or x2235 x2236 (not x2239) x2238 (not x2243) (not x2241)) +:assumption (or x2245 (not x2235)) +:assumption (or x2245 (not x2239)) +:assumption (or x2245 x2238) +:assumption (or x2235 x2239 (not x2238) (not x2245)) +:assumption (or x2240 (not x2239)) +:assumption (or x2240 (not x2238)) +:assumption (or x2239 x2238 (not x2240)) +:assumption (or x2246 (not x2239)) +:assumption (or x2246 (not x2238)) +:assumption (or x2246 x2247) +:assumption (or x2239 x2238 (not x2247) (not x2246)) +:assumption (or (not x2246) (not x2245) (not x2241) (not x2244) x2248) +:assumption (or (not x2248) x2246) +:assumption (or (not x2248) x2245) +:assumption (or (not x2248) x2241) +:assumption (or (not x2248) x2244) +:assumption (or x2249 (not x2250)) +:assumption (or x2249 (not x2251)) +:assumption (or x2249 (not x2252)) +:assumption (or x2249 (not x2254)) +:assumption (or x2250 x2251 x2252 x2254 (not x2249)) +:assumption (or (not x2255) (not x2256) (not x2249) x2257) +:assumption (or (not x2257) x2255) +:assumption (or (not x2257) x2256) +:assumption (or (not x2257) x2249) +:assumption (or (not x2254) x2253 (not x2258) x2252) +:assumption (or (not x2252) x2254) +:assumption (or (not x2252) (not x2253)) +:assumption (or (not x2252) x2258) +:assumption (or x2259 (not x2250)) +:assumption (or x2259 (not x2251)) +:assumption (or x2259 (not x2252)) +:assumption (or x2259 (not x2253)) +:assumption (or x2250 x2251 x2252 x2253 (not x2259)) +:assumption (or x2256 (not x2250)) +:assumption (or x2256 (not x2251)) +:assumption (or x2256 x2254) +:assumption (or x2256 (not x2253)) +:assumption (or x2256 x2258) +:assumption (or x2250 x2251 (not x2254) x2253 (not x2258) (not x2256)) +:assumption (or x2260 (not x2250)) +:assumption (or x2260 (not x2254)) +:assumption (or x2260 x2253) +:assumption (or x2250 x2254 (not x2253) (not x2260)) +:assumption (or x2255 (not x2254)) +:assumption (or x2255 (not x2253)) +:assumption (or x2254 x2253 (not x2255)) +:assumption (or x2261 (not x2254)) +:assumption (or x2261 (not x2253)) +:assumption (or x2261 x2262) +:assumption (or x2254 x2253 (not x2262) (not x2261)) +:assumption (or (not x2261) (not x2260) (not x2256) (not x2259) x2263) +:assumption (or (not x2263) x2261) +:assumption (or (not x2263) x2260) +:assumption (or (not x2263) x2256) +:assumption (or (not x2263) x2259) +:assumption (or x2264 (not x2265)) +:assumption (or x2264 (not x2266)) +:assumption (or x2264 (not x2267)) +:assumption (or x2264 (not x2269)) +:assumption (or x2265 x2266 x2267 x2269 (not x2264)) +:assumption (or (not x2270) (not x2271) (not x2264) x2272) +:assumption (or (not x2272) x2270) +:assumption (or (not x2272) x2271) +:assumption (or (not x2272) x2264) +:assumption (or (not x2269) x2268 (not x2273) x2267) +:assumption (or (not x2267) x2269) +:assumption (or (not x2267) (not x2268)) +:assumption (or (not x2267) x2273) +:assumption (or x2274 (not x2265)) +:assumption (or x2274 (not x2266)) +:assumption (or x2274 (not x2267)) +:assumption (or x2274 (not x2268)) +:assumption (or x2265 x2266 x2267 x2268 (not x2274)) +:assumption (or x2271 (not x2265)) +:assumption (or x2271 (not x2266)) +:assumption (or x2271 x2269) +:assumption (or x2271 (not x2268)) +:assumption (or x2271 x2273) +:assumption (or x2265 x2266 (not x2269) x2268 (not x2273) (not x2271)) +:assumption (or x2275 (not x2265)) +:assumption (or x2275 (not x2269)) +:assumption (or x2275 x2268) +:assumption (or x2265 x2269 (not x2268) (not x2275)) +:assumption (or x2270 (not x2269)) +:assumption (or x2270 (not x2268)) +:assumption (or x2269 x2268 (not x2270)) +:assumption (or x2276 (not x2269)) +:assumption (or x2276 (not x2268)) +:assumption (or x2276 x2277) +:assumption (or x2269 x2268 (not x2277) (not x2276)) +:assumption (or (not x2276) (not x2275) (not x2271) (not x2274) x2278) +:assumption (or (not x2278) x2276) +:assumption (or (not x2278) x2275) +:assumption (or (not x2278) x2271) +:assumption (or (not x2278) x2274) +:assumption (or x2279 (not x2280)) +:assumption (or x2279 (not x2281)) +:assumption (or x2279 (not x2282)) +:assumption (or x2279 (not x2284)) +:assumption (or x2280 x2281 x2282 x2284 (not x2279)) +:assumption (or (not x2285) (not x2286) (not x2279) x2287) +:assumption (or (not x2287) x2285) +:assumption (or (not x2287) x2286) +:assumption (or (not x2287) x2279) +:assumption (or (not x2284) x2283 (not x2288) x2282) +:assumption (or (not x2282) x2284) +:assumption (or (not x2282) (not x2283)) +:assumption (or (not x2282) x2288) +:assumption (or x2289 (not x2280)) +:assumption (or x2289 (not x2281)) +:assumption (or x2289 (not x2282)) +:assumption (or x2289 (not x2283)) +:assumption (or x2280 x2281 x2282 x2283 (not x2289)) +:assumption (or x2286 (not x2280)) +:assumption (or x2286 (not x2281)) +:assumption (or x2286 x2284) +:assumption (or x2286 (not x2283)) +:assumption (or x2286 x2288) +:assumption (or x2280 x2281 (not x2284) x2283 (not x2288) (not x2286)) +:assumption (or x2290 (not x2280)) +:assumption (or x2290 (not x2284)) +:assumption (or x2290 x2283) +:assumption (or x2280 x2284 (not x2283) (not x2290)) +:assumption (or x2285 (not x2284)) +:assumption (or x2285 (not x2283)) +:assumption (or x2284 x2283 (not x2285)) +:assumption (or x2291 (not x2284)) +:assumption (or x2291 (not x2283)) +:assumption (or x2291 x2292) +:assumption (or x2284 x2283 (not x2292) (not x2291)) +:assumption (or (not x2291) (not x2290) (not x2286) (not x2289) x2293) +:assumption (or (not x2293) x2291) +:assumption (or (not x2293) x2290) +:assumption (or (not x2293) x2286) +:assumption (or (not x2293) x2289) +:assumption (or x2294 (not x2295)) +:assumption (or x2294 (not x2296)) +:assumption (or x2294 (not x2297)) +:assumption (or x2294 (not x2299)) +:assumption (or x2295 x2296 x2297 x2299 (not x2294)) +:assumption (or (not x2300) (not x2301) (not x2294) x2302) +:assumption (or (not x2302) x2300) +:assumption (or (not x2302) x2301) +:assumption (or (not x2302) x2294) +:assumption (or (not x2299) x2298 (not x2303) x2297) +:assumption (or (not x2297) x2299) +:assumption (or (not x2297) (not x2298)) +:assumption (or (not x2297) x2303) +:assumption (or x2304 (not x2295)) +:assumption (or x2304 (not x2296)) +:assumption (or x2304 (not x2297)) +:assumption (or x2304 (not x2298)) +:assumption (or x2295 x2296 x2297 x2298 (not x2304)) +:assumption (or x2301 (not x2295)) +:assumption (or x2301 (not x2296)) +:assumption (or x2301 x2299) +:assumption (or x2301 (not x2298)) +:assumption (or x2301 x2303) +:assumption (or x2295 x2296 (not x2299) x2298 (not x2303) (not x2301)) +:assumption (or x2305 (not x2295)) +:assumption (or x2305 (not x2299)) +:assumption (or x2305 x2298) +:assumption (or x2295 x2299 (not x2298) (not x2305)) +:assumption (or x2300 (not x2299)) +:assumption (or x2300 (not x2298)) +:assumption (or x2299 x2298 (not x2300)) +:assumption (or x2306 (not x2299)) +:assumption (or x2306 (not x2298)) +:assumption (or x2306 x2307) +:assumption (or x2299 x2298 (not x2307) (not x2306)) +:assumption (or (not x2306) (not x2305) (not x2301) (not x2304) x2308) +:assumption (or (not x2308) x2306) +:assumption (or (not x2308) x2305) +:assumption (or (not x2308) x2301) +:assumption (or (not x2308) x2304) +:assumption (or x2309 (not x2310)) +:assumption (or x2309 (not x2311)) +:assumption (or x2309 (not x2312)) +:assumption (or x2309 (not x2314)) +:assumption (or x2310 x2311 x2312 x2314 (not x2309)) +:assumption (or (not x2315) (not x2316) (not x2309) x2317) +:assumption (or (not x2317) x2315) +:assumption (or (not x2317) x2316) +:assumption (or (not x2317) x2309) +:assumption (or (not x2314) x2313 (not x2318) x2312) +:assumption (or (not x2312) x2314) +:assumption (or (not x2312) (not x2313)) +:assumption (or (not x2312) x2318) +:assumption (or x2319 (not x2310)) +:assumption (or x2319 (not x2311)) +:assumption (or x2319 (not x2312)) +:assumption (or x2319 (not x2313)) +:assumption (or x2310 x2311 x2312 x2313 (not x2319)) +:assumption (or x2316 (not x2310)) +:assumption (or x2316 (not x2311)) +:assumption (or x2316 x2314) +:assumption (or x2316 (not x2313)) +:assumption (or x2316 x2318) +:assumption (or x2310 x2311 (not x2314) x2313 (not x2318) (not x2316)) +:assumption (or x2320 (not x2310)) +:assumption (or x2320 (not x2314)) +:assumption (or x2320 x2313) +:assumption (or x2310 x2314 (not x2313) (not x2320)) +:assumption (or x2315 (not x2314)) +:assumption (or x2315 (not x2313)) +:assumption (or x2314 x2313 (not x2315)) +:assumption (or x2321 (not x2314)) +:assumption (or x2321 (not x2313)) +:assumption (or x2321 x2322) +:assumption (or x2314 x2313 (not x2322) (not x2321)) +:assumption (or (not x2321) (not x2320) (not x2316) (not x2319) x2323) +:assumption (or (not x2323) x2321) +:assumption (or (not x2323) x2320) +:assumption (or (not x2323) x2316) +:assumption (or (not x2323) x2319) +:assumption (or x2324 (not x2325)) +:assumption (or x2324 (not x2326)) +:assumption (or x2324 (not x2327)) +:assumption (or x2324 (not x2329)) +:assumption (or x2325 x2326 x2327 x2329 (not x2324)) +:assumption (or (not x2330) (not x2331) (not x2324) x2332) +:assumption (or (not x2332) x2330) +:assumption (or (not x2332) x2331) +:assumption (or (not x2332) x2324) +:assumption (or (not x2329) x2328 (not x2333) x2327) +:assumption (or (not x2327) x2329) +:assumption (or (not x2327) (not x2328)) +:assumption (or (not x2327) x2333) +:assumption (or x2334 (not x2325)) +:assumption (or x2334 (not x2326)) +:assumption (or x2334 (not x2327)) +:assumption (or x2334 (not x2328)) +:assumption (or x2325 x2326 x2327 x2328 (not x2334)) +:assumption (or x2331 (not x2325)) +:assumption (or x2331 (not x2326)) +:assumption (or x2331 x2329) +:assumption (or x2331 (not x2328)) +:assumption (or x2331 x2333) +:assumption (or x2325 x2326 (not x2329) x2328 (not x2333) (not x2331)) +:assumption (or x2335 (not x2325)) +:assumption (or x2335 (not x2329)) +:assumption (or x2335 x2328) +:assumption (or x2325 x2329 (not x2328) (not x2335)) +:assumption (or x2330 (not x2329)) +:assumption (or x2330 (not x2328)) +:assumption (or x2329 x2328 (not x2330)) +:assumption (or x2336 (not x2329)) +:assumption (or x2336 (not x2328)) +:assumption (or x2336 x2337) +:assumption (or x2329 x2328 (not x2337) (not x2336)) +:assumption (or (not x2336) (not x2335) (not x2331) (not x2334) x2338) +:assumption (or (not x2338) x2336) +:assumption (or (not x2338) x2335) +:assumption (or (not x2338) x2331) +:assumption (or (not x2338) x2334) +:assumption (or x2339 (not x2340)) +:assumption (or x2339 (not x2341)) +:assumption (or x2339 (not x2342)) +:assumption (or x2339 (not x2344)) +:assumption (or x2340 x2341 x2342 x2344 (not x2339)) +:assumption (or (not x2345) (not x2346) (not x2339) x2347) +:assumption (or (not x2347) x2345) +:assumption (or (not x2347) x2346) +:assumption (or (not x2347) x2339) +:assumption (or (not x2344) x2343 (not x2348) x2342) +:assumption (or (not x2342) x2344) +:assumption (or (not x2342) (not x2343)) +:assumption (or (not x2342) x2348) +:assumption (or x2349 (not x2340)) +:assumption (or x2349 (not x2341)) +:assumption (or x2349 (not x2342)) +:assumption (or x2349 (not x2343)) +:assumption (or x2340 x2341 x2342 x2343 (not x2349)) +:assumption (or x2346 (not x2340)) +:assumption (or x2346 (not x2341)) +:assumption (or x2346 x2344) +:assumption (or x2346 (not x2343)) +:assumption (or x2346 x2348) +:assumption (or x2340 x2341 (not x2344) x2343 (not x2348) (not x2346)) +:assumption (or x2350 (not x2340)) +:assumption (or x2350 (not x2344)) +:assumption (or x2350 x2343) +:assumption (or x2340 x2344 (not x2343) (not x2350)) +:assumption (or x2345 (not x2344)) +:assumption (or x2345 (not x2343)) +:assumption (or x2344 x2343 (not x2345)) +:assumption (or x2351 (not x2344)) +:assumption (or x2351 (not x2343)) +:assumption (or x2351 x2352) +:assumption (or x2344 x2343 (not x2352) (not x2351)) +:assumption (or (not x2351) (not x2350) (not x2346) (not x2349) x2353) +:assumption (or (not x2353) x2351) +:assumption (or (not x2353) x2350) +:assumption (or (not x2353) x2346) +:assumption (or (not x2353) x2349) +:assumption (or x2354 (not x2355)) +:assumption (or x2354 (not x2356)) +:assumption (or x2354 (not x2357)) +:assumption (or x2354 (not x2359)) +:assumption (or x2355 x2356 x2357 x2359 (not x2354)) +:assumption (or (not x2360) (not x2361) (not x2354) x2362) +:assumption (or (not x2362) x2360) +:assumption (or (not x2362) x2361) +:assumption (or (not x2362) x2354) +:assumption (or (not x2359) x2358 (not x2363) x2357) +:assumption (or (not x2357) x2359) +:assumption (or (not x2357) (not x2358)) +:assumption (or (not x2357) x2363) +:assumption (or x2364 (not x2355)) +:assumption (or x2364 (not x2356)) +:assumption (or x2364 (not x2357)) +:assumption (or x2364 (not x2358)) +:assumption (or x2355 x2356 x2357 x2358 (not x2364)) +:assumption (or x2361 (not x2355)) +:assumption (or x2361 (not x2356)) +:assumption (or x2361 x2359) +:assumption (or x2361 (not x2358)) +:assumption (or x2361 x2363) +:assumption (or x2355 x2356 (not x2359) x2358 (not x2363) (not x2361)) +:assumption (or x2365 (not x2355)) +:assumption (or x2365 (not x2359)) +:assumption (or x2365 x2358) +:assumption (or x2355 x2359 (not x2358) (not x2365)) +:assumption (or x2360 (not x2359)) +:assumption (or x2360 (not x2358)) +:assumption (or x2359 x2358 (not x2360)) +:assumption (or x2366 (not x2359)) +:assumption (or x2366 (not x2358)) +:assumption (or x2366 x2367) +:assumption (or x2359 x2358 (not x2367) (not x2366)) +:assumption (or (not x2366) (not x2365) (not x2361) (not x2364) x2368) +:assumption (or (not x2368) x2366) +:assumption (or (not x2368) x2365) +:assumption (or (not x2368) x2361) +:assumption (or (not x2368) x2364) +:assumption (or x2369 (not x2370)) +:assumption (or x2369 (not x2371)) +:assumption (or x2369 (not x2372)) +:assumption (or x2369 (not x2374)) +:assumption (or x2370 x2371 x2372 x2374 (not x2369)) +:assumption (or (not x2375) (not x2376) (not x2369) x2377) +:assumption (or (not x2377) x2375) +:assumption (or (not x2377) x2376) +:assumption (or (not x2377) x2369) +:assumption (or (not x2374) x2373 (not x2378) x2372) +:assumption (or (not x2372) x2374) +:assumption (or (not x2372) (not x2373)) +:assumption (or (not x2372) x2378) +:assumption (or x2379 (not x2370)) +:assumption (or x2379 (not x2371)) +:assumption (or x2379 (not x2372)) +:assumption (or x2379 (not x2373)) +:assumption (or x2370 x2371 x2372 x2373 (not x2379)) +:assumption (or x2376 (not x2370)) +:assumption (or x2376 (not x2371)) +:assumption (or x2376 x2374) +:assumption (or x2376 (not x2373)) +:assumption (or x2376 x2378) +:assumption (or x2370 x2371 (not x2374) x2373 (not x2378) (not x2376)) +:assumption (or x2380 (not x2370)) +:assumption (or x2380 (not x2374)) +:assumption (or x2380 x2373) +:assumption (or x2370 x2374 (not x2373) (not x2380)) +:assumption (or x2375 (not x2374)) +:assumption (or x2375 (not x2373)) +:assumption (or x2374 x2373 (not x2375)) +:assumption (or x2381 (not x2374)) +:assumption (or x2381 (not x2373)) +:assumption (or x2381 x2382) +:assumption (or x2374 x2373 (not x2382) (not x2381)) +:assumption (or (not x2381) (not x2380) (not x2376) (not x2379) x2383) +:assumption (or (not x2383) x2381) +:assumption (or (not x2383) x2380) +:assumption (or (not x2383) x2376) +:assumption (or (not x2383) x2379) +:assumption (or x2384 (not x2385)) +:assumption (or x2384 (not x2386)) +:assumption (or x2384 (not x2387)) +:assumption (or x2384 (not x2389)) +:assumption (or x2385 x2386 x2387 x2389 (not x2384)) +:assumption (or (not x2390) (not x2391) (not x2384) x2392) +:assumption (or (not x2392) x2390) +:assumption (or (not x2392) x2391) +:assumption (or (not x2392) x2384) +:assumption (or (not x2389) x2388 (not x2393) x2387) +:assumption (or (not x2387) x2389) +:assumption (or (not x2387) (not x2388)) +:assumption (or (not x2387) x2393) +:assumption (or x2394 (not x2385)) +:assumption (or x2394 (not x2386)) +:assumption (or x2394 (not x2387)) +:assumption (or x2394 (not x2388)) +:assumption (or x2385 x2386 x2387 x2388 (not x2394)) +:assumption (or x2391 (not x2385)) +:assumption (or x2391 (not x2386)) +:assumption (or x2391 x2389) +:assumption (or x2391 (not x2388)) +:assumption (or x2391 x2393) +:assumption (or x2385 x2386 (not x2389) x2388 (not x2393) (not x2391)) +:assumption (or x2395 (not x2385)) +:assumption (or x2395 (not x2389)) +:assumption (or x2395 x2388) +:assumption (or x2385 x2389 (not x2388) (not x2395)) +:assumption (or x2390 (not x2389)) +:assumption (or x2390 (not x2388)) +:assumption (or x2389 x2388 (not x2390)) +:assumption (or x2396 (not x2389)) +:assumption (or x2396 (not x2388)) +:assumption (or x2396 x2397) +:assumption (or x2389 x2388 (not x2397) (not x2396)) +:assumption (or (not x2396) (not x2395) (not x2391) (not x2394) x2398) +:assumption (or (not x2398) x2396) +:assumption (or (not x2398) x2395) +:assumption (or (not x2398) x2391) +:assumption (or (not x2398) x2394) +:assumption (or x2399 (not x2400)) +:assumption (or x2399 (not x2401)) +:assumption (or x2399 (not x2402)) +:assumption (or x2399 (not x2404)) +:assumption (or x2400 x2401 x2402 x2404 (not x2399)) +:assumption (or (not x2405) (not x2406) (not x2399) x2407) +:assumption (or (not x2407) x2405) +:assumption (or (not x2407) x2406) +:assumption (or (not x2407) x2399) +:assumption (or (not x2404) x2403 (not x2408) x2402) +:assumption (or (not x2402) x2404) +:assumption (or (not x2402) (not x2403)) +:assumption (or (not x2402) x2408) +:assumption (or x2409 (not x2400)) +:assumption (or x2409 (not x2401)) +:assumption (or x2409 (not x2402)) +:assumption (or x2409 (not x2403)) +:assumption (or x2400 x2401 x2402 x2403 (not x2409)) +:assumption (or x2406 (not x2400)) +:assumption (or x2406 (not x2401)) +:assumption (or x2406 x2404) +:assumption (or x2406 (not x2403)) +:assumption (or x2406 x2408) +:assumption (or x2400 x2401 (not x2404) x2403 (not x2408) (not x2406)) +:assumption (or x2410 (not x2400)) +:assumption (or x2410 (not x2404)) +:assumption (or x2410 x2403) +:assumption (or x2400 x2404 (not x2403) (not x2410)) +:assumption (or x2405 (not x2404)) +:assumption (or x2405 (not x2403)) +:assumption (or x2404 x2403 (not x2405)) +:assumption (or x2411 (not x2404)) +:assumption (or x2411 (not x2403)) +:assumption (or x2411 x2412) +:assumption (or x2404 x2403 (not x2412) (not x2411)) +:assumption (or (not x2411) (not x2410) (not x2406) (not x2409) x2413) +:assumption (or (not x2413) x2411) +:assumption (or (not x2413) x2410) +:assumption (or (not x2413) x2406) +:assumption (or (not x2413) x2409) +:assumption (or (not x2414) (not x2161) x2415) +:assumption (or (not x2415) x2414) +:assumption (or (not x2415) x2161) +:assumption (or (not x2416) (not x2414) (not x2168) x2417) +:assumption (or (not x2417) x2416) +:assumption (or (not x2417) x2414) +:assumption (or (not x2417) x2168) +:assumption (or (not x2418) (not x2416) (not x2414) (not x2176) x2419) +:assumption (or (not x2419) x2418) +:assumption (or (not x2419) x2416) +:assumption (or (not x2419) x2414) +:assumption (or (not x2419) x2176) +:assumption (or x2171 (not x2153)) +:assumption (or x2171 (not x2419)) +:assumption (or x2171 (not x2417)) +:assumption (or x2171 (not x2415)) +:assumption (or x2153 x2419 x2417 x2415 (not x2171)) +:assumption (or (not x2171) x2172 (not x2173) (not x2150) (not x2151) x2420) +:assumption (or (not x2420) x2171) +:assumption (or (not x2420) (not x2172)) +:assumption (or (not x2420) x2173) +:assumption (or (not x2420) x2150) +:assumption (or (not x2420) x2151) +:assumption (or (not x2416) (not x2168) x2421) +:assumption (or (not x2421) x2416) +:assumption (or (not x2421) x2168) +:assumption (or (not x2418) (not x2416) (not x2176) x2422) +:assumption (or (not x2422) x2418) +:assumption (or (not x2422) x2416) +:assumption (or (not x2422) x2176) +:assumption (or (not x2423) (not x2418) (not x2416) (not x2153) x2424) +:assumption (or (not x2424) x2423) +:assumption (or (not x2424) x2418) +:assumption (or (not x2424) x2416) +:assumption (or (not x2424) x2153) +:assumption (or x2146 (not x2161)) +:assumption (or x2146 (not x2424)) +:assumption (or x2146 (not x2422)) +:assumption (or x2146 (not x2421)) +:assumption (or x2161 x2424 x2422 x2421 (not x2146)) +:assumption (or (not x2146) x2147 (not x2148) (not x2150) (not x2151) x2425) +:assumption (or (not x2425) x2146) +:assumption (or (not x2425) (not x2147)) +:assumption (or (not x2425) x2148) +:assumption (or (not x2425) x2150) +:assumption (or (not x2425) x2151) +:assumption (or (not x2418) (not x2176) x2426) +:assumption (or (not x2426) x2418) +:assumption (or (not x2426) x2176) +:assumption (or (not x2423) (not x2418) (not x2153) x2427) +:assumption (or (not x2427) x2423) +:assumption (or (not x2427) x2418) +:assumption (or (not x2427) x2153) +:assumption (or (not x2414) (not x2423) (not x2418) (not x2161) x2428) +:assumption (or (not x2428) x2414) +:assumption (or (not x2428) x2423) +:assumption (or (not x2428) x2418) +:assumption (or (not x2428) x2161) +:assumption (or x2157 (not x2168)) +:assumption (or x2157 (not x2428)) +:assumption (or x2157 (not x2427)) +:assumption (or x2157 (not x2426)) +:assumption (or x2168 x2428 x2427 x2426 (not x2157)) +:assumption (or (not x2157) x2158 (not x2159) (not x2150) (not x2151) x2429) +:assumption (or (not x2429) x2157) +:assumption (or (not x2429) (not x2158)) +:assumption (or (not x2429) x2159) +:assumption (or (not x2429) x2150) +:assumption (or (not x2429) x2151) +:assumption (or (not x2423) (not x2153) x2430) +:assumption (or (not x2430) x2423) +:assumption (or (not x2430) x2153) +:assumption (or (not x2414) (not x2423) (not x2161) x2431) +:assumption (or (not x2431) x2414) +:assumption (or (not x2431) x2423) +:assumption (or (not x2431) x2161) +:assumption (or (not x2416) (not x2414) (not x2423) (not x2168) x2432) +:assumption (or (not x2432) x2416) +:assumption (or (not x2432) x2414) +:assumption (or (not x2432) x2423) +:assumption (or (not x2432) x2168) +:assumption (or x2164 (not x2176)) +:assumption (or x2164 (not x2432)) +:assumption (or x2164 (not x2431)) +:assumption (or x2164 (not x2430)) +:assumption (or x2176 x2432 x2431 x2430 (not x2164)) +:assumption (or (not x2164) x2165 (not x2166) (not x2150) (not x2151) x2433) +:assumption (or (not x2433) x2164) +:assumption (or (not x2433) (not x2165)) +:assumption (or (not x2433) x2166) +:assumption (or (not x2433) x2150) +:assumption (or (not x2433) x2151) +:assumption (or x2434 (not x2435)) +:assumption (or x2434 (not x2436)) +:assumption (or x2434 (not x2437)) +:assumption (or x2434 (not x2439)) +:assumption (or x2435 x2436 x2437 x2439 (not x2434)) +:assumption (or (not x2440) (not x2441) (not x2434) x2442) +:assumption (or (not x2442) x2440) +:assumption (or (not x2442) x2441) +:assumption (or (not x2442) x2434) +:assumption (or (not x2439) x2438 (not x2443) x2437) +:assumption (or (not x2437) x2439) +:assumption (or (not x2437) (not x2438)) +:assumption (or (not x2437) x2443) +:assumption (or x2444 (not x2435)) +:assumption (or x2444 (not x2436)) +:assumption (or x2444 (not x2437)) +:assumption (or x2444 (not x2438)) +:assumption (or x2435 x2436 x2437 x2438 (not x2444)) +:assumption (or x2441 (not x2435)) +:assumption (or x2441 (not x2436)) +:assumption (or x2441 x2439) +:assumption (or x2441 (not x2438)) +:assumption (or x2441 x2443) +:assumption (or x2435 x2436 (not x2439) x2438 (not x2443) (not x2441)) +:assumption (or x2445 (not x2435)) +:assumption (or x2445 (not x2439)) +:assumption (or x2445 x2438) +:assumption (or x2435 x2439 (not x2438) (not x2445)) +:assumption (or x2440 (not x2439)) +:assumption (or x2440 (not x2438)) +:assumption (or x2439 x2438 (not x2440)) +:assumption (or x2446 (not x2439)) +:assumption (or x2446 (not x2438)) +:assumption (or x2446 x2447) +:assumption (or x2439 x2438 (not x2447) (not x2446)) +:assumption (or (not x2446) (not x2445) (not x2441) (not x2444) x2448) +:assumption (or (not x2448) x2446) +:assumption (or (not x2448) x2445) +:assumption (or (not x2448) x2441) +:assumption (or (not x2448) x2444) +:assumption (or x2186 (not x2449) x2450) +:assumption (or (not x2450) (not x2186)) +:assumption (or (not x2450) x2449) +:assumption (or (not x2150) (not x2451) (not x2181) x2452) +:assumption (or (not x2452) x2150) +:assumption (or (not x2452) x2451) +:assumption (or (not x2452) x2181) +:assumption (or x2453 (not x2452)) +:assumption (or x2453 (not x2450)) +:assumption (or x2452 x2450 (not x2453)) +:assumption (or x2186 (not x2451) x2454) +:assumption (or (not x2454) (not x2186)) +:assumption (or (not x2454) x2451) +:assumption (or (not x2150) (not x2455) (not x2181) x2456) +:assumption (or (not x2456) x2150) +:assumption (or (not x2456) x2455) +:assumption (or (not x2456) x2181) +:assumption (or x2457 (not x2456)) +:assumption (or x2457 (not x2454)) +:assumption (or x2456 x2454 (not x2457)) +:assumption (or x2186 (not x2455) x2458) +:assumption (or (not x2458) (not x2186)) +:assumption (or (not x2458) x2455) +:assumption (or (not x2150) (not x2459) (not x2181) x2460) +:assumption (or (not x2460) x2150) +:assumption (or (not x2460) x2459) +:assumption (or (not x2460) x2181) +:assumption (or x2461 (not x2460)) +:assumption (or x2461 (not x2458)) +:assumption (or x2460 x2458 (not x2461)) +:assumption (or x2186 (not x2459) x2462) +:assumption (or (not x2462) (not x2186)) +:assumption (or (not x2462) x2459) +:assumption (or (not x2150) (not x2181) x2463) +:assumption (or (not x2463) x2150) +:assumption (or (not x2463) x2181) +:assumption (or x2464 (not x2463)) +:assumption (or x2464 (not x2462)) +:assumption (or x2463 x2462 (not x2464)) +:assumption (or x2465 (not x2172)) +:assumption (or x2465 x2173) +:assumption (or x2465 (not x2173)) +:assumption (or x2172 (not x2173) x2173 (not x2465)) +:assumption (or x2466 (not x2467)) +:assumption (or x2466 x2468) +:assumption (or x2467 (not x2468) (not x2466)) +:assumption (or (not x2466) (not x2465) x2469) +:assumption (or (not x2469) x2466) +:assumption (or (not x2469) x2465) +:assumption (or x2470 (not x2147)) +:assumption (or x2470 x2148) +:assumption (or x2470 (not x2148)) +:assumption (or x2147 (not x2148) x2148 (not x2470)) +:assumption (or x2471 (not x2472)) +:assumption (or x2471 x2473) +:assumption (or x2472 (not x2473) (not x2471)) +:assumption (or (not x2471) (not x2470) x2474) +:assumption (or (not x2474) x2471) +:assumption (or (not x2474) x2470) +:assumption (or x2475 (not x2158)) +:assumption (or x2475 x2159) +:assumption (or x2475 (not x2159)) +:assumption (or x2158 (not x2159) x2159 (not x2475)) +:assumption (or x2476 (not x2477)) +:assumption (or x2476 x2478) +:assumption (or x2477 (not x2478) (not x2476)) +:assumption (or (not x2476) (not x2475) x2479) +:assumption (or (not x2479) x2476) +:assumption (or (not x2479) x2475) +:assumption (or x2480 (not x2165)) +:assumption (or x2480 x2166) +:assumption (or x2480 (not x2166)) +:assumption (or x2165 (not x2166) x2166 (not x2480)) +:assumption (or x2481 (not x2482)) +:assumption (or x2481 x2483) +:assumption (or x2482 (not x2483) (not x2481)) +:assumption (or (not x2481) (not x2480) x2484) +:assumption (or (not x2484) x2481) +:assumption (or (not x2484) x2480) +:assumption (or x2485 (not x2150)) +:assumption (or x2485 (not x2186)) +:assumption (or x2150 x2186 (not x2485)) +:assumption (or x2486 (not x2193)) +:assumption (or x2486 (not x2487)) +:assumption (or x2193 x2487 (not x2486)) +:assumption (or x2488 (not x2208)) +:assumption (or x2488 (not x2489)) +:assumption (or x2208 x2489 (not x2488)) +:assumption (or x2490 (not x2223)) +:assumption (or x2490 (not x2491)) +:assumption (or x2223 x2491 (not x2490)) +:assumption (or x2492 (not x2238)) +:assumption (or x2492 (not x2493)) +:assumption (or x2238 x2493 (not x2492)) +:assumption (or x2494 (not x2253)) +:assumption (or x2494 (not x2495)) +:assumption (or x2253 x2495 (not x2494)) +:assumption (or x2496 (not x2268)) +:assumption (or x2496 (not x2497)) +:assumption (or x2268 x2497 (not x2496)) +:assumption (or x2498 (not x2283)) +:assumption (or x2498 (not x2499)) +:assumption (or x2283 x2499 (not x2498)) +:assumption (or x2500 (not x2298)) +:assumption (or x2500 (not x2501)) +:assumption (or x2298 x2501 (not x2500)) +:assumption (or x2502 (not x2313)) +:assumption (or x2502 (not x2503)) +:assumption (or x2313 x2503 (not x2502)) +:assumption (or x2504 (not x2328)) +:assumption (or x2504 (not x2505)) +:assumption (or x2328 x2505 (not x2504)) +:assumption (or x2506 (not x2343)) +:assumption (or x2506 (not x2507)) +:assumption (or x2343 x2507 (not x2506)) +:assumption (or x2508 (not x2358)) +:assumption (or x2508 (not x2509)) +:assumption (or x2358 x2509 (not x2508)) +:assumption (or x2510 (not x2373)) +:assumption (or x2510 (not x2511)) +:assumption (or x2373 x2511 (not x2510)) +:assumption (or x2512 (not x2388)) +:assumption (or x2512 (not x2513)) +:assumption (or x2388 x2513 (not x2512)) +:assumption (or x2514 (not x2403)) +:assumption (or x2514 (not x2515)) +:assumption (or x2403 x2515 (not x2514)) +:assumption (or x2516 (not x2438)) +:assumption (or x2516 (not x2517)) +:assumption (or x2438 x2517 (not x2516)) +:assumption (or (not x114) (not x2518) (not x2519) (not x2520) (not x2521) x2522) +:assumption (or (not x2522) x114) +:assumption (or (not x2522) x2518) +:assumption (or (not x2522) x2519) +:assumption (or (not x2522) x2520) +:assumption (or (not x2522) x2521) +:assumption (or (not x102) (not x2519) (not x2518) (not x2180) (not x2523) x2524) +:assumption (or (not x2524) x102) +:assumption (or (not x2524) x2519) +:assumption (or (not x2524) x2518) +:assumption (or (not x2524) x2180) +:assumption (or (not x2524) x2523) +:assumption (or (not x99) (not x2519) (not x2518) (not x2525) (not x2526) (not x2527) (not x2528) (not x2180) x2529) +:assumption (or (not x2529) x99) +:assumption (or (not x2529) x2519) +:assumption (or (not x2529) x2518) +:assumption (or (not x2529) x2525) +:assumption (or (not x2529) x2526) +:assumption (or (not x2529) x2527) +:assumption (or (not x2529) x2528) +:assumption (or (not x2529) x2180) +:assumption (or (not x2530) (not x2531) (not x2518) (not x2180) (not x2181) (not x2182) (not x2181) x2532) +:assumption (or (not x2532) x2530) +:assumption (or (not x2532) x2531) +:assumption (or (not x2532) x2518) +:assumption (or (not x2532) x2180) +:assumption (or (not x2532) x2181) +:assumption (or (not x2532) x2182) +:assumption (or (not x2532) x2181) +:assumption (or x2533 (not x2532)) +:assumption (or x2533 (not x2529)) +:assumption (or x2533 (not x2524)) +:assumption (or x2533 (not x2522)) +:assumption (or x2533 (not x2534)) +:assumption (or x2532 x2529 x2524 x2522 x2534 (not x2533)) +:assumption (or (not x113) (not x2518) (not x2519) (not x2520) (not x2521) x2535) +:assumption (or (not x2535) x113) +:assumption (or (not x2535) x2518) +:assumption (or (not x2535) x2519) +:assumption (or (not x2535) x2520) +:assumption (or (not x2535) x2521) +:assumption (or (not x101) (not x2519) (not x2518) (not x2180) (not x2523) x2536) +:assumption (or (not x2536) x101) +:assumption (or (not x2536) x2519) +:assumption (or (not x2536) x2518) +:assumption (or (not x2536) x2180) +:assumption (or (not x2536) x2523) +:assumption (or (not x114) (not x2519) (not x2518) (not x2525) (not x2526) (not x2527) (not x2528) (not x2180) x2537) +:assumption (or (not x2537) x114) +:assumption (or (not x2537) x2519) +:assumption (or (not x2537) x2518) +:assumption (or (not x2537) x2525) +:assumption (or (not x2537) x2526) +:assumption (or (not x2537) x2527) +:assumption (or (not x2537) x2528) +:assumption (or (not x2537) x2180) +:assumption (or (not x114) (not x2538) (not x2518) (not x2180) (not x2181) (not x2182) (not x2181) x2539) +:assumption (or (not x2539) x114) +:assumption (or (not x2539) x2538) +:assumption (or (not x2539) x2518) +:assumption (or (not x2539) x2180) +:assumption (or (not x2539) x2181) +:assumption (or (not x2539) x2182) +:assumption (or (not x2539) x2181) +:assumption (or x2540 (not x2539)) +:assumption (or x2540 (not x2537)) +:assumption (or x2540 (not x2536)) +:assumption (or x2540 (not x2535)) +:assumption (or x2539 x2537 x2536 x2535 (not x2540)) +:assumption (or (not x112) (not x2518) (not x2519) (not x2520) (not x2521) x2541) +:assumption (or (not x2541) x112) +:assumption (or (not x2541) x2518) +:assumption (or (not x2541) x2519) +:assumption (or (not x2541) x2520) +:assumption (or (not x2541) x2521) +:assumption (or (not x100) (not x2519) (not x2518) (not x2180) (not x2523) x2542) +:assumption (or (not x2542) x100) +:assumption (or (not x2542) x2519) +:assumption (or (not x2542) x2518) +:assumption (or (not x2542) x2180) +:assumption (or (not x2542) x2523) +:assumption (or (not x113) (not x2519) (not x2518) (not x2525) (not x2526) (not x2527) (not x2528) (not x2180) x2543) +:assumption (or (not x2543) x113) +:assumption (or (not x2543) x2519) +:assumption (or (not x2543) x2518) +:assumption (or (not x2543) x2525) +:assumption (or (not x2543) x2526) +:assumption (or (not x2543) x2527) +:assumption (or (not x2543) x2528) +:assumption (or (not x2543) x2180) +:assumption (or (not x2544) (not x2545) (not x2518) (not x2180) (not x2181) (not x2182) (not x2181) x2546) +:assumption (or (not x2546) x2544) +:assumption (or (not x2546) x2545) +:assumption (or (not x2546) x2518) +:assumption (or (not x2546) x2180) +:assumption (or (not x2546) x2181) +:assumption (or (not x2546) x2182) +:assumption (or (not x2546) x2181) +:assumption (or x2547 (not x2546)) +:assumption (or x2547 (not x2543)) +:assumption (or x2547 (not x2542)) +:assumption (or x2547 (not x2541)) +:assumption (or x2546 x2543 x2542 x2541 (not x2547)) +:assumption (or (not x111) (not x2518) (not x2519) (not x2520) (not x2521) x2548) +:assumption (or (not x2548) x111) +:assumption (or (not x2548) x2518) +:assumption (or (not x2548) x2519) +:assumption (or (not x2548) x2520) +:assumption (or (not x2548) x2521) +:assumption (or (not x99) (not x2519) (not x2518) (not x2180) (not x2523) x2549) +:assumption (or (not x2549) x99) +:assumption (or (not x2549) x2519) +:assumption (or (not x2549) x2518) +:assumption (or (not x2549) x2180) +:assumption (or (not x2549) x2523) +:assumption (or (not x112) (not x2519) (not x2518) (not x2525) (not x2526) (not x2527) (not x2528) (not x2180) x2550) +:assumption (or (not x2550) x112) +:assumption (or (not x2550) x2519) +:assumption (or (not x2550) x2518) +:assumption (or (not x2550) x2525) +:assumption (or (not x2550) x2526) +:assumption (or (not x2550) x2527) +:assumption (or (not x2550) x2528) +:assumption (or (not x2550) x2180) +:assumption (or (not x2551) (not x2552) (not x2518) (not x2180) (not x2181) (not x2182) (not x2181) x2553) +:assumption (or (not x2553) x2551) +:assumption (or (not x2553) x2552) +:assumption (or (not x2553) x2518) +:assumption (or (not x2553) x2180) +:assumption (or (not x2553) x2181) +:assumption (or (not x2553) x2182) +:assumption (or (not x2553) x2181) +:assumption (or x2554 (not x2553)) +:assumption (or x2554 (not x2550)) +:assumption (or x2554 (not x2549)) +:assumption (or x2554 (not x2548)) +:assumption (or x2553 x2550 x2549 x2548 (not x2554)) +:assumption (or (not x110) (not x2518) (not x2519) (not x2520) (not x2521) x2555) +:assumption (or (not x2555) x110) +:assumption (or (not x2555) x2518) +:assumption (or (not x2555) x2519) +:assumption (or (not x2555) x2520) +:assumption (or (not x2555) x2521) +:assumption (or (not x114) (not x2519) (not x2518) (not x2180) (not x2523) x2556) +:assumption (or (not x2556) x114) +:assumption (or (not x2556) x2519) +:assumption (or (not x2556) x2518) +:assumption (or (not x2556) x2180) +:assumption (or (not x2556) x2523) +:assumption (or (not x111) (not x2519) (not x2518) (not x2525) (not x2526) (not x2527) (not x2528) (not x2180) x2557) +:assumption (or (not x2557) x111) +:assumption (or (not x2557) x2519) +:assumption (or (not x2557) x2518) +:assumption (or (not x2557) x2525) +:assumption (or (not x2557) x2526) +:assumption (or (not x2557) x2527) +:assumption (or (not x2557) x2528) +:assumption (or (not x2557) x2180) +:assumption (or (not x2558) (not x2559) (not x2518) (not x2180) (not x2181) (not x2182) (not x2181) x2560) +:assumption (or (not x2560) x2558) +:assumption (or (not x2560) x2559) +:assumption (or (not x2560) x2518) +:assumption (or (not x2560) x2180) +:assumption (or (not x2560) x2181) +:assumption (or (not x2560) x2182) +:assumption (or (not x2560) x2181) +:assumption (or x2561 (not x2560)) +:assumption (or x2561 (not x2557)) +:assumption (or x2561 (not x2556)) +:assumption (or x2561 (not x2555)) +:assumption (or x2560 x2557 x2556 x2555 (not x2561)) +:assumption (or (not x109) (not x2518) (not x2519) (not x2520) (not x2521) x2562) +:assumption (or (not x2562) x109) +:assumption (or (not x2562) x2518) +:assumption (or (not x2562) x2519) +:assumption (or (not x2562) x2520) +:assumption (or (not x2562) x2521) +:assumption (or (not x113) (not x2519) (not x2518) (not x2180) (not x2523) x2563) +:assumption (or (not x2563) x113) +:assumption (or (not x2563) x2519) +:assumption (or (not x2563) x2518) +:assumption (or (not x2563) x2180) +:assumption (or (not x2563) x2523) +:assumption (or (not x110) (not x2519) (not x2518) (not x2525) (not x2526) (not x2527) (not x2528) (not x2180) x2564) +:assumption (or (not x2564) x110) +:assumption (or (not x2564) x2519) +:assumption (or (not x2564) x2518) +:assumption (or (not x2564) x2525) +:assumption (or (not x2564) x2526) +:assumption (or (not x2564) x2527) +:assumption (or (not x2564) x2528) +:assumption (or (not x2564) x2180) +:assumption (or (not x110) (not x2565) (not x2518) (not x2180) (not x2181) (not x2182) (not x2181) x2566) +:assumption (or (not x2566) x110) +:assumption (or (not x2566) x2565) +:assumption (or (not x2566) x2518) +:assumption (or (not x2566) x2180) +:assumption (or (not x2566) x2181) +:assumption (or (not x2566) x2182) +:assumption (or (not x2566) x2181) +:assumption (or x2567 (not x2566)) +:assumption (or x2567 (not x2564)) +:assumption (or x2567 (not x2563)) +:assumption (or x2567 (not x2562)) +:assumption (or x2566 x2564 x2563 x2562 (not x2567)) +:assumption (or (not x108) (not x2518) (not x2519) (not x2520) (not x2521) x2568) +:assumption (or (not x2568) x108) +:assumption (or (not x2568) x2518) +:assumption (or (not x2568) x2519) +:assumption (or (not x2568) x2520) +:assumption (or (not x2568) x2521) +:assumption (or (not x112) (not x2519) (not x2518) (not x2180) (not x2523) x2569) +:assumption (or (not x2569) x112) +:assumption (or (not x2569) x2519) +:assumption (or (not x2569) x2518) +:assumption (or (not x2569) x2180) +:assumption (or (not x2569) x2523) +:assumption (or (not x109) (not x2519) (not x2518) (not x2525) (not x2526) (not x2527) (not x2528) (not x2180) x2570) +:assumption (or (not x2570) x109) +:assumption (or (not x2570) x2519) +:assumption (or (not x2570) x2518) +:assumption (or (not x2570) x2525) +:assumption (or (not x2570) x2526) +:assumption (or (not x2570) x2527) +:assumption (or (not x2570) x2528) +:assumption (or (not x2570) x2180) +:assumption (or (not x2571) (not x2572) (not x2518) (not x2180) (not x2181) (not x2182) (not x2181) x2573) +:assumption (or (not x2573) x2571) +:assumption (or (not x2573) x2572) +:assumption (or (not x2573) x2518) +:assumption (or (not x2573) x2180) +:assumption (or (not x2573) x2181) +:assumption (or (not x2573) x2182) +:assumption (or (not x2573) x2181) +:assumption (or x2574 (not x2573)) +:assumption (or x2574 (not x2570)) +:assumption (or x2574 (not x2569)) +:assumption (or x2574 (not x2568)) +:assumption (or x2573 x2570 x2569 x2568 (not x2574)) +:assumption (or (not x107) (not x2518) (not x2519) (not x2520) (not x2521) x2575) +:assumption (or (not x2575) x107) +:assumption (or (not x2575) x2518) +:assumption (or (not x2575) x2519) +:assumption (or (not x2575) x2520) +:assumption (or (not x2575) x2521) +:assumption (or (not x111) (not x2519) (not x2518) (not x2180) (not x2523) x2576) +:assumption (or (not x2576) x111) +:assumption (or (not x2576) x2519) +:assumption (or (not x2576) x2518) +:assumption (or (not x2576) x2180) +:assumption (or (not x2576) x2523) +:assumption (or (not x108) (not x2519) (not x2518) (not x2525) (not x2526) (not x2527) (not x2528) (not x2180) x2577) +:assumption (or (not x2577) x108) +:assumption (or (not x2577) x2519) +:assumption (or (not x2577) x2518) +:assumption (or (not x2577) x2525) +:assumption (or (not x2577) x2526) +:assumption (or (not x2577) x2527) +:assumption (or (not x2577) x2528) +:assumption (or (not x2577) x2180) +:assumption (or (not x2578) (not x2579) (not x2518) (not x2180) (not x2181) (not x2182) (not x2181) x2580) +:assumption (or (not x2580) x2578) +:assumption (or (not x2580) x2579) +:assumption (or (not x2580) x2518) +:assumption (or (not x2580) x2180) +:assumption (or (not x2580) x2181) +:assumption (or (not x2580) x2182) +:assumption (or (not x2580) x2181) +:assumption (or x2581 (not x2580)) +:assumption (or x2581 (not x2577)) +:assumption (or x2581 (not x2576)) +:assumption (or x2581 (not x2575)) +:assumption (or x2580 x2577 x2576 x2575 (not x2581)) +:assumption (or (not x106) (not x2518) (not x2519) (not x2520) (not x2521) x2582) +:assumption (or (not x2582) x106) +:assumption (or (not x2582) x2518) +:assumption (or (not x2582) x2519) +:assumption (or (not x2582) x2520) +:assumption (or (not x2582) x2521) +:assumption (or (not x110) (not x2519) (not x2518) (not x2180) (not x2523) x2583) +:assumption (or (not x2583) x110) +:assumption (or (not x2583) x2519) +:assumption (or (not x2583) x2518) +:assumption (or (not x2583) x2180) +:assumption (or (not x2583) x2523) +:assumption (or (not x107) (not x2519) (not x2518) (not x2525) (not x2526) (not x2527) (not x2528) (not x2180) x2584) +:assumption (or (not x2584) x107) +:assumption (or (not x2584) x2519) +:assumption (or (not x2584) x2518) +:assumption (or (not x2584) x2525) +:assumption (or (not x2584) x2526) +:assumption (or (not x2584) x2527) +:assumption (or (not x2584) x2528) +:assumption (or (not x2584) x2180) +:assumption (or (not x2585) (not x2586) (not x2518) (not x2180) (not x2181) (not x2182) (not x2181) x2587) +:assumption (or (not x2587) x2585) +:assumption (or (not x2587) x2586) +:assumption (or (not x2587) x2518) +:assumption (or (not x2587) x2180) +:assumption (or (not x2587) x2181) +:assumption (or (not x2587) x2182) +:assumption (or (not x2587) x2181) +:assumption (or x2588 (not x2587)) +:assumption (or x2588 (not x2584)) +:assumption (or x2588 (not x2583)) +:assumption (or x2588 (not x2582)) +:assumption (or x2587 x2584 x2583 x2582 (not x2588)) +:assumption (or (not x105) (not x2518) (not x2519) (not x2520) (not x2521) x2589) +:assumption (or (not x2589) x105) +:assumption (or (not x2589) x2518) +:assumption (or (not x2589) x2519) +:assumption (or (not x2589) x2520) +:assumption (or (not x2589) x2521) +:assumption (or (not x109) (not x2519) (not x2518) (not x2180) (not x2523) x2590) +:assumption (or (not x2590) x109) +:assumption (or (not x2590) x2519) +:assumption (or (not x2590) x2518) +:assumption (or (not x2590) x2180) +:assumption (or (not x2590) x2523) +:assumption (or (not x106) (not x2519) (not x2518) (not x2525) (not x2526) (not x2527) (not x2528) (not x2180) x2591) +:assumption (or (not x2591) x106) +:assumption (or (not x2591) x2519) +:assumption (or (not x2591) x2518) +:assumption (or (not x2591) x2525) +:assumption (or (not x2591) x2526) +:assumption (or (not x2591) x2527) +:assumption (or (not x2591) x2528) +:assumption (or (not x2591) x2180) +:assumption (or (not x106) (not x2592) (not x2518) (not x2180) (not x2181) (not x2182) (not x2181) x2593) +:assumption (or (not x2593) x106) +:assumption (or (not x2593) x2592) +:assumption (or (not x2593) x2518) +:assumption (or (not x2593) x2180) +:assumption (or (not x2593) x2181) +:assumption (or (not x2593) x2182) +:assumption (or (not x2593) x2181) +:assumption (or x2594 (not x2593)) +:assumption (or x2594 (not x2591)) +:assumption (or x2594 (not x2590)) +:assumption (or x2594 (not x2589)) +:assumption (or x2593 x2591 x2590 x2589 (not x2594)) +:assumption (or (not x104) (not x2518) (not x2519) (not x2520) (not x2521) x2595) +:assumption (or (not x2595) x104) +:assumption (or (not x2595) x2518) +:assumption (or (not x2595) x2519) +:assumption (or (not x2595) x2520) +:assumption (or (not x2595) x2521) +:assumption (or (not x108) (not x2519) (not x2518) (not x2180) (not x2523) x2596) +:assumption (or (not x2596) x108) +:assumption (or (not x2596) x2519) +:assumption (or (not x2596) x2518) +:assumption (or (not x2596) x2180) +:assumption (or (not x2596) x2523) +:assumption (or (not x105) (not x2519) (not x2518) (not x2525) (not x2526) (not x2527) (not x2528) (not x2180) x2597) +:assumption (or (not x2597) x105) +:assumption (or (not x2597) x2519) +:assumption (or (not x2597) x2518) +:assumption (or (not x2597) x2525) +:assumption (or (not x2597) x2526) +:assumption (or (not x2597) x2527) +:assumption (or (not x2597) x2528) +:assumption (or (not x2597) x2180) +:assumption (or (not x2598) (not x2599) (not x2518) (not x2180) (not x2181) (not x2182) (not x2181) x2600) +:assumption (or (not x2600) x2598) +:assumption (or (not x2600) x2599) +:assumption (or (not x2600) x2518) +:assumption (or (not x2600) x2180) +:assumption (or (not x2600) x2181) +:assumption (or (not x2600) x2182) +:assumption (or (not x2600) x2181) +:assumption (or x2601 (not x2600)) +:assumption (or x2601 (not x2597)) +:assumption (or x2601 (not x2596)) +:assumption (or x2601 (not x2595)) +:assumption (or x2600 x2597 x2596 x2595 (not x2601)) +:assumption (or (not x103) (not x2518) (not x2519) (not x2520) (not x2521) x2602) +:assumption (or (not x2602) x103) +:assumption (or (not x2602) x2518) +:assumption (or (not x2602) x2519) +:assumption (or (not x2602) x2520) +:assumption (or (not x2602) x2521) +:assumption (or (not x107) (not x2519) (not x2518) (not x2180) (not x2523) x2603) +:assumption (or (not x2603) x107) +:assumption (or (not x2603) x2519) +:assumption (or (not x2603) x2518) +:assumption (or (not x2603) x2180) +:assumption (or (not x2603) x2523) +:assumption (or (not x104) (not x2519) (not x2518) (not x2525) (not x2526) (not x2527) (not x2528) (not x2180) x2604) +:assumption (or (not x2604) x104) +:assumption (or (not x2604) x2519) +:assumption (or (not x2604) x2518) +:assumption (or (not x2604) x2525) +:assumption (or (not x2604) x2526) +:assumption (or (not x2604) x2527) +:assumption (or (not x2604) x2528) +:assumption (or (not x2604) x2180) +:assumption (or (not x2605) (not x2606) (not x2518) (not x2180) (not x2181) (not x2182) (not x2181) x2607) +:assumption (or (not x2607) x2605) +:assumption (or (not x2607) x2606) +:assumption (or (not x2607) x2518) +:assumption (or (not x2607) x2180) +:assumption (or (not x2607) x2181) +:assumption (or (not x2607) x2182) +:assumption (or (not x2607) x2181) +:assumption (or x2608 (not x2607)) +:assumption (or x2608 (not x2604)) +:assumption (or x2608 (not x2603)) +:assumption (or x2608 (not x2602)) +:assumption (or x2607 x2604 x2603 x2602 (not x2608)) +:assumption (or (not x102) (not x2518) (not x2519) (not x2520) (not x2521) x2609) +:assumption (or (not x2609) x102) +:assumption (or (not x2609) x2518) +:assumption (or (not x2609) x2519) +:assumption (or (not x2609) x2520) +:assumption (or (not x2609) x2521) +:assumption (or (not x106) (not x2519) (not x2518) (not x2180) (not x2523) x2610) +:assumption (or (not x2610) x106) +:assumption (or (not x2610) x2519) +:assumption (or (not x2610) x2518) +:assumption (or (not x2610) x2180) +:assumption (or (not x2610) x2523) +:assumption (or (not x103) (not x2519) (not x2518) (not x2525) (not x2526) (not x2527) (not x2528) (not x2180) x2611) +:assumption (or (not x2611) x103) +:assumption (or (not x2611) x2519) +:assumption (or (not x2611) x2518) +:assumption (or (not x2611) x2525) +:assumption (or (not x2611) x2526) +:assumption (or (not x2611) x2527) +:assumption (or (not x2611) x2528) +:assumption (or (not x2611) x2180) +:assumption (or (not x2612) (not x2613) (not x2518) (not x2180) (not x2181) (not x2182) (not x2181) x2614) +:assumption (or (not x2614) x2612) +:assumption (or (not x2614) x2613) +:assumption (or (not x2614) x2518) +:assumption (or (not x2614) x2180) +:assumption (or (not x2614) x2181) +:assumption (or (not x2614) x2182) +:assumption (or (not x2614) x2181) +:assumption (or x2615 (not x2614)) +:assumption (or x2615 (not x2611)) +:assumption (or x2615 (not x2610)) +:assumption (or x2615 (not x2609)) +:assumption (or x2614 x2611 x2610 x2609 (not x2615)) +:assumption (or (not x101) (not x2518) (not x2519) (not x2520) (not x2521) x2616) +:assumption (or (not x2616) x101) +:assumption (or (not x2616) x2518) +:assumption (or (not x2616) x2519) +:assumption (or (not x2616) x2520) +:assumption (or (not x2616) x2521) +:assumption (or (not x105) (not x2519) (not x2518) (not x2180) (not x2523) x2617) +:assumption (or (not x2617) x105) +:assumption (or (not x2617) x2519) +:assumption (or (not x2617) x2518) +:assumption (or (not x2617) x2180) +:assumption (or (not x2617) x2523) +:assumption (or (not x102) (not x2519) (not x2518) (not x2525) (not x2526) (not x2527) (not x2528) (not x2180) x2618) +:assumption (or (not x2618) x102) +:assumption (or (not x2618) x2519) +:assumption (or (not x2618) x2518) +:assumption (or (not x2618) x2525) +:assumption (or (not x2618) x2526) +:assumption (or (not x2618) x2527) +:assumption (or (not x2618) x2528) +:assumption (or (not x2618) x2180) +:assumption (or (not x102) (not x2619) (not x2518) (not x2180) (not x2181) (not x2182) (not x2181) x2620) +:assumption (or (not x2620) x102) +:assumption (or (not x2620) x2619) +:assumption (or (not x2620) x2518) +:assumption (or (not x2620) x2180) +:assumption (or (not x2620) x2181) +:assumption (or (not x2620) x2182) +:assumption (or (not x2620) x2181) +:assumption (or x2621 (not x2620)) +:assumption (or x2621 (not x2618)) +:assumption (or x2621 (not x2617)) +:assumption (or x2621 (not x2616)) +:assumption (or x2620 x2618 x2617 x2616 (not x2621)) +:assumption (or (not x100) (not x2518) (not x2519) (not x2520) (not x2521) x2622) +:assumption (or (not x2622) x100) +:assumption (or (not x2622) x2518) +:assumption (or (not x2622) x2519) +:assumption (or (not x2622) x2520) +:assumption (or (not x2622) x2521) +:assumption (or (not x104) (not x2519) (not x2518) (not x2180) (not x2523) x2623) +:assumption (or (not x2623) x104) +:assumption (or (not x2623) x2519) +:assumption (or (not x2623) x2518) +:assumption (or (not x2623) x2180) +:assumption (or (not x2623) x2523) +:assumption (or (not x101) (not x2519) (not x2518) (not x2525) (not x2526) (not x2527) (not x2528) (not x2180) x2624) +:assumption (or (not x2624) x101) +:assumption (or (not x2624) x2519) +:assumption (or (not x2624) x2518) +:assumption (or (not x2624) x2525) +:assumption (or (not x2624) x2526) +:assumption (or (not x2624) x2527) +:assumption (or (not x2624) x2528) +:assumption (or (not x2624) x2180) +:assumption (or (not x2625) (not x2626) (not x2518) (not x2180) (not x2181) (not x2182) (not x2181) x2627) +:assumption (or (not x2627) x2625) +:assumption (or (not x2627) x2626) +:assumption (or (not x2627) x2518) +:assumption (or (not x2627) x2180) +:assumption (or (not x2627) x2181) +:assumption (or (not x2627) x2182) +:assumption (or (not x2627) x2181) +:assumption (or x2628 (not x2627)) +:assumption (or x2628 (not x2624)) +:assumption (or x2628 (not x2623)) +:assumption (or x2628 (not x2622)) +:assumption (or x2627 x2624 x2623 x2622 (not x2628)) +:assumption (or x2521 (not x2629)) +:assumption (or x2521 (not x2534)) +:assumption (or x2521 (not x2630)) +:assumption (or x2521 (not x2631)) +:assumption (or x2521 (not x2632)) +:assumption (or x2521 (not x2633)) +:assumption (or x2521 x2180) +:assumption (or x2629 x2534 x2630 x2631 x2632 x2633 (not x2180) (not x2521)) +:assumption (or x114 x113 x112 x111 x110 x109 x108 x107 x106 x105 x104 x103 x102 x101 x100 x99 x2534) +:assumption (or (not x2534) (not x114)) +:assumption (or (not x2534) (not x113)) +:assumption (or (not x2534) (not x112)) +:assumption (or (not x2534) (not x111)) +:assumption (or (not x2534) (not x110)) +:assumption (or (not x2534) (not x109)) +:assumption (or (not x2534) (not x108)) +:assumption (or (not x2534) (not x107)) +:assumption (or (not x2534) (not x106)) +:assumption (or (not x2534) (not x105)) +:assumption (or (not x2534) (not x104)) +:assumption (or (not x2534) (not x103)) +:assumption (or (not x2534) (not x102)) +:assumption (or (not x2534) (not x101)) +:assumption (or (not x2534) (not x100)) +:assumption (or (not x2534) (not x99)) +:assumption (or x2520 (not x2629)) +:assumption (or x2520 (not x2534)) +:assumption (or x2520 x2180) +:assumption (or x2520 (not x2634)) +:assumption (or x2629 x2534 (not x2180) x2634 (not x2520)) +:assumption (or (not x99) (not x2518) (not x2519) (not x2520) (not x2521) x2635) +:assumption (or (not x2635) x99) +:assumption (or (not x2635) x2518) +:assumption (or (not x2635) x2519) +:assumption (or (not x2635) x2520) +:assumption (or (not x2635) x2521) +:assumption (or x2636 (not x100) x2637) +:assumption (or (not x2637) (not x2636)) +:assumption (or (not x2637) x100) +:assumption (or x2626 x2636 (not x101) x2638) +:assumption (or (not x2638) (not x2626)) +:assumption (or (not x2638) (not x2636)) +:assumption (or (not x2638) x101) +:assumption (or x2619 x2626 x2636 (not x102) x2639) +:assumption (or (not x2639) (not x2619)) +:assumption (or (not x2639) (not x2626)) +:assumption (or (not x2639) (not x2636)) +:assumption (or (not x2639) x102) +:assumption (or x2530 (not x99)) +:assumption (or x2530 (not x2639)) +:assumption (or x2530 (not x2638)) +:assumption (or x2530 (not x2637)) +:assumption (or x99 x2639 x2638 x2637 (not x2530)) +:assumption (or (not x2530) (not x2531) (not x2180) (not x2181) (not x2182) (not x2181) x2640) +:assumption (or (not x2640) x2530) +:assumption (or (not x2640) x2531) +:assumption (or (not x2640) x2180) +:assumption (or (not x2640) x2181) +:assumption (or (not x2640) x2182) +:assumption (or (not x2640) x2181) +:assumption (or x2641 (not x2640)) +:assumption (or x2641 x2531) +:assumption (or x2640 (not x2531) (not x2641)) +:assumption (or (not x2642) (not x2636) (not x2180) (not x2181) (not x2182) (not x2181) x2643) +:assumption (or (not x2643) x2642) +:assumption (or (not x2643) x2636) +:assumption (or (not x2643) x2180) +:assumption (or (not x2643) x2181) +:assumption (or (not x2643) x2182) +:assumption (or (not x2643) x2181) +:assumption (or x2644 (not x2643)) +:assumption (or x2644 x2636) +:assumption (or x2643 (not x2636) (not x2644)) +:assumption (or x2619 (not x102) x2645) +:assumption (or (not x2645) (not x2619)) +:assumption (or (not x2645) x102) +:assumption (or x2625 (not x101)) +:assumption (or x2625 (not x2645)) +:assumption (or x101 x2645 (not x2625)) +:assumption (or (not x2625) (not x2626) (not x2180) (not x2181) (not x2182) (not x2181) x2646) +:assumption (or (not x2646) x2625) +:assumption (or (not x2646) x2626) +:assumption (or (not x2646) x2180) +:assumption (or (not x2646) x2181) +:assumption (or (not x2646) x2182) +:assumption (or (not x2646) x2181) +:assumption (or x2647 (not x2646)) +:assumption (or x2647 x2626) +:assumption (or x2646 (not x2626) (not x2647)) +:assumption (or (not x102) (not x2619) (not x2180) (not x2181) (not x2182) (not x2181) x2648) +:assumption (or (not x2648) x102) +:assumption (or (not x2648) x2619) +:assumption (or (not x2648) x2180) +:assumption (or (not x2648) x2181) +:assumption (or (not x2648) x2182) +:assumption (or (not x2648) x2181) +:assumption (or x2649 (not x2648)) +:assumption (or x2649 x2619) +:assumption (or x2648 (not x2619) (not x2649)) +:assumption (or (not x2649) (not x2647) (not x2644) (not x2641) (not x102) x2633) +:assumption (or (not x2633) x2649) +:assumption (or (not x2633) x2647) +:assumption (or (not x2633) x2644) +:assumption (or (not x2633) x2641) +:assumption (or (not x2633) x102) +:assumption (or x2606 (not x104) x2650) +:assumption (or (not x2650) (not x2606)) +:assumption (or (not x2650) x104) +:assumption (or x2599 x2606 (not x105) x2651) +:assumption (or (not x2651) (not x2599)) +:assumption (or (not x2651) (not x2606)) +:assumption (or (not x2651) x105) +:assumption (or x2592 x2599 x2606 (not x106) x2652) +:assumption (or (not x2652) (not x2592)) +:assumption (or (not x2652) (not x2599)) +:assumption (or (not x2652) (not x2606)) +:assumption (or (not x2652) x106) +:assumption (or x2612 (not x103)) +:assumption (or x2612 (not x2652)) +:assumption (or x2612 (not x2651)) +:assumption (or x2612 (not x2650)) +:assumption (or x103 x2652 x2651 x2650 (not x2612)) +:assumption (or (not x2612) (not x2613) (not x2180) (not x2181) (not x2182) (not x2181) x2653) +:assumption (or (not x2653) x2612) +:assumption (or (not x2653) x2613) +:assumption (or (not x2653) x2180) +:assumption (or (not x2653) x2181) +:assumption (or (not x2653) x2182) +:assumption (or (not x2653) x2181) +:assumption (or x2654 (not x2653)) +:assumption (or x2654 x2613) +:assumption (or x2653 (not x2613) (not x2654)) +:assumption (or x2599 (not x105) x2655) +:assumption (or (not x2655) (not x2599)) +:assumption (or (not x2655) x105) +:assumption (or x2592 x2599 (not x106) x2656) +:assumption (or (not x2656) (not x2592)) +:assumption (or (not x2656) (not x2599)) +:assumption (or (not x2656) x106) +:assumption (or x2605 (not x104)) +:assumption (or x2605 (not x2656)) +:assumption (or x2605 (not x2655)) +:assumption (or x104 x2656 x2655 (not x2605)) +:assumption (or (not x2605) (not x2606) (not x2180) (not x2181) (not x2182) (not x2181) x2657) +:assumption (or (not x2657) x2605) +:assumption (or (not x2657) x2606) +:assumption (or (not x2657) x2180) +:assumption (or (not x2657) x2181) +:assumption (or (not x2657) x2182) +:assumption (or (not x2657) x2181) +:assumption (or x2658 (not x2657)) +:assumption (or x2658 x2606) +:assumption (or x2657 (not x2606) (not x2658)) +:assumption (or x2592 (not x106) x2659) +:assumption (or (not x2659) (not x2592)) +:assumption (or (not x2659) x106) +:assumption (or x2598 (not x105)) +:assumption (or x2598 (not x2659)) +:assumption (or x105 x2659 (not x2598)) +:assumption (or (not x2598) (not x2599) (not x2180) (not x2181) (not x2182) (not x2181) x2660) +:assumption (or (not x2660) x2598) +:assumption (or (not x2660) x2599) +:assumption (or (not x2660) x2180) +:assumption (or (not x2660) x2181) +:assumption (or (not x2660) x2182) +:assumption (or (not x2660) x2181) +:assumption (or x2661 (not x2660)) +:assumption (or x2661 x2599) +:assumption (or x2660 (not x2599) (not x2661)) +:assumption (or (not x106) (not x2592) (not x2180) (not x2181) (not x2182) (not x2181) x2662) +:assumption (or (not x2662) x106) +:assumption (or (not x2662) x2592) +:assumption (or (not x2662) x2180) +:assumption (or (not x2662) x2181) +:assumption (or (not x2662) x2182) +:assumption (or (not x2662) x2181) +:assumption (or x2663 (not x2662)) +:assumption (or x2663 x2592) +:assumption (or x2662 (not x2592) (not x2663)) +:assumption (or (not x2663) (not x2661) (not x2658) (not x2654) (not x106) x2632) +:assumption (or (not x2632) x2663) +:assumption (or (not x2632) x2661) +:assumption (or (not x2632) x2658) +:assumption (or (not x2632) x2654) +:assumption (or (not x2632) x106) +:assumption (or x2579 (not x108) x2664) +:assumption (or (not x2664) (not x2579)) +:assumption (or (not x2664) x108) +:assumption (or x2572 x2579 (not x109) x2665) +:assumption (or (not x2665) (not x2572)) +:assumption (or (not x2665) (not x2579)) +:assumption (or (not x2665) x109) +:assumption (or x2565 x2572 x2579 (not x110) x2666) +:assumption (or (not x2666) (not x2565)) +:assumption (or (not x2666) (not x2572)) +:assumption (or (not x2666) (not x2579)) +:assumption (or (not x2666) x110) +:assumption (or x2585 (not x107)) +:assumption (or x2585 (not x2666)) +:assumption (or x2585 (not x2665)) +:assumption (or x2585 (not x2664)) +:assumption (or x107 x2666 x2665 x2664 (not x2585)) +:assumption (or (not x2585) (not x2586) (not x2180) (not x2181) (not x2182) (not x2181) x2667) +:assumption (or (not x2667) x2585) +:assumption (or (not x2667) x2586) +:assumption (or (not x2667) x2180) +:assumption (or (not x2667) x2181) +:assumption (or (not x2667) x2182) +:assumption (or (not x2667) x2181) +:assumption (or x2668 (not x2667)) +:assumption (or x2668 x2586) +:assumption (or x2667 (not x2586) (not x2668)) +:assumption (or x2572 (not x109) x2669) +:assumption (or (not x2669) (not x2572)) +:assumption (or (not x2669) x109) +:assumption (or x2565 x2572 (not x110) x2670) +:assumption (or (not x2670) (not x2565)) +:assumption (or (not x2670) (not x2572)) +:assumption (or (not x2670) x110) +:assumption (or x2578 (not x108)) +:assumption (or x2578 (not x2670)) +:assumption (or x2578 (not x2669)) +:assumption (or x108 x2670 x2669 (not x2578)) +:assumption (or (not x2578) (not x2579) (not x2180) (not x2181) (not x2182) (not x2181) x2671) +:assumption (or (not x2671) x2578) +:assumption (or (not x2671) x2579) +:assumption (or (not x2671) x2180) +:assumption (or (not x2671) x2181) +:assumption (or (not x2671) x2182) +:assumption (or (not x2671) x2181) +:assumption (or x2672 (not x2671)) +:assumption (or x2672 x2579) +:assumption (or x2671 (not x2579) (not x2672)) +:assumption (or x2565 (not x110) x2673) +:assumption (or (not x2673) (not x2565)) +:assumption (or (not x2673) x110) +:assumption (or x2571 (not x109)) +:assumption (or x2571 (not x2673)) +:assumption (or x109 x2673 (not x2571)) +:assumption (or (not x2571) (not x2572) (not x2180) (not x2181) (not x2182) (not x2181) x2674) +:assumption (or (not x2674) x2571) +:assumption (or (not x2674) x2572) +:assumption (or (not x2674) x2180) +:assumption (or (not x2674) x2181) +:assumption (or (not x2674) x2182) +:assumption (or (not x2674) x2181) +:assumption (or x2675 (not x2674)) +:assumption (or x2675 x2572) +:assumption (or x2674 (not x2572) (not x2675)) +:assumption (or (not x110) (not x2565) (not x2180) (not x2181) (not x2182) (not x2181) x2676) +:assumption (or (not x2676) x110) +:assumption (or (not x2676) x2565) +:assumption (or (not x2676) x2180) +:assumption (or (not x2676) x2181) +:assumption (or (not x2676) x2182) +:assumption (or (not x2676) x2181) +:assumption (or x2677 (not x2676)) +:assumption (or x2677 x2565) +:assumption (or x2676 (not x2565) (not x2677)) +:assumption (or (not x2677) (not x2675) (not x2672) (not x2668) (not x110) x2631) +:assumption (or (not x2631) x2677) +:assumption (or (not x2631) x2675) +:assumption (or (not x2631) x2672) +:assumption (or (not x2631) x2668) +:assumption (or (not x2631) x110) +:assumption (or x2552 (not x112) x2678) +:assumption (or (not x2678) (not x2552)) +:assumption (or (not x2678) x112) +:assumption (or x2545 x2552 (not x113) x2679) +:assumption (or (not x2679) (not x2545)) +:assumption (or (not x2679) (not x2552)) +:assumption (or (not x2679) x113) +:assumption (or x2538 x2545 x2552 (not x114) x2680) +:assumption (or (not x2680) (not x2538)) +:assumption (or (not x2680) (not x2545)) +:assumption (or (not x2680) (not x2552)) +:assumption (or (not x2680) x114) +:assumption (or x2558 (not x111)) +:assumption (or x2558 (not x2680)) +:assumption (or x2558 (not x2679)) +:assumption (or x2558 (not x2678)) +:assumption (or x111 x2680 x2679 x2678 (not x2558)) +:assumption (or (not x2558) (not x2559) (not x2180) (not x2181) (not x2182) (not x2181) x2681) +:assumption (or (not x2681) x2558) +:assumption (or (not x2681) x2559) +:assumption (or (not x2681) x2180) +:assumption (or (not x2681) x2181) +:assumption (or (not x2681) x2182) +:assumption (or (not x2681) x2181) +:assumption (or x2682 (not x2681)) +:assumption (or x2682 x2559) +:assumption (or x2681 (not x2559) (not x2682)) +:assumption (or x2545 (not x113) x2683) +:assumption (or (not x2683) (not x2545)) +:assumption (or (not x2683) x113) +:assumption (or x2538 x2545 (not x114) x2684) +:assumption (or (not x2684) (not x2538)) +:assumption (or (not x2684) (not x2545)) +:assumption (or (not x2684) x114) +:assumption (or x2551 (not x112)) +:assumption (or x2551 (not x2684)) +:assumption (or x2551 (not x2683)) +:assumption (or x112 x2684 x2683 (not x2551)) +:assumption (or (not x2551) (not x2552) (not x2180) (not x2181) (not x2182) (not x2181) x2685) +:assumption (or (not x2685) x2551) +:assumption (or (not x2685) x2552) +:assumption (or (not x2685) x2180) +:assumption (or (not x2685) x2181) +:assumption (or (not x2685) x2182) +:assumption (or (not x2685) x2181) +:assumption (or x2686 (not x2685)) +:assumption (or x2686 x2552) +:assumption (or x2685 (not x2552) (not x2686)) +:assumption (or x2538 (not x114) x2687) +:assumption (or (not x2687) (not x2538)) +:assumption (or (not x2687) x114) +:assumption (or x2544 (not x113)) +:assumption (or x2544 (not x2687)) +:assumption (or x113 x2687 (not x2544)) +:assumption (or (not x2544) (not x2545) (not x2180) (not x2181) (not x2182) (not x2181) x2688) +:assumption (or (not x2688) x2544) +:assumption (or (not x2688) x2545) +:assumption (or (not x2688) x2180) +:assumption (or (not x2688) x2181) +:assumption (or (not x2688) x2182) +:assumption (or (not x2688) x2181) +:assumption (or x2689 (not x2688)) +:assumption (or x2689 x2545) +:assumption (or x2688 (not x2545) (not x2689)) +:assumption (or (not x114) (not x2538) (not x2180) (not x2181) (not x2182) (not x2181) x2690) +:assumption (or (not x2690) x114) +:assumption (or (not x2690) x2538) +:assumption (or (not x2690) x2180) +:assumption (or (not x2690) x2181) +:assumption (or (not x2690) x2182) +:assumption (or (not x2690) x2181) +:assumption (or x2691 (not x2690)) +:assumption (or x2691 x2538) +:assumption (or x2690 (not x2538) (not x2691)) +:assumption (or (not x2691) (not x2689) (not x2686) (not x2682) (not x114) x2630) +:assumption (or (not x2630) x2691) +:assumption (or (not x2630) x2689) +:assumption (or (not x2630) x2686) +:assumption (or (not x2630) x2682) +:assumption (or (not x2630) x114) +:assumption (or x2523 (not x2630)) +:assumption (or x2523 (not x2631)) +:assumption (or x2523 (not x2632)) +:assumption (or x2523 (not x2633)) +:assumption (or x2630 x2631 x2632 x2633 (not x2523)) +:assumption (or (not x103) (not x2519) (not x2518) (not x2180) (not x2523) x2692) +:assumption (or (not x2692) x103) +:assumption (or (not x2692) x2519) +:assumption (or (not x2692) x2518) +:assumption (or (not x2692) x2180) +:assumption (or (not x2692) x2523) +:assumption (or x2693 (not x2636)) +:assumption (or x2693 x100) +:assumption (or x2636 (not x100) (not x2693)) +:assumption (or x2694 (not x2626)) +:assumption (or x2694 (not x2636)) +:assumption (or x2694 x101) +:assumption (or x2626 x2636 (not x101) (not x2694)) +:assumption (or x2695 (not x2619)) +:assumption (or x2695 (not x2626)) +:assumption (or x2695 (not x2636)) +:assumption (or x2695 x102) +:assumption (or x2619 x2626 x2636 (not x102) (not x2695)) +:assumption (or x99 (not x2695) (not x2694) (not x2693) x2696) +:assumption (or (not x2696) (not x99)) +:assumption (or (not x2696) x2695) +:assumption (or (not x2696) x2694) +:assumption (or (not x2696) x2693) +:assumption (or x2697 (not x2696)) +:assumption (or x2697 x2531) +:assumption (or x2697 x2180) +:assumption (or x2697 (not x2698)) +:assumption (or x2697 (not x2699)) +:assumption (or x2697 (not x2698)) +:assumption (or x2696 (not x2531) (not x2180) x2698 x2699 x2698 (not x2697)) +:assumption (or (not x2697) (not x2531) x2487) +:assumption (or (not x2487) x2697) +:assumption (or (not x2487) x2531) +:assumption (or x2700 (not x2626)) +:assumption (or x2700 x101) +:assumption (or x2626 (not x101) (not x2700)) +:assumption (or x2701 (not x2619)) +:assumption (or x2701 (not x2626)) +:assumption (or x2701 x102) +:assumption (or x2619 x2626 (not x102) (not x2701)) +:assumption (or x100 (not x2701) (not x2700) x2702) +:assumption (or (not x2702) (not x100)) +:assumption (or (not x2702) x2701) +:assumption (or (not x2702) x2700) +:assumption (or x2703 (not x2702)) +:assumption (or x2703 x2636) +:assumption (or x2703 x2180) +:assumption (or x2703 (not x2698)) +:assumption (or x2703 (not x2699)) +:assumption (or x2703 (not x2698)) +:assumption (or x2702 (not x2636) (not x2180) x2698 x2699 x2698 (not x2703)) +:assumption (or (not x2703) (not x2636) x2517) +:assumption (or (not x2517) x2703) +:assumption (or (not x2517) x2636) +:assumption (or x2704 (not x2619)) +:assumption (or x2704 x102) +:assumption (or x2619 (not x102) (not x2704)) +:assumption (or x101 (not x2704) x2705) +:assumption (or (not x2705) (not x101)) +:assumption (or (not x2705) x2704) +:assumption (or x2706 (not x2705)) +:assumption (or x2706 x2626) +:assumption (or x2706 x2180) +:assumption (or x2706 (not x2698)) +:assumption (or x2706 (not x2699)) +:assumption (or x2706 (not x2698)) +:assumption (or x2705 (not x2626) (not x2180) x2698 x2699 x2698 (not x2706)) +:assumption (or (not x2706) (not x2626) x2515) +:assumption (or (not x2515) x2706) +:assumption (or (not x2515) x2626) +:assumption (or x2707 x102) +:assumption (or x2707 x2619) +:assumption (or x2707 x2180) +:assumption (or x2707 (not x2698)) +:assumption (or x2707 (not x2699)) +:assumption (or x2707 (not x2698)) +:assumption (or (not x102) (not x2619) (not x2180) x2698 x2699 x2698 (not x2707)) +:assumption (or (not x2707) (not x2619) x2513) +:assumption (or (not x2513) x2707) +:assumption (or (not x2513) x2619) +:assumption (or x2528 (not x2513)) +:assumption (or x2528 (not x2515)) +:assumption (or x2528 (not x2517)) +:assumption (or x2528 (not x2487)) +:assumption (or x2528 x102) +:assumption (or x2513 x2515 x2517 x2487 (not x102) (not x2528)) +:assumption (or x2708 (not x2606)) +:assumption (or x2708 x104) +:assumption (or x2606 (not x104) (not x2708)) +:assumption (or x2709 (not x2599)) +:assumption (or x2709 (not x2606)) +:assumption (or x2709 x105) +:assumption (or x2599 x2606 (not x105) (not x2709)) +:assumption (or x2710 (not x2592)) +:assumption (or x2710 (not x2599)) +:assumption (or x2710 (not x2606)) +:assumption (or x2710 x106) +:assumption (or x2592 x2599 x2606 (not x106) (not x2710)) +:assumption (or x103 (not x2710) (not x2709) (not x2708) x2711) +:assumption (or (not x2711) (not x103)) +:assumption (or (not x2711) x2710) +:assumption (or (not x2711) x2709) +:assumption (or (not x2711) x2708) +:assumption (or x2712 (not x2711)) +:assumption (or x2712 x2613) +:assumption (or x2712 x2180) +:assumption (or x2712 (not x2698)) +:assumption (or x2712 (not x2699)) +:assumption (or x2712 (not x2698)) +:assumption (or x2711 (not x2613) (not x2180) x2698 x2699 x2698 (not x2712)) +:assumption (or (not x2712) (not x2613) x2511) +:assumption (or (not x2511) x2712) +:assumption (or (not x2511) x2613) +:assumption (or x2713 (not x2599)) +:assumption (or x2713 x105) +:assumption (or x2599 (not x105) (not x2713)) +:assumption (or x2714 (not x2592)) +:assumption (or x2714 (not x2599)) +:assumption (or x2714 x106) +:assumption (or x2592 x2599 (not x106) (not x2714)) +:assumption (or x104 (not x2714) (not x2713) x2715) +:assumption (or (not x2715) (not x104)) +:assumption (or (not x2715) x2714) +:assumption (or (not x2715) x2713) +:assumption (or x2716 (not x2715)) +:assumption (or x2716 x2606) +:assumption (or x2716 x2180) +:assumption (or x2716 (not x2698)) +:assumption (or x2716 (not x2699)) +:assumption (or x2716 (not x2698)) +:assumption (or x2715 (not x2606) (not x2180) x2698 x2699 x2698 (not x2716)) +:assumption (or (not x2716) (not x2606) x2509) +:assumption (or (not x2509) x2716) +:assumption (or (not x2509) x2606) +:assumption (or x2717 (not x2592)) +:assumption (or x2717 x106) +:assumption (or x2592 (not x106) (not x2717)) +:assumption (or x105 (not x2717) x2718) +:assumption (or (not x2718) (not x105)) +:assumption (or (not x2718) x2717) +:assumption (or x2719 (not x2718)) +:assumption (or x2719 x2599) +:assumption (or x2719 x2180) +:assumption (or x2719 (not x2698)) +:assumption (or x2719 (not x2699)) +:assumption (or x2719 (not x2698)) +:assumption (or x2718 (not x2599) (not x2180) x2698 x2699 x2698 (not x2719)) +:assumption (or (not x2719) (not x2599) x2507) +:assumption (or (not x2507) x2719) +:assumption (or (not x2507) x2599) +:assumption (or x2720 x106) +:assumption (or x2720 x2592) +:assumption (or x2720 x2180) +:assumption (or x2720 (not x2698)) +:assumption (or x2720 (not x2699)) +:assumption (or x2720 (not x2698)) +:assumption (or (not x106) (not x2592) (not x2180) x2698 x2699 x2698 (not x2720)) +:assumption (or (not x2720) (not x2592) x2505) +:assumption (or (not x2505) x2720) +:assumption (or (not x2505) x2592) +:assumption (or x2527 (not x2505)) +:assumption (or x2527 (not x2507)) +:assumption (or x2527 (not x2509)) +:assumption (or x2527 (not x2511)) +:assumption (or x2527 x106) +:assumption (or x2505 x2507 x2509 x2511 (not x106) (not x2527)) +:assumption (or x2721 (not x2579)) +:assumption (or x2721 x108) +:assumption (or x2579 (not x108) (not x2721)) +:assumption (or x2722 (not x2572)) +:assumption (or x2722 (not x2579)) +:assumption (or x2722 x109) +:assumption (or x2572 x2579 (not x109) (not x2722)) +:assumption (or x2723 (not x2565)) +:assumption (or x2723 (not x2572)) +:assumption (or x2723 (not x2579)) +:assumption (or x2723 x110) +:assumption (or x2565 x2572 x2579 (not x110) (not x2723)) +:assumption (or x107 (not x2723) (not x2722) (not x2721) x2724) +:assumption (or (not x2724) (not x107)) +:assumption (or (not x2724) x2723) +:assumption (or (not x2724) x2722) +:assumption (or (not x2724) x2721) +:assumption (or x2725 (not x2724)) +:assumption (or x2725 x2586) +:assumption (or x2725 x2180) +:assumption (or x2725 (not x2698)) +:assumption (or x2725 (not x2699)) +:assumption (or x2725 (not x2698)) +:assumption (or x2724 (not x2586) (not x2180) x2698 x2699 x2698 (not x2725)) +:assumption (or (not x2725) (not x2586) x2503) +:assumption (or (not x2503) x2725) +:assumption (or (not x2503) x2586) +:assumption (or x2726 (not x2572)) +:assumption (or x2726 x109) +:assumption (or x2572 (not x109) (not x2726)) +:assumption (or x2727 (not x2565)) +:assumption (or x2727 (not x2572)) +:assumption (or x2727 x110) +:assumption (or x2565 x2572 (not x110) (not x2727)) +:assumption (or x108 (not x2727) (not x2726) x2728) +:assumption (or (not x2728) (not x108)) +:assumption (or (not x2728) x2727) +:assumption (or (not x2728) x2726) +:assumption (or x2729 (not x2728)) +:assumption (or x2729 x2579) +:assumption (or x2729 x2180) +:assumption (or x2729 (not x2698)) +:assumption (or x2729 (not x2699)) +:assumption (or x2729 (not x2698)) +:assumption (or x2728 (not x2579) (not x2180) x2698 x2699 x2698 (not x2729)) +:assumption (or (not x2729) (not x2579) x2501) +:assumption (or (not x2501) x2729) +:assumption (or (not x2501) x2579) +:assumption (or x2730 (not x2565)) +:assumption (or x2730 x110) +:assumption (or x2565 (not x110) (not x2730)) +:assumption (or x109 (not x2730) x2731) +:assumption (or (not x2731) (not x109)) +:assumption (or (not x2731) x2730) +:assumption (or x2732 (not x2731)) +:assumption (or x2732 x2572) +:assumption (or x2732 x2180) +:assumption (or x2732 (not x2698)) +:assumption (or x2732 (not x2699)) +:assumption (or x2732 (not x2698)) +:assumption (or x2731 (not x2572) (not x2180) x2698 x2699 x2698 (not x2732)) +:assumption (or (not x2732) (not x2572) x2499) +:assumption (or (not x2499) x2732) +:assumption (or (not x2499) x2572) +:assumption (or x2733 x110) +:assumption (or x2733 x2565) +:assumption (or x2733 x2180) +:assumption (or x2733 (not x2698)) +:assumption (or x2733 (not x2699)) +:assumption (or x2733 (not x2698)) +:assumption (or (not x110) (not x2565) (not x2180) x2698 x2699 x2698 (not x2733)) +:assumption (or (not x2733) (not x2565) x2497) +:assumption (or (not x2497) x2733) +:assumption (or (not x2497) x2565) +:assumption (or x2526 (not x2497)) +:assumption (or x2526 (not x2499)) +:assumption (or x2526 (not x2501)) +:assumption (or x2526 (not x2503)) +:assumption (or x2526 x110) +:assumption (or x2497 x2499 x2501 x2503 (not x110) (not x2526)) +:assumption (or x2734 (not x2552)) +:assumption (or x2734 x112) +:assumption (or x2552 (not x112) (not x2734)) +:assumption (or x2735 (not x2545)) +:assumption (or x2735 (not x2552)) +:assumption (or x2735 x113) +:assumption (or x2545 x2552 (not x113) (not x2735)) +:assumption (or x2736 (not x2538)) +:assumption (or x2736 (not x2545)) +:assumption (or x2736 (not x2552)) +:assumption (or x2736 x114) +:assumption (or x2538 x2545 x2552 (not x114) (not x2736)) +:assumption (or x111 (not x2736) (not x2735) (not x2734) x2737) +:assumption (or (not x2737) (not x111)) +:assumption (or (not x2737) x2736) +:assumption (or (not x2737) x2735) +:assumption (or (not x2737) x2734) +:assumption (or x2738 (not x2737)) +:assumption (or x2738 x2559) +:assumption (or x2738 x2180) +:assumption (or x2738 (not x2698)) +:assumption (or x2738 (not x2699)) +:assumption (or x2738 (not x2698)) +:assumption (or x2737 (not x2559) (not x2180) x2698 x2699 x2698 (not x2738)) +:assumption (or (not x2738) (not x2559) x2495) +:assumption (or (not x2495) x2738) +:assumption (or (not x2495) x2559) +:assumption (or x2739 (not x2545)) +:assumption (or x2739 x113) +:assumption (or x2545 (not x113) (not x2739)) +:assumption (or x2740 (not x2538)) +:assumption (or x2740 (not x2545)) +:assumption (or x2740 x114) +:assumption (or x2538 x2545 (not x114) (not x2740)) +:assumption (or x112 (not x2740) (not x2739) x2741) +:assumption (or (not x2741) (not x112)) +:assumption (or (not x2741) x2740) +:assumption (or (not x2741) x2739) +:assumption (or x2742 (not x2741)) +:assumption (or x2742 x2552) +:assumption (or x2742 x2180) +:assumption (or x2742 (not x2698)) +:assumption (or x2742 (not x2699)) +:assumption (or x2742 (not x2698)) +:assumption (or x2741 (not x2552) (not x2180) x2698 x2699 x2698 (not x2742)) +:assumption (or (not x2742) (not x2552) x2493) +:assumption (or (not x2493) x2742) +:assumption (or (not x2493) x2552) +:assumption (or x2743 (not x2538)) +:assumption (or x2743 x114) +:assumption (or x2538 (not x114) (not x2743)) +:assumption (or x113 (not x2743) x2744) +:assumption (or (not x2744) (not x113)) +:assumption (or (not x2744) x2743) +:assumption (or x2745 (not x2744)) +:assumption (or x2745 x2545) +:assumption (or x2745 x2180) +:assumption (or x2745 (not x2698)) +:assumption (or x2745 (not x2699)) +:assumption (or x2745 (not x2698)) +:assumption (or x2744 (not x2545) (not x2180) x2698 x2699 x2698 (not x2745)) +:assumption (or (not x2745) (not x2545) x2491) +:assumption (or (not x2491) x2745) +:assumption (or (not x2491) x2545) +:assumption (or x2746 x114) +:assumption (or x2746 x2538) +:assumption (or x2746 x2180) +:assumption (or x2746 (not x2698)) +:assumption (or x2746 (not x2699)) +:assumption (or x2746 (not x2698)) +:assumption (or (not x114) (not x2538) (not x2180) x2698 x2699 x2698 (not x2746)) +:assumption (or (not x2746) (not x2538) x2489) +:assumption (or (not x2489) x2746) +:assumption (or (not x2489) x2538) +:assumption (or x2525 (not x2489)) +:assumption (or x2525 (not x2491)) +:assumption (or x2525 (not x2493)) +:assumption (or x2525 (not x2495)) +:assumption (or x2525 x114) +:assumption (or x2489 x2491 x2493 x2495 (not x114) (not x2525)) +:assumption (or (not x2525) (not x2526) (not x2527) (not x2528) x2634) +:assumption (or (not x2634) x2525) +:assumption (or (not x2634) x2526) +:assumption (or (not x2634) x2527) +:assumption (or (not x2634) x2528) +:assumption (or x2747 x2459) +:assumption (or x2747 x2455) +:assumption (or x2747 x2451) +:assumption (or x2747 x2449) +:assumption (or (not x2459) (not x2455) (not x2451) (not x2449) (not x2747)) +:assumption (or x2172 (not x2173) x2467) +:assumption (or (not x2467) (not x2172)) +:assumption (or (not x2467) x2173) +:assumption (or x2147 (not x2148) x2472) +:assumption (or (not x2472) (not x2147)) +:assumption (or (not x2472) x2148) +:assumption (or x2158 (not x2159) x2477) +:assumption (or (not x2477) (not x2158)) +:assumption (or (not x2477) x2159) +:assumption (or x2165 (not x2166) x2482) +:assumption (or (not x2482) (not x2165)) +:assumption (or (not x2482) x2166) +:assumption (or x2151 (not x2482)) +:assumption (or x2151 (not x2477)) +:assumption (or x2151 (not x2472)) +:assumption (or x2151 (not x2467)) +:assumption (or x2482 x2477 x2472 x2467 (not x2151)) +:assumption (or (not x2151) (not x2747) x2699) +:assumption (or (not x2699) x2151) +:assumption (or (not x2699) x2747) +:assumption (or x2619 x2626 x2636 x2531 x2748) +:assumption (or (not x2748) (not x2619)) +:assumption (or (not x2748) (not x2626)) +:assumption (or (not x2748) (not x2636)) +:assumption (or (not x2748) (not x2531)) +:assumption (or x102 x101 x100 x99 x2749) +:assumption (or (not x2749) (not x102)) +:assumption (or (not x2749) (not x101)) +:assumption (or (not x2749) (not x100)) +:assumption (or (not x2749) (not x99)) +:assumption (or x2750 (not x2749)) +:assumption (or x2750 (not x2748)) +:assumption (or x2749 x2748 (not x2750)) +:assumption (or x2592 x2599 x2606 x2613 x2751) +:assumption (or (not x2751) (not x2592)) +:assumption (or (not x2751) (not x2599)) +:assumption (or (not x2751) (not x2606)) +:assumption (or (not x2751) (not x2613)) +:assumption (or x106 x105 x104 x103 x2752) +:assumption (or (not x2752) (not x106)) +:assumption (or (not x2752) (not x105)) +:assumption (or (not x2752) (not x104)) +:assumption (or (not x2752) (not x103)) +:assumption (or x2753 (not x2752)) +:assumption (or x2753 (not x2751)) +:assumption (or x2752 x2751 (not x2753)) +:assumption (or x2565 x2572 x2579 x2586 x2754) +:assumption (or (not x2754) (not x2565)) +:assumption (or (not x2754) (not x2572)) +:assumption (or (not x2754) (not x2579)) +:assumption (or (not x2754) (not x2586)) +:assumption (or x110 x109 x108 x107 x2755) +:assumption (or (not x2755) (not x110)) +:assumption (or (not x2755) (not x109)) +:assumption (or (not x2755) (not x108)) +:assumption (or (not x2755) (not x107)) +:assumption (or x2756 (not x2755)) +:assumption (or x2756 (not x2754)) +:assumption (or x2755 x2754 (not x2756)) +:assumption (or x2538 x2545 x2552 x2559 x2757) +:assumption (or (not x2757) (not x2538)) +:assumption (or (not x2757) (not x2545)) +:assumption (or (not x2757) (not x2552)) +:assumption (or (not x2757) (not x2559)) +:assumption (or x114 x113 x112 x111 x2758) +:assumption (or (not x2758) (not x114)) +:assumption (or (not x2758) (not x113)) +:assumption (or (not x2758) (not x112)) +:assumption (or (not x2758) (not x111)) +:assumption (or x2759 (not x2758)) +:assumption (or x2759 (not x2757)) +:assumption (or x2758 x2757 (not x2759)) +:assumption (or (not x2759) (not x2756) (not x2753) (not x2750) x2698) +:assumption (or (not x2698) x2759) +:assumption (or (not x2698) x2756) +:assumption (or (not x2698) x2753) +:assumption (or (not x2698) x2750) +:assumption (or x2184 x2180) +:assumption (or x2184 (not x2698)) +:assumption (or x2184 (not x2699)) +:assumption (or (not x2180) x2698 x2699 (not x2184)) +:assumption (or x2519 x2180) +:assumption (or x2519 (not x2698)) +:assumption (or x2519 (not x2699)) +:assumption (or x2519 (not x2698)) +:assumption (or (not x2180) x2698 x2699 x2698 (not x2519)) +:assumption (or (not x100) (not x2519) (not x2518) (not x2525) (not x2526) (not x2527) (not x2528) (not x2180) x2760) +:assumption (or (not x2760) x100) +:assumption (or (not x2760) x2519) +:assumption (or (not x2760) x2518) +:assumption (or (not x2760) x2525) +:assumption (or (not x2760) x2526) +:assumption (or (not x2760) x2527) +:assumption (or (not x2760) x2528) +:assumption (or (not x2760) x2180) +:assumption (or (not x2459) (not x2455) (not x2451) (not x2449) x2761) +:assumption (or (not x2761) x2459) +:assumption (or (not x2761) x2455) +:assumption (or (not x2761) x2451) +:assumption (or (not x2761) x2449) +:assumption (or x2423 (not x2172)) +:assumption (or x2423 x2173) +:assumption (or x2172 (not x2173) (not x2423)) +:assumption (or x2414 (not x2147)) +:assumption (or x2414 x2148) +:assumption (or x2147 (not x2148) (not x2414)) +:assumption (or x2416 (not x2158)) +:assumption (or x2416 x2159) +:assumption (or x2158 (not x2159) (not x2416)) +:assumption (or x2418 (not x2165)) +:assumption (or x2418 x2166) +:assumption (or x2165 (not x2166) (not x2418)) +:assumption (or (not x2418) (not x2416) (not x2414) (not x2423) x2175) +:assumption (or (not x2175) x2418) +:assumption (or (not x2175) x2416) +:assumption (or (not x2175) x2414) +:assumption (or (not x2175) x2423) +:assumption (or x2182 (not x2175)) +:assumption (or x2182 (not x2761)) +:assumption (or x2175 x2761 (not x2182)) +:assumption (or x2762 (not x2619)) +:assumption (or x2762 (not x2626)) +:assumption (or x2762 (not x2636)) +:assumption (or x2762 (not x2531)) +:assumption (or x2619 x2626 x2636 x2531 (not x2762)) +:assumption (or x2763 (not x102)) +:assumption (or x2763 (not x101)) +:assumption (or x2763 (not x100)) +:assumption (or x2763 (not x99)) +:assumption (or x102 x101 x100 x99 (not x2763)) +:assumption (or (not x2763) (not x2762) x2764) +:assumption (or (not x2764) x2763) +:assumption (or (not x2764) x2762) +:assumption (or x2765 (not x2592)) +:assumption (or x2765 (not x2599)) +:assumption (or x2765 (not x2606)) +:assumption (or x2765 (not x2613)) +:assumption (or x2592 x2599 x2606 x2613 (not x2765)) +:assumption (or x2766 (not x106)) +:assumption (or x2766 (not x105)) +:assumption (or x2766 (not x104)) +:assumption (or x2766 (not x103)) +:assumption (or x106 x105 x104 x103 (not x2766)) +:assumption (or (not x2766) (not x2765) x2767) +:assumption (or (not x2767) x2766) +:assumption (or (not x2767) x2765) +:assumption (or x2768 (not x2565)) +:assumption (or x2768 (not x2572)) +:assumption (or x2768 (not x2579)) +:assumption (or x2768 (not x2586)) +:assumption (or x2565 x2572 x2579 x2586 (not x2768)) +:assumption (or x2769 (not x110)) +:assumption (or x2769 (not x109)) +:assumption (or x2769 (not x108)) +:assumption (or x2769 (not x107)) +:assumption (or x110 x109 x108 x107 (not x2769)) +:assumption (or (not x2769) (not x2768) x2770) +:assumption (or (not x2770) x2769) +:assumption (or (not x2770) x2768) +:assumption (or x2771 (not x2538)) +:assumption (or x2771 (not x2545)) +:assumption (or x2771 (not x2552)) +:assumption (or x2771 (not x2559)) +:assumption (or x2538 x2545 x2552 x2559 (not x2771)) +:assumption (or (not x2772) (not x2771) x2773) +:assumption (or (not x2773) x2772) +:assumption (or (not x2773) x2771) +:assumption (or x2181 (not x2773)) +:assumption (or x2181 (not x2770)) +:assumption (or x2181 (not x2767)) +:assumption (or x2181 (not x2764)) +:assumption (or x2773 x2770 x2767 x2764 (not x2181)) +:assumption (or (not x2180) (not x2181) (not x2182) (not x2181) x2629) +:assumption (or (not x2629) x2180) +:assumption (or (not x2629) x2181) +:assumption (or (not x2629) x2182) +:assumption (or (not x2629) x2181) +:assumption (or x2772 (not x114)) +:assumption (or x2772 (not x113)) +:assumption (or x2772 (not x112)) +:assumption (or x2772 (not x111)) +:assumption (or x114 x113 x112 x111 (not x2772)) +:assumption (or x2518 (not x114)) +:assumption (or x2518 (not x113)) +:assumption (or x2518 (not x112)) +:assumption (or x2518 (not x111)) +:assumption (or x2518 (not x110)) +:assumption (or x2518 (not x109)) +:assumption (or x2518 (not x108)) +:assumption (or x2518 (not x107)) +:assumption (or x2518 (not x106)) +:assumption (or x2518 (not x105)) +:assumption (or x2518 (not x104)) +:assumption (or x2518 (not x103)) +:assumption (or x2518 (not x102)) +:assumption (or x2518 (not x101)) +:assumption (or x2518 (not x100)) +:assumption (or x2518 (not x99)) +:assumption (or x114 x113 x112 x111 x110 x109 x108 x107 x106 x105 x104 x103 x102 x101 x100 x99 (not x2518)) +:assumption (or x2626 (not x101) x2774) +:assumption (or (not x2774) (not x2626)) +:assumption (or (not x2774) x101) +:assumption (or x2619 x2626 (not x102) x2775) +:assumption (or (not x2775) (not x2619)) +:assumption (or (not x2775) (not x2626)) +:assumption (or (not x2775) x102) +:assumption (or x2642 (not x100)) +:assumption (or x2642 (not x2775)) +:assumption (or x2642 (not x2774)) +:assumption (or x100 x2775 x2774 (not x2642)) +:assumption (or (not x2642) (not x2636) (not x2518) (not x2180) (not x2181) (not x2182) (not x2181) x2776) +:assumption (or (not x2776) x2642) +:assumption (or (not x2776) x2636) +:assumption (or (not x2776) x2518) +:assumption (or (not x2776) x2180) +:assumption (or (not x2776) x2181) +:assumption (or (not x2776) x2182) +:assumption (or (not x2776) x2181) +:assumption (or x2777 (not x2776)) +:assumption (or x2777 (not x2760)) +:assumption (or x2777 (not x2692)) +:assumption (or x2777 (not x2635)) +:assumption (or x2776 x2760 x2692 x2635 (not x2777)) +:assumption (or (not x2778) x2194) +:assumption (or (not x2778) (not x2193)) +:assumption (or x2194 (not x2193) x2191) +:assumption (or (not x2191) (not x2194)) +:assumption (or (not x2191) x2193) +:assumption (or x2194 x2193 x2190) +:assumption (or (not x2190) (not x2194)) +:assumption (or (not x2190) (not x2193)) +:assumption (or x2779 (not x2190)) +:assumption (or x2779 (not x2191)) +:assumption (or x2190 x2191 (not x2779)) +:assumption (or (not x2780) x2209) +:assumption (or (not x2780) (not x2208)) +:assumption (or x2209 (not x2208) x2206) +:assumption (or (not x2206) (not x2209)) +:assumption (or (not x2206) x2208) +:assumption (or x2209 x2208 x2205) +:assumption (or (not x2205) (not x2209)) +:assumption (or (not x2205) (not x2208)) +:assumption (or x2781 (not x2205)) +:assumption (or x2781 (not x2206)) +:assumption (or x2205 x2206 (not x2781)) +:assumption (or (not x2782) x2224) +:assumption (or (not x2782) (not x2223)) +:assumption (or x2224 (not x2223) x2221) +:assumption (or (not x2221) (not x2224)) +:assumption (or (not x2221) x2223) +:assumption (or x2224 x2223 x2220) +:assumption (or (not x2220) (not x2224)) +:assumption (or (not x2220) (not x2223)) +:assumption (or x2783 (not x2220)) +:assumption (or x2783 (not x2221)) +:assumption (or x2220 x2221 (not x2783)) +:assumption (or (not x2784) x2239) +:assumption (or (not x2784) (not x2238)) +:assumption (or x2239 (not x2238) x2236) +:assumption (or (not x2236) (not x2239)) +:assumption (or (not x2236) x2238) +:assumption (or x2239 x2238 x2235) +:assumption (or (not x2235) (not x2239)) +:assumption (or (not x2235) (not x2238)) +:assumption (or x2785 (not x2235)) +:assumption (or x2785 (not x2236)) +:assumption (or x2235 x2236 (not x2785)) +:assumption (or (not x2786) x2254) +:assumption (or (not x2786) (not x2253)) +:assumption (or x2254 (not x2253) x2251) +:assumption (or (not x2251) (not x2254)) +:assumption (or (not x2251) x2253) +:assumption (or x2254 x2253 x2250) +:assumption (or (not x2250) (not x2254)) +:assumption (or (not x2250) (not x2253)) +:assumption (or x2787 (not x2250)) +:assumption (or x2787 (not x2251)) +:assumption (or x2250 x2251 (not x2787)) +:assumption (or (not x2788) x2269) +:assumption (or (not x2788) (not x2268)) +:assumption (or x2269 (not x2268) x2266) +:assumption (or (not x2266) (not x2269)) +:assumption (or (not x2266) x2268) +:assumption (or x2269 x2268 x2265) +:assumption (or (not x2265) (not x2269)) +:assumption (or (not x2265) (not x2268)) +:assumption (or x2789 (not x2265)) +:assumption (or x2789 (not x2266)) +:assumption (or x2265 x2266 (not x2789)) +:assumption (or (not x2790) x2284) +:assumption (or (not x2790) (not x2283)) +:assumption (or x2284 (not x2283) x2281) +:assumption (or (not x2281) (not x2284)) +:assumption (or (not x2281) x2283) +:assumption (or x2284 x2283 x2280) +:assumption (or (not x2280) (not x2284)) +:assumption (or (not x2280) (not x2283)) +:assumption (or x2791 (not x2280)) +:assumption (or x2791 (not x2281)) +:assumption (or x2280 x2281 (not x2791)) +:assumption (or (not x2792) x2299) +:assumption (or (not x2792) (not x2298)) +:assumption (or x2299 (not x2298) x2296) +:assumption (or (not x2296) (not x2299)) +:assumption (or (not x2296) x2298) +:assumption (or x2299 x2298 x2295) +:assumption (or (not x2295) (not x2299)) +:assumption (or (not x2295) (not x2298)) +:assumption (or x2793 (not x2295)) +:assumption (or x2793 (not x2296)) +:assumption (or x2295 x2296 (not x2793)) +:assumption (or (not x2794) x2314) +:assumption (or (not x2794) (not x2313)) +:assumption (or x2314 (not x2313) x2311) +:assumption (or (not x2311) (not x2314)) +:assumption (or (not x2311) x2313) +:assumption (or x2314 x2313 x2310) +:assumption (or (not x2310) (not x2314)) +:assumption (or (not x2310) (not x2313)) +:assumption (or x2795 (not x2310)) +:assumption (or x2795 (not x2311)) +:assumption (or x2310 x2311 (not x2795)) +:assumption (or (not x2796) x2329) +:assumption (or (not x2796) (not x2328)) +:assumption (or x2329 (not x2328) x2326) +:assumption (or (not x2326) (not x2329)) +:assumption (or (not x2326) x2328) +:assumption (or x2329 x2328 x2325) +:assumption (or (not x2325) (not x2329)) +:assumption (or (not x2325) (not x2328)) +:assumption (or x2797 (not x2325)) +:assumption (or x2797 (not x2326)) +:assumption (or x2325 x2326 (not x2797)) +:assumption (or (not x2798) x2344) +:assumption (or (not x2798) (not x2343)) +:assumption (or x2344 (not x2343) x2341) +:assumption (or (not x2341) (not x2344)) +:assumption (or (not x2341) x2343) +:assumption (or x2344 x2343 x2340) +:assumption (or (not x2340) (not x2344)) +:assumption (or (not x2340) (not x2343)) +:assumption (or x2799 (not x2340)) +:assumption (or x2799 (not x2341)) +:assumption (or x2340 x2341 (not x2799)) +:assumption (or (not x2800) x2359) +:assumption (or (not x2800) (not x2358)) +:assumption (or x2359 (not x2358) x2356) +:assumption (or (not x2356) (not x2359)) +:assumption (or (not x2356) x2358) +:assumption (or x2359 x2358 x2355) +:assumption (or (not x2355) (not x2359)) +:assumption (or (not x2355) (not x2358)) +:assumption (or x2801 (not x2355)) +:assumption (or x2801 (not x2356)) +:assumption (or x2355 x2356 (not x2801)) +:assumption (or (not x2802) x2374) +:assumption (or (not x2802) (not x2373)) +:assumption (or x2374 (not x2373) x2371) +:assumption (or (not x2371) (not x2374)) +:assumption (or (not x2371) x2373) +:assumption (or x2374 x2373 x2370) +:assumption (or (not x2370) (not x2374)) +:assumption (or (not x2370) (not x2373)) +:assumption (or x2803 (not x2370)) +:assumption (or x2803 (not x2371)) +:assumption (or x2370 x2371 (not x2803)) +:assumption (or (not x2804) x2389) +:assumption (or (not x2804) (not x2388)) +:assumption (or x2389 (not x2388) x2386) +:assumption (or (not x2386) (not x2389)) +:assumption (or (not x2386) x2388) +:assumption (or x2389 x2388 x2385) +:assumption (or (not x2385) (not x2389)) +:assumption (or (not x2385) (not x2388)) +:assumption (or x2805 (not x2385)) +:assumption (or x2805 (not x2386)) +:assumption (or x2385 x2386 (not x2805)) +:assumption (or (not x2806) x2404) +:assumption (or (not x2806) (not x2403)) +:assumption (or x2404 (not x2403) x2401) +:assumption (or (not x2401) (not x2404)) +:assumption (or (not x2401) x2403) +:assumption (or x2404 x2403 x2400) +:assumption (or (not x2400) (not x2404)) +:assumption (or (not x2400) (not x2403)) +:assumption (or x2807 (not x2400)) +:assumption (or x2807 (not x2401)) +:assumption (or x2400 x2401 (not x2807)) +:assumption (or (not x2808) x2439) +:assumption (or (not x2808) (not x2438)) +:assumption (or x2439 (not x2438) x2436) +:assumption (or (not x2436) (not x2439)) +:assumption (or (not x2436) x2438) +:assumption (or x2439 x2438 x2435) +:assumption (or (not x2435) (not x2439)) +:assumption (or (not x2435) (not x2438)) +:assumption (or x2809 (not x2435)) +:assumption (or x2809 (not x2436)) +:assumption (or x2435 x2436 (not x2809)) +:assumption (or (not x99)) +:assumption (or (not x100)) +:assumption (or (not x101)) +:assumption (or (not x102)) +:assumption (or (not x103)) +:assumption (or (not x104)) +:assumption (or (not x105)) +:assumption (or (not x106)) +:assumption (or (not x107)) +:assumption (or (not x108)) +:assumption (or (not x109)) +:assumption (or (not x110)) +:assumption (or (not x111)) +:assumption (or (not x112)) +:assumption (or (not x113)) +:assumption (or (not x114)) +:assumption (or (not x2636)) +:assumption (or (not x2626)) +:assumption (or (not x2619)) +:assumption (or (not x2613)) +:assumption (or (not x2606)) +:assumption (or (not x2599)) +:assumption (or (not x2592)) +:assumption (or (not x2586)) +:assumption (or (not x2579)) +:assumption (or (not x2572)) +:assumption (or (not x2565)) +:assumption (or (not x2559)) +:assumption (or (not x2552)) +:assumption (or (not x2545)) +:assumption (or (not x2538)) +:assumption (or (not x2531)) +:assumption (or (not x2180)) +:assumption (or (not x2166)) +:assumption (or (not x2159)) +:assumption (or (not x2148)) +:assumption (or (not x2173)) +:assumption (or (not x2459)) +:assumption (or (not x2455)) +:assumption (or (not x2451)) +:assumption (or (not x2449)) +:assumption (or (not x2438)) +:assumption (or (not x2439)) +:assumption (or (not x2165)) +:assumption (or (not x2158)) +:assumption (or (not x2147)) +:assumption (or (not x2172)) +:assumption (or (not x2403)) +:assumption (or (not x2404)) +:assumption (or (not x2388)) +:assumption (or (not x2389)) +:assumption (or (not x2373)) +:assumption (or (not x2374)) +:assumption (or (not x2358)) +:assumption (or (not x2359)) +:assumption (or (not x2343)) +:assumption (or (not x2344)) +:assumption (or (not x2328)) +:assumption (or (not x2329)) +:assumption (or (not x2313)) +:assumption (or (not x2314)) +:assumption (or (not x2298)) +:assumption (or (not x2299)) +:assumption (or (not x2283)) +:assumption (or (not x2284)) +:assumption (or (not x2268)) +:assumption (or (not x2269)) +:assumption (or (not x2253)) +:assumption (or (not x2254)) +:assumption (or (not x2238)) +:assumption (or (not x2239)) +:assumption (or (not x2223)) +:assumption (or (not x2224)) +:assumption (or (not x2208)) +:assumption (or (not x2209)) +:assumption (or (not x2193)) +:assumption (or (not x2194)) +:assumption (or (not x2443)) +:assumption (or (not x2150)) +:assumption (or (not x2186)) +:assumption (or (not x2408)) +:assumption (or (not x2393)) +:assumption (or (not x2378)) +:assumption (or (not x2363)) +:assumption (or (not x2348)) +:assumption (or (not x2333)) +:assumption (or (not x2318)) +:assumption (or (not x2303)) +:assumption (or (not x2288)) +:assumption (or (not x2273)) +:assumption (or (not x2258)) +:assumption (or (not x2243)) +:assumption (or (not x2228)) +:assumption (or (not x2213)) +:assumption (or (not x2198)) +:assumption (or (not x2176)) +:assumption (or (not x2168)) +:assumption (or (not x2161)) +:assumption (or (not x2153)) +:assumption (or (not x97) x2810) +:assumption (or x97 (not x2810)) +:assumption (or (not x98) (not x2810)) +:assumption (or x98 x2810) +:assumption (or x2809 x2808) +:assumption (or x2807 x2806) +:assumption (or x2805 x2804) +:assumption (or x2803 x2802) +:assumption (or x2801 x2800) +:assumption (or x2799 x2798) +:assumption (or x2797 x2796) +:assumption (or x2795 x2794) +:assumption (or x2793 x2792) +:assumption (or x2791 x2790) +:assumption (or x2789 x2788) +:assumption (or x2787 x2786) +:assumption (or x2785 x2784) +:assumption (or x2783 x2782) +:assumption (or x2781 x2780) +:assumption (or x2779 x2778) +:assumption (or (not x80) x2777) +:assumption (or x80 (not x2777)) +:assumption (or (not x81) x2628) +:assumption (or x81 (not x2628)) +:assumption (or (not x82) x2621) +:assumption (or x82 (not x2621)) +:assumption (or (not x83) x2615) +:assumption (or x83 (not x2615)) +:assumption (or (not x84) x2608) +:assumption (or x84 (not x2608)) +:assumption (or (not x85) x2601) +:assumption (or x85 (not x2601)) +:assumption (or (not x86) x2594) +:assumption (or x86 (not x2594)) +:assumption (or (not x87) x2588) +:assumption (or x87 (not x2588)) +:assumption (or (not x88) x2581) +:assumption (or x88 (not x2581)) +:assumption (or (not x89) x2574) +:assumption (or x89 (not x2574)) +:assumption (or (not x90) x2567) +:assumption (or x90 (not x2567)) +:assumption (or (not x91) x2561) +:assumption (or x91 (not x2561)) +:assumption (or (not x92) x2554) +:assumption (or x92 (not x2554)) +:assumption (or (not x93) x2547) +:assumption (or x93 (not x2547)) +:assumption (or (not x94) x2540) +:assumption (or x94 (not x2540)) +:assumption (or (not x95) x2533) +:assumption (or x95 (not x2533)) +:assumption (or (not x1963) x2516) +:assumption (or x1963 (not x2516)) +:assumption (or (not x1953) x2514) +:assumption (or x1953 (not x2514)) +:assumption (or (not x1946) x2512) +:assumption (or x1946 (not x2512)) +:assumption (or (not x1940) x2510) +:assumption (or x1940 (not x2510)) +:assumption (or (not x1933) x2508) +:assumption (or x1933 (not x2508)) +:assumption (or (not x1926) x2506) +:assumption (or x1926 (not x2506)) +:assumption (or (not x1919) x2504) +:assumption (or x1919 (not x2504)) +:assumption (or (not x1913) x2502) +:assumption (or x1913 (not x2502)) +:assumption (or (not x1906) x2500) +:assumption (or x1906 (not x2500)) +:assumption (or (not x1899) x2498) +:assumption (or x1899 (not x2498)) +:assumption (or (not x1892) x2496) +:assumption (or x1892 (not x2496)) +:assumption (or (not x1886) x2494) +:assumption (or x1886 (not x2494)) +:assumption (or (not x1879) x2492) +:assumption (or x1879 (not x2492)) +:assumption (or (not x1872) x2490) +:assumption (or x1872 (not x2490)) +:assumption (or (not x1865) x2488) +:assumption (or x1865 (not x2488)) +:assumption (or (not x1858) x2486) +:assumption (or x1858 (not x2486)) +:assumption (or (not x1507) x2485) +:assumption (or x1507 (not x2485)) +:assumption (or (not x1493) x2484) +:assumption (or x1493 (not x2484)) +:assumption (or (not x1486) x2479) +:assumption (or x1486 (not x2479)) +:assumption (or (not x1475) x2474) +:assumption (or x1475 (not x2474)) +:assumption (or (not x1500) x2469) +:assumption (or x1500 (not x2469)) +:assumption (or (not x1786) x2464) +:assumption (or x1786 (not x2464)) +:assumption (or (not x1782) x2461) +:assumption (or x1782 (not x2461)) +:assumption (or (not x1778) x2457) +:assumption (or x1778 (not x2457)) +:assumption (or (not x1776) x2453) +:assumption (or x1776 (not x2453)) +:assumption (or (not x1765) x2448) +:assumption (or x1765 (not x2448)) +:assumption (or (not x1766) x2442) +:assumption (or x1766 (not x2442)) +:assumption (or (not x1492) x2433) +:assumption (or x1492 (not x2433)) +:assumption (or (not x1485) x2429) +:assumption (or x1485 (not x2429)) +:assumption (or (not x1474) x2425) +:assumption (or x1474 (not x2425)) +:assumption (or (not x1499) x2420) +:assumption (or x1499 (not x2420)) +:assumption (or (not x1730) x2413) +:assumption (or x1730 (not x2413)) +:assumption (or (not x1731) x2407) +:assumption (or x1731 (not x2407)) +:assumption (or (not x1715) x2398) +:assumption (or x1715 (not x2398)) +:assumption (or (not x1716) x2392) +:assumption (or x1716 (not x2392)) +:assumption (or (not x1700) x2383) +:assumption (or x1700 (not x2383)) +:assumption (or (not x1701) x2377) +:assumption (or x1701 (not x2377)) +:assumption (or (not x1685) x2368) +:assumption (or x1685 (not x2368)) +:assumption (or (not x1686) x2362) +:assumption (or x1686 (not x2362)) +:assumption (or (not x1670) x2353) +:assumption (or x1670 (not x2353)) +:assumption (or (not x1671) x2347) +:assumption (or x1671 (not x2347)) +:assumption (or (not x1655) x2338) +:assumption (or x1655 (not x2338)) +:assumption (or (not x1656) x2332) +:assumption (or x1656 (not x2332)) +:assumption (or (not x1640) x2323) +:assumption (or x1640 (not x2323)) +:assumption (or (not x1641) x2317) +:assumption (or x1641 (not x2317)) +:assumption (or (not x1625) x2308) +:assumption (or x1625 (not x2308)) +:assumption (or (not x1626) x2302) +:assumption (or x1626 (not x2302)) +:assumption (or (not x1610) x2293) +:assumption (or x1610 (not x2293)) +:assumption (or (not x1611) x2287) +:assumption (or x1611 (not x2287)) +:assumption (or (not x1595) x2278) +:assumption (or x1595 (not x2278)) +:assumption (or (not x1596) x2272) +:assumption (or x1596 (not x2272)) +:assumption (or (not x1580) x2263) +:assumption (or x1580 (not x2263)) +:assumption (or (not x1581) x2257) +:assumption (or x1581 (not x2257)) +:assumption (or (not x1565) x2248) +:assumption (or x1565 (not x2248)) +:assumption (or (not x1566) x2242) +:assumption (or x1566 (not x2242)) +:assumption (or (not x1550) x2233) +:assumption (or x1550 (not x2233)) +:assumption (or (not x1551) x2227) +:assumption (or x1551 (not x2227)) +:assumption (or (not x1535) x2218) +:assumption (or x1535 (not x2218)) +:assumption (or (not x1536) x2212) +:assumption (or x1536 (not x2212)) +:assumption (or (not x1520) x2203) +:assumption (or x1520 (not x2203)) +:assumption (or (not x1521) x2197) +:assumption (or x1521 (not x2197)) +:assumption (or (not x1770) x2643) +:assumption (or x1770 (not x2643)) +:assumption (or (not x1477) x2188) +:assumption (or x1477 (not x2188)) +:assumption (or (not x1513) x2183) +:assumption (or x1513 (not x2183)) +:assumption (or (not x1735) x2646) +:assumption (or x1735 (not x2646)) +:assumption (or (not x1720) x2648) +:assumption (or x1720 (not x2648)) +:assumption (or (not x1705) x2653) +:assumption (or x1705 (not x2653)) +:assumption (or (not x1690) x2657) +:assumption (or x1690 (not x2657)) +:assumption (or (not x1675) x2660) +:assumption (or x1675 (not x2660)) +:assumption (or (not x1660) x2662) +:assumption (or x1660 (not x2662)) +:assumption (or (not x1645) x2667) +:assumption (or x1645 (not x2667)) +:assumption (or (not x1630) x2671) +:assumption (or x1630 (not x2671)) +:assumption (or (not x1615) x2674) +:assumption (or x1615 (not x2674)) +:assumption (or (not x1600) x2676) +:assumption (or x1600 (not x2676)) +:assumption (or (not x1585) x2681) +:assumption (or x1585 (not x2681)) +:assumption (or (not x1570) x2685) +:assumption (or x1570 (not x2685)) +:assumption (or (not x1555) x2688) +:assumption (or x1555 (not x2688)) +:assumption (or (not x1540) x2690) +:assumption (or x1540 (not x2690)) +:assumption (or (not x1525) x2640) +:assumption (or x1525 (not x2640)) +:assumption (or (not x1503) x2179) +:assumption (or x1503 (not x2179)) +:assumption (or (not x1495) x2170) +:assumption (or x1495 (not x2170)) +:assumption (or (not x1488) x2163) +:assumption (or x1488 (not x2163)) +:assumption (or (not x1480) x2156) +:assumption (or x1480 (not x2156)) +:assumption (or (not x78) x2145) +:assumption (or x78 (not x2145)) +:assumption (or (not x79) x2140) +:assumption (or x79 (not x2140)) +:assumption (or x2809 x2808) +:assumption (or x2807 x2806) +:assumption (or x2805 x2804) +:assumption (or x2803 x2802) +:assumption (or x2801 x2800) +:assumption (or x2799 x2798) +:assumption (or x2797 x2796) +:assumption (or x2795 x2794) +:assumption (or x2793 x2792) +:assumption (or x2791 x2790) +:assumption (or x2789 x2788) +:assumption (or x2787 x2786) +:assumption (or x2785 x2784) +:assumption (or x2783 x2782) +:assumption (or x2781 x2780) +:assumption (or x2779 x2778) +:assumption (or x2136 x2135) +:assumption (or x2134 x2133) +:assumption (or x2132 x2131) +:assumption (or x2130 x2129) +:assumption (or x2128 x2127) +:assumption (or x2126 x2125) +:assumption (or x2124 x2123) +:assumption (or x2122 x2121) +:assumption (or x2120 x2119) +:assumption (or x2118 x2117) +:assumption (or x2116 x2115) +:assumption (or x2114 x2113) +:assumption (or x2112 x2111) +:assumption (or x2110 x2109) +:assumption (or x2108 x2107) +:assumption (or x2106 x2105) +:assumption (or (not x61) x2104) +:assumption (or x61 (not x2104)) +:assumption (or (not x62) x1955) +:assumption (or x62 (not x1955)) +:assumption (or (not x63) x1948) +:assumption (or x63 (not x1948)) +:assumption (or (not x64) x1942) +:assumption (or x64 (not x1942)) +:assumption (or (not x65) x1935) +:assumption (or x65 (not x1935)) +:assumption (or (not x66) x1928) +:assumption (or x66 (not x1928)) +:assumption (or (not x67) x1921) +:assumption (or x67 (not x1921)) +:assumption (or (not x68) x1915) +:assumption (or x68 (not x1915)) +:assumption (or (not x69) x1908) +:assumption (or x69 (not x1908)) +:assumption (or (not x70) x1901) +:assumption (or x70 (not x1901)) +:assumption (or (not x71) x1894) +:assumption (or x71 (not x1894)) +:assumption (or (not x72) x1888) +:assumption (or x72 (not x1888)) +:assumption (or (not x73) x1881) +:assumption (or x73 (not x1881)) +:assumption (or (not x74) x1874) +:assumption (or x74 (not x1874)) +:assumption (or (not x75) x1867) +:assumption (or x75 (not x1867)) +:assumption (or (not x76) x1860) +:assumption (or x76 (not x1860)) +:assumption (or (not x1290) x1843) +:assumption (or x1290 (not x1843)) +:assumption (or (not x1280) x1841) +:assumption (or x1280 (not x1841)) +:assumption (or (not x1273) x1839) +:assumption (or x1273 (not x1839)) +:assumption (or (not x1267) x1837) +:assumption (or x1267 (not x1837)) +:assumption (or (not x1260) x1835) +:assumption (or x1260 (not x1835)) +:assumption (or (not x1253) x1833) +:assumption (or x1253 (not x1833)) +:assumption (or (not x1246) x1831) +:assumption (or x1246 (not x1831)) +:assumption (or (not x1240) x1829) +:assumption (or x1240 (not x1829)) +:assumption (or (not x1233) x1827) +:assumption (or x1233 (not x1827)) +:assumption (or (not x1226) x1825) +:assumption (or x1226 (not x1825)) +:assumption (or (not x1219) x1823) +:assumption (or x1219 (not x1823)) +:assumption (or (not x1213) x1821) +:assumption (or x1213 (not x1821)) +:assumption (or (not x1206) x1819) +:assumption (or x1206 (not x1819)) +:assumption (or (not x1199) x1817) +:assumption (or x1199 (not x1817)) +:assumption (or (not x1192) x1815) +:assumption (or x1192 (not x1815)) +:assumption (or (not x1185) x1813) +:assumption (or x1185 (not x1813)) +:assumption (or (not x882) x1812) +:assumption (or x882 (not x1812)) +:assumption (or (not x868) x1811) +:assumption (or x868 (not x1811)) +:assumption (or (not x861) x1806) +:assumption (or x861 (not x1806)) +:assumption (or (not x850) x1801) +:assumption (or x850 (not x1801)) +:assumption (or (not x875) x1796) +:assumption (or x875 (not x1796)) +:assumption (or (not x1113) x1791) +:assumption (or x1113 (not x1791)) +:assumption (or (not x1109) x1788) +:assumption (or x1109 (not x1788)) +:assumption (or (not x1105) x1784) +:assumption (or x1105 (not x1784)) +:assumption (or (not x1103) x1780) +:assumption (or x1103 (not x1780)) +:assumption (or (not x1091) x1775) +:assumption (or x1091 (not x1775)) +:assumption (or (not x1092) x1769) +:assumption (or x1092 (not x1769)) +:assumption (or (not x867) x1760) +:assumption (or x867 (not x1760)) +:assumption (or (not x860) x1756) +:assumption (or x860 (not x1756)) +:assumption (or (not x849) x1752) +:assumption (or x849 (not x1752)) +:assumption (or (not x874) x1747) +:assumption (or x874 (not x1747)) +:assumption (or (not x1059) x1740) +:assumption (or x1059 (not x1740)) +:assumption (or (not x1060) x1734) +:assumption (or x1060 (not x1734)) +:assumption (or (not x1047) x1725) +:assumption (or x1047 (not x1725)) +:assumption (or (not x1048) x1719) +:assumption (or x1048 (not x1719)) +:assumption (or (not x1035) x1710) +:assumption (or x1035 (not x1710)) +:assumption (or (not x1036) x1704) +:assumption (or x1036 (not x1704)) +:assumption (or (not x1023) x1695) +:assumption (or x1023 (not x1695)) +:assumption (or (not x1024) x1689) +:assumption (or x1024 (not x1689)) +:assumption (or (not x1011) x1680) +:assumption (or x1011 (not x1680)) +:assumption (or (not x1012) x1674) +:assumption (or x1012 (not x1674)) +:assumption (or (not x999) x1665) +:assumption (or x999 (not x1665)) +:assumption (or (not x1000) x1659) +:assumption (or x1000 (not x1659)) +:assumption (or (not x987) x1650) +:assumption (or x987 (not x1650)) +:assumption (or (not x988) x1644) +:assumption (or x988 (not x1644)) +:assumption (or (not x975) x1635) +:assumption (or x975 (not x1635)) +:assumption (or (not x976) x1629) +:assumption (or x976 (not x1629)) +:assumption (or (not x963) x1620) +:assumption (or x963 (not x1620)) +:assumption (or (not x964) x1614) +:assumption (or x964 (not x1614)) +:assumption (or (not x951) x1605) +:assumption (or x951 (not x1605)) +:assumption (or (not x952) x1599) +:assumption (or x952 (not x1599)) +:assumption (or (not x939) x1590) +:assumption (or x939 (not x1590)) +:assumption (or (not x940) x1584) +:assumption (or x940 (not x1584)) +:assumption (or (not x927) x1575) +:assumption (or x927 (not x1575)) +:assumption (or (not x928) x1569) +:assumption (or x928 (not x1569)) +:assumption (or (not x915) x1560) +:assumption (or x915 (not x1560)) +:assumption (or (not x916) x1554) +:assumption (or x916 (not x1554)) +:assumption (or (not x903) x1545) +:assumption (or x903 (not x1545)) +:assumption (or (not x904) x1539) +:assumption (or x904 (not x1539)) +:assumption (or (not x891) x1530) +:assumption (or x891 (not x1530)) +:assumption (or (not x892) x1524) +:assumption (or x892 (not x1524)) +:assumption (or (not x1093) x1970) +:assumption (or x1093 (not x1970)) +:assumption (or (not x852) x1515) +:assumption (or x852 (not x1515)) +:assumption (or (not x888) x1510) +:assumption (or x888 (not x1510)) +:assumption (or (not x1061) x1973) +:assumption (or x1061 (not x1973)) +:assumption (or (not x1049) x1975) +:assumption (or x1049 (not x1975)) +:assumption (or (not x1037) x1980) +:assumption (or x1037 (not x1980)) +:assumption (or (not x1025) x1984) +:assumption (or x1025 (not x1984)) +:assumption (or (not x1013) x1987) +:assumption (or x1013 (not x1987)) +:assumption (or (not x1001) x1989) +:assumption (or x1001 (not x1989)) +:assumption (or (not x989) x1994) +:assumption (or x989 (not x1994)) +:assumption (or (not x977) x1998) +:assumption (or x977 (not x1998)) +:assumption (or (not x965) x2001) +:assumption (or x965 (not x2001)) +:assumption (or (not x953) x2003) +:assumption (or x953 (not x2003)) +:assumption (or (not x941) x2008) +:assumption (or x941 (not x2008)) +:assumption (or (not x929) x2012) +:assumption (or x929 (not x2012)) +:assumption (or (not x917) x2015) +:assumption (or x917 (not x2015)) +:assumption (or (not x905) x2017) +:assumption (or x905 (not x2017)) +:assumption (or (not x893) x1967) +:assumption (or x893 (not x1967)) +:assumption (or (not x878) x1506) +:assumption (or x878 (not x1506)) +:assumption (or (not x870) x1497) +:assumption (or x870 (not x1497)) +:assumption (or (not x863) x1490) +:assumption (or x863 (not x1490)) +:assumption (or (not x855) x1483) +:assumption (or x855 (not x1483)) +:assumption (or (not x59) x1472) +:assumption (or x59 (not x1472)) +:assumption (or (not x60) x1467) +:assumption (or x60 (not x1467)) +:assumption (or x2136 x2135) +:assumption (or x2134 x2133) +:assumption (or x2132 x2131) +:assumption (or x2130 x2129) +:assumption (or x2128 x2127) +:assumption (or x2126 x2125) +:assumption (or x2124 x2123) +:assumption (or x2122 x2121) +:assumption (or x2120 x2119) +:assumption (or x2118 x2117) +:assumption (or x2116 x2115) +:assumption (or x2114 x2113) +:assumption (or x2112 x2111) +:assumption (or x2110 x2109) +:assumption (or x2108 x2107) +:assumption (or x2106 x2105) +:assumption (or x1463 x1462) +:assumption (or x1461 x1460) +:assumption (or x1459 x1458) +:assumption (or x1457 x1456) +:assumption (or x1455 x1454) +:assumption (or x1453 x1452) +:assumption (or x1451 x1450) +:assumption (or x1449 x1448) +:assumption (or x1447 x1446) +:assumption (or x1445 x1444) +:assumption (or x1443 x1442) +:assumption (or x1441 x1440) +:assumption (or x1439 x1438) +:assumption (or x1437 x1436) +:assumption (or x1435 x1434) +:assumption (or x1433 x1432) +:assumption (or (not x42) x1431) +:assumption (or x42 (not x1431)) +:assumption (or (not x43) x1282) +:assumption (or x43 (not x1282)) +:assumption (or (not x44) x1275) +:assumption (or x44 (not x1275)) +:assumption (or (not x45) x1269) +:assumption (or x45 (not x1269)) +:assumption (or (not x46) x1262) +:assumption (or x46 (not x1262)) +:assumption (or (not x47) x1255) +:assumption (or x47 (not x1255)) +:assumption (or (not x48) x1248) +:assumption (or x48 (not x1248)) +:assumption (or (not x49) x1242) +:assumption (or x49 (not x1242)) +:assumption (or (not x50) x1235) +:assumption (or x50 (not x1235)) +:assumption (or (not x51) x1228) +:assumption (or x51 (not x1228)) +:assumption (or (not x52) x1221) +:assumption (or x52 (not x1221)) +:assumption (or (not x53) x1215) +:assumption (or x53 (not x1215)) +:assumption (or (not x54) x1208) +:assumption (or x54 (not x1208)) +:assumption (or (not x55) x1201) +:assumption (or x55 (not x1201)) +:assumption (or (not x56) x1194) +:assumption (or x56 (not x1194)) +:assumption (or (not x57) x1187) +:assumption (or x57 (not x1187)) +:assumption (or (not x696) x1170) +:assumption (or x696 (not x1170)) +:assumption (or (not x686) x1168) +:assumption (or x686 (not x1168)) +:assumption (or (not x679) x1166) +:assumption (or x679 (not x1166)) +:assumption (or (not x673) x1164) +:assumption (or x673 (not x1164)) +:assumption (or (not x666) x1162) +:assumption (or x666 (not x1162)) +:assumption (or (not x659) x1160) +:assumption (or x659 (not x1160)) +:assumption (or (not x652) x1158) +:assumption (or x652 (not x1158)) +:assumption (or (not x646) x1156) +:assumption (or x646 (not x1156)) +:assumption (or (not x639) x1154) +:assumption (or x639 (not x1154)) +:assumption (or (not x632) x1152) +:assumption (or x632 (not x1152)) +:assumption (or (not x625) x1150) +:assumption (or x625 (not x1150)) +:assumption (or (not x619) x1148) +:assumption (or x619 (not x1148)) +:assumption (or (not x612) x1146) +:assumption (or x612 (not x1146)) +:assumption (or (not x605) x1144) +:assumption (or x605 (not x1144)) +:assumption (or (not x598) x1142) +:assumption (or x598 (not x1142)) +:assumption (or (not x590) x1140) +:assumption (or x590 (not x1140)) +:assumption (or (not x581) x1139) +:assumption (or x581 (not x1139)) +:assumption (or (not x471) x1138) +:assumption (or x471 (not x1138)) +:assumption (or (not x464) x1133) +:assumption (or x464 (not x1133)) +:assumption (or (not x457) x1128) +:assumption (or x457 (not x1128)) +:assumption (or (not x447) x1123) +:assumption (or x447 (not x1123)) +:assumption (or (not x485) x1118) +:assumption (or x485 (not x1118)) +:assumption (or (not x481) x1115) +:assumption (or x481 (not x1115)) +:assumption (or (not x476) x1111) +:assumption (or x476 (not x1111)) +:assumption (or (not x474) x1107) +:assumption (or x474 (not x1107)) +:assumption (or (not x573) x1102) +:assumption (or x573 (not x1102)) +:assumption (or (not x470) x1090) +:assumption (or x470 (not x1090)) +:assumption (or (not x463) x1086) +:assumption (or x463 (not x1086)) +:assumption (or (not x456) x1082) +:assumption (or x456 (not x1082)) +:assumption (or (not x446) x1077) +:assumption (or x446 (not x1077)) +:assumption (or (not x569) x1070) +:assumption (or x569 (not x1070)) +:assumption (or (not x565) x1058) +:assumption (or x565 (not x1058)) +:assumption (or (not x561) x1046) +:assumption (or x561 (not x1046)) +:assumption (or (not x557) x1034) +:assumption (or x557 (not x1034)) +:assumption (or (not x553) x1022) +:assumption (or x553 (not x1022)) +:assumption (or (not x549) x1010) +:assumption (or x549 (not x1010)) +:assumption (or (not x545) x998) +:assumption (or x545 (not x998)) +:assumption (or (not x541) x986) +:assumption (or x541 (not x986)) +:assumption (or (not x537) x974) +:assumption (or x537 (not x974)) +:assumption (or (not x533) x962) +:assumption (or x533 (not x962)) +:assumption (or (not x529) x950) +:assumption (or x529 (not x950)) +:assumption (or (not x525) x938) +:assumption (or x525 (not x938)) +:assumption (or (not x521) x926) +:assumption (or x521 (not x926)) +:assumption (or (not x517) x914) +:assumption (or x517 (not x914)) +:assumption (or (not x513) x902) +:assumption (or x513 (not x902)) +:assumption (or (not x448) x890) +:assumption (or x448 (not x890)) +:assumption (or (not x473) x885) +:assumption (or x473 (not x885)) +:assumption (or (not x442) x881) +:assumption (or x442 (not x881)) +:assumption (or (not x439) x872) +:assumption (or x439 (not x872)) +:assumption (or (not x436) x865) +:assumption (or x436 (not x865)) +:assumption (or (not x445) x858) +:assumption (or x445 (not x858)) +:assumption (or (not x40) x847) +:assumption (or x40 (not x847)) +:assumption (or (not x41) x842) +:assumption (or x41 (not x842)) +:assumption (or x1463 x1462) +:assumption (or x1461 x1460) +:assumption (or x1459 x1458) +:assumption (or x1457 x1456) +:assumption (or x1455 x1454) +:assumption (or x1453 x1452) +:assumption (or x1451 x1450) +:assumption (or x1449 x1448) +:assumption (or x1447 x1446) +:assumption (or x1445 x1444) +:assumption (or x1443 x1442) +:assumption (or x1441 x1440) +:assumption (or x1439 x1438) +:assumption (or x1437 x1436) +:assumption (or x1435 x1434) +:assumption (or x1433 x1432) +:assumption (or (not x23) x838) +:assumption (or x23 (not x838)) +:assumption (or (not x24) x688) +:assumption (or x24 (not x688)) +:assumption (or (not x25) x681) +:assumption (or x25 (not x681)) +:assumption (or (not x26) x675) +:assumption (or x26 (not x675)) +:assumption (or (not x27) x668) +:assumption (or x27 (not x668)) +:assumption (or (not x28) x661) +:assumption (or x28 (not x661)) +:assumption (or (not x29) x654) +:assumption (or x29 (not x654)) +:assumption (or (not x30) x648) +:assumption (or x30 (not x648)) +:assumption (or (not x31) x641) +:assumption (or x31 (not x641)) +:assumption (or (not x32) x634) +:assumption (or x32 (not x634)) +:assumption (or (not x33) x627) +:assumption (or x33 (not x627)) +:assumption (or (not x34) x621) +:assumption (or x34 (not x621)) +:assumption (or (not x35) x614) +:assumption (or x35 (not x614)) +:assumption (or (not x36) x607) +:assumption (or x36 (not x607)) +:assumption (or (not x37) x600) +:assumption (or x37 (not x600)) +:assumption (or (not x38) x593) +:assumption (or x38 (not x593)) +:assumption (or (not x246) x572) +:assumption (or x246 (not x572)) +:assumption (or (not x236) x568) +:assumption (or x236 (not x568)) +:assumption (or (not x229) x564) +:assumption (or x229 (not x564)) +:assumption (or (not x223) x560) +:assumption (or x223 (not x560)) +:assumption (or (not x216) x556) +:assumption (or x216 (not x556)) +:assumption (or (not x209) x552) +:assumption (or x209 (not x552)) +:assumption (or (not x202) x548) +:assumption (or x202 (not x548)) +:assumption (or (not x196) x544) +:assumption (or x196 (not x544)) +:assumption (or (not x189) x540) +:assumption (or x189 (not x540)) +:assumption (or (not x182) x536) +:assumption (or x182 (not x536)) +:assumption (or (not x175) x532) +:assumption (or x175 (not x532)) +:assumption (or (not x169) x528) +:assumption (or x169 (not x528)) +:assumption (or (not x162) x524) +:assumption (or x162 (not x524)) +:assumption (or (not x155) x520) +:assumption (or x155 (not x520)) +:assumption (or (not x148) x516) +:assumption (or x148 (not x516)) +:assumption (or (not x139) x512) +:assumption (or x139 (not x512)) +:assumption (or (not x130) x511) +:assumption (or x130 (not x511)) +:assumption (or (not x388) x510) +:assumption (or x388 (not x510)) +:assumption (or (not x385) x505) +:assumption (or x385 (not x505)) +:assumption (or (not x382) x500) +:assumption (or x382 (not x500)) +:assumption (or (not x379) x495) +:assumption (or x379 (not x495)) +:assumption (or (not x374) x490) +:assumption (or x374 (not x490)) +:assumption (or (not x375) x487) +:assumption (or x375 (not x487)) +:assumption (or (not x376) x483) +:assumption (or x376 (not x483)) +:assumption (or (not x377) x479) +:assumption (or x377 (not x479)) +:assumption (or (not x387) x472) +:assumption (or x387 (not x472)) +:assumption (or (not x384) x465) +:assumption (or x384 (not x465)) +:assumption (or (not x381) x458) +:assumption (or x381 (not x458)) +:assumption (or (not x378) x450) +:assumption (or x378 (not x450)) +:assumption (or (not x21) x434) +:assumption (or x21 (not x434)) +:assumption (or (not x22) x429) +:assumption (or x22 (not x429)) +:assumption (or (not x4) x425) +:assumption (or x4 (not x425)) +:assumption (or (not x5) x238) +:assumption (or x5 (not x238)) +:assumption (or (not x6) x231) +:assumption (or x6 (not x231)) +:assumption (or (not x7) x225) +:assumption (or x7 (not x225)) +:assumption (or (not x8) x218) +:assumption (or x8 (not x218)) +:assumption (or (not x9) x211) +:assumption (or x9 (not x211)) +:assumption (or (not x10) x204) +:assumption (or x10 (not x204)) +:assumption (or (not x11) x198) +:assumption (or x11 (not x198)) +:assumption (or (not x12) x191) +:assumption (or x12 (not x191)) +:assumption (or (not x13) x184) +:assumption (or x13 (not x184)) +:assumption (or (not x14) x177) +:assumption (or x14 (not x177)) +:assumption (or (not x15) x171) +:assumption (or x15 (not x171)) +:assumption (or (not x16) x164) +:assumption (or x16 (not x164)) +:assumption (or (not x17) x157) +:assumption (or x17 (not x157)) +:assumption (or (not x18) x150) +:assumption (or x18 (not x150)) +:assumption (or (not x19) x143) +:assumption (or x19 (not x143)) +:assumption (or (not x2) x124) +:assumption (or x2 (not x124)) +:assumption (or (not x3) x119) +:assumption (or x3 (not x119)) +:assumption (or x115) +:formula true +) diff --git a/test/regress/regress0/bug49.smt b/test/regress/regress0/bug49.smt new file mode 100644 index 000000000..3f3d40b44 --- /dev/null +++ b/test/regress/regress0/bug49.smt @@ -0,0 +1,67 @@ +(benchmark PEQ012_size3_segsat.smt +:source { + +CADE ATP System competition. See http://www.cs.miami.edu/~tptp/CASC + for more information. + +This benchmark was obtained by trying to find a finite model of a first-order +formula (Albert Oliveras). + +Original source is QF_UF/PEQ/PEQ012_size3.smt +Mucked up by Tim +} +:status sat +:category { crafted } +:difficulty { 0 } +:logic QF_UF + +:extrafuns ((f1 U U U)) +:extrafuns ((c6 U)) +:extrafuns ((c3 U)) +:extrafuns ((c7 U)) +:extrafuns ((c5 U)) +:extrafuns ((c2 U)) +:extrafuns ((c4 U)) +:extrafuns ((c8 U)) +:extrafuns ((c9 U)) +:extrafuns ((c_0 U)) +:extrafuns ((c_1 U)) +:extrafuns ((c_2 U)) +:formula +( and + (not (= c_0 c_1)) + (not (= c_0 c_2)) + (not (= c_1 c_2)) + (or (not (= (f1 c_0 c_1) (f1 c_0 c_1))) (= c_1 c_1) ) + (or (not (= (f1 c_0 c_2) (f1 c_0 c_0))) (= c_2 c_0) ) + (or (not (= (f1 c_0 c_2) (f1 c_0 c_2))) (= c_2 c_2) ) + (or (not (= (f1 c_1 c_0) (f1 c_1 c_0))) (= c_0 c_0) ) + (or (not (= (f1 c_1 c_0) (f1 c_1 c_2))) (= c_0 c_2) ) + (or (not (= (f1 c_1 c_1) (f1 c_1 c_0))) (= c_1 c_0) ) + (= (f1 (f1 c_0 c_0) c_0) (f1 c_0 (f1 c_0 c_0))) + (= (f1 (f1 c_0 c_0) c_2) (f1 c_0 (f1 c_0 c_2))) + (= (f1 (f1 c_0 c_1) c_1) (f1 c_0 (f1 c_1 c_1))) + (= (f1 (f1 c_0 c_1) c_2) (f1 c_0 (f1 c_1 c_2))) + (= (f1 (f1 c_2 c_1) c_2) (f1 c_2 (f1 c_1 c_2))) + (= (f1 (f1 c_2 c_2) c_0) (f1 c_2 (f1 c_2 c_0))) + (= (f1 (f1 c_2 c_2) c_1) (f1 c_2 (f1 c_2 c_1))) + (= (f1 c_0 (f1 c_2 (f1 c_2 (f1 c_2 c_0)))) (f1 c_2 (f1 c_0 (f1 c_2 (f1 c_0 c_2))))) + (= (f1 c2 c8) (f1 c4 c9)) + (not (= (f1 c6 c8) (f1 c7 c9))) + (or (= (f1 c_0 c_0) c_0)(= (f1 c_0 c_0) c_1)(= (f1 c_0 c_0) c_2)) + (or (= (f1 c_0 c_1) c_0)(= (f1 c_0 c_1) c_1)(= (f1 c_0 c_1) c_2)) + (or (= (f1 c_1 c_0) c_0)(= (f1 c_1 c_0) c_1)(= (f1 c_1 c_0) c_2)) + (or (= (f1 c_1 c_1) c_0)(= (f1 c_1 c_1) c_1)(= (f1 c_1 c_1) c_2)) + (or (= (f1 c_1 c_2) c_0)(= (f1 c_1 c_2) c_1)(= (f1 c_1 c_2) c_2)) + (or (= (f1 c_2 c_0) c_0)(= (f1 c_2 c_0) c_1)(= (f1 c_2 c_0) c_2)) + (or (= (f1 c_2 c_1) c_0)(= (f1 c_2 c_1) c_1)(= (f1 c_2 c_1) c_2)) + (or (= (f1 c_2 c_2) c_0)(= (f1 c_2 c_2) c_1)(= (f1 c_2 c_2) c_2)) + (or (= c6 c_0)(= c6 c_1)(= c6 c_2)) + (or (= c3 c_0)(= c3 c_1)(= c3 c_2)) + (or (= c7 c_0)(= c7 c_1)(= c7 c_2)) + (or (= c5 c_0)(= c5 c_1)(= c5 c_2)) + (or (= c2 c_0)(= c2 c_1)(= c2 c_2)) + (or (= c4 c_0)(= c4 c_1)(= c4 c_2)) + (or (= c8 c_0)(= c8 c_1)(= c8 c_2)) + (or (= c9 c_0)(= c9 c_1)(= c9 c_2)) +)) diff --git a/test/regress/regress0/cvc3-bug15.cvc b/test/regress/regress0/cvc3-bug15.cvc new file mode 100644 index 000000000..aaebeebd6 --- /dev/null +++ b/test/regress/regress0/cvc3-bug15.cvc @@ -0,0 +1,10 @@ +%% This test borrowed from CVC3 regressions, bug15.cvc +% EXPECT: VALID +x : REAL; +y : REAL; +f : REAL -> REAL; +ASSERT ((x > y) => f(x) > f (y)); +ASSERT (x = 3); +ASSERT (y = 2); +QUERY(f(x) > f (y)); +% EXIT: 20 diff --git a/test/regress/regress0/fuzz_1.smt b/test/regress/regress0/fuzz_1.smt new file mode 100644 index 000000000..22cdd2307 --- /dev/null +++ b/test/regress/regress0/fuzz_1.smt @@ -0,0 +1,32 @@ +(benchmark fuzzsmt +:logic QF_LRA +:status unsat +:extrafuns ((v0 Real)) +:formula +(let (?e1 11) +(let (?e2 1) +(let (?e3 (* v0 ?e2)) +(let (?e4 (/ ?e1 (~ ?e1))) +(flet ($e5 (< v0 ?e4)) +(flet ($e6 (< ?e3 ?e3)) +(let (?e7 (ite $e5 ?e3 ?e4)) +(let (?e8 (ite $e5 ?e3 ?e3)) +(let (?e9 (ite $e6 v0 ?e4)) +(flet ($e10 (< ?e3 ?e7)) +(flet ($e11 (< v0 ?e9)) +(flet ($e12 (= ?e8 ?e4)) +(flet ($e13 (and $e10 $e6)) +(flet ($e14 (implies $e12 $e5)) +(flet ($e15 (iff $e14 $e14)) +(flet ($e16 (iff $e11 $e11)) +(flet ($e17 (iff $e16 $e16)) +(flet ($e18 (not $e13)) +(flet ($e19 (or $e18 $e18)) +(flet ($e20 (if_then_else $e15 $e15 $e17)) +(flet ($e21 (not $e20)) +(flet ($e22 (not $e19)) +(flet ($e23 (xor $e21 $e21)) +(flet ($e24 (xor $e23 $e22)) +$e24 +))))))))))))))))))))))))) + diff --git a/test/regress/regress1/Makefile.am b/test/regress/regress1/Makefile.am index 981ab8012..abc4efcc7 100644 --- a/test/regress/regress1/Makefile.am +++ b/test/regress/regress1/Makefile.am @@ -5,11 +5,12 @@ TESTS_ENVIRONMENT = @srcdir@/../run_regression @top_builddir@/src/main/cvc4 # These are run for all build profiles. # If a test shouldn't be run in e.g. competition mode, # put it below in "TESTS +=" -TESTS = friedman_n4_i5.smt \ +TESTS = bug136.smt \ + bug148.smt \ + friedman_n4_i5.smt \ hole7.cvc \ hole8.cvc \ instance_1444.smt \ - fuzz_1.smt \ fuzz_2.smt EXTRA_DIST = $(TESTS) diff --git a/test/regress/regress1/bug136.smt b/test/regress/regress1/bug136.smt new file mode 100644 index 000000000..08fb3cb6c --- /dev/null +++ b/test/regress/regress1/bug136.smt @@ -0,0 +1,1149 @@ +(benchmark fuzzsmt +:logic QF_LRA +:status sat +:extrafuns ((v0 Real)) +:extrafuns ((v1 Real)) +:formula +(let (?e2 12) +(let (?e3 0) +(let (?e4 (~ v1)) +(let (?e5 (+ ?e4 ?e4)) +(let (?e6 (+ v1 v1)) +(let (?e7 (/ ?e3 ?e2)) +(let (?e8 (+ v1 ?e4)) +(let (?e9 (* ?e8 ?e3)) +(let (?e10 (* ?e6 ?e3)) +(let (?e11 (* (~ ?e3) ?e4)) +(let (?e12 (+ ?e4 ?e4)) +(let (?e13 (~ ?e4)) +(let (?e14 (- ?e12 ?e8)) +(let (?e15 (- ?e14 ?e11)) +(let (?e16 (+ v1 ?e7)) +(let (?e17 (- ?e11 ?e8)) +(let (?e18 (+ ?e11 ?e10)) +(let (?e19 (* ?e2 ?e4)) +(let (?e20 (* ?e3 ?e6)) +(let (?e21 (/ ?e3 ?e2)) +(let (?e22 (+ ?e4 ?e4)) +(let (?e23 (- ?e5 ?e17)) +(let (?e24 (~ ?e20)) +(let (?e25 (/ ?e3 (~ ?e2))) +(let (?e26 (* v1 (~ ?e2))) +(let (?e27 (* ?e2 ?e6)) +(let (?e28 (~ ?e21)) +(let (?e29 (* (~ ?e3) ?e25)) +(let (?e30 (- v1 ?e15)) +(let (?e31 (* (~ ?e2) ?e15)) +(let (?e32 (/ ?e2 (~ ?e2))) +(let (?e33 (/ ?e3 ?e2)) +(let (?e34 (/ ?e3 (~ ?e2))) +(let (?e35 (/ ?e3 ?e2)) +(let (?e36 (* ?e13 (~ ?e3))) +(let (?e37 (+ ?e21 v1)) +(let (?e38 (- ?e19 v0)) +(flet ($e39 (< ?e20 ?e7)) +(flet ($e40 (> ?e5 v0)) +(flet ($e41 (distinct ?e30 ?e16)) +(flet ($e42 (< ?e20 v0)) +(flet ($e43 (<= ?e17 ?e35)) +(flet ($e44 (= ?e15 ?e29)) +(flet ($e45 (<= ?e15 ?e11)) +(flet ($e46 (distinct ?e30 ?e8)) +(flet ($e47 (< ?e25 ?e4)) +(flet ($e48 (>= ?e19 ?e32)) +(flet ($e49 (< ?e4 ?e35)) +(flet ($e50 (< ?e36 ?e11)) +(flet ($e51 (>= ?e5 ?e7)) +(flet ($e52 (= ?e21 ?e6)) +(flet ($e53 (= ?e11 ?e34)) +(flet ($e54 (distinct ?e14 ?e38)) +(flet ($e55 (= ?e6 ?e34)) +(flet ($e56 (< ?e15 ?e11)) +(flet ($e57 (<= ?e14 ?e25)) +(flet ($e58 (< v1 ?e12)) +(flet ($e59 (> ?e6 ?e11)) +(flet ($e60 (distinct ?e15 ?e4)) +(flet ($e61 (<= ?e25 ?e30)) +(flet ($e62 (>= ?e6 ?e9)) +(flet ($e63 (<= ?e33 ?e29)) +(flet ($e64 (>= ?e25 ?e8)) +(flet ($e65 (> ?e31 ?e33)) +(flet ($e66 (distinct ?e23 ?e31)) +(flet ($e67 (= ?e12 ?e31)) +(flet ($e68 (> ?e18 ?e15)) +(flet ($e69 (< v1 ?e6)) +(flet ($e70 (<= ?e24 v1)) +(flet ($e71 (> ?e19 ?e18)) +(flet ($e72 (distinct ?e37 ?e17)) +(flet ($e73 (distinct ?e16 ?e9)) +(flet ($e74 (distinct ?e25 ?e36)) +(flet ($e75 (> ?e20 ?e21)) +(flet ($e76 (= ?e15 ?e8)) +(flet ($e77 (> ?e17 ?e20)) +(flet ($e78 (>= ?e22 ?e18)) +(flet ($e79 (>= ?e37 ?e38)) +(flet ($e80 (> ?e8 v1)) +(flet ($e81 (distinct ?e36 ?e31)) +(flet ($e82 (>= v1 ?e37)) +(flet ($e83 (distinct ?e26 ?e34)) +(flet ($e84 (= ?e10 ?e24)) +(flet ($e85 (<= v0 ?e37)) +(flet ($e86 (distinct ?e21 ?e17)) +(flet ($e87 (distinct ?e15 ?e25)) +(flet ($e88 (>= ?e12 ?e31)) +(flet ($e89 (< ?e34 ?e32)) +(flet ($e90 (distinct v1 ?e37)) +(flet ($e91 (> ?e8 v1)) +(flet ($e92 (< ?e17 ?e8)) +(flet ($e93 (distinct ?e24 ?e6)) +(flet ($e94 (< ?e13 ?e22)) +(flet ($e95 (distinct ?e8 ?e28)) +(flet ($e96 (< ?e7 ?e25)) +(flet ($e97 (> ?e24 ?e5)) +(flet ($e98 (>= ?e30 ?e12)) +(flet ($e99 (< ?e24 v0)) +(flet ($e100 (> ?e8 ?e12)) +(flet ($e101 (>= ?e17 ?e23)) +(flet ($e102 (> ?e31 ?e25)) +(flet ($e103 (distinct ?e21 ?e22)) +(flet ($e104 (distinct ?e25 ?e34)) +(flet ($e105 (<= ?e11 ?e5)) +(flet ($e106 (< ?e23 ?e19)) +(flet ($e107 (<= ?e22 ?e4)) +(flet ($e108 (>= ?e17 ?e20)) +(flet ($e109 (>= ?e24 ?e24)) +(flet ($e110 (< ?e7 ?e37)) +(flet ($e111 (>= ?e24 ?e33)) +(flet ($e112 (>= v1 ?e30)) +(flet ($e113 (distinct ?e23 ?e35)) +(flet ($e114 (< ?e25 ?e23)) +(flet ($e115 (distinct ?e37 ?e8)) +(flet ($e116 (<= ?e19 ?e29)) +(flet ($e117 (< ?e38 v1)) +(flet ($e118 (< ?e13 ?e28)) +(flet ($e119 (<= ?e12 ?e37)) +(flet ($e120 (> ?e37 ?e12)) +(flet ($e121 (distinct ?e12 ?e11)) +(flet ($e122 (<= ?e30 ?e25)) +(flet ($e123 (> ?e35 ?e10)) +(flet ($e124 (>= v1 ?e38)) +(flet ($e125 (>= ?e35 ?e9)) +(flet ($e126 (<= ?e13 v0)) +(flet ($e127 (>= ?e33 ?e8)) +(flet ($e128 (> ?e16 ?e20)) +(flet ($e129 (> ?e24 ?e9)) +(flet ($e130 (< ?e13 ?e29)) +(flet ($e131 (> ?e23 ?e20)) +(flet ($e132 (= ?e23 ?e9)) +(flet ($e133 (> ?e7 ?e31)) +(flet ($e134 (<= ?e28 ?e17)) +(flet ($e135 (= ?e35 ?e25)) +(flet ($e136 (= ?e14 ?e27)) +(let (?e137 (ite $e97 ?e14 ?e20)) +(let (?e138 (ite $e105 ?e38 ?e19)) +(let (?e139 (ite $e121 ?e4 ?e14)) +(let (?e140 (ite $e128 ?e16 ?e32)) +(let (?e141 (ite $e70 ?e37 ?e9)) +(let (?e142 (ite $e90 ?e26 ?e37)) +(let (?e143 (ite $e108 ?e31 ?e15)) +(let (?e144 (ite $e82 ?e23 ?e28)) +(let (?e145 (ite $e69 ?e35 ?e31)) +(let (?e146 (ite $e126 ?e15 ?e141)) +(let (?e147 (ite $e72 ?e4 ?e8)) +(let (?e148 (ite $e109 ?e26 ?e6)) +(let (?e149 (ite $e68 ?e28 ?e13)) +(let (?e150 (ite $e115 ?e21 ?e4)) +(let (?e151 (ite $e57 ?e17 ?e28)) +(let (?e152 (ite $e45 ?e25 ?e6)) +(let (?e153 (ite $e79 ?e30 ?e28)) +(let (?e154 (ite $e60 v0 ?e14)) +(let (?e155 (ite $e86 ?e23 ?e150)) +(let (?e156 (ite $e76 ?e18 ?e8)) +(let (?e157 (ite $e55 ?e13 ?e32)) +(let (?e158 (ite $e100 ?e149 ?e21)) +(let (?e159 (ite $e94 ?e141 ?e152)) +(let (?e160 (ite $e65 ?e21 ?e36)) +(let (?e161 (ite $e58 ?e29 ?e34)) +(let (?e162 (ite $e123 ?e156 ?e140)) +(let (?e163 (ite $e98 ?e150 ?e4)) +(let (?e164 (ite $e102 ?e11 ?e16)) +(let (?e165 (ite $e94 ?e12 ?e156)) +(let (?e166 (ite $e133 ?e141 ?e7)) +(let (?e167 (ite $e120 ?e30 ?e146)) +(let (?e168 (ite $e129 ?e9 ?e149)) +(let (?e169 (ite $e62 ?e153 ?e14)) +(let (?e170 (ite $e118 ?e33 ?e140)) +(let (?e171 (ite $e114 ?e27 ?e170)) +(let (?e172 (ite $e110 ?e5 ?e143)) +(let (?e173 (ite $e107 ?e22 ?e148)) +(let (?e174 (ite $e89 ?e35 ?e160)) +(let (?e175 (ite $e77 ?e9 ?e142)) +(let (?e176 (ite $e129 ?e163 ?e32)) +(let (?e177 (ite $e84 ?e18 ?e173)) +(let (?e178 (ite $e83 ?e24 ?e38)) +(let (?e179 (ite $e135 v1 ?e6)) +(let (?e180 (ite $e80 ?e26 ?e23)) +(let (?e181 (ite $e49 ?e167 ?e164)) +(let (?e182 (ite $e59 ?e10 ?e180)) +(let (?e183 (ite $e136 ?e14 ?e178)) +(let (?e184 (ite $e121 ?e147 ?e19)) +(let (?e185 (ite $e115 ?e21 ?e172)) +(let (?e186 (ite $e112 ?e163 ?e182)) +(let (?e187 (ite $e81 ?e24 ?e21)) +(let (?e188 (ite $e129 ?e187 ?e180)) +(let (?e189 (ite $e41 ?e159 v1)) +(let (?e190 (ite $e121 ?e155 ?e26)) +(let (?e191 (ite $e133 ?e25 ?e160)) +(let (?e192 (ite $e102 ?e7 ?e16)) +(let (?e193 (ite $e101 ?e12 ?e186)) +(let (?e194 (ite $e40 ?e156 ?e37)) +(let (?e195 (ite $e124 ?e149 ?e139)) +(let (?e196 (ite $e121 ?e137 ?e8)) +(let (?e197 (ite $e105 ?e170 ?e188)) +(let (?e198 (ite $e113 ?e36 ?e193)) +(let (?e199 (ite $e97 ?e197 ?e12)) +(let (?e200 (ite $e127 ?e17 ?e12)) +(let (?e201 (ite $e132 ?e24 ?e187)) +(let (?e202 (ite $e103 v1 ?e142)) +(let (?e203 (ite $e46 ?e149 ?e172)) +(let (?e204 (ite $e91 ?e145 ?e188)) +(let (?e205 (ite $e61 ?e176 ?e157)) +(let (?e206 (ite $e54 ?e195 ?e181)) +(let (?e207 (ite $e53 ?e173 ?e18)) +(let (?e208 (ite $e104 ?e162 ?e10)) +(let (?e209 (ite $e75 ?e183 ?e205)) +(let (?e210 (ite $e50 ?e24 ?e188)) +(let (?e211 (ite $e92 ?e194 ?e18)) +(let (?e212 (ite $e93 ?e149 ?e158)) +(let (?e213 (ite $e43 ?e32 ?e212)) +(let (?e214 (ite $e121 ?e146 ?e188)) +(let (?e215 (ite $e124 ?e156 ?e185)) +(let (?e216 (ite $e115 ?e26 ?e165)) +(let (?e217 (ite $e78 ?e33 ?e27)) +(let (?e218 (ite $e62 ?e149 ?e29)) +(let (?e219 (ite $e48 ?e212 ?e171)) +(let (?e220 (ite $e111 ?e148 ?e192)) +(let (?e221 (ite $e64 ?e176 ?e150)) +(let (?e222 (ite $e118 ?e213 ?e199)) +(let (?e223 (ite $e68 ?e175 ?e8)) +(let (?e224 (ite $e85 ?e4 ?e28)) +(let (?e225 (ite $e81 ?e174 ?e170)) +(let (?e226 (ite $e116 ?e141 ?e197)) +(let (?e227 (ite $e45 ?e22 ?e187)) +(let (?e228 (ite $e125 ?e9 ?e176)) +(let (?e229 (ite $e48 ?e215 ?e200)) +(let (?e230 (ite $e124 ?e28 ?e6)) +(let (?e231 (ite $e54 ?e191 ?e153)) +(let (?e232 (ite $e88 ?e214 ?e227)) +(let (?e233 (ite $e133 ?e5 ?e8)) +(let (?e234 (ite $e63 ?e220 ?e209)) +(let (?e235 (ite $e87 ?e203 ?e31)) +(let (?e236 (ite $e63 ?e184 ?e17)) +(let (?e237 (ite $e106 ?e234 ?e137)) +(let (?e238 (ite $e73 ?e175 ?e179)) +(let (?e239 (ite $e100 ?e9 ?e234)) +(let (?e240 (ite $e99 ?e182 ?e187)) +(let (?e241 (ite $e86 ?e18 ?e29)) +(let (?e242 (ite $e82 ?e225 ?e196)) +(let (?e243 (ite $e77 ?e188 ?e227)) +(let (?e244 (ite $e57 ?e234 ?e172)) +(let (?e245 (ite $e66 ?e165 ?e224)) +(let (?e246 (ite $e56 ?e231 ?e156)) +(let (?e247 (ite $e93 ?e234 ?e225)) +(let (?e248 (ite $e67 ?e182 ?e212)) +(let (?e249 (ite $e111 ?e137 ?e151)) +(let (?e250 (ite $e120 ?e34 ?e233)) +(let (?e251 (ite $e44 ?e19 ?e247)) +(let (?e252 (ite $e92 ?e154 ?e169)) +(let (?e253 (ite $e39 ?e225 ?e225)) +(let (?e254 (ite $e58 ?e19 ?e12)) +(let (?e255 (ite $e41 ?e138 ?e177)) +(let (?e256 (ite $e130 ?e157 ?e12)) +(let (?e257 (ite $e51 v1 ?e240)) +(let (?e258 (ite $e96 ?e171 ?e30)) +(let (?e259 (ite $e74 ?e210 ?e27)) +(let (?e260 (ite $e42 ?e253 ?e154)) +(let (?e261 (ite $e117 ?e161 ?e149)) +(let (?e262 (ite $e109 ?e147 ?e147)) +(let (?e263 (ite $e43 ?e171 ?e251)) +(let (?e264 (ite $e119 ?e260 ?e217)) +(let (?e265 (ite $e122 ?e227 ?e168)) +(let (?e266 (ite $e83 ?e249 ?e9)) +(let (?e267 (ite $e134 ?e246 ?e150)) +(let (?e268 (ite $e112 ?e206 ?e242)) +(let (?e269 (ite $e71 ?e5 ?e150)) +(let (?e270 (ite $e107 ?e152 ?e214)) +(let (?e271 (ite $e114 ?e31 ?e209)) +(let (?e272 (ite $e44 ?e177 ?e188)) +(let (?e273 (ite $e101 ?e235 ?e248)) +(let (?e274 (ite $e52 ?e141 ?e249)) +(let (?e275 (ite $e119 ?e195 ?e205)) +(let (?e276 (ite $e109 ?e256 ?e198)) +(let (?e277 (ite $e47 ?e202 ?e11)) +(let (?e278 (ite $e100 ?e249 ?e19)) +(let (?e279 (ite $e131 ?e20 ?e180)) +(let (?e280 (ite $e95 ?e168 ?e194)) +(flet ($e281 (<= ?e149 ?e271)) +(flet ($e282 (> ?e25 ?e277)) +(flet ($e283 (<= ?e147 ?e231)) +(flet ($e284 (distinct ?e275 ?e148)) +(flet ($e285 (< ?e276 ?e172)) +(flet ($e286 (> ?e227 ?e243)) +(flet ($e287 (>= ?e275 ?e165)) +(flet ($e288 (<= ?e242 ?e158)) +(flet ($e289 (<= ?e238 ?e150)) +(flet ($e290 (distinct ?e138 ?e137)) +(flet ($e291 (= ?e213 ?e17)) +(flet ($e292 (< ?e31 ?e195)) +(flet ($e293 (>= ?e173 ?e137)) +(flet ($e294 (<= ?e141 ?e197)) +(flet ($e295 (<= ?e226 ?e16)) +(flet ($e296 (> ?e227 ?e201)) +(flet ($e297 (<= ?e270 ?e227)) +(flet ($e298 (>= ?e219 ?e151)) +(flet ($e299 (distinct ?e270 ?e179)) +(flet ($e300 (= ?e262 ?e151)) +(flet ($e301 (distinct ?e30 ?e261)) +(flet ($e302 (< ?e37 ?e214)) +(flet ($e303 (distinct ?e189 ?e147)) +(flet ($e304 (= ?e189 ?e255)) +(flet ($e305 (= ?e37 ?e254)) +(flet ($e306 (>= ?e226 ?e5)) +(flet ($e307 (> ?e276 ?e250)) +(flet ($e308 (< ?e214 ?e224)) +(flet ($e309 (< ?e29 ?e212)) +(flet ($e310 (= ?e217 ?e230)) +(flet ($e311 (< ?e269 ?e184)) +(flet ($e312 (<= ?e163 ?e154)) +(flet ($e313 (>= ?e247 ?e203)) +(flet ($e314 (= ?e198 ?e253)) +(flet ($e315 (< ?e248 ?e210)) +(flet ($e316 (>= ?e237 ?e203)) +(flet ($e317 (<= ?e179 ?e24)) +(flet ($e318 (distinct ?e249 ?e26)) +(flet ($e319 (<= ?e262 ?e261)) +(flet ($e320 (<= ?e203 ?e253)) +(flet ($e321 (> ?e158 ?e141)) +(flet ($e322 (= ?e220 ?e185)) +(flet ($e323 (> v1 ?e266)) +(flet ($e324 (> ?e140 ?e155)) +(flet ($e325 (= ?e14 ?e146)) +(flet ($e326 (distinct ?e183 ?e206)) +(flet ($e327 (= ?e170 ?e201)) +(flet ($e328 (< ?e256 ?e269)) +(flet ($e329 (< ?e197 ?e27)) +(flet ($e330 (= ?e137 ?e163)) +(flet ($e331 (= ?e154 ?e27)) +(flet ($e332 (<= ?e254 ?e212)) +(flet ($e333 (= ?e193 ?e29)) +(flet ($e334 (> ?e278 ?e18)) +(flet ($e335 (>= ?e178 ?e22)) +(flet ($e336 (>= ?e155 ?e203)) +(flet ($e337 (>= ?e250 ?e278)) +(flet ($e338 (= ?e201 ?e236)) +(flet ($e339 (<= ?e210 ?e172)) +(flet ($e340 (= ?e27 ?e31)) +(flet ($e341 (<= ?e267 ?e250)) +(flet ($e342 (>= ?e155 ?e158)) +(flet ($e343 (distinct ?e181 ?e190)) +(flet ($e344 (<= ?e218 ?e222)) +(flet ($e345 (< ?e37 ?e266)) +(flet ($e346 (<= ?e214 ?e164)) +(flet ($e347 (> ?e269 ?e11)) +(flet ($e348 (>= ?e174 ?e199)) +(flet ($e349 (< ?e33 ?e235)) +(flet ($e350 (>= ?e207 ?e269)) +(flet ($e351 (< ?e204 ?e147)) +(flet ($e352 (> ?e170 ?e226)) +(flet ($e353 (> ?e7 ?e222)) +(flet ($e354 (> ?e174 ?e162)) +(flet ($e355 (<= v1 ?e37)) +(flet ($e356 (<= ?e4 ?e210)) +(flet ($e357 (= ?e217 ?e150)) +(flet ($e358 (> ?e252 ?e177)) +(flet ($e359 (<= ?e242 ?e190)) +(flet ($e360 (<= ?e278 ?e32)) +(flet ($e361 (> ?e231 ?e248)) +(flet ($e362 (= ?e189 ?e249)) +(flet ($e363 (>= ?e212 ?e247)) +(flet ($e364 (> ?e30 ?e17)) +(flet ($e365 (distinct ?e279 ?e256)) +(flet ($e366 (> ?e37 ?e249)) +(flet ($e367 (<= ?e27 ?e170)) +(flet ($e368 (>= ?e276 ?e206)) +(flet ($e369 (= ?e197 ?e148)) +(flet ($e370 (= ?e241 ?e265)) +(flet ($e371 (distinct ?e191 ?e209)) +(flet ($e372 (<= ?e235 ?e240)) +(flet ($e373 (<= ?e203 ?e244)) +(flet ($e374 (< ?e27 ?e31)) +(flet ($e375 (>= ?e151 ?e174)) +(flet ($e376 (= ?e13 ?e234)) +(flet ($e377 (distinct ?e203 ?e142)) +(flet ($e378 (<= ?e201 ?e38)) +(flet ($e379 (distinct ?e151 ?e173)) +(flet ($e380 (= ?e202 ?e241)) +(flet ($e381 (= ?e233 ?e196)) +(flet ($e382 (= ?e190 ?e22)) +(flet ($e383 (> ?e203 ?e253)) +(flet ($e384 (> ?e204 ?e179)) +(flet ($e385 (distinct ?e37 ?e4)) +(flet ($e386 (distinct ?e164 ?e224)) +(flet ($e387 (<= ?e217 ?e227)) +(flet ($e388 (> ?e159 ?e13)) +(flet ($e389 (>= ?e258 ?e147)) +(flet ($e390 (>= ?e186 ?e207)) +(flet ($e391 (= ?e193 ?e200)) +(flet ($e392 (<= ?e239 ?e207)) +(flet ($e393 (< ?e224 ?e226)) +(flet ($e394 (< ?e260 ?e207)) +(flet ($e395 (> ?e227 ?e266)) +(flet ($e396 (= ?e247 ?e32)) +(flet ($e397 (< ?e206 ?e248)) +(flet ($e398 (>= ?e38 ?e162)) +(flet ($e399 (< ?e214 ?e201)) +(flet ($e400 (<= ?e249 ?e251)) +(flet ($e401 (<= ?e184 ?e20)) +(flet ($e402 (< ?e9 ?e205)) +(flet ($e403 (< ?e32 ?e191)) +(flet ($e404 (<= ?e38 ?e148)) +(flet ($e405 (<= ?e34 ?e166)) +(flet ($e406 (< ?e35 ?e165)) +(flet ($e407 (>= ?e241 ?e216)) +(flet ($e408 (distinct ?e266 ?e250)) +(flet ($e409 (> ?e245 ?e269)) +(flet ($e410 (= ?e144 ?e163)) +(flet ($e411 (< ?e188 ?e170)) +(flet ($e412 (<= ?e26 ?e170)) +(flet ($e413 (<= ?e268 ?e142)) +(flet ($e414 (> ?e188 ?e149)) +(flet ($e415 (< ?e165 ?e228)) +(flet ($e416 (<= ?e13 ?e254)) +(flet ($e417 (= ?e195 ?e206)) +(flet ($e418 (<= ?e11 ?e156)) +(flet ($e419 (<= ?e202 v0)) +(flet ($e420 (>= ?e256 ?e241)) +(flet ($e421 (>= ?e149 ?e139)) +(flet ($e422 (<= ?e191 ?e192)) +(flet ($e423 (> ?e254 ?e204)) +(flet ($e424 (<= ?e220 ?e185)) +(flet ($e425 (= ?e208 ?e258)) +(flet ($e426 (<= ?e27 ?e265)) +(flet ($e427 (distinct ?e264 ?e264)) +(flet ($e428 (distinct ?e31 ?e151)) +(flet ($e429 (< ?e155 ?e28)) +(flet ($e430 (<= ?e254 ?e158)) +(flet ($e431 (<= ?e174 ?e166)) +(flet ($e432 (>= ?e191 ?e249)) +(flet ($e433 (> ?e167 ?e201)) +(flet ($e434 (> ?e205 ?e237)) +(flet ($e435 (<= ?e180 ?e148)) +(flet ($e436 (distinct ?e208 ?e208)) +(flet ($e437 (<= ?e167 ?e15)) +(flet ($e438 (>= ?e149 ?e205)) +(flet ($e439 (>= ?e161 ?e139)) +(flet ($e440 (< ?e266 ?e18)) +(flet ($e441 (<= ?e269 ?e184)) +(flet ($e442 (<= ?e262 ?e195)) +(flet ($e443 (= ?e227 ?e19)) +(flet ($e444 (<= ?e166 ?e272)) +(flet ($e445 (< ?e245 ?e165)) +(flet ($e446 (distinct ?e243 ?e185)) +(flet ($e447 (= ?e18 ?e21)) +(flet ($e448 (< ?e271 ?e241)) +(flet ($e449 (>= ?e213 ?e217)) +(flet ($e450 (< ?e239 ?e184)) +(flet ($e451 (< ?e205 ?e244)) +(flet ($e452 (distinct ?e280 ?e157)) +(flet ($e453 (>= ?e29 ?e215)) +(flet ($e454 (= ?e193 ?e227)) +(flet ($e455 (> ?e149 ?e177)) +(flet ($e456 (>= ?e21 ?e139)) +(flet ($e457 (< ?e187 ?e181)) +(flet ($e458 (< ?e157 ?e228)) +(flet ($e459 (distinct ?e17 ?e210)) +(flet ($e460 (distinct ?e176 ?e186)) +(flet ($e461 (< ?e16 ?e24)) +(flet ($e462 (<= ?e267 ?e251)) +(flet ($e463 (> ?e225 ?e220)) +(flet ($e464 (distinct ?e198 ?e251)) +(flet ($e465 (<= ?e187 ?e173)) +(flet ($e466 (= ?e276 ?e278)) +(flet ($e467 (< ?e157 ?e29)) +(flet ($e468 (<= ?e18 ?e209)) +(flet ($e469 (>= ?e277 ?e142)) +(flet ($e470 (> ?e195 ?e176)) +(flet ($e471 (>= ?e263 ?e247)) +(flet ($e472 (>= ?e257 ?e144)) +(flet ($e473 (>= ?e247 ?e220)) +(flet ($e474 (> ?e213 ?e171)) +(flet ($e475 (< ?e14 ?e261)) +(flet ($e476 (>= ?e160 ?e25)) +(flet ($e477 (< ?e22 ?e200)) +(flet ($e478 (< ?e27 ?e159)) +(flet ($e479 (< ?e137 ?e251)) +(flet ($e480 (< ?e32 ?e147)) +(flet ($e481 (> ?e187 ?e173)) +(flet ($e482 (= ?e180 ?e147)) +(flet ($e483 (distinct ?e144 ?e191)) +(flet ($e484 (distinct ?e140 ?e164)) +(flet ($e485 (> ?e224 ?e243)) +(flet ($e486 (<= ?e137 ?e166)) +(flet ($e487 (< ?e207 ?e207)) +(flet ($e488 (= ?e242 ?e245)) +(flet ($e489 (<= ?e204 ?e256)) +(flet ($e490 (distinct ?e9 ?e262)) +(flet ($e491 (distinct ?e196 ?e14)) +(flet ($e492 (< ?e253 ?e165)) +(flet ($e493 (<= ?e31 ?e30)) +(flet ($e494 (>= ?e196 ?e266)) +(flet ($e495 (>= ?e147 ?e32)) +(flet ($e496 (distinct ?e148 ?e189)) +(flet ($e497 (> ?e169 ?e240)) +(flet ($e498 (< ?e193 ?e174)) +(flet ($e499 (= ?e276 ?e278)) +(flet ($e500 (< ?e199 ?e202)) +(flet ($e501 (distinct ?e5 ?e237)) +(flet ($e502 (< ?e204 ?e212)) +(flet ($e503 (> ?e176 ?e193)) +(flet ($e504 (>= ?e219 ?e184)) +(flet ($e505 (< ?e203 ?e192)) +(flet ($e506 (> ?e231 ?e6)) +(flet ($e507 (>= ?e221 ?e185)) +(flet ($e508 (distinct ?e4 ?e188)) +(flet ($e509 (< ?e245 ?e241)) +(flet ($e510 (distinct ?e232 ?e257)) +(flet ($e511 (> ?e230 ?e223)) +(flet ($e512 (< ?e4 ?e27)) +(flet ($e513 (distinct ?e256 ?e225)) +(flet ($e514 (distinct ?e213 ?e19)) +(flet ($e515 (< ?e190 ?e190)) +(flet ($e516 (>= ?e150 ?e255)) +(flet ($e517 (<= ?e9 ?e274)) +(flet ($e518 (> ?e191 ?e231)) +(flet ($e519 (>= ?e162 ?e173)) +(flet ($e520 (<= ?e181 ?e138)) +(flet ($e521 (< ?e37 ?e155)) +(flet ($e522 (distinct ?e176 ?e249)) +(flet ($e523 (<= ?e196 ?e170)) +(flet ($e524 (< ?e178 ?e34)) +(flet ($e525 (> ?e26 ?e186)) +(flet ($e526 (= ?e20 ?e278)) +(flet ($e527 (< ?e173 ?e223)) +(flet ($e528 (<= ?e212 ?e182)) +(flet ($e529 (= ?e147 ?e7)) +(flet ($e530 (= ?e192 ?e174)) +(flet ($e531 (> ?e140 ?e243)) +(flet ($e532 (< v0 ?e171)) +(flet ($e533 (distinct ?e239 ?e19)) +(flet ($e534 (distinct ?e217 ?e229)) +(flet ($e535 (= ?e209 ?e175)) +(flet ($e536 (<= ?e170 ?e222)) +(flet ($e537 (<= ?e186 ?e233)) +(flet ($e538 (<= ?e225 ?e244)) +(flet ($e539 (<= ?e226 ?e179)) +(flet ($e540 (<= ?e273 ?e30)) +(flet ($e541 (> ?e150 ?e146)) +(flet ($e542 (distinct ?e267 ?e251)) +(flet ($e543 (<= ?e210 ?e14)) +(flet ($e544 (>= ?e230 ?e262)) +(flet ($e545 (<= ?e10 ?e215)) +(flet ($e546 (distinct ?e182 ?e174)) +(flet ($e547 (> ?e271 ?e250)) +(flet ($e548 (<= ?e243 ?e164)) +(flet ($e549 (= ?e246 ?e201)) +(flet ($e550 (< ?e34 ?e261)) +(flet ($e551 (= ?e175 ?e180)) +(flet ($e552 (= ?e139 ?e8)) +(flet ($e553 (> ?e248 ?e164)) +(flet ($e554 (<= ?e197 ?e10)) +(flet ($e555 (> ?e231 ?e159)) +(flet ($e556 (> ?e204 ?e263)) +(flet ($e557 (= ?e149 ?e188)) +(flet ($e558 (<= ?e271 ?e14)) +(flet ($e559 (distinct ?e148 ?e241)) +(flet ($e560 (> ?e156 ?e255)) +(flet ($e561 (< ?e185 ?e5)) +(flet ($e562 (<= ?e140 ?e213)) +(flet ($e563 (>= ?e214 ?e203)) +(flet ($e564 (< ?e278 ?e30)) +(flet ($e565 (>= ?e182 ?e192)) +(flet ($e566 (distinct ?e30 ?e217)) +(flet ($e567 (distinct ?e277 ?e250)) +(flet ($e568 (= ?e205 ?e211)) +(flet ($e569 (= ?e252 ?e210)) +(flet ($e570 (<= ?e261 v0)) +(flet ($e571 (< ?e223 ?e170)) +(flet ($e572 (>= ?e264 ?e196)) +(flet ($e573 (= ?e217 ?e259)) +(flet ($e574 (< ?e207 ?e30)) +(flet ($e575 (<= ?e212 ?e163)) +(flet ($e576 (= ?e31 ?e243)) +(flet ($e577 (distinct ?e201 ?e230)) +(flet ($e578 (distinct ?e161 ?e141)) +(flet ($e579 (<= ?e161 ?e154)) +(flet ($e580 (< ?e11 ?e201)) +(flet ($e581 (< ?e154 ?e213)) +(flet ($e582 (> ?e239 ?e198)) +(flet ($e583 (< ?e162 ?e14)) +(flet ($e584 (< ?e248 ?e13)) +(flet ($e585 (distinct ?e148 ?e263)) +(flet ($e586 (>= ?e200 ?e203)) +(flet ($e587 (> ?e27 ?e209)) +(flet ($e588 (< ?e191 ?e4)) +(flet ($e589 (>= ?e259 ?e180)) +(flet ($e590 (= ?e148 ?e27)) +(flet ($e591 (< ?e21 ?e152)) +(flet ($e592 (distinct ?e167 ?e18)) +(flet ($e593 (distinct ?e35 ?e12)) +(flet ($e594 (= ?e15 ?e24)) +(flet ($e595 (<= ?e37 ?e245)) +(flet ($e596 (distinct ?e218 ?e157)) +(flet ($e597 (<= ?e193 ?e10)) +(flet ($e598 (>= ?e227 ?e28)) +(flet ($e599 (= ?e238 ?e254)) +(flet ($e600 (< ?e201 ?e27)) +(flet ($e601 (> ?e28 ?e209)) +(flet ($e602 (= ?e177 ?e271)) +(flet ($e603 (< ?e243 ?e222)) +(flet ($e604 (>= ?e275 ?e215)) +(flet ($e605 (distinct ?e273 ?e29)) +(flet ($e606 (>= ?e153 ?e211)) +(flet ($e607 (<= ?e271 ?e215)) +(flet ($e608 (<= ?e148 ?e21)) +(flet ($e609 (distinct ?e13 ?e154)) +(flet ($e610 (<= ?e245 ?e242)) +(flet ($e611 (<= ?e141 ?e236)) +(flet ($e612 (>= ?e7 ?e225)) +(flet ($e613 (< ?e234 ?e37)) +(flet ($e614 (>= ?e11 ?e156)) +(flet ($e615 (= ?e280 ?e229)) +(flet ($e616 (> ?e200 ?e166)) +(flet ($e617 (<= ?e24 ?e137)) +(flet ($e618 (<= ?e197 ?e160)) +(flet ($e619 (<= ?e195 ?e139)) +(flet ($e620 (> ?e150 ?e17)) +(flet ($e621 (> ?e216 ?e173)) +(flet ($e622 (= ?e36 ?e16)) +(flet ($e623 (> ?e18 ?e193)) +(flet ($e624 (< ?e35 ?e150)) +(flet ($e625 (> ?e32 ?e201)) +(flet ($e626 (< ?e187 ?e222)) +(flet ($e627 (< ?e243 ?e262)) +(flet ($e628 (distinct ?e238 ?e12)) +(flet ($e629 (< ?e260 ?e238)) +(flet ($e630 (>= ?e232 ?e29)) +(flet ($e631 (distinct ?e264 ?e179)) +(flet ($e632 (> ?e187 ?e164)) +(flet ($e633 (< ?e148 ?e141)) +(flet ($e634 (= ?e150 ?e28)) +(flet ($e635 (>= ?e278 ?e157)) +(flet ($e636 (<= ?e144 ?e209)) +(flet ($e637 (distinct ?e168 ?e144)) +(flet ($e638 (>= ?e253 ?e153)) +(flet ($e639 (>= ?e22 ?e275)) +(flet ($e640 (= ?e205 ?e140)) +(flet ($e641 (= ?e143 ?e150)) +(flet ($e642 (>= ?e185 ?e157)) +(flet ($e643 (<= ?e261 ?e141)) +(flet ($e644 (distinct ?e279 ?e221)) +(flet ($e645 (< ?e154 ?e246)) +(flet ($e646 (>= ?e267 ?e234)) +(flet ($e647 (< ?e231 ?e195)) +(flet ($e648 (> ?e8 ?e145)) +(flet ($e649 (>= ?e214 ?e222)) +(flet ($e650 (distinct ?e216 ?e162)) +(flet ($e651 (= ?e279 ?e252)) +(flet ($e652 (> ?e254 ?e263)) +(flet ($e653 (= ?e172 ?e257)) +(flet ($e654 (distinct ?e194 ?e27)) +(flet ($e655 (> ?e200 ?e237)) +(flet ($e656 (> ?e5 ?e34)) +(flet ($e657 (> ?e21 ?e233)) +(flet ($e658 (<= ?e163 ?e21)) +(flet ($e659 (>= ?e141 ?e257)) +(flet ($e660 (< ?e24 ?e186)) +(flet ($e661 (distinct ?e6 ?e23)) +(flet ($e662 (xor $e535 $e482)) +(flet ($e663 (if_then_else $e122 $e110 $e605)) +(flet ($e664 (xor $e613 $e305)) +(flet ($e665 (or $e583 $e331)) +(flet ($e666 (or $e528 $e483)) +(flet ($e667 (implies $e397 $e567)) +(flet ($e668 (iff $e309 $e563)) +(flet ($e669 (iff $e417 $e498)) +(flet ($e670 (implies $e73 $e416)) +(flet ($e671 (if_then_else $e670 $e299 $e127)) +(flet ($e672 (or $e443 $e437)) +(flet ($e673 (or $e415 $e367)) +(flet ($e674 (xor $e511 $e662)) +(flet ($e675 (implies $e519 $e647)) +(flet ($e676 (iff $e313 $e494)) +(flet ($e677 (iff $e472 $e648)) +(flet ($e678 (if_then_else $e91 $e533 $e481)) +(flet ($e679 (and $e426 $e492)) +(flet ($e680 (iff $e579 $e92)) +(flet ($e681 (and $e295 $e98)) +(flet ($e682 (and $e606 $e580)) +(flet ($e683 (xor $e70 $e655)) +(flet ($e684 (xor $e573 $e360)) +(flet ($e685 (xor $e94 $e462)) +(flet ($e686 (if_then_else $e304 $e107 $e373)) +(flet ($e687 (if_then_else $e40 $e377 $e636)) +(flet ($e688 (and $e644 $e490)) +(flet ($e689 (not $e476)) +(flet ($e690 (iff $e618 $e522)) +(flet ($e691 (or $e384 $e131)) +(flet ($e692 (implies $e355 $e64)) +(flet ($e693 (iff $e557 $e524)) +(flet ($e694 (and $e640 $e76)) +(flet ($e695 (implies $e600 $e677)) +(flet ($e696 (xor $e466 $e599)) +(flet ($e697 (implies $e103 $e585)) +(flet ($e698 (and $e427 $e322)) +(flet ($e699 (or $e635 $e635)) +(flet ($e700 (or $e58 $e403)) +(flet ($e701 (or $e81 $e508)) +(flet ($e702 (and $e393 $e602)) +(flet ($e703 (or $e702 $e653)) +(flet ($e704 (iff $e671 $e111)) +(flet ($e705 (implies $e491 $e641)) +(flet ($e706 (and $e66 $e394)) +(flet ($e707 (if_then_else $e97 $e514 $e500)) +(flet ($e708 (xor $e119 $e69)) +(flet ($e709 (implies $e338 $e532)) +(flet ($e710 (if_then_else $e592 $e521 $e609)) +(flet ($e711 (implies $e421 $e382)) +(flet ($e712 (if_then_else $e290 $e601 $e74)) +(flet ($e713 (xor $e630 $e400)) +(flet ($e714 (not $e633)) +(flet ($e715 (implies $e547 $e402)) +(flet ($e716 (xor $e682 $e666)) +(flet ($e717 (if_then_else $e631 $e559 $e368)) +(flet ($e718 (and $e429 $e621)) +(flet ($e719 (xor $e344 $e345)) +(flet ($e720 (implies $e708 $e652)) +(flet ($e721 (implies $e625 $e525)) +(flet ($e722 (implies $e61 $e48)) +(flet ($e723 (implies $e63 $e375)) +(flet ($e724 (if_then_else $e538 $e669 $e475)) +(flet ($e725 (or $e380 $e319)) +(flet ($e726 (not $e350)) +(flet ($e727 (and $e710 $e485)) +(flet ($e728 (and $e55 $e546)) +(flet ($e729 (if_then_else $e622 $e52 $e288)) +(flet ($e730 (if_then_else $e450 $e463 $e712)) +(flet ($e731 (or $e335 $e575)) +(flet ($e732 (xor $e315 $e723)) +(flet ($e733 (iff $e703 $e449)) +(flet ($e734 (iff $e470 $e370)) +(flet ($e735 (and $e428 $e300)) +(flet ($e736 (xor $e617 $e100)) +(flet ($e737 (not $e79)) +(flet ($e738 (if_then_else $e49 $e623 $e728)) +(flet ($e739 (iff $e627 $e726)) +(flet ($e740 (if_then_else $e354 $e109 $e739)) +(flet ($e741 (not $e624)) +(flet ($e742 (not $e297)) +(flet ($e743 (xor $e326 $e693)) +(flet ($e744 (not $e283)) +(flet ($e745 (and $e517 $e332)) +(flet ($e746 (iff $e383 $e527)) +(flet ($e747 (not $e542)) +(flet ($e748 (and $e534 $e104)) +(flet ($e749 (xor $e503 $e445)) +(flet ($e750 (not $e530)) +(flet ($e751 (iff $e607 $e414)) +(flet ($e752 (xor $e308 $e420)) +(flet ($e753 (or $e128 $e749)) +(flet ($e754 (not $e748)) +(flet ($e755 (iff $e401 $e510)) +(flet ($e756 (and $e461 $e320)) +(flet ($e757 (iff $e289 $e432)) +(flet ($e758 (xor $e425 $e597)) +(flet ($e759 (iff $e419 $e358)) +(flet ($e760 (and $e311 $e136)) +(flet ($e761 (or $e405 $e336)) +(flet ($e762 (not $e610)) +(flet ($e763 (iff $e643 $e745)) +(flet ($e764 (if_then_else $e406 $e378 $e477)) +(flet ($e765 (xor $e385 $e339)) +(flet ($e766 (and $e608 $e337)) +(flet ($e767 (implies $e112 $e134)) +(flet ($e768 (iff $e619 $e711)) +(flet ($e769 (iff $e764 $e505)) +(flet ($e770 (xor $e353 $e560)) +(flet ($e771 (if_then_else $e471 $e691 $e341)) +(flet ($e772 (implies $e312 $e330)) +(flet ($e773 (iff $e321 $e347)) +(flet ($e774 (implies $e386 $e284)) +(flet ($e775 (or $e77 $e679)) +(flet ($e776 (implies $e760 $e446)) +(flet ($e777 (or $e550 $e616)) +(flet ($e778 (xor $e578 $e581)) +(flet ($e779 (implies $e99 $e453)) +(flet ($e780 (xor $e348 $e696)) +(flet ($e781 (iff $e56 $e80)) +(flet ($e782 (iff $e86 $e499)) +(flet ($e783 (iff $e504 $e504)) +(flet ($e784 (iff $e755 $e755)) +(flet ($e785 (if_then_else $e771 $e294 $e699)) +(flet ($e786 (iff $e441 $e282)) +(flet ($e787 (not $e493)) +(flet ($e788 (xor $e132 $e554)) +(flet ($e789 (and $e440 $e661)) +(flet ($e790 (if_then_else $e649 $e412 $e706)) +(flet ($e791 (not $e431)) +(flet ($e792 (if_then_else $e660 $e464 $e84)) +(flet ($e793 (if_then_else $e572 $e133 $e513)) +(flet ($e794 (and $e790 $e590)) +(flet ($e795 (implies $e460 $e707)) +(flet ($e796 (if_then_else $e478 $e775 $e303)) +(flet ($e797 (xor $e361 $e317)) +(flet ($e798 (iff $e410 $e487)) +(flet ($e799 (or $e125 $e526)) +(flet ($e800 (and $e314 $e584)) +(flet ($e801 (if_then_else $e740 $e374 $e604)) +(flet ($e802 (implies $e657 $e362)) +(flet ($e803 (xor $e752 $e701)) +(flet ($e804 (implies $e737 $e444)) +(flet ($e805 (iff $e593 $e328)) +(flet ($e806 (or $e88 $e596)) +(flet ($e807 (and $e665 $e113)) +(flet ($e808 (implies $e455 $e743)) +(flet ($e809 (iff $e413 $e589)) +(flet ($e810 (xor $e796 $e409)) +(flet ($e811 (if_then_else $e41 $e458 $e95)) +(flet ($e812 (and $e85 $e770)) +(flet ($e813 (or $e761 $e759)) +(flet ($e814 (implies $e645 $e800)) +(flet ($e815 (iff $e484 $e496)) +(flet ($e816 (and $e509 $e459)) +(flet ($e817 (iff $e587 $e451)) +(flet ($e818 (xor $e286 $e766)) +(flet ($e819 (and $e72 $e468)) +(flet ($e820 (if_then_else $e799 $e574 $e518)) +(flet ($e821 (xor $e78 $e747)) +(flet ($e822 (iff $e556 $e83)) +(flet ($e823 (xor $e821 $e686)) +(flet ($e824 (or $e454 $e105)) +(flet ($e825 (or $e730 $e60)) +(flet ($e826 (implies $e555 $e722)) +(flet ($e827 (xor $e804 $e285)) +(flet ($e828 (if_then_else $e827 $e501 $e817)) +(flet ($e829 (xor $e714 $e287)) +(flet ($e830 (implies $e791 $e719)) +(flet ($e831 (not $e552)) +(flet ($e832 (xor $e758 $e126)) +(flet ($e833 (if_then_else $e480 $e135 $e831)) +(flet ($e834 (not $e340)) +(flet ($e835 (and $e772 $e489)) +(flet ($e836 (implies $e325 $e296)) +(flet ($e837 (iff $e334 $e474)) +(flet ($e838 (xor $e545 $e598)) +(flet ($e839 (and $e529 $e43)) +(flet ($e840 (if_then_else $e62 $e632 $e318)) +(flet ($e841 (not $e45)) +(flet ($e842 (xor $e681 $e399)) +(flet ($e843 (and $e841 $e434)) +(flet ($e844 (or $e751 $e473)) +(flet ($e845 (not $e675)) +(flet ($e846 (iff $e811 $e828)) +(flet ($e847 (iff $e833 $e698)) +(flet ($e848 (iff $e736 $e548)) +(flet ($e849 (if_then_else $e773 $e614 $e124)) +(flet ($e850 (or $e65 $e808)) +(flet ($e851 (not $e577)) +(flet ($e852 (not $e561)) +(flet ($e853 (xor $e820 $e685)) +(flet ($e854 (if_then_else $e465 $e615 $e418)) +(flet ($e855 (if_then_else $e502 $e720 $e502)) +(flet ($e856 (if_then_else $e678 $e830 $e549)) +(flet ($e857 (and $e807 $e333)) +(flet ($e858 (if_then_else $e520 $e544 $e568)) +(flet ($e859 (if_then_else $e68 $e120 $e683)) +(flet ($e860 (if_then_else $e650 $e89 $e302)) +(flet ($e861 (implies $e694 $e753)) +(flet ($e862 (implies $e852 $e364)) +(flet ($e863 (and $e688 $e789)) +(flet ($e864 (iff $e849 $e778)) +(flet ($e865 (not $e784)) +(flet ($e866 (iff $e734 $e674)) +(flet ($e867 (not $e310)) +(flet ($e868 (or $e369 $e690)) +(flet ($e869 (not $e781)) +(flet ($e870 (or $e329 $e727)) +(flet ($e871 (implies $e379 $e642)) +(flet ($e872 (iff $e697 $e298)) +(flet ($e873 (if_then_else $e672 $e356 $e537)) +(flet ($e874 (if_then_else $e780 $e447 $e651)) +(flet ($e875 (iff $e343 $e634)) +(flet ($e876 (xor $e357 $e123)) +(flet ($e877 (not $e301)) +(flet ($e878 (iff $e87 $e591)) +(flet ($e879 (implies $e576 $e507)) +(flet ($e880 (implies $e855 $e130)) +(flet ($e881 (iff $e435 $e858)) +(flet ($e882 (not $e724)) +(flet ($e883 (implies $e565 $e704)) +(flet ($e884 (xor $e93 $e801)) +(flet ($e885 (xor $e809 $e856)) +(flet ($e886 (if_then_else $e531 $e850 $e664)) +(flet ($e887 (implies $e543 $e59)) +(flet ($e888 (iff $e869 $e436)) +(flet ($e889 (or $e558 $e293)) +(flet ($e890 (not $e844)) +(flet ($e891 (and $e388 $e536)) +(flet ($e892 (or $e351 $e806)) +(flet ($e893 (not $e765)) +(flet ($e894 (xor $e395 $e71)) +(flet ($e895 (not $e783)) +(flet ($e896 (or $e129 $e731)) +(flet ($e897 (or $e861 $e430)) +(flet ($e898 (and $e848 $e121)) +(flet ($e899 (xor $e667 $e540)) +(flet ($e900 (xor $e407 $e342)) +(flet ($e901 (if_then_else $e788 $e656 $e654)) +(flet ($e902 (xor $e117 $e716)) +(flet ($e903 (iff $e44 $e352)) +(flet ($e904 (or $e404 $e769)) +(flet ($e905 (if_then_else $e626 $e116 $e569)) +(flet ($e906 (and $e879 $e822)) +(flet ($e907 (if_then_else $e469 $e564 $e768)) +(flet ($e908 (and $e819 $e570)) +(flet ($e909 (if_then_else $e815 $e840 $e324)) +(flet ($e910 (and $e777 $e735)) +(flet ($e911 (not $e767)) +(flet ($e912 (or $e911 $e887)) +(flet ($e913 (iff $e376 $e725)) +(flet ($e914 (implies $e896 $e700)) +(flet ($e915 (implies $e744 $e878)) +(flet ($e916 (xor $e825 $e390)) +(flet ($e917 (and $e659 $e715)) +(flet ($e918 (implies $e909 $e842)) +(flet ($e919 (iff $e442 $e67)) +(flet ($e920 (iff $e843 $e512)) +(flet ($e921 (implies $e515 $e762)) +(flet ($e922 (iff $e779 $e506)) +(flet ($e923 (xor $e291 $e687)) +(flet ($e924 (implies $e611 $e327)) +(flet ($e925 (or $e898 $e757)) +(flet ($e926 (implies $e366 $e882)) +(flet ($e927 (if_then_else $e884 $e883 $e588)) +(flet ($e928 (if_then_else $e857 $e786 $e307)) +(flet ($e929 (or $e673 $e323)) +(flet ($e930 (implies $e422 $e912)) +(flet ($e931 (and $e586 $e776)) +(flet ($e932 (implies $e346 $e497)) +(flet ($e933 (xor $e516 $e495)) +(flet ($e934 (xor $e90 $e851)) +(flet ($e935 (xor $e391 $e733)) +(flet ($e936 (or $e281 $e836)) +(flet ($e937 (not $e899)) +(flet ($e938 (or $e82 $e467)) +(flet ($e939 (or $e894 $e867)) +(flet ($e940 (xor $e371 $e53)) +(flet ($e941 (implies $e924 $e709)) +(flet ($e942 (iff $e918 $e864)) +(flet ($e943 (not $e51)) +(flet ($e944 (not $e389)) +(flet ($e945 (and $e927 $e108)) +(flet ($e946 (xor $e96 $e892)) +(flet ($e947 (if_then_else $e306 $e39 $e363)) +(flet ($e948 (xor $e845 $e551)) +(flet ($e949 (if_then_else $e900 $e921 $e888)) +(flet ($e950 (implies $e865 $e928)) +(flet ($e951 (xor $e908 $e794)) +(flet ($e952 (iff $e539 $e793)) +(flet ($e953 (not $e922)) +(flet ($e954 (and $e891 $e562)) +(flet ($e955 (or $e689 $e742)) +(flet ($e956 (not $e746)) +(flet ($e957 (or $e398 $e832)) +(flet ($e958 (not $e646)) +(flet ($e959 (iff $e457 $e486)) +(flet ($e960 (or $e763 $e738)) +(flet ($e961 (or $e392 $e895)) +(flet ($e962 (or $e903 $e456)) +(flet ($e963 (if_then_else $e349 $e948 $e946)) +(flet ($e964 (implies $e873 $e316)) +(flet ($e965 (implies $e962 $e756)) +(flet ($e966 (and $e47 $e860)) +(flet ($e967 (or $e925 $e680)) +(flet ($e968 (implies $e424 $e46)) +(flet ($e969 (implies $e810 $e782)) +(flet ($e970 (or $e387 $e741)) +(flet ($e971 (not $e692)) +(flet ($e972 (implies $e705 $e805)) +(flet ($e973 (implies $e951 $e957)) +(flet ($e974 (and $e847 $e823)) +(flet ($e975 (not $e488)) +(flet ($e976 (and $e965 $e876)) +(flet ($e977 (iff $e816 $e787)) +(flet ($e978 (or $e938 $e658)) +(flet ($e979 (implies $e838 $e877)) +(flet ($e980 (iff $e663 $e875)) +(flet ($e981 (iff $e929 $e863)) +(flet ($e982 (if_then_else $e880 $e114 $e115)) +(flet ($e983 (and $e834 $e774)) +(flet ($e984 (if_then_else $e926 $e906 $e920)) +(flet ($e985 (if_then_else $e721 $e978 $e955)) +(flet ($e986 (not $e813)) +(flet ($e987 (xor $e853 $e885)) +(flet ($e988 (iff $e954 $e824)) +(flet ($e989 (iff $e713 $e594)) +(flet ($e990 (xor $e916 $e684)) +(flet ($e991 (if_then_else $e907 $e785 $e960)) +(flet ($e992 (and $e961 $e944)) +(flet ($e993 (and $e54 $e901)) +(flet ($e994 (xor $e932 $e886)) +(flet ($e995 (and $e902 $e479)) +(flet ($e996 (if_then_else $e976 $e949 $e846)) +(flet ($e997 (or $e812 $e859)) +(flet ($e998 (not $e966)) +(flet ($e999 (implies $e553 $e612)) +(flet ($e1000 (iff $e930 $e695)) +(flet ($e1001 (not $e939)) +(flet ($e1002 (xor $e50 $e1000)) +(flet ($e1003 (xor $e953 $e802)) +(flet ($e1004 (implies $e595 $e934)) +(flet ($e1005 (if_then_else $e975 $e981 $e359)) +(flet ($e1006 (if_then_else $e292 $e996 $e676)) +(flet ($e1007 (iff $e433 $e839)) +(flet ($e1008 (or $e1005 $e889)) +(flet ($e1009 (xor $e999 $e106)) +(flet ($e1010 (if_then_else $e1006 $e947 $e989)) +(flet ($e1011 (not $e1004)) +(flet ($e1012 (xor $e872 $e871)) +(flet ($e1013 (implies $e931 $e991)) +(flet ($e1014 (xor $e923 $e717)) +(flet ($e1015 (if_then_else $e890 $e984 $e438)) +(flet ($e1016 (and $e973 $e990)) +(flet ($e1017 (iff $e792 $e874)) +(flet ($e1018 (not $e732)) +(flet ($e1019 (or $e959 $e972)) +(flet ($e1020 (implies $e993 $e582)) +(flet ($e1021 (if_then_else $e987 $e950 $e910)) +(flet ($e1022 (implies $e963 $e980)) +(flet ($e1023 (and $e936 $e893)) +(flet ($e1024 (not $e854)) +(flet ($e1025 (if_then_else $e566 $e571 $e829)) +(flet ($e1026 (xor $e997 $e943)) +(flet ($e1027 (and $e408 $e933)) +(flet ($e1028 (implies $e803 $e423)) +(flet ($e1029 (and $e1013 $e970)) +(flet ($e1030 (iff $e118 $e937)) +(flet ($e1031 (iff $e814 $e995)) +(flet ($e1032 (or $e964 $e974)) +(flet ($e1033 (implies $e620 $e985)) +(flet ($e1034 (if_then_else $e915 $e75 $e983)) +(flet ($e1035 (iff $e866 $e603)) +(flet ($e1036 (xor $e1020 $e718)) +(flet ($e1037 (iff $e904 $e754)) +(flet ($e1038 (iff $e1026 $e396)) +(flet ($e1039 (implies $e729 $e1014)) +(flet ($e1040 (or $e982 $e1011)) +(flet ($e1041 (or $e971 $e637)) +(flet ($e1042 (xor $e1017 $e969)) +(flet ($e1043 (iff $e1029 $e979)) +(flet ($e1044 (or $e952 $e1035)) +(flet ($e1045 (xor $e541 $e1008)) +(flet ($e1046 (or $e1022 $e101)) +(flet ($e1047 (and $e1042 $e1012)) +(flet ($e1048 (or $e967 $e998)) +(flet ($e1049 (or $e826 $e1036)) +(flet ($e1050 (not $e365)) +(flet ($e1051 (or $e1050 $e1027)) +(flet ($e1052 (and $e1025 $e942)) +(flet ($e1053 (or $e638 $e411)) +(flet ($e1054 (iff $e1040 $e881)) +(flet ($e1055 (or $e1023 $e1001)) +(flet ($e1056 (not $e941)) +(flet ($e1057 (iff $e968 $e668)) +(flet ($e1058 (and $e1015 $e1007)) +(flet ($e1059 (if_then_else $e1019 $e102 $e919)) +(flet ($e1060 (implies $e994 $e1038)) +(flet ($e1061 (not $e992)) +(flet ($e1062 (not $e977)) +(flet ($e1063 (not $e837)) +(flet ($e1064 (and $e1048 $e913)) +(flet ($e1065 (implies $e1055 $e1047)) +(flet ($e1066 (or $e1058 $e439)) +(flet ($e1067 (xor $e1037 $e897)) +(flet ($e1068 (and $e956 $e1064)) +(flet ($e1069 (if_then_else $e797 $e940 $e868)) +(flet ($e1070 (if_then_else $e639 $e1056 $e1002)) +(flet ($e1071 (or $e1052 $e945)) +(flet ($e1072 (iff $e1067 $e1043)) +(flet ($e1073 (implies $e1059 $e57)) +(flet ($e1074 (implies $e870 $e818)) +(flet ($e1075 (xor $e1041 $e1072)) +(flet ($e1076 (not $e935)) +(flet ($e1077 (implies $e1049 $e1070)) +(flet ($e1078 (and $e1039 $e1071)) +(flet ($e1079 (if_then_else $e862 $e1076 $e1075)) +(flet ($e1080 (implies $e1061 $e1054)) +(flet ($e1081 (xor $e905 $e986)) +(flet ($e1082 (and $e1030 $e1060)) +(flet ($e1083 (not $e1009)) +(flet ($e1084 (or $e1046 $e1016)) +(flet ($e1085 (or $e1084 $e1028)) +(flet ($e1086 (not $e750)) +(flet ($e1087 (xor $e42 $e1085)) +(flet ($e1088 (implies $e1063 $e628)) +(flet ($e1089 (and $e1068 $e448)) +(flet ($e1090 (xor $e1057 $e1089)) +(flet ($e1091 (if_then_else $e1033 $e1021 $e1034)) +(flet ($e1092 (not $e1045)) +(flet ($e1093 (iff $e1087 $e1044)) +(flet ($e1094 (or $e1086 $e1073)) +(flet ($e1095 (not $e1032)) +(flet ($e1096 (iff $e1091 $e1074)) +(flet ($e1097 (implies $e795 $e1096)) +(flet ($e1098 (and $e1079 $e1077)) +(flet ($e1099 (not $e1092)) +(flet ($e1100 (implies $e1018 $e1081)) +(flet ($e1101 (iff $e1066 $e1098)) +(flet ($e1102 (xor $e1024 $e1062)) +(flet ($e1103 (and $e1090 $e523)) +(flet ($e1104 (and $e988 $e372)) +(flet ($e1105 (if_then_else $e1065 $e1100 $e1083)) +(flet ($e1106 (xor $e629 $e1069)) +(flet ($e1107 (xor $e1010 $e1003)) +(flet ($e1108 (and $e381 $e1107)) +(flet ($e1109 (or $e452 $e835)) +(flet ($e1110 (if_then_else $e1104 $e1101 $e1102)) +(flet ($e1111 (if_then_else $e1095 $e1108 $e798)) +(flet ($e1112 (if_then_else $e914 $e1105 $e1093)) +(flet ($e1113 (or $e1080 $e1103)) +(flet ($e1114 (iff $e958 $e1051)) +(flet ($e1115 (and $e1078 $e1078)) +(flet ($e1116 (iff $e917 $e1031)) +(flet ($e1117 (implies $e1082 $e1112)) +(flet ($e1118 (iff $e1116 $e1109)) +(flet ($e1119 (xor $e1113 $e1099)) +(flet ($e1120 (xor $e1115 $e1094)) +(flet ($e1121 (xor $e1114 $e1097)) +(flet ($e1122 (implies $e1118 $e1117)) +(flet ($e1123 (xor $e1119 $e1119)) +(flet ($e1124 (implies $e1123 $e1123)) +(flet ($e1125 (xor $e1122 $e1122)) +(flet ($e1126 (if_then_else $e1120 $e1106 $e1125)) +(flet ($e1127 (iff $e1053 $e1088)) +(flet ($e1128 (implies $e1121 $e1124)) +(flet ($e1129 (or $e1111 $e1111)) +(flet ($e1130 (xor $e1127 $e1129)) +(flet ($e1131 (not $e1126)) +(flet ($e1132 (xor $e1110 $e1130)) +(flet ($e1133 (implies $e1128 $e1128)) +(flet ($e1134 (iff $e1133 $e1133)) +(flet ($e1135 (if_then_else $e1131 $e1131 $e1132)) +(flet ($e1136 (iff $e1134 $e1134)) +(flet ($e1137 (iff $e1135 $e1135)) +(flet ($e1138 (or $e1136 $e1136)) +(flet ($e1139 (and $e1138 $e1138)) +(flet ($e1140 (not $e1137)) +(flet ($e1141 (xor $e1140 $e1139)) +$e1141 +))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) + diff --git a/test/regress/regress1/bug148.smt b/test/regress/regress1/bug148.smt new file mode 100644 index 000000000..a07dc1bf0 --- /dev/null +++ b/test/regress/regress1/bug148.smt @@ -0,0 +1,147 @@ +(benchmark fuzzsmt +:logic QF_LRA +:status sat +:extrafuns ((v0 Real)) +:formula +(let (?e1 12) +(let (?e2 1) +(let (?e3 (~ v0)) +(let (?e4 (+ v0 v0)) +(let (?e5 (/ ?e1 ?e1)) +(let (?e6 (+ ?e4 ?e3)) +(let (?e7 (* ?e6 ?e1)) +(let (?e8 (- ?e3 ?e6)) +(let (?e9 (~ ?e8)) +(let (?e10 (+ ?e8 ?e5)) +(let (?e11 (/ ?e2 (~ ?e1))) +(flet ($e12 (> ?e7 ?e9)) +(flet ($e13 (< ?e4 ?e6)) +(flet ($e14 (distinct ?e9 ?e3)) +(flet ($e15 (<= ?e5 ?e8)) +(flet ($e16 (<= ?e8 ?e8)) +(flet ($e17 (distinct ?e5 v0)) +(flet ($e18 (>= ?e10 v0)) +(flet ($e19 (> ?e10 ?e7)) +(flet ($e20 (distinct ?e7 ?e9)) +(flet ($e21 (<= ?e6 ?e3)) +(flet ($e22 (<= ?e11 ?e4)) +(let (?e23 (ite $e12 ?e3 ?e4)) +(let (?e24 (ite $e19 ?e3 ?e11)) +(let (?e25 (ite $e20 v0 ?e5)) +(let (?e26 (ite $e18 ?e8 v0)) +(let (?e27 (ite $e19 ?e7 ?e8)) +(let (?e28 (ite $e20 ?e10 v0)) +(let (?e29 (ite $e13 ?e9 ?e3)) +(let (?e30 (ite $e20 ?e6 ?e6)) +(let (?e31 (ite $e20 ?e8 ?e24)) +(let (?e32 (ite $e21 ?e10 ?e4)) +(let (?e33 (ite $e18 ?e5 ?e10)) +(let (?e34 (ite $e16 ?e27 ?e5)) +(let (?e35 (ite $e13 ?e5 ?e26)) +(let (?e36 (ite $e19 ?e7 ?e6)) +(let (?e37 (ite $e15 ?e30 ?e31)) +(let (?e38 (ite $e17 ?e28 ?e37)) +(let (?e39 (ite $e22 ?e28 ?e9)) +(let (?e40 (ite $e14 ?e31 ?e28)) +(flet ($e41 (<= ?e4 ?e34)) +(flet ($e42 (<= ?e3 ?e3)) +(flet ($e43 (<= ?e31 ?e37)) +(flet ($e44 (distinct ?e28 ?e36)) +(flet ($e45 (>= v0 ?e26)) +(flet ($e46 (= ?e24 ?e30)) +(flet ($e47 (< ?e38 ?e32)) +(flet ($e48 (> ?e6 ?e29)) +(flet ($e49 (<= ?e25 ?e25)) +(flet ($e50 (> ?e30 ?e30)) +(flet ($e51 (> ?e11 v0)) +(flet ($e52 (<= ?e10 ?e31)) +(flet ($e53 (>= ?e28 ?e36)) +(flet ($e54 (>= v0 ?e33)) +(flet ($e55 (<= ?e33 ?e26)) +(flet ($e56 (distinct ?e37 ?e5)) +(flet ($e57 (distinct ?e10 ?e39)) +(flet ($e58 (> ?e8 ?e39)) +(flet ($e59 (< ?e24 ?e34)) +(flet ($e60 (<= v0 ?e25)) +(flet ($e61 (< ?e33 ?e31)) +(flet ($e62 (distinct ?e7 ?e25)) +(flet ($e63 (< ?e34 ?e4)) +(flet ($e64 (= ?e27 ?e37)) +(flet ($e65 (> ?e5 ?e30)) +(flet ($e66 (>= ?e11 ?e8)) +(flet ($e67 (> ?e6 ?e31)) +(flet ($e68 (<= ?e4 ?e3)) +(flet ($e69 (> ?e9 ?e37)) +(flet ($e70 (< ?e25 ?e6)) +(flet ($e71 (< ?e40 ?e34)) +(flet ($e72 (< ?e9 ?e29)) +(flet ($e73 (< ?e8 ?e35)) +(flet ($e74 (distinct ?e25 ?e5)) +(flet ($e75 (>= ?e8 ?e7)) +(flet ($e76 (<= ?e38 ?e37)) +(flet ($e77 (> ?e5 ?e39)) +(flet ($e78 (>= ?e34 v0)) +(flet ($e79 (>= ?e11 ?e5)) +(flet ($e80 (>= ?e40 ?e3)) +(flet ($e81 (= ?e23 ?e29)) +(flet ($e82 (implies $e52 $e15)) +(flet ($e83 (implies $e16 $e75)) +(flet ($e84 (or $e22 $e59)) +(flet ($e85 (or $e66 $e63)) +(flet ($e86 (xor $e78 $e43)) +(flet ($e87 (or $e73 $e71)) +(flet ($e88 (if_then_else $e18 $e80 $e55)) +(flet ($e89 (xor $e83 $e54)) +(flet ($e90 (if_then_else $e42 $e88 $e42)) +(flet ($e91 (not $e72)) +(flet ($e92 (or $e49 $e68)) +(flet ($e93 (and $e84 $e51)) +(flet ($e94 (iff $e70 $e19)) +(flet ($e95 (not $e93)) +(flet ($e96 (implies $e82 $e13)) +(flet ($e97 (iff $e69 $e64)) +(flet ($e98 (or $e87 $e76)) +(flet ($e99 (if_then_else $e94 $e20 $e96)) +(flet ($e100 (implies $e46 $e98)) +(flet ($e101 (or $e61 $e90)) +(flet ($e102 (or $e92 $e74)) +(flet ($e103 (implies $e97 $e62)) +(flet ($e104 (and $e89 $e77)) +(flet ($e105 (iff $e48 $e67)) +(flet ($e106 (if_then_else $e14 $e14 $e103)) +(flet ($e107 (xor $e58 $e102)) +(flet ($e108 (implies $e99 $e86)) +(flet ($e109 (or $e57 $e21)) +(flet ($e110 (implies $e12 $e108)) +(flet ($e111 (and $e17 $e101)) +(flet ($e112 (or $e107 $e81)) +(flet ($e113 (and $e44 $e44)) +(flet ($e114 (iff $e41 $e111)) +(flet ($e115 (implies $e60 $e56)) +(flet ($e116 (and $e79 $e115)) +(flet ($e117 (or $e114 $e53)) +(flet ($e118 (xor $e110 $e95)) +(flet ($e119 (xor $e104 $e105)) +(flet ($e120 (and $e117 $e85)) +(flet ($e121 (not $e50)) +(flet ($e122 (if_then_else $e120 $e47 $e119)) +(flet ($e123 (if_then_else $e112 $e100 $e91)) +(flet ($e124 (and $e45 $e121)) +(flet ($e125 (implies $e118 $e123)) +(flet ($e126 (xor $e106 $e113)) +(flet ($e127 (xor $e122 $e65)) +(flet ($e128 (implies $e127 $e116)) +(flet ($e129 (not $e125)) +(flet ($e130 (iff $e128 $e124)) +(flet ($e131 (and $e109 $e109)) +(flet ($e132 (and $e129 $e129)) +(flet ($e133 (xor $e131 $e130)) +(flet ($e134 (iff $e126 $e133)) +(flet ($e135 (implies $e132 $e132)) +(flet ($e136 (or $e134 $e134)) +(flet ($e137 (implies $e136 $e136)) +(flet ($e138 (or $e135 $e135)) +(flet ($e139 (implies $e138 $e137)) +$e139 +)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) + diff --git a/test/regress/regress1/fuzz_1.smt b/test/regress/regress1/fuzz_1.smt deleted file mode 100644 index 22cdd2307..000000000 --- a/test/regress/regress1/fuzz_1.smt +++ /dev/null @@ -1,32 +0,0 @@ -(benchmark fuzzsmt -:logic QF_LRA -:status unsat -:extrafuns ((v0 Real)) -:formula -(let (?e1 11) -(let (?e2 1) -(let (?e3 (* v0 ?e2)) -(let (?e4 (/ ?e1 (~ ?e1))) -(flet ($e5 (< v0 ?e4)) -(flet ($e6 (< ?e3 ?e3)) -(let (?e7 (ite $e5 ?e3 ?e4)) -(let (?e8 (ite $e5 ?e3 ?e3)) -(let (?e9 (ite $e6 v0 ?e4)) -(flet ($e10 (< ?e3 ?e7)) -(flet ($e11 (< v0 ?e9)) -(flet ($e12 (= ?e8 ?e4)) -(flet ($e13 (and $e10 $e6)) -(flet ($e14 (implies $e12 $e5)) -(flet ($e15 (iff $e14 $e14)) -(flet ($e16 (iff $e11 $e11)) -(flet ($e17 (iff $e16 $e16)) -(flet ($e18 (not $e13)) -(flet ($e19 (or $e18 $e18)) -(flet ($e20 (if_then_else $e15 $e15 $e17)) -(flet ($e21 (not $e20)) -(flet ($e22 (not $e19)) -(flet ($e23 (xor $e21 $e21)) -(flet ($e24 (xor $e23 $e22)) -$e24 -))))))))))))))))))))))))) - diff --git a/test/regress/regress3/Makefile.am b/test/regress/regress3/Makefile.am index 8d3ebb137..81fb8616e 100644 --- a/test/regress/regress3/Makefile.am +++ b/test/regress/regress3/Makefile.am @@ -5,7 +5,8 @@ TESTS_ENVIRONMENT = @srcdir@/../run_regression @top_builddir@/src/main/cvc4 # These are run for all build profiles. # If a test shouldn't be run in e.g. competition mode, # put it below in "TESTS +=" -TESTS = C880mul.miter.shuffled-as.sat03-348.smt \ +TESTS = bug143.smt \ + C880mul.miter.shuffled-as.sat03-348.smt \ comb2.shuffled-as.sat03-420.smt \ hole10.cvc \ instance_1151.smt diff --git a/test/regress/regress3/bug143.smt b/test/regress/regress3/bug143.smt new file mode 100644 index 000000000..21c588ad3 --- /dev/null +++ b/test/regress/regress3/bug143.smt @@ -0,0 +1,1427 @@ +(benchmark mip_pp08a +:source { +Relaxation of the Mixed-Integer Programming +optimization problem pp08a from the MIPLIB (http://miplib.zib.de/) +by Enric Rodriguez-Carbonell (erodri@lsi.upc.edu) +} + :status unsat + :category { industrial } + :difficulty { 2 } + :logic QF_LRA + + :extrafuns ((tmp75 Real)) + :extrafuns ((tmp74 Real)) + :extrafuns ((tmp73 Real)) + :extrafuns ((tmp72 Real)) + :extrafuns ((tmp71 Real)) + :extrafuns ((tmp70 Real)) + :extrafuns ((tmp69 Real)) + :extrafuns ((tmp68 Real)) + :extrafuns ((tmp67 Real)) + :extrafuns ((tmp66 Real)) + :extrafuns ((tmp65 Real)) + :extrafuns ((tmp64 Real)) + :extrafuns ((tmp63 Real)) + :extrafuns ((tmp62 Real)) + :extrafuns ((tmp61 Real)) + :extrafuns ((tmp60 Real)) + :extrafuns ((tmp59 Real)) + :extrafuns ((tmp58 Real)) + :extrafuns ((tmp57 Real)) + :extrafuns ((tmp56 Real)) + :extrafuns ((tmp55 Real)) + :extrafuns ((tmp54 Real)) + :extrafuns ((tmp53 Real)) + :extrafuns ((tmp52 Real)) + :extrafuns ((tmp51 Real)) + :extrafuns ((tmp50 Real)) + :extrafuns ((tmp49 Real)) + :extrafuns ((tmp48 Real)) + :extrafuns ((tmp47 Real)) + :extrafuns ((tmp46 Real)) + :extrafuns ((tmp45 Real)) + :extrafuns ((tmp44 Real)) + :extrafuns ((tmp43 Real)) + :extrafuns ((tmp42 Real)) + :extrafuns ((tmp41 Real)) + :extrafuns ((tmp40 Real)) + :extrafuns ((tmp39 Real)) + :extrafuns ((tmp38 Real)) + :extrafuns ((tmp37 Real)) + :extrafuns ((tmp36 Real)) + :extrafuns ((tmp35 Real)) + :extrafuns ((tmp34 Real)) + :extrafuns ((tmp33 Real)) + :extrafuns ((tmp32 Real)) + :extrafuns ((tmp31 Real)) + :extrafuns ((tmp30 Real)) + :extrafuns ((tmp29 Real)) + :extrafuns ((tmp28 Real)) + :extrafuns ((tmp27 Real)) + :extrafuns ((tmp26 Real)) + :extrafuns ((tmp25 Real)) + :extrafuns ((tmp24 Real)) + :extrafuns ((tmp23 Real)) + :extrafuns ((tmp22 Real)) + :extrafuns ((tmp21 Real)) + :extrafuns ((tmp20 Real)) + :extrafuns ((tmp19 Real)) + :extrafuns ((tmp18 Real)) + :extrafuns ((tmp17 Real)) + :extrafuns ((tmp16 Real)) + :extrafuns ((tmp15 Real)) + :extrafuns ((tmp14 Real)) + :extrafuns ((tmp13 Real)) + :extrafuns ((tmp12 Real)) + :extrafuns ((tmp11 Real)) + :extrafuns ((tmp10 Real)) + :extrafuns ((tmp9 Real)) + :extrafuns ((tmp8 Real)) + :extrafuns ((tmp7 Real)) + :extrafuns ((tmp6 Real)) + :extrafuns ((tmp5 Real)) + :extrafuns ((tmp4 Real)) + :extrafuns ((tmp3 Real)) + :extrafuns ((tmp2 Real)) + :extrafuns ((tmp1 Real)) + :extrafuns ((x113 Real)) + :extrafuns ((x114 Real)) + :extrafuns ((x115 Real)) + :extrafuns ((x116 Real)) + :extrafuns ((x117 Real)) + :extrafuns ((x118 Real)) + :extrafuns ((x119 Real)) + :extrafuns ((x120 Real)) + :extrafuns ((x121 Real)) + :extrafuns ((x122 Real)) + :extrafuns ((x123 Real)) + :extrafuns ((x124 Real)) + :extrafuns ((x125 Real)) + :extrafuns ((x126 Real)) + :extrafuns ((x127 Real)) + :extrafuns ((x128 Real)) + :extrafuns ((x129 Real)) + :extrafuns ((x130 Real)) + :extrafuns ((x131 Real)) + :extrafuns ((x132 Real)) + :extrafuns ((x133 Real)) + :extrafuns ((x134 Real)) + :extrafuns ((x135 Real)) + :extrafuns ((x136 Real)) + :extrafuns ((x137 Real)) + :extrafuns ((x138 Real)) + :extrafuns ((x139 Real)) + :extrafuns ((x140 Real)) + :extrafuns ((x141 Real)) + :extrafuns ((x142 Real)) + :extrafuns ((x143 Real)) + :extrafuns ((x144 Real)) + :extrafuns ((x145 Real)) + :extrafuns ((x146 Real)) + :extrafuns ((x147 Real)) + :extrafuns ((x148 Real)) + :extrafuns ((x149 Real)) + :extrafuns ((x150 Real)) + :extrafuns ((x151 Real)) + :extrafuns ((x152 Real)) + :extrafuns ((x153 Real)) + :extrafuns ((x154 Real)) + :extrafuns ((x155 Real)) + :extrafuns ((x156 Real)) + :extrafuns ((x157 Real)) + :extrafuns ((x158 Real)) + :extrafuns ((x159 Real)) + :extrafuns ((x160 Real)) + :extrafuns ((x161 Real)) + :extrafuns ((x162 Real)) + :extrafuns ((x163 Real)) + :extrafuns ((x164 Real)) + :extrafuns ((x165 Real)) + :extrafuns ((x166 Real)) + :extrafuns ((x167 Real)) + :extrafuns ((x168 Real)) + :extrafuns ((x169 Real)) + :extrafuns ((x170 Real)) + :extrafuns ((x171 Real)) + :extrafuns ((x172 Real)) + :extrafuns ((x173 Real)) + :extrafuns ((x174 Real)) + :extrafuns ((x175 Real)) + :extrafuns ((x176 Real)) + :extrafuns ((x112 Real)) + :extrafuns ((x111 Real)) + :extrafuns ((x110 Real)) + :extrafuns ((x109 Real)) + :extrafuns ((x108 Real)) + :extrafuns ((x107 Real)) + :extrafuns ((x106 Real)) + :extrafuns ((x105 Real)) + :extrafuns ((x104 Real)) + :extrafuns ((x103 Real)) + :extrafuns ((x102 Real)) + :extrafuns ((x101 Real)) + :extrafuns ((x100 Real)) + :extrafuns ((x99 Real)) + :extrafuns ((x98 Real)) + :extrafuns ((x97 Real)) + :extrafuns ((x96 Real)) + :extrafuns ((x95 Real)) + :extrafuns ((x94 Real)) + :extrafuns ((x93 Real)) + :extrafuns ((x92 Real)) + :extrafuns ((x91 Real)) + :extrafuns ((x90 Real)) + :extrafuns ((x89 Real)) + :extrafuns ((x88 Real)) + :extrafuns ((x87 Real)) + :extrafuns ((x86 Real)) + :extrafuns ((x85 Real)) + :extrafuns ((x84 Real)) + :extrafuns ((x83 Real)) + :extrafuns ((x82 Real)) + :extrafuns ((x81 Real)) + :extrafuns ((x80 Real)) + :extrafuns ((x79 Real)) + :extrafuns ((x78 Real)) + :extrafuns ((x77 Real)) + :extrafuns ((x76 Real)) + :extrafuns ((x75 Real)) + :extrafuns ((x74 Real)) + :extrafuns ((x73 Real)) + :extrafuns ((x72 Real)) + :extrafuns ((x71 Real)) + :extrafuns ((x70 Real)) + :extrafuns ((x69 Real)) + :extrafuns ((x68 Real)) + :extrafuns ((x67 Real)) + :extrafuns ((x66 Real)) + :extrafuns ((x65 Real)) + :extrafuns ((x64 Real)) + :extrafuns ((x63 Real)) + :extrafuns ((x62 Real)) + :extrafuns ((x61 Real)) + :extrafuns ((x60 Real)) + :extrafuns ((x59 Real)) + :extrafuns ((x58 Real)) + :extrafuns ((x57 Real)) + :extrafuns ((x56 Real)) + :extrafuns ((x55 Real)) + :extrafuns ((x54 Real)) + :extrafuns ((x53 Real)) + :extrafuns ((x52 Real)) + :extrafuns ((x51 Real)) + :extrafuns ((x50 Real)) + :extrafuns ((x49 Real)) + :extrafuns ((x48 Real)) + :extrafuns ((x47 Real)) + :extrafuns ((x46 Real)) + :extrafuns ((x45 Real)) + :extrafuns ((x44 Real)) + :extrafuns ((x43 Real)) + :extrafuns ((x42 Real)) + :extrafuns ((x41 Real)) + :extrafuns ((x40 Real)) + :extrafuns ((x39 Real)) + :extrafuns ((x38 Real)) + :extrafuns ((x37 Real)) + :extrafuns ((x36 Real)) + :extrafuns ((x35 Real)) + :extrafuns ((x34 Real)) + :extrafuns ((x33 Real)) + :extrafuns ((x32 Real)) + :extrafuns ((x31 Real)) + :extrafuns ((x30 Real)) + :extrafuns ((x29 Real)) + :extrafuns ((x28 Real)) + :extrafuns ((x27 Real)) + :extrafuns ((x26 Real)) + :extrafuns ((x25 Real)) + :extrafuns ((x24 Real)) + :extrafuns ((x23 Real)) + :extrafuns ((x22 Real)) + :extrafuns ((x21 Real)) + :extrafuns ((x20 Real)) + :extrafuns ((x19 Real)) + :extrafuns ((x18 Real)) + :extrafuns ((x17 Real)) + :extrafuns ((x16 Real)) + :extrafuns ((x15 Real)) + :extrafuns ((x14 Real)) + :extrafuns ((x13 Real)) + :extrafuns ((x12 Real)) + :extrafuns ((x11 Real)) + :extrafuns ((x10 Real)) + :extrafuns ((x9 Real)) + :extrafuns ((x8 Real)) + :extrafuns ((x7 Real)) + :extrafuns ((x6 Real)) + :extrafuns ((x5 Real)) + :extrafuns ((x4 Real)) + :extrafuns ((x3 Real)) + :extrafuns ((x2 Real)) + :extrafuns ((x1 Real)) + :extrapreds ((x177)) + :extrapreds ((x178)) + :extrapreds ((x179)) + :extrapreds ((x180)) + :extrapreds ((x181)) + :extrapreds ((x182)) + :extrapreds ((x183)) + :extrapreds ((x184)) + :extrapreds ((x185)) + :extrapreds ((x186)) + :extrapreds ((x187)) + :extrapreds ((x188)) + :extrapreds ((x189)) + :extrapreds ((x190)) + :extrapreds ((x191)) + :extrapreds ((x192)) + :extrapreds ((x193)) + :extrapreds ((x194)) + :extrapreds ((x195)) + :extrapreds ((x196)) + :extrapreds ((x197)) + :extrapreds ((x198)) + :extrapreds ((x199)) + :extrapreds ((x200)) + :extrapreds ((x201)) + :extrapreds ((x202)) + :extrapreds ((x203)) + :extrapreds ((x204)) + :extrapreds ((x205)) + :extrapreds ((x206)) + :extrapreds ((x207)) + :extrapreds ((x208)) + :extrapreds ((x209)) + :extrapreds ((x210)) + :extrapreds ((x211)) + :extrapreds ((x212)) + :extrapreds ((x213)) + :extrapreds ((x214)) + :extrapreds ((x215)) + :extrapreds ((x216)) + :extrapreds ((x217)) + :extrapreds ((x218)) + :extrapreds ((x219)) + :extrapreds ((x220)) + :extrapreds ((x221)) + :extrapreds ((x222)) + :extrapreds ((x223)) + :extrapreds ((x224)) + :extrapreds ((x225)) + :extrapreds ((x226)) + :extrapreds ((x227)) + :extrapreds ((x228)) + :extrapreds ((x229)) + :extrapreds ((x230)) + :extrapreds ((x231)) + :extrapreds ((x232)) + :extrapreds ((x233)) + :extrapreds ((x234)) + :extrapreds ((x235)) + :extrapreds ((x236)) + :extrapreds ((x237)) + :extrapreds ((x238)) + :extrapreds ((x239)) + :extrapreds ((x240)) + + :formula( and + ( <= ( + ( + ( * 1 tmp75 ) 0 ) ( + ( * 1 tmp73 ) ( + ( * 1 tmp71 ) ( + ( * 1 tmp69 ) ( + ( * 1 tmp67 ) ( + ( * 1 tmp65 ) ( + ( * 2 x112 ) ( + ( * 2 x111 ) ( + ( * 2 x110 ) ( + ( * 2 x109 ) ( + ( * 2 x108 ) ( + ( * 2 x107 ) ( + ( * 2 x106 ) ( + ( * 2 x105 ) ( + ( * 2 x104 ) ( + ( * 2 x103 ) ( + ( * 2 x102 ) ( + ( * 2 x101 ) ( + ( * 2 x100 ) ( + ( * 2 x99 ) ( + ( * 2 x98 ) ( + ( * 2 x97 ) ( + ( * 2 x96 ) ( + ( * 2 x95 ) ( + ( * 2 x94 ) ( + ( * 2 x93 ) ( + ( * 2 x92 ) ( + ( * 2 x91 ) ( + ( * 2 x90 ) ( + ( * 2 x89 ) ( + ( * 2 x88 ) ( + ( * 2 x87 ) ( + ( * 2 x86 ) ( + ( * 2 x85 ) ( + ( * 2 x84 ) ( + ( * 2 x83 ) ( + ( * 2 x82 ) ( + ( * 2 x81 ) ( + ( * 2 x80 ) ( + ( * 2 x79 ) ( + ( * 2 x78 ) ( + ( * 2 x77 ) ( + ( * 2 x76 ) ( + ( * 2 x75 ) ( + ( * 2 x74 ) ( + ( * 2 x73 ) ( + ( * 2 x72 ) ( + ( * 2 x71 ) ( + ( * 2 x70 ) ( + ( * 2 x69 ) ( + ( * 2 x68 ) ( + ( * 2 x67 ) ( + ( * 2 x66 ) ( + ( * 2 x65 ) ( + ( * 2 x64 ) ( + ( * 2 x63 ) ( + ( * 2 x62 ) ( + ( * 2 x61 ) ( + ( * 2 x60 ) ( + ( * 2 x59 ) ( + ( * 2 x58 ) ( + ( * 2 x57 ) ( + ( * 1 x56 ) ( + ( * 1 x55 ) ( + ( * 1 x54 ) ( + ( * 1 x53 ) ( + ( * 1 x52 ) ( + ( * 1 x51 ) ( + ( * 1 x50 ) ( + ( * 1 x49 ) ( + ( * 1 x48 ) ( + ( * 1 x47 ) ( + ( * 1 x46 ) ( + ( * 1 x45 ) ( + ( * 1 x44 ) ( + ( * 1 x43 ) ( + ( * 1 x42 ) ( + ( * 1 x41 ) ( + ( * 1 x40 ) ( + ( * 1 x39 ) ( + ( * 1 x38 ) ( + ( * 1 x37 ) ( + ( * 1 x36 ) ( + ( * 1 x35 ) ( + ( * 1 x34 ) ( + ( * 1 x33 ) ( + ( * 1 x32 ) ( + ( * 1 x31 ) ( + ( * 1 x30 ) ( + ( * 1 x29 ) ( + ( * 1 x28 ) ( + ( * 1 x27 ) ( + ( * 1 x26 ) ( + ( * 1 x25 ) ( + ( * 1 x24 ) ( + ( * 1 x23 ) ( + ( * 1 x22 ) ( + ( * 1 x21 ) ( + ( * 1 x20 ) ( + ( * 1 x19 ) ( + ( * 1 x18 ) ( + ( * 1 x17 ) ( + ( * 1 x16 ) ( + ( * 1 x15 ) ( + ( * 1 x14 ) ( + ( * 1 x13 ) ( + ( * 1 x12 ) ( + ( * 1 x11 ) ( + ( * 1 x10 ) ( + ( * 1 x9 ) ( + ( * 1 x8 ) ( + ( * 1 x7 ) ( + ( * 1 x6 ) ( + ( * 1 x5 ) ( + ( * 1 x4 ) ( + ( * 1 x3 ) ( + ( * 1 x2 ) ( + ( * 1 x1 ) ( + ( * 1 tmp66 ) ( + ( * 1 tmp68 ) ( + ( * 1 tmp70 ) ( + ( * 1 tmp72 ) ( + ( * 1 tmp74 ) 0 ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) 3000 ) + ( <= ( + ( + ( * 1 tmp64 ) 0 ) ( + ( * 1 x176 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp63 ) 0 ) ( + ( * 1 x175 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp62 ) 0 ) ( + ( * 1 x174 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp61 ) 0 ) ( + ( * 1 x173 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp60 ) 0 ) ( + ( * 1 x172 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp59 ) 0 ) ( + ( * 1 x171 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp58 ) 0 ) ( + ( * 1 x170 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp57 ) 0 ) ( + ( * 1 x169 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp56 ) 0 ) ( + ( * 1 x168 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp55 ) 0 ) ( + ( * 1 x167 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp54 ) 0 ) ( + ( * 1 x166 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp53 ) 0 ) ( + ( * 1 x165 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp52 ) 0 ) ( + ( * 1 x164 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp51 ) 0 ) ( + ( * 1 x163 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp50 ) 0 ) ( + ( * 1 x162 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp49 ) 0 ) ( + ( * 1 x161 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp48 ) 0 ) ( + ( * 1 x160 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp47 ) 0 ) ( + ( * 1 x159 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp46 ) 0 ) ( + ( * 1 x158 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp45 ) 0 ) ( + ( * 1 x157 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp44 ) 0 ) ( + ( * 1 x156 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp43 ) 0 ) ( + ( * 1 x155 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp42 ) 0 ) ( + ( * 1 x154 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp41 ) 0 ) ( + ( * 1 x153 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp40 ) 0 ) ( + ( * 1 x152 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp39 ) 0 ) ( + ( * 1 x151 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp38 ) 0 ) ( + ( * 1 x150 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp37 ) 0 ) ( + ( * 1 x149 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp36 ) 0 ) ( + ( * 1 x148 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp35 ) 0 ) ( + ( * 1 x147 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp34 ) 0 ) ( + ( * 1 x146 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp33 ) 0 ) ( + ( * 1 x145 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp32 ) 0 ) ( + ( * 1 x144 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp31 ) 0 ) ( + ( * 1 x143 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp30 ) 0 ) ( + ( * 1 x142 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp29 ) 0 ) ( + ( * 1 x141 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp28 ) 0 ) ( + ( * 1 x140 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp27 ) 0 ) ( + ( * 1 x139 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp26 ) 0 ) ( + ( * 1 x138 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp25 ) 0 ) ( + ( * 1 x137 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp24 ) 0 ) ( + ( * 1 x136 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp23 ) 0 ) ( + ( * 1 x135 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp22 ) 0 ) ( + ( * 1 x134 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp21 ) 0 ) ( + ( * 1 x133 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp20 ) 0 ) ( + ( * 1 x132 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp19 ) 0 ) ( + ( * 1 x131 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp18 ) 0 ) ( + ( * 1 x130 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp17 ) 0 ) ( + ( * 1 x129 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp16 ) 0 ) ( + ( * 1 x128 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp15 ) 0 ) ( + ( * 1 x127 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp14 ) 0 ) ( + ( * 1 x126 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp13 ) 0 ) ( + ( * 1 x125 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp12 ) 0 ) ( + ( * 1 x124 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp11 ) 0 ) ( + ( * 1 x123 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp10 ) 0 ) ( + ( * 1 x122 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp9 ) 0 ) ( + ( * 1 x121 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp8 ) 0 ) ( + ( * 1 x120 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp7 ) 0 ) ( + ( * 1 x119 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp6 ) 0 ) ( + ( * 1 x118 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp5 ) 0 ) ( + ( * 1 x117 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp4 ) 0 ) ( + ( * 1 x116 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp3 ) 0 ) ( + ( * 1 x115 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp2 ) 0 ) ( + ( * 1 x114 ) 0 ) ) 0 ) + ( <= ( + ( + ( * 1 tmp1 ) 0 ) ( + ( * 1 x113 ) 0 ) ) 0 ) + ( <= ( + ( + ( + ( + ( + ( + ( + ( + 0 ( * 1 x120 ) ) ( * 1 x128 ) ) ( * 1 x136 ) ) ( * 1 x144 ) ) ( * 1 x152 ) ) ( * 1 x160 ) ) ( * 1 x168 ) ) ( * 1 x176 ) ) 500 ) + ( <= ( + ( + ( + ( + ( + ( + ( + ( + 0 ( * 1 x119 ) ) ( * 1 x127 ) ) ( * 1 x135 ) ) ( * 1 x143 ) ) ( * 1 x151 ) ) ( * 1 x159 ) ) ( * 1 x167 ) ) ( * 1 x175 ) ) 400 ) + ( <= ( + ( + ( + ( + ( + ( + ( + ( + 0 ( * 1 x118 ) ) ( * 1 x126 ) ) ( * 1 x134 ) ) ( * 1 x142 ) ) ( * 1 x150 ) ) ( * 1 x158 ) ) ( * 1 x166 ) ) ( * 1 x174 ) ) 400 ) + ( <= ( + ( + ( + ( + ( + ( + ( + ( + 0 ( * 1 x117 ) ) ( * 1 x125 ) ) ( * 1 x133 ) ) ( * 1 x141 ) ) ( * 1 x149 ) ) ( * 1 x157 ) ) ( * 1 x165 ) ) ( * 1 x173 ) ) 400 ) + ( <= ( + ( + ( + ( + ( + ( + ( + ( + 0 ( * 1 x116 ) ) ( * 1 x124 ) ) ( * 1 x132 ) ) ( * 1 x140 ) ) ( * 1 x148 ) ) ( * 1 x156 ) ) ( * 1 x164 ) ) ( * 1 x172 ) ) 400 ) + ( <= ( + ( + ( + ( + ( + ( + ( + ( + 0 ( * 1 x115 ) ) ( * 1 x123 ) ) ( * 1 x131 ) ) ( * 1 x139 ) ) ( * 1 x147 ) ) ( * 1 x155 ) ) ( * 1 x163 ) ) ( * 1 x171 ) ) 350 ) + ( <= ( + ( + ( + ( + ( + ( + ( + ( + 0 ( * 1 x114 ) ) ( * 1 x122 ) ) ( * 1 x130 ) ) ( * 1 x138 ) ) ( * 1 x146 ) ) ( * 1 x154 ) ) ( * 1 x162 ) ) ( * 1 x170 ) ) 350 ) + ( <= ( + ( + ( + ( + ( + ( + ( + ( + 0 ( * 1 x113 ) ) ( * 1 x121 ) ) ( * 1 x129 ) ) ( * 1 x137 ) ) ( * 1 x145 ) ) ( * 1 x153 ) ) ( * 1 x161 ) ) ( * 1 x169 ) ) 350 ) + ( = ( + ( + ( + 0 ( * 1 x56 ) ) ( * (~ 1) x112 ) ) ( * 1 x176 ) ) 30 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x55 ) ) ( * (~ 1) x56 ) ) ( * (~ 1) x111 ) ) ( * 1 x112 ) ) ( * 1 x175 ) ) 20 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x54 ) ) ( * (~ 1) x55 ) ) ( * (~ 1) x110 ) ) ( * 1 x111 ) ) ( * 1 x174 ) ) 10 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x53 ) ) ( * (~ 1) x54 ) ) ( * (~ 1) x109 ) ) ( * 1 x110 ) ) ( * 1 x173 ) ) 10 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x52 ) ) ( * (~ 1) x53 ) ) ( * (~ 1) x108 ) ) ( * 1 x109 ) ) ( * 1 x172 ) ) 0 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x51 ) ) ( * (~ 1) x52 ) ) ( * (~ 1) x107 ) ) ( * 1 x108 ) ) ( * 1 x171 ) ) 0 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x50 ) ) ( * (~ 1) x51 ) ) ( * (~ 1) x106 ) ) ( * 1 x107 ) ) ( * 1 x170 ) ) 20 ) + ( = ( + ( + ( + 0 ( * (~ 1) x50 ) ) ( * 1 x106 ) ) ( * 1 x169 ) ) 10 ) + ( = ( + ( + ( + 0 ( * 1 x49 ) ) ( * (~ 1) x105 ) ) ( * 1 x168 ) ) 40 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x48 ) ) ( * (~ 1) x49 ) ) ( * (~ 1) x104 ) ) ( * 1 x105 ) ) ( * 1 x167 ) ) 40 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x47 ) ) ( * (~ 1) x48 ) ) ( * (~ 1) x103 ) ) ( * 1 x104 ) ) ( * 1 x166 ) ) 60 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x46 ) ) ( * (~ 1) x47 ) ) ( * (~ 1) x102 ) ) ( * 1 x103 ) ) ( * 1 x165 ) ) 20 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x45 ) ) ( * (~ 1) x46 ) ) ( * (~ 1) x101 ) ) ( * 1 x102 ) ) ( * 1 x164 ) ) 10 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x44 ) ) ( * (~ 1) x45 ) ) ( * (~ 1) x100 ) ) ( * 1 x101 ) ) ( * 1 x163 ) ) 50 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x43 ) ) ( * (~ 1) x44 ) ) ( * (~ 1) x99 ) ) ( * 1 x100 ) ) ( * 1 x162 ) ) 20 ) + ( = ( + ( + ( + 0 ( * (~ 1) x43 ) ) ( * 1 x99 ) ) ( * 1 x161 ) ) 0 ) + ( = ( + ( + ( + 0 ( * 1 x42 ) ) ( * (~ 1) x98 ) ) ( * 1 x160 ) ) 50 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x41 ) ) ( * (~ 1) x42 ) ) ( * (~ 1) x97 ) ) ( * 1 x98 ) ) ( * 1 x159 ) ) 40 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x40 ) ) ( * (~ 1) x41 ) ) ( * (~ 1) x96 ) ) ( * 1 x97 ) ) ( * 1 x158 ) ) 20 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x39 ) ) ( * (~ 1) x40 ) ) ( * (~ 1) x95 ) ) ( * 1 x96 ) ) ( * 1 x157 ) ) 100 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x38 ) ) ( * (~ 1) x39 ) ) ( * (~ 1) x94 ) ) ( * 1 x95 ) ) ( * 1 x156 ) ) 40 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x37 ) ) ( * (~ 1) x38 ) ) ( * (~ 1) x93 ) ) ( * 1 x94 ) ) ( * 1 x155 ) ) 40 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x36 ) ) ( * (~ 1) x37 ) ) ( * (~ 1) x92 ) ) ( * 1 x93 ) ) ( * 1 x154 ) ) 40 ) + ( = ( + ( + ( + 0 ( * (~ 1) x36 ) ) ( * 1 x92 ) ) ( * 1 x153 ) ) 70 ) + ( = ( + ( + ( + 0 ( * 1 x35 ) ) ( * (~ 1) x91 ) ) ( * 1 x152 ) ) 10 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x34 ) ) ( * (~ 1) x35 ) ) ( * (~ 1) x90 ) ) ( * 1 x91 ) ) ( * 1 x151 ) ) 20 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x33 ) ) ( * (~ 1) x34 ) ) ( * (~ 1) x89 ) ) ( * 1 x90 ) ) ( * 1 x150 ) ) 10 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x32 ) ) ( * (~ 1) x33 ) ) ( * (~ 1) x88 ) ) ( * 1 x89 ) ) ( * 1 x149 ) ) 10 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x31 ) ) ( * (~ 1) x32 ) ) ( * (~ 1) x87 ) ) ( * 1 x88 ) ) ( * 1 x148 ) ) 40 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x30 ) ) ( * (~ 1) x31 ) ) ( * (~ 1) x86 ) ) ( * 1 x87 ) ) ( * 1 x147 ) ) 20 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x29 ) ) ( * (~ 1) x30 ) ) ( * (~ 1) x85 ) ) ( * 1 x86 ) ) ( * 1 x146 ) ) 0 ) + ( = ( + ( + ( + 0 ( * (~ 1) x29 ) ) ( * 1 x85 ) ) ( * 1 x145 ) ) 50 ) + ( = ( + ( + ( + 0 ( * 1 x28 ) ) ( * (~ 1) x84 ) ) ( * 1 x144 ) ) 100 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x27 ) ) ( * (~ 1) x28 ) ) ( * (~ 1) x83 ) ) ( * 1 x84 ) ) ( * 1 x143 ) ) 100 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x26 ) ) ( * (~ 1) x27 ) ) ( * (~ 1) x82 ) ) ( * 1 x83 ) ) ( * 1 x142 ) ) 90 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x25 ) ) ( * (~ 1) x26 ) ) ( * (~ 1) x81 ) ) ( * 1 x82 ) ) ( * 1 x141 ) ) 160 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x24 ) ) ( * (~ 1) x25 ) ) ( * (~ 1) x80 ) ) ( * 1 x81 ) ) ( * 1 x140 ) ) 150 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x23 ) ) ( * (~ 1) x24 ) ) ( * (~ 1) x79 ) ) ( * 1 x80 ) ) ( * 1 x139 ) ) 100 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x22 ) ) ( * (~ 1) x23 ) ) ( * (~ 1) x78 ) ) ( * 1 x79 ) ) ( * 1 x138 ) ) 100 ) + ( = ( + ( + ( + 0 ( * (~ 1) x22 ) ) ( * 1 x78 ) ) ( * 1 x137 ) ) 0 ) + ( = ( + ( + ( + 0 ( * 1 x21 ) ) ( * (~ 1) x77 ) ) ( * 1 x136 ) ) 160 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x20 ) ) ( * (~ 1) x21 ) ) ( * (~ 1) x76 ) ) ( * 1 x77 ) ) ( * 1 x135 ) ) 90 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x19 ) ) ( * (~ 1) x20 ) ) ( * (~ 1) x75 ) ) ( * 1 x76 ) ) ( * 1 x134 ) ) 80 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x18 ) ) ( * (~ 1) x19 ) ) ( * (~ 1) x74 ) ) ( * 1 x75 ) ) ( * 1 x133 ) ) 40 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x17 ) ) ( * (~ 1) x18 ) ) ( * (~ 1) x73 ) ) ( * 1 x74 ) ) ( * 1 x132 ) ) 100 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x16 ) ) ( * (~ 1) x17 ) ) ( * (~ 1) x72 ) ) ( * 1 x73 ) ) ( * 1 x131 ) ) 0 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x15 ) ) ( * (~ 1) x16 ) ) ( * (~ 1) x71 ) ) ( * 1 x72 ) ) ( * 1 x130 ) ) 50 ) + ( = ( + ( + ( + 0 ( * (~ 1) x15 ) ) ( * 1 x71 ) ) ( * 1 x129 ) ) 40 ) + ( = ( + ( + ( + 0 ( * 1 x14 ) ) ( * (~ 1) x70 ) ) ( * 1 x128 ) ) 50 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x13 ) ) ( * (~ 1) x14 ) ) ( * (~ 1) x69 ) ) ( * 1 x70 ) ) ( * 1 x127 ) ) 40 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x12 ) ) ( * (~ 1) x13 ) ) ( * (~ 1) x68 ) ) ( * 1 x69 ) ) ( * 1 x126 ) ) 0 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x11 ) ) ( * (~ 1) x12 ) ) ( * (~ 1) x67 ) ) ( * 1 x68 ) ) ( * 1 x125 ) ) 30 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x10 ) ) ( * (~ 1) x11 ) ) ( * (~ 1) x66 ) ) ( * 1 x67 ) ) ( * 1 x124 ) ) 10 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x9 ) ) ( * (~ 1) x10 ) ) ( * (~ 1) x65 ) ) ( * 1 x66 ) ) ( * 1 x123 ) ) 50 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x8 ) ) ( * (~ 1) x9 ) ) ( * (~ 1) x64 ) ) ( * 1 x65 ) ) ( * 1 x122 ) ) 40 ) + ( = ( + ( + ( + 0 ( * (~ 1) x8 ) ) ( * 1 x64 ) ) ( * 1 x121 ) ) 20 ) + ( = ( + ( + ( + 0 ( * 1 x7 ) ) ( * (~ 1) x63 ) ) ( * 1 x120 ) ) 100 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x6 ) ) ( * (~ 1) x7 ) ) ( * (~ 1) x62 ) ) ( * 1 x63 ) ) ( * 1 x119 ) ) 0 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x5 ) ) ( * (~ 1) x6 ) ) ( * (~ 1) x61 ) ) ( * 1 x62 ) ) ( * 1 x118 ) ) 80 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x4 ) ) ( * (~ 1) x5 ) ) ( * (~ 1) x60 ) ) ( * 1 x61 ) ) ( * 1 x117 ) ) 20 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x3 ) ) ( * (~ 1) x4 ) ) ( * (~ 1) x59 ) ) ( * 1 x60 ) ) ( * 1 x116 ) ) 100 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x2 ) ) ( * (~ 1) x3 ) ) ( * (~ 1) x58 ) ) ( * 1 x59 ) ) ( * 1 x115 ) ) 50 ) + ( = ( + ( + ( + ( + ( + 0 ( * 1 x1 ) ) ( * (~ 1) x2 ) ) ( * (~ 1) x57 ) ) ( * 1 x58 ) ) ( * 1 x114 ) ) 70 ) + ( = ( + ( + ( + 0 ( * (~ 1) x1 ) ) ( * 1 x57 ) ) ( * 1 x113 ) ) 0 ) + ( >= x1 0 ) + ( >= x2 0 ) + ( >= x3 0 ) + ( >= x4 0 ) + ( >= x5 0 ) + ( >= x6 0 ) + ( >= x7 0 ) + ( >= x8 0 ) + ( >= x9 0 ) + ( >= x10 0 ) + ( >= x11 0 ) + ( >= x12 0 ) + ( >= x13 0 ) + ( >= x14 0 ) + ( >= x15 0 ) + ( >= x16 0 ) + ( >= x17 0 ) + ( >= x18 0 ) + ( >= x19 0 ) + ( >= x20 0 ) + ( >= x21 0 ) + ( >= x22 0 ) + ( >= x23 0 ) + ( >= x24 0 ) + ( >= x25 0 ) + ( >= x26 0 ) + ( >= x27 0 ) + ( >= x28 0 ) + ( >= x29 0 ) + ( >= x30 0 ) + ( >= x31 0 ) + ( >= x32 0 ) + ( >= x33 0 ) + ( >= x34 0 ) + ( >= x35 0 ) + ( >= x36 0 ) + ( >= x37 0 ) + ( >= x38 0 ) + ( >= x39 0 ) + ( >= x40 0 ) + ( >= x41 0 ) + ( >= x42 0 ) + ( >= x43 0 ) + ( >= x44 0 ) + ( >= x45 0 ) + ( >= x46 0 ) + ( >= x47 0 ) + ( >= x48 0 ) + ( >= x49 0 ) + ( >= x50 0 ) + ( >= x51 0 ) + ( >= x52 0 ) + ( >= x53 0 ) + ( >= x54 0 ) + ( >= x55 0 ) + ( >= x56 0 ) + ( >= x57 0 ) + ( >= x58 0 ) + ( >= x59 0 ) + ( >= x60 0 ) + ( >= x61 0 ) + ( >= x62 0 ) + ( >= x63 0 ) + ( >= x64 0 ) + ( >= x65 0 ) + ( >= x66 0 ) + ( >= x67 0 ) + ( >= x68 0 ) + ( >= x69 0 ) + ( >= x70 0 ) + ( >= x71 0 ) + ( >= x72 0 ) + ( >= x73 0 ) + ( >= x74 0 ) + ( >= x75 0 ) + ( >= x76 0 ) + ( >= x77 0 ) + ( >= x78 0 ) + ( >= x79 0 ) + ( >= x80 0 ) + ( >= x81 0 ) + ( >= x82 0 ) + ( >= x83 0 ) + ( >= x84 0 ) + ( >= x85 0 ) + ( >= x86 0 ) + ( >= x87 0 ) + ( >= x88 0 ) + ( >= x89 0 ) + ( >= x90 0 ) + ( >= x91 0 ) + ( >= x92 0 ) + ( >= x93 0 ) + ( >= x94 0 ) + ( >= x95 0 ) + ( >= x96 0 ) + ( >= x97 0 ) + ( >= x98 0 ) + ( >= x99 0 ) + ( >= x100 0 ) + ( >= x101 0 ) + ( >= x102 0 ) + ( >= x103 0 ) + ( >= x104 0 ) + ( >= x105 0 ) + ( >= x106 0 ) + ( >= x107 0 ) + ( >= x108 0 ) + ( >= x109 0 ) + ( >= x110 0 ) + ( >= x111 0 ) + ( >= x112 0 ) + ( >= x176 0 ) + ( >= x175 0 ) + ( >= x174 0 ) + ( >= x173 0 ) + ( >= x172 0 ) + ( >= x171 0 ) + ( >= x170 0 ) + ( >= x169 0 ) + ( >= x168 0 ) + ( >= x167 0 ) + ( >= x166 0 ) + ( >= x165 0 ) + ( >= x164 0 ) + ( >= x163 0 ) + ( >= x162 0 ) + ( >= x161 0 ) + ( >= x160 0 ) + ( >= x159 0 ) + ( >= x158 0 ) + ( >= x157 0 ) + ( >= x156 0 ) + ( >= x155 0 ) + ( >= x154 0 ) + ( >= x153 0 ) + ( >= x152 0 ) + ( >= x151 0 ) + ( >= x150 0 ) + ( >= x149 0 ) + ( >= x148 0 ) + ( >= x147 0 ) + ( >= x146 0 ) + ( >= x145 0 ) + ( >= x144 0 ) + ( >= x143 0 ) + ( >= x142 0 ) + ( >= x141 0 ) + ( >= x140 0 ) + ( >= x139 0 ) + ( >= x138 0 ) + ( >= x137 0 ) + ( >= x136 0 ) + ( >= x135 0 ) + ( >= x134 0 ) + ( >= x133 0 ) + ( >= x132 0 ) + ( >= x131 0 ) + ( >= x130 0 ) + ( >= x129 0 ) + ( >= x128 0 ) + ( >= x127 0 ) + ( >= x126 0 ) + ( >= x125 0 ) + ( >= x124 0 ) + ( >= x123 0 ) + ( >= x122 0 ) + ( >= x121 0 ) + ( >= x120 0 ) + ( >= x119 0 ) + ( >= x118 0 ) + ( >= x117 0 ) + ( >= x116 0 ) + ( >= x115 0 ) + ( >= x114 0 ) + ( >= x113 0 ) + ( implies ( and ( not x207 ) ( and ( not x208 ) ( and ( not x209 ) ( and ( not x210 ) true ) ) ) ) ( = tmp75 0 ) ) + ( implies ( and ( not x207 ) ( and ( not x208 ) ( and ( not x209 ) ( and x210 true ) ) ) ) ( = tmp75 400 ) ) + ( implies ( and ( not x207 ) ( and ( not x208 ) ( and x209 ( and ( not x210 ) true ) ) ) ) ( = tmp75 400 ) ) + ( implies ( and ( not x207 ) ( and ( not x208 ) ( and x209 ( and x210 true ) ) ) ) ( = tmp75 800 ) ) + ( implies ( and ( not x207 ) ( and x208 ( and ( not x209 ) ( and ( not x210 ) true ) ) ) ) ( = tmp75 300 ) ) + ( implies ( and ( not x207 ) ( and x208 ( and ( not x209 ) ( and x210 true ) ) ) ) ( = tmp75 700 ) ) + ( implies ( and ( not x207 ) ( and x208 ( and x209 ( and ( not x210 ) true ) ) ) ) ( = tmp75 700 ) ) + ( implies ( and ( not x207 ) ( and x208 ( and x209 ( and x210 true ) ) ) ) ( = tmp75 1100 ) ) + ( implies ( and x207 ( and ( not x208 ) ( and ( not x209 ) ( and ( not x210 ) true ) ) ) ) ( = tmp75 300 ) ) + ( implies ( and x207 ( and ( not x208 ) ( and ( not x209 ) ( and x210 true ) ) ) ) ( = tmp75 700 ) ) + ( implies ( and x207 ( and ( not x208 ) ( and x209 ( and ( not x210 ) true ) ) ) ) ( = tmp75 700 ) ) + ( implies ( and x207 ( and ( not x208 ) ( and x209 ( and x210 true ) ) ) ) ( = tmp75 1100 ) ) + ( implies ( and x207 ( and x208 ( and ( not x209 ) ( and ( not x210 ) true ) ) ) ) ( = tmp75 600 ) ) + ( implies ( and x207 ( and x208 ( and ( not x209 ) ( and x210 true ) ) ) ) ( = tmp75 1000 ) ) + ( implies ( and x207 ( and x208 ( and x209 ( and ( not x210 ) true ) ) ) ) ( = tmp75 1000 ) ) + ( implies ( and x207 ( and x208 ( and x209 ( and x210 true ) ) ) ) ( = tmp75 1400 ) ) + ( implies ( and ( not x216 ) ( and ( not x215 ) ( and ( not x214 ) ( and ( not x213 ) ( and ( not x212 ) ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 0 ) ) + ( implies ( and ( not x216 ) ( and ( not x215 ) ( and ( not x214 ) ( and ( not x213 ) ( and ( not x212 ) ( and x211 true ) ) ) ) ) ) ( = tmp74 400 ) ) + ( implies ( and ( not x216 ) ( and ( not x215 ) ( and ( not x214 ) ( and ( not x213 ) ( and x212 ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 400 ) ) + ( implies ( and ( not x216 ) ( and ( not x215 ) ( and ( not x214 ) ( and ( not x213 ) ( and x212 ( and x211 true ) ) ) ) ) ) ( = tmp74 800 ) ) + ( implies ( and ( not x216 ) ( and ( not x215 ) ( and ( not x214 ) ( and x213 ( and ( not x212 ) ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 400 ) ) + ( implies ( and ( not x216 ) ( and ( not x215 ) ( and ( not x214 ) ( and x213 ( and ( not x212 ) ( and x211 true ) ) ) ) ) ) ( = tmp74 800 ) ) + ( implies ( and ( not x216 ) ( and ( not x215 ) ( and ( not x214 ) ( and x213 ( and x212 ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 800 ) ) + ( implies ( and ( not x216 ) ( and ( not x215 ) ( and ( not x214 ) ( and x213 ( and x212 ( and x211 true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and ( not x216 ) ( and ( not x215 ) ( and x214 ( and ( not x213 ) ( and ( not x212 ) ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 400 ) ) + ( implies ( and ( not x216 ) ( and ( not x215 ) ( and x214 ( and ( not x213 ) ( and ( not x212 ) ( and x211 true ) ) ) ) ) ) ( = tmp74 800 ) ) + ( implies ( and ( not x216 ) ( and ( not x215 ) ( and x214 ( and ( not x213 ) ( and x212 ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 800 ) ) + ( implies ( and ( not x216 ) ( and ( not x215 ) ( and x214 ( and ( not x213 ) ( and x212 ( and x211 true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and ( not x216 ) ( and ( not x215 ) ( and x214 ( and x213 ( and ( not x212 ) ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 800 ) ) + ( implies ( and ( not x216 ) ( and ( not x215 ) ( and x214 ( and x213 ( and ( not x212 ) ( and x211 true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and ( not x216 ) ( and ( not x215 ) ( and x214 ( and x213 ( and x212 ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and ( not x216 ) ( and ( not x215 ) ( and x214 ( and x213 ( and x212 ( and x211 true ) ) ) ) ) ) ( = tmp74 1600 ) ) + ( implies ( and ( not x216 ) ( and x215 ( and ( not x214 ) ( and ( not x213 ) ( and ( not x212 ) ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 400 ) ) + ( implies ( and ( not x216 ) ( and x215 ( and ( not x214 ) ( and ( not x213 ) ( and ( not x212 ) ( and x211 true ) ) ) ) ) ) ( = tmp74 800 ) ) + ( implies ( and ( not x216 ) ( and x215 ( and ( not x214 ) ( and ( not x213 ) ( and x212 ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 800 ) ) + ( implies ( and ( not x216 ) ( and x215 ( and ( not x214 ) ( and ( not x213 ) ( and x212 ( and x211 true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and ( not x216 ) ( and x215 ( and ( not x214 ) ( and x213 ( and ( not x212 ) ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 800 ) ) + ( implies ( and ( not x216 ) ( and x215 ( and ( not x214 ) ( and x213 ( and ( not x212 ) ( and x211 true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and ( not x216 ) ( and x215 ( and ( not x214 ) ( and x213 ( and x212 ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and ( not x216 ) ( and x215 ( and ( not x214 ) ( and x213 ( and x212 ( and x211 true ) ) ) ) ) ) ( = tmp74 1600 ) ) + ( implies ( and ( not x216 ) ( and x215 ( and x214 ( and ( not x213 ) ( and ( not x212 ) ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 800 ) ) + ( implies ( and ( not x216 ) ( and x215 ( and x214 ( and ( not x213 ) ( and ( not x212 ) ( and x211 true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and ( not x216 ) ( and x215 ( and x214 ( and ( not x213 ) ( and x212 ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and ( not x216 ) ( and x215 ( and x214 ( and ( not x213 ) ( and x212 ( and x211 true ) ) ) ) ) ) ( = tmp74 1600 ) ) + ( implies ( and ( not x216 ) ( and x215 ( and x214 ( and x213 ( and ( not x212 ) ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and ( not x216 ) ( and x215 ( and x214 ( and x213 ( and ( not x212 ) ( and x211 true ) ) ) ) ) ) ( = tmp74 1600 ) ) + ( implies ( and ( not x216 ) ( and x215 ( and x214 ( and x213 ( and x212 ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 1600 ) ) + ( implies ( and ( not x216 ) ( and x215 ( and x214 ( and x213 ( and x212 ( and x211 true ) ) ) ) ) ) ( = tmp74 2000 ) ) + ( implies ( and x216 ( and ( not x215 ) ( and ( not x214 ) ( and ( not x213 ) ( and ( not x212 ) ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 400 ) ) + ( implies ( and x216 ( and ( not x215 ) ( and ( not x214 ) ( and ( not x213 ) ( and ( not x212 ) ( and x211 true ) ) ) ) ) ) ( = tmp74 800 ) ) + ( implies ( and x216 ( and ( not x215 ) ( and ( not x214 ) ( and ( not x213 ) ( and x212 ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 800 ) ) + ( implies ( and x216 ( and ( not x215 ) ( and ( not x214 ) ( and ( not x213 ) ( and x212 ( and x211 true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and x216 ( and ( not x215 ) ( and ( not x214 ) ( and x213 ( and ( not x212 ) ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 800 ) ) + ( implies ( and x216 ( and ( not x215 ) ( and ( not x214 ) ( and x213 ( and ( not x212 ) ( and x211 true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and x216 ( and ( not x215 ) ( and ( not x214 ) ( and x213 ( and x212 ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and x216 ( and ( not x215 ) ( and ( not x214 ) ( and x213 ( and x212 ( and x211 true ) ) ) ) ) ) ( = tmp74 1600 ) ) + ( implies ( and x216 ( and ( not x215 ) ( and x214 ( and ( not x213 ) ( and ( not x212 ) ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 800 ) ) + ( implies ( and x216 ( and ( not x215 ) ( and x214 ( and ( not x213 ) ( and ( not x212 ) ( and x211 true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and x216 ( and ( not x215 ) ( and x214 ( and ( not x213 ) ( and x212 ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and x216 ( and ( not x215 ) ( and x214 ( and ( not x213 ) ( and x212 ( and x211 true ) ) ) ) ) ) ( = tmp74 1600 ) ) + ( implies ( and x216 ( and ( not x215 ) ( and x214 ( and x213 ( and ( not x212 ) ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and x216 ( and ( not x215 ) ( and x214 ( and x213 ( and ( not x212 ) ( and x211 true ) ) ) ) ) ) ( = tmp74 1600 ) ) + ( implies ( and x216 ( and ( not x215 ) ( and x214 ( and x213 ( and x212 ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 1600 ) ) + ( implies ( and x216 ( and ( not x215 ) ( and x214 ( and x213 ( and x212 ( and x211 true ) ) ) ) ) ) ( = tmp74 2000 ) ) + ( implies ( and x216 ( and x215 ( and ( not x214 ) ( and ( not x213 ) ( and ( not x212 ) ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 800 ) ) + ( implies ( and x216 ( and x215 ( and ( not x214 ) ( and ( not x213 ) ( and ( not x212 ) ( and x211 true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and x216 ( and x215 ( and ( not x214 ) ( and ( not x213 ) ( and x212 ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and x216 ( and x215 ( and ( not x214 ) ( and ( not x213 ) ( and x212 ( and x211 true ) ) ) ) ) ) ( = tmp74 1600 ) ) + ( implies ( and x216 ( and x215 ( and ( not x214 ) ( and x213 ( and ( not x212 ) ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and x216 ( and x215 ( and ( not x214 ) ( and x213 ( and ( not x212 ) ( and x211 true ) ) ) ) ) ) ( = tmp74 1600 ) ) + ( implies ( and x216 ( and x215 ( and ( not x214 ) ( and x213 ( and x212 ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 1600 ) ) + ( implies ( and x216 ( and x215 ( and ( not x214 ) ( and x213 ( and x212 ( and x211 true ) ) ) ) ) ) ( = tmp74 2000 ) ) + ( implies ( and x216 ( and x215 ( and x214 ( and ( not x213 ) ( and ( not x212 ) ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 1200 ) ) + ( implies ( and x216 ( and x215 ( and x214 ( and ( not x213 ) ( and ( not x212 ) ( and x211 true ) ) ) ) ) ) ( = tmp74 1600 ) ) + ( implies ( and x216 ( and x215 ( and x214 ( and ( not x213 ) ( and x212 ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 1600 ) ) + ( implies ( and x216 ( and x215 ( and x214 ( and ( not x213 ) ( and x212 ( and x211 true ) ) ) ) ) ) ( = tmp74 2000 ) ) + ( implies ( and x216 ( and x215 ( and x214 ( and x213 ( and ( not x212 ) ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 1600 ) ) + ( implies ( and x216 ( and x215 ( and x214 ( and x213 ( and ( not x212 ) ( and x211 true ) ) ) ) ) ) ( = tmp74 2000 ) ) + ( implies ( and x216 ( and x215 ( and x214 ( and x213 ( and x212 ( and ( not x211 ) true ) ) ) ) ) ) ( = tmp74 2000 ) ) + ( implies ( and x216 ( and x215 ( and x214 ( and x213 ( and x212 ( and x211 true ) ) ) ) ) ) ( = tmp74 2400 ) ) + ( implies ( and ( not x201 ) ( and ( not x202 ) ( and ( not x203 ) ( and ( not x204 ) ( and ( not x205 ) ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 0 ) ) + ( implies ( and ( not x201 ) ( and ( not x202 ) ( and ( not x203 ) ( and ( not x204 ) ( and ( not x205 ) ( and x206 true ) ) ) ) ) ) ( = tmp73 300 ) ) + ( implies ( and ( not x201 ) ( and ( not x202 ) ( and ( not x203 ) ( and ( not x204 ) ( and x205 ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 300 ) ) + ( implies ( and ( not x201 ) ( and ( not x202 ) ( and ( not x203 ) ( and ( not x204 ) ( and x205 ( and x206 true ) ) ) ) ) ) ( = tmp73 600 ) ) + ( implies ( and ( not x201 ) ( and ( not x202 ) ( and ( not x203 ) ( and x204 ( and ( not x205 ) ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 300 ) ) + ( implies ( and ( not x201 ) ( and ( not x202 ) ( and ( not x203 ) ( and x204 ( and ( not x205 ) ( and x206 true ) ) ) ) ) ) ( = tmp73 600 ) ) + ( implies ( and ( not x201 ) ( and ( not x202 ) ( and ( not x203 ) ( and x204 ( and x205 ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 600 ) ) + ( implies ( and ( not x201 ) ( and ( not x202 ) ( and ( not x203 ) ( and x204 ( and x205 ( and x206 true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and ( not x201 ) ( and ( not x202 ) ( and x203 ( and ( not x204 ) ( and ( not x205 ) ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 300 ) ) + ( implies ( and ( not x201 ) ( and ( not x202 ) ( and x203 ( and ( not x204 ) ( and ( not x205 ) ( and x206 true ) ) ) ) ) ) ( = tmp73 600 ) ) + ( implies ( and ( not x201 ) ( and ( not x202 ) ( and x203 ( and ( not x204 ) ( and x205 ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 600 ) ) + ( implies ( and ( not x201 ) ( and ( not x202 ) ( and x203 ( and ( not x204 ) ( and x205 ( and x206 true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and ( not x201 ) ( and ( not x202 ) ( and x203 ( and x204 ( and ( not x205 ) ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 600 ) ) + ( implies ( and ( not x201 ) ( and ( not x202 ) ( and x203 ( and x204 ( and ( not x205 ) ( and x206 true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and ( not x201 ) ( and ( not x202 ) ( and x203 ( and x204 ( and x205 ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and ( not x201 ) ( and ( not x202 ) ( and x203 ( and x204 ( and x205 ( and x206 true ) ) ) ) ) ) ( = tmp73 1200 ) ) + ( implies ( and ( not x201 ) ( and x202 ( and ( not x203 ) ( and ( not x204 ) ( and ( not x205 ) ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 300 ) ) + ( implies ( and ( not x201 ) ( and x202 ( and ( not x203 ) ( and ( not x204 ) ( and ( not x205 ) ( and x206 true ) ) ) ) ) ) ( = tmp73 600 ) ) + ( implies ( and ( not x201 ) ( and x202 ( and ( not x203 ) ( and ( not x204 ) ( and x205 ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 600 ) ) + ( implies ( and ( not x201 ) ( and x202 ( and ( not x203 ) ( and ( not x204 ) ( and x205 ( and x206 true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and ( not x201 ) ( and x202 ( and ( not x203 ) ( and x204 ( and ( not x205 ) ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 600 ) ) + ( implies ( and ( not x201 ) ( and x202 ( and ( not x203 ) ( and x204 ( and ( not x205 ) ( and x206 true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and ( not x201 ) ( and x202 ( and ( not x203 ) ( and x204 ( and x205 ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and ( not x201 ) ( and x202 ( and ( not x203 ) ( and x204 ( and x205 ( and x206 true ) ) ) ) ) ) ( = tmp73 1200 ) ) + ( implies ( and ( not x201 ) ( and x202 ( and x203 ( and ( not x204 ) ( and ( not x205 ) ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 600 ) ) + ( implies ( and ( not x201 ) ( and x202 ( and x203 ( and ( not x204 ) ( and ( not x205 ) ( and x206 true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and ( not x201 ) ( and x202 ( and x203 ( and ( not x204 ) ( and x205 ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and ( not x201 ) ( and x202 ( and x203 ( and ( not x204 ) ( and x205 ( and x206 true ) ) ) ) ) ) ( = tmp73 1200 ) ) + ( implies ( and ( not x201 ) ( and x202 ( and x203 ( and x204 ( and ( not x205 ) ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and ( not x201 ) ( and x202 ( and x203 ( and x204 ( and ( not x205 ) ( and x206 true ) ) ) ) ) ) ( = tmp73 1200 ) ) + ( implies ( and ( not x201 ) ( and x202 ( and x203 ( and x204 ( and x205 ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 1200 ) ) + ( implies ( and ( not x201 ) ( and x202 ( and x203 ( and x204 ( and x205 ( and x206 true ) ) ) ) ) ) ( = tmp73 1500 ) ) + ( implies ( and x201 ( and ( not x202 ) ( and ( not x203 ) ( and ( not x204 ) ( and ( not x205 ) ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 300 ) ) + ( implies ( and x201 ( and ( not x202 ) ( and ( not x203 ) ( and ( not x204 ) ( and ( not x205 ) ( and x206 true ) ) ) ) ) ) ( = tmp73 600 ) ) + ( implies ( and x201 ( and ( not x202 ) ( and ( not x203 ) ( and ( not x204 ) ( and x205 ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 600 ) ) + ( implies ( and x201 ( and ( not x202 ) ( and ( not x203 ) ( and ( not x204 ) ( and x205 ( and x206 true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and x201 ( and ( not x202 ) ( and ( not x203 ) ( and x204 ( and ( not x205 ) ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 600 ) ) + ( implies ( and x201 ( and ( not x202 ) ( and ( not x203 ) ( and x204 ( and ( not x205 ) ( and x206 true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and x201 ( and ( not x202 ) ( and ( not x203 ) ( and x204 ( and x205 ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and x201 ( and ( not x202 ) ( and ( not x203 ) ( and x204 ( and x205 ( and x206 true ) ) ) ) ) ) ( = tmp73 1200 ) ) + ( implies ( and x201 ( and ( not x202 ) ( and x203 ( and ( not x204 ) ( and ( not x205 ) ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 600 ) ) + ( implies ( and x201 ( and ( not x202 ) ( and x203 ( and ( not x204 ) ( and ( not x205 ) ( and x206 true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and x201 ( and ( not x202 ) ( and x203 ( and ( not x204 ) ( and x205 ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and x201 ( and ( not x202 ) ( and x203 ( and ( not x204 ) ( and x205 ( and x206 true ) ) ) ) ) ) ( = tmp73 1200 ) ) + ( implies ( and x201 ( and ( not x202 ) ( and x203 ( and x204 ( and ( not x205 ) ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and x201 ( and ( not x202 ) ( and x203 ( and x204 ( and ( not x205 ) ( and x206 true ) ) ) ) ) ) ( = tmp73 1200 ) ) + ( implies ( and x201 ( and ( not x202 ) ( and x203 ( and x204 ( and x205 ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 1200 ) ) + ( implies ( and x201 ( and ( not x202 ) ( and x203 ( and x204 ( and x205 ( and x206 true ) ) ) ) ) ) ( = tmp73 1500 ) ) + ( implies ( and x201 ( and x202 ( and ( not x203 ) ( and ( not x204 ) ( and ( not x205 ) ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 600 ) ) + ( implies ( and x201 ( and x202 ( and ( not x203 ) ( and ( not x204 ) ( and ( not x205 ) ( and x206 true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and x201 ( and x202 ( and ( not x203 ) ( and ( not x204 ) ( and x205 ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and x201 ( and x202 ( and ( not x203 ) ( and ( not x204 ) ( and x205 ( and x206 true ) ) ) ) ) ) ( = tmp73 1200 ) ) + ( implies ( and x201 ( and x202 ( and ( not x203 ) ( and x204 ( and ( not x205 ) ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and x201 ( and x202 ( and ( not x203 ) ( and x204 ( and ( not x205 ) ( and x206 true ) ) ) ) ) ) ( = tmp73 1200 ) ) + ( implies ( and x201 ( and x202 ( and ( not x203 ) ( and x204 ( and x205 ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 1200 ) ) + ( implies ( and x201 ( and x202 ( and ( not x203 ) ( and x204 ( and x205 ( and x206 true ) ) ) ) ) ) ( = tmp73 1500 ) ) + ( implies ( and x201 ( and x202 ( and x203 ( and ( not x204 ) ( and ( not x205 ) ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 900 ) ) + ( implies ( and x201 ( and x202 ( and x203 ( and ( not x204 ) ( and ( not x205 ) ( and x206 true ) ) ) ) ) ) ( = tmp73 1200 ) ) + ( implies ( and x201 ( and x202 ( and x203 ( and ( not x204 ) ( and x205 ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 1200 ) ) + ( implies ( and x201 ( and x202 ( and x203 ( and ( not x204 ) ( and x205 ( and x206 true ) ) ) ) ) ) ( = tmp73 1500 ) ) + ( implies ( and x201 ( and x202 ( and x203 ( and x204 ( and ( not x205 ) ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 1200 ) ) + ( implies ( and x201 ( and x202 ( and x203 ( and x204 ( and ( not x205 ) ( and x206 true ) ) ) ) ) ) ( = tmp73 1500 ) ) + ( implies ( and x201 ( and x202 ( and x203 ( and x204 ( and x205 ( and ( not x206 ) true ) ) ) ) ) ) ( = tmp73 1500 ) ) + ( implies ( and x201 ( and x202 ( and x203 ( and x204 ( and x205 ( and x206 true ) ) ) ) ) ) ( = tmp73 1800 ) ) + ( implies ( and ( not x222 ) ( and ( not x221 ) ( and ( not x220 ) ( and ( not x219 ) ( and ( not x218 ) ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 0 ) ) + ( implies ( and ( not x222 ) ( and ( not x221 ) ( and ( not x220 ) ( and ( not x219 ) ( and ( not x218 ) ( and x217 true ) ) ) ) ) ) ( = tmp72 250 ) ) + ( implies ( and ( not x222 ) ( and ( not x221 ) ( and ( not x220 ) ( and ( not x219 ) ( and x218 ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 250 ) ) + ( implies ( and ( not x222 ) ( and ( not x221 ) ( and ( not x220 ) ( and ( not x219 ) ( and x218 ( and x217 true ) ) ) ) ) ) ( = tmp72 500 ) ) + ( implies ( and ( not x222 ) ( and ( not x221 ) ( and ( not x220 ) ( and x219 ( and ( not x218 ) ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 250 ) ) + ( implies ( and ( not x222 ) ( and ( not x221 ) ( and ( not x220 ) ( and x219 ( and ( not x218 ) ( and x217 true ) ) ) ) ) ) ( = tmp72 500 ) ) + ( implies ( and ( not x222 ) ( and ( not x221 ) ( and ( not x220 ) ( and x219 ( and x218 ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 500 ) ) + ( implies ( and ( not x222 ) ( and ( not x221 ) ( and ( not x220 ) ( and x219 ( and x218 ( and x217 true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and ( not x222 ) ( and ( not x221 ) ( and x220 ( and ( not x219 ) ( and ( not x218 ) ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 250 ) ) + ( implies ( and ( not x222 ) ( and ( not x221 ) ( and x220 ( and ( not x219 ) ( and ( not x218 ) ( and x217 true ) ) ) ) ) ) ( = tmp72 500 ) ) + ( implies ( and ( not x222 ) ( and ( not x221 ) ( and x220 ( and ( not x219 ) ( and x218 ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 500 ) ) + ( implies ( and ( not x222 ) ( and ( not x221 ) ( and x220 ( and ( not x219 ) ( and x218 ( and x217 true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and ( not x222 ) ( and ( not x221 ) ( and x220 ( and x219 ( and ( not x218 ) ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 500 ) ) + ( implies ( and ( not x222 ) ( and ( not x221 ) ( and x220 ( and x219 ( and ( not x218 ) ( and x217 true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and ( not x222 ) ( and ( not x221 ) ( and x220 ( and x219 ( and x218 ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and ( not x222 ) ( and ( not x221 ) ( and x220 ( and x219 ( and x218 ( and x217 true ) ) ) ) ) ) ( = tmp72 1000 ) ) + ( implies ( and ( not x222 ) ( and x221 ( and ( not x220 ) ( and ( not x219 ) ( and ( not x218 ) ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 250 ) ) + ( implies ( and ( not x222 ) ( and x221 ( and ( not x220 ) ( and ( not x219 ) ( and ( not x218 ) ( and x217 true ) ) ) ) ) ) ( = tmp72 500 ) ) + ( implies ( and ( not x222 ) ( and x221 ( and ( not x220 ) ( and ( not x219 ) ( and x218 ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 500 ) ) + ( implies ( and ( not x222 ) ( and x221 ( and ( not x220 ) ( and ( not x219 ) ( and x218 ( and x217 true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and ( not x222 ) ( and x221 ( and ( not x220 ) ( and x219 ( and ( not x218 ) ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 500 ) ) + ( implies ( and ( not x222 ) ( and x221 ( and ( not x220 ) ( and x219 ( and ( not x218 ) ( and x217 true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and ( not x222 ) ( and x221 ( and ( not x220 ) ( and x219 ( and x218 ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and ( not x222 ) ( and x221 ( and ( not x220 ) ( and x219 ( and x218 ( and x217 true ) ) ) ) ) ) ( = tmp72 1000 ) ) + ( implies ( and ( not x222 ) ( and x221 ( and x220 ( and ( not x219 ) ( and ( not x218 ) ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 500 ) ) + ( implies ( and ( not x222 ) ( and x221 ( and x220 ( and ( not x219 ) ( and ( not x218 ) ( and x217 true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and ( not x222 ) ( and x221 ( and x220 ( and ( not x219 ) ( and x218 ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and ( not x222 ) ( and x221 ( and x220 ( and ( not x219 ) ( and x218 ( and x217 true ) ) ) ) ) ) ( = tmp72 1000 ) ) + ( implies ( and ( not x222 ) ( and x221 ( and x220 ( and x219 ( and ( not x218 ) ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and ( not x222 ) ( and x221 ( and x220 ( and x219 ( and ( not x218 ) ( and x217 true ) ) ) ) ) ) ( = tmp72 1000 ) ) + ( implies ( and ( not x222 ) ( and x221 ( and x220 ( and x219 ( and x218 ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 1000 ) ) + ( implies ( and ( not x222 ) ( and x221 ( and x220 ( and x219 ( and x218 ( and x217 true ) ) ) ) ) ) ( = tmp72 1250 ) ) + ( implies ( and x222 ( and ( not x221 ) ( and ( not x220 ) ( and ( not x219 ) ( and ( not x218 ) ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 250 ) ) + ( implies ( and x222 ( and ( not x221 ) ( and ( not x220 ) ( and ( not x219 ) ( and ( not x218 ) ( and x217 true ) ) ) ) ) ) ( = tmp72 500 ) ) + ( implies ( and x222 ( and ( not x221 ) ( and ( not x220 ) ( and ( not x219 ) ( and x218 ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 500 ) ) + ( implies ( and x222 ( and ( not x221 ) ( and ( not x220 ) ( and ( not x219 ) ( and x218 ( and x217 true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and x222 ( and ( not x221 ) ( and ( not x220 ) ( and x219 ( and ( not x218 ) ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 500 ) ) + ( implies ( and x222 ( and ( not x221 ) ( and ( not x220 ) ( and x219 ( and ( not x218 ) ( and x217 true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and x222 ( and ( not x221 ) ( and ( not x220 ) ( and x219 ( and x218 ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and x222 ( and ( not x221 ) ( and ( not x220 ) ( and x219 ( and x218 ( and x217 true ) ) ) ) ) ) ( = tmp72 1000 ) ) + ( implies ( and x222 ( and ( not x221 ) ( and x220 ( and ( not x219 ) ( and ( not x218 ) ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 500 ) ) + ( implies ( and x222 ( and ( not x221 ) ( and x220 ( and ( not x219 ) ( and ( not x218 ) ( and x217 true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and x222 ( and ( not x221 ) ( and x220 ( and ( not x219 ) ( and x218 ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and x222 ( and ( not x221 ) ( and x220 ( and ( not x219 ) ( and x218 ( and x217 true ) ) ) ) ) ) ( = tmp72 1000 ) ) + ( implies ( and x222 ( and ( not x221 ) ( and x220 ( and x219 ( and ( not x218 ) ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and x222 ( and ( not x221 ) ( and x220 ( and x219 ( and ( not x218 ) ( and x217 true ) ) ) ) ) ) ( = tmp72 1000 ) ) + ( implies ( and x222 ( and ( not x221 ) ( and x220 ( and x219 ( and x218 ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 1000 ) ) + ( implies ( and x222 ( and ( not x221 ) ( and x220 ( and x219 ( and x218 ( and x217 true ) ) ) ) ) ) ( = tmp72 1250 ) ) + ( implies ( and x222 ( and x221 ( and ( not x220 ) ( and ( not x219 ) ( and ( not x218 ) ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 500 ) ) + ( implies ( and x222 ( and x221 ( and ( not x220 ) ( and ( not x219 ) ( and ( not x218 ) ( and x217 true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and x222 ( and x221 ( and ( not x220 ) ( and ( not x219 ) ( and x218 ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and x222 ( and x221 ( and ( not x220 ) ( and ( not x219 ) ( and x218 ( and x217 true ) ) ) ) ) ) ( = tmp72 1000 ) ) + ( implies ( and x222 ( and x221 ( and ( not x220 ) ( and x219 ( and ( not x218 ) ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and x222 ( and x221 ( and ( not x220 ) ( and x219 ( and ( not x218 ) ( and x217 true ) ) ) ) ) ) ( = tmp72 1000 ) ) + ( implies ( and x222 ( and x221 ( and ( not x220 ) ( and x219 ( and x218 ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 1000 ) ) + ( implies ( and x222 ( and x221 ( and ( not x220 ) ( and x219 ( and x218 ( and x217 true ) ) ) ) ) ) ( = tmp72 1250 ) ) + ( implies ( and x222 ( and x221 ( and x220 ( and ( not x219 ) ( and ( not x218 ) ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 750 ) ) + ( implies ( and x222 ( and x221 ( and x220 ( and ( not x219 ) ( and ( not x218 ) ( and x217 true ) ) ) ) ) ) ( = tmp72 1000 ) ) + ( implies ( and x222 ( and x221 ( and x220 ( and ( not x219 ) ( and x218 ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 1000 ) ) + ( implies ( and x222 ( and x221 ( and x220 ( and ( not x219 ) ( and x218 ( and x217 true ) ) ) ) ) ) ( = tmp72 1250 ) ) + ( implies ( and x222 ( and x221 ( and x220 ( and x219 ( and ( not x218 ) ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 1000 ) ) + ( implies ( and x222 ( and x221 ( and x220 ( and x219 ( and ( not x218 ) ( and x217 true ) ) ) ) ) ) ( = tmp72 1250 ) ) + ( implies ( and x222 ( and x221 ( and x220 ( and x219 ( and x218 ( and ( not x217 ) true ) ) ) ) ) ) ( = tmp72 1250 ) ) + ( implies ( and x222 ( and x221 ( and x220 ( and x219 ( and x218 ( and x217 true ) ) ) ) ) ) ( = tmp72 1500 ) ) + ( implies ( and ( not x195 ) ( and ( not x196 ) ( and ( not x197 ) ( and ( not x198 ) ( and ( not x199 ) ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 0 ) ) + ( implies ( and ( not x195 ) ( and ( not x196 ) ( and ( not x197 ) ( and ( not x198 ) ( and ( not x199 ) ( and x200 true ) ) ) ) ) ) ( = tmp71 200 ) ) + ( implies ( and ( not x195 ) ( and ( not x196 ) ( and ( not x197 ) ( and ( not x198 ) ( and x199 ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 200 ) ) + ( implies ( and ( not x195 ) ( and ( not x196 ) ( and ( not x197 ) ( and ( not x198 ) ( and x199 ( and x200 true ) ) ) ) ) ) ( = tmp71 400 ) ) + ( implies ( and ( not x195 ) ( and ( not x196 ) ( and ( not x197 ) ( and x198 ( and ( not x199 ) ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 200 ) ) + ( implies ( and ( not x195 ) ( and ( not x196 ) ( and ( not x197 ) ( and x198 ( and ( not x199 ) ( and x200 true ) ) ) ) ) ) ( = tmp71 400 ) ) + ( implies ( and ( not x195 ) ( and ( not x196 ) ( and ( not x197 ) ( and x198 ( and x199 ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 400 ) ) + ( implies ( and ( not x195 ) ( and ( not x196 ) ( and ( not x197 ) ( and x198 ( and x199 ( and x200 true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and ( not x195 ) ( and ( not x196 ) ( and x197 ( and ( not x198 ) ( and ( not x199 ) ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 200 ) ) + ( implies ( and ( not x195 ) ( and ( not x196 ) ( and x197 ( and ( not x198 ) ( and ( not x199 ) ( and x200 true ) ) ) ) ) ) ( = tmp71 400 ) ) + ( implies ( and ( not x195 ) ( and ( not x196 ) ( and x197 ( and ( not x198 ) ( and x199 ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 400 ) ) + ( implies ( and ( not x195 ) ( and ( not x196 ) ( and x197 ( and ( not x198 ) ( and x199 ( and x200 true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and ( not x195 ) ( and ( not x196 ) ( and x197 ( and x198 ( and ( not x199 ) ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 400 ) ) + ( implies ( and ( not x195 ) ( and ( not x196 ) ( and x197 ( and x198 ( and ( not x199 ) ( and x200 true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and ( not x195 ) ( and ( not x196 ) ( and x197 ( and x198 ( and x199 ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and ( not x195 ) ( and ( not x196 ) ( and x197 ( and x198 ( and x199 ( and x200 true ) ) ) ) ) ) ( = tmp71 800 ) ) + ( implies ( and ( not x195 ) ( and x196 ( and ( not x197 ) ( and ( not x198 ) ( and ( not x199 ) ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 200 ) ) + ( implies ( and ( not x195 ) ( and x196 ( and ( not x197 ) ( and ( not x198 ) ( and ( not x199 ) ( and x200 true ) ) ) ) ) ) ( = tmp71 400 ) ) + ( implies ( and ( not x195 ) ( and x196 ( and ( not x197 ) ( and ( not x198 ) ( and x199 ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 400 ) ) + ( implies ( and ( not x195 ) ( and x196 ( and ( not x197 ) ( and ( not x198 ) ( and x199 ( and x200 true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and ( not x195 ) ( and x196 ( and ( not x197 ) ( and x198 ( and ( not x199 ) ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 400 ) ) + ( implies ( and ( not x195 ) ( and x196 ( and ( not x197 ) ( and x198 ( and ( not x199 ) ( and x200 true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and ( not x195 ) ( and x196 ( and ( not x197 ) ( and x198 ( and x199 ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and ( not x195 ) ( and x196 ( and ( not x197 ) ( and x198 ( and x199 ( and x200 true ) ) ) ) ) ) ( = tmp71 800 ) ) + ( implies ( and ( not x195 ) ( and x196 ( and x197 ( and ( not x198 ) ( and ( not x199 ) ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 400 ) ) + ( implies ( and ( not x195 ) ( and x196 ( and x197 ( and ( not x198 ) ( and ( not x199 ) ( and x200 true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and ( not x195 ) ( and x196 ( and x197 ( and ( not x198 ) ( and x199 ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and ( not x195 ) ( and x196 ( and x197 ( and ( not x198 ) ( and x199 ( and x200 true ) ) ) ) ) ) ( = tmp71 800 ) ) + ( implies ( and ( not x195 ) ( and x196 ( and x197 ( and x198 ( and ( not x199 ) ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and ( not x195 ) ( and x196 ( and x197 ( and x198 ( and ( not x199 ) ( and x200 true ) ) ) ) ) ) ( = tmp71 800 ) ) + ( implies ( and ( not x195 ) ( and x196 ( and x197 ( and x198 ( and x199 ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 800 ) ) + ( implies ( and ( not x195 ) ( and x196 ( and x197 ( and x198 ( and x199 ( and x200 true ) ) ) ) ) ) ( = tmp71 1000 ) ) + ( implies ( and x195 ( and ( not x196 ) ( and ( not x197 ) ( and ( not x198 ) ( and ( not x199 ) ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 200 ) ) + ( implies ( and x195 ( and ( not x196 ) ( and ( not x197 ) ( and ( not x198 ) ( and ( not x199 ) ( and x200 true ) ) ) ) ) ) ( = tmp71 400 ) ) + ( implies ( and x195 ( and ( not x196 ) ( and ( not x197 ) ( and ( not x198 ) ( and x199 ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 400 ) ) + ( implies ( and x195 ( and ( not x196 ) ( and ( not x197 ) ( and ( not x198 ) ( and x199 ( and x200 true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and x195 ( and ( not x196 ) ( and ( not x197 ) ( and x198 ( and ( not x199 ) ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 400 ) ) + ( implies ( and x195 ( and ( not x196 ) ( and ( not x197 ) ( and x198 ( and ( not x199 ) ( and x200 true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and x195 ( and ( not x196 ) ( and ( not x197 ) ( and x198 ( and x199 ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and x195 ( and ( not x196 ) ( and ( not x197 ) ( and x198 ( and x199 ( and x200 true ) ) ) ) ) ) ( = tmp71 800 ) ) + ( implies ( and x195 ( and ( not x196 ) ( and x197 ( and ( not x198 ) ( and ( not x199 ) ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 400 ) ) + ( implies ( and x195 ( and ( not x196 ) ( and x197 ( and ( not x198 ) ( and ( not x199 ) ( and x200 true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and x195 ( and ( not x196 ) ( and x197 ( and ( not x198 ) ( and x199 ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and x195 ( and ( not x196 ) ( and x197 ( and ( not x198 ) ( and x199 ( and x200 true ) ) ) ) ) ) ( = tmp71 800 ) ) + ( implies ( and x195 ( and ( not x196 ) ( and x197 ( and x198 ( and ( not x199 ) ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and x195 ( and ( not x196 ) ( and x197 ( and x198 ( and ( not x199 ) ( and x200 true ) ) ) ) ) ) ( = tmp71 800 ) ) + ( implies ( and x195 ( and ( not x196 ) ( and x197 ( and x198 ( and x199 ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 800 ) ) + ( implies ( and x195 ( and ( not x196 ) ( and x197 ( and x198 ( and x199 ( and x200 true ) ) ) ) ) ) ( = tmp71 1000 ) ) + ( implies ( and x195 ( and x196 ( and ( not x197 ) ( and ( not x198 ) ( and ( not x199 ) ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 400 ) ) + ( implies ( and x195 ( and x196 ( and ( not x197 ) ( and ( not x198 ) ( and ( not x199 ) ( and x200 true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and x195 ( and x196 ( and ( not x197 ) ( and ( not x198 ) ( and x199 ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and x195 ( and x196 ( and ( not x197 ) ( and ( not x198 ) ( and x199 ( and x200 true ) ) ) ) ) ) ( = tmp71 800 ) ) + ( implies ( and x195 ( and x196 ( and ( not x197 ) ( and x198 ( and ( not x199 ) ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and x195 ( and x196 ( and ( not x197 ) ( and x198 ( and ( not x199 ) ( and x200 true ) ) ) ) ) ) ( = tmp71 800 ) ) + ( implies ( and x195 ( and x196 ( and ( not x197 ) ( and x198 ( and x199 ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 800 ) ) + ( implies ( and x195 ( and x196 ( and ( not x197 ) ( and x198 ( and x199 ( and x200 true ) ) ) ) ) ) ( = tmp71 1000 ) ) + ( implies ( and x195 ( and x196 ( and x197 ( and ( not x198 ) ( and ( not x199 ) ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 600 ) ) + ( implies ( and x195 ( and x196 ( and x197 ( and ( not x198 ) ( and ( not x199 ) ( and x200 true ) ) ) ) ) ) ( = tmp71 800 ) ) + ( implies ( and x195 ( and x196 ( and x197 ( and ( not x198 ) ( and x199 ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 800 ) ) + ( implies ( and x195 ( and x196 ( and x197 ( and ( not x198 ) ( and x199 ( and x200 true ) ) ) ) ) ) ( = tmp71 1000 ) ) + ( implies ( and x195 ( and x196 ( and x197 ( and x198 ( and ( not x199 ) ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 800 ) ) + ( implies ( and x195 ( and x196 ( and x197 ( and x198 ( and ( not x199 ) ( and x200 true ) ) ) ) ) ) ( = tmp71 1000 ) ) + ( implies ( and x195 ( and x196 ( and x197 ( and x198 ( and x199 ( and ( not x200 ) true ) ) ) ) ) ) ( = tmp71 1000 ) ) + ( implies ( and x195 ( and x196 ( and x197 ( and x198 ( and x199 ( and x200 true ) ) ) ) ) ) ( = tmp71 1200 ) ) + ( implies ( and ( not x228 ) ( and ( not x227 ) ( and ( not x226 ) ( and ( not x225 ) ( and ( not x224 ) ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 0 ) ) + ( implies ( and ( not x228 ) ( and ( not x227 ) ( and ( not x226 ) ( and ( not x225 ) ( and ( not x224 ) ( and x223 true ) ) ) ) ) ) ( = tmp70 250 ) ) + ( implies ( and ( not x228 ) ( and ( not x227 ) ( and ( not x226 ) ( and ( not x225 ) ( and x224 ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 250 ) ) + ( implies ( and ( not x228 ) ( and ( not x227 ) ( and ( not x226 ) ( and ( not x225 ) ( and x224 ( and x223 true ) ) ) ) ) ) ( = tmp70 500 ) ) + ( implies ( and ( not x228 ) ( and ( not x227 ) ( and ( not x226 ) ( and x225 ( and ( not x224 ) ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 500 ) ) + ( implies ( and ( not x228 ) ( and ( not x227 ) ( and ( not x226 ) ( and x225 ( and ( not x224 ) ( and x223 true ) ) ) ) ) ) ( = tmp70 750 ) ) + ( implies ( and ( not x228 ) ( and ( not x227 ) ( and ( not x226 ) ( and x225 ( and x224 ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 750 ) ) + ( implies ( and ( not x228 ) ( and ( not x227 ) ( and ( not x226 ) ( and x225 ( and x224 ( and x223 true ) ) ) ) ) ) ( = tmp70 1000 ) ) + ( implies ( and ( not x228 ) ( and ( not x227 ) ( and x226 ( and ( not x225 ) ( and ( not x224 ) ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 500 ) ) + ( implies ( and ( not x228 ) ( and ( not x227 ) ( and x226 ( and ( not x225 ) ( and ( not x224 ) ( and x223 true ) ) ) ) ) ) ( = tmp70 750 ) ) + ( implies ( and ( not x228 ) ( and ( not x227 ) ( and x226 ( and ( not x225 ) ( and x224 ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 750 ) ) + ( implies ( and ( not x228 ) ( and ( not x227 ) ( and x226 ( and ( not x225 ) ( and x224 ( and x223 true ) ) ) ) ) ) ( = tmp70 1000 ) ) + ( implies ( and ( not x228 ) ( and ( not x227 ) ( and x226 ( and x225 ( and ( not x224 ) ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1000 ) ) + ( implies ( and ( not x228 ) ( and ( not x227 ) ( and x226 ( and x225 ( and ( not x224 ) ( and x223 true ) ) ) ) ) ) ( = tmp70 1250 ) ) + ( implies ( and ( not x228 ) ( and ( not x227 ) ( and x226 ( and x225 ( and x224 ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1250 ) ) + ( implies ( and ( not x228 ) ( and ( not x227 ) ( and x226 ( and x225 ( and x224 ( and x223 true ) ) ) ) ) ) ( = tmp70 1500 ) ) + ( implies ( and ( not x228 ) ( and x227 ( and ( not x226 ) ( and ( not x225 ) ( and ( not x224 ) ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 500 ) ) + ( implies ( and ( not x228 ) ( and x227 ( and ( not x226 ) ( and ( not x225 ) ( and ( not x224 ) ( and x223 true ) ) ) ) ) ) ( = tmp70 750 ) ) + ( implies ( and ( not x228 ) ( and x227 ( and ( not x226 ) ( and ( not x225 ) ( and x224 ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 750 ) ) + ( implies ( and ( not x228 ) ( and x227 ( and ( not x226 ) ( and ( not x225 ) ( and x224 ( and x223 true ) ) ) ) ) ) ( = tmp70 1000 ) ) + ( implies ( and ( not x228 ) ( and x227 ( and ( not x226 ) ( and x225 ( and ( not x224 ) ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1000 ) ) + ( implies ( and ( not x228 ) ( and x227 ( and ( not x226 ) ( and x225 ( and ( not x224 ) ( and x223 true ) ) ) ) ) ) ( = tmp70 1250 ) ) + ( implies ( and ( not x228 ) ( and x227 ( and ( not x226 ) ( and x225 ( and x224 ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1250 ) ) + ( implies ( and ( not x228 ) ( and x227 ( and ( not x226 ) ( and x225 ( and x224 ( and x223 true ) ) ) ) ) ) ( = tmp70 1500 ) ) + ( implies ( and ( not x228 ) ( and x227 ( and x226 ( and ( not x225 ) ( and ( not x224 ) ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1000 ) ) + ( implies ( and ( not x228 ) ( and x227 ( and x226 ( and ( not x225 ) ( and ( not x224 ) ( and x223 true ) ) ) ) ) ) ( = tmp70 1250 ) ) + ( implies ( and ( not x228 ) ( and x227 ( and x226 ( and ( not x225 ) ( and x224 ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1250 ) ) + ( implies ( and ( not x228 ) ( and x227 ( and x226 ( and ( not x225 ) ( and x224 ( and x223 true ) ) ) ) ) ) ( = tmp70 1500 ) ) + ( implies ( and ( not x228 ) ( and x227 ( and x226 ( and x225 ( and ( not x224 ) ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1500 ) ) + ( implies ( and ( not x228 ) ( and x227 ( and x226 ( and x225 ( and ( not x224 ) ( and x223 true ) ) ) ) ) ) ( = tmp70 1750 ) ) + ( implies ( and ( not x228 ) ( and x227 ( and x226 ( and x225 ( and x224 ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1750 ) ) + ( implies ( and ( not x228 ) ( and x227 ( and x226 ( and x225 ( and x224 ( and x223 true ) ) ) ) ) ) ( = tmp70 2000 ) ) + ( implies ( and x228 ( and ( not x227 ) ( and ( not x226 ) ( and ( not x225 ) ( and ( not x224 ) ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 500 ) ) + ( implies ( and x228 ( and ( not x227 ) ( and ( not x226 ) ( and ( not x225 ) ( and ( not x224 ) ( and x223 true ) ) ) ) ) ) ( = tmp70 750 ) ) + ( implies ( and x228 ( and ( not x227 ) ( and ( not x226 ) ( and ( not x225 ) ( and x224 ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 750 ) ) + ( implies ( and x228 ( and ( not x227 ) ( and ( not x226 ) ( and ( not x225 ) ( and x224 ( and x223 true ) ) ) ) ) ) ( = tmp70 1000 ) ) + ( implies ( and x228 ( and ( not x227 ) ( and ( not x226 ) ( and x225 ( and ( not x224 ) ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1000 ) ) + ( implies ( and x228 ( and ( not x227 ) ( and ( not x226 ) ( and x225 ( and ( not x224 ) ( and x223 true ) ) ) ) ) ) ( = tmp70 1250 ) ) + ( implies ( and x228 ( and ( not x227 ) ( and ( not x226 ) ( and x225 ( and x224 ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1250 ) ) + ( implies ( and x228 ( and ( not x227 ) ( and ( not x226 ) ( and x225 ( and x224 ( and x223 true ) ) ) ) ) ) ( = tmp70 1500 ) ) + ( implies ( and x228 ( and ( not x227 ) ( and x226 ( and ( not x225 ) ( and ( not x224 ) ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1000 ) ) + ( implies ( and x228 ( and ( not x227 ) ( and x226 ( and ( not x225 ) ( and ( not x224 ) ( and x223 true ) ) ) ) ) ) ( = tmp70 1250 ) ) + ( implies ( and x228 ( and ( not x227 ) ( and x226 ( and ( not x225 ) ( and x224 ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1250 ) ) + ( implies ( and x228 ( and ( not x227 ) ( and x226 ( and ( not x225 ) ( and x224 ( and x223 true ) ) ) ) ) ) ( = tmp70 1500 ) ) + ( implies ( and x228 ( and ( not x227 ) ( and x226 ( and x225 ( and ( not x224 ) ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1500 ) ) + ( implies ( and x228 ( and ( not x227 ) ( and x226 ( and x225 ( and ( not x224 ) ( and x223 true ) ) ) ) ) ) ( = tmp70 1750 ) ) + ( implies ( and x228 ( and ( not x227 ) ( and x226 ( and x225 ( and x224 ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1750 ) ) + ( implies ( and x228 ( and ( not x227 ) ( and x226 ( and x225 ( and x224 ( and x223 true ) ) ) ) ) ) ( = tmp70 2000 ) ) + ( implies ( and x228 ( and x227 ( and ( not x226 ) ( and ( not x225 ) ( and ( not x224 ) ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1000 ) ) + ( implies ( and x228 ( and x227 ( and ( not x226 ) ( and ( not x225 ) ( and ( not x224 ) ( and x223 true ) ) ) ) ) ) ( = tmp70 1250 ) ) + ( implies ( and x228 ( and x227 ( and ( not x226 ) ( and ( not x225 ) ( and x224 ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1250 ) ) + ( implies ( and x228 ( and x227 ( and ( not x226 ) ( and ( not x225 ) ( and x224 ( and x223 true ) ) ) ) ) ) ( = tmp70 1500 ) ) + ( implies ( and x228 ( and x227 ( and ( not x226 ) ( and x225 ( and ( not x224 ) ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1500 ) ) + ( implies ( and x228 ( and x227 ( and ( not x226 ) ( and x225 ( and ( not x224 ) ( and x223 true ) ) ) ) ) ) ( = tmp70 1750 ) ) + ( implies ( and x228 ( and x227 ( and ( not x226 ) ( and x225 ( and x224 ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1750 ) ) + ( implies ( and x228 ( and x227 ( and ( not x226 ) ( and x225 ( and x224 ( and x223 true ) ) ) ) ) ) ( = tmp70 2000 ) ) + ( implies ( and x228 ( and x227 ( and x226 ( and ( not x225 ) ( and ( not x224 ) ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1500 ) ) + ( implies ( and x228 ( and x227 ( and x226 ( and ( not x225 ) ( and ( not x224 ) ( and x223 true ) ) ) ) ) ) ( = tmp70 1750 ) ) + ( implies ( and x228 ( and x227 ( and x226 ( and ( not x225 ) ( and x224 ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 1750 ) ) + ( implies ( and x228 ( and x227 ( and x226 ( and ( not x225 ) ( and x224 ( and x223 true ) ) ) ) ) ) ( = tmp70 2000 ) ) + ( implies ( and x228 ( and x227 ( and x226 ( and x225 ( and ( not x224 ) ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 2000 ) ) + ( implies ( and x228 ( and x227 ( and x226 ( and x225 ( and ( not x224 ) ( and x223 true ) ) ) ) ) ) ( = tmp70 2250 ) ) + ( implies ( and x228 ( and x227 ( and x226 ( and x225 ( and x224 ( and ( not x223 ) true ) ) ) ) ) ) ( = tmp70 2250 ) ) + ( implies ( and x228 ( and x227 ( and x226 ( and x225 ( and x224 ( and x223 true ) ) ) ) ) ) ( = tmp70 2500 ) ) + ( implies ( and ( not x189 ) ( and ( not x190 ) ( and ( not x191 ) ( and ( not x192 ) ( and ( not x193 ) ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 0 ) ) + ( implies ( and ( not x189 ) ( and ( not x190 ) ( and ( not x191 ) ( and ( not x192 ) ( and ( not x193 ) ( and x194 true ) ) ) ) ) ) ( = tmp69 200 ) ) + ( implies ( and ( not x189 ) ( and ( not x190 ) ( and ( not x191 ) ( and ( not x192 ) ( and x193 ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 200 ) ) + ( implies ( and ( not x189 ) ( and ( not x190 ) ( and ( not x191 ) ( and ( not x192 ) ( and x193 ( and x194 true ) ) ) ) ) ) ( = tmp69 400 ) ) + ( implies ( and ( not x189 ) ( and ( not x190 ) ( and ( not x191 ) ( and x192 ( and ( not x193 ) ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 200 ) ) + ( implies ( and ( not x189 ) ( and ( not x190 ) ( and ( not x191 ) ( and x192 ( and ( not x193 ) ( and x194 true ) ) ) ) ) ) ( = tmp69 400 ) ) + ( implies ( and ( not x189 ) ( and ( not x190 ) ( and ( not x191 ) ( and x192 ( and x193 ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 400 ) ) + ( implies ( and ( not x189 ) ( and ( not x190 ) ( and ( not x191 ) ( and x192 ( and x193 ( and x194 true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and ( not x189 ) ( and ( not x190 ) ( and x191 ( and ( not x192 ) ( and ( not x193 ) ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 200 ) ) + ( implies ( and ( not x189 ) ( and ( not x190 ) ( and x191 ( and ( not x192 ) ( and ( not x193 ) ( and x194 true ) ) ) ) ) ) ( = tmp69 400 ) ) + ( implies ( and ( not x189 ) ( and ( not x190 ) ( and x191 ( and ( not x192 ) ( and x193 ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 400 ) ) + ( implies ( and ( not x189 ) ( and ( not x190 ) ( and x191 ( and ( not x192 ) ( and x193 ( and x194 true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and ( not x189 ) ( and ( not x190 ) ( and x191 ( and x192 ( and ( not x193 ) ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 400 ) ) + ( implies ( and ( not x189 ) ( and ( not x190 ) ( and x191 ( and x192 ( and ( not x193 ) ( and x194 true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and ( not x189 ) ( and ( not x190 ) ( and x191 ( and x192 ( and x193 ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and ( not x189 ) ( and ( not x190 ) ( and x191 ( and x192 ( and x193 ( and x194 true ) ) ) ) ) ) ( = tmp69 800 ) ) + ( implies ( and ( not x189 ) ( and x190 ( and ( not x191 ) ( and ( not x192 ) ( and ( not x193 ) ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 200 ) ) + ( implies ( and ( not x189 ) ( and x190 ( and ( not x191 ) ( and ( not x192 ) ( and ( not x193 ) ( and x194 true ) ) ) ) ) ) ( = tmp69 400 ) ) + ( implies ( and ( not x189 ) ( and x190 ( and ( not x191 ) ( and ( not x192 ) ( and x193 ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 400 ) ) + ( implies ( and ( not x189 ) ( and x190 ( and ( not x191 ) ( and ( not x192 ) ( and x193 ( and x194 true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and ( not x189 ) ( and x190 ( and ( not x191 ) ( and x192 ( and ( not x193 ) ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 400 ) ) + ( implies ( and ( not x189 ) ( and x190 ( and ( not x191 ) ( and x192 ( and ( not x193 ) ( and x194 true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and ( not x189 ) ( and x190 ( and ( not x191 ) ( and x192 ( and x193 ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and ( not x189 ) ( and x190 ( and ( not x191 ) ( and x192 ( and x193 ( and x194 true ) ) ) ) ) ) ( = tmp69 800 ) ) + ( implies ( and ( not x189 ) ( and x190 ( and x191 ( and ( not x192 ) ( and ( not x193 ) ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 400 ) ) + ( implies ( and ( not x189 ) ( and x190 ( and x191 ( and ( not x192 ) ( and ( not x193 ) ( and x194 true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and ( not x189 ) ( and x190 ( and x191 ( and ( not x192 ) ( and x193 ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and ( not x189 ) ( and x190 ( and x191 ( and ( not x192 ) ( and x193 ( and x194 true ) ) ) ) ) ) ( = tmp69 800 ) ) + ( implies ( and ( not x189 ) ( and x190 ( and x191 ( and x192 ( and ( not x193 ) ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and ( not x189 ) ( and x190 ( and x191 ( and x192 ( and ( not x193 ) ( and x194 true ) ) ) ) ) ) ( = tmp69 800 ) ) + ( implies ( and ( not x189 ) ( and x190 ( and x191 ( and x192 ( and x193 ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 800 ) ) + ( implies ( and ( not x189 ) ( and x190 ( and x191 ( and x192 ( and x193 ( and x194 true ) ) ) ) ) ) ( = tmp69 1000 ) ) + ( implies ( and x189 ( and ( not x190 ) ( and ( not x191 ) ( and ( not x192 ) ( and ( not x193 ) ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 200 ) ) + ( implies ( and x189 ( and ( not x190 ) ( and ( not x191 ) ( and ( not x192 ) ( and ( not x193 ) ( and x194 true ) ) ) ) ) ) ( = tmp69 400 ) ) + ( implies ( and x189 ( and ( not x190 ) ( and ( not x191 ) ( and ( not x192 ) ( and x193 ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 400 ) ) + ( implies ( and x189 ( and ( not x190 ) ( and ( not x191 ) ( and ( not x192 ) ( and x193 ( and x194 true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and x189 ( and ( not x190 ) ( and ( not x191 ) ( and x192 ( and ( not x193 ) ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 400 ) ) + ( implies ( and x189 ( and ( not x190 ) ( and ( not x191 ) ( and x192 ( and ( not x193 ) ( and x194 true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and x189 ( and ( not x190 ) ( and ( not x191 ) ( and x192 ( and x193 ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and x189 ( and ( not x190 ) ( and ( not x191 ) ( and x192 ( and x193 ( and x194 true ) ) ) ) ) ) ( = tmp69 800 ) ) + ( implies ( and x189 ( and ( not x190 ) ( and x191 ( and ( not x192 ) ( and ( not x193 ) ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 400 ) ) + ( implies ( and x189 ( and ( not x190 ) ( and x191 ( and ( not x192 ) ( and ( not x193 ) ( and x194 true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and x189 ( and ( not x190 ) ( and x191 ( and ( not x192 ) ( and x193 ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and x189 ( and ( not x190 ) ( and x191 ( and ( not x192 ) ( and x193 ( and x194 true ) ) ) ) ) ) ( = tmp69 800 ) ) + ( implies ( and x189 ( and ( not x190 ) ( and x191 ( and x192 ( and ( not x193 ) ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and x189 ( and ( not x190 ) ( and x191 ( and x192 ( and ( not x193 ) ( and x194 true ) ) ) ) ) ) ( = tmp69 800 ) ) + ( implies ( and x189 ( and ( not x190 ) ( and x191 ( and x192 ( and x193 ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 800 ) ) + ( implies ( and x189 ( and ( not x190 ) ( and x191 ( and x192 ( and x193 ( and x194 true ) ) ) ) ) ) ( = tmp69 1000 ) ) + ( implies ( and x189 ( and x190 ( and ( not x191 ) ( and ( not x192 ) ( and ( not x193 ) ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 400 ) ) + ( implies ( and x189 ( and x190 ( and ( not x191 ) ( and ( not x192 ) ( and ( not x193 ) ( and x194 true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and x189 ( and x190 ( and ( not x191 ) ( and ( not x192 ) ( and x193 ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and x189 ( and x190 ( and ( not x191 ) ( and ( not x192 ) ( and x193 ( and x194 true ) ) ) ) ) ) ( = tmp69 800 ) ) + ( implies ( and x189 ( and x190 ( and ( not x191 ) ( and x192 ( and ( not x193 ) ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and x189 ( and x190 ( and ( not x191 ) ( and x192 ( and ( not x193 ) ( and x194 true ) ) ) ) ) ) ( = tmp69 800 ) ) + ( implies ( and x189 ( and x190 ( and ( not x191 ) ( and x192 ( and x193 ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 800 ) ) + ( implies ( and x189 ( and x190 ( and ( not x191 ) ( and x192 ( and x193 ( and x194 true ) ) ) ) ) ) ( = tmp69 1000 ) ) + ( implies ( and x189 ( and x190 ( and x191 ( and ( not x192 ) ( and ( not x193 ) ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 600 ) ) + ( implies ( and x189 ( and x190 ( and x191 ( and ( not x192 ) ( and ( not x193 ) ( and x194 true ) ) ) ) ) ) ( = tmp69 800 ) ) + ( implies ( and x189 ( and x190 ( and x191 ( and ( not x192 ) ( and x193 ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 800 ) ) + ( implies ( and x189 ( and x190 ( and x191 ( and ( not x192 ) ( and x193 ( and x194 true ) ) ) ) ) ) ( = tmp69 1000 ) ) + ( implies ( and x189 ( and x190 ( and x191 ( and x192 ( and ( not x193 ) ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 800 ) ) + ( implies ( and x189 ( and x190 ( and x191 ( and x192 ( and ( not x193 ) ( and x194 true ) ) ) ) ) ) ( = tmp69 1000 ) ) + ( implies ( and x189 ( and x190 ( and x191 ( and x192 ( and x193 ( and ( not x194 ) true ) ) ) ) ) ) ( = tmp69 1000 ) ) + ( implies ( and x189 ( and x190 ( and x191 ( and x192 ( and x193 ( and x194 true ) ) ) ) ) ) ( = tmp69 1200 ) ) + ( implies ( and ( not x234 ) ( and ( not x233 ) ( and ( not x232 ) ( and ( not x231 ) ( and ( not x230 ) ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 0 ) ) + ( implies ( and ( not x234 ) ( and ( not x233 ) ( and ( not x232 ) ( and ( not x231 ) ( and ( not x230 ) ( and x229 true ) ) ) ) ) ) ( = tmp68 500 ) ) + ( implies ( and ( not x234 ) ( and ( not x233 ) ( and ( not x232 ) ( and ( not x231 ) ( and x230 ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 500 ) ) + ( implies ( and ( not x234 ) ( and ( not x233 ) ( and ( not x232 ) ( and ( not x231 ) ( and x230 ( and x229 true ) ) ) ) ) ) ( = tmp68 1000 ) ) + ( implies ( and ( not x234 ) ( and ( not x233 ) ( and ( not x232 ) ( and x231 ( and ( not x230 ) ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 500 ) ) + ( implies ( and ( not x234 ) ( and ( not x233 ) ( and ( not x232 ) ( and x231 ( and ( not x230 ) ( and x229 true ) ) ) ) ) ) ( = tmp68 1000 ) ) + ( implies ( and ( not x234 ) ( and ( not x233 ) ( and ( not x232 ) ( and x231 ( and x230 ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1000 ) ) + ( implies ( and ( not x234 ) ( and ( not x233 ) ( and ( not x232 ) ( and x231 ( and x230 ( and x229 true ) ) ) ) ) ) ( = tmp68 1500 ) ) + ( implies ( and ( not x234 ) ( and ( not x233 ) ( and x232 ( and ( not x231 ) ( and ( not x230 ) ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 500 ) ) + ( implies ( and ( not x234 ) ( and ( not x233 ) ( and x232 ( and ( not x231 ) ( and ( not x230 ) ( and x229 true ) ) ) ) ) ) ( = tmp68 1000 ) ) + ( implies ( and ( not x234 ) ( and ( not x233 ) ( and x232 ( and ( not x231 ) ( and x230 ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1000 ) ) + ( implies ( and ( not x234 ) ( and ( not x233 ) ( and x232 ( and ( not x231 ) ( and x230 ( and x229 true ) ) ) ) ) ) ( = tmp68 1500 ) ) + ( implies ( and ( not x234 ) ( and ( not x233 ) ( and x232 ( and x231 ( and ( not x230 ) ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1000 ) ) + ( implies ( and ( not x234 ) ( and ( not x233 ) ( and x232 ( and x231 ( and ( not x230 ) ( and x229 true ) ) ) ) ) ) ( = tmp68 1500 ) ) + ( implies ( and ( not x234 ) ( and ( not x233 ) ( and x232 ( and x231 ( and x230 ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1500 ) ) + ( implies ( and ( not x234 ) ( and ( not x233 ) ( and x232 ( and x231 ( and x230 ( and x229 true ) ) ) ) ) ) ( = tmp68 2000 ) ) + ( implies ( and ( not x234 ) ( and x233 ( and ( not x232 ) ( and ( not x231 ) ( and ( not x230 ) ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 300 ) ) + ( implies ( and ( not x234 ) ( and x233 ( and ( not x232 ) ( and ( not x231 ) ( and ( not x230 ) ( and x229 true ) ) ) ) ) ) ( = tmp68 800 ) ) + ( implies ( and ( not x234 ) ( and x233 ( and ( not x232 ) ( and ( not x231 ) ( and x230 ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 800 ) ) + ( implies ( and ( not x234 ) ( and x233 ( and ( not x232 ) ( and ( not x231 ) ( and x230 ( and x229 true ) ) ) ) ) ) ( = tmp68 1300 ) ) + ( implies ( and ( not x234 ) ( and x233 ( and ( not x232 ) ( and x231 ( and ( not x230 ) ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 800 ) ) + ( implies ( and ( not x234 ) ( and x233 ( and ( not x232 ) ( and x231 ( and ( not x230 ) ( and x229 true ) ) ) ) ) ) ( = tmp68 1300 ) ) + ( implies ( and ( not x234 ) ( and x233 ( and ( not x232 ) ( and x231 ( and x230 ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1300 ) ) + ( implies ( and ( not x234 ) ( and x233 ( and ( not x232 ) ( and x231 ( and x230 ( and x229 true ) ) ) ) ) ) ( = tmp68 1800 ) ) + ( implies ( and ( not x234 ) ( and x233 ( and x232 ( and ( not x231 ) ( and ( not x230 ) ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 800 ) ) + ( implies ( and ( not x234 ) ( and x233 ( and x232 ( and ( not x231 ) ( and ( not x230 ) ( and x229 true ) ) ) ) ) ) ( = tmp68 1300 ) ) + ( implies ( and ( not x234 ) ( and x233 ( and x232 ( and ( not x231 ) ( and x230 ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1300 ) ) + ( implies ( and ( not x234 ) ( and x233 ( and x232 ( and ( not x231 ) ( and x230 ( and x229 true ) ) ) ) ) ) ( = tmp68 1800 ) ) + ( implies ( and ( not x234 ) ( and x233 ( and x232 ( and x231 ( and ( not x230 ) ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1300 ) ) + ( implies ( and ( not x234 ) ( and x233 ( and x232 ( and x231 ( and ( not x230 ) ( and x229 true ) ) ) ) ) ) ( = tmp68 1800 ) ) + ( implies ( and ( not x234 ) ( and x233 ( and x232 ( and x231 ( and x230 ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1800 ) ) + ( implies ( and ( not x234 ) ( and x233 ( and x232 ( and x231 ( and x230 ( and x229 true ) ) ) ) ) ) ( = tmp68 2300 ) ) + ( implies ( and x234 ( and ( not x233 ) ( and ( not x232 ) ( and ( not x231 ) ( and ( not x230 ) ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 300 ) ) + ( implies ( and x234 ( and ( not x233 ) ( and ( not x232 ) ( and ( not x231 ) ( and ( not x230 ) ( and x229 true ) ) ) ) ) ) ( = tmp68 800 ) ) + ( implies ( and x234 ( and ( not x233 ) ( and ( not x232 ) ( and ( not x231 ) ( and x230 ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 800 ) ) + ( implies ( and x234 ( and ( not x233 ) ( and ( not x232 ) ( and ( not x231 ) ( and x230 ( and x229 true ) ) ) ) ) ) ( = tmp68 1300 ) ) + ( implies ( and x234 ( and ( not x233 ) ( and ( not x232 ) ( and x231 ( and ( not x230 ) ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 800 ) ) + ( implies ( and x234 ( and ( not x233 ) ( and ( not x232 ) ( and x231 ( and ( not x230 ) ( and x229 true ) ) ) ) ) ) ( = tmp68 1300 ) ) + ( implies ( and x234 ( and ( not x233 ) ( and ( not x232 ) ( and x231 ( and x230 ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1300 ) ) + ( implies ( and x234 ( and ( not x233 ) ( and ( not x232 ) ( and x231 ( and x230 ( and x229 true ) ) ) ) ) ) ( = tmp68 1800 ) ) + ( implies ( and x234 ( and ( not x233 ) ( and x232 ( and ( not x231 ) ( and ( not x230 ) ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 800 ) ) + ( implies ( and x234 ( and ( not x233 ) ( and x232 ( and ( not x231 ) ( and ( not x230 ) ( and x229 true ) ) ) ) ) ) ( = tmp68 1300 ) ) + ( implies ( and x234 ( and ( not x233 ) ( and x232 ( and ( not x231 ) ( and x230 ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1300 ) ) + ( implies ( and x234 ( and ( not x233 ) ( and x232 ( and ( not x231 ) ( and x230 ( and x229 true ) ) ) ) ) ) ( = tmp68 1800 ) ) + ( implies ( and x234 ( and ( not x233 ) ( and x232 ( and x231 ( and ( not x230 ) ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1300 ) ) + ( implies ( and x234 ( and ( not x233 ) ( and x232 ( and x231 ( and ( not x230 ) ( and x229 true ) ) ) ) ) ) ( = tmp68 1800 ) ) + ( implies ( and x234 ( and ( not x233 ) ( and x232 ( and x231 ( and x230 ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1800 ) ) + ( implies ( and x234 ( and ( not x233 ) ( and x232 ( and x231 ( and x230 ( and x229 true ) ) ) ) ) ) ( = tmp68 2300 ) ) + ( implies ( and x234 ( and x233 ( and ( not x232 ) ( and ( not x231 ) ( and ( not x230 ) ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 600 ) ) + ( implies ( and x234 ( and x233 ( and ( not x232 ) ( and ( not x231 ) ( and ( not x230 ) ( and x229 true ) ) ) ) ) ) ( = tmp68 1100 ) ) + ( implies ( and x234 ( and x233 ( and ( not x232 ) ( and ( not x231 ) ( and x230 ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1100 ) ) + ( implies ( and x234 ( and x233 ( and ( not x232 ) ( and ( not x231 ) ( and x230 ( and x229 true ) ) ) ) ) ) ( = tmp68 1600 ) ) + ( implies ( and x234 ( and x233 ( and ( not x232 ) ( and x231 ( and ( not x230 ) ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1100 ) ) + ( implies ( and x234 ( and x233 ( and ( not x232 ) ( and x231 ( and ( not x230 ) ( and x229 true ) ) ) ) ) ) ( = tmp68 1600 ) ) + ( implies ( and x234 ( and x233 ( and ( not x232 ) ( and x231 ( and x230 ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1600 ) ) + ( implies ( and x234 ( and x233 ( and ( not x232 ) ( and x231 ( and x230 ( and x229 true ) ) ) ) ) ) ( = tmp68 2100 ) ) + ( implies ( and x234 ( and x233 ( and x232 ( and ( not x231 ) ( and ( not x230 ) ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1100 ) ) + ( implies ( and x234 ( and x233 ( and x232 ( and ( not x231 ) ( and ( not x230 ) ( and x229 true ) ) ) ) ) ) ( = tmp68 1600 ) ) + ( implies ( and x234 ( and x233 ( and x232 ( and ( not x231 ) ( and x230 ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1600 ) ) + ( implies ( and x234 ( and x233 ( and x232 ( and ( not x231 ) ( and x230 ( and x229 true ) ) ) ) ) ) ( = tmp68 2100 ) ) + ( implies ( and x234 ( and x233 ( and x232 ( and x231 ( and ( not x230 ) ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 1600 ) ) + ( implies ( and x234 ( and x233 ( and x232 ( and x231 ( and ( not x230 ) ( and x229 true ) ) ) ) ) ) ( = tmp68 2100 ) ) + ( implies ( and x234 ( and x233 ( and x232 ( and x231 ( and x230 ( and ( not x229 ) true ) ) ) ) ) ) ( = tmp68 2100 ) ) + ( implies ( and x234 ( and x233 ( and x232 ( and x231 ( and x230 ( and x229 true ) ) ) ) ) ) ( = tmp68 2600 ) ) + ( implies ( and ( not x183 ) ( and ( not x184 ) ( and ( not x185 ) ( and ( not x186 ) ( and ( not x187 ) ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 0 ) ) + ( implies ( and ( not x183 ) ( and ( not x184 ) ( and ( not x185 ) ( and ( not x186 ) ( and ( not x187 ) ( and x188 true ) ) ) ) ) ) ( = tmp67 200 ) ) + ( implies ( and ( not x183 ) ( and ( not x184 ) ( and ( not x185 ) ( and ( not x186 ) ( and x187 ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 200 ) ) + ( implies ( and ( not x183 ) ( and ( not x184 ) ( and ( not x185 ) ( and ( not x186 ) ( and x187 ( and x188 true ) ) ) ) ) ) ( = tmp67 400 ) ) + ( implies ( and ( not x183 ) ( and ( not x184 ) ( and ( not x185 ) ( and x186 ( and ( not x187 ) ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 200 ) ) + ( implies ( and ( not x183 ) ( and ( not x184 ) ( and ( not x185 ) ( and x186 ( and ( not x187 ) ( and x188 true ) ) ) ) ) ) ( = tmp67 400 ) ) + ( implies ( and ( not x183 ) ( and ( not x184 ) ( and ( not x185 ) ( and x186 ( and x187 ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 400 ) ) + ( implies ( and ( not x183 ) ( and ( not x184 ) ( and ( not x185 ) ( and x186 ( and x187 ( and x188 true ) ) ) ) ) ) ( = tmp67 600 ) ) + ( implies ( and ( not x183 ) ( and ( not x184 ) ( and x185 ( and ( not x186 ) ( and ( not x187 ) ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 200 ) ) + ( implies ( and ( not x183 ) ( and ( not x184 ) ( and x185 ( and ( not x186 ) ( and ( not x187 ) ( and x188 true ) ) ) ) ) ) ( = tmp67 400 ) ) + ( implies ( and ( not x183 ) ( and ( not x184 ) ( and x185 ( and ( not x186 ) ( and x187 ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 400 ) ) + ( implies ( and ( not x183 ) ( and ( not x184 ) ( and x185 ( and ( not x186 ) ( and x187 ( and x188 true ) ) ) ) ) ) ( = tmp67 600 ) ) + ( implies ( and ( not x183 ) ( and ( not x184 ) ( and x185 ( and x186 ( and ( not x187 ) ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 400 ) ) + ( implies ( and ( not x183 ) ( and ( not x184 ) ( and x185 ( and x186 ( and ( not x187 ) ( and x188 true ) ) ) ) ) ) ( = tmp67 600 ) ) + ( implies ( and ( not x183 ) ( and ( not x184 ) ( and x185 ( and x186 ( and x187 ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 600 ) ) + ( implies ( and ( not x183 ) ( and ( not x184 ) ( and x185 ( and x186 ( and x187 ( and x188 true ) ) ) ) ) ) ( = tmp67 800 ) ) + ( implies ( and ( not x183 ) ( and x184 ( and ( not x185 ) ( and ( not x186 ) ( and ( not x187 ) ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 100 ) ) + ( implies ( and ( not x183 ) ( and x184 ( and ( not x185 ) ( and ( not x186 ) ( and ( not x187 ) ( and x188 true ) ) ) ) ) ) ( = tmp67 300 ) ) + ( implies ( and ( not x183 ) ( and x184 ( and ( not x185 ) ( and ( not x186 ) ( and x187 ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 300 ) ) + ( implies ( and ( not x183 ) ( and x184 ( and ( not x185 ) ( and ( not x186 ) ( and x187 ( and x188 true ) ) ) ) ) ) ( = tmp67 500 ) ) + ( implies ( and ( not x183 ) ( and x184 ( and ( not x185 ) ( and x186 ( and ( not x187 ) ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 300 ) ) + ( implies ( and ( not x183 ) ( and x184 ( and ( not x185 ) ( and x186 ( and ( not x187 ) ( and x188 true ) ) ) ) ) ) ( = tmp67 500 ) ) + ( implies ( and ( not x183 ) ( and x184 ( and ( not x185 ) ( and x186 ( and x187 ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 500 ) ) + ( implies ( and ( not x183 ) ( and x184 ( and ( not x185 ) ( and x186 ( and x187 ( and x188 true ) ) ) ) ) ) ( = tmp67 700 ) ) + ( implies ( and ( not x183 ) ( and x184 ( and x185 ( and ( not x186 ) ( and ( not x187 ) ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 300 ) ) + ( implies ( and ( not x183 ) ( and x184 ( and x185 ( and ( not x186 ) ( and ( not x187 ) ( and x188 true ) ) ) ) ) ) ( = tmp67 500 ) ) + ( implies ( and ( not x183 ) ( and x184 ( and x185 ( and ( not x186 ) ( and x187 ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 500 ) ) + ( implies ( and ( not x183 ) ( and x184 ( and x185 ( and ( not x186 ) ( and x187 ( and x188 true ) ) ) ) ) ) ( = tmp67 700 ) ) + ( implies ( and ( not x183 ) ( and x184 ( and x185 ( and x186 ( and ( not x187 ) ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 500 ) ) + ( implies ( and ( not x183 ) ( and x184 ( and x185 ( and x186 ( and ( not x187 ) ( and x188 true ) ) ) ) ) ) ( = tmp67 700 ) ) + ( implies ( and ( not x183 ) ( and x184 ( and x185 ( and x186 ( and x187 ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 700 ) ) + ( implies ( and ( not x183 ) ( and x184 ( and x185 ( and x186 ( and x187 ( and x188 true ) ) ) ) ) ) ( = tmp67 900 ) ) + ( implies ( and x183 ( and ( not x184 ) ( and ( not x185 ) ( and ( not x186 ) ( and ( not x187 ) ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 100 ) ) + ( implies ( and x183 ( and ( not x184 ) ( and ( not x185 ) ( and ( not x186 ) ( and ( not x187 ) ( and x188 true ) ) ) ) ) ) ( = tmp67 300 ) ) + ( implies ( and x183 ( and ( not x184 ) ( and ( not x185 ) ( and ( not x186 ) ( and x187 ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 300 ) ) + ( implies ( and x183 ( and ( not x184 ) ( and ( not x185 ) ( and ( not x186 ) ( and x187 ( and x188 true ) ) ) ) ) ) ( = tmp67 500 ) ) + ( implies ( and x183 ( and ( not x184 ) ( and ( not x185 ) ( and x186 ( and ( not x187 ) ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 300 ) ) + ( implies ( and x183 ( and ( not x184 ) ( and ( not x185 ) ( and x186 ( and ( not x187 ) ( and x188 true ) ) ) ) ) ) ( = tmp67 500 ) ) + ( implies ( and x183 ( and ( not x184 ) ( and ( not x185 ) ( and x186 ( and x187 ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 500 ) ) + ( implies ( and x183 ( and ( not x184 ) ( and ( not x185 ) ( and x186 ( and x187 ( and x188 true ) ) ) ) ) ) ( = tmp67 700 ) ) + ( implies ( and x183 ( and ( not x184 ) ( and x185 ( and ( not x186 ) ( and ( not x187 ) ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 300 ) ) + ( implies ( and x183 ( and ( not x184 ) ( and x185 ( and ( not x186 ) ( and ( not x187 ) ( and x188 true ) ) ) ) ) ) ( = tmp67 500 ) ) + ( implies ( and x183 ( and ( not x184 ) ( and x185 ( and ( not x186 ) ( and x187 ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 500 ) ) + ( implies ( and x183 ( and ( not x184 ) ( and x185 ( and ( not x186 ) ( and x187 ( and x188 true ) ) ) ) ) ) ( = tmp67 700 ) ) + ( implies ( and x183 ( and ( not x184 ) ( and x185 ( and x186 ( and ( not x187 ) ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 500 ) ) + ( implies ( and x183 ( and ( not x184 ) ( and x185 ( and x186 ( and ( not x187 ) ( and x188 true ) ) ) ) ) ) ( = tmp67 700 ) ) + ( implies ( and x183 ( and ( not x184 ) ( and x185 ( and x186 ( and x187 ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 700 ) ) + ( implies ( and x183 ( and ( not x184 ) ( and x185 ( and x186 ( and x187 ( and x188 true ) ) ) ) ) ) ( = tmp67 900 ) ) + ( implies ( and x183 ( and x184 ( and ( not x185 ) ( and ( not x186 ) ( and ( not x187 ) ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 200 ) ) + ( implies ( and x183 ( and x184 ( and ( not x185 ) ( and ( not x186 ) ( and ( not x187 ) ( and x188 true ) ) ) ) ) ) ( = tmp67 400 ) ) + ( implies ( and x183 ( and x184 ( and ( not x185 ) ( and ( not x186 ) ( and x187 ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 400 ) ) + ( implies ( and x183 ( and x184 ( and ( not x185 ) ( and ( not x186 ) ( and x187 ( and x188 true ) ) ) ) ) ) ( = tmp67 600 ) ) + ( implies ( and x183 ( and x184 ( and ( not x185 ) ( and x186 ( and ( not x187 ) ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 400 ) ) + ( implies ( and x183 ( and x184 ( and ( not x185 ) ( and x186 ( and ( not x187 ) ( and x188 true ) ) ) ) ) ) ( = tmp67 600 ) ) + ( implies ( and x183 ( and x184 ( and ( not x185 ) ( and x186 ( and x187 ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 600 ) ) + ( implies ( and x183 ( and x184 ( and ( not x185 ) ( and x186 ( and x187 ( and x188 true ) ) ) ) ) ) ( = tmp67 800 ) ) + ( implies ( and x183 ( and x184 ( and x185 ( and ( not x186 ) ( and ( not x187 ) ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 400 ) ) + ( implies ( and x183 ( and x184 ( and x185 ( and ( not x186 ) ( and ( not x187 ) ( and x188 true ) ) ) ) ) ) ( = tmp67 600 ) ) + ( implies ( and x183 ( and x184 ( and x185 ( and ( not x186 ) ( and x187 ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 600 ) ) + ( implies ( and x183 ( and x184 ( and x185 ( and ( not x186 ) ( and x187 ( and x188 true ) ) ) ) ) ) ( = tmp67 800 ) ) + ( implies ( and x183 ( and x184 ( and x185 ( and x186 ( and ( not x187 ) ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 600 ) ) + ( implies ( and x183 ( and x184 ( and x185 ( and x186 ( and ( not x187 ) ( and x188 true ) ) ) ) ) ) ( = tmp67 800 ) ) + ( implies ( and x183 ( and x184 ( and x185 ( and x186 ( and x187 ( and ( not x188 ) true ) ) ) ) ) ) ( = tmp67 800 ) ) + ( implies ( and x183 ( and x184 ( and x185 ( and x186 ( and x187 ( and x188 true ) ) ) ) ) ) ( = tmp67 1000 ) ) + ( implies ( and ( not x240 ) ( and ( not x239 ) ( and ( not x238 ) ( and ( not x237 ) ( and ( not x236 ) ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 0 ) ) + ( implies ( and ( not x240 ) ( and ( not x239 ) ( and ( not x238 ) ( and ( not x237 ) ( and ( not x236 ) ( and x235 true ) ) ) ) ) ) ( = tmp66 300 ) ) + ( implies ( and ( not x240 ) ( and ( not x239 ) ( and ( not x238 ) ( and ( not x237 ) ( and x236 ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 300 ) ) + ( implies ( and ( not x240 ) ( and ( not x239 ) ( and ( not x238 ) ( and ( not x237 ) ( and x236 ( and x235 true ) ) ) ) ) ) ( = tmp66 600 ) ) + ( implies ( and ( not x240 ) ( and ( not x239 ) ( and ( not x238 ) ( and x237 ( and ( not x236 ) ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 300 ) ) + ( implies ( and ( not x240 ) ( and ( not x239 ) ( and ( not x238 ) ( and x237 ( and ( not x236 ) ( and x235 true ) ) ) ) ) ) ( = tmp66 600 ) ) + ( implies ( and ( not x240 ) ( and ( not x239 ) ( and ( not x238 ) ( and x237 ( and x236 ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 600 ) ) + ( implies ( and ( not x240 ) ( and ( not x239 ) ( and ( not x238 ) ( and x237 ( and x236 ( and x235 true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and ( not x240 ) ( and ( not x239 ) ( and x238 ( and ( not x237 ) ( and ( not x236 ) ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 300 ) ) + ( implies ( and ( not x240 ) ( and ( not x239 ) ( and x238 ( and ( not x237 ) ( and ( not x236 ) ( and x235 true ) ) ) ) ) ) ( = tmp66 600 ) ) + ( implies ( and ( not x240 ) ( and ( not x239 ) ( and x238 ( and ( not x237 ) ( and x236 ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 600 ) ) + ( implies ( and ( not x240 ) ( and ( not x239 ) ( and x238 ( and ( not x237 ) ( and x236 ( and x235 true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and ( not x240 ) ( and ( not x239 ) ( and x238 ( and x237 ( and ( not x236 ) ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 600 ) ) + ( implies ( and ( not x240 ) ( and ( not x239 ) ( and x238 ( and x237 ( and ( not x236 ) ( and x235 true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and ( not x240 ) ( and ( not x239 ) ( and x238 ( and x237 ( and x236 ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and ( not x240 ) ( and ( not x239 ) ( and x238 ( and x237 ( and x236 ( and x235 true ) ) ) ) ) ) ( = tmp66 1200 ) ) + ( implies ( and ( not x240 ) ( and x239 ( and ( not x238 ) ( and ( not x237 ) ( and ( not x236 ) ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 300 ) ) + ( implies ( and ( not x240 ) ( and x239 ( and ( not x238 ) ( and ( not x237 ) ( and ( not x236 ) ( and x235 true ) ) ) ) ) ) ( = tmp66 600 ) ) + ( implies ( and ( not x240 ) ( and x239 ( and ( not x238 ) ( and ( not x237 ) ( and x236 ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 600 ) ) + ( implies ( and ( not x240 ) ( and x239 ( and ( not x238 ) ( and ( not x237 ) ( and x236 ( and x235 true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and ( not x240 ) ( and x239 ( and ( not x238 ) ( and x237 ( and ( not x236 ) ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 600 ) ) + ( implies ( and ( not x240 ) ( and x239 ( and ( not x238 ) ( and x237 ( and ( not x236 ) ( and x235 true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and ( not x240 ) ( and x239 ( and ( not x238 ) ( and x237 ( and x236 ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and ( not x240 ) ( and x239 ( and ( not x238 ) ( and x237 ( and x236 ( and x235 true ) ) ) ) ) ) ( = tmp66 1200 ) ) + ( implies ( and ( not x240 ) ( and x239 ( and x238 ( and ( not x237 ) ( and ( not x236 ) ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 600 ) ) + ( implies ( and ( not x240 ) ( and x239 ( and x238 ( and ( not x237 ) ( and ( not x236 ) ( and x235 true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and ( not x240 ) ( and x239 ( and x238 ( and ( not x237 ) ( and x236 ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and ( not x240 ) ( and x239 ( and x238 ( and ( not x237 ) ( and x236 ( and x235 true ) ) ) ) ) ) ( = tmp66 1200 ) ) + ( implies ( and ( not x240 ) ( and x239 ( and x238 ( and x237 ( and ( not x236 ) ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and ( not x240 ) ( and x239 ( and x238 ( and x237 ( and ( not x236 ) ( and x235 true ) ) ) ) ) ) ( = tmp66 1200 ) ) + ( implies ( and ( not x240 ) ( and x239 ( and x238 ( and x237 ( and x236 ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 1200 ) ) + ( implies ( and ( not x240 ) ( and x239 ( and x238 ( and x237 ( and x236 ( and x235 true ) ) ) ) ) ) ( = tmp66 1500 ) ) + ( implies ( and x240 ( and ( not x239 ) ( and ( not x238 ) ( and ( not x237 ) ( and ( not x236 ) ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 300 ) ) + ( implies ( and x240 ( and ( not x239 ) ( and ( not x238 ) ( and ( not x237 ) ( and ( not x236 ) ( and x235 true ) ) ) ) ) ) ( = tmp66 600 ) ) + ( implies ( and x240 ( and ( not x239 ) ( and ( not x238 ) ( and ( not x237 ) ( and x236 ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 600 ) ) + ( implies ( and x240 ( and ( not x239 ) ( and ( not x238 ) ( and ( not x237 ) ( and x236 ( and x235 true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and x240 ( and ( not x239 ) ( and ( not x238 ) ( and x237 ( and ( not x236 ) ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 600 ) ) + ( implies ( and x240 ( and ( not x239 ) ( and ( not x238 ) ( and x237 ( and ( not x236 ) ( and x235 true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and x240 ( and ( not x239 ) ( and ( not x238 ) ( and x237 ( and x236 ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and x240 ( and ( not x239 ) ( and ( not x238 ) ( and x237 ( and x236 ( and x235 true ) ) ) ) ) ) ( = tmp66 1200 ) ) + ( implies ( and x240 ( and ( not x239 ) ( and x238 ( and ( not x237 ) ( and ( not x236 ) ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 600 ) ) + ( implies ( and x240 ( and ( not x239 ) ( and x238 ( and ( not x237 ) ( and ( not x236 ) ( and x235 true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and x240 ( and ( not x239 ) ( and x238 ( and ( not x237 ) ( and x236 ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and x240 ( and ( not x239 ) ( and x238 ( and ( not x237 ) ( and x236 ( and x235 true ) ) ) ) ) ) ( = tmp66 1200 ) ) + ( implies ( and x240 ( and ( not x239 ) ( and x238 ( and x237 ( and ( not x236 ) ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and x240 ( and ( not x239 ) ( and x238 ( and x237 ( and ( not x236 ) ( and x235 true ) ) ) ) ) ) ( = tmp66 1200 ) ) + ( implies ( and x240 ( and ( not x239 ) ( and x238 ( and x237 ( and x236 ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 1200 ) ) + ( implies ( and x240 ( and ( not x239 ) ( and x238 ( and x237 ( and x236 ( and x235 true ) ) ) ) ) ) ( = tmp66 1500 ) ) + ( implies ( and x240 ( and x239 ( and ( not x238 ) ( and ( not x237 ) ( and ( not x236 ) ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 600 ) ) + ( implies ( and x240 ( and x239 ( and ( not x238 ) ( and ( not x237 ) ( and ( not x236 ) ( and x235 true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and x240 ( and x239 ( and ( not x238 ) ( and ( not x237 ) ( and x236 ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and x240 ( and x239 ( and ( not x238 ) ( and ( not x237 ) ( and x236 ( and x235 true ) ) ) ) ) ) ( = tmp66 1200 ) ) + ( implies ( and x240 ( and x239 ( and ( not x238 ) ( and x237 ( and ( not x236 ) ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and x240 ( and x239 ( and ( not x238 ) ( and x237 ( and ( not x236 ) ( and x235 true ) ) ) ) ) ) ( = tmp66 1200 ) ) + ( implies ( and x240 ( and x239 ( and ( not x238 ) ( and x237 ( and x236 ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 1200 ) ) + ( implies ( and x240 ( and x239 ( and ( not x238 ) ( and x237 ( and x236 ( and x235 true ) ) ) ) ) ) ( = tmp66 1500 ) ) + ( implies ( and x240 ( and x239 ( and x238 ( and ( not x237 ) ( and ( not x236 ) ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 900 ) ) + ( implies ( and x240 ( and x239 ( and x238 ( and ( not x237 ) ( and ( not x236 ) ( and x235 true ) ) ) ) ) ) ( = tmp66 1200 ) ) + ( implies ( and x240 ( and x239 ( and x238 ( and ( not x237 ) ( and x236 ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 1200 ) ) + ( implies ( and x240 ( and x239 ( and x238 ( and ( not x237 ) ( and x236 ( and x235 true ) ) ) ) ) ) ( = tmp66 1500 ) ) + ( implies ( and x240 ( and x239 ( and x238 ( and x237 ( and ( not x236 ) ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 1200 ) ) + ( implies ( and x240 ( and x239 ( and x238 ( and x237 ( and ( not x236 ) ( and x235 true ) ) ) ) ) ) ( = tmp66 1500 ) ) + ( implies ( and x240 ( and x239 ( and x238 ( and x237 ( and x236 ( and ( not x235 ) true ) ) ) ) ) ) ( = tmp66 1500 ) ) + ( implies ( and x240 ( and x239 ( and x238 ( and x237 ( and x236 ( and x235 true ) ) ) ) ) ) ( = tmp66 1800 ) ) + ( implies ( and ( not x177 ) ( and ( not x178 ) ( and ( not x179 ) ( and ( not x180 ) ( and ( not x181 ) ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 0 ) ) + ( implies ( and ( not x177 ) ( and ( not x178 ) ( and ( not x179 ) ( and ( not x180 ) ( and ( not x181 ) ( and x182 true ) ) ) ) ) ) ( = tmp65 100 ) ) + ( implies ( and ( not x177 ) ( and ( not x178 ) ( and ( not x179 ) ( and ( not x180 ) ( and x181 ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 100 ) ) + ( implies ( and ( not x177 ) ( and ( not x178 ) ( and ( not x179 ) ( and ( not x180 ) ( and x181 ( and x182 true ) ) ) ) ) ) ( = tmp65 200 ) ) + ( implies ( and ( not x177 ) ( and ( not x178 ) ( and ( not x179 ) ( and x180 ( and ( not x181 ) ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 100 ) ) + ( implies ( and ( not x177 ) ( and ( not x178 ) ( and ( not x179 ) ( and x180 ( and ( not x181 ) ( and x182 true ) ) ) ) ) ) ( = tmp65 200 ) ) + ( implies ( and ( not x177 ) ( and ( not x178 ) ( and ( not x179 ) ( and x180 ( and x181 ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 200 ) ) + ( implies ( and ( not x177 ) ( and ( not x178 ) ( and ( not x179 ) ( and x180 ( and x181 ( and x182 true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and ( not x177 ) ( and ( not x178 ) ( and x179 ( and ( not x180 ) ( and ( not x181 ) ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 100 ) ) + ( implies ( and ( not x177 ) ( and ( not x178 ) ( and x179 ( and ( not x180 ) ( and ( not x181 ) ( and x182 true ) ) ) ) ) ) ( = tmp65 200 ) ) + ( implies ( and ( not x177 ) ( and ( not x178 ) ( and x179 ( and ( not x180 ) ( and x181 ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 200 ) ) + ( implies ( and ( not x177 ) ( and ( not x178 ) ( and x179 ( and ( not x180 ) ( and x181 ( and x182 true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and ( not x177 ) ( and ( not x178 ) ( and x179 ( and x180 ( and ( not x181 ) ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 200 ) ) + ( implies ( and ( not x177 ) ( and ( not x178 ) ( and x179 ( and x180 ( and ( not x181 ) ( and x182 true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and ( not x177 ) ( and ( not x178 ) ( and x179 ( and x180 ( and x181 ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and ( not x177 ) ( and ( not x178 ) ( and x179 ( and x180 ( and x181 ( and x182 true ) ) ) ) ) ) ( = tmp65 400 ) ) + ( implies ( and ( not x177 ) ( and x178 ( and ( not x179 ) ( and ( not x180 ) ( and ( not x181 ) ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 100 ) ) + ( implies ( and ( not x177 ) ( and x178 ( and ( not x179 ) ( and ( not x180 ) ( and ( not x181 ) ( and x182 true ) ) ) ) ) ) ( = tmp65 200 ) ) + ( implies ( and ( not x177 ) ( and x178 ( and ( not x179 ) ( and ( not x180 ) ( and x181 ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 200 ) ) + ( implies ( and ( not x177 ) ( and x178 ( and ( not x179 ) ( and ( not x180 ) ( and x181 ( and x182 true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and ( not x177 ) ( and x178 ( and ( not x179 ) ( and x180 ( and ( not x181 ) ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 200 ) ) + ( implies ( and ( not x177 ) ( and x178 ( and ( not x179 ) ( and x180 ( and ( not x181 ) ( and x182 true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and ( not x177 ) ( and x178 ( and ( not x179 ) ( and x180 ( and x181 ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and ( not x177 ) ( and x178 ( and ( not x179 ) ( and x180 ( and x181 ( and x182 true ) ) ) ) ) ) ( = tmp65 400 ) ) + ( implies ( and ( not x177 ) ( and x178 ( and x179 ( and ( not x180 ) ( and ( not x181 ) ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 200 ) ) + ( implies ( and ( not x177 ) ( and x178 ( and x179 ( and ( not x180 ) ( and ( not x181 ) ( and x182 true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and ( not x177 ) ( and x178 ( and x179 ( and ( not x180 ) ( and x181 ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and ( not x177 ) ( and x178 ( and x179 ( and ( not x180 ) ( and x181 ( and x182 true ) ) ) ) ) ) ( = tmp65 400 ) ) + ( implies ( and ( not x177 ) ( and x178 ( and x179 ( and x180 ( and ( not x181 ) ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and ( not x177 ) ( and x178 ( and x179 ( and x180 ( and ( not x181 ) ( and x182 true ) ) ) ) ) ) ( = tmp65 400 ) ) + ( implies ( and ( not x177 ) ( and x178 ( and x179 ( and x180 ( and x181 ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 400 ) ) + ( implies ( and ( not x177 ) ( and x178 ( and x179 ( and x180 ( and x181 ( and x182 true ) ) ) ) ) ) ( = tmp65 500 ) ) + ( implies ( and x177 ( and ( not x178 ) ( and ( not x179 ) ( and ( not x180 ) ( and ( not x181 ) ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 100 ) ) + ( implies ( and x177 ( and ( not x178 ) ( and ( not x179 ) ( and ( not x180 ) ( and ( not x181 ) ( and x182 true ) ) ) ) ) ) ( = tmp65 200 ) ) + ( implies ( and x177 ( and ( not x178 ) ( and ( not x179 ) ( and ( not x180 ) ( and x181 ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 200 ) ) + ( implies ( and x177 ( and ( not x178 ) ( and ( not x179 ) ( and ( not x180 ) ( and x181 ( and x182 true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and x177 ( and ( not x178 ) ( and ( not x179 ) ( and x180 ( and ( not x181 ) ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 200 ) ) + ( implies ( and x177 ( and ( not x178 ) ( and ( not x179 ) ( and x180 ( and ( not x181 ) ( and x182 true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and x177 ( and ( not x178 ) ( and ( not x179 ) ( and x180 ( and x181 ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and x177 ( and ( not x178 ) ( and ( not x179 ) ( and x180 ( and x181 ( and x182 true ) ) ) ) ) ) ( = tmp65 400 ) ) + ( implies ( and x177 ( and ( not x178 ) ( and x179 ( and ( not x180 ) ( and ( not x181 ) ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 200 ) ) + ( implies ( and x177 ( and ( not x178 ) ( and x179 ( and ( not x180 ) ( and ( not x181 ) ( and x182 true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and x177 ( and ( not x178 ) ( and x179 ( and ( not x180 ) ( and x181 ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and x177 ( and ( not x178 ) ( and x179 ( and ( not x180 ) ( and x181 ( and x182 true ) ) ) ) ) ) ( = tmp65 400 ) ) + ( implies ( and x177 ( and ( not x178 ) ( and x179 ( and x180 ( and ( not x181 ) ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and x177 ( and ( not x178 ) ( and x179 ( and x180 ( and ( not x181 ) ( and x182 true ) ) ) ) ) ) ( = tmp65 400 ) ) + ( implies ( and x177 ( and ( not x178 ) ( and x179 ( and x180 ( and x181 ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 400 ) ) + ( implies ( and x177 ( and ( not x178 ) ( and x179 ( and x180 ( and x181 ( and x182 true ) ) ) ) ) ) ( = tmp65 500 ) ) + ( implies ( and x177 ( and x178 ( and ( not x179 ) ( and ( not x180 ) ( and ( not x181 ) ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 200 ) ) + ( implies ( and x177 ( and x178 ( and ( not x179 ) ( and ( not x180 ) ( and ( not x181 ) ( and x182 true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and x177 ( and x178 ( and ( not x179 ) ( and ( not x180 ) ( and x181 ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and x177 ( and x178 ( and ( not x179 ) ( and ( not x180 ) ( and x181 ( and x182 true ) ) ) ) ) ) ( = tmp65 400 ) ) + ( implies ( and x177 ( and x178 ( and ( not x179 ) ( and x180 ( and ( not x181 ) ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and x177 ( and x178 ( and ( not x179 ) ( and x180 ( and ( not x181 ) ( and x182 true ) ) ) ) ) ) ( = tmp65 400 ) ) + ( implies ( and x177 ( and x178 ( and ( not x179 ) ( and x180 ( and x181 ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 400 ) ) + ( implies ( and x177 ( and x178 ( and ( not x179 ) ( and x180 ( and x181 ( and x182 true ) ) ) ) ) ) ( = tmp65 500 ) ) + ( implies ( and x177 ( and x178 ( and x179 ( and ( not x180 ) ( and ( not x181 ) ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 300 ) ) + ( implies ( and x177 ( and x178 ( and x179 ( and ( not x180 ) ( and ( not x181 ) ( and x182 true ) ) ) ) ) ) ( = tmp65 400 ) ) + ( implies ( and x177 ( and x178 ( and x179 ( and ( not x180 ) ( and x181 ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 400 ) ) + ( implies ( and x177 ( and x178 ( and x179 ( and ( not x180 ) ( and x181 ( and x182 true ) ) ) ) ) ) ( = tmp65 500 ) ) + ( implies ( and x177 ( and x178 ( and x179 ( and x180 ( and ( not x181 ) ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 400 ) ) + ( implies ( and x177 ( and x178 ( and x179 ( and x180 ( and ( not x181 ) ( and x182 true ) ) ) ) ) ) ( = tmp65 500 ) ) + ( implies ( and x177 ( and x178 ( and x179 ( and x180 ( and x181 ( and ( not x182 ) true ) ) ) ) ) ) ( = tmp65 500 ) ) + ( implies ( and x177 ( and x178 ( and x179 ( and x180 ( and x181 ( and x182 true ) ) ) ) ) ) ( = tmp65 600 ) ) + ( implies ( and ( not x240 ) true ) ( = tmp64 0 ) ) + ( implies ( and x240 true ) ( = tmp64 (~ 100) ) ) + ( implies ( and ( not x239 ) true ) ( = tmp63 0 ) ) + ( implies ( and x239 true ) ( = tmp63 (~ 100) ) ) + ( implies ( and ( not x238 ) true ) ( = tmp62 0 ) ) + ( implies ( and x238 true ) ( = tmp62 (~ 100) ) ) + ( implies ( and ( not x237 ) true ) ( = tmp61 0 ) ) + ( implies ( and x237 true ) ( = tmp61 (~ 100) ) ) + ( implies ( and ( not x236 ) true ) ( = tmp60 0 ) ) + ( implies ( and x236 true ) ( = tmp60 (~ 100) ) ) + ( implies ( and ( not x235 ) true ) ( = tmp59 0 ) ) + ( implies ( and x235 true ) ( = tmp59 (~ 100) ) ) + ( implies ( and ( not x234 ) true ) ( = tmp58 0 ) ) + ( implies ( and x234 true ) ( = tmp58 (~ 100) ) ) + ( implies ( and ( not x233 ) true ) ( = tmp57 0 ) ) + ( implies ( and x233 true ) ( = tmp57 (~ 100) ) ) + ( implies ( and ( not x232 ) true ) ( = tmp56 0 ) ) + ( implies ( and x232 true ) ( = tmp56 (~ 240) ) ) + ( implies ( and ( not x231 ) true ) ( = tmp55 0 ) ) + ( implies ( and x231 true ) ( = tmp55 (~ 240) ) ) + ( implies ( and ( not x230 ) true ) ( = tmp54 0 ) ) + ( implies ( and x230 true ) ( = tmp54 (~ 240) ) ) + ( implies ( and ( not x229 ) true ) ( = tmp53 0 ) ) + ( implies ( and x229 true ) ( = tmp53 (~ 240) ) ) + ( implies ( and ( not x228 ) true ) ( = tmp52 0 ) ) + ( implies ( and x228 true ) ( = tmp52 (~ 240) ) ) + ( implies ( and ( not x227 ) true ) ( = tmp51 0 ) ) + ( implies ( and x227 true ) ( = tmp51 (~ 240) ) ) + ( implies ( and ( not x226 ) true ) ( = tmp50 0 ) ) + ( implies ( and x226 true ) ( = tmp50 (~ 240) ) ) + ( implies ( and ( not x225 ) true ) ( = tmp49 0 ) ) + ( implies ( and x225 true ) ( = tmp49 (~ 240) ) ) + ( implies ( and ( not x224 ) true ) ( = tmp48 0 ) ) + ( implies ( and x224 true ) ( = tmp48 (~ 400) ) ) + ( implies ( and ( not x223 ) true ) ( = tmp47 0 ) ) + ( implies ( and x223 true ) ( = tmp47 (~ 400) ) ) + ( implies ( and ( not x222 ) true ) ( = tmp46 0 ) ) + ( implies ( and x222 true ) ( = tmp46 (~ 400) ) ) + ( implies ( and ( not x221 ) true ) ( = tmp45 0 ) ) + ( implies ( and x221 true ) ( = tmp45 (~ 400) ) ) + ( implies ( and ( not x220 ) true ) ( = tmp44 0 ) ) + ( implies ( and x220 true ) ( = tmp44 (~ 400) ) ) + ( implies ( and ( not x219 ) true ) ( = tmp43 0 ) ) + ( implies ( and x219 true ) ( = tmp43 (~ 350) ) ) + ( implies ( and ( not x218 ) true ) ( = tmp42 0 ) ) + ( implies ( and x218 true ) ( = tmp42 (~ 350) ) ) + ( implies ( and ( not x217 ) true ) ( = tmp41 0 ) ) + ( implies ( and x217 true ) ( = tmp41 (~ 350) ) ) + ( implies ( and ( not x216 ) true ) ( = tmp40 0 ) ) + ( implies ( and x216 true ) ( = tmp40 (~ 160) ) ) + ( implies ( and ( not x215 ) true ) ( = tmp39 0 ) ) + ( implies ( and x215 true ) ( = tmp39 (~ 160) ) ) + ( implies ( and ( not x214 ) true ) ( = tmp38 0 ) ) + ( implies ( and x214 true ) ( = tmp38 (~ 160) ) ) + ( implies ( and ( not x213 ) true ) ( = tmp37 0 ) ) + ( implies ( and x213 true ) ( = tmp37 (~ 160) ) ) + ( implies ( and ( not x212 ) true ) ( = tmp36 0 ) ) + ( implies ( and x212 true ) ( = tmp36 (~ 160) ) ) + ( implies ( and ( not x211 ) true ) ( = tmp35 0 ) ) + ( implies ( and x211 true ) ( = tmp35 (~ 160) ) ) + ( implies ( and ( not x210 ) true ) ( = tmp34 0 ) ) + ( implies ( and x210 true ) ( = tmp34 (~ 160) ) ) + ( implies ( and ( not x209 ) true ) ( = tmp33 0 ) ) + ( implies ( and x209 true ) ( = tmp33 (~ 160) ) ) + ( implies ( and ( not x208 ) true ) ( = tmp32 0 ) ) + ( implies ( and x208 true ) ( = tmp32 (~ 500) ) ) + ( implies ( and ( not x207 ) true ) ( = tmp31 0 ) ) + ( implies ( and x207 true ) ( = tmp31 (~ 400) ) ) + ( implies ( and ( not x206 ) true ) ( = tmp30 0 ) ) + ( implies ( and x206 true ) ( = tmp30 (~ 400) ) ) + ( implies ( and ( not x205 ) true ) ( = tmp29 0 ) ) + ( implies ( and x205 true ) ( = tmp29 (~ 400) ) ) + ( implies ( and ( not x204 ) true ) ( = tmp28 0 ) ) + ( implies ( and x204 true ) ( = tmp28 (~ 400) ) ) + ( implies ( and ( not x203 ) true ) ( = tmp27 0 ) ) + ( implies ( and x203 true ) ( = tmp27 (~ 350) ) ) + ( implies ( and ( not x202 ) true ) ( = tmp26 0 ) ) + ( implies ( and x202 true ) ( = tmp26 (~ 350) ) ) + ( implies ( and ( not x201 ) true ) ( = tmp25 0 ) ) + ( implies ( and x201 true ) ( = tmp25 (~ 350) ) ) + ( implies ( and ( not x200 ) true ) ( = tmp24 0 ) ) + ( implies ( and x200 true ) ( = tmp24 (~ 500) ) ) + ( implies ( and ( not x199 ) true ) ( = tmp23 0 ) ) + ( implies ( and x199 true ) ( = tmp23 (~ 400) ) ) + ( implies ( and ( not x198 ) true ) ( = tmp22 0 ) ) + ( implies ( and x198 true ) ( = tmp22 (~ 400) ) ) + ( implies ( and ( not x197 ) true ) ( = tmp21 0 ) ) + ( implies ( and x197 true ) ( = tmp21 (~ 400) ) ) + ( implies ( and ( not x196 ) true ) ( = tmp20 0 ) ) + ( implies ( and x196 true ) ( = tmp20 (~ 400) ) ) + ( implies ( and ( not x195 ) true ) ( = tmp19 0 ) ) + ( implies ( and x195 true ) ( = tmp19 (~ 350) ) ) + ( implies ( and ( not x194 ) true ) ( = tmp18 0 ) ) + ( implies ( and x194 true ) ( = tmp18 (~ 350) ) ) + ( implies ( and ( not x193 ) true ) ( = tmp17 0 ) ) + ( implies ( and x193 true ) ( = tmp17 (~ 350) ) ) + ( implies ( and ( not x192 ) true ) ( = tmp16 0 ) ) + ( implies ( and x192 true ) ( = tmp16 (~ 240) ) ) + ( implies ( and ( not x191 ) true ) ( = tmp15 0 ) ) + ( implies ( and x191 true ) ( = tmp15 (~ 240) ) ) + ( implies ( and ( not x190 ) true ) ( = tmp14 0 ) ) + ( implies ( and x190 true ) ( = tmp14 (~ 240) ) ) + ( implies ( and ( not x189 ) true ) ( = tmp13 0 ) ) + ( implies ( and x189 true ) ( = tmp13 (~ 240) ) ) + ( implies ( and ( not x188 ) true ) ( = tmp12 0 ) ) + ( implies ( and x188 true ) ( = tmp12 (~ 240) ) ) + ( implies ( and ( not x187 ) true ) ( = tmp11 0 ) ) + ( implies ( and x187 true ) ( = tmp11 (~ 240) ) ) + ( implies ( and ( not x186 ) true ) ( = tmp10 0 ) ) + ( implies ( and x186 true ) ( = tmp10 (~ 240) ) ) + ( implies ( and ( not x185 ) true ) ( = tmp9 0 ) ) + ( implies ( and x185 true ) ( = tmp9 (~ 240) ) ) + ( implies ( and ( not x184 ) true ) ( = tmp8 0 ) ) + ( implies ( and x184 true ) ( = tmp8 (~ 420) ) ) + ( implies ( and ( not x183 ) true ) ( = tmp7 0 ) ) + ( implies ( and x183 true ) ( = tmp7 (~ 400) ) ) + ( implies ( and ( not x182 ) true ) ( = tmp6 0 ) ) + ( implies ( and x182 true ) ( = tmp6 (~ 400) ) ) + ( implies ( and ( not x181 ) true ) ( = tmp5 0 ) ) + ( implies ( and x181 true ) ( = tmp5 (~ 400) ) ) + ( implies ( and ( not x180 ) true ) ( = tmp4 0 ) ) + ( implies ( and x180 true ) ( = tmp4 (~ 400) ) ) + ( implies ( and ( not x179 ) true ) ( = tmp3 0 ) ) + ( implies ( and x179 true ) ( = tmp3 (~ 350) ) ) + ( implies ( and ( not x178 ) true ) ( = tmp2 0 ) ) + ( implies ( and x178 true ) ( = tmp2 (~ 350) ) ) + ( implies ( and ( not x177 ) true ) ( = tmp1 0 ) ) + ( implies ( and x177 true ) ( = tmp1 (~ 350) ) ) + ) +) -- cgit v1.2.3