21.57/8.06 YES 24.03/8.77 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 24.03/8.77 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 24.03/8.77 24.03/8.77 24.03/8.77 H-Termination with start terms of the given HASKELL could be proven: 24.03/8.77 24.03/8.77 (0) HASKELL 24.03/8.77 (1) LR [EQUIVALENT, 0 ms] 24.03/8.77 (2) HASKELL 24.03/8.77 (3) CR [EQUIVALENT, 0 ms] 24.03/8.77 (4) HASKELL 24.03/8.77 (5) IFR [EQUIVALENT, 0 ms] 24.03/8.77 (6) HASKELL 24.03/8.77 (7) BR [EQUIVALENT, 7 ms] 24.03/8.77 (8) HASKELL 24.03/8.77 (9) COR [EQUIVALENT, 0 ms] 24.03/8.77 (10) HASKELL 24.03/8.77 (11) LetRed [EQUIVALENT, 4 ms] 24.03/8.77 (12) HASKELL 24.03/8.77 (13) NumRed [SOUND, 0 ms] 24.03/8.77 (14) HASKELL 24.03/8.77 (15) Narrow [SOUND, 0 ms] 24.03/8.77 (16) AND 24.03/8.77 (17) QDP 24.03/8.77 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.03/8.77 (19) YES 24.03/8.77 (20) QDP 24.03/8.77 (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.03/8.77 (22) YES 24.03/8.77 (23) QDP 24.03/8.77 (24) DependencyGraphProof [EQUIVALENT, 0 ms] 24.03/8.77 (25) QDP 24.03/8.77 (26) QDPSizeChangeProof [EQUIVALENT, 225 ms] 24.03/8.77 (27) YES 24.03/8.77 (28) QDP 24.03/8.77 (29) DependencyGraphProof [EQUIVALENT, 0 ms] 24.03/8.77 (30) AND 24.03/8.77 (31) QDP 24.03/8.77 (32) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.03/8.77 (33) YES 24.03/8.77 (34) QDP 24.03/8.77 (35) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.03/8.77 (36) YES 24.03/8.77 (37) QDP 24.03/8.77 (38) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.03/8.77 (39) YES 24.03/8.77 (40) QDP 24.03/8.77 (41) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.03/8.77 (42) YES 24.03/8.77 (43) QDP 24.03/8.77 (44) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.03/8.77 (45) YES 24.03/8.77 (46) QDP 24.03/8.77 (47) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.03/8.77 (48) YES 24.03/8.77 (49) QDP 24.03/8.77 (50) QDPSizeChangeProof [EQUIVALENT, 0 ms] 24.03/8.77 (51) YES 24.03/8.77 24.03/8.77 24.03/8.77 ---------------------------------------- 24.03/8.77 24.03/8.77 (0) 24.03/8.77 Obligation: 24.03/8.77 mainModule Main 24.03/8.77 module FiniteMap where { 24.03/8.77 import qualified Main; 24.03/8.77 import qualified Maybe; 24.03/8.77 import qualified Prelude; 24.03/8.77 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 24.03/8.77 24.03/8.77 instance (Eq a, Eq b) => Eq FiniteMap b a where { 24.03/8.77 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.03/8.77 } 24.03/8.77 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 24.03/8.77 addListToFM fm key_elt_pairs = addListToFM_C (\old new ->new) fm key_elt_pairs; 24.03/8.77 24.03/8.77 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 24.03/8.77 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 24.03/8.77 add fmap (key,elt) = addToFM_C combiner fmap key elt; 24.03/8.77 }; 24.03/8.77 24.03/8.77 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 24.03/8.77 addToFM_C combiner EmptyFM key elt = unitFM key elt; 24.03/8.77 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 24.03/8.77 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 24.03/8.77 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 24.03/8.77 24.03/8.77 emptyFM :: FiniteMap a b; 24.03/8.77 emptyFM = EmptyFM; 24.03/8.77 24.03/8.77 findMax :: FiniteMap a b -> (a,b); 24.03/8.77 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 24.03/8.77 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 24.03/8.77 24.03/8.77 findMin :: FiniteMap a b -> (a,b); 24.03/8.77 findMin (Branch key elt _ EmptyFM _) = (key,elt); 24.03/8.77 findMin (Branch key elt _ fm_l _) = findMin fm_l; 24.03/8.77 24.03/8.77 fmToList :: FiniteMap a b -> [(a,b)]; 24.03/8.77 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 24.03/8.77 24.03/8.77 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 24.03/8.77 foldFM k z EmptyFM = z; 24.03/8.77 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.03/8.77 24.03/8.77 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 24.03/8.77 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 24.03/8.77 | size_r > sIZE_RATIO * size_l = case fm_R of { 24.03/8.77 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 24.03/8.77 | otherwise -> double_L fm_L fm_R; 24.03/8.77 } 24.03/8.77 | size_l > sIZE_RATIO * size_r = case fm_L of { 24.03/8.77 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 24.03/8.77 | otherwise -> double_R fm_L fm_R; 24.03/8.77 } 24.03/8.77 | otherwise = mkBranch 2 key elt fm_L fm_R where { 24.03/8.77 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 24.03/8.77 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 24.03/8.77 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 24.03/8.77 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 24.03/8.77 size_l = sizeFM fm_L; 24.03/8.77 size_r = sizeFM fm_R; 24.03/8.77 }; 24.03/8.77 24.03/8.77 mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 24.03/8.77 mkBranch which key elt fm_l fm_r = let { 24.03/8.77 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 24.03/8.77 } in result where { 24.03/8.77 balance_ok = True; 24.03/8.77 left_ok = case fm_l of { 24.03/8.77 EmptyFM-> True; 24.03/8.77 Branch left_key _ _ _ _-> let { 24.03/8.77 biggest_left_key = fst (findMax fm_l); 24.03/8.77 } in biggest_left_key < key; 24.03/8.77 } ; 24.03/8.77 left_size = sizeFM fm_l; 24.03/8.77 right_ok = case fm_r of { 24.03/8.77 EmptyFM-> True; 24.03/8.77 Branch right_key _ _ _ _-> let { 24.03/8.77 smallest_right_key = fst (findMin fm_r); 24.03/8.77 } in key < smallest_right_key; 24.03/8.77 } ; 24.03/8.77 right_size = sizeFM fm_r; 24.03/8.77 unbox :: Int -> Int; 24.03/8.77 unbox x = x; 24.03/8.77 }; 24.03/8.77 24.03/8.77 sIZE_RATIO :: Int; 24.03/8.77 sIZE_RATIO = 5; 24.03/8.77 24.03/8.77 sizeFM :: FiniteMap a b -> Int; 24.03/8.77 sizeFM EmptyFM = 0; 24.03/8.77 sizeFM (Branch _ _ size _ _) = size; 24.03/8.77 24.03/8.77 unitFM :: b -> a -> FiniteMap b a; 24.03/8.77 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 24.03/8.77 24.03/8.77 } 24.03/8.77 module Maybe where { 24.03/8.77 import qualified FiniteMap; 24.03/8.77 import qualified Main; 24.03/8.77 import qualified Prelude; 24.03/8.77 } 24.03/8.77 module Main where { 24.03/8.77 import qualified FiniteMap; 24.03/8.77 import qualified Maybe; 24.03/8.77 import qualified Prelude; 24.03/8.77 } 24.03/8.77 24.03/8.77 ---------------------------------------- 24.03/8.77 24.03/8.77 (1) LR (EQUIVALENT) 24.03/8.77 Lambda Reductions: 24.03/8.77 The following Lambda expression 24.03/8.77 "\oldnew->new" 24.03/8.77 is transformed to 24.03/8.77 "addListToFM0 old new = new; 24.03/8.77 " 24.03/8.77 The following Lambda expression 24.03/8.77 "\keyeltrest->(key,elt) : rest" 24.03/8.77 is transformed to 24.03/8.77 "fmToList0 key elt rest = (key,elt) : rest; 24.03/8.77 " 24.03/8.77 24.03/8.77 ---------------------------------------- 24.03/8.77 24.03/8.77 (2) 24.03/8.77 Obligation: 24.03/8.77 mainModule Main 24.03/8.77 module FiniteMap where { 24.03/8.77 import qualified Main; 24.03/8.77 import qualified Maybe; 24.03/8.77 import qualified Prelude; 24.03/8.77 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 24.03/8.77 24.03/8.77 instance (Eq a, Eq b) => Eq FiniteMap a b where { 24.03/8.77 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.03/8.77 } 24.03/8.77 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 24.03/8.77 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 24.03/8.77 24.03/8.77 addListToFM0 old new = new; 24.03/8.77 24.03/8.77 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 24.03/8.77 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 24.03/8.77 add fmap (key,elt) = addToFM_C combiner fmap key elt; 24.03/8.77 }; 24.03/8.77 24.03/8.77 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 24.03/8.77 addToFM_C combiner EmptyFM key elt = unitFM key elt; 24.03/8.77 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 24.03/8.77 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 24.03/8.77 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 24.03/8.77 24.03/8.77 emptyFM :: FiniteMap b a; 24.03/8.77 emptyFM = EmptyFM; 24.03/8.77 24.03/8.77 findMax :: FiniteMap b a -> (b,a); 24.03/8.77 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 24.03/8.77 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 24.03/8.77 24.03/8.77 findMin :: FiniteMap a b -> (a,b); 24.03/8.77 findMin (Branch key elt _ EmptyFM _) = (key,elt); 24.03/8.77 findMin (Branch key elt _ fm_l _) = findMin fm_l; 24.03/8.77 24.03/8.77 fmToList :: FiniteMap b a -> [(b,a)]; 24.03/8.77 fmToList fm = foldFM fmToList0 [] fm; 24.03/8.77 24.03/8.77 fmToList0 key elt rest = (key,elt) : rest; 24.03/8.77 24.03/8.77 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 24.03/8.77 foldFM k z EmptyFM = z; 24.03/8.77 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.03/8.77 24.03/8.77 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 24.03/8.77 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 24.03/8.77 | size_r > sIZE_RATIO * size_l = case fm_R of { 24.03/8.77 Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R 24.03/8.77 | otherwise -> double_L fm_L fm_R; 24.74/8.90 } 24.74/8.90 | size_l > sIZE_RATIO * size_r = case fm_L of { 24.74/8.90 Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R 24.74/8.90 | otherwise -> double_R fm_L fm_R; 24.74/8.90 } 24.74/8.90 | otherwise = mkBranch 2 key elt fm_L fm_R where { 24.74/8.90 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 24.74/8.90 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 24.74/8.90 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 24.74/8.90 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 24.74/8.90 size_l = sizeFM fm_L; 24.74/8.90 size_r = sizeFM fm_R; 24.74/8.90 }; 24.74/8.90 24.74/8.90 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 24.74/8.90 mkBranch which key elt fm_l fm_r = let { 24.74/8.90 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 24.74/8.90 } in result where { 24.74/8.90 balance_ok = True; 24.74/8.90 left_ok = case fm_l of { 24.74/8.90 EmptyFM-> True; 24.74/8.90 Branch left_key _ _ _ _-> let { 24.74/8.90 biggest_left_key = fst (findMax fm_l); 24.74/8.90 } in biggest_left_key < key; 24.74/8.90 } ; 24.74/8.90 left_size = sizeFM fm_l; 24.74/8.90 right_ok = case fm_r of { 24.74/8.90 EmptyFM-> True; 24.74/8.90 Branch right_key _ _ _ _-> let { 24.74/8.90 smallest_right_key = fst (findMin fm_r); 24.74/8.90 } in key < smallest_right_key; 24.74/8.90 } ; 24.74/8.90 right_size = sizeFM fm_r; 24.74/8.90 unbox :: Int -> Int; 24.74/8.90 unbox x = x; 24.74/8.90 }; 24.74/8.90 24.74/8.90 sIZE_RATIO :: Int; 24.74/8.90 sIZE_RATIO = 5; 24.74/8.90 24.74/8.90 sizeFM :: FiniteMap b a -> Int; 24.74/8.90 sizeFM EmptyFM = 0; 24.74/8.90 sizeFM (Branch _ _ size _ _) = size; 24.74/8.90 24.74/8.90 unitFM :: b -> a -> FiniteMap b a; 24.74/8.90 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 24.74/8.90 24.74/8.90 } 24.74/8.90 module Maybe where { 24.74/8.90 import qualified FiniteMap; 24.74/8.90 import qualified Main; 24.74/8.90 import qualified Prelude; 24.74/8.90 } 24.74/8.90 module Main where { 24.74/8.90 import qualified FiniteMap; 24.74/8.90 import qualified Maybe; 24.74/8.90 import qualified Prelude; 24.74/8.90 } 24.74/8.90 24.74/8.90 ---------------------------------------- 24.74/8.90 24.74/8.90 (3) CR (EQUIVALENT) 24.74/8.90 Case Reductions: 24.74/8.90 The following Case expression 24.74/8.90 "case compare x y of { 24.74/8.90 EQ -> o; 24.74/8.90 LT -> LT; 24.74/8.90 GT -> GT} 24.74/8.90 " 24.74/8.90 is transformed to 24.74/8.90 "primCompAux0 o EQ = o; 24.74/8.90 primCompAux0 o LT = LT; 24.74/8.90 primCompAux0 o GT = GT; 24.74/8.90 " 24.74/8.90 The following Case expression 24.74/8.90 "case fm_r of { 24.74/8.90 EmptyFM -> True; 24.74/8.90 Branch right_key _ _ _ _ -> let { 24.74/8.90 smallest_right_key = fst (findMin fm_r); 24.74/8.90 } in key < smallest_right_key} 24.74/8.90 " 24.74/8.90 is transformed to 24.74/8.90 "right_ok0 fm_r key EmptyFM = True; 24.74/8.90 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 24.74/8.90 smallest_right_key = fst (findMin fm_r); 24.74/8.90 } in key < smallest_right_key; 24.74/8.90 " 24.74/8.90 The following Case expression 24.74/8.90 "case fm_l of { 24.74/8.90 EmptyFM -> True; 24.74/8.90 Branch left_key _ _ _ _ -> let { 24.74/8.90 biggest_left_key = fst (findMax fm_l); 24.74/8.90 } in biggest_left_key < key} 24.74/8.90 " 24.74/8.90 is transformed to 24.74/8.90 "left_ok0 fm_l key EmptyFM = True; 24.74/8.90 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 24.74/8.90 biggest_left_key = fst (findMax fm_l); 24.74/8.90 } in biggest_left_key < key; 24.74/8.90 " 24.74/8.90 The following Case expression 24.74/8.90 "case fm_R of { 24.74/8.90 Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} 24.74/8.90 " 24.74/8.90 is transformed to 24.74/8.90 "mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 24.74/8.90 " 24.74/8.90 The following Case expression 24.74/8.90 "case fm_L of { 24.74/8.90 Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} 24.74/8.90 " 24.74/8.90 is transformed to 24.74/8.90 "mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 24.74/8.90 " 24.74/8.90 24.74/8.90 ---------------------------------------- 24.74/8.90 24.74/8.90 (4) 24.74/8.90 Obligation: 24.74/8.90 mainModule Main 24.74/8.90 module FiniteMap where { 24.74/8.90 import qualified Main; 24.74/8.90 import qualified Maybe; 24.74/8.90 import qualified Prelude; 24.74/8.90 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 24.74/8.90 24.74/8.90 instance (Eq a, Eq b) => Eq FiniteMap a b where { 24.74/8.90 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.74/8.90 } 24.74/8.90 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 24.74/8.90 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 24.74/8.90 24.74/8.90 addListToFM0 old new = new; 24.74/8.90 24.74/8.90 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 24.74/8.90 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 24.74/8.90 add fmap (key,elt) = addToFM_C combiner fmap key elt; 24.74/8.90 }; 24.74/8.90 24.74/8.90 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 24.74/8.90 addToFM_C combiner EmptyFM key elt = unitFM key elt; 24.74/8.90 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 24.74/8.90 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 24.74/8.90 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 24.74/8.90 24.74/8.90 emptyFM :: FiniteMap a b; 24.74/8.90 emptyFM = EmptyFM; 24.74/8.90 24.74/8.90 findMax :: FiniteMap a b -> (a,b); 24.74/8.90 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 24.74/8.90 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 24.74/8.90 24.74/8.90 findMin :: FiniteMap a b -> (a,b); 24.74/8.90 findMin (Branch key elt _ EmptyFM _) = (key,elt); 24.74/8.90 findMin (Branch key elt _ fm_l _) = findMin fm_l; 24.74/8.90 24.74/8.90 fmToList :: FiniteMap b a -> [(b,a)]; 24.74/8.90 fmToList fm = foldFM fmToList0 [] fm; 24.74/8.90 24.74/8.90 fmToList0 key elt rest = (key,elt) : rest; 24.74/8.90 24.74/8.90 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 24.74/8.90 foldFM k z EmptyFM = z; 24.74/8.90 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.74/8.90 24.74/8.90 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 24.74/8.90 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 24.74/8.90 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 24.74/8.90 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 24.74/8.90 | otherwise = mkBranch 2 key elt fm_L fm_R where { 24.74/8.90 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 24.74/8.90 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 24.74/8.90 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 24.74/8.90 | otherwise = double_L fm_L fm_R; 24.74/8.90 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 24.74/8.90 | otherwise = double_R fm_L fm_R; 24.74/8.90 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 24.74/8.90 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 24.74/8.90 size_l = sizeFM fm_L; 24.74/8.90 size_r = sizeFM fm_R; 24.74/8.90 }; 24.74/8.90 24.74/8.90 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 24.74/8.90 mkBranch which key elt fm_l fm_r = let { 24.74/8.90 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 24.74/8.90 } in result where { 24.74/8.90 balance_ok = True; 24.74/8.90 left_ok = left_ok0 fm_l key fm_l; 24.74/8.90 left_ok0 fm_l key EmptyFM = True; 24.74/8.90 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 24.74/8.90 biggest_left_key = fst (findMax fm_l); 24.74/8.90 } in biggest_left_key < key; 24.74/8.90 left_size = sizeFM fm_l; 24.74/8.90 right_ok = right_ok0 fm_r key fm_r; 24.74/8.90 right_ok0 fm_r key EmptyFM = True; 24.74/8.90 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 24.74/8.90 smallest_right_key = fst (findMin fm_r); 24.74/8.90 } in key < smallest_right_key; 24.74/8.90 right_size = sizeFM fm_r; 24.74/8.90 unbox :: Int -> Int; 24.74/8.90 unbox x = x; 24.74/8.90 }; 24.74/8.90 24.74/8.90 sIZE_RATIO :: Int; 24.74/8.90 sIZE_RATIO = 5; 24.74/8.90 24.74/8.90 sizeFM :: FiniteMap b a -> Int; 24.74/8.90 sizeFM EmptyFM = 0; 24.74/8.90 sizeFM (Branch _ _ size _ _) = size; 24.74/8.90 24.74/8.90 unitFM :: a -> b -> FiniteMap a b; 24.74/8.90 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 24.74/8.90 24.74/8.90 } 24.74/8.90 module Maybe where { 24.74/8.90 import qualified FiniteMap; 24.74/8.90 import qualified Main; 24.74/8.90 import qualified Prelude; 24.74/8.90 } 24.74/8.90 module Main where { 24.74/8.90 import qualified FiniteMap; 24.74/8.90 import qualified Maybe; 24.74/8.90 import qualified Prelude; 24.74/8.90 } 24.74/8.90 24.74/8.90 ---------------------------------------- 24.74/8.90 24.74/8.90 (5) IFR (EQUIVALENT) 24.74/8.90 If Reductions: 24.74/8.90 The following If expression 24.74/8.90 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 24.74/8.90 is transformed to 24.74/8.90 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 24.74/8.90 primDivNatS0 x y False = Zero; 24.74/8.90 " 24.74/8.90 The following If expression 24.74/8.90 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 24.74/8.90 is transformed to 24.74/8.90 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 24.74/8.90 primModNatS0 x y False = Succ x; 24.74/8.90 " 24.74/8.90 24.74/8.90 ---------------------------------------- 24.74/8.90 24.74/8.90 (6) 24.74/8.90 Obligation: 24.74/8.90 mainModule Main 24.74/8.90 module FiniteMap where { 24.74/8.90 import qualified Main; 24.74/8.90 import qualified Maybe; 24.74/8.90 import qualified Prelude; 24.74/8.90 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 24.74/8.90 24.74/8.90 instance (Eq a, Eq b) => Eq FiniteMap b a where { 24.74/8.90 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.74/8.90 } 24.74/8.90 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 24.74/8.90 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 24.74/8.90 24.74/8.90 addListToFM0 old new = new; 24.74/8.90 24.74/8.90 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 24.74/8.90 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 24.74/8.90 add fmap (key,elt) = addToFM_C combiner fmap key elt; 24.74/8.90 }; 24.74/8.90 24.74/8.90 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 24.74/8.90 addToFM_C combiner EmptyFM key elt = unitFM key elt; 24.74/8.90 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 24.74/8.90 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 24.74/8.90 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 24.74/8.90 24.74/8.90 emptyFM :: FiniteMap a b; 24.74/8.90 emptyFM = EmptyFM; 24.74/8.90 24.74/8.90 findMax :: FiniteMap b a -> (b,a); 24.74/8.90 findMax (Branch key elt _ _ EmptyFM) = (key,elt); 24.74/8.90 findMax (Branch key elt _ _ fm_r) = findMax fm_r; 24.74/8.90 24.74/8.90 findMin :: FiniteMap b a -> (b,a); 24.74/8.90 findMin (Branch key elt _ EmptyFM _) = (key,elt); 24.74/8.90 findMin (Branch key elt _ fm_l _) = findMin fm_l; 24.74/8.90 24.74/8.90 fmToList :: FiniteMap a b -> [(a,b)]; 24.74/8.90 fmToList fm = foldFM fmToList0 [] fm; 24.74/8.90 24.74/8.90 fmToList0 key elt rest = (key,elt) : rest; 24.74/8.90 24.74/8.90 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 24.74/8.90 foldFM k z EmptyFM = z; 24.74/8.90 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.74/8.90 24.74/8.90 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 24.74/8.90 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 24.74/8.90 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 24.74/8.90 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 24.74/8.90 | otherwise = mkBranch 2 key elt fm_L fm_R where { 24.74/8.90 double_L fm_l (Branch key_r elt_r _ (Branch key_rl elt_rl _ fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 24.74/8.90 double_R (Branch key_l elt_l _ fm_ll (Branch key_lr elt_lr _ fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 24.74/8.90 mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 24.74/8.90 | otherwise = double_L fm_L fm_R; 24.74/8.90 mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 24.74/8.90 | otherwise = double_R fm_L fm_R; 24.74/8.90 single_L fm_l (Branch key_r elt_r _ fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 24.74/8.90 single_R (Branch key_l elt_l _ fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 24.74/8.90 size_l = sizeFM fm_L; 24.74/8.90 size_r = sizeFM fm_R; 24.74/8.90 }; 24.74/8.90 24.74/8.90 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 24.74/8.90 mkBranch which key elt fm_l fm_r = let { 24.74/8.90 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 24.74/8.90 } in result where { 24.74/8.90 balance_ok = True; 24.74/8.90 left_ok = left_ok0 fm_l key fm_l; 24.74/8.90 left_ok0 fm_l key EmptyFM = True; 24.74/8.90 left_ok0 fm_l key (Branch left_key _ _ _ _) = let { 24.74/8.90 biggest_left_key = fst (findMax fm_l); 24.74/8.90 } in biggest_left_key < key; 24.74/8.90 left_size = sizeFM fm_l; 24.74/8.90 right_ok = right_ok0 fm_r key fm_r; 24.74/8.90 right_ok0 fm_r key EmptyFM = True; 24.74/8.90 right_ok0 fm_r key (Branch right_key _ _ _ _) = let { 24.74/8.90 smallest_right_key = fst (findMin fm_r); 24.74/8.90 } in key < smallest_right_key; 24.74/8.90 right_size = sizeFM fm_r; 24.74/8.90 unbox :: Int -> Int; 24.74/8.90 unbox x = x; 24.74/8.90 }; 24.74/8.90 24.74/8.90 sIZE_RATIO :: Int; 24.74/8.90 sIZE_RATIO = 5; 24.74/8.90 24.74/8.90 sizeFM :: FiniteMap a b -> Int; 24.74/8.90 sizeFM EmptyFM = 0; 24.74/8.90 sizeFM (Branch _ _ size _ _) = size; 24.74/8.90 24.74/8.90 unitFM :: b -> a -> FiniteMap b a; 24.74/8.90 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 24.74/8.90 24.74/8.90 } 24.74/8.90 module Maybe where { 24.74/8.90 import qualified FiniteMap; 24.74/8.90 import qualified Main; 24.74/8.90 import qualified Prelude; 24.74/8.90 } 24.74/8.90 module Main where { 24.74/8.90 import qualified FiniteMap; 24.74/8.90 import qualified Maybe; 24.74/8.90 import qualified Prelude; 24.74/8.90 } 24.74/8.90 24.74/8.90 ---------------------------------------- 24.74/8.90 24.74/8.90 (7) BR (EQUIVALENT) 24.74/8.90 Replaced joker patterns by fresh variables and removed binding patterns. 24.74/8.90 ---------------------------------------- 24.74/8.90 24.74/8.90 (8) 24.74/8.90 Obligation: 24.74/8.90 mainModule Main 24.74/8.90 module FiniteMap where { 24.74/8.90 import qualified Main; 24.74/8.90 import qualified Maybe; 24.74/8.90 import qualified Prelude; 24.74/8.90 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 24.74/8.90 24.74/8.90 instance (Eq a, Eq b) => Eq FiniteMap b a where { 24.74/8.90 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 24.74/8.90 } 24.74/8.90 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 24.74/8.90 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 24.74/8.90 24.74/8.90 addListToFM0 old new = new; 24.74/8.90 24.74/8.90 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 24.74/8.90 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 24.74/8.90 add fmap (key,elt) = addToFM_C combiner fmap key elt; 24.74/8.90 }; 24.74/8.90 24.74/8.90 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 24.74/8.90 addToFM_C combiner EmptyFM key elt = unitFM key elt; 24.74/8.90 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt | new_key < key = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r 24.74/8.90 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) 24.74/8.90 | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; 24.74/8.90 24.74/8.90 emptyFM :: FiniteMap a b; 24.74/8.90 emptyFM = EmptyFM; 24.74/8.90 24.74/8.90 findMax :: FiniteMap a b -> (a,b); 24.74/8.90 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 24.74/8.90 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 24.74/8.90 24.74/8.90 findMin :: FiniteMap b a -> (b,a); 24.74/8.90 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 24.74/8.90 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 24.74/8.90 24.74/8.90 fmToList :: FiniteMap b a -> [(b,a)]; 24.74/8.90 fmToList fm = foldFM fmToList0 [] fm; 24.74/8.90 24.74/8.90 fmToList0 key elt rest = (key,elt) : rest; 24.74/8.90 24.74/8.90 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 24.74/8.90 foldFM k z EmptyFM = z; 24.74/8.90 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 24.74/8.90 24.74/8.90 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 24.74/8.90 mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R 24.74/8.90 | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R 24.74/8.90 | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L 24.74/8.90 | otherwise = mkBranch 2 key elt fm_L fm_R where { 24.74/8.90 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 24.74/8.90 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 24.74/8.90 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R 24.74/8.90 | otherwise = double_L fm_L fm_R; 24.74/8.90 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R 24.74/8.90 | otherwise = double_R fm_L fm_R; 24.74/8.90 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 24.74/8.90 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 24.74/8.90 size_l = sizeFM fm_L; 24.74/8.90 size_r = sizeFM fm_R; 24.74/8.90 }; 24.74/8.90 24.74/8.90 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 24.74/8.90 mkBranch which key elt fm_l fm_r = let { 24.74/8.90 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 24.74/8.90 } in result where { 24.74/8.90 balance_ok = True; 24.74/8.90 left_ok = left_ok0 fm_l key fm_l; 24.74/8.90 left_ok0 fm_l key EmptyFM = True; 24.74/8.90 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 24.74/8.90 biggest_left_key = fst (findMax fm_l); 25.22/9.04 } in biggest_left_key < key; 25.22/9.04 left_size = sizeFM fm_l; 25.22/9.04 right_ok = right_ok0 fm_r key fm_r; 25.22/9.04 right_ok0 fm_r key EmptyFM = True; 25.22/9.04 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 25.22/9.04 smallest_right_key = fst (findMin fm_r); 25.22/9.04 } in key < smallest_right_key; 25.22/9.04 right_size = sizeFM fm_r; 25.22/9.04 unbox :: Int -> Int; 25.22/9.04 unbox x = x; 25.22/9.04 }; 25.22/9.04 25.22/9.04 sIZE_RATIO :: Int; 25.22/9.04 sIZE_RATIO = 5; 25.22/9.04 25.22/9.04 sizeFM :: FiniteMap a b -> Int; 25.22/9.04 sizeFM EmptyFM = 0; 25.22/9.04 sizeFM (Branch vyu vyv size vyw vyx) = size; 25.22/9.04 25.22/9.04 unitFM :: a -> b -> FiniteMap a b; 25.22/9.04 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 25.22/9.04 25.22/9.04 } 25.22/9.04 module Maybe where { 25.22/9.04 import qualified FiniteMap; 25.22/9.04 import qualified Main; 25.22/9.04 import qualified Prelude; 25.22/9.04 } 25.22/9.04 module Main where { 25.22/9.04 import qualified FiniteMap; 25.22/9.04 import qualified Maybe; 25.22/9.04 import qualified Prelude; 25.22/9.04 } 25.22/9.04 25.22/9.04 ---------------------------------------- 25.22/9.04 25.22/9.04 (9) COR (EQUIVALENT) 25.22/9.04 Cond Reductions: 25.22/9.04 The following Function with conditions 25.22/9.04 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 25.22/9.04 " 25.22/9.04 is transformed to 25.22/9.04 "compare x y = compare3 x y; 25.22/9.04 " 25.22/9.04 "compare0 x y True = GT; 25.22/9.04 " 25.22/9.04 "compare2 x y True = EQ; 25.22/9.04 compare2 x y False = compare1 x y (x <= y); 25.22/9.04 " 25.22/9.04 "compare1 x y True = LT; 25.22/9.04 compare1 x y False = compare0 x y otherwise; 25.22/9.04 " 25.22/9.04 "compare3 x y = compare2 x y (x == y); 25.22/9.04 " 25.22/9.04 The following Function with conditions 25.22/9.04 "absReal x|x >= 0x|otherwise`negate` x; 25.22/9.04 " 25.22/9.04 is transformed to 25.22/9.04 "absReal x = absReal2 x; 25.22/9.04 " 25.22/9.04 "absReal1 x True = x; 25.22/9.04 absReal1 x False = absReal0 x otherwise; 25.22/9.04 " 25.22/9.04 "absReal0 x True = `negate` x; 25.22/9.04 " 25.22/9.04 "absReal2 x = absReal1 x (x >= 0); 25.22/9.04 " 25.22/9.04 The following Function with conditions 25.22/9.04 "gcd' x 0 = x; 25.22/9.04 gcd' x y = gcd' y (x `rem` y); 25.22/9.04 " 25.22/9.04 is transformed to 25.22/9.04 "gcd' x vzw = gcd'2 x vzw; 25.22/9.04 gcd' x y = gcd'0 x y; 25.22/9.04 " 25.22/9.04 "gcd'0 x y = gcd' y (x `rem` y); 25.22/9.04 " 25.22/9.04 "gcd'1 True x vzw = x; 25.22/9.04 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 25.22/9.04 " 25.22/9.04 "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 25.22/9.04 gcd'2 wuu wuv = gcd'0 wuu wuv; 25.22/9.04 " 25.22/9.04 The following Function with conditions 25.22/9.04 "gcd 0 0 = error []; 25.22/9.04 gcd x y = gcd' (abs x) (abs y) where { 25.22/9.04 gcd' x 0 = x; 25.22/9.04 gcd' x y = gcd' y (x `rem` y); 25.22/9.04 } 25.22/9.04 ; 25.22/9.04 " 25.22/9.04 is transformed to 25.22/9.04 "gcd wuw wux = gcd3 wuw wux; 25.22/9.04 gcd x y = gcd0 x y; 25.22/9.04 " 25.22/9.04 "gcd0 x y = gcd' (abs x) (abs y) where { 25.22/9.04 gcd' x vzw = gcd'2 x vzw; 25.22/9.04 gcd' x y = gcd'0 x y; 25.22/9.04 ; 25.22/9.04 gcd'0 x y = gcd' y (x `rem` y); 25.22/9.04 ; 25.22/9.04 gcd'1 True x vzw = x; 25.22/9.04 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 25.22/9.04 ; 25.22/9.04 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 25.22/9.04 gcd'2 wuu wuv = gcd'0 wuu wuv; 25.22/9.04 } 25.22/9.04 ; 25.22/9.04 " 25.22/9.04 "gcd1 True wuw wux = error []; 25.22/9.04 gcd1 wuy wuz wvu = gcd0 wuz wvu; 25.22/9.04 " 25.22/9.04 "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; 25.22/9.04 gcd2 wvv wvw wvx = gcd0 wvw wvx; 25.22/9.04 " 25.22/9.04 "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; 25.22/9.04 gcd3 wvy wvz = gcd0 wvy wvz; 25.22/9.04 " 25.22/9.04 The following Function with conditions 25.22/9.04 "undefined |Falseundefined; 25.22/9.04 " 25.22/9.04 is transformed to 25.22/9.04 "undefined = undefined1; 25.22/9.04 " 25.22/9.04 "undefined0 True = undefined; 25.22/9.04 " 25.22/9.04 "undefined1 = undefined0 False; 25.22/9.04 " 25.22/9.04 The following Function with conditions 25.22/9.04 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 25.22/9.04 d = gcd x y; 25.22/9.04 } 25.22/9.04 ; 25.22/9.04 " 25.22/9.04 is transformed to 25.22/9.04 "reduce x y = reduce2 x y; 25.22/9.04 " 25.22/9.04 "reduce2 x y = reduce1 x y (y == 0) where { 25.22/9.04 d = gcd x y; 25.22/9.04 ; 25.22/9.04 reduce0 x y True = x `quot` d :% (y `quot` d); 25.22/9.04 ; 25.22/9.04 reduce1 x y True = error []; 25.22/9.04 reduce1 x y False = reduce0 x y otherwise; 25.22/9.04 } 25.22/9.04 ; 25.22/9.04 " 25.22/9.04 The following Function with conditions 25.22/9.04 "addToFM_C combiner EmptyFM key elt = unitFM key elt; 25.22/9.04 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt|new_key < keymkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r|new_key > keymkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt)|otherwiseBranch new_key (combiner elt new_elt) size fm_l fm_r; 25.22/9.04 " 25.22/9.04 is transformed to 25.22/9.04 "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 25.22/9.04 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; 25.22/9.04 " 25.22/9.04 "addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; 25.22/9.04 " 25.22/9.04 "addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); 25.22/9.04 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; 25.22/9.04 " 25.22/9.04 "addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; 25.22/9.04 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); 25.22/9.04 " 25.22/9.04 "addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); 25.22/9.04 " 25.22/9.04 "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 25.22/9.04 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 25.22/9.04 " 25.22/9.04 The following Function with conditions 25.22/9.04 "mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 25.22/9.04 " 25.22/9.04 is transformed to 25.22/9.04 "mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 25.22/9.04 " 25.22/9.04 "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 25.22/9.04 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 25.22/9.04 " 25.22/9.04 "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 25.22/9.04 " 25.22/9.04 "mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 25.22/9.04 " 25.22/9.04 The following Function with conditions 25.22/9.04 "mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 25.22/9.04 " 25.22/9.04 is transformed to 25.22/9.04 "mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 25.22/9.04 " 25.22/9.04 "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 25.22/9.04 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 25.22/9.04 " 25.22/9.04 "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 25.22/9.04 " 25.22/9.04 "mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 25.22/9.04 " 25.22/9.04 The following Function with conditions 25.22/9.04 "mkBalBranch key elt fm_L fm_R|size_l + size_r < 2mkBranch 1 key elt fm_L fm_R|size_r > sIZE_RATIO * size_lmkBalBranch0 fm_L fm_R fm_R|size_l > sIZE_RATIO * size_rmkBalBranch1 fm_L fm_R fm_L|otherwisemkBranch 2 key elt fm_L fm_R where { 25.22/9.04 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 25.22/9.04 ; 25.22/9.04 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 25.22/9.04 ; 25.22/9.04 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr)|sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R; 25.22/9.04 ; 25.22/9.04 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr)|sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R; 25.22/9.04 ; 25.22/9.04 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 25.22/9.04 ; 25.22/9.04 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 25.22/9.04 ; 25.22/9.04 size_l = sizeFM fm_L; 25.22/9.04 ; 25.22/9.04 size_r = sizeFM fm_R; 25.22/9.04 } 25.22/9.04 ; 25.22/9.04 " 25.22/9.04 is transformed to 25.22/9.04 "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 25.22/9.04 " 25.22/9.04 "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 25.22/9.04 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 25.22/9.04 ; 25.22/9.04 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 25.22/9.04 ; 25.22/9.04 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 25.22/9.04 ; 25.22/9.04 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 25.22/9.04 ; 25.22/9.04 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 25.22/9.04 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 25.22/9.04 ; 25.22/9.04 mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 25.22/9.04 ; 25.22/9.04 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 25.22/9.04 ; 25.22/9.04 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 25.22/9.04 ; 25.22/9.04 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 25.22/9.04 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 25.22/9.04 ; 25.22/9.04 mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 25.22/9.04 ; 25.22/9.04 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 25.22/9.04 ; 25.22/9.04 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 25.22/9.04 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 25.22/9.04 ; 25.22/9.04 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 25.22/9.04 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 25.22/9.04 ; 25.22/9.04 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 25.22/9.04 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 25.22/9.04 ; 25.22/9.04 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 25.22/9.04 ; 25.22/9.04 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 25.22/9.04 ; 25.22/9.04 size_l = sizeFM fm_L; 25.22/9.04 ; 25.22/9.04 size_r = sizeFM fm_R; 25.22/9.04 } 25.22/9.04 ; 25.22/9.04 " 25.22/9.04 25.22/9.04 ---------------------------------------- 25.22/9.04 25.22/9.04 (10) 25.22/9.04 Obligation: 25.22/9.04 mainModule Main 25.22/9.04 module FiniteMap where { 25.22/9.04 import qualified Main; 25.22/9.04 import qualified Maybe; 25.22/9.04 import qualified Prelude; 25.22/9.04 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.22/9.04 25.22/9.04 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.22/9.04 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.22/9.04 } 25.22/9.04 addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; 25.22/9.04 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 25.22/9.04 25.22/9.04 addListToFM0 old new = new; 25.22/9.04 25.22/9.04 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 25.22/9.04 addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { 25.22/9.04 add fmap (key,elt) = addToFM_C combiner fmap key elt; 25.22/9.04 }; 25.22/9.04 25.22/9.04 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 25.22/9.04 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 25.22/9.04 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; 25.22/9.04 25.22/9.04 addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; 25.22/9.04 25.22/9.04 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); 25.22/9.04 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; 25.22/9.04 25.22/9.04 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; 25.22/9.04 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); 25.22/9.04 25.22/9.04 addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); 25.22/9.04 25.22/9.04 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 25.22/9.04 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 25.22/9.04 25.22/9.04 emptyFM :: FiniteMap b a; 25.22/9.04 emptyFM = EmptyFM; 25.22/9.04 25.22/9.04 findMax :: FiniteMap b a -> (b,a); 25.22/9.04 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 25.22/9.04 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 25.22/9.04 25.22/9.04 findMin :: FiniteMap a b -> (a,b); 25.22/9.04 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 25.22/9.04 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 25.22/9.04 25.22/9.04 fmToList :: FiniteMap a b -> [(a,b)]; 25.22/9.04 fmToList fm = foldFM fmToList0 [] fm; 25.22/9.04 25.22/9.04 fmToList0 key elt rest = (key,elt) : rest; 25.22/9.04 25.22/9.04 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 25.22/9.04 foldFM k z EmptyFM = z; 25.22/9.04 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.22/9.04 25.22/9.04 mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; 25.22/9.04 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 25.22/9.04 25.22/9.04 mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 25.22/9.04 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 25.22/9.04 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 25.22/9.04 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 25.22/9.04 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 25.22/9.04 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 25.22/9.04 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 25.22/9.04 mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 25.22/9.04 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 25.22/9.04 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 25.22/9.04 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 25.22/9.04 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 25.22/9.04 mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 25.22/9.04 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 25.22/9.04 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 25.22/9.04 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 25.22/9.04 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 25.22/9.04 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 25.22/9.04 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 25.22/9.04 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 25.22/9.04 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 25.22/9.04 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 25.22/9.04 size_l = sizeFM fm_L; 25.22/9.04 size_r = sizeFM fm_R; 25.22/9.04 }; 25.22/9.04 25.22/9.04 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.22/9.04 mkBranch which key elt fm_l fm_r = let { 25.22/9.04 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 25.22/9.04 } in result where { 25.22/9.04 balance_ok = True; 25.22/9.04 left_ok = left_ok0 fm_l key fm_l; 25.22/9.04 left_ok0 fm_l key EmptyFM = True; 25.22/9.04 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 25.22/9.04 biggest_left_key = fst (findMax fm_l); 25.22/9.04 } in biggest_left_key < key; 25.22/9.04 left_size = sizeFM fm_l; 25.22/9.04 right_ok = right_ok0 fm_r key fm_r; 25.22/9.04 right_ok0 fm_r key EmptyFM = True; 25.22/9.04 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 25.22/9.04 smallest_right_key = fst (findMin fm_r); 25.22/9.04 } in key < smallest_right_key; 25.22/9.04 right_size = sizeFM fm_r; 25.22/9.04 unbox :: Int -> Int; 25.22/9.04 unbox x = x; 25.22/9.04 }; 25.22/9.04 25.22/9.04 sIZE_RATIO :: Int; 25.22/9.04 sIZE_RATIO = 5; 25.22/9.04 25.22/9.04 sizeFM :: FiniteMap b a -> Int; 25.22/9.04 sizeFM EmptyFM = 0; 25.22/9.04 sizeFM (Branch vyu vyv size vyw vyx) = size; 25.22/9.04 25.22/9.04 unitFM :: b -> a -> FiniteMap b a; 25.22/9.04 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 25.22/9.04 25.22/9.04 } 25.22/9.04 module Maybe where { 25.22/9.04 import qualified FiniteMap; 25.22/9.04 import qualified Main; 25.22/9.04 import qualified Prelude; 25.22/9.04 } 25.22/9.04 module Main where { 25.22/9.04 import qualified FiniteMap; 25.22/9.04 import qualified Maybe; 25.22/9.04 import qualified Prelude; 25.22/9.04 } 25.22/9.04 25.22/9.04 ---------------------------------------- 25.22/9.04 25.22/9.04 (11) LetRed (EQUIVALENT) 25.22/9.04 Let/Where Reductions: 25.22/9.04 The bindings of the following Let/Where expression 25.22/9.04 "gcd' (abs x) (abs y) where { 25.22/9.04 gcd' x vzw = gcd'2 x vzw; 25.22/9.04 gcd' x y = gcd'0 x y; 25.22/9.04 ; 25.22/9.04 gcd'0 x y = gcd' y (x `rem` y); 25.22/9.04 ; 25.22/9.04 gcd'1 True x vzw = x; 25.22/9.04 gcd'1 vzx vzy vzz = gcd'0 vzy vzz; 25.22/9.04 ; 25.22/9.04 gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; 25.22/9.04 gcd'2 wuu wuv = gcd'0 wuu wuv; 25.22/9.04 } 25.22/9.04 " 25.22/9.04 are unpacked to the following functions on top level 25.22/9.04 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 25.22/9.04 " 25.22/9.04 "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; 25.22/9.04 gcd0Gcd' x y = gcd0Gcd'0 x y; 25.22/9.04 " 25.22/9.04 "gcd0Gcd'1 True x vzw = x; 25.22/9.04 gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; 25.22/9.04 " 25.22/9.04 "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; 25.22/9.04 gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; 25.22/9.04 " 25.22/9.04 The bindings of the following Let/Where expression 25.22/9.04 "reduce1 x y (y == 0) where { 25.22/9.04 d = gcd x y; 25.22/9.04 ; 25.22/9.04 reduce0 x y True = x `quot` d :% (y `quot` d); 25.22/9.04 ; 25.22/9.04 reduce1 x y True = error []; 25.22/9.04 reduce1 x y False = reduce0 x y otherwise; 25.22/9.04 } 25.22/9.04 " 25.22/9.04 are unpacked to the following functions on top level 25.22/9.04 "reduce2Reduce1 wxw wxx x y True = error []; 25.22/9.04 reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; 25.22/9.04 " 25.22/9.04 "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); 25.22/9.04 " 25.22/9.04 "reduce2D wxw wxx = gcd wxw wxx; 25.22/9.04 " 25.22/9.04 The bindings of the following Let/Where expression 25.22/9.04 "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 25.22/9.04 double_L fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 key elt fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 25.22/9.04 ; 25.22/9.04 double_R (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 key elt fm_lrr fm_r); 25.22/9.04 ; 25.22/9.04 mkBalBranch0 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 25.22/9.04 ; 25.22/9.04 mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; 25.22/9.04 ; 25.22/9.04 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 25.22/9.04 mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 25.22/9.04 ; 25.22/9.04 mkBalBranch02 fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 25.22/9.04 ; 25.22/9.04 mkBalBranch1 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 25.22/9.04 ; 25.22/9.04 mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; 25.22/9.04 ; 25.22/9.04 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 25.22/9.04 mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 25.22/9.04 ; 25.22/9.04 mkBalBranch12 fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 25.22/9.04 ; 25.22/9.04 mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 25.22/9.04 ; 25.22/9.04 mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; 25.22/9.04 mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; 25.22/9.04 ; 25.22/9.04 mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; 25.22/9.04 mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); 25.22/9.04 ; 25.22/9.04 mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 25.22/9.04 mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 25.22/9.04 ; 25.22/9.04 single_L fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 key elt fm_l fm_rl) fm_rr; 25.22/9.04 ; 25.22/9.04 single_R (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 key elt fm_lr fm_r); 25.22/9.04 ; 25.22/9.04 size_l = sizeFM fm_L; 25.22/9.04 ; 25.22/9.04 size_r = sizeFM fm_R; 25.22/9.04 } 25.22/9.04 " 25.22/9.04 are unpacked to the following functions on top level 25.22/9.04 "mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; 25.22/9.04 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 25.22/9.04 " 25.22/9.04 "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 25.22/9.04 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); 25.22/9.04 " 25.22/9.04 "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wxy; 25.22/9.04 " 25.22/9.04 "mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxz wyu fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 25.22/9.04 " 25.22/9.04 "mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 25.22/9.04 " 25.22/9.04 "mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 25.22/9.04 " 25.22/9.04 "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 25.22/9.04 " 25.22/9.04 "mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; 25.22/9.04 " 25.22/9.04 "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 25.22/9.04 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 25.22/9.04 " 25.22/9.04 "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 25.22/9.04 " 25.22/9.04 "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 25.22/9.04 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); 25.22/9.04 " 25.22/9.04 "mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxz wyu fm_lr fm_r); 25.22/9.04 " 25.22/9.04 "mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxz wyu fm_l fm_rl) fm_rr; 25.22/9.04 " 25.22/9.04 "mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; 25.22/9.04 " 25.22/9.04 "mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 25.22/9.04 " 25.22/9.04 "mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 25.22/9.04 " 25.22/9.04 "mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxz wyu fm_lrr fm_r); 25.22/9.04 " 25.22/9.04 "mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; 25.22/9.04 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 25.22/9.04 " 25.22/9.04 The bindings of the following Let/Where expression 25.22/9.04 "foldl add fm key_elt_pairs where { 25.22/9.04 add fmap (key,elt) = addToFM_C combiner fmap key elt; 25.22/9.04 } 25.22/9.04 " 25.22/9.04 are unpacked to the following functions on top level 25.22/9.04 "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 25.22/9.04 " 25.22/9.04 The bindings of the following Let/Where expression 25.22/9.04 "let { 25.22/9.04 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 25.22/9.04 } in result where { 25.22/9.04 balance_ok = True; 25.22/9.04 ; 25.22/9.04 left_ok = left_ok0 fm_l key fm_l; 25.22/9.04 ; 25.22/9.04 left_ok0 fm_l key EmptyFM = True; 25.22/9.04 left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { 25.22/9.04 biggest_left_key = fst (findMax fm_l); 25.22/9.04 } in biggest_left_key < key; 25.22/9.04 ; 25.22/9.04 left_size = sizeFM fm_l; 25.22/9.04 ; 25.22/9.04 right_ok = right_ok0 fm_r key fm_r; 25.22/9.04 ; 25.22/9.04 right_ok0 fm_r key EmptyFM = True; 25.22/9.04 right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { 25.22/9.04 smallest_right_key = fst (findMin fm_r); 25.22/9.04 } in key < smallest_right_key; 25.22/9.04 ; 25.22/9.04 right_size = sizeFM fm_r; 25.22/9.04 ; 25.22/9.04 unbox x = x; 25.22/9.04 } 25.22/9.04 " 25.22/9.04 are unpacked to the following functions on top level 25.22/9.04 "mkBranchUnbox wyx wyy wyz x = x; 25.22/9.04 " 25.22/9.04 "mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 25.22/9.04 " 25.22/9.04 "mkBranchBalance_ok wyx wyy wyz = True; 25.22/9.04 " 25.22/9.04 "mkBranchRight_size wyx wyy wyz = sizeFM wyy; 25.22/9.04 " 25.22/9.04 "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 25.22/9.04 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 25.22/9.04 " 25.22/9.04 "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyy wyz wyy; 25.22/9.04 " 25.22/9.04 "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 25.22/9.04 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 25.22/9.04 " 25.22/9.04 "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyz wyx; 25.22/9.04 " 25.22/9.04 The bindings of the following Let/Where expression 25.22/9.04 "let { 25.22/9.04 result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; 25.22/9.04 } in result" 25.22/9.04 are unpacked to the following functions on top level 25.22/9.04 "mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzx wzu (1 + mkBranchLeft_size wzw wzx wzu + mkBranchRight_size wzw wzx wzu)) wzw wzx; 25.22/9.04 " 25.22/9.04 The bindings of the following Let/Where expression 25.22/9.04 "let { 25.22/9.04 biggest_left_key = fst (findMax fm_l); 25.22/9.04 } in biggest_left_key < key" 25.22/9.04 are unpacked to the following functions on top level 25.22/9.04 "mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 25.22/9.04 " 25.22/9.04 The bindings of the following Let/Where expression 25.22/9.04 "let { 25.22/9.04 smallest_right_key = fst (findMin fm_r); 25.22/9.04 } in key < smallest_right_key" 25.22/9.04 are unpacked to the following functions on top level 25.22/9.04 "mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 25.22/9.04 " 25.22/9.04 25.22/9.04 ---------------------------------------- 25.22/9.04 25.22/9.04 (12) 25.22/9.04 Obligation: 25.22/9.04 mainModule Main 25.22/9.04 module FiniteMap where { 25.22/9.04 import qualified Main; 25.22/9.04 import qualified Maybe; 25.22/9.04 import qualified Prelude; 25.22/9.04 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 25.22/9.04 25.22/9.04 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.22/9.04 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.22/9.04 } 25.22/9.04 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 25.22/9.04 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 25.22/9.04 25.22/9.04 addListToFM0 old new = new; 25.22/9.04 25.22/9.04 addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; 25.22/9.04 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 25.22/9.04 25.22/9.04 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 25.22/9.04 25.22/9.04 addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; 25.22/9.04 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 25.22/9.04 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; 25.22/9.04 25.22/9.04 addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; 25.22/9.04 25.22/9.04 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); 25.22/9.04 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; 25.22/9.04 25.22/9.04 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; 25.22/9.04 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); 25.22/9.04 25.22/9.04 addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); 25.22/9.04 25.22/9.04 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 25.22/9.04 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 25.22/9.04 25.22/9.04 emptyFM :: FiniteMap a b; 25.22/9.04 emptyFM = EmptyFM; 25.22/9.04 25.22/9.04 findMax :: FiniteMap a b -> (a,b); 25.22/9.04 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 25.22/9.04 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 25.22/9.04 25.22/9.04 findMin :: FiniteMap a b -> (a,b); 25.22/9.04 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 25.22/9.04 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 25.22/9.04 25.22/9.04 fmToList :: FiniteMap a b -> [(a,b)]; 25.22/9.04 fmToList fm = foldFM fmToList0 [] fm; 25.22/9.04 25.22/9.04 fmToList0 key elt rest = (key,elt) : rest; 25.22/9.04 25.22/9.04 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 25.22/9.04 foldFM k z EmptyFM = z; 25.22/9.04 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.22/9.04 25.22/9.04 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.22/9.04 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 25.22/9.04 25.22/9.04 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt fm_R < 2); 25.22/9.04 25.22/9.04 mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch 5 key_rl elt_rl (mkBranch 6 wxz wyu fm_l fm_rll) (mkBranch 7 key_r elt_r fm_rlr fm_rr); 25.22/9.04 25.22/9.04 mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch 10 key_lr elt_lr (mkBranch 11 key_l elt_l fm_ll fm_lrl) (mkBranch 12 wxz wyu fm_lrr fm_r); 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; 25.22/9.04 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < 2 * sizeFM fm_rr); 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; 25.22/9.04 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < 2 * sizeFM fm_ll); 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 25.22/9.04 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 25.22/9.04 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 25.22/9.04 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); 25.22/9.04 25.22/9.04 mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch 3 key_r elt_r (mkBranch 4 wxz wyu fm_l fm_rl) fm_rr; 25.22/9.04 25.22/9.04 mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch 8 key_l elt_l fm_ll (mkBranch 9 wxz wyu fm_lr fm_r); 25.22/9.04 25.22/9.04 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wxy; 25.22/9.04 25.22/9.04 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 25.22/9.04 25.22/9.04 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.22/9.04 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 25.22/9.04 25.22/9.04 mkBranchBalance_ok wyx wyy wyz = True; 25.22/9.04 25.22/9.04 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyz wyx; 25.22/9.04 25.22/9.04 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 25.22/9.04 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 25.22/9.04 25.22/9.04 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 25.22/9.04 25.22/9.04 mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 25.22/9.04 25.22/9.04 mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzx wzu (1 + mkBranchLeft_size wzw wzx wzu + mkBranchRight_size wzw wzx wzu)) wzw wzx; 25.22/9.04 25.22/9.04 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyy wyz wyy; 25.22/9.04 25.22/9.04 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 25.22/9.04 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 25.22/9.04 25.22/9.04 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 25.22/9.04 25.22/9.04 mkBranchRight_size wyx wyy wyz = sizeFM wyy; 25.22/9.04 25.22/9.04 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> (FiniteMap a b) ( -> a (Int -> Int))); 25.22/9.04 mkBranchUnbox wyx wyy wyz x = x; 25.22/9.04 25.22/9.04 sIZE_RATIO :: Int; 25.22/9.04 sIZE_RATIO = 5; 25.22/9.04 25.22/9.04 sizeFM :: FiniteMap b a -> Int; 25.22/9.04 sizeFM EmptyFM = 0; 25.22/9.04 sizeFM (Branch vyu vyv size vyw vyx) = size; 25.22/9.04 25.22/9.04 unitFM :: b -> a -> FiniteMap b a; 25.22/9.04 unitFM key elt = Branch key elt 1 emptyFM emptyFM; 25.22/9.04 25.22/9.04 } 25.22/9.04 module Maybe where { 25.22/9.04 import qualified FiniteMap; 25.22/9.04 import qualified Main; 25.22/9.04 import qualified Prelude; 25.22/9.04 } 25.22/9.04 module Main where { 25.22/9.04 import qualified FiniteMap; 25.22/9.04 import qualified Maybe; 25.22/9.04 import qualified Prelude; 25.22/9.04 } 25.22/9.04 25.22/9.04 ---------------------------------------- 25.22/9.04 25.22/9.04 (13) NumRed (SOUND) 25.22/9.04 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 25.22/9.04 ---------------------------------------- 25.22/9.04 25.22/9.04 (14) 25.22/9.04 Obligation: 25.22/9.04 mainModule Main 25.22/9.04 module FiniteMap where { 25.22/9.04 import qualified Main; 25.22/9.04 import qualified Maybe; 25.22/9.04 import qualified Prelude; 25.22/9.04 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 25.22/9.04 25.22/9.04 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.22/9.04 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.22/9.04 } 25.22/9.04 addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; 25.22/9.04 addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; 25.22/9.04 25.22/9.04 addListToFM0 old new = new; 25.22/9.04 25.22/9.04 addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; 25.22/9.04 addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; 25.22/9.04 25.22/9.04 addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; 25.22/9.04 25.22/9.04 addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; 25.22/9.04 addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 25.22/9.04 addToFM_C combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt; 25.22/9.04 25.22/9.04 addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt True = Branch new_key (combiner elt new_elt) size fm_l fm_r; 25.22/9.04 25.22/9.04 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt); 25.22/9.04 addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C0 combiner key elt size fm_l fm_r new_key new_elt otherwise; 25.22/9.04 25.22/9.04 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt True = mkBalBranch key elt (addToFM_C combiner fm_l new_key new_elt) fm_r; 25.22/9.04 addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt False = addToFM_C1 combiner key elt size fm_l fm_r new_key new_elt (new_key > key); 25.22/9.04 25.22/9.04 addToFM_C3 combiner (Branch key elt size fm_l fm_r) new_key new_elt = addToFM_C2 combiner key elt size fm_l fm_r new_key new_elt (new_key < key); 25.22/9.04 25.22/9.04 addToFM_C4 combiner EmptyFM key elt = unitFM key elt; 25.22/9.04 addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; 25.22/9.04 25.22/9.04 emptyFM :: FiniteMap b a; 25.22/9.04 emptyFM = EmptyFM; 25.22/9.04 25.22/9.04 findMax :: FiniteMap a b -> (a,b); 25.22/9.04 findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); 25.22/9.04 findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; 25.22/9.04 25.22/9.04 findMin :: FiniteMap b a -> (b,a); 25.22/9.04 findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); 25.22/9.04 findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; 25.22/9.04 25.22/9.04 fmToList :: FiniteMap b a -> [(b,a)]; 25.22/9.04 fmToList fm = foldFM fmToList0 [] fm; 25.22/9.04 25.22/9.04 fmToList0 key elt rest = (key,elt) : rest; 25.22/9.04 25.22/9.04 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 25.22/9.04 foldFM k z EmptyFM = z; 25.22/9.04 foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.22/9.04 25.22/9.04 mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.22/9.04 mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; 25.22/9.04 25.22/9.04 mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 fm_L key elt fm_R key elt fm_L fm_R (mkBalBranch6Size_l fm_L key elt fm_R + mkBalBranch6Size_r fm_L key elt fm_R < Pos (Succ (Succ Zero))); 25.22/9.04 25.22/9.04 mkBalBranch6Double_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vwz (Branch key_rl elt_rl vxu fm_rll fm_rlr) fm_rr) = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) key_rl elt_rl (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) wxz wyu fm_l fm_rll) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) key_r elt_r fm_rlr fm_rr); 25.22/9.04 25.22/9.04 mkBalBranch6Double_R wxy wxz wyu wyv (Branch key_l elt_l vwu fm_ll (Branch key_lr elt_lr vwv fm_lrl fm_lrr)) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) key_lr elt_lr (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) key_l elt_l fm_ll fm_lrl) (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) wxz wyu fm_lrr fm_r); 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr); 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Double_L wxy wxz wyu wyv fm_L fm_R; 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr True = mkBalBranch6Single_L wxy wxz wyu wyv fm_L fm_R; 25.22/9.04 mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr False = mkBalBranch6MkBalBranch00 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr otherwise; 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch02 wxy wxz wyu wyv fm_L fm_R (Branch vxv vxw vxx fm_rl fm_rr) = mkBalBranch6MkBalBranch01 wxy wxz wyu wyv fm_L fm_R vxv vxw vxx fm_rl fm_rr (sizeFM fm_rl < Pos (Succ (Succ Zero)) * sizeFM fm_rr); 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr); 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Double_R wxy wxz wyu wyv fm_L fm_R; 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr True = mkBalBranch6Single_R wxy wxz wyu wyv fm_L fm_R; 25.22/9.04 mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr False = mkBalBranch6MkBalBranch10 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr otherwise; 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch12 wxy wxz wyu wyv fm_L fm_R (Branch vww vwx vwy fm_ll fm_lr) = mkBalBranch6MkBalBranch11 wxy wxz wyu wyv fm_L fm_R vww vwx vwy fm_ll fm_lr (sizeFM fm_lr < Pos (Succ (Succ Zero)) * sizeFM fm_ll); 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; 25.22/9.04 mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 25.22/9.04 mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_l wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_r wxy wxz wyu wyv); 25.22/9.04 25.22/9.04 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 25.22/9.04 mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R (mkBalBranch6Size_r wxy wxz wyu wyv > sIZE_RATIO * mkBalBranch6Size_l wxy wxz wyu wyv); 25.22/9.04 25.22/9.04 mkBalBranch6Single_L wxy wxz wyu wyv fm_l (Branch key_r elt_r vxy fm_rl fm_rr) = mkBranch (Pos (Succ (Succ (Succ Zero)))) key_r elt_r (mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) wxz wyu fm_l fm_rl) fm_rr; 25.22/9.04 25.22/9.04 mkBalBranch6Single_R wxy wxz wyu wyv (Branch key_l elt_l vvz fm_ll fm_lr) fm_r = mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) key_l elt_l fm_ll (mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) wxz wyu fm_lr fm_r); 25.22/9.04 25.22/9.04 mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wxy; 25.22/9.04 25.22/9.04 mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wyv; 25.22/9.04 25.22/9.04 mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; 25.22/9.04 mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_l fm_r; 25.22/9.04 25.22/9.04 mkBranchBalance_ok wyx wyy wyz = True; 25.22/9.04 25.22/9.04 mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyx wyz wyx; 25.22/9.04 25.22/9.04 mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; 25.22/9.04 mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; 25.22/9.04 25.22/9.04 mkBranchLeft_ok0Biggest_left_key wzy = fst (findMax wzy); 25.22/9.04 25.22/9.04 mkBranchLeft_size wyx wyy wyz = sizeFM wyx; 25.22/9.04 25.22/9.04 mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzx wzu (Pos (Succ Zero) + mkBranchLeft_size wzw wzx wzu + mkBranchRight_size wzw wzx wzu)) wzw wzx; 25.22/9.04 25.22/9.04 mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyy wyz wyy; 25.22/9.04 25.22/9.04 mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; 25.22/9.04 mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; 25.22/9.04 25.22/9.04 mkBranchRight_ok0Smallest_right_key wzz = fst (findMin wzz); 25.22/9.04 25.22/9.04 mkBranchRight_size wyx wyy wyz = sizeFM wyy; 25.22/9.04 25.22/9.04 mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> (FiniteMap a b) ( -> a (Int -> Int))); 25.22/9.04 mkBranchUnbox wyx wyy wyz x = x; 25.22/9.04 25.22/9.04 sIZE_RATIO :: Int; 25.22/9.04 sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); 25.22/9.04 25.22/9.04 sizeFM :: FiniteMap a b -> Int; 25.22/9.04 sizeFM EmptyFM = Pos Zero; 25.22/9.04 sizeFM (Branch vyu vyv size vyw vyx) = size; 25.22/9.04 25.22/9.04 unitFM :: b -> a -> FiniteMap b a; 25.22/9.04 unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; 25.22/9.04 25.22/9.04 } 25.22/9.04 module Maybe where { 25.22/9.04 import qualified FiniteMap; 25.22/9.04 import qualified Main; 25.22/9.04 import qualified Prelude; 25.22/9.04 } 25.22/9.04 module Main where { 25.22/9.04 import qualified FiniteMap; 25.22/9.04 import qualified Maybe; 25.22/9.04 import qualified Prelude; 25.22/9.04 } 25.22/9.04 25.22/9.04 ---------------------------------------- 25.22/9.04 25.22/9.04 (15) Narrow (SOUND) 25.22/9.04 Haskell To QDPs 25.22/9.04 25.22/9.04 digraph dp_graph { 25.22/9.04 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.addListToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 25.22/9.04 3[label="FiniteMap.addListToFM xuu3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 25.22/9.04 4[label="FiniteMap.addListToFM xuu3 xuu4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 25.22/9.04 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 xuu3 xuu4",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 25.22/9.04 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 xuu4",fontsize=16,color="burlywood",shape="triangle"];3750[label="xuu4/xuu40 : xuu41",fontsize=10,color="white",style="solid",shape="box"];6 -> 3750[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3750 -> 7[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3751[label="xuu4/[]",fontsize=10,color="white",style="solid",shape="box"];6 -> 3751[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3751 -> 8[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 7[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 (xuu40 : xuu41)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 25.22/9.04 8[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu3 []",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 25.22/9.04 9 -> 6[label="",style="dashed", color="red", weight=0]; 25.22/9.04 9[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 xuu40) xuu41",fontsize=16,color="magenta"];9 -> 11[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 9 -> 12[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 10[label="xuu3",fontsize=16,color="green",shape="box"];11[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 xuu40",fontsize=16,color="burlywood",shape="box"];3752[label="xuu40/(xuu400,xuu401)",fontsize=10,color="white",style="solid",shape="box"];11 -> 3752[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3752 -> 13[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 12[label="xuu41",fontsize=16,color="green",shape="box"];13[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu3 (xuu400,xuu401)",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 25.22/9.04 14[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu3 xuu400 xuu401",fontsize=16,color="burlywood",shape="triangle"];3753[label="xuu3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];14 -> 3753[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3753 -> 15[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3754[label="xuu3/FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34",fontsize=10,color="white",style="solid",shape="box"];14 -> 3754[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3754 -> 16[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 15[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu400 xuu401",fontsize=16,color="black",shape="box"];15 -> 17[label="",style="solid", color="black", weight=3]; 25.22/9.04 16[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 (FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34) xuu400 xuu401",fontsize=16,color="black",shape="box"];16 -> 18[label="",style="solid", color="black", weight=3]; 25.22/9.04 17[label="FiniteMap.addToFM_C4 FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu400 xuu401",fontsize=16,color="black",shape="box"];17 -> 19[label="",style="solid", color="black", weight=3]; 25.22/9.04 18[label="FiniteMap.addToFM_C3 FiniteMap.addListToFM0 (FiniteMap.Branch xuu30 xuu31 xuu32 xuu33 xuu34) xuu400 xuu401",fontsize=16,color="black",shape="box"];18 -> 20[label="",style="solid", color="black", weight=3]; 25.22/9.04 19[label="FiniteMap.unitFM xuu400 xuu401",fontsize=16,color="black",shape="box"];19 -> 21[label="",style="solid", color="black", weight=3]; 25.22/9.04 20[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (xuu400 < xuu30)",fontsize=16,color="black",shape="box"];20 -> 22[label="",style="solid", color="black", weight=3]; 25.22/9.04 21[label="FiniteMap.Branch xuu400 xuu401 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];21 -> 23[label="",style="dashed", color="green", weight=3]; 25.22/9.04 21 -> 24[label="",style="dashed", color="green", weight=3]; 25.22/9.04 22[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 xuu400 xuu401 (compare xuu400 xuu30 == LT)",fontsize=16,color="burlywood",shape="box"];3755[label="xuu400/xuu4000 : xuu4001",fontsize=10,color="white",style="solid",shape="box"];22 -> 3755[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3755 -> 25[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3756[label="xuu400/[]",fontsize=10,color="white",style="solid",shape="box"];22 -> 3756[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3756 -> 26[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 23[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];23 -> 27[label="",style="solid", color="black", weight=3]; 25.22/9.04 24 -> 23[label="",style="dashed", color="red", weight=0]; 25.22/9.04 24[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];25[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (compare (xuu4000 : xuu4001) xuu30 == LT)",fontsize=16,color="burlywood",shape="box"];3757[label="xuu30/xuu300 : xuu301",fontsize=10,color="white",style="solid",shape="box"];25 -> 3757[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3757 -> 28[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3758[label="xuu30/[]",fontsize=10,color="white",style="solid",shape="box"];25 -> 3758[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3758 -> 29[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 26[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu30 xuu31 xuu32 xuu33 xuu34 [] xuu401 (compare [] xuu30 == LT)",fontsize=16,color="burlywood",shape="box"];3759[label="xuu30/xuu300 : xuu301",fontsize=10,color="white",style="solid",shape="box"];26 -> 3759[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3759 -> 30[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3760[label="xuu30/[]",fontsize=10,color="white",style="solid",shape="box"];26 -> 3760[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3760 -> 31[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 27[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];28[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu300 : xuu301) xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (compare (xuu4000 : xuu4001) (xuu300 : xuu301) == LT)",fontsize=16,color="black",shape="box"];28 -> 32[label="",style="solid", color="black", weight=3]; 25.22/9.04 29[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (compare (xuu4000 : xuu4001) [] == LT)",fontsize=16,color="black",shape="box"];29 -> 33[label="",style="solid", color="black", weight=3]; 25.22/9.04 30[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu300 : xuu301) xuu31 xuu32 xuu33 xuu34 [] xuu401 (compare [] (xuu300 : xuu301) == LT)",fontsize=16,color="black",shape="box"];30 -> 34[label="",style="solid", color="black", weight=3]; 25.22/9.04 31[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 (compare [] [] == LT)",fontsize=16,color="black",shape="box"];31 -> 35[label="",style="solid", color="black", weight=3]; 25.22/9.04 32 -> 119[label="",style="dashed", color="red", weight=0]; 25.22/9.04 32[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu300 : xuu301) xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (primCompAux xuu4000 xuu300 (compare xuu4001 xuu301) == LT)",fontsize=16,color="magenta"];32 -> 120[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 32 -> 121[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 32 -> 122[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 32 -> 123[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 32 -> 124[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 32 -> 125[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 32 -> 126[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 32 -> 127[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 32 -> 128[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 32 -> 129[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 33[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (GT == LT)",fontsize=16,color="black",shape="box"];33 -> 37[label="",style="solid", color="black", weight=3]; 25.22/9.04 34[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu300 : xuu301) xuu31 xuu32 xuu33 xuu34 [] xuu401 (LT == LT)",fontsize=16,color="black",shape="box"];34 -> 38[label="",style="solid", color="black", weight=3]; 25.22/9.04 35[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 (EQ == LT)",fontsize=16,color="black",shape="box"];35 -> 39[label="",style="solid", color="black", weight=3]; 25.22/9.04 120[label="xuu32",fontsize=16,color="green",shape="box"];121[label="primCompAux xuu4000 xuu300 (compare xuu4001 xuu301)",fontsize=16,color="black",shape="triangle"];121 -> 144[label="",style="solid", color="black", weight=3]; 25.22/9.04 122[label="xuu401",fontsize=16,color="green",shape="box"];123[label="xuu4001",fontsize=16,color="green",shape="box"];124[label="xuu4000",fontsize=16,color="green",shape="box"];125[label="xuu301",fontsize=16,color="green",shape="box"];126[label="xuu33",fontsize=16,color="green",shape="box"];127[label="xuu300",fontsize=16,color="green",shape="box"];128[label="xuu34",fontsize=16,color="green",shape="box"];129[label="xuu31",fontsize=16,color="green",shape="box"];119[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (xuu29 == LT)",fontsize=16,color="burlywood",shape="triangle"];3761[label="xuu29/LT",fontsize=10,color="white",style="solid",shape="box"];119 -> 3761[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3761 -> 145[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3762[label="xuu29/EQ",fontsize=10,color="white",style="solid",shape="box"];119 -> 3762[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3762 -> 146[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3763[label="xuu29/GT",fontsize=10,color="white",style="solid",shape="box"];119 -> 3763[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3763 -> 147[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 37[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 False",fontsize=16,color="black",shape="box"];37 -> 51[label="",style="solid", color="black", weight=3]; 25.22/9.04 38[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu300 : xuu301) xuu31 xuu32 xuu33 xuu34 [] xuu401 True",fontsize=16,color="black",shape="box"];38 -> 52[label="",style="solid", color="black", weight=3]; 25.22/9.04 39[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 False",fontsize=16,color="black",shape="box"];39 -> 53[label="",style="solid", color="black", weight=3]; 25.22/9.04 144 -> 157[label="",style="dashed", color="red", weight=0]; 25.22/9.04 144[label="primCompAux0 (compare xuu4001 xuu301) (compare xuu4000 xuu300)",fontsize=16,color="magenta"];144 -> 158[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 144 -> 159[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 144 -> 160[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 145[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (LT == LT)",fontsize=16,color="black",shape="box"];145 -> 161[label="",style="solid", color="black", weight=3]; 25.22/9.04 146[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (EQ == LT)",fontsize=16,color="black",shape="box"];146 -> 162[label="",style="solid", color="black", weight=3]; 25.22/9.04 147[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (GT == LT)",fontsize=16,color="black",shape="box"];147 -> 163[label="",style="solid", color="black", weight=3]; 25.22/9.04 51[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (xuu4000 : xuu4001 > [])",fontsize=16,color="black",shape="box"];51 -> 71[label="",style="solid", color="black", weight=3]; 25.22/9.04 52 -> 72[label="",style="dashed", color="red", weight=0]; 25.22/9.04 52[label="FiniteMap.mkBalBranch (xuu300 : xuu301) xuu31 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 [] xuu401) xuu34",fontsize=16,color="magenta"];52 -> 73[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 53[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 ([] > [])",fontsize=16,color="black",shape="box"];53 -> 74[label="",style="solid", color="black", weight=3]; 25.22/9.04 158[label="compare xuu4000 xuu300",fontsize=16,color="blue",shape="box"];3764[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3764[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3764 -> 164[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3765[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3765[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3765 -> 165[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3766[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3766[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3766 -> 166[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3767[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3767[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3767 -> 167[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3768[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3768[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3768 -> 168[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3769[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3769[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3769 -> 169[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3770[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3770[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3770 -> 170[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3771[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3771[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3771 -> 171[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3772[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3772[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3772 -> 172[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3773[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3773[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3773 -> 173[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3774[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3774[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3774 -> 174[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3775[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3775[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3775 -> 175[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3776[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3776[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3776 -> 176[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3777[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];158 -> 3777[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3777 -> 177[label="",style="solid", color="blue", weight=3]; 25.22/9.04 159[label="xuu4001",fontsize=16,color="green",shape="box"];160[label="xuu301",fontsize=16,color="green",shape="box"];157[label="primCompAux0 (compare xuu34 xuu35) xuu36",fontsize=16,color="burlywood",shape="triangle"];3778[label="xuu36/LT",fontsize=10,color="white",style="solid",shape="box"];157 -> 3778[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3778 -> 178[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3779[label="xuu36/EQ",fontsize=10,color="white",style="solid",shape="box"];157 -> 3779[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3779 -> 179[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3780[label="xuu36/GT",fontsize=10,color="white",style="solid",shape="box"];157 -> 3780[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3780 -> 180[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 161[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 True",fontsize=16,color="black",shape="box"];161 -> 188[label="",style="solid", color="black", weight=3]; 25.22/9.04 162[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 False",fontsize=16,color="black",shape="triangle"];162 -> 189[label="",style="solid", color="black", weight=3]; 25.22/9.04 163 -> 162[label="",style="dashed", color="red", weight=0]; 25.22/9.04 163[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 False",fontsize=16,color="magenta"];71 -> 93[label="",style="dashed", color="red", weight=0]; 25.22/9.04 71[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (compare (xuu4000 : xuu4001) [] == GT)",fontsize=16,color="magenta"];71 -> 94[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 73 -> 14[label="",style="dashed", color="red", weight=0]; 25.22/9.04 73[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu33 [] xuu401",fontsize=16,color="magenta"];73 -> 95[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 73 -> 96[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 72[label="FiniteMap.mkBalBranch (xuu300 : xuu301) xuu31 xuu26 xuu34",fontsize=16,color="black",shape="triangle"];72 -> 97[label="",style="solid", color="black", weight=3]; 25.22/9.04 74 -> 98[label="",style="dashed", color="red", weight=0]; 25.22/9.04 74[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 (compare [] [] == GT)",fontsize=16,color="magenta"];74 -> 99[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 164[label="compare xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];3781[label="xuu4000/xuu40000 : xuu40001",fontsize=10,color="white",style="solid",shape="box"];164 -> 3781[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3781 -> 190[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3782[label="xuu4000/[]",fontsize=10,color="white",style="solid",shape="box"];164 -> 3782[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3782 -> 191[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 165[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];165 -> 192[label="",style="solid", color="black", weight=3]; 25.22/9.04 166[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];166 -> 193[label="",style="solid", color="black", weight=3]; 25.22/9.04 167[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];167 -> 194[label="",style="solid", color="black", weight=3]; 25.22/9.04 168[label="compare xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];3783[label="xuu4000/()",fontsize=10,color="white",style="solid",shape="box"];168 -> 3783[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3783 -> 195[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 169[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];169 -> 196[label="",style="solid", color="black", weight=3]; 25.22/9.04 170[label="compare xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];3784[label="xuu4000/xuu40000 :% xuu40001",fontsize=10,color="white",style="solid",shape="box"];170 -> 3784[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3784 -> 197[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 171[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];171 -> 198[label="",style="solid", color="black", weight=3]; 25.22/9.04 172[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];172 -> 199[label="",style="solid", color="black", weight=3]; 25.22/9.04 173[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];173 -> 200[label="",style="solid", color="black", weight=3]; 25.22/9.04 174[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];174 -> 201[label="",style="solid", color="black", weight=3]; 25.22/9.04 175[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];175 -> 202[label="",style="solid", color="black", weight=3]; 25.22/9.04 176[label="compare xuu4000 xuu300",fontsize=16,color="black",shape="triangle"];176 -> 203[label="",style="solid", color="black", weight=3]; 25.22/9.04 177[label="compare xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];3785[label="xuu4000/Integer xuu40000",fontsize=10,color="white",style="solid",shape="box"];177 -> 3785[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3785 -> 204[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 178[label="primCompAux0 (compare xuu34 xuu35) LT",fontsize=16,color="black",shape="box"];178 -> 205[label="",style="solid", color="black", weight=3]; 25.22/9.04 179[label="primCompAux0 (compare xuu34 xuu35) EQ",fontsize=16,color="black",shape="box"];179 -> 206[label="",style="solid", color="black", weight=3]; 25.22/9.04 180[label="primCompAux0 (compare xuu34 xuu35) GT",fontsize=16,color="black",shape="box"];180 -> 207[label="",style="solid", color="black", weight=3]; 25.22/9.04 188 -> 72[label="",style="dashed", color="red", weight=0]; 25.22/9.04 188[label="FiniteMap.mkBalBranch (xuu16 : xuu17) xuu18 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 (xuu22 : xuu23) xuu24) xuu21",fontsize=16,color="magenta"];188 -> 212[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 188 -> 213[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 188 -> 214[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 188 -> 215[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 188 -> 216[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 189[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (xuu22 : xuu23 > xuu16 : xuu17)",fontsize=16,color="black",shape="box"];189 -> 217[label="",style="solid", color="black", weight=3]; 25.22/9.04 94[label="compare (xuu4000 : xuu4001) []",fontsize=16,color="black",shape="box"];94 -> 148[label="",style="solid", color="black", weight=3]; 25.22/9.04 93[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (xuu27 == GT)",fontsize=16,color="burlywood",shape="triangle"];3786[label="xuu27/LT",fontsize=10,color="white",style="solid",shape="box"];93 -> 3786[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3786 -> 149[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3787[label="xuu27/EQ",fontsize=10,color="white",style="solid",shape="box"];93 -> 3787[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3787 -> 150[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3788[label="xuu27/GT",fontsize=10,color="white",style="solid",shape="box"];93 -> 3788[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3788 -> 151[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 95[label="xuu33",fontsize=16,color="green",shape="box"];96[label="[]",fontsize=16,color="green",shape="box"];97[label="FiniteMap.mkBalBranch6 (xuu300 : xuu301) xuu31 xuu26 xuu34",fontsize=16,color="black",shape="box"];97 -> 152[label="",style="solid", color="black", weight=3]; 25.22/9.04 99[label="compare [] []",fontsize=16,color="black",shape="box"];99 -> 153[label="",style="solid", color="black", weight=3]; 25.22/9.04 98[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 (xuu28 == GT)",fontsize=16,color="burlywood",shape="triangle"];3789[label="xuu28/LT",fontsize=10,color="white",style="solid",shape="box"];98 -> 3789[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3789 -> 154[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3790[label="xuu28/EQ",fontsize=10,color="white",style="solid",shape="box"];98 -> 3790[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3790 -> 155[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3791[label="xuu28/GT",fontsize=10,color="white",style="solid",shape="box"];98 -> 3791[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3791 -> 156[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 190[label="compare (xuu40000 : xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];3792[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];190 -> 3792[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3792 -> 218[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3793[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];190 -> 3793[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3793 -> 219[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 191[label="compare [] xuu300",fontsize=16,color="burlywood",shape="box"];3794[label="xuu300/xuu3000 : xuu3001",fontsize=10,color="white",style="solid",shape="box"];191 -> 3794[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3794 -> 220[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3795[label="xuu300/[]",fontsize=10,color="white",style="solid",shape="box"];191 -> 3795[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3795 -> 221[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 192[label="compare3 xuu4000 xuu300",fontsize=16,color="black",shape="box"];192 -> 222[label="",style="solid", color="black", weight=3]; 25.22/9.04 193[label="primCmpInt xuu4000 xuu300",fontsize=16,color="burlywood",shape="triangle"];3796[label="xuu4000/Pos xuu40000",fontsize=10,color="white",style="solid",shape="box"];193 -> 3796[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3796 -> 223[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3797[label="xuu4000/Neg xuu40000",fontsize=10,color="white",style="solid",shape="box"];193 -> 3797[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3797 -> 224[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 194[label="compare3 xuu4000 xuu300",fontsize=16,color="black",shape="box"];194 -> 225[label="",style="solid", color="black", weight=3]; 25.22/9.04 195[label="compare () xuu300",fontsize=16,color="burlywood",shape="box"];3798[label="xuu300/()",fontsize=10,color="white",style="solid",shape="box"];195 -> 3798[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3798 -> 226[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 196[label="primCmpChar xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];3799[label="xuu4000/Char xuu40000",fontsize=10,color="white",style="solid",shape="box"];196 -> 3799[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3799 -> 227[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 197[label="compare (xuu40000 :% xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];3800[label="xuu300/xuu3000 :% xuu3001",fontsize=10,color="white",style="solid",shape="box"];197 -> 3800[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3800 -> 228[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 198[label="compare3 xuu4000 xuu300",fontsize=16,color="black",shape="box"];198 -> 229[label="",style="solid", color="black", weight=3]; 25.22/9.04 199[label="compare3 xuu4000 xuu300",fontsize=16,color="black",shape="box"];199 -> 230[label="",style="solid", color="black", weight=3]; 25.22/9.04 200[label="compare3 xuu4000 xuu300",fontsize=16,color="black",shape="box"];200 -> 231[label="",style="solid", color="black", weight=3]; 25.22/9.04 201[label="primCmpDouble xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];3801[label="xuu4000/Double xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];201 -> 3801[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3801 -> 232[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 202[label="compare3 xuu4000 xuu300",fontsize=16,color="black",shape="box"];202 -> 233[label="",style="solid", color="black", weight=3]; 25.22/9.04 203[label="primCmpFloat xuu4000 xuu300",fontsize=16,color="burlywood",shape="box"];3802[label="xuu4000/Float xuu40000 xuu40001",fontsize=10,color="white",style="solid",shape="box"];203 -> 3802[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3802 -> 234[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 204[label="compare (Integer xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];3803[label="xuu300/Integer xuu3000",fontsize=10,color="white",style="solid",shape="box"];204 -> 3803[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3803 -> 235[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 205[label="LT",fontsize=16,color="green",shape="box"];206[label="compare xuu34 xuu35",fontsize=16,color="blue",shape="box"];3804[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3804[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3804 -> 236[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3805[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3805[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3805 -> 237[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3806[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3806[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3806 -> 238[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3807[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3807[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3807 -> 239[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3808[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3808[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3808 -> 240[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3809[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3809[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3809 -> 241[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3810[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3810[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3810 -> 242[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3811[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3811[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3811 -> 243[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3812[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3812[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3812 -> 244[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3813[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3813[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3813 -> 245[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3814[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3814[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3814 -> 246[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3815[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3815[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3815 -> 247[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3816[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3816[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3816 -> 248[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3817[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];206 -> 3817[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3817 -> 249[label="",style="solid", color="blue", weight=3]; 25.22/9.04 207[label="GT",fontsize=16,color="green",shape="box"];212[label="xuu18",fontsize=16,color="green",shape="box"];213[label="xuu16",fontsize=16,color="green",shape="box"];214[label="xuu21",fontsize=16,color="green",shape="box"];215[label="xuu17",fontsize=16,color="green",shape="box"];216 -> 14[label="",style="dashed", color="red", weight=0]; 25.22/9.04 216[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 (xuu22 : xuu23) xuu24",fontsize=16,color="magenta"];216 -> 256[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 216 -> 257[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 216 -> 258[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 217 -> 259[label="",style="dashed", color="red", weight=0]; 25.22/9.04 217[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (compare (xuu22 : xuu23) (xuu16 : xuu17) == GT)",fontsize=16,color="magenta"];217 -> 260[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 148[label="GT",fontsize=16,color="green",shape="box"];149[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (LT == GT)",fontsize=16,color="black",shape="box"];149 -> 181[label="",style="solid", color="black", weight=3]; 25.22/9.04 150[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (EQ == GT)",fontsize=16,color="black",shape="box"];150 -> 182[label="",style="solid", color="black", weight=3]; 25.22/9.04 151[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 (GT == GT)",fontsize=16,color="black",shape="box"];151 -> 183[label="",style="solid", color="black", weight=3]; 25.22/9.04 152[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 (FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34 < Pos (Succ (Succ Zero)))",fontsize=16,color="black",shape="box"];152 -> 184[label="",style="solid", color="black", weight=3]; 25.22/9.04 153[label="EQ",fontsize=16,color="green",shape="box"];154[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 (LT == GT)",fontsize=16,color="black",shape="box"];154 -> 185[label="",style="solid", color="black", weight=3]; 25.22/9.04 155[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 (EQ == GT)",fontsize=16,color="black",shape="box"];155 -> 186[label="",style="solid", color="black", weight=3]; 25.22/9.04 156[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 (GT == GT)",fontsize=16,color="black",shape="box"];156 -> 187[label="",style="solid", color="black", weight=3]; 25.22/9.04 218[label="compare (xuu40000 : xuu40001) (xuu3000 : xuu3001)",fontsize=16,color="black",shape="box"];218 -> 261[label="",style="solid", color="black", weight=3]; 25.22/9.04 219[label="compare (xuu40000 : xuu40001) []",fontsize=16,color="black",shape="box"];219 -> 262[label="",style="solid", color="black", weight=3]; 25.22/9.04 220[label="compare [] (xuu3000 : xuu3001)",fontsize=16,color="black",shape="box"];220 -> 263[label="",style="solid", color="black", weight=3]; 25.22/9.04 221[label="compare [] []",fontsize=16,color="black",shape="box"];221 -> 264[label="",style="solid", color="black", weight=3]; 25.22/9.04 222[label="compare2 xuu4000 xuu300 (xuu4000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3818[label="xuu4000/(xuu40000,xuu40001,xuu40002)",fontsize=10,color="white",style="solid",shape="box"];222 -> 3818[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3818 -> 265[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 223[label="primCmpInt (Pos xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];3819[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];223 -> 3819[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3819 -> 266[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3820[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];223 -> 3820[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3820 -> 267[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 224[label="primCmpInt (Neg xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];3821[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];224 -> 3821[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3821 -> 268[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3822[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];224 -> 3822[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3822 -> 269[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 225[label="compare2 xuu4000 xuu300 (xuu4000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3823[label="xuu4000/Left xuu40000",fontsize=10,color="white",style="solid",shape="box"];225 -> 3823[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3823 -> 270[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3824[label="xuu4000/Right xuu40000",fontsize=10,color="white",style="solid",shape="box"];225 -> 3824[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3824 -> 271[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 226[label="compare () ()",fontsize=16,color="black",shape="box"];226 -> 272[label="",style="solid", color="black", weight=3]; 25.22/9.04 227[label="primCmpChar (Char xuu40000) xuu300",fontsize=16,color="burlywood",shape="box"];3825[label="xuu300/Char xuu3000",fontsize=10,color="white",style="solid",shape="box"];227 -> 3825[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3825 -> 273[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 228[label="compare (xuu40000 :% xuu40001) (xuu3000 :% xuu3001)",fontsize=16,color="black",shape="box"];228 -> 274[label="",style="solid", color="black", weight=3]; 25.22/9.04 229[label="compare2 xuu4000 xuu300 (xuu4000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3826[label="xuu4000/False",fontsize=10,color="white",style="solid",shape="box"];229 -> 3826[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3826 -> 275[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3827[label="xuu4000/True",fontsize=10,color="white",style="solid",shape="box"];229 -> 3827[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3827 -> 276[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 230[label="compare2 xuu4000 xuu300 (xuu4000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3828[label="xuu4000/Nothing",fontsize=10,color="white",style="solid",shape="box"];230 -> 3828[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3828 -> 277[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3829[label="xuu4000/Just xuu40000",fontsize=10,color="white",style="solid",shape="box"];230 -> 3829[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3829 -> 278[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 231[label="compare2 xuu4000 xuu300 (xuu4000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3830[label="xuu4000/(xuu40000,xuu40001)",fontsize=10,color="white",style="solid",shape="box"];231 -> 3830[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3830 -> 279[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 232[label="primCmpDouble (Double xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];3831[label="xuu40001/Pos xuu400010",fontsize=10,color="white",style="solid",shape="box"];232 -> 3831[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3831 -> 280[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3832[label="xuu40001/Neg xuu400010",fontsize=10,color="white",style="solid",shape="box"];232 -> 3832[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3832 -> 281[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 233[label="compare2 xuu4000 xuu300 (xuu4000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3833[label="xuu4000/LT",fontsize=10,color="white",style="solid",shape="box"];233 -> 3833[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3833 -> 282[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3834[label="xuu4000/EQ",fontsize=10,color="white",style="solid",shape="box"];233 -> 3834[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3834 -> 283[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3835[label="xuu4000/GT",fontsize=10,color="white",style="solid",shape="box"];233 -> 3835[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3835 -> 284[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 234[label="primCmpFloat (Float xuu40000 xuu40001) xuu300",fontsize=16,color="burlywood",shape="box"];3836[label="xuu40001/Pos xuu400010",fontsize=10,color="white",style="solid",shape="box"];234 -> 3836[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3836 -> 285[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3837[label="xuu40001/Neg xuu400010",fontsize=10,color="white",style="solid",shape="box"];234 -> 3837[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3837 -> 286[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 235[label="compare (Integer xuu40000) (Integer xuu3000)",fontsize=16,color="black",shape="box"];235 -> 287[label="",style="solid", color="black", weight=3]; 25.22/9.04 236 -> 164[label="",style="dashed", color="red", weight=0]; 25.22/9.04 236[label="compare xuu34 xuu35",fontsize=16,color="magenta"];236 -> 288[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 236 -> 289[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 237 -> 165[label="",style="dashed", color="red", weight=0]; 25.22/9.04 237[label="compare xuu34 xuu35",fontsize=16,color="magenta"];237 -> 290[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 237 -> 291[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 238 -> 166[label="",style="dashed", color="red", weight=0]; 25.22/9.04 238[label="compare xuu34 xuu35",fontsize=16,color="magenta"];238 -> 292[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 238 -> 293[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 239 -> 167[label="",style="dashed", color="red", weight=0]; 25.22/9.04 239[label="compare xuu34 xuu35",fontsize=16,color="magenta"];239 -> 294[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 239 -> 295[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 240 -> 168[label="",style="dashed", color="red", weight=0]; 25.22/9.04 240[label="compare xuu34 xuu35",fontsize=16,color="magenta"];240 -> 296[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 240 -> 297[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 241 -> 169[label="",style="dashed", color="red", weight=0]; 25.22/9.04 241[label="compare xuu34 xuu35",fontsize=16,color="magenta"];241 -> 298[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 241 -> 299[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 242 -> 170[label="",style="dashed", color="red", weight=0]; 25.22/9.04 242[label="compare xuu34 xuu35",fontsize=16,color="magenta"];242 -> 300[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 242 -> 301[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 243 -> 171[label="",style="dashed", color="red", weight=0]; 25.22/9.04 243[label="compare xuu34 xuu35",fontsize=16,color="magenta"];243 -> 302[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 243 -> 303[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 244 -> 172[label="",style="dashed", color="red", weight=0]; 25.22/9.04 244[label="compare xuu34 xuu35",fontsize=16,color="magenta"];244 -> 304[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 244 -> 305[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 245 -> 173[label="",style="dashed", color="red", weight=0]; 25.22/9.04 245[label="compare xuu34 xuu35",fontsize=16,color="magenta"];245 -> 306[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 245 -> 307[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 246 -> 174[label="",style="dashed", color="red", weight=0]; 25.22/9.04 246[label="compare xuu34 xuu35",fontsize=16,color="magenta"];246 -> 308[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 246 -> 309[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 247 -> 175[label="",style="dashed", color="red", weight=0]; 25.22/9.04 247[label="compare xuu34 xuu35",fontsize=16,color="magenta"];247 -> 310[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 247 -> 311[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 248 -> 176[label="",style="dashed", color="red", weight=0]; 25.22/9.04 248[label="compare xuu34 xuu35",fontsize=16,color="magenta"];248 -> 312[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 248 -> 313[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 249 -> 177[label="",style="dashed", color="red", weight=0]; 25.22/9.04 249[label="compare xuu34 xuu35",fontsize=16,color="magenta"];249 -> 314[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 249 -> 315[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 256[label="xuu20",fontsize=16,color="green",shape="box"];257[label="xuu22 : xuu23",fontsize=16,color="green",shape="box"];258[label="xuu24",fontsize=16,color="green",shape="box"];260 -> 164[label="",style="dashed", color="red", weight=0]; 25.22/9.04 260[label="compare (xuu22 : xuu23) (xuu16 : xuu17)",fontsize=16,color="magenta"];260 -> 316[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 260 -> 317[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 259[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (xuu39 == GT)",fontsize=16,color="burlywood",shape="triangle"];3838[label="xuu39/LT",fontsize=10,color="white",style="solid",shape="box"];259 -> 3838[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3838 -> 318[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3839[label="xuu39/EQ",fontsize=10,color="white",style="solid",shape="box"];259 -> 3839[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3839 -> 319[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3840[label="xuu39/GT",fontsize=10,color="white",style="solid",shape="box"];259 -> 3840[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3840 -> 320[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 181[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 False",fontsize=16,color="black",shape="triangle"];181 -> 208[label="",style="solid", color="black", weight=3]; 25.22/9.04 182 -> 181[label="",style="dashed", color="red", weight=0]; 25.22/9.04 182[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 False",fontsize=16,color="magenta"];183[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 True",fontsize=16,color="black",shape="box"];183 -> 209[label="",style="solid", color="black", weight=3]; 25.22/9.04 184 -> 210[label="",style="dashed", color="red", weight=0]; 25.22/9.04 184[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 (compare (FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34) (Pos (Succ (Succ Zero))) == LT)",fontsize=16,color="magenta"];184 -> 211[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 185[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 False",fontsize=16,color="black",shape="triangle"];185 -> 250[label="",style="solid", color="black", weight=3]; 25.22/9.04 186 -> 185[label="",style="dashed", color="red", weight=0]; 25.22/9.04 186[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 False",fontsize=16,color="magenta"];187[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 True",fontsize=16,color="black",shape="box"];187 -> 251[label="",style="solid", color="black", weight=3]; 25.22/9.04 261 -> 121[label="",style="dashed", color="red", weight=0]; 25.22/9.04 261[label="primCompAux xuu40000 xuu3000 (compare xuu40001 xuu3001)",fontsize=16,color="magenta"];261 -> 333[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 261 -> 334[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 261 -> 335[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 261 -> 336[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 262[label="GT",fontsize=16,color="green",shape="box"];263[label="LT",fontsize=16,color="green",shape="box"];264[label="EQ",fontsize=16,color="green",shape="box"];265[label="compare2 (xuu40000,xuu40001,xuu40002) xuu300 ((xuu40000,xuu40001,xuu40002) == xuu300)",fontsize=16,color="burlywood",shape="box"];3841[label="xuu300/(xuu3000,xuu3001,xuu3002)",fontsize=10,color="white",style="solid",shape="box"];265 -> 3841[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3841 -> 337[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 266[label="primCmpInt (Pos (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];3842[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];266 -> 3842[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3842 -> 338[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3843[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];266 -> 3843[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3843 -> 339[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 267[label="primCmpInt (Pos Zero) xuu300",fontsize=16,color="burlywood",shape="box"];3844[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];267 -> 3844[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3844 -> 340[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3845[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];267 -> 3845[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3845 -> 341[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 268[label="primCmpInt (Neg (Succ xuu400000)) xuu300",fontsize=16,color="burlywood",shape="box"];3846[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];268 -> 3846[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3846 -> 342[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3847[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];268 -> 3847[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3847 -> 343[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 269[label="primCmpInt (Neg Zero) xuu300",fontsize=16,color="burlywood",shape="box"];3848[label="xuu300/Pos xuu3000",fontsize=10,color="white",style="solid",shape="box"];269 -> 3848[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3848 -> 344[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3849[label="xuu300/Neg xuu3000",fontsize=10,color="white",style="solid",shape="box"];269 -> 3849[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3849 -> 345[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 270[label="compare2 (Left xuu40000) xuu300 (Left xuu40000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3850[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];270 -> 3850[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3850 -> 346[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3851[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];270 -> 3851[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3851 -> 347[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 271[label="compare2 (Right xuu40000) xuu300 (Right xuu40000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3852[label="xuu300/Left xuu3000",fontsize=10,color="white",style="solid",shape="box"];271 -> 3852[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3852 -> 348[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3853[label="xuu300/Right xuu3000",fontsize=10,color="white",style="solid",shape="box"];271 -> 3853[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3853 -> 349[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 272[label="EQ",fontsize=16,color="green",shape="box"];273[label="primCmpChar (Char xuu40000) (Char xuu3000)",fontsize=16,color="black",shape="box"];273 -> 350[label="",style="solid", color="black", weight=3]; 25.22/9.04 274[label="compare (xuu40000 * xuu3001) (xuu3000 * xuu40001)",fontsize=16,color="blue",shape="box"];3854[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];274 -> 3854[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3854 -> 351[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3855[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];274 -> 3855[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3855 -> 352[label="",style="solid", color="blue", weight=3]; 25.22/9.04 275[label="compare2 False xuu300 (False == xuu300)",fontsize=16,color="burlywood",shape="box"];3856[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];275 -> 3856[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3856 -> 353[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3857[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];275 -> 3857[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3857 -> 354[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 276[label="compare2 True xuu300 (True == xuu300)",fontsize=16,color="burlywood",shape="box"];3858[label="xuu300/False",fontsize=10,color="white",style="solid",shape="box"];276 -> 3858[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3858 -> 355[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3859[label="xuu300/True",fontsize=10,color="white",style="solid",shape="box"];276 -> 3859[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3859 -> 356[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 277[label="compare2 Nothing xuu300 (Nothing == xuu300)",fontsize=16,color="burlywood",shape="box"];3860[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];277 -> 3860[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3860 -> 357[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3861[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];277 -> 3861[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3861 -> 358[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 278[label="compare2 (Just xuu40000) xuu300 (Just xuu40000 == xuu300)",fontsize=16,color="burlywood",shape="box"];3862[label="xuu300/Nothing",fontsize=10,color="white",style="solid",shape="box"];278 -> 3862[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3862 -> 359[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3863[label="xuu300/Just xuu3000",fontsize=10,color="white",style="solid",shape="box"];278 -> 3863[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3863 -> 360[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 279[label="compare2 (xuu40000,xuu40001) xuu300 ((xuu40000,xuu40001) == xuu300)",fontsize=16,color="burlywood",shape="box"];3864[label="xuu300/(xuu3000,xuu3001)",fontsize=10,color="white",style="solid",shape="box"];279 -> 3864[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3864 -> 361[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 280[label="primCmpDouble (Double xuu40000 (Pos xuu400010)) xuu300",fontsize=16,color="burlywood",shape="box"];3865[label="xuu300/Double xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];280 -> 3865[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3865 -> 362[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 281[label="primCmpDouble (Double xuu40000 (Neg xuu400010)) xuu300",fontsize=16,color="burlywood",shape="box"];3866[label="xuu300/Double xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];281 -> 3866[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3866 -> 363[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 282[label="compare2 LT xuu300 (LT == xuu300)",fontsize=16,color="burlywood",shape="box"];3867[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];282 -> 3867[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3867 -> 364[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3868[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];282 -> 3868[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3868 -> 365[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3869[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];282 -> 3869[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3869 -> 366[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 283[label="compare2 EQ xuu300 (EQ == xuu300)",fontsize=16,color="burlywood",shape="box"];3870[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];283 -> 3870[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3870 -> 367[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3871[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];283 -> 3871[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3871 -> 368[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3872[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];283 -> 3872[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3872 -> 369[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 284[label="compare2 GT xuu300 (GT == xuu300)",fontsize=16,color="burlywood",shape="box"];3873[label="xuu300/LT",fontsize=10,color="white",style="solid",shape="box"];284 -> 3873[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3873 -> 370[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3874[label="xuu300/EQ",fontsize=10,color="white",style="solid",shape="box"];284 -> 3874[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3874 -> 371[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3875[label="xuu300/GT",fontsize=10,color="white",style="solid",shape="box"];284 -> 3875[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3875 -> 372[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 285[label="primCmpFloat (Float xuu40000 (Pos xuu400010)) xuu300",fontsize=16,color="burlywood",shape="box"];3876[label="xuu300/Float xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];285 -> 3876[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3876 -> 373[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 286[label="primCmpFloat (Float xuu40000 (Neg xuu400010)) xuu300",fontsize=16,color="burlywood",shape="box"];3877[label="xuu300/Float xuu3000 xuu3001",fontsize=10,color="white",style="solid",shape="box"];286 -> 3877[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3877 -> 374[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 287 -> 193[label="",style="dashed", color="red", weight=0]; 25.22/9.04 287[label="primCmpInt xuu40000 xuu3000",fontsize=16,color="magenta"];287 -> 375[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 287 -> 376[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 288[label="xuu35",fontsize=16,color="green",shape="box"];289[label="xuu34",fontsize=16,color="green",shape="box"];290[label="xuu35",fontsize=16,color="green",shape="box"];291[label="xuu34",fontsize=16,color="green",shape="box"];292[label="xuu35",fontsize=16,color="green",shape="box"];293[label="xuu34",fontsize=16,color="green",shape="box"];294[label="xuu35",fontsize=16,color="green",shape="box"];295[label="xuu34",fontsize=16,color="green",shape="box"];296[label="xuu35",fontsize=16,color="green",shape="box"];297[label="xuu34",fontsize=16,color="green",shape="box"];298[label="xuu35",fontsize=16,color="green",shape="box"];299[label="xuu34",fontsize=16,color="green",shape="box"];300[label="xuu35",fontsize=16,color="green",shape="box"];301[label="xuu34",fontsize=16,color="green",shape="box"];302[label="xuu35",fontsize=16,color="green",shape="box"];303[label="xuu34",fontsize=16,color="green",shape="box"];304[label="xuu35",fontsize=16,color="green",shape="box"];305[label="xuu34",fontsize=16,color="green",shape="box"];306[label="xuu35",fontsize=16,color="green",shape="box"];307[label="xuu34",fontsize=16,color="green",shape="box"];308[label="xuu35",fontsize=16,color="green",shape="box"];309[label="xuu34",fontsize=16,color="green",shape="box"];310[label="xuu35",fontsize=16,color="green",shape="box"];311[label="xuu34",fontsize=16,color="green",shape="box"];312[label="xuu35",fontsize=16,color="green",shape="box"];313[label="xuu34",fontsize=16,color="green",shape="box"];314[label="xuu35",fontsize=16,color="green",shape="box"];315[label="xuu34",fontsize=16,color="green",shape="box"];316[label="xuu16 : xuu17",fontsize=16,color="green",shape="box"];317[label="xuu22 : xuu23",fontsize=16,color="green",shape="box"];318[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (LT == GT)",fontsize=16,color="black",shape="box"];318 -> 377[label="",style="solid", color="black", weight=3]; 25.22/9.04 319[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (EQ == GT)",fontsize=16,color="black",shape="box"];319 -> 378[label="",style="solid", color="black", weight=3]; 25.22/9.04 320[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 (GT == GT)",fontsize=16,color="black",shape="box"];320 -> 379[label="",style="solid", color="black", weight=3]; 25.22/9.04 208[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 otherwise",fontsize=16,color="black",shape="box"];208 -> 252[label="",style="solid", color="black", weight=3]; 25.22/9.04 209 -> 253[label="",style="dashed", color="red", weight=0]; 25.22/9.04 209[label="FiniteMap.mkBalBranch [] xuu31 xuu33 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (xuu4000 : xuu4001) xuu401)",fontsize=16,color="magenta"];209 -> 254[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 211 -> 166[label="",style="dashed", color="red", weight=0]; 25.22/9.04 211[label="compare (FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];211 -> 321[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 211 -> 322[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 210[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 (xuu37 == LT)",fontsize=16,color="burlywood",shape="triangle"];3878[label="xuu37/LT",fontsize=10,color="white",style="solid",shape="box"];210 -> 3878[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3878 -> 323[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3879[label="xuu37/EQ",fontsize=10,color="white",style="solid",shape="box"];210 -> 3879[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3879 -> 324[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3880[label="xuu37/GT",fontsize=10,color="white",style="solid",shape="box"];210 -> 3880[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3880 -> 325[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 250[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 otherwise",fontsize=16,color="black",shape="box"];250 -> 326[label="",style="solid", color="black", weight=3]; 25.22/9.04 251 -> 253[label="",style="dashed", color="red", weight=0]; 25.22/9.04 251[label="FiniteMap.mkBalBranch [] xuu31 xuu33 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 [] xuu401)",fontsize=16,color="magenta"];251 -> 255[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 333[label="xuu40001",fontsize=16,color="green",shape="box"];334[label="xuu3000",fontsize=16,color="green",shape="box"];335[label="xuu3001",fontsize=16,color="green",shape="box"];336[label="xuu40000",fontsize=16,color="green",shape="box"];337[label="compare2 (xuu40000,xuu40001,xuu40002) (xuu3000,xuu3001,xuu3002) ((xuu40000,xuu40001,xuu40002) == (xuu3000,xuu3001,xuu3002))",fontsize=16,color="black",shape="box"];337 -> 387[label="",style="solid", color="black", weight=3]; 25.22/9.04 338[label="primCmpInt (Pos (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="black",shape="box"];338 -> 388[label="",style="solid", color="black", weight=3]; 25.22/9.04 339[label="primCmpInt (Pos (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="black",shape="box"];339 -> 389[label="",style="solid", color="black", weight=3]; 25.22/9.04 340[label="primCmpInt (Pos Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];3881[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];340 -> 3881[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3881 -> 390[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3882[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];340 -> 3882[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3882 -> 391[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 341[label="primCmpInt (Pos Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];3883[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];341 -> 3883[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3883 -> 392[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3884[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];341 -> 3884[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3884 -> 393[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 342[label="primCmpInt (Neg (Succ xuu400000)) (Pos xuu3000)",fontsize=16,color="black",shape="box"];342 -> 394[label="",style="solid", color="black", weight=3]; 25.22/9.04 343[label="primCmpInt (Neg (Succ xuu400000)) (Neg xuu3000)",fontsize=16,color="black",shape="box"];343 -> 395[label="",style="solid", color="black", weight=3]; 25.22/9.04 344[label="primCmpInt (Neg Zero) (Pos xuu3000)",fontsize=16,color="burlywood",shape="box"];3885[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];344 -> 3885[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3885 -> 396[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3886[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];344 -> 3886[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3886 -> 397[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 345[label="primCmpInt (Neg Zero) (Neg xuu3000)",fontsize=16,color="burlywood",shape="box"];3887[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];345 -> 3887[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3887 -> 398[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3888[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];345 -> 3888[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3888 -> 399[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 346[label="compare2 (Left xuu40000) (Left xuu3000) (Left xuu40000 == Left xuu3000)",fontsize=16,color="black",shape="box"];346 -> 400[label="",style="solid", color="black", weight=3]; 25.22/9.04 347[label="compare2 (Left xuu40000) (Right xuu3000) (Left xuu40000 == Right xuu3000)",fontsize=16,color="black",shape="box"];347 -> 401[label="",style="solid", color="black", weight=3]; 25.22/9.04 348[label="compare2 (Right xuu40000) (Left xuu3000) (Right xuu40000 == Left xuu3000)",fontsize=16,color="black",shape="box"];348 -> 402[label="",style="solid", color="black", weight=3]; 25.22/9.04 349[label="compare2 (Right xuu40000) (Right xuu3000) (Right xuu40000 == Right xuu3000)",fontsize=16,color="black",shape="box"];349 -> 403[label="",style="solid", color="black", weight=3]; 25.22/9.04 350[label="primCmpNat xuu40000 xuu3000",fontsize=16,color="burlywood",shape="triangle"];3889[label="xuu40000/Succ xuu400000",fontsize=10,color="white",style="solid",shape="box"];350 -> 3889[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3889 -> 404[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3890[label="xuu40000/Zero",fontsize=10,color="white",style="solid",shape="box"];350 -> 3890[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3890 -> 405[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 351 -> 166[label="",style="dashed", color="red", weight=0]; 25.22/9.04 351[label="compare (xuu40000 * xuu3001) (xuu3000 * xuu40001)",fontsize=16,color="magenta"];351 -> 406[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 351 -> 407[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 352 -> 177[label="",style="dashed", color="red", weight=0]; 25.22/9.04 352[label="compare (xuu40000 * xuu3001) (xuu3000 * xuu40001)",fontsize=16,color="magenta"];352 -> 408[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 352 -> 409[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 353[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];353 -> 410[label="",style="solid", color="black", weight=3]; 25.22/9.04 354[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];354 -> 411[label="",style="solid", color="black", weight=3]; 25.22/9.04 355[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];355 -> 412[label="",style="solid", color="black", weight=3]; 25.22/9.04 356[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];356 -> 413[label="",style="solid", color="black", weight=3]; 25.22/9.04 357[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];357 -> 414[label="",style="solid", color="black", weight=3]; 25.22/9.04 358[label="compare2 Nothing (Just xuu3000) (Nothing == Just xuu3000)",fontsize=16,color="black",shape="box"];358 -> 415[label="",style="solid", color="black", weight=3]; 25.22/9.04 359[label="compare2 (Just xuu40000) Nothing (Just xuu40000 == Nothing)",fontsize=16,color="black",shape="box"];359 -> 416[label="",style="solid", color="black", weight=3]; 25.22/9.04 360[label="compare2 (Just xuu40000) (Just xuu3000) (Just xuu40000 == Just xuu3000)",fontsize=16,color="black",shape="box"];360 -> 417[label="",style="solid", color="black", weight=3]; 25.22/9.04 361[label="compare2 (xuu40000,xuu40001) (xuu3000,xuu3001) ((xuu40000,xuu40001) == (xuu3000,xuu3001))",fontsize=16,color="black",shape="box"];361 -> 418[label="",style="solid", color="black", weight=3]; 25.22/9.04 362[label="primCmpDouble (Double xuu40000 (Pos xuu400010)) (Double xuu3000 xuu3001)",fontsize=16,color="burlywood",shape="box"];3891[label="xuu3001/Pos xuu30010",fontsize=10,color="white",style="solid",shape="box"];362 -> 3891[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3891 -> 419[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3892[label="xuu3001/Neg xuu30010",fontsize=10,color="white",style="solid",shape="box"];362 -> 3892[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3892 -> 420[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 363[label="primCmpDouble (Double xuu40000 (Neg xuu400010)) (Double xuu3000 xuu3001)",fontsize=16,color="burlywood",shape="box"];3893[label="xuu3001/Pos xuu30010",fontsize=10,color="white",style="solid",shape="box"];363 -> 3893[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3893 -> 421[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3894[label="xuu3001/Neg xuu30010",fontsize=10,color="white",style="solid",shape="box"];363 -> 3894[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3894 -> 422[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 364[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];364 -> 423[label="",style="solid", color="black", weight=3]; 25.22/9.04 365[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];365 -> 424[label="",style="solid", color="black", weight=3]; 25.22/9.04 366[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];366 -> 425[label="",style="solid", color="black", weight=3]; 25.22/9.04 367[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];367 -> 426[label="",style="solid", color="black", weight=3]; 25.22/9.04 368[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];368 -> 427[label="",style="solid", color="black", weight=3]; 25.22/9.04 369[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];369 -> 428[label="",style="solid", color="black", weight=3]; 25.22/9.04 370[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];370 -> 429[label="",style="solid", color="black", weight=3]; 25.22/9.04 371[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];371 -> 430[label="",style="solid", color="black", weight=3]; 25.22/9.04 372[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];372 -> 431[label="",style="solid", color="black", weight=3]; 25.22/9.04 373[label="primCmpFloat (Float xuu40000 (Pos xuu400010)) (Float xuu3000 xuu3001)",fontsize=16,color="burlywood",shape="box"];3895[label="xuu3001/Pos xuu30010",fontsize=10,color="white",style="solid",shape="box"];373 -> 3895[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3895 -> 432[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3896[label="xuu3001/Neg xuu30010",fontsize=10,color="white",style="solid",shape="box"];373 -> 3896[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3896 -> 433[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 374[label="primCmpFloat (Float xuu40000 (Neg xuu400010)) (Float xuu3000 xuu3001)",fontsize=16,color="burlywood",shape="box"];3897[label="xuu3001/Pos xuu30010",fontsize=10,color="white",style="solid",shape="box"];374 -> 3897[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3897 -> 434[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3898[label="xuu3001/Neg xuu30010",fontsize=10,color="white",style="solid",shape="box"];374 -> 3898[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3898 -> 435[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 375[label="xuu3000",fontsize=16,color="green",shape="box"];376[label="xuu40000",fontsize=16,color="green",shape="box"];377[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 False",fontsize=16,color="black",shape="triangle"];377 -> 436[label="",style="solid", color="black", weight=3]; 25.22/9.04 378 -> 377[label="",style="dashed", color="red", weight=0]; 25.22/9.04 378[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 False",fontsize=16,color="magenta"];379[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 True",fontsize=16,color="black",shape="box"];379 -> 437[label="",style="solid", color="black", weight=3]; 25.22/9.04 252[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 (xuu4000 : xuu4001) xuu401 True",fontsize=16,color="black",shape="box"];252 -> 327[label="",style="solid", color="black", weight=3]; 25.22/9.04 254 -> 14[label="",style="dashed", color="red", weight=0]; 25.22/9.04 254[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 (xuu4000 : xuu4001) xuu401",fontsize=16,color="magenta"];254 -> 328[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 254 -> 329[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 253[label="FiniteMap.mkBalBranch [] xuu31 xuu33 xuu38",fontsize=16,color="black",shape="triangle"];253 -> 330[label="",style="solid", color="black", weight=3]; 25.22/9.04 321[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];322[label="FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34 + FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="black",shape="box"];322 -> 380[label="",style="solid", color="black", weight=3]; 25.22/9.04 323[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 (LT == LT)",fontsize=16,color="black",shape="box"];323 -> 381[label="",style="solid", color="black", weight=3]; 25.22/9.04 324[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 (EQ == LT)",fontsize=16,color="black",shape="box"];324 -> 382[label="",style="solid", color="black", weight=3]; 25.22/9.04 325[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 (GT == LT)",fontsize=16,color="black",shape="box"];325 -> 383[label="",style="solid", color="black", weight=3]; 25.22/9.04 326[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 [] xuu31 xuu32 xuu33 xuu34 [] xuu401 True",fontsize=16,color="black",shape="box"];326 -> 384[label="",style="solid", color="black", weight=3]; 25.22/9.04 255 -> 14[label="",style="dashed", color="red", weight=0]; 25.22/9.04 255[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu34 [] xuu401",fontsize=16,color="magenta"];255 -> 331[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 255 -> 332[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 387 -> 1068[label="",style="dashed", color="red", weight=0]; 25.22/9.04 387[label="compare2 (xuu40000,xuu40001,xuu40002) (xuu3000,xuu3001,xuu3002) (xuu40000 == xuu3000 && xuu40001 == xuu3001 && xuu40002 == xuu3002)",fontsize=16,color="magenta"];387 -> 1069[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 387 -> 1070[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 387 -> 1071[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 387 -> 1072[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 387 -> 1073[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 387 -> 1074[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 387 -> 1075[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 388 -> 350[label="",style="dashed", color="red", weight=0]; 25.22/9.04 388[label="primCmpNat (Succ xuu400000) xuu3000",fontsize=16,color="magenta"];388 -> 452[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 388 -> 453[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 389[label="GT",fontsize=16,color="green",shape="box"];390[label="primCmpInt (Pos Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];390 -> 454[label="",style="solid", color="black", weight=3]; 25.22/9.04 391[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];391 -> 455[label="",style="solid", color="black", weight=3]; 25.22/9.04 392[label="primCmpInt (Pos Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];392 -> 456[label="",style="solid", color="black", weight=3]; 25.22/9.04 393[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];393 -> 457[label="",style="solid", color="black", weight=3]; 25.22/9.04 394[label="LT",fontsize=16,color="green",shape="box"];395 -> 350[label="",style="dashed", color="red", weight=0]; 25.22/9.04 395[label="primCmpNat xuu3000 (Succ xuu400000)",fontsize=16,color="magenta"];395 -> 458[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 395 -> 459[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 396[label="primCmpInt (Neg Zero) (Pos (Succ xuu30000))",fontsize=16,color="black",shape="box"];396 -> 460[label="",style="solid", color="black", weight=3]; 25.22/9.04 397[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];397 -> 461[label="",style="solid", color="black", weight=3]; 25.22/9.04 398[label="primCmpInt (Neg Zero) (Neg (Succ xuu30000))",fontsize=16,color="black",shape="box"];398 -> 462[label="",style="solid", color="black", weight=3]; 25.22/9.04 399[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];399 -> 463[label="",style="solid", color="black", weight=3]; 25.22/9.04 400 -> 464[label="",style="dashed", color="red", weight=0]; 25.22/9.04 400[label="compare2 (Left xuu40000) (Left xuu3000) (xuu40000 == xuu3000)",fontsize=16,color="magenta"];400 -> 465[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 400 -> 466[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 400 -> 467[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 401[label="compare2 (Left xuu40000) (Right xuu3000) False",fontsize=16,color="black",shape="box"];401 -> 468[label="",style="solid", color="black", weight=3]; 25.22/9.04 402[label="compare2 (Right xuu40000) (Left xuu3000) False",fontsize=16,color="black",shape="box"];402 -> 469[label="",style="solid", color="black", weight=3]; 25.22/9.04 403 -> 470[label="",style="dashed", color="red", weight=0]; 25.22/9.04 403[label="compare2 (Right xuu40000) (Right xuu3000) (xuu40000 == xuu3000)",fontsize=16,color="magenta"];403 -> 471[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 403 -> 472[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 403 -> 473[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 404[label="primCmpNat (Succ xuu400000) xuu3000",fontsize=16,color="burlywood",shape="box"];3899[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];404 -> 3899[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3899 -> 474[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3900[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];404 -> 3900[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3900 -> 475[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 405[label="primCmpNat Zero xuu3000",fontsize=16,color="burlywood",shape="box"];3901[label="xuu3000/Succ xuu30000",fontsize=10,color="white",style="solid",shape="box"];405 -> 3901[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3901 -> 476[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3902[label="xuu3000/Zero",fontsize=10,color="white",style="solid",shape="box"];405 -> 3902[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3902 -> 477[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 406[label="xuu3000 * xuu40001",fontsize=16,color="black",shape="triangle"];406 -> 478[label="",style="solid", color="black", weight=3]; 25.22/9.04 407 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.04 407[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];407 -> 479[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 407 -> 480[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 408[label="xuu3000 * xuu40001",fontsize=16,color="burlywood",shape="triangle"];3903[label="xuu3000/Integer xuu30000",fontsize=10,color="white",style="solid",shape="box"];408 -> 3903[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3903 -> 481[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 409 -> 408[label="",style="dashed", color="red", weight=0]; 25.22/9.04 409[label="xuu40000 * xuu3001",fontsize=16,color="magenta"];409 -> 482[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 409 -> 483[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 410[label="compare2 False False True",fontsize=16,color="black",shape="box"];410 -> 484[label="",style="solid", color="black", weight=3]; 25.22/9.04 411[label="compare2 False True False",fontsize=16,color="black",shape="box"];411 -> 485[label="",style="solid", color="black", weight=3]; 25.22/9.04 412[label="compare2 True False False",fontsize=16,color="black",shape="box"];412 -> 486[label="",style="solid", color="black", weight=3]; 25.22/9.04 413[label="compare2 True True True",fontsize=16,color="black",shape="box"];413 -> 487[label="",style="solid", color="black", weight=3]; 25.22/9.04 414[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];414 -> 488[label="",style="solid", color="black", weight=3]; 25.22/9.04 415[label="compare2 Nothing (Just xuu3000) False",fontsize=16,color="black",shape="box"];415 -> 489[label="",style="solid", color="black", weight=3]; 25.22/9.04 416[label="compare2 (Just xuu40000) Nothing False",fontsize=16,color="black",shape="box"];416 -> 490[label="",style="solid", color="black", weight=3]; 25.22/9.04 417 -> 491[label="",style="dashed", color="red", weight=0]; 25.22/9.04 417[label="compare2 (Just xuu40000) (Just xuu3000) (xuu40000 == xuu3000)",fontsize=16,color="magenta"];417 -> 492[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 417 -> 493[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 417 -> 494[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 418 -> 914[label="",style="dashed", color="red", weight=0]; 25.22/9.04 418[label="compare2 (xuu40000,xuu40001) (xuu3000,xuu3001) (xuu40000 == xuu3000 && xuu40001 == xuu3001)",fontsize=16,color="magenta"];418 -> 915[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 418 -> 916[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 418 -> 917[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 418 -> 918[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 418 -> 919[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 419[label="primCmpDouble (Double xuu40000 (Pos xuu400010)) (Double xuu3000 (Pos xuu30010))",fontsize=16,color="black",shape="box"];419 -> 501[label="",style="solid", color="black", weight=3]; 25.22/9.04 420[label="primCmpDouble (Double xuu40000 (Pos xuu400010)) (Double xuu3000 (Neg xuu30010))",fontsize=16,color="black",shape="box"];420 -> 502[label="",style="solid", color="black", weight=3]; 25.22/9.04 421[label="primCmpDouble (Double xuu40000 (Neg xuu400010)) (Double xuu3000 (Pos xuu30010))",fontsize=16,color="black",shape="box"];421 -> 503[label="",style="solid", color="black", weight=3]; 25.22/9.04 422[label="primCmpDouble (Double xuu40000 (Neg xuu400010)) (Double xuu3000 (Neg xuu30010))",fontsize=16,color="black",shape="box"];422 -> 504[label="",style="solid", color="black", weight=3]; 25.22/9.04 423[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];423 -> 505[label="",style="solid", color="black", weight=3]; 25.22/9.04 424[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];424 -> 506[label="",style="solid", color="black", weight=3]; 25.22/9.04 425[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];425 -> 507[label="",style="solid", color="black", weight=3]; 25.22/9.04 426[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];426 -> 508[label="",style="solid", color="black", weight=3]; 25.22/9.04 427[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];427 -> 509[label="",style="solid", color="black", weight=3]; 25.22/9.04 428[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];428 -> 510[label="",style="solid", color="black", weight=3]; 25.22/9.04 429[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];429 -> 511[label="",style="solid", color="black", weight=3]; 25.22/9.04 430[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];430 -> 512[label="",style="solid", color="black", weight=3]; 25.22/9.04 431[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];431 -> 513[label="",style="solid", color="black", weight=3]; 25.22/9.04 432[label="primCmpFloat (Float xuu40000 (Pos xuu400010)) (Float xuu3000 (Pos xuu30010))",fontsize=16,color="black",shape="box"];432 -> 514[label="",style="solid", color="black", weight=3]; 25.22/9.04 433[label="primCmpFloat (Float xuu40000 (Pos xuu400010)) (Float xuu3000 (Neg xuu30010))",fontsize=16,color="black",shape="box"];433 -> 515[label="",style="solid", color="black", weight=3]; 25.22/9.04 434[label="primCmpFloat (Float xuu40000 (Neg xuu400010)) (Float xuu3000 (Pos xuu30010))",fontsize=16,color="black",shape="box"];434 -> 516[label="",style="solid", color="black", weight=3]; 25.22/9.04 435[label="primCmpFloat (Float xuu40000 (Neg xuu400010)) (Float xuu3000 (Neg xuu30010))",fontsize=16,color="black",shape="box"];435 -> 517[label="",style="solid", color="black", weight=3]; 25.22/9.04 436[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 otherwise",fontsize=16,color="black",shape="box"];436 -> 518[label="",style="solid", color="black", weight=3]; 25.22/9.04 437 -> 72[label="",style="dashed", color="red", weight=0]; 25.22/9.04 437[label="FiniteMap.mkBalBranch (xuu16 : xuu17) xuu18 xuu20 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu21 (xuu22 : xuu23) xuu24)",fontsize=16,color="magenta"];437 -> 519[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 437 -> 520[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 437 -> 521[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 437 -> 522[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 437 -> 523[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 327[label="FiniteMap.Branch (xuu4000 : xuu4001) (FiniteMap.addListToFM0 xuu31 xuu401) xuu32 xuu33 xuu34",fontsize=16,color="green",shape="box"];327 -> 385[label="",style="dashed", color="green", weight=3]; 25.22/9.04 328[label="xuu34",fontsize=16,color="green",shape="box"];329[label="xuu4000 : xuu4001",fontsize=16,color="green",shape="box"];330[label="FiniteMap.mkBalBranch6 [] xuu31 xuu33 xuu38",fontsize=16,color="black",shape="box"];330 -> 386[label="",style="solid", color="black", weight=3]; 25.22/9.04 380 -> 2186[label="",style="dashed", color="red", weight=0]; 25.22/9.04 380[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34) (FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34)",fontsize=16,color="magenta"];380 -> 2187[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 380 -> 2188[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 381[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 True",fontsize=16,color="black",shape="box"];381 -> 439[label="",style="solid", color="black", weight=3]; 25.22/9.04 382[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 False",fontsize=16,color="black",shape="triangle"];382 -> 440[label="",style="solid", color="black", weight=3]; 25.22/9.04 383 -> 382[label="",style="dashed", color="red", weight=0]; 25.22/9.04 383[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 False",fontsize=16,color="magenta"];384[label="FiniteMap.Branch [] (FiniteMap.addListToFM0 xuu31 xuu401) xuu32 xuu33 xuu34",fontsize=16,color="green",shape="box"];384 -> 441[label="",style="dashed", color="green", weight=3]; 25.22/9.04 331[label="xuu34",fontsize=16,color="green",shape="box"];332[label="[]",fontsize=16,color="green",shape="box"];1069 -> 1120[label="",style="dashed", color="red", weight=0]; 25.22/9.04 1069[label="xuu40000 == xuu3000 && xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];1069 -> 1121[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 1069 -> 1122[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 1070[label="xuu40000",fontsize=16,color="green",shape="box"];1071[label="xuu3000",fontsize=16,color="green",shape="box"];1072[label="xuu40001",fontsize=16,color="green",shape="box"];1073[label="xuu3002",fontsize=16,color="green",shape="box"];1074[label="xuu40002",fontsize=16,color="green",shape="box"];1075[label="xuu3001",fontsize=16,color="green",shape="box"];1068[label="compare2 (xuu98,xuu99,xuu100) (xuu101,xuu102,xuu103) xuu126",fontsize=16,color="burlywood",shape="triangle"];3904[label="xuu126/False",fontsize=10,color="white",style="solid",shape="box"];1068 -> 3904[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3904 -> 1115[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3905[label="xuu126/True",fontsize=10,color="white",style="solid",shape="box"];1068 -> 3905[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3905 -> 1116[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 452[label="Succ xuu400000",fontsize=16,color="green",shape="box"];453[label="xuu3000",fontsize=16,color="green",shape="box"];454 -> 350[label="",style="dashed", color="red", weight=0]; 25.22/9.04 454[label="primCmpNat Zero (Succ xuu30000)",fontsize=16,color="magenta"];454 -> 540[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 454 -> 541[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 455[label="EQ",fontsize=16,color="green",shape="box"];456[label="GT",fontsize=16,color="green",shape="box"];457[label="EQ",fontsize=16,color="green",shape="box"];458[label="xuu3000",fontsize=16,color="green",shape="box"];459[label="Succ xuu400000",fontsize=16,color="green",shape="box"];460[label="LT",fontsize=16,color="green",shape="box"];461[label="EQ",fontsize=16,color="green",shape="box"];462 -> 350[label="",style="dashed", color="red", weight=0]; 25.22/9.04 462[label="primCmpNat (Succ xuu30000) Zero",fontsize=16,color="magenta"];462 -> 542[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 462 -> 543[label="",style="dashed", color="magenta", weight=3]; 25.22/9.04 463[label="EQ",fontsize=16,color="green",shape="box"];465[label="xuu40000",fontsize=16,color="green",shape="box"];466[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3906[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];466 -> 3906[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3906 -> 544[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3907[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];466 -> 3907[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3907 -> 545[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3908[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];466 -> 3908[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3908 -> 546[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3909[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];466 -> 3909[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3909 -> 547[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3910[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];466 -> 3910[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3910 -> 548[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3911[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];466 -> 3911[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3911 -> 549[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3912[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];466 -> 3912[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3912 -> 550[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3913[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];466 -> 3913[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3913 -> 551[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3914[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];466 -> 3914[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3914 -> 552[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3915[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];466 -> 3915[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3915 -> 553[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3916[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];466 -> 3916[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3916 -> 554[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3917[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];466 -> 3917[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3917 -> 555[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3918[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];466 -> 3918[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3918 -> 556[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3919[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];466 -> 3919[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3919 -> 557[label="",style="solid", color="blue", weight=3]; 25.22/9.04 467[label="xuu3000",fontsize=16,color="green",shape="box"];464[label="compare2 (Left xuu59) (Left xuu60) xuu61",fontsize=16,color="burlywood",shape="triangle"];3920[label="xuu61/False",fontsize=10,color="white",style="solid",shape="box"];464 -> 3920[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3920 -> 558[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 3921[label="xuu61/True",fontsize=10,color="white",style="solid",shape="box"];464 -> 3921[label="",style="solid", color="burlywood", weight=9]; 25.22/9.04 3921 -> 559[label="",style="solid", color="burlywood", weight=3]; 25.22/9.04 468[label="compare1 (Left xuu40000) (Right xuu3000) (Left xuu40000 <= Right xuu3000)",fontsize=16,color="black",shape="box"];468 -> 560[label="",style="solid", color="black", weight=3]; 25.22/9.04 469[label="compare1 (Right xuu40000) (Left xuu3000) (Right xuu40000 <= Left xuu3000)",fontsize=16,color="black",shape="box"];469 -> 561[label="",style="solid", color="black", weight=3]; 25.22/9.04 471[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3922[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3922[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3922 -> 562[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3923[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3923[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3923 -> 563[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3924[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3924[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3924 -> 564[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3925[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3925[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3925 -> 565[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3926[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3926[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3926 -> 566[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3927[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3927[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3927 -> 567[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3928[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3928[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3928 -> 568[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3929[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3929[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3929 -> 569[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3930[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3930[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3930 -> 570[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3931[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3931[label="",style="solid", color="blue", weight=9]; 25.22/9.04 3931 -> 571[label="",style="solid", color="blue", weight=3]; 25.22/9.04 3932[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3932[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3932 -> 572[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3933[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3933[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3933 -> 573[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3934[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3934[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3934 -> 574[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3935[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];471 -> 3935[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3935 -> 575[label="",style="solid", color="blue", weight=3]; 25.22/9.05 472[label="xuu40000",fontsize=16,color="green",shape="box"];473[label="xuu3000",fontsize=16,color="green",shape="box"];470[label="compare2 (Right xuu66) (Right xuu67) xuu68",fontsize=16,color="burlywood",shape="triangle"];3936[label="xuu68/False",fontsize=10,color="white",style="solid",shape="box"];470 -> 3936[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3936 -> 576[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 3937[label="xuu68/True",fontsize=10,color="white",style="solid",shape="box"];470 -> 3937[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3937 -> 577[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 474[label="primCmpNat (Succ xuu400000) (Succ xuu30000)",fontsize=16,color="black",shape="box"];474 -> 578[label="",style="solid", color="black", weight=3]; 25.22/9.05 475[label="primCmpNat (Succ xuu400000) Zero",fontsize=16,color="black",shape="box"];475 -> 579[label="",style="solid", color="black", weight=3]; 25.22/9.05 476[label="primCmpNat Zero (Succ xuu30000)",fontsize=16,color="black",shape="box"];476 -> 580[label="",style="solid", color="black", weight=3]; 25.22/9.05 477[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];477 -> 581[label="",style="solid", color="black", weight=3]; 25.22/9.05 478[label="primMulInt xuu3000 xuu40001",fontsize=16,color="burlywood",shape="triangle"];3938[label="xuu3000/Pos xuu30000",fontsize=10,color="white",style="solid",shape="box"];478 -> 3938[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3938 -> 582[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 3939[label="xuu3000/Neg xuu30000",fontsize=10,color="white",style="solid",shape="box"];478 -> 3939[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3939 -> 583[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 479[label="xuu3001",fontsize=16,color="green",shape="box"];480[label="xuu40000",fontsize=16,color="green",shape="box"];481[label="Integer xuu30000 * xuu40001",fontsize=16,color="burlywood",shape="box"];3940[label="xuu40001/Integer xuu400010",fontsize=10,color="white",style="solid",shape="box"];481 -> 3940[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3940 -> 584[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 482[label="xuu3001",fontsize=16,color="green",shape="box"];483[label="xuu40000",fontsize=16,color="green",shape="box"];484[label="EQ",fontsize=16,color="green",shape="box"];485[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];485 -> 585[label="",style="solid", color="black", weight=3]; 25.22/9.05 486[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];486 -> 586[label="",style="solid", color="black", weight=3]; 25.22/9.05 487[label="EQ",fontsize=16,color="green",shape="box"];488[label="EQ",fontsize=16,color="green",shape="box"];489[label="compare1 Nothing (Just xuu3000) (Nothing <= Just xuu3000)",fontsize=16,color="black",shape="box"];489 -> 587[label="",style="solid", color="black", weight=3]; 25.22/9.05 490[label="compare1 (Just xuu40000) Nothing (Just xuu40000 <= Nothing)",fontsize=16,color="black",shape="box"];490 -> 588[label="",style="solid", color="black", weight=3]; 25.22/9.05 492[label="xuu3000",fontsize=16,color="green",shape="box"];493[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3941[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3941[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3941 -> 589[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3942[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3942[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3942 -> 590[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3943[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3943[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3943 -> 591[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3944[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3944[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3944 -> 592[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3945[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3945[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3945 -> 593[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3946[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3946[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3946 -> 594[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3947[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3947[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3947 -> 595[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3948[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3948[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3948 -> 596[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3949[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3949[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3949 -> 597[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3950[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3950[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3950 -> 598[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3951[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3951[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3951 -> 599[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3952[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3952[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3952 -> 600[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3953[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3953[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3953 -> 601[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3954[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];493 -> 3954[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3954 -> 602[label="",style="solid", color="blue", weight=3]; 25.22/9.05 494[label="xuu40000",fontsize=16,color="green",shape="box"];491[label="compare2 (Just xuu73) (Just xuu74) xuu75",fontsize=16,color="burlywood",shape="triangle"];3955[label="xuu75/False",fontsize=10,color="white",style="solid",shape="box"];491 -> 3955[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3955 -> 603[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 3956[label="xuu75/True",fontsize=10,color="white",style="solid",shape="box"];491 -> 3956[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3956 -> 604[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 915 -> 1120[label="",style="dashed", color="red", weight=0]; 25.22/9.05 915[label="xuu40000 == xuu3000 && xuu40001 == xuu3001",fontsize=16,color="magenta"];915 -> 1123[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 915 -> 1124[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 916[label="xuu40001",fontsize=16,color="green",shape="box"];917[label="xuu3001",fontsize=16,color="green",shape="box"];918[label="xuu40000",fontsize=16,color="green",shape="box"];919[label="xuu3000",fontsize=16,color="green",shape="box"];914[label="compare2 (xuu111,xuu112) (xuu113,xuu114) xuu115",fontsize=16,color="burlywood",shape="triangle"];3957[label="xuu115/False",fontsize=10,color="white",style="solid",shape="box"];914 -> 3957[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3957 -> 939[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 3958[label="xuu115/True",fontsize=10,color="white",style="solid",shape="box"];914 -> 3958[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3958 -> 940[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 501 -> 166[label="",style="dashed", color="red", weight=0]; 25.22/9.05 501[label="compare (xuu40000 * Pos xuu30010) (Pos xuu400010 * xuu3000)",fontsize=16,color="magenta"];501 -> 626[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 501 -> 627[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 502 -> 166[label="",style="dashed", color="red", weight=0]; 25.22/9.05 502[label="compare (xuu40000 * Pos xuu30010) (Neg xuu400010 * xuu3000)",fontsize=16,color="magenta"];502 -> 628[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 502 -> 629[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 503 -> 166[label="",style="dashed", color="red", weight=0]; 25.22/9.05 503[label="compare (xuu40000 * Neg xuu30010) (Pos xuu400010 * xuu3000)",fontsize=16,color="magenta"];503 -> 630[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 503 -> 631[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 504 -> 166[label="",style="dashed", color="red", weight=0]; 25.22/9.05 504[label="compare (xuu40000 * Neg xuu30010) (Neg xuu400010 * xuu3000)",fontsize=16,color="magenta"];504 -> 632[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 504 -> 633[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 505[label="EQ",fontsize=16,color="green",shape="box"];506[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];506 -> 634[label="",style="solid", color="black", weight=3]; 25.22/9.05 507[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];507 -> 635[label="",style="solid", color="black", weight=3]; 25.22/9.05 508[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];508 -> 636[label="",style="solid", color="black", weight=3]; 25.22/9.05 509[label="EQ",fontsize=16,color="green",shape="box"];510[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];510 -> 637[label="",style="solid", color="black", weight=3]; 25.22/9.05 511[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];511 -> 638[label="",style="solid", color="black", weight=3]; 25.22/9.05 512[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];512 -> 639[label="",style="solid", color="black", weight=3]; 25.22/9.05 513[label="EQ",fontsize=16,color="green",shape="box"];514 -> 166[label="",style="dashed", color="red", weight=0]; 25.22/9.05 514[label="compare (xuu40000 * Pos xuu30010) (Pos xuu400010 * xuu3000)",fontsize=16,color="magenta"];514 -> 640[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 514 -> 641[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 515 -> 166[label="",style="dashed", color="red", weight=0]; 25.22/9.05 515[label="compare (xuu40000 * Pos xuu30010) (Neg xuu400010 * xuu3000)",fontsize=16,color="magenta"];515 -> 642[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 515 -> 643[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 516 -> 166[label="",style="dashed", color="red", weight=0]; 25.22/9.05 516[label="compare (xuu40000 * Neg xuu30010) (Pos xuu400010 * xuu3000)",fontsize=16,color="magenta"];516 -> 644[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 516 -> 645[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 517 -> 166[label="",style="dashed", color="red", weight=0]; 25.22/9.05 517[label="compare (xuu40000 * Neg xuu30010) (Neg xuu400010 * xuu3000)",fontsize=16,color="magenta"];517 -> 646[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 517 -> 647[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 518[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 (xuu16 : xuu17) xuu18 xuu19 xuu20 xuu21 (xuu22 : xuu23) xuu24 True",fontsize=16,color="black",shape="box"];518 -> 648[label="",style="solid", color="black", weight=3]; 25.22/9.05 519[label="xuu18",fontsize=16,color="green",shape="box"];520[label="xuu16",fontsize=16,color="green",shape="box"];521 -> 14[label="",style="dashed", color="red", weight=0]; 25.22/9.05 521[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu21 (xuu22 : xuu23) xuu24",fontsize=16,color="magenta"];521 -> 649[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 521 -> 650[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 521 -> 651[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 522[label="xuu17",fontsize=16,color="green",shape="box"];523[label="xuu20",fontsize=16,color="green",shape="box"];385[label="FiniteMap.addListToFM0 xuu31 xuu401",fontsize=16,color="black",shape="triangle"];385 -> 442[label="",style="solid", color="black", weight=3]; 25.22/9.05 386 -> 807[label="",style="dashed", color="red", weight=0]; 25.22/9.05 386[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 (FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38 + FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];386 -> 808[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 2187 -> 1806[label="",style="dashed", color="red", weight=0]; 25.22/9.05 2187[label="FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="magenta"];2188 -> 1800[label="",style="dashed", color="red", weight=0]; 25.22/9.05 2188[label="FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="magenta"];2186[label="primPlusInt xuu209 xuu208",fontsize=16,color="burlywood",shape="triangle"];3959[label="xuu209/Pos xuu2090",fontsize=10,color="white",style="solid",shape="box"];2186 -> 3959[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3959 -> 2221[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 3960[label="xuu209/Neg xuu2090",fontsize=10,color="white",style="solid",shape="box"];2186 -> 3960[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3960 -> 2222[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 439 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.05 439[label="FiniteMap.mkBranch (Pos (Succ Zero)) (xuu300 : xuu301) xuu31 xuu26 xuu34",fontsize=16,color="magenta"];439 -> 3496[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 439 -> 3497[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 439 -> 3498[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 439 -> 3499[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 439 -> 3500[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 440 -> 972[label="",style="dashed", color="red", weight=0]; 25.22/9.05 440[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 (FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34)",fontsize=16,color="magenta"];440 -> 973[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 441 -> 385[label="",style="dashed", color="red", weight=0]; 25.22/9.05 441[label="FiniteMap.addListToFM0 xuu31 xuu401",fontsize=16,color="magenta"];1121 -> 1120[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1121[label="xuu40001 == xuu3001 && xuu40002 == xuu3002",fontsize=16,color="magenta"];1121 -> 1139[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1121 -> 1140[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1122[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3961[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3961[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3961 -> 1141[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3962[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3962[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3962 -> 1142[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3963[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3963[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3963 -> 1143[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3964[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3964[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3964 -> 1144[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3965[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3965[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3965 -> 1145[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3966[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3966[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3966 -> 1146[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3967[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3967[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3967 -> 1147[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3968[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3968[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3968 -> 1148[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3969[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3969[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3969 -> 1149[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3970[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3970[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3970 -> 1150[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3971[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3971[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3971 -> 1151[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3972[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3972[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3972 -> 1152[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3973[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3973[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3973 -> 1153[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3974[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1122 -> 3974[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3974 -> 1154[label="",style="solid", color="blue", weight=3]; 25.22/9.05 1120[label="xuu131 && xuu132",fontsize=16,color="burlywood",shape="triangle"];3975[label="xuu131/False",fontsize=10,color="white",style="solid",shape="box"];1120 -> 3975[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3975 -> 1155[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 3976[label="xuu131/True",fontsize=10,color="white",style="solid",shape="box"];1120 -> 3976[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3976 -> 1156[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1115[label="compare2 (xuu98,xuu99,xuu100) (xuu101,xuu102,xuu103) False",fontsize=16,color="black",shape="box"];1115 -> 1157[label="",style="solid", color="black", weight=3]; 25.22/9.05 1116[label="compare2 (xuu98,xuu99,xuu100) (xuu101,xuu102,xuu103) True",fontsize=16,color="black",shape="box"];1116 -> 1158[label="",style="solid", color="black", weight=3]; 25.22/9.05 540[label="Zero",fontsize=16,color="green",shape="box"];541[label="Succ xuu30000",fontsize=16,color="green",shape="box"];542[label="Succ xuu30000",fontsize=16,color="green",shape="box"];543[label="Zero",fontsize=16,color="green",shape="box"];544 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.05 544[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];544 -> 674[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 544 -> 675[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 545 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.05 545[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];545 -> 676[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 545 -> 677[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 546 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.05 546[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];546 -> 678[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 546 -> 679[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 547 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.05 547[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];547 -> 680[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 547 -> 681[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 548 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.05 548[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];548 -> 682[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 548 -> 683[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 549 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.05 549[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];549 -> 684[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 549 -> 685[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 550 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 550[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];550 -> 686[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 550 -> 687[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 551 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.05 551[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];551 -> 688[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 551 -> 689[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 552 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.05 552[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];552 -> 690[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 552 -> 691[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 553 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.05 553[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];553 -> 692[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 553 -> 693[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 554 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.05 554[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];554 -> 694[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 554 -> 695[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 555 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.05 555[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];555 -> 696[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 555 -> 697[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 556 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.05 556[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];556 -> 698[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 556 -> 699[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 557 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.05 557[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];557 -> 700[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 557 -> 701[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 558[label="compare2 (Left xuu59) (Left xuu60) False",fontsize=16,color="black",shape="box"];558 -> 702[label="",style="solid", color="black", weight=3]; 25.22/9.05 559[label="compare2 (Left xuu59) (Left xuu60) True",fontsize=16,color="black",shape="box"];559 -> 703[label="",style="solid", color="black", weight=3]; 25.22/9.05 560[label="compare1 (Left xuu40000) (Right xuu3000) True",fontsize=16,color="black",shape="box"];560 -> 704[label="",style="solid", color="black", weight=3]; 25.22/9.05 561[label="compare1 (Right xuu40000) (Left xuu3000) False",fontsize=16,color="black",shape="box"];561 -> 705[label="",style="solid", color="black", weight=3]; 25.22/9.05 562 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.05 562[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];562 -> 706[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 562 -> 707[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 563 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.05 563[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];563 -> 708[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 563 -> 709[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 564 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.05 564[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];564 -> 710[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 564 -> 711[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 565 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.05 565[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];565 -> 712[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 565 -> 713[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 566 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.05 566[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];566 -> 714[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 566 -> 715[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 567 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.05 567[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];567 -> 716[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 567 -> 717[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 568 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 568[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];568 -> 718[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 568 -> 719[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 569 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.05 569[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];569 -> 720[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 569 -> 721[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 570 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.05 570[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];570 -> 722[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 570 -> 723[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 571 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.05 571[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];571 -> 724[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 571 -> 725[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 572 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.05 572[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];572 -> 726[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 572 -> 727[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 573 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.05 573[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];573 -> 728[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 573 -> 729[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 574 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.05 574[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];574 -> 730[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 574 -> 731[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 575 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.05 575[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];575 -> 732[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 575 -> 733[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 576[label="compare2 (Right xuu66) (Right xuu67) False",fontsize=16,color="black",shape="box"];576 -> 734[label="",style="solid", color="black", weight=3]; 25.22/9.05 577[label="compare2 (Right xuu66) (Right xuu67) True",fontsize=16,color="black",shape="box"];577 -> 735[label="",style="solid", color="black", weight=3]; 25.22/9.05 578 -> 350[label="",style="dashed", color="red", weight=0]; 25.22/9.05 578[label="primCmpNat xuu400000 xuu30000",fontsize=16,color="magenta"];578 -> 736[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 578 -> 737[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 579[label="GT",fontsize=16,color="green",shape="box"];580[label="LT",fontsize=16,color="green",shape="box"];581[label="EQ",fontsize=16,color="green",shape="box"];582[label="primMulInt (Pos xuu30000) xuu40001",fontsize=16,color="burlywood",shape="box"];3977[label="xuu40001/Pos xuu400010",fontsize=10,color="white",style="solid",shape="box"];582 -> 3977[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3977 -> 738[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 3978[label="xuu40001/Neg xuu400010",fontsize=10,color="white",style="solid",shape="box"];582 -> 3978[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3978 -> 739[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 583[label="primMulInt (Neg xuu30000) xuu40001",fontsize=16,color="burlywood",shape="box"];3979[label="xuu40001/Pos xuu400010",fontsize=10,color="white",style="solid",shape="box"];583 -> 3979[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3979 -> 740[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 3980[label="xuu40001/Neg xuu400010",fontsize=10,color="white",style="solid",shape="box"];583 -> 3980[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 3980 -> 741[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 584[label="Integer xuu30000 * Integer xuu400010",fontsize=16,color="black",shape="box"];584 -> 742[label="",style="solid", color="black", weight=3]; 25.22/9.05 585[label="compare1 False True True",fontsize=16,color="black",shape="box"];585 -> 743[label="",style="solid", color="black", weight=3]; 25.22/9.05 586[label="compare1 True False False",fontsize=16,color="black",shape="box"];586 -> 744[label="",style="solid", color="black", weight=3]; 25.22/9.05 587[label="compare1 Nothing (Just xuu3000) True",fontsize=16,color="black",shape="box"];587 -> 745[label="",style="solid", color="black", weight=3]; 25.22/9.05 588[label="compare1 (Just xuu40000) Nothing False",fontsize=16,color="black",shape="box"];588 -> 746[label="",style="solid", color="black", weight=3]; 25.22/9.05 589 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.05 589[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];589 -> 747[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 589 -> 748[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 590 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.05 590[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];590 -> 749[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 590 -> 750[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 591 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.05 591[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];591 -> 751[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 591 -> 752[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 592 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.05 592[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];592 -> 753[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 592 -> 754[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 593 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.05 593[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];593 -> 755[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 593 -> 756[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 594 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.05 594[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];594 -> 757[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 594 -> 758[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 595 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 595[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];595 -> 759[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 595 -> 760[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 596 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.05 596[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];596 -> 761[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 596 -> 762[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 597 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.05 597[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];597 -> 763[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 597 -> 764[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 598 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.05 598[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];598 -> 765[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 598 -> 766[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 599 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.05 599[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];599 -> 767[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 599 -> 768[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 600 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.05 600[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];600 -> 769[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 600 -> 770[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 601 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.05 601[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];601 -> 771[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 601 -> 772[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 602 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.05 602[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];602 -> 773[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 602 -> 774[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 603[label="compare2 (Just xuu73) (Just xuu74) False",fontsize=16,color="black",shape="box"];603 -> 775[label="",style="solid", color="black", weight=3]; 25.22/9.05 604[label="compare2 (Just xuu73) (Just xuu74) True",fontsize=16,color="black",shape="box"];604 -> 776[label="",style="solid", color="black", weight=3]; 25.22/9.05 1123[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];3981[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1123 -> 3981[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3981 -> 1159[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3982[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1123 -> 3982[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3982 -> 1160[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3983[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1123 -> 3983[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3983 -> 1161[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3984[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1123 -> 3984[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3984 -> 1162[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3985[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1123 -> 3985[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3985 -> 1163[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3986[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1123 -> 3986[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3986 -> 1164[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3987[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1123 -> 3987[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3987 -> 1165[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3988[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1123 -> 3988[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3988 -> 1166[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3989[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1123 -> 3989[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3989 -> 1167[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3990[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1123 -> 3990[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3990 -> 1168[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3991[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1123 -> 3991[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3991 -> 1169[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3992[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1123 -> 3992[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3992 -> 1170[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3993[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1123 -> 3993[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3993 -> 1171[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3994[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1123 -> 3994[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3994 -> 1172[label="",style="solid", color="blue", weight=3]; 25.22/9.05 1124[label="xuu40000 == xuu3000",fontsize=16,color="blue",shape="box"];3995[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3995[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3995 -> 1173[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3996[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3996[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3996 -> 1174[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3997[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3997[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3997 -> 1175[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3998[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3998[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3998 -> 1176[label="",style="solid", color="blue", weight=3]; 25.22/9.05 3999[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 3999[label="",style="solid", color="blue", weight=9]; 25.22/9.05 3999 -> 1177[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4000[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 4000[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4000 -> 1178[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4001[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 4001[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4001 -> 1179[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4002[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 4002[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4002 -> 1180[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4003[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 4003[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4003 -> 1181[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4004[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 4004[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4004 -> 1182[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4005[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 4005[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4005 -> 1183[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4006[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 4006[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4006 -> 1184[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4007[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 4007[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4007 -> 1185[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4008[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1124 -> 4008[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4008 -> 1186[label="",style="solid", color="blue", weight=3]; 25.22/9.05 939[label="compare2 (xuu111,xuu112) (xuu113,xuu114) False",fontsize=16,color="black",shape="box"];939 -> 976[label="",style="solid", color="black", weight=3]; 25.22/9.05 940[label="compare2 (xuu111,xuu112) (xuu113,xuu114) True",fontsize=16,color="black",shape="box"];940 -> 977[label="",style="solid", color="black", weight=3]; 25.22/9.05 626 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 626[label="Pos xuu400010 * xuu3000",fontsize=16,color="magenta"];626 -> 810[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 626 -> 811[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 627 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 627[label="xuu40000 * Pos xuu30010",fontsize=16,color="magenta"];627 -> 812[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 627 -> 813[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 628 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 628[label="Neg xuu400010 * xuu3000",fontsize=16,color="magenta"];628 -> 814[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 628 -> 815[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 629 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 629[label="xuu40000 * Pos xuu30010",fontsize=16,color="magenta"];629 -> 816[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 629 -> 817[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 630 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 630[label="Pos xuu400010 * xuu3000",fontsize=16,color="magenta"];630 -> 818[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 630 -> 819[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 631 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 631[label="xuu40000 * Neg xuu30010",fontsize=16,color="magenta"];631 -> 820[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 631 -> 821[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 632 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 632[label="Neg xuu400010 * xuu3000",fontsize=16,color="magenta"];632 -> 822[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 632 -> 823[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 633 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 633[label="xuu40000 * Neg xuu30010",fontsize=16,color="magenta"];633 -> 824[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 633 -> 825[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 634[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];634 -> 826[label="",style="solid", color="black", weight=3]; 25.22/9.05 635[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];635 -> 827[label="",style="solid", color="black", weight=3]; 25.22/9.05 636[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];636 -> 828[label="",style="solid", color="black", weight=3]; 25.22/9.05 637[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];637 -> 829[label="",style="solid", color="black", weight=3]; 25.22/9.05 638[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];638 -> 830[label="",style="solid", color="black", weight=3]; 25.22/9.05 639[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];639 -> 831[label="",style="solid", color="black", weight=3]; 25.22/9.05 640 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 640[label="Pos xuu400010 * xuu3000",fontsize=16,color="magenta"];640 -> 832[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 640 -> 833[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 641 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 641[label="xuu40000 * Pos xuu30010",fontsize=16,color="magenta"];641 -> 834[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 641 -> 835[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 642 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 642[label="Neg xuu400010 * xuu3000",fontsize=16,color="magenta"];642 -> 836[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 642 -> 837[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 643 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 643[label="xuu40000 * Pos xuu30010",fontsize=16,color="magenta"];643 -> 838[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 643 -> 839[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 644 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 644[label="Pos xuu400010 * xuu3000",fontsize=16,color="magenta"];644 -> 840[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 644 -> 841[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 645 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 645[label="xuu40000 * Neg xuu30010",fontsize=16,color="magenta"];645 -> 842[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 645 -> 843[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 646 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 646[label="Neg xuu400010 * xuu3000",fontsize=16,color="magenta"];646 -> 844[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 646 -> 845[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 647 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 647[label="xuu40000 * Neg xuu30010",fontsize=16,color="magenta"];647 -> 846[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 647 -> 847[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 648[label="FiniteMap.Branch (xuu22 : xuu23) (FiniteMap.addListToFM0 xuu18 xuu24) xuu19 xuu20 xuu21",fontsize=16,color="green",shape="box"];648 -> 848[label="",style="dashed", color="green", weight=3]; 25.22/9.05 649[label="xuu21",fontsize=16,color="green",shape="box"];650[label="xuu22 : xuu23",fontsize=16,color="green",shape="box"];651[label="xuu24",fontsize=16,color="green",shape="box"];442[label="xuu401",fontsize=16,color="green",shape="box"];808[label="FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38 + FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38 < Pos (Succ (Succ Zero))",fontsize=16,color="black",shape="box"];808 -> 849[label="",style="solid", color="black", weight=3]; 25.22/9.05 807[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 xuu88",fontsize=16,color="burlywood",shape="triangle"];4009[label="xuu88/False",fontsize=10,color="white",style="solid",shape="box"];807 -> 4009[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4009 -> 850[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4010[label="xuu88/True",fontsize=10,color="white",style="solid",shape="box"];807 -> 4010[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4010 -> 851[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1806[label="FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="black",shape="triangle"];1806 -> 1822[label="",style="solid", color="black", weight=3]; 25.22/9.05 1800[label="FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="black",shape="triangle"];1800 -> 1811[label="",style="solid", color="black", weight=3]; 25.22/9.05 2221[label="primPlusInt (Pos xuu2090) xuu208",fontsize=16,color="burlywood",shape="box"];4011[label="xuu208/Pos xuu2080",fontsize=10,color="white",style="solid",shape="box"];2221 -> 4011[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4011 -> 2227[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4012[label="xuu208/Neg xuu2080",fontsize=10,color="white",style="solid",shape="box"];2221 -> 4012[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4012 -> 2228[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 2222[label="primPlusInt (Neg xuu2090) xuu208",fontsize=16,color="burlywood",shape="box"];4013[label="xuu208/Pos xuu2080",fontsize=10,color="white",style="solid",shape="box"];2222 -> 4013[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4013 -> 2229[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4014[label="xuu208/Neg xuu2080",fontsize=10,color="white",style="solid",shape="box"];2222 -> 4014[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4014 -> 2230[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 3496[label="xuu31",fontsize=16,color="green",shape="box"];3497[label="xuu26",fontsize=16,color="green",shape="box"];3498[label="xuu34",fontsize=16,color="green",shape="box"];3499[label="Zero",fontsize=16,color="green",shape="box"];3500[label="xuu300 : xuu301",fontsize=16,color="green",shape="box"];3495[label="FiniteMap.mkBranch (Pos (Succ xuu304)) xuu305 xuu306 xuu307 xuu308",fontsize=16,color="black",shape="triangle"];3495 -> 3666[label="",style="solid", color="black", weight=3]; 25.22/9.05 973 -> 1798[label="",style="dashed", color="red", weight=0]; 25.22/9.05 973[label="FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="magenta"];973 -> 1799[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 973 -> 1800[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 972[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 xuu123",fontsize=16,color="burlywood",shape="triangle"];4015[label="xuu123/False",fontsize=10,color="white",style="solid",shape="box"];972 -> 4015[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4015 -> 980[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4016[label="xuu123/True",fontsize=10,color="white",style="solid",shape="box"];972 -> 4016[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4016 -> 981[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1139[label="xuu40002 == xuu3002",fontsize=16,color="blue",shape="box"];4017[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 4017[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4017 -> 1196[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4018[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 4018[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4018 -> 1197[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4019[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 4019[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4019 -> 1198[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4020[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 4020[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4020 -> 1199[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4021[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 4021[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4021 -> 1200[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4022[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 4022[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4022 -> 1201[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4023[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 4023[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4023 -> 1202[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4024[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 4024[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4024 -> 1203[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4025[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 4025[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4025 -> 1204[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4026[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 4026[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4026 -> 1205[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4027[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 4027[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4027 -> 1206[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4028[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 4028[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4028 -> 1207[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4029[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 4029[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4029 -> 1208[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4030[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 4030[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4030 -> 1209[label="",style="solid", color="blue", weight=3]; 25.22/9.05 1140[label="xuu40001 == xuu3001",fontsize=16,color="blue",shape="box"];4031[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4031[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4031 -> 1210[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4032[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4032[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4032 -> 1211[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4033[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4033[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4033 -> 1212[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4034[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4034[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4034 -> 1213[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4035[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4035[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4035 -> 1214[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4036[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4036[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4036 -> 1215[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4037[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4037[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4037 -> 1216[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4038[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4038[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4038 -> 1217[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4039[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4039[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4039 -> 1218[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4040[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4040[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4040 -> 1219[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4041[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4041[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4041 -> 1220[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4042[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4042[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4042 -> 1221[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4043[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4043[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4043 -> 1222[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4044[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1140 -> 4044[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4044 -> 1223[label="",style="solid", color="blue", weight=3]; 25.22/9.05 1141 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1141[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1142 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1142[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1143 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1143[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1144 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1144[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1145 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1145[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1146 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1146[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1147 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1147[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1148 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1148[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1149 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1149[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1150 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1150[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1151 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1151[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1152 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1152[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1153 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1153[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1154 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1154[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1155[label="False && xuu132",fontsize=16,color="black",shape="box"];1155 -> 1224[label="",style="solid", color="black", weight=3]; 25.22/9.05 1156[label="True && xuu132",fontsize=16,color="black",shape="box"];1156 -> 1225[label="",style="solid", color="black", weight=3]; 25.22/9.05 1157[label="compare1 (xuu98,xuu99,xuu100) (xuu101,xuu102,xuu103) ((xuu98,xuu99,xuu100) <= (xuu101,xuu102,xuu103))",fontsize=16,color="black",shape="box"];1157 -> 1226[label="",style="solid", color="black", weight=3]; 25.22/9.05 1158[label="EQ",fontsize=16,color="green",shape="box"];674[label="xuu40000",fontsize=16,color="green",shape="box"];675[label="xuu3000",fontsize=16,color="green",shape="box"];524[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];4045[label="xuu40000/(xuu400000,xuu400001)",fontsize=10,color="white",style="solid",shape="box"];524 -> 4045[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4045 -> 652[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 676[label="xuu40000",fontsize=16,color="green",shape="box"];677[label="xuu3000",fontsize=16,color="green",shape="box"];525[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];4046[label="xuu40000/(xuu400000,xuu400001,xuu400002)",fontsize=10,color="white",style="solid",shape="box"];525 -> 4046[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4046 -> 653[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 678[label="xuu40000",fontsize=16,color="green",shape="box"];679[label="xuu3000",fontsize=16,color="green",shape="box"];526[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];4047[label="xuu40000/False",fontsize=10,color="white",style="solid",shape="box"];526 -> 4047[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4047 -> 654[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4048[label="xuu40000/True",fontsize=10,color="white",style="solid",shape="box"];526 -> 4048[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4048 -> 655[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 680[label="xuu40000",fontsize=16,color="green",shape="box"];681[label="xuu3000",fontsize=16,color="green",shape="box"];527[label="xuu40000 == xuu3000",fontsize=16,color="black",shape="triangle"];527 -> 656[label="",style="solid", color="black", weight=3]; 25.22/9.05 682[label="xuu40000",fontsize=16,color="green",shape="box"];683[label="xuu3000",fontsize=16,color="green",shape="box"];528[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];4049[label="xuu40000/Left xuu400000",fontsize=10,color="white",style="solid",shape="box"];528 -> 4049[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4049 -> 657[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4050[label="xuu40000/Right xuu400000",fontsize=10,color="white",style="solid",shape="box"];528 -> 4050[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4050 -> 658[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 684[label="xuu40000",fontsize=16,color="green",shape="box"];685[label="xuu3000",fontsize=16,color="green",shape="box"];529[label="xuu40000 == xuu3000",fontsize=16,color="black",shape="triangle"];529 -> 659[label="",style="solid", color="black", weight=3]; 25.22/9.05 686[label="xuu40000",fontsize=16,color="green",shape="box"];687[label="xuu3000",fontsize=16,color="green",shape="box"];530[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];4051[label="xuu40000/LT",fontsize=10,color="white",style="solid",shape="box"];530 -> 4051[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4051 -> 660[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4052[label="xuu40000/EQ",fontsize=10,color="white",style="solid",shape="box"];530 -> 4052[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4052 -> 661[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4053[label="xuu40000/GT",fontsize=10,color="white",style="solid",shape="box"];530 -> 4053[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4053 -> 662[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 688[label="xuu40000",fontsize=16,color="green",shape="box"];689[label="xuu3000",fontsize=16,color="green",shape="box"];531[label="xuu40000 == xuu3000",fontsize=16,color="black",shape="triangle"];531 -> 663[label="",style="solid", color="black", weight=3]; 25.22/9.05 690[label="xuu40000",fontsize=16,color="green",shape="box"];691[label="xuu3000",fontsize=16,color="green",shape="box"];532[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];4054[label="xuu40000/xuu400000 :% xuu400001",fontsize=10,color="white",style="solid",shape="box"];532 -> 4054[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4054 -> 664[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 692[label="xuu40000",fontsize=16,color="green",shape="box"];693[label="xuu3000",fontsize=16,color="green",shape="box"];533[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];4055[label="xuu40000/Nothing",fontsize=10,color="white",style="solid",shape="box"];533 -> 4055[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4055 -> 665[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4056[label="xuu40000/Just xuu400000",fontsize=10,color="white",style="solid",shape="box"];533 -> 4056[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4056 -> 666[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 694[label="xuu40000",fontsize=16,color="green",shape="box"];695[label="xuu3000",fontsize=16,color="green",shape="box"];534[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];4057[label="xuu40000/()",fontsize=10,color="white",style="solid",shape="box"];534 -> 4057[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4057 -> 667[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 696[label="xuu40000",fontsize=16,color="green",shape="box"];697[label="xuu3000",fontsize=16,color="green",shape="box"];535[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];4058[label="xuu40000/Integer xuu400000",fontsize=10,color="white",style="solid",shape="box"];535 -> 4058[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4058 -> 668[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 698[label="xuu40000",fontsize=16,color="green",shape="box"];699[label="xuu3000",fontsize=16,color="green",shape="box"];536[label="xuu40000 == xuu3000",fontsize=16,color="burlywood",shape="triangle"];4059[label="xuu40000/xuu400000 : xuu400001",fontsize=10,color="white",style="solid",shape="box"];536 -> 4059[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4059 -> 669[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4060[label="xuu40000/[]",fontsize=10,color="white",style="solid",shape="box"];536 -> 4060[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4060 -> 670[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 700[label="xuu40000",fontsize=16,color="green",shape="box"];701[label="xuu3000",fontsize=16,color="green",shape="box"];537[label="xuu40000 == xuu3000",fontsize=16,color="black",shape="triangle"];537 -> 671[label="",style="solid", color="black", weight=3]; 25.22/9.05 702 -> 1189[label="",style="dashed", color="red", weight=0]; 25.22/9.05 702[label="compare1 (Left xuu59) (Left xuu60) (Left xuu59 <= Left xuu60)",fontsize=16,color="magenta"];702 -> 1190[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 702 -> 1191[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 702 -> 1192[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 703[label="EQ",fontsize=16,color="green",shape="box"];704[label="LT",fontsize=16,color="green",shape="box"];705[label="compare0 (Right xuu40000) (Left xuu3000) otherwise",fontsize=16,color="black",shape="box"];705 -> 903[label="",style="solid", color="black", weight=3]; 25.22/9.05 706[label="xuu40000",fontsize=16,color="green",shape="box"];707[label="xuu3000",fontsize=16,color="green",shape="box"];708[label="xuu40000",fontsize=16,color="green",shape="box"];709[label="xuu3000",fontsize=16,color="green",shape="box"];710[label="xuu40000",fontsize=16,color="green",shape="box"];711[label="xuu3000",fontsize=16,color="green",shape="box"];712[label="xuu40000",fontsize=16,color="green",shape="box"];713[label="xuu3000",fontsize=16,color="green",shape="box"];714[label="xuu40000",fontsize=16,color="green",shape="box"];715[label="xuu3000",fontsize=16,color="green",shape="box"];716[label="xuu40000",fontsize=16,color="green",shape="box"];717[label="xuu3000",fontsize=16,color="green",shape="box"];718[label="xuu40000",fontsize=16,color="green",shape="box"];719[label="xuu3000",fontsize=16,color="green",shape="box"];720[label="xuu40000",fontsize=16,color="green",shape="box"];721[label="xuu3000",fontsize=16,color="green",shape="box"];722[label="xuu40000",fontsize=16,color="green",shape="box"];723[label="xuu3000",fontsize=16,color="green",shape="box"];724[label="xuu40000",fontsize=16,color="green",shape="box"];725[label="xuu3000",fontsize=16,color="green",shape="box"];726[label="xuu40000",fontsize=16,color="green",shape="box"];727[label="xuu3000",fontsize=16,color="green",shape="box"];728[label="xuu40000",fontsize=16,color="green",shape="box"];729[label="xuu3000",fontsize=16,color="green",shape="box"];730[label="xuu40000",fontsize=16,color="green",shape="box"];731[label="xuu3000",fontsize=16,color="green",shape="box"];732[label="xuu40000",fontsize=16,color="green",shape="box"];733[label="xuu3000",fontsize=16,color="green",shape="box"];734 -> 1287[label="",style="dashed", color="red", weight=0]; 25.22/9.05 734[label="compare1 (Right xuu66) (Right xuu67) (Right xuu66 <= Right xuu67)",fontsize=16,color="magenta"];734 -> 1288[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 734 -> 1289[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 734 -> 1290[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 735[label="EQ",fontsize=16,color="green",shape="box"];736[label="xuu400000",fontsize=16,color="green",shape="box"];737[label="xuu30000",fontsize=16,color="green",shape="box"];738[label="primMulInt (Pos xuu30000) (Pos xuu400010)",fontsize=16,color="black",shape="box"];738 -> 905[label="",style="solid", color="black", weight=3]; 25.22/9.05 739[label="primMulInt (Pos xuu30000) (Neg xuu400010)",fontsize=16,color="black",shape="box"];739 -> 906[label="",style="solid", color="black", weight=3]; 25.22/9.05 740[label="primMulInt (Neg xuu30000) (Pos xuu400010)",fontsize=16,color="black",shape="box"];740 -> 907[label="",style="solid", color="black", weight=3]; 25.22/9.05 741[label="primMulInt (Neg xuu30000) (Neg xuu400010)",fontsize=16,color="black",shape="box"];741 -> 908[label="",style="solid", color="black", weight=3]; 25.22/9.05 742[label="Integer (primMulInt xuu30000 xuu400010)",fontsize=16,color="green",shape="box"];742 -> 909[label="",style="dashed", color="green", weight=3]; 25.22/9.05 743[label="LT",fontsize=16,color="green",shape="box"];744[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];744 -> 910[label="",style="solid", color="black", weight=3]; 25.22/9.05 745[label="LT",fontsize=16,color="green",shape="box"];746[label="compare0 (Just xuu40000) Nothing otherwise",fontsize=16,color="black",shape="box"];746 -> 911[label="",style="solid", color="black", weight=3]; 25.22/9.05 747[label="xuu40000",fontsize=16,color="green",shape="box"];748[label="xuu3000",fontsize=16,color="green",shape="box"];749[label="xuu40000",fontsize=16,color="green",shape="box"];750[label="xuu3000",fontsize=16,color="green",shape="box"];751[label="xuu40000",fontsize=16,color="green",shape="box"];752[label="xuu3000",fontsize=16,color="green",shape="box"];753[label="xuu40000",fontsize=16,color="green",shape="box"];754[label="xuu3000",fontsize=16,color="green",shape="box"];755[label="xuu40000",fontsize=16,color="green",shape="box"];756[label="xuu3000",fontsize=16,color="green",shape="box"];757[label="xuu40000",fontsize=16,color="green",shape="box"];758[label="xuu3000",fontsize=16,color="green",shape="box"];759[label="xuu40000",fontsize=16,color="green",shape="box"];760[label="xuu3000",fontsize=16,color="green",shape="box"];761[label="xuu40000",fontsize=16,color="green",shape="box"];762[label="xuu3000",fontsize=16,color="green",shape="box"];763[label="xuu40000",fontsize=16,color="green",shape="box"];764[label="xuu3000",fontsize=16,color="green",shape="box"];765[label="xuu40000",fontsize=16,color="green",shape="box"];766[label="xuu3000",fontsize=16,color="green",shape="box"];767[label="xuu40000",fontsize=16,color="green",shape="box"];768[label="xuu3000",fontsize=16,color="green",shape="box"];769[label="xuu40000",fontsize=16,color="green",shape="box"];770[label="xuu3000",fontsize=16,color="green",shape="box"];771[label="xuu40000",fontsize=16,color="green",shape="box"];772[label="xuu3000",fontsize=16,color="green",shape="box"];773[label="xuu40000",fontsize=16,color="green",shape="box"];774[label="xuu3000",fontsize=16,color="green",shape="box"];775 -> 1363[label="",style="dashed", color="red", weight=0]; 25.22/9.05 775[label="compare1 (Just xuu73) (Just xuu74) (Just xuu73 <= Just xuu74)",fontsize=16,color="magenta"];775 -> 1364[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 775 -> 1365[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 775 -> 1366[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 776[label="EQ",fontsize=16,color="green",shape="box"];1159 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1159[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1159 -> 1227[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1159 -> 1228[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1160 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1160[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1160 -> 1229[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1160 -> 1230[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1161 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1161[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1161 -> 1231[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1161 -> 1232[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1162 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1162[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1162 -> 1233[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1162 -> 1234[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1163 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1163[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1163 -> 1235[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1163 -> 1236[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1164 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1164[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1164 -> 1237[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1164 -> 1238[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1165 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1165[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1165 -> 1239[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1165 -> 1240[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1166 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1166[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1166 -> 1241[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1166 -> 1242[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1167 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1167[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1167 -> 1243[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1167 -> 1244[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1168 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1168[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1168 -> 1245[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1168 -> 1246[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1169 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1169[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1169 -> 1247[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1169 -> 1248[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1170 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1170[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1170 -> 1249[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1170 -> 1250[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1171 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1171[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1171 -> 1251[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1171 -> 1252[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1172 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1172[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1172 -> 1253[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1172 -> 1254[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1173 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1173[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1173 -> 1255[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1173 -> 1256[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1174 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1174[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1174 -> 1257[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1174 -> 1258[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1175 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1175[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1175 -> 1259[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1175 -> 1260[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1176 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1176[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1176 -> 1261[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1176 -> 1262[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1177 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1177[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1177 -> 1263[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1177 -> 1264[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1178 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1178[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1178 -> 1265[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1178 -> 1266[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1179 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1179[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1179 -> 1267[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1179 -> 1268[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1180 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1180[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1180 -> 1269[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1180 -> 1270[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1181 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1181[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1181 -> 1271[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1181 -> 1272[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1182 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1182[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1182 -> 1273[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1182 -> 1274[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1183 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1183[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1183 -> 1275[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1183 -> 1276[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1184 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1184[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1184 -> 1277[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1184 -> 1278[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1185 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1185[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1185 -> 1279[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1185 -> 1280[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1186 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1186[label="xuu40000 == xuu3000",fontsize=16,color="magenta"];1186 -> 1281[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1186 -> 1282[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 976[label="compare1 (xuu111,xuu112) (xuu113,xuu114) ((xuu111,xuu112) <= (xuu113,xuu114))",fontsize=16,color="black",shape="box"];976 -> 1012[label="",style="solid", color="black", weight=3]; 25.22/9.05 977[label="EQ",fontsize=16,color="green",shape="box"];810[label="xuu3000",fontsize=16,color="green",shape="box"];811[label="Pos xuu400010",fontsize=16,color="green",shape="box"];812[label="Pos xuu30010",fontsize=16,color="green",shape="box"];813[label="xuu40000",fontsize=16,color="green",shape="box"];814[label="xuu3000",fontsize=16,color="green",shape="box"];815[label="Neg xuu400010",fontsize=16,color="green",shape="box"];816[label="Pos xuu30010",fontsize=16,color="green",shape="box"];817[label="xuu40000",fontsize=16,color="green",shape="box"];818[label="xuu3000",fontsize=16,color="green",shape="box"];819[label="Pos xuu400010",fontsize=16,color="green",shape="box"];820[label="Neg xuu30010",fontsize=16,color="green",shape="box"];821[label="xuu40000",fontsize=16,color="green",shape="box"];822[label="xuu3000",fontsize=16,color="green",shape="box"];823[label="Neg xuu400010",fontsize=16,color="green",shape="box"];824[label="Neg xuu30010",fontsize=16,color="green",shape="box"];825[label="xuu40000",fontsize=16,color="green",shape="box"];826[label="LT",fontsize=16,color="green",shape="box"];827[label="LT",fontsize=16,color="green",shape="box"];828[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];828 -> 957[label="",style="solid", color="black", weight=3]; 25.22/9.05 829[label="LT",fontsize=16,color="green",shape="box"];830[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];830 -> 958[label="",style="solid", color="black", weight=3]; 25.22/9.05 831[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];831 -> 959[label="",style="solid", color="black", weight=3]; 25.22/9.05 832[label="xuu3000",fontsize=16,color="green",shape="box"];833[label="Pos xuu400010",fontsize=16,color="green",shape="box"];834[label="Pos xuu30010",fontsize=16,color="green",shape="box"];835[label="xuu40000",fontsize=16,color="green",shape="box"];836[label="xuu3000",fontsize=16,color="green",shape="box"];837[label="Neg xuu400010",fontsize=16,color="green",shape="box"];838[label="Pos xuu30010",fontsize=16,color="green",shape="box"];839[label="xuu40000",fontsize=16,color="green",shape="box"];840[label="xuu3000",fontsize=16,color="green",shape="box"];841[label="Pos xuu400010",fontsize=16,color="green",shape="box"];842[label="Neg xuu30010",fontsize=16,color="green",shape="box"];843[label="xuu40000",fontsize=16,color="green",shape="box"];844[label="xuu3000",fontsize=16,color="green",shape="box"];845[label="Neg xuu400010",fontsize=16,color="green",shape="box"];846[label="Neg xuu30010",fontsize=16,color="green",shape="box"];847[label="xuu40000",fontsize=16,color="green",shape="box"];848 -> 385[label="",style="dashed", color="red", weight=0]; 25.22/9.05 848[label="FiniteMap.addListToFM0 xuu18 xuu24",fontsize=16,color="magenta"];848 -> 960[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 848 -> 961[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 849 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 849[label="compare (FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38 + FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38) (Pos (Succ (Succ Zero))) == LT",fontsize=16,color="magenta"];849 -> 962[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 849 -> 963[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 850[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 False",fontsize=16,color="black",shape="box"];850 -> 964[label="",style="solid", color="black", weight=3]; 25.22/9.05 851[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 True",fontsize=16,color="black",shape="box"];851 -> 965[label="",style="solid", color="black", weight=3]; 25.22/9.05 1822 -> 1811[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1822[label="FiniteMap.sizeFM xuu26",fontsize=16,color="magenta"];1822 -> 2096[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1811[label="FiniteMap.sizeFM xuu34",fontsize=16,color="burlywood",shape="triangle"];4061[label="xuu34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1811 -> 4061[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4061 -> 1860[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4062[label="xuu34/FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344",fontsize=10,color="white",style="solid",shape="box"];1811 -> 4062[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4062 -> 1861[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 2227[label="primPlusInt (Pos xuu2090) (Pos xuu2080)",fontsize=16,color="black",shape="box"];2227 -> 2241[label="",style="solid", color="black", weight=3]; 25.22/9.05 2228[label="primPlusInt (Pos xuu2090) (Neg xuu2080)",fontsize=16,color="black",shape="box"];2228 -> 2242[label="",style="solid", color="black", weight=3]; 25.22/9.05 2229[label="primPlusInt (Neg xuu2090) (Pos xuu2080)",fontsize=16,color="black",shape="box"];2229 -> 2243[label="",style="solid", color="black", weight=3]; 25.22/9.05 2230[label="primPlusInt (Neg xuu2090) (Neg xuu2080)",fontsize=16,color="black",shape="box"];2230 -> 2244[label="",style="solid", color="black", weight=3]; 25.22/9.05 3666[label="FiniteMap.mkBranchResult xuu305 xuu306 xuu307 xuu308",fontsize=16,color="black",shape="box"];3666 -> 3719[label="",style="solid", color="black", weight=3]; 25.22/9.05 1799 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1799[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="magenta"];1799 -> 1809[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1799 -> 1810[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1798[label="xuu199 > xuu198",fontsize=16,color="black",shape="triangle"];1798 -> 1812[label="",style="solid", color="black", weight=3]; 25.22/9.05 980[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 False",fontsize=16,color="black",shape="box"];980 -> 1187[label="",style="solid", color="black", weight=3]; 25.22/9.05 981[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 True",fontsize=16,color="black",shape="box"];981 -> 1188[label="",style="solid", color="black", weight=3]; 25.22/9.05 1196 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1196[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1196 -> 1294[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1196 -> 1295[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1197 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1197[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1197 -> 1296[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1197 -> 1297[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1198 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1198[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1198 -> 1298[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1198 -> 1299[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1199 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1199[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1199 -> 1300[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1199 -> 1301[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1200 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1200[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1200 -> 1302[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1200 -> 1303[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1201 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1201[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1201 -> 1304[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1201 -> 1305[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1202 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1202[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1202 -> 1306[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1202 -> 1307[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1203 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1203[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1203 -> 1308[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1203 -> 1309[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1204 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1204[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1204 -> 1310[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1204 -> 1311[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1205 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1205[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1205 -> 1312[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1205 -> 1313[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1206 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1206[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1206 -> 1314[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1206 -> 1315[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1207 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1207[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1207 -> 1316[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1207 -> 1317[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1208 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1208[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1208 -> 1318[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1208 -> 1319[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1209 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1209[label="xuu40002 == xuu3002",fontsize=16,color="magenta"];1209 -> 1320[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1209 -> 1321[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1210 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1210[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1210 -> 1322[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1210 -> 1323[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1211 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1211[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1211 -> 1324[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1211 -> 1325[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1212 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1212[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1212 -> 1326[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1212 -> 1327[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1213 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1213[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1213 -> 1328[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1213 -> 1329[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1214 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1214[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1214 -> 1330[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1214 -> 1331[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1215 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1215[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1215 -> 1332[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1215 -> 1333[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1216 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1216[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1216 -> 1334[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1216 -> 1335[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1217 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1217[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1217 -> 1336[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1217 -> 1337[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1218 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1218[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1218 -> 1338[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1218 -> 1339[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1219 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1219[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1219 -> 1340[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1219 -> 1341[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1220 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1220[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1220 -> 1342[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1220 -> 1343[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1221 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1221[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1221 -> 1344[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1221 -> 1345[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1222 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1222[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1222 -> 1346[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1222 -> 1347[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1223 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1223[label="xuu40001 == xuu3001",fontsize=16,color="magenta"];1223 -> 1348[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1223 -> 1349[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1224[label="False",fontsize=16,color="green",shape="box"];1225[label="xuu132",fontsize=16,color="green",shape="box"];1226 -> 1399[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1226[label="compare1 (xuu98,xuu99,xuu100) (xuu101,xuu102,xuu103) (xuu98 < xuu101 || xuu98 == xuu101 && (xuu99 < xuu102 || xuu99 == xuu102 && xuu100 <= xuu103))",fontsize=16,color="magenta"];1226 -> 1400[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1226 -> 1401[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1226 -> 1402[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1226 -> 1403[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1226 -> 1404[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1226 -> 1405[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1226 -> 1406[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1226 -> 1407[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 652[label="(xuu400000,xuu400001) == xuu3000",fontsize=16,color="burlywood",shape="box"];4063[label="xuu3000/(xuu30000,xuu30001)",fontsize=10,color="white",style="solid",shape="box"];652 -> 4063[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4063 -> 858[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 653[label="(xuu400000,xuu400001,xuu400002) == xuu3000",fontsize=16,color="burlywood",shape="box"];4064[label="xuu3000/(xuu30000,xuu30001,xuu30002)",fontsize=10,color="white",style="solid",shape="box"];653 -> 4064[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4064 -> 859[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 654[label="False == xuu3000",fontsize=16,color="burlywood",shape="box"];4065[label="xuu3000/False",fontsize=10,color="white",style="solid",shape="box"];654 -> 4065[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4065 -> 860[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4066[label="xuu3000/True",fontsize=10,color="white",style="solid",shape="box"];654 -> 4066[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4066 -> 861[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 655[label="True == xuu3000",fontsize=16,color="burlywood",shape="box"];4067[label="xuu3000/False",fontsize=10,color="white",style="solid",shape="box"];655 -> 4067[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4067 -> 862[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4068[label="xuu3000/True",fontsize=10,color="white",style="solid",shape="box"];655 -> 4068[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4068 -> 863[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 656[label="primEqInt xuu40000 xuu3000",fontsize=16,color="burlywood",shape="triangle"];4069[label="xuu40000/Pos xuu400000",fontsize=10,color="white",style="solid",shape="box"];656 -> 4069[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4069 -> 864[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4070[label="xuu40000/Neg xuu400000",fontsize=10,color="white",style="solid",shape="box"];656 -> 4070[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4070 -> 865[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 657[label="Left xuu400000 == xuu3000",fontsize=16,color="burlywood",shape="box"];4071[label="xuu3000/Left xuu30000",fontsize=10,color="white",style="solid",shape="box"];657 -> 4071[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4071 -> 866[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4072[label="xuu3000/Right xuu30000",fontsize=10,color="white",style="solid",shape="box"];657 -> 4072[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4072 -> 867[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 658[label="Right xuu400000 == xuu3000",fontsize=16,color="burlywood",shape="box"];4073[label="xuu3000/Left xuu30000",fontsize=10,color="white",style="solid",shape="box"];658 -> 4073[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4073 -> 868[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4074[label="xuu3000/Right xuu30000",fontsize=10,color="white",style="solid",shape="box"];658 -> 4074[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4074 -> 869[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 659[label="primEqChar xuu40000 xuu3000",fontsize=16,color="burlywood",shape="box"];4075[label="xuu40000/Char xuu400000",fontsize=10,color="white",style="solid",shape="box"];659 -> 4075[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4075 -> 870[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 660[label="LT == xuu3000",fontsize=16,color="burlywood",shape="box"];4076[label="xuu3000/LT",fontsize=10,color="white",style="solid",shape="box"];660 -> 4076[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4076 -> 871[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4077[label="xuu3000/EQ",fontsize=10,color="white",style="solid",shape="box"];660 -> 4077[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4077 -> 872[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4078[label="xuu3000/GT",fontsize=10,color="white",style="solid",shape="box"];660 -> 4078[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4078 -> 873[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 661[label="EQ == xuu3000",fontsize=16,color="burlywood",shape="box"];4079[label="xuu3000/LT",fontsize=10,color="white",style="solid",shape="box"];661 -> 4079[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4079 -> 874[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4080[label="xuu3000/EQ",fontsize=10,color="white",style="solid",shape="box"];661 -> 4080[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4080 -> 875[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4081[label="xuu3000/GT",fontsize=10,color="white",style="solid",shape="box"];661 -> 4081[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4081 -> 876[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 662[label="GT == xuu3000",fontsize=16,color="burlywood",shape="box"];4082[label="xuu3000/LT",fontsize=10,color="white",style="solid",shape="box"];662 -> 4082[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4082 -> 877[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4083[label="xuu3000/EQ",fontsize=10,color="white",style="solid",shape="box"];662 -> 4083[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4083 -> 878[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4084[label="xuu3000/GT",fontsize=10,color="white",style="solid",shape="box"];662 -> 4084[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4084 -> 879[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 663[label="primEqFloat xuu40000 xuu3000",fontsize=16,color="burlywood",shape="box"];4085[label="xuu40000/Float xuu400000 xuu400001",fontsize=10,color="white",style="solid",shape="box"];663 -> 4085[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4085 -> 880[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 664[label="xuu400000 :% xuu400001 == xuu3000",fontsize=16,color="burlywood",shape="box"];4086[label="xuu3000/xuu30000 :% xuu30001",fontsize=10,color="white",style="solid",shape="box"];664 -> 4086[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4086 -> 881[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 665[label="Nothing == xuu3000",fontsize=16,color="burlywood",shape="box"];4087[label="xuu3000/Nothing",fontsize=10,color="white",style="solid",shape="box"];665 -> 4087[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4087 -> 882[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4088[label="xuu3000/Just xuu30000",fontsize=10,color="white",style="solid",shape="box"];665 -> 4088[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4088 -> 883[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 666[label="Just xuu400000 == xuu3000",fontsize=16,color="burlywood",shape="box"];4089[label="xuu3000/Nothing",fontsize=10,color="white",style="solid",shape="box"];666 -> 4089[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4089 -> 884[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4090[label="xuu3000/Just xuu30000",fontsize=10,color="white",style="solid",shape="box"];666 -> 4090[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4090 -> 885[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 667[label="() == xuu3000",fontsize=16,color="burlywood",shape="box"];4091[label="xuu3000/()",fontsize=10,color="white",style="solid",shape="box"];667 -> 4091[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4091 -> 886[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 668[label="Integer xuu400000 == xuu3000",fontsize=16,color="burlywood",shape="box"];4092[label="xuu3000/Integer xuu30000",fontsize=10,color="white",style="solid",shape="box"];668 -> 4092[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4092 -> 887[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 669[label="xuu400000 : xuu400001 == xuu3000",fontsize=16,color="burlywood",shape="box"];4093[label="xuu3000/xuu30000 : xuu30001",fontsize=10,color="white",style="solid",shape="box"];669 -> 4093[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4093 -> 888[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4094[label="xuu3000/[]",fontsize=10,color="white",style="solid",shape="box"];669 -> 4094[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4094 -> 889[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 670[label="[] == xuu3000",fontsize=16,color="burlywood",shape="box"];4095[label="xuu3000/xuu30000 : xuu30001",fontsize=10,color="white",style="solid",shape="box"];670 -> 4095[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4095 -> 890[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4096[label="xuu3000/[]",fontsize=10,color="white",style="solid",shape="box"];670 -> 4096[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4096 -> 891[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 671[label="primEqDouble xuu40000 xuu3000",fontsize=16,color="burlywood",shape="box"];4097[label="xuu40000/Double xuu400000 xuu400001",fontsize=10,color="white",style="solid",shape="box"];671 -> 4097[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4097 -> 892[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1190[label="xuu60",fontsize=16,color="green",shape="box"];1191[label="xuu59",fontsize=16,color="green",shape="box"];1192[label="Left xuu59 <= Left xuu60",fontsize=16,color="black",shape="box"];1192 -> 1283[label="",style="solid", color="black", weight=3]; 25.22/9.05 1189[label="compare1 (Left xuu137) (Left xuu138) xuu139",fontsize=16,color="burlywood",shape="triangle"];4098[label="xuu139/False",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4098[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4098 -> 1284[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4099[label="xuu139/True",fontsize=10,color="white",style="solid",shape="box"];1189 -> 4099[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4099 -> 1285[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 903[label="compare0 (Right xuu40000) (Left xuu3000) True",fontsize=16,color="black",shape="box"];903 -> 1286[label="",style="solid", color="black", weight=3]; 25.22/9.05 1288[label="xuu67",fontsize=16,color="green",shape="box"];1289[label="xuu66",fontsize=16,color="green",shape="box"];1290[label="Right xuu66 <= Right xuu67",fontsize=16,color="black",shape="box"];1290 -> 1352[label="",style="solid", color="black", weight=3]; 25.22/9.05 1287[label="compare1 (Right xuu144) (Right xuu145) xuu146",fontsize=16,color="burlywood",shape="triangle"];4100[label="xuu146/False",fontsize=10,color="white",style="solid",shape="box"];1287 -> 4100[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4100 -> 1353[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4101[label="xuu146/True",fontsize=10,color="white",style="solid",shape="box"];1287 -> 4101[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4101 -> 1354[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 905[label="Pos (primMulNat xuu30000 xuu400010)",fontsize=16,color="green",shape="box"];905 -> 1355[label="",style="dashed", color="green", weight=3]; 25.22/9.05 906[label="Neg (primMulNat xuu30000 xuu400010)",fontsize=16,color="green",shape="box"];906 -> 1356[label="",style="dashed", color="green", weight=3]; 25.22/9.05 907[label="Neg (primMulNat xuu30000 xuu400010)",fontsize=16,color="green",shape="box"];907 -> 1357[label="",style="dashed", color="green", weight=3]; 25.22/9.05 908[label="Pos (primMulNat xuu30000 xuu400010)",fontsize=16,color="green",shape="box"];908 -> 1358[label="",style="dashed", color="green", weight=3]; 25.22/9.05 909 -> 478[label="",style="dashed", color="red", weight=0]; 25.22/9.05 909[label="primMulInt xuu30000 xuu400010",fontsize=16,color="magenta"];909 -> 1359[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 909 -> 1360[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 910[label="compare0 True False True",fontsize=16,color="black",shape="box"];910 -> 1361[label="",style="solid", color="black", weight=3]; 25.22/9.05 911[label="compare0 (Just xuu40000) Nothing True",fontsize=16,color="black",shape="box"];911 -> 1362[label="",style="solid", color="black", weight=3]; 25.22/9.05 1364[label="xuu73",fontsize=16,color="green",shape="box"];1365[label="Just xuu73 <= Just xuu74",fontsize=16,color="black",shape="box"];1365 -> 1370[label="",style="solid", color="black", weight=3]; 25.22/9.05 1366[label="xuu74",fontsize=16,color="green",shape="box"];1363[label="compare1 (Just xuu153) (Just xuu154) xuu155",fontsize=16,color="burlywood",shape="triangle"];4102[label="xuu155/False",fontsize=10,color="white",style="solid",shape="box"];1363 -> 4102[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4102 -> 1371[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4103[label="xuu155/True",fontsize=10,color="white",style="solid",shape="box"];1363 -> 4103[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4103 -> 1372[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1227[label="xuu40001",fontsize=16,color="green",shape="box"];1228[label="xuu3001",fontsize=16,color="green",shape="box"];1229[label="xuu40001",fontsize=16,color="green",shape="box"];1230[label="xuu3001",fontsize=16,color="green",shape="box"];1231[label="xuu40001",fontsize=16,color="green",shape="box"];1232[label="xuu3001",fontsize=16,color="green",shape="box"];1233[label="xuu40001",fontsize=16,color="green",shape="box"];1234[label="xuu3001",fontsize=16,color="green",shape="box"];1235[label="xuu40001",fontsize=16,color="green",shape="box"];1236[label="xuu3001",fontsize=16,color="green",shape="box"];1237[label="xuu40001",fontsize=16,color="green",shape="box"];1238[label="xuu3001",fontsize=16,color="green",shape="box"];1239[label="xuu40001",fontsize=16,color="green",shape="box"];1240[label="xuu3001",fontsize=16,color="green",shape="box"];1241[label="xuu40001",fontsize=16,color="green",shape="box"];1242[label="xuu3001",fontsize=16,color="green",shape="box"];1243[label="xuu40001",fontsize=16,color="green",shape="box"];1244[label="xuu3001",fontsize=16,color="green",shape="box"];1245[label="xuu40001",fontsize=16,color="green",shape="box"];1246[label="xuu3001",fontsize=16,color="green",shape="box"];1247[label="xuu40001",fontsize=16,color="green",shape="box"];1248[label="xuu3001",fontsize=16,color="green",shape="box"];1249[label="xuu40001",fontsize=16,color="green",shape="box"];1250[label="xuu3001",fontsize=16,color="green",shape="box"];1251[label="xuu40001",fontsize=16,color="green",shape="box"];1252[label="xuu3001",fontsize=16,color="green",shape="box"];1253[label="xuu40001",fontsize=16,color="green",shape="box"];1254[label="xuu3001",fontsize=16,color="green",shape="box"];1255[label="xuu40000",fontsize=16,color="green",shape="box"];1256[label="xuu3000",fontsize=16,color="green",shape="box"];1257[label="xuu40000",fontsize=16,color="green",shape="box"];1258[label="xuu3000",fontsize=16,color="green",shape="box"];1259[label="xuu40000",fontsize=16,color="green",shape="box"];1260[label="xuu3000",fontsize=16,color="green",shape="box"];1261[label="xuu40000",fontsize=16,color="green",shape="box"];1262[label="xuu3000",fontsize=16,color="green",shape="box"];1263[label="xuu40000",fontsize=16,color="green",shape="box"];1264[label="xuu3000",fontsize=16,color="green",shape="box"];1265[label="xuu40000",fontsize=16,color="green",shape="box"];1266[label="xuu3000",fontsize=16,color="green",shape="box"];1267[label="xuu40000",fontsize=16,color="green",shape="box"];1268[label="xuu3000",fontsize=16,color="green",shape="box"];1269[label="xuu40000",fontsize=16,color="green",shape="box"];1270[label="xuu3000",fontsize=16,color="green",shape="box"];1271[label="xuu40000",fontsize=16,color="green",shape="box"];1272[label="xuu3000",fontsize=16,color="green",shape="box"];1273[label="xuu40000",fontsize=16,color="green",shape="box"];1274[label="xuu3000",fontsize=16,color="green",shape="box"];1275[label="xuu40000",fontsize=16,color="green",shape="box"];1276[label="xuu3000",fontsize=16,color="green",shape="box"];1277[label="xuu40000",fontsize=16,color="green",shape="box"];1278[label="xuu3000",fontsize=16,color="green",shape="box"];1279[label="xuu40000",fontsize=16,color="green",shape="box"];1280[label="xuu3000",fontsize=16,color="green",shape="box"];1281[label="xuu40000",fontsize=16,color="green",shape="box"];1282[label="xuu3000",fontsize=16,color="green",shape="box"];1012 -> 1490[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1012[label="compare1 (xuu111,xuu112) (xuu113,xuu114) (xuu111 < xuu113 || xuu111 == xuu113 && xuu112 <= xuu114)",fontsize=16,color="magenta"];1012 -> 1491[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1012 -> 1492[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1012 -> 1493[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1012 -> 1494[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1012 -> 1495[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1012 -> 1496[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 957[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];957 -> 1375[label="",style="solid", color="black", weight=3]; 25.22/9.05 958[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];958 -> 1376[label="",style="solid", color="black", weight=3]; 25.22/9.05 959[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];959 -> 1377[label="",style="solid", color="black", weight=3]; 25.22/9.05 960[label="xuu18",fontsize=16,color="green",shape="box"];961[label="xuu24",fontsize=16,color="green",shape="box"];962 -> 166[label="",style="dashed", color="red", weight=0]; 25.22/9.05 962[label="compare (FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38 + FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38) (Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];962 -> 1378[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 962 -> 1379[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 963[label="LT",fontsize=16,color="green",shape="box"];964 -> 1771[label="",style="dashed", color="red", weight=0]; 25.22/9.05 964[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 (FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38)",fontsize=16,color="magenta"];964 -> 1772[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 965 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.05 965[label="FiniteMap.mkBranch (Pos (Succ Zero)) [] xuu31 xuu33 xuu38",fontsize=16,color="magenta"];965 -> 3501[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 965 -> 3502[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 965 -> 3503[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 965 -> 3504[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 965 -> 3505[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 2096[label="xuu26",fontsize=16,color="green",shape="box"];1860[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1860 -> 2092[label="",style="solid", color="black", weight=3]; 25.22/9.05 1861[label="FiniteMap.sizeFM (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1861 -> 2093[label="",style="solid", color="black", weight=3]; 25.22/9.05 2241[label="Pos (primPlusNat xuu2090 xuu2080)",fontsize=16,color="green",shape="box"];2241 -> 2547[label="",style="dashed", color="green", weight=3]; 25.22/9.05 2242[label="primMinusNat xuu2090 xuu2080",fontsize=16,color="burlywood",shape="triangle"];4104[label="xuu2090/Succ xuu20900",fontsize=10,color="white",style="solid",shape="box"];2242 -> 4104[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4104 -> 2548[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4105[label="xuu2090/Zero",fontsize=10,color="white",style="solid",shape="box"];2242 -> 4105[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4105 -> 2549[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 2243 -> 2242[label="",style="dashed", color="red", weight=0]; 25.22/9.05 2243[label="primMinusNat xuu2080 xuu2090",fontsize=16,color="magenta"];2243 -> 2550[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 2243 -> 2551[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 2244[label="Neg (primPlusNat xuu2090 xuu2080)",fontsize=16,color="green",shape="box"];2244 -> 2552[label="",style="dashed", color="green", weight=3]; 25.22/9.05 3719[label="FiniteMap.Branch xuu305 xuu306 (FiniteMap.mkBranchUnbox xuu307 xuu308 xuu305 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu307 xuu308 xuu305 + FiniteMap.mkBranchRight_size xuu307 xuu308 xuu305)) xuu307 xuu308",fontsize=16,color="green",shape="box"];3719 -> 3725[label="",style="dashed", color="green", weight=3]; 25.22/9.05 1809 -> 1806[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1809[label="FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="magenta"];1810[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];1810 -> 1859[label="",style="solid", color="black", weight=3]; 25.22/9.05 1812 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1812[label="compare xuu199 xuu198 == GT",fontsize=16,color="magenta"];1812 -> 1862[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1812 -> 1863[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1187 -> 1794[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1187[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 (FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34)",fontsize=16,color="magenta"];1187 -> 1795[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1188[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu26 (xuu300 : xuu301) xuu31 xuu34 xuu26 xuu34 xuu34",fontsize=16,color="burlywood",shape="box"];4106[label="xuu34/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4106[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4106 -> 1395[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4107[label="xuu34/FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344",fontsize=10,color="white",style="solid",shape="box"];1188 -> 4107[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4107 -> 1396[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1294[label="xuu40002",fontsize=16,color="green",shape="box"];1295[label="xuu3002",fontsize=16,color="green",shape="box"];1296[label="xuu40002",fontsize=16,color="green",shape="box"];1297[label="xuu3002",fontsize=16,color="green",shape="box"];1298[label="xuu40002",fontsize=16,color="green",shape="box"];1299[label="xuu3002",fontsize=16,color="green",shape="box"];1300[label="xuu40002",fontsize=16,color="green",shape="box"];1301[label="xuu3002",fontsize=16,color="green",shape="box"];1302[label="xuu40002",fontsize=16,color="green",shape="box"];1303[label="xuu3002",fontsize=16,color="green",shape="box"];1304[label="xuu40002",fontsize=16,color="green",shape="box"];1305[label="xuu3002",fontsize=16,color="green",shape="box"];1306[label="xuu40002",fontsize=16,color="green",shape="box"];1307[label="xuu3002",fontsize=16,color="green",shape="box"];1308[label="xuu40002",fontsize=16,color="green",shape="box"];1309[label="xuu3002",fontsize=16,color="green",shape="box"];1310[label="xuu40002",fontsize=16,color="green",shape="box"];1311[label="xuu3002",fontsize=16,color="green",shape="box"];1312[label="xuu40002",fontsize=16,color="green",shape="box"];1313[label="xuu3002",fontsize=16,color="green",shape="box"];1314[label="xuu40002",fontsize=16,color="green",shape="box"];1315[label="xuu3002",fontsize=16,color="green",shape="box"];1316[label="xuu40002",fontsize=16,color="green",shape="box"];1317[label="xuu3002",fontsize=16,color="green",shape="box"];1318[label="xuu40002",fontsize=16,color="green",shape="box"];1319[label="xuu3002",fontsize=16,color="green",shape="box"];1320[label="xuu40002",fontsize=16,color="green",shape="box"];1321[label="xuu3002",fontsize=16,color="green",shape="box"];1322[label="xuu40001",fontsize=16,color="green",shape="box"];1323[label="xuu3001",fontsize=16,color="green",shape="box"];1324[label="xuu40001",fontsize=16,color="green",shape="box"];1325[label="xuu3001",fontsize=16,color="green",shape="box"];1326[label="xuu40001",fontsize=16,color="green",shape="box"];1327[label="xuu3001",fontsize=16,color="green",shape="box"];1328[label="xuu40001",fontsize=16,color="green",shape="box"];1329[label="xuu3001",fontsize=16,color="green",shape="box"];1330[label="xuu40001",fontsize=16,color="green",shape="box"];1331[label="xuu3001",fontsize=16,color="green",shape="box"];1332[label="xuu40001",fontsize=16,color="green",shape="box"];1333[label="xuu3001",fontsize=16,color="green",shape="box"];1334[label="xuu40001",fontsize=16,color="green",shape="box"];1335[label="xuu3001",fontsize=16,color="green",shape="box"];1336[label="xuu40001",fontsize=16,color="green",shape="box"];1337[label="xuu3001",fontsize=16,color="green",shape="box"];1338[label="xuu40001",fontsize=16,color="green",shape="box"];1339[label="xuu3001",fontsize=16,color="green",shape="box"];1340[label="xuu40001",fontsize=16,color="green",shape="box"];1341[label="xuu3001",fontsize=16,color="green",shape="box"];1342[label="xuu40001",fontsize=16,color="green",shape="box"];1343[label="xuu3001",fontsize=16,color="green",shape="box"];1344[label="xuu40001",fontsize=16,color="green",shape="box"];1345[label="xuu3001",fontsize=16,color="green",shape="box"];1346[label="xuu40001",fontsize=16,color="green",shape="box"];1347[label="xuu3001",fontsize=16,color="green",shape="box"];1348[label="xuu40001",fontsize=16,color="green",shape="box"];1349[label="xuu3001",fontsize=16,color="green",shape="box"];1400[label="xuu103",fontsize=16,color="green",shape="box"];1401[label="xuu98",fontsize=16,color="green",shape="box"];1402[label="xuu99",fontsize=16,color="green",shape="box"];1403[label="xuu98 < xuu101",fontsize=16,color="blue",shape="box"];4108[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4108[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4108 -> 1416[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4109[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4109[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4109 -> 1417[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4110[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4110[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4110 -> 1418[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4111[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4111[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4111 -> 1419[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4112[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4112[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4112 -> 1420[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4113[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4113[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4113 -> 1421[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4114[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4114[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4114 -> 1422[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4115[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4115[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4115 -> 1423[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4116[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4116[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4116 -> 1424[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4117[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4117[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4117 -> 1425[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4118[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4118[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4118 -> 1426[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4119[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4119[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4119 -> 1427[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4120[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4120[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4120 -> 1428[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4121[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1403 -> 4121[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4121 -> 1429[label="",style="solid", color="blue", weight=3]; 25.22/9.05 1404[label="xuu101",fontsize=16,color="green",shape="box"];1405[label="xuu100",fontsize=16,color="green",shape="box"];1406[label="xuu102",fontsize=16,color="green",shape="box"];1407 -> 1120[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1407[label="xuu98 == xuu101 && (xuu99 < xuu102 || xuu99 == xuu102 && xuu100 <= xuu103)",fontsize=16,color="magenta"];1407 -> 1430[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1407 -> 1431[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1399[label="compare1 (xuu170,xuu171,xuu172) (xuu173,xuu174,xuu175) (xuu176 || xuu177)",fontsize=16,color="burlywood",shape="triangle"];4122[label="xuu176/False",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4122[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4122 -> 1432[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4123[label="xuu176/True",fontsize=10,color="white",style="solid",shape="box"];1399 -> 4123[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4123 -> 1433[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 858[label="(xuu400000,xuu400001) == (xuu30000,xuu30001)",fontsize=16,color="black",shape="box"];858 -> 1016[label="",style="solid", color="black", weight=3]; 25.22/9.05 859[label="(xuu400000,xuu400001,xuu400002) == (xuu30000,xuu30001,xuu30002)",fontsize=16,color="black",shape="box"];859 -> 1017[label="",style="solid", color="black", weight=3]; 25.22/9.05 860[label="False == False",fontsize=16,color="black",shape="box"];860 -> 1018[label="",style="solid", color="black", weight=3]; 25.22/9.05 861[label="False == True",fontsize=16,color="black",shape="box"];861 -> 1019[label="",style="solid", color="black", weight=3]; 25.22/9.05 862[label="True == False",fontsize=16,color="black",shape="box"];862 -> 1020[label="",style="solid", color="black", weight=3]; 25.22/9.05 863[label="True == True",fontsize=16,color="black",shape="box"];863 -> 1021[label="",style="solid", color="black", weight=3]; 25.22/9.05 864[label="primEqInt (Pos xuu400000) xuu3000",fontsize=16,color="burlywood",shape="box"];4124[label="xuu400000/Succ xuu4000000",fontsize=10,color="white",style="solid",shape="box"];864 -> 4124[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4124 -> 1022[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4125[label="xuu400000/Zero",fontsize=10,color="white",style="solid",shape="box"];864 -> 4125[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4125 -> 1023[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 865[label="primEqInt (Neg xuu400000) xuu3000",fontsize=16,color="burlywood",shape="box"];4126[label="xuu400000/Succ xuu4000000",fontsize=10,color="white",style="solid",shape="box"];865 -> 4126[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4126 -> 1024[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4127[label="xuu400000/Zero",fontsize=10,color="white",style="solid",shape="box"];865 -> 4127[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4127 -> 1025[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 866[label="Left xuu400000 == Left xuu30000",fontsize=16,color="black",shape="box"];866 -> 1026[label="",style="solid", color="black", weight=3]; 25.22/9.05 867[label="Left xuu400000 == Right xuu30000",fontsize=16,color="black",shape="box"];867 -> 1027[label="",style="solid", color="black", weight=3]; 25.22/9.05 868[label="Right xuu400000 == Left xuu30000",fontsize=16,color="black",shape="box"];868 -> 1028[label="",style="solid", color="black", weight=3]; 25.22/9.05 869[label="Right xuu400000 == Right xuu30000",fontsize=16,color="black",shape="box"];869 -> 1029[label="",style="solid", color="black", weight=3]; 25.22/9.05 870[label="primEqChar (Char xuu400000) xuu3000",fontsize=16,color="burlywood",shape="box"];4128[label="xuu3000/Char xuu30000",fontsize=10,color="white",style="solid",shape="box"];870 -> 4128[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4128 -> 1030[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 871[label="LT == LT",fontsize=16,color="black",shape="box"];871 -> 1031[label="",style="solid", color="black", weight=3]; 25.22/9.05 872[label="LT == EQ",fontsize=16,color="black",shape="box"];872 -> 1032[label="",style="solid", color="black", weight=3]; 25.22/9.05 873[label="LT == GT",fontsize=16,color="black",shape="box"];873 -> 1033[label="",style="solid", color="black", weight=3]; 25.22/9.05 874[label="EQ == LT",fontsize=16,color="black",shape="box"];874 -> 1034[label="",style="solid", color="black", weight=3]; 25.22/9.05 875[label="EQ == EQ",fontsize=16,color="black",shape="box"];875 -> 1035[label="",style="solid", color="black", weight=3]; 25.22/9.05 876[label="EQ == GT",fontsize=16,color="black",shape="box"];876 -> 1036[label="",style="solid", color="black", weight=3]; 25.22/9.05 877[label="GT == LT",fontsize=16,color="black",shape="box"];877 -> 1037[label="",style="solid", color="black", weight=3]; 25.22/9.05 878[label="GT == EQ",fontsize=16,color="black",shape="box"];878 -> 1038[label="",style="solid", color="black", weight=3]; 25.22/9.05 879[label="GT == GT",fontsize=16,color="black",shape="box"];879 -> 1039[label="",style="solid", color="black", weight=3]; 25.22/9.05 880[label="primEqFloat (Float xuu400000 xuu400001) xuu3000",fontsize=16,color="burlywood",shape="box"];4129[label="xuu3000/Float xuu30000 xuu30001",fontsize=10,color="white",style="solid",shape="box"];880 -> 4129[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4129 -> 1040[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 881[label="xuu400000 :% xuu400001 == xuu30000 :% xuu30001",fontsize=16,color="black",shape="box"];881 -> 1041[label="",style="solid", color="black", weight=3]; 25.22/9.05 882[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];882 -> 1042[label="",style="solid", color="black", weight=3]; 25.22/9.05 883[label="Nothing == Just xuu30000",fontsize=16,color="black",shape="box"];883 -> 1043[label="",style="solid", color="black", weight=3]; 25.22/9.05 884[label="Just xuu400000 == Nothing",fontsize=16,color="black",shape="box"];884 -> 1044[label="",style="solid", color="black", weight=3]; 25.22/9.05 885[label="Just xuu400000 == Just xuu30000",fontsize=16,color="black",shape="box"];885 -> 1045[label="",style="solid", color="black", weight=3]; 25.22/9.05 886[label="() == ()",fontsize=16,color="black",shape="box"];886 -> 1046[label="",style="solid", color="black", weight=3]; 25.22/9.05 887[label="Integer xuu400000 == Integer xuu30000",fontsize=16,color="black",shape="box"];887 -> 1047[label="",style="solid", color="black", weight=3]; 25.22/9.05 888[label="xuu400000 : xuu400001 == xuu30000 : xuu30001",fontsize=16,color="black",shape="box"];888 -> 1048[label="",style="solid", color="black", weight=3]; 25.22/9.05 889[label="xuu400000 : xuu400001 == []",fontsize=16,color="black",shape="box"];889 -> 1049[label="",style="solid", color="black", weight=3]; 25.22/9.05 890[label="[] == xuu30000 : xuu30001",fontsize=16,color="black",shape="box"];890 -> 1050[label="",style="solid", color="black", weight=3]; 25.22/9.05 891[label="[] == []",fontsize=16,color="black",shape="box"];891 -> 1051[label="",style="solid", color="black", weight=3]; 25.22/9.05 892[label="primEqDouble (Double xuu400000 xuu400001) xuu3000",fontsize=16,color="burlywood",shape="box"];4130[label="xuu3000/Double xuu30000 xuu30001",fontsize=10,color="white",style="solid",shape="box"];892 -> 4130[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4130 -> 1052[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1283[label="xuu59 <= xuu60",fontsize=16,color="blue",shape="box"];4131[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1283 -> 4131[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4131 -> 1434[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4132[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1283 -> 4132[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4132 -> 1435[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4133[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1283 -> 4133[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4133 -> 1436[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4134[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1283 -> 4134[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4134 -> 1437[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4135[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1283 -> 4135[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4135 -> 1438[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4136[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1283 -> 4136[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4136 -> 1439[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4137[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1283 -> 4137[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4137 -> 1440[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4138[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1283 -> 4138[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4138 -> 1441[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4139[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1283 -> 4139[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4139 -> 1442[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4140[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1283 -> 4140[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4140 -> 1443[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4141[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1283 -> 4141[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4141 -> 1444[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4142[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1283 -> 4142[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4142 -> 1445[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4143[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1283 -> 4143[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4143 -> 1446[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4144[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1283 -> 4144[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4144 -> 1447[label="",style="solid", color="blue", weight=3]; 25.22/9.05 1284[label="compare1 (Left xuu137) (Left xuu138) False",fontsize=16,color="black",shape="box"];1284 -> 1448[label="",style="solid", color="black", weight=3]; 25.22/9.05 1285[label="compare1 (Left xuu137) (Left xuu138) True",fontsize=16,color="black",shape="box"];1285 -> 1449[label="",style="solid", color="black", weight=3]; 25.22/9.05 1286[label="GT",fontsize=16,color="green",shape="box"];1352[label="xuu66 <= xuu67",fontsize=16,color="blue",shape="box"];4145[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 4145[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4145 -> 1450[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4146[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 4146[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4146 -> 1451[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4147[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 4147[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4147 -> 1452[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4148[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 4148[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4148 -> 1453[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4149[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 4149[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4149 -> 1454[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4150[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 4150[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4150 -> 1455[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4151[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 4151[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4151 -> 1456[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4152[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 4152[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4152 -> 1457[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4153[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 4153[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4153 -> 1458[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4154[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 4154[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4154 -> 1459[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4155[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 4155[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4155 -> 1460[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4156[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 4156[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4156 -> 1461[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4157[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 4157[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4157 -> 1462[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4158[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1352 -> 4158[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4158 -> 1463[label="",style="solid", color="blue", weight=3]; 25.22/9.05 1353[label="compare1 (Right xuu144) (Right xuu145) False",fontsize=16,color="black",shape="box"];1353 -> 1464[label="",style="solid", color="black", weight=3]; 25.22/9.05 1354[label="compare1 (Right xuu144) (Right xuu145) True",fontsize=16,color="black",shape="box"];1354 -> 1465[label="",style="solid", color="black", weight=3]; 25.22/9.05 1355[label="primMulNat xuu30000 xuu400010",fontsize=16,color="burlywood",shape="triangle"];4159[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1355 -> 4159[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4159 -> 1466[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4160[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1355 -> 4160[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4160 -> 1467[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1356 -> 1355[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1356[label="primMulNat xuu30000 xuu400010",fontsize=16,color="magenta"];1356 -> 1468[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1357 -> 1355[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1357[label="primMulNat xuu30000 xuu400010",fontsize=16,color="magenta"];1357 -> 1469[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1358 -> 1355[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1358[label="primMulNat xuu30000 xuu400010",fontsize=16,color="magenta"];1358 -> 1470[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1358 -> 1471[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1359[label="xuu400010",fontsize=16,color="green",shape="box"];1360[label="xuu30000",fontsize=16,color="green",shape="box"];1361[label="GT",fontsize=16,color="green",shape="box"];1362[label="GT",fontsize=16,color="green",shape="box"];1370[label="xuu73 <= xuu74",fontsize=16,color="blue",shape="box"];4161[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4161[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4161 -> 1472[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4162[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4162[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4162 -> 1473[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4163[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4163[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4163 -> 1474[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4164[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4164[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4164 -> 1475[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4165[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4165[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4165 -> 1476[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4166[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4166[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4166 -> 1477[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4167[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4167[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4167 -> 1478[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4168[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4168[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4168 -> 1479[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4169[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4169[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4169 -> 1480[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4170[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4170[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4170 -> 1481[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4171[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4171[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4171 -> 1482[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4172[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4172[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4172 -> 1483[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4173[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4173[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4173 -> 1484[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4174[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1370 -> 4174[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4174 -> 1485[label="",style="solid", color="blue", weight=3]; 25.22/9.05 1371[label="compare1 (Just xuu153) (Just xuu154) False",fontsize=16,color="black",shape="box"];1371 -> 1486[label="",style="solid", color="black", weight=3]; 25.22/9.05 1372[label="compare1 (Just xuu153) (Just xuu154) True",fontsize=16,color="black",shape="box"];1372 -> 1487[label="",style="solid", color="black", weight=3]; 25.22/9.05 1491[label="xuu113",fontsize=16,color="green",shape="box"];1492[label="xuu114",fontsize=16,color="green",shape="box"];1493 -> 1120[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1493[label="xuu111 == xuu113 && xuu112 <= xuu114",fontsize=16,color="magenta"];1493 -> 1503[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1493 -> 1504[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1494[label="xuu111 < xuu113",fontsize=16,color="blue",shape="box"];4175[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1494 -> 4175[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4175 -> 1505[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4176[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1494 -> 4176[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4176 -> 1506[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4177[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1494 -> 4177[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4177 -> 1507[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4178[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1494 -> 4178[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4178 -> 1508[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4179[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1494 -> 4179[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4179 -> 1509[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4180[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1494 -> 4180[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4180 -> 1510[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4181[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1494 -> 4181[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4181 -> 1511[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4182[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1494 -> 4182[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4182 -> 1512[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4183[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1494 -> 4183[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4183 -> 1513[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4184[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1494 -> 4184[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4184 -> 1514[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4185[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1494 -> 4185[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4185 -> 1515[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4186[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1494 -> 4186[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4186 -> 1516[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4187[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1494 -> 4187[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4187 -> 1517[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4188[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1494 -> 4188[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4188 -> 1518[label="",style="solid", color="blue", weight=3]; 25.22/9.05 1495[label="xuu111",fontsize=16,color="green",shape="box"];1496[label="xuu112",fontsize=16,color="green",shape="box"];1490[label="compare1 (xuu185,xuu186) (xuu187,xuu188) (xuu189 || xuu190)",fontsize=16,color="burlywood",shape="triangle"];4189[label="xuu189/False",fontsize=10,color="white",style="solid",shape="box"];1490 -> 4189[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4189 -> 1519[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4190[label="xuu189/True",fontsize=10,color="white",style="solid",shape="box"];1490 -> 4190[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4190 -> 1520[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1375[label="GT",fontsize=16,color="green",shape="box"];1376[label="GT",fontsize=16,color="green",shape="box"];1377[label="GT",fontsize=16,color="green",shape="box"];1378[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];1379[label="FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38 + FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38",fontsize=16,color="black",shape="box"];1379 -> 1521[label="",style="solid", color="black", weight=3]; 25.22/9.05 1772 -> 1798[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1772[label="FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38",fontsize=16,color="magenta"];1772 -> 1803[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1772 -> 1804[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1771[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 xuu192",fontsize=16,color="burlywood",shape="triangle"];4191[label="xuu192/False",fontsize=10,color="white",style="solid",shape="box"];1771 -> 4191[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4191 -> 1777[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4192[label="xuu192/True",fontsize=10,color="white",style="solid",shape="box"];1771 -> 4192[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4192 -> 1778[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 3501[label="xuu31",fontsize=16,color="green",shape="box"];3502[label="xuu33",fontsize=16,color="green",shape="box"];3503[label="xuu38",fontsize=16,color="green",shape="box"];3504[label="Zero",fontsize=16,color="green",shape="box"];3505[label="[]",fontsize=16,color="green",shape="box"];2092[label="Pos Zero",fontsize=16,color="green",shape="box"];2093[label="xuu342",fontsize=16,color="green",shape="box"];2547[label="primPlusNat xuu2090 xuu2080",fontsize=16,color="burlywood",shape="triangle"];4193[label="xuu2090/Succ xuu20900",fontsize=10,color="white",style="solid",shape="box"];2547 -> 4193[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4193 -> 2695[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4194[label="xuu2090/Zero",fontsize=10,color="white",style="solid",shape="box"];2547 -> 4194[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4194 -> 2696[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 2548[label="primMinusNat (Succ xuu20900) xuu2080",fontsize=16,color="burlywood",shape="box"];4195[label="xuu2080/Succ xuu20800",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4195[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4195 -> 2697[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4196[label="xuu2080/Zero",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4196[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4196 -> 2698[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 2549[label="primMinusNat Zero xuu2080",fontsize=16,color="burlywood",shape="box"];4197[label="xuu2080/Succ xuu20800",fontsize=10,color="white",style="solid",shape="box"];2549 -> 4197[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4197 -> 2699[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4198[label="xuu2080/Zero",fontsize=10,color="white",style="solid",shape="box"];2549 -> 4198[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4198 -> 2700[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 2550[label="xuu2090",fontsize=16,color="green",shape="box"];2551[label="xuu2080",fontsize=16,color="green",shape="box"];2552 -> 2547[label="",style="dashed", color="red", weight=0]; 25.22/9.05 2552[label="primPlusNat xuu2090 xuu2080",fontsize=16,color="magenta"];2552 -> 2701[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 2552 -> 2702[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 3725[label="FiniteMap.mkBranchUnbox xuu307 xuu308 xuu305 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu307 xuu308 xuu305 + FiniteMap.mkBranchRight_size xuu307 xuu308 xuu305)",fontsize=16,color="black",shape="box"];3725 -> 3736[label="",style="solid", color="black", weight=3]; 25.22/9.05 1859[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1862 -> 166[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1862[label="compare xuu199 xuu198",fontsize=16,color="magenta"];1862 -> 2094[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1862 -> 2095[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1863[label="GT",fontsize=16,color="green",shape="box"];1795 -> 1798[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1795[label="FiniteMap.mkBalBranch6Size_l xuu26 (xuu300 : xuu301) xuu31 xuu34 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="magenta"];1795 -> 1805[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1795 -> 1806[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1794[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 xuu196",fontsize=16,color="burlywood",shape="triangle"];4199[label="xuu196/False",fontsize=10,color="white",style="solid",shape="box"];1794 -> 4199[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4199 -> 1813[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4200[label="xuu196/True",fontsize=10,color="white",style="solid",shape="box"];1794 -> 4200[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4200 -> 1814[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1395[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu26 (xuu300 : xuu301) xuu31 FiniteMap.EmptyFM xuu26 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1395 -> 1540[label="",style="solid", color="black", weight=3]; 25.22/9.05 1396[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1396 -> 1541[label="",style="solid", color="black", weight=3]; 25.22/9.05 1416[label="xuu98 < xuu101",fontsize=16,color="black",shape="triangle"];1416 -> 1542[label="",style="solid", color="black", weight=3]; 25.22/9.05 1417[label="xuu98 < xuu101",fontsize=16,color="black",shape="triangle"];1417 -> 1543[label="",style="solid", color="black", weight=3]; 25.22/9.05 1418[label="xuu98 < xuu101",fontsize=16,color="black",shape="triangle"];1418 -> 1544[label="",style="solid", color="black", weight=3]; 25.22/9.05 1419[label="xuu98 < xuu101",fontsize=16,color="black",shape="triangle"];1419 -> 1545[label="",style="solid", color="black", weight=3]; 25.22/9.05 1420[label="xuu98 < xuu101",fontsize=16,color="black",shape="triangle"];1420 -> 1546[label="",style="solid", color="black", weight=3]; 25.22/9.05 1421[label="xuu98 < xuu101",fontsize=16,color="black",shape="triangle"];1421 -> 1547[label="",style="solid", color="black", weight=3]; 25.22/9.05 1422[label="xuu98 < xuu101",fontsize=16,color="black",shape="triangle"];1422 -> 1548[label="",style="solid", color="black", weight=3]; 25.22/9.05 1423[label="xuu98 < xuu101",fontsize=16,color="black",shape="triangle"];1423 -> 1549[label="",style="solid", color="black", weight=3]; 25.22/9.05 1424[label="xuu98 < xuu101",fontsize=16,color="black",shape="triangle"];1424 -> 1550[label="",style="solid", color="black", weight=3]; 25.22/9.05 1425[label="xuu98 < xuu101",fontsize=16,color="black",shape="triangle"];1425 -> 1551[label="",style="solid", color="black", weight=3]; 25.22/9.05 1426[label="xuu98 < xuu101",fontsize=16,color="black",shape="triangle"];1426 -> 1552[label="",style="solid", color="black", weight=3]; 25.22/9.05 1427[label="xuu98 < xuu101",fontsize=16,color="black",shape="triangle"];1427 -> 1553[label="",style="solid", color="black", weight=3]; 25.22/9.05 1428[label="xuu98 < xuu101",fontsize=16,color="black",shape="triangle"];1428 -> 1554[label="",style="solid", color="black", weight=3]; 25.22/9.05 1429[label="xuu98 < xuu101",fontsize=16,color="black",shape="triangle"];1429 -> 1555[label="",style="solid", color="black", weight=3]; 25.22/9.05 1430 -> 1854[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1430[label="xuu99 < xuu102 || xuu99 == xuu102 && xuu100 <= xuu103",fontsize=16,color="magenta"];1430 -> 1855[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1430 -> 1856[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1431[label="xuu98 == xuu101",fontsize=16,color="blue",shape="box"];4201[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 4201[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4201 -> 1558[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4202[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 4202[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4202 -> 1559[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4203[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 4203[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4203 -> 1560[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4204[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 4204[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4204 -> 1561[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4205[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 4205[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4205 -> 1562[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4206[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 4206[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4206 -> 1563[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4207[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 4207[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4207 -> 1564[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4208[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 4208[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4208 -> 1565[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4209[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 4209[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4209 -> 1566[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4210[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 4210[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4210 -> 1567[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4211[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 4211[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4211 -> 1568[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4212[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 4212[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4212 -> 1569[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4213[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 4213[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4213 -> 1570[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4214[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 4214[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4214 -> 1571[label="",style="solid", color="blue", weight=3]; 25.22/9.05 1432[label="compare1 (xuu170,xuu171,xuu172) (xuu173,xuu174,xuu175) (False || xuu177)",fontsize=16,color="black",shape="box"];1432 -> 1572[label="",style="solid", color="black", weight=3]; 25.22/9.05 1433[label="compare1 (xuu170,xuu171,xuu172) (xuu173,xuu174,xuu175) (True || xuu177)",fontsize=16,color="black",shape="box"];1433 -> 1573[label="",style="solid", color="black", weight=3]; 25.22/9.05 1016 -> 1120[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1016[label="xuu400000 == xuu30000 && xuu400001 == xuu30001",fontsize=16,color="magenta"];1016 -> 1129[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1016 -> 1130[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1017 -> 1120[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1017[label="xuu400000 == xuu30000 && xuu400001 == xuu30001 && xuu400002 == xuu30002",fontsize=16,color="magenta"];1017 -> 1131[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1017 -> 1132[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1018[label="True",fontsize=16,color="green",shape="box"];1019[label="False",fontsize=16,color="green",shape="box"];1020[label="False",fontsize=16,color="green",shape="box"];1021[label="True",fontsize=16,color="green",shape="box"];1022[label="primEqInt (Pos (Succ xuu4000000)) xuu3000",fontsize=16,color="burlywood",shape="box"];4215[label="xuu3000/Pos xuu30000",fontsize=10,color="white",style="solid",shape="box"];1022 -> 4215[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4215 -> 1574[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4216[label="xuu3000/Neg xuu30000",fontsize=10,color="white",style="solid",shape="box"];1022 -> 4216[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4216 -> 1575[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1023[label="primEqInt (Pos Zero) xuu3000",fontsize=16,color="burlywood",shape="box"];4217[label="xuu3000/Pos xuu30000",fontsize=10,color="white",style="solid",shape="box"];1023 -> 4217[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4217 -> 1576[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4218[label="xuu3000/Neg xuu30000",fontsize=10,color="white",style="solid",shape="box"];1023 -> 4218[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4218 -> 1577[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1024[label="primEqInt (Neg (Succ xuu4000000)) xuu3000",fontsize=16,color="burlywood",shape="box"];4219[label="xuu3000/Pos xuu30000",fontsize=10,color="white",style="solid",shape="box"];1024 -> 4219[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4219 -> 1578[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4220[label="xuu3000/Neg xuu30000",fontsize=10,color="white",style="solid",shape="box"];1024 -> 4220[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4220 -> 1579[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1025[label="primEqInt (Neg Zero) xuu3000",fontsize=16,color="burlywood",shape="box"];4221[label="xuu3000/Pos xuu30000",fontsize=10,color="white",style="solid",shape="box"];1025 -> 4221[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4221 -> 1580[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4222[label="xuu3000/Neg xuu30000",fontsize=10,color="white",style="solid",shape="box"];1025 -> 4222[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4222 -> 1581[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1026[label="xuu400000 == xuu30000",fontsize=16,color="blue",shape="box"];4223[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 4223[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4223 -> 1582[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4224[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 4224[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4224 -> 1583[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4225[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 4225[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4225 -> 1584[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4226[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 4226[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4226 -> 1585[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4227[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 4227[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4227 -> 1586[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4228[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 4228[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4228 -> 1587[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4229[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 4229[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4229 -> 1588[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4230[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 4230[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4230 -> 1589[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4231[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 4231[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4231 -> 1590[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4232[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 4232[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4232 -> 1591[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4233[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 4233[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4233 -> 1592[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4234[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 4234[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4234 -> 1593[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4235[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 4235[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4235 -> 1594[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4236[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1026 -> 4236[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4236 -> 1595[label="",style="solid", color="blue", weight=3]; 25.22/9.05 1027[label="False",fontsize=16,color="green",shape="box"];1028[label="False",fontsize=16,color="green",shape="box"];1029[label="xuu400000 == xuu30000",fontsize=16,color="blue",shape="box"];4237[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4237[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4237 -> 1596[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4238[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4238[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4238 -> 1597[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4239[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4239[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4239 -> 1598[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4240[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4240[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4240 -> 1599[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4241[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4241[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4241 -> 1600[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4242[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4242[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4242 -> 1601[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4243[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4243[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4243 -> 1602[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4244[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4244[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4244 -> 1603[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4245[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4245[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4245 -> 1604[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4246[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4246[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4246 -> 1605[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4247[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4247[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4247 -> 1606[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4248[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4248[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4248 -> 1607[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4249[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4249[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4249 -> 1608[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4250[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1029 -> 4250[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4250 -> 1609[label="",style="solid", color="blue", weight=3]; 25.22/9.05 1030[label="primEqChar (Char xuu400000) (Char xuu30000)",fontsize=16,color="black",shape="box"];1030 -> 1610[label="",style="solid", color="black", weight=3]; 25.22/9.05 1031[label="True",fontsize=16,color="green",shape="box"];1032[label="False",fontsize=16,color="green",shape="box"];1033[label="False",fontsize=16,color="green",shape="box"];1034[label="False",fontsize=16,color="green",shape="box"];1035[label="True",fontsize=16,color="green",shape="box"];1036[label="False",fontsize=16,color="green",shape="box"];1037[label="False",fontsize=16,color="green",shape="box"];1038[label="False",fontsize=16,color="green",shape="box"];1039[label="True",fontsize=16,color="green",shape="box"];1040[label="primEqFloat (Float xuu400000 xuu400001) (Float xuu30000 xuu30001)",fontsize=16,color="black",shape="box"];1040 -> 1611[label="",style="solid", color="black", weight=3]; 25.22/9.05 1041 -> 1120[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1041[label="xuu400000 == xuu30000 && xuu400001 == xuu30001",fontsize=16,color="magenta"];1041 -> 1133[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1041 -> 1134[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1042[label="True",fontsize=16,color="green",shape="box"];1043[label="False",fontsize=16,color="green",shape="box"];1044[label="False",fontsize=16,color="green",shape="box"];1045[label="xuu400000 == xuu30000",fontsize=16,color="blue",shape="box"];4251[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4251[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4251 -> 1612[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4252[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4252[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4252 -> 1613[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4253[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4253[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4253 -> 1614[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4254[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4254[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4254 -> 1615[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4255[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4255[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4255 -> 1616[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4256[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4256[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4256 -> 1617[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4257[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4257[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4257 -> 1618[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4258[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4258[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4258 -> 1619[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4259[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4259[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4259 -> 1620[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4260[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4260[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4260 -> 1621[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4261[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4261[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4261 -> 1622[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4262[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4262[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4262 -> 1623[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4263[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4263[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4263 -> 1624[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4264[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1045 -> 4264[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4264 -> 1625[label="",style="solid", color="blue", weight=3]; 25.22/9.05 1046[label="True",fontsize=16,color="green",shape="box"];1047 -> 656[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1047[label="primEqInt xuu400000 xuu30000",fontsize=16,color="magenta"];1047 -> 1626[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1047 -> 1627[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1048 -> 1120[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1048[label="xuu400000 == xuu30000 && xuu400001 == xuu30001",fontsize=16,color="magenta"];1048 -> 1135[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1048 -> 1136[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1049[label="False",fontsize=16,color="green",shape="box"];1050[label="False",fontsize=16,color="green",shape="box"];1051[label="True",fontsize=16,color="green",shape="box"];1052[label="primEqDouble (Double xuu400000 xuu400001) (Double xuu30000 xuu30001)",fontsize=16,color="black",shape="box"];1052 -> 1628[label="",style="solid", color="black", weight=3]; 25.22/9.05 1434[label="xuu59 <= xuu60",fontsize=16,color="black",shape="triangle"];1434 -> 1629[label="",style="solid", color="black", weight=3]; 25.22/9.05 1435[label="xuu59 <= xuu60",fontsize=16,color="burlywood",shape="triangle"];4265[label="xuu59/(xuu590,xuu591,xuu592)",fontsize=10,color="white",style="solid",shape="box"];1435 -> 4265[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4265 -> 1630[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1436[label="xuu59 <= xuu60",fontsize=16,color="black",shape="triangle"];1436 -> 1631[label="",style="solid", color="black", weight=3]; 25.22/9.05 1437[label="xuu59 <= xuu60",fontsize=16,color="burlywood",shape="triangle"];4266[label="xuu59/Left xuu590",fontsize=10,color="white",style="solid",shape="box"];1437 -> 4266[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4266 -> 1632[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4267[label="xuu59/Right xuu590",fontsize=10,color="white",style="solid",shape="box"];1437 -> 4267[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4267 -> 1633[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1438[label="xuu59 <= xuu60",fontsize=16,color="black",shape="triangle"];1438 -> 1634[label="",style="solid", color="black", weight=3]; 25.22/9.05 1439[label="xuu59 <= xuu60",fontsize=16,color="black",shape="triangle"];1439 -> 1635[label="",style="solid", color="black", weight=3]; 25.22/9.05 1440[label="xuu59 <= xuu60",fontsize=16,color="black",shape="triangle"];1440 -> 1636[label="",style="solid", color="black", weight=3]; 25.22/9.05 1441[label="xuu59 <= xuu60",fontsize=16,color="burlywood",shape="triangle"];4268[label="xuu59/False",fontsize=10,color="white",style="solid",shape="box"];1441 -> 4268[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4268 -> 1637[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4269[label="xuu59/True",fontsize=10,color="white",style="solid",shape="box"];1441 -> 4269[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4269 -> 1638[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1442[label="xuu59 <= xuu60",fontsize=16,color="burlywood",shape="triangle"];4270[label="xuu59/Nothing",fontsize=10,color="white",style="solid",shape="box"];1442 -> 4270[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4270 -> 1639[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4271[label="xuu59/Just xuu590",fontsize=10,color="white",style="solid",shape="box"];1442 -> 4271[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4271 -> 1640[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1443[label="xuu59 <= xuu60",fontsize=16,color="burlywood",shape="triangle"];4272[label="xuu59/(xuu590,xuu591)",fontsize=10,color="white",style="solid",shape="box"];1443 -> 4272[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4272 -> 1641[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1444[label="xuu59 <= xuu60",fontsize=16,color="black",shape="triangle"];1444 -> 1642[label="",style="solid", color="black", weight=3]; 25.22/9.05 1445[label="xuu59 <= xuu60",fontsize=16,color="burlywood",shape="triangle"];4273[label="xuu59/LT",fontsize=10,color="white",style="solid",shape="box"];1445 -> 4273[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4273 -> 1643[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4274[label="xuu59/EQ",fontsize=10,color="white",style="solid",shape="box"];1445 -> 4274[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4274 -> 1644[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4275[label="xuu59/GT",fontsize=10,color="white",style="solid",shape="box"];1445 -> 4275[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4275 -> 1645[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1446[label="xuu59 <= xuu60",fontsize=16,color="black",shape="triangle"];1446 -> 1646[label="",style="solid", color="black", weight=3]; 25.22/9.05 1447[label="xuu59 <= xuu60",fontsize=16,color="black",shape="triangle"];1447 -> 1647[label="",style="solid", color="black", weight=3]; 25.22/9.05 1448[label="compare0 (Left xuu137) (Left xuu138) otherwise",fontsize=16,color="black",shape="box"];1448 -> 1648[label="",style="solid", color="black", weight=3]; 25.22/9.05 1449[label="LT",fontsize=16,color="green",shape="box"];1450 -> 1434[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1450[label="xuu66 <= xuu67",fontsize=16,color="magenta"];1450 -> 1649[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1450 -> 1650[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1451 -> 1435[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1451[label="xuu66 <= xuu67",fontsize=16,color="magenta"];1451 -> 1651[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1451 -> 1652[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1452 -> 1436[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1452[label="xuu66 <= xuu67",fontsize=16,color="magenta"];1452 -> 1653[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1452 -> 1654[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1453 -> 1437[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1453[label="xuu66 <= xuu67",fontsize=16,color="magenta"];1453 -> 1655[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1453 -> 1656[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1454 -> 1438[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1454[label="xuu66 <= xuu67",fontsize=16,color="magenta"];1454 -> 1657[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1454 -> 1658[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1455 -> 1439[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1455[label="xuu66 <= xuu67",fontsize=16,color="magenta"];1455 -> 1659[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1455 -> 1660[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1456 -> 1440[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1456[label="xuu66 <= xuu67",fontsize=16,color="magenta"];1456 -> 1661[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1456 -> 1662[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1457 -> 1441[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1457[label="xuu66 <= xuu67",fontsize=16,color="magenta"];1457 -> 1663[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1457 -> 1664[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1458 -> 1442[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1458[label="xuu66 <= xuu67",fontsize=16,color="magenta"];1458 -> 1665[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1458 -> 1666[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1459 -> 1443[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1459[label="xuu66 <= xuu67",fontsize=16,color="magenta"];1459 -> 1667[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1459 -> 1668[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1460 -> 1444[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1460[label="xuu66 <= xuu67",fontsize=16,color="magenta"];1460 -> 1669[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1460 -> 1670[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1461 -> 1445[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1461[label="xuu66 <= xuu67",fontsize=16,color="magenta"];1461 -> 1671[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1461 -> 1672[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1462 -> 1446[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1462[label="xuu66 <= xuu67",fontsize=16,color="magenta"];1462 -> 1673[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1462 -> 1674[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1463 -> 1447[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1463[label="xuu66 <= xuu67",fontsize=16,color="magenta"];1463 -> 1675[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1463 -> 1676[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1464[label="compare0 (Right xuu144) (Right xuu145) otherwise",fontsize=16,color="black",shape="box"];1464 -> 1677[label="",style="solid", color="black", weight=3]; 25.22/9.05 1465[label="LT",fontsize=16,color="green",shape="box"];1466[label="primMulNat (Succ xuu300000) xuu400010",fontsize=16,color="burlywood",shape="box"];4276[label="xuu400010/Succ xuu4000100",fontsize=10,color="white",style="solid",shape="box"];1466 -> 4276[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4276 -> 1678[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4277[label="xuu400010/Zero",fontsize=10,color="white",style="solid",shape="box"];1466 -> 4277[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4277 -> 1679[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1467[label="primMulNat Zero xuu400010",fontsize=16,color="burlywood",shape="box"];4278[label="xuu400010/Succ xuu4000100",fontsize=10,color="white",style="solid",shape="box"];1467 -> 4278[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4278 -> 1680[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4279[label="xuu400010/Zero",fontsize=10,color="white",style="solid",shape="box"];1467 -> 4279[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4279 -> 1681[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1468[label="xuu400010",fontsize=16,color="green",shape="box"];1469[label="xuu30000",fontsize=16,color="green",shape="box"];1470[label="xuu400010",fontsize=16,color="green",shape="box"];1471[label="xuu30000",fontsize=16,color="green",shape="box"];1472 -> 1434[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1472[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1472 -> 1682[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1472 -> 1683[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1473 -> 1435[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1473[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1473 -> 1684[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1473 -> 1685[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1474 -> 1436[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1474[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1474 -> 1686[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1474 -> 1687[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1475 -> 1437[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1475[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1475 -> 1688[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1475 -> 1689[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1476 -> 1438[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1476[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1476 -> 1690[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1476 -> 1691[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1477 -> 1439[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1477[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1477 -> 1692[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1477 -> 1693[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1478 -> 1440[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1478[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1478 -> 1694[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1478 -> 1695[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1479 -> 1441[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1479[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1479 -> 1696[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1479 -> 1697[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1480 -> 1442[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1480[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1480 -> 1698[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1480 -> 1699[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1481 -> 1443[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1481[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1481 -> 1700[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1481 -> 1701[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1482 -> 1444[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1482[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1482 -> 1702[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1482 -> 1703[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1483 -> 1445[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1483[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1483 -> 1704[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1483 -> 1705[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1484 -> 1446[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1484[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1484 -> 1706[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1484 -> 1707[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1485 -> 1447[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1485[label="xuu73 <= xuu74",fontsize=16,color="magenta"];1485 -> 1708[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1485 -> 1709[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1486[label="compare0 (Just xuu153) (Just xuu154) otherwise",fontsize=16,color="black",shape="box"];1486 -> 1710[label="",style="solid", color="black", weight=3]; 25.22/9.05 1487[label="LT",fontsize=16,color="green",shape="box"];1503[label="xuu112 <= xuu114",fontsize=16,color="blue",shape="box"];4280[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 4280[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4280 -> 1711[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4281[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 4281[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4281 -> 1712[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4282[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 4282[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4282 -> 1713[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4283[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 4283[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4283 -> 1714[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4284[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 4284[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4284 -> 1715[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4285[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 4285[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4285 -> 1716[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4286[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 4286[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4286 -> 1717[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4287[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 4287[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4287 -> 1718[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4288[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 4288[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4288 -> 1719[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4289[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 4289[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4289 -> 1720[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4290[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 4290[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4290 -> 1721[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4291[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 4291[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4291 -> 1722[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4292[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 4292[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4292 -> 1723[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4293[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 4293[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4293 -> 1724[label="",style="solid", color="blue", weight=3]; 25.22/9.05 1504[label="xuu111 == xuu113",fontsize=16,color="blue",shape="box"];4294[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 4294[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4294 -> 1725[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4295[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 4295[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4295 -> 1726[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4296[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 4296[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4296 -> 1727[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4297[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 4297[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4297 -> 1728[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4298[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 4298[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4298 -> 1729[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4299[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 4299[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4299 -> 1730[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4300[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 4300[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4300 -> 1731[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4301[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 4301[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4301 -> 1732[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4302[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 4302[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4302 -> 1733[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4303[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 4303[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4303 -> 1734[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4304[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 4304[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4304 -> 1735[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4305[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 4305[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4305 -> 1736[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4306[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 4306[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4306 -> 1737[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4307[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 4307[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4307 -> 1738[label="",style="solid", color="blue", weight=3]; 25.22/9.05 1505 -> 1416[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1505[label="xuu111 < xuu113",fontsize=16,color="magenta"];1505 -> 1739[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1505 -> 1740[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1506 -> 1417[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1506[label="xuu111 < xuu113",fontsize=16,color="magenta"];1506 -> 1741[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1506 -> 1742[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1507 -> 1418[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1507[label="xuu111 < xuu113",fontsize=16,color="magenta"];1507 -> 1743[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1507 -> 1744[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1508 -> 1419[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1508[label="xuu111 < xuu113",fontsize=16,color="magenta"];1508 -> 1745[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1508 -> 1746[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1509 -> 1420[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1509[label="xuu111 < xuu113",fontsize=16,color="magenta"];1509 -> 1747[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1509 -> 1748[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1510 -> 1421[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1510[label="xuu111 < xuu113",fontsize=16,color="magenta"];1510 -> 1749[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1510 -> 1750[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1511 -> 1422[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1511[label="xuu111 < xuu113",fontsize=16,color="magenta"];1511 -> 1751[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1511 -> 1752[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1512 -> 1423[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1512[label="xuu111 < xuu113",fontsize=16,color="magenta"];1512 -> 1753[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1512 -> 1754[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1513 -> 1424[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1513[label="xuu111 < xuu113",fontsize=16,color="magenta"];1513 -> 1755[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1513 -> 1756[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1514 -> 1425[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1514[label="xuu111 < xuu113",fontsize=16,color="magenta"];1514 -> 1757[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1514 -> 1758[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1515 -> 1426[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1515[label="xuu111 < xuu113",fontsize=16,color="magenta"];1515 -> 1759[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1515 -> 1760[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1516 -> 1427[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1516[label="xuu111 < xuu113",fontsize=16,color="magenta"];1516 -> 1761[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1516 -> 1762[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1517 -> 1428[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1517[label="xuu111 < xuu113",fontsize=16,color="magenta"];1517 -> 1763[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1517 -> 1764[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1518 -> 1429[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1518[label="xuu111 < xuu113",fontsize=16,color="magenta"];1518 -> 1765[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1518 -> 1766[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1519[label="compare1 (xuu185,xuu186) (xuu187,xuu188) (False || xuu190)",fontsize=16,color="black",shape="box"];1519 -> 1767[label="",style="solid", color="black", weight=3]; 25.22/9.05 1520[label="compare1 (xuu185,xuu186) (xuu187,xuu188) (True || xuu190)",fontsize=16,color="black",shape="box"];1520 -> 1768[label="",style="solid", color="black", weight=3]; 25.22/9.05 1521 -> 2186[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1521[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38) (FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38)",fontsize=16,color="magenta"];1521 -> 2201[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1521 -> 2202[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1803 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1803[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38",fontsize=16,color="magenta"];1803 -> 1815[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1803 -> 1816[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1804[label="FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38",fontsize=16,color="black",shape="triangle"];1804 -> 1817[label="",style="solid", color="black", weight=3]; 25.22/9.05 1777[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 False",fontsize=16,color="black",shape="box"];1777 -> 1818[label="",style="solid", color="black", weight=3]; 25.22/9.05 1778[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 True",fontsize=16,color="black",shape="box"];1778 -> 1819[label="",style="solid", color="black", weight=3]; 25.22/9.05 2695[label="primPlusNat (Succ xuu20900) xuu2080",fontsize=16,color="burlywood",shape="box"];4308[label="xuu2080/Succ xuu20800",fontsize=10,color="white",style="solid",shape="box"];2695 -> 4308[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4308 -> 2776[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4309[label="xuu2080/Zero",fontsize=10,color="white",style="solid",shape="box"];2695 -> 4309[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4309 -> 2777[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 2696[label="primPlusNat Zero xuu2080",fontsize=16,color="burlywood",shape="box"];4310[label="xuu2080/Succ xuu20800",fontsize=10,color="white",style="solid",shape="box"];2696 -> 4310[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4310 -> 2778[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4311[label="xuu2080/Zero",fontsize=10,color="white",style="solid",shape="box"];2696 -> 4311[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4311 -> 2779[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 2697[label="primMinusNat (Succ xuu20900) (Succ xuu20800)",fontsize=16,color="black",shape="box"];2697 -> 2780[label="",style="solid", color="black", weight=3]; 25.22/9.05 2698[label="primMinusNat (Succ xuu20900) Zero",fontsize=16,color="black",shape="box"];2698 -> 2781[label="",style="solid", color="black", weight=3]; 25.22/9.05 2699[label="primMinusNat Zero (Succ xuu20800)",fontsize=16,color="black",shape="box"];2699 -> 2782[label="",style="solid", color="black", weight=3]; 25.22/9.05 2700[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];2700 -> 2783[label="",style="solid", color="black", weight=3]; 25.22/9.05 2701[label="xuu2090",fontsize=16,color="green",shape="box"];2702[label="xuu2080",fontsize=16,color="green",shape="box"];3736[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu307 xuu308 xuu305 + FiniteMap.mkBranchRight_size xuu307 xuu308 xuu305",fontsize=16,color="black",shape="box"];3736 -> 3737[label="",style="solid", color="black", weight=3]; 25.22/9.05 2094[label="xuu198",fontsize=16,color="green",shape="box"];2095[label="xuu199",fontsize=16,color="green",shape="box"];1805 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1805[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="magenta"];1805 -> 1820[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1805 -> 1821[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1813[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 False",fontsize=16,color="black",shape="box"];1813 -> 1864[label="",style="solid", color="black", weight=3]; 25.22/9.05 1814[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 True",fontsize=16,color="black",shape="box"];1814 -> 1865[label="",style="solid", color="black", weight=3]; 25.22/9.05 1540[label="error []",fontsize=16,color="red",shape="box"];1541[label="FiniteMap.mkBalBranch6MkBalBranch02 xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];1541 -> 1823[label="",style="solid", color="black", weight=3]; 25.22/9.05 1542 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1542[label="compare xuu98 xuu101 == LT",fontsize=16,color="magenta"];1542 -> 1824[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1542 -> 1825[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1543 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1543[label="compare xuu98 xuu101 == LT",fontsize=16,color="magenta"];1543 -> 1826[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1543 -> 1827[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1544 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1544[label="compare xuu98 xuu101 == LT",fontsize=16,color="magenta"];1544 -> 1828[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1544 -> 1829[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1545 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1545[label="compare xuu98 xuu101 == LT",fontsize=16,color="magenta"];1545 -> 1830[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1545 -> 1831[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1546 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1546[label="compare xuu98 xuu101 == LT",fontsize=16,color="magenta"];1546 -> 1832[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1546 -> 1833[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1547 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1547[label="compare xuu98 xuu101 == LT",fontsize=16,color="magenta"];1547 -> 1834[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1547 -> 1835[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1548 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1548[label="compare xuu98 xuu101 == LT",fontsize=16,color="magenta"];1548 -> 1836[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1548 -> 1837[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1549 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1549[label="compare xuu98 xuu101 == LT",fontsize=16,color="magenta"];1549 -> 1838[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1549 -> 1839[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1550 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1550[label="compare xuu98 xuu101 == LT",fontsize=16,color="magenta"];1550 -> 1840[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1550 -> 1841[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1551 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1551[label="compare xuu98 xuu101 == LT",fontsize=16,color="magenta"];1551 -> 1842[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1551 -> 1843[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1552 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1552[label="compare xuu98 xuu101 == LT",fontsize=16,color="magenta"];1552 -> 1844[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1552 -> 1845[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1553 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1553[label="compare xuu98 xuu101 == LT",fontsize=16,color="magenta"];1553 -> 1846[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1553 -> 1847[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1554 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1554[label="compare xuu98 xuu101 == LT",fontsize=16,color="magenta"];1554 -> 1848[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1554 -> 1849[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1555 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1555[label="compare xuu98 xuu101 == LT",fontsize=16,color="magenta"];1555 -> 1850[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1555 -> 1851[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1855[label="xuu99 < xuu102",fontsize=16,color="blue",shape="box"];4312[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1855 -> 4312[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4312 -> 1866[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4313[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1855 -> 4313[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4313 -> 1867[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4314[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1855 -> 4314[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4314 -> 1868[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4315[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1855 -> 4315[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4315 -> 1869[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4316[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1855 -> 4316[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4316 -> 1870[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4317[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1855 -> 4317[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4317 -> 1871[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4318[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1855 -> 4318[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4318 -> 1872[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4319[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1855 -> 4319[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4319 -> 1873[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4320[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1855 -> 4320[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4320 -> 1874[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4321[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1855 -> 4321[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4321 -> 1875[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4322[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1855 -> 4322[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4322 -> 1876[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4323[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1855 -> 4323[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4323 -> 1877[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4324[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1855 -> 4324[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4324 -> 1878[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4325[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1855 -> 4325[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4325 -> 1879[label="",style="solid", color="blue", weight=3]; 25.22/9.05 1856 -> 1120[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1856[label="xuu99 == xuu102 && xuu100 <= xuu103",fontsize=16,color="magenta"];1856 -> 1880[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1856 -> 1881[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1854[label="xuu205 || xuu206",fontsize=16,color="burlywood",shape="triangle"];4326[label="xuu205/False",fontsize=10,color="white",style="solid",shape="box"];1854 -> 4326[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4326 -> 1882[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4327[label="xuu205/True",fontsize=10,color="white",style="solid",shape="box"];1854 -> 4327[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4327 -> 1883[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1558 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1558[label="xuu98 == xuu101",fontsize=16,color="magenta"];1558 -> 1884[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1558 -> 1885[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1559 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1559[label="xuu98 == xuu101",fontsize=16,color="magenta"];1559 -> 1886[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1559 -> 1887[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1560 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1560[label="xuu98 == xuu101",fontsize=16,color="magenta"];1560 -> 1888[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1560 -> 1889[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1561 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1561[label="xuu98 == xuu101",fontsize=16,color="magenta"];1561 -> 1890[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1561 -> 1891[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1562 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1562[label="xuu98 == xuu101",fontsize=16,color="magenta"];1562 -> 1892[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1562 -> 1893[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1563 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1563[label="xuu98 == xuu101",fontsize=16,color="magenta"];1563 -> 1894[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1563 -> 1895[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1564 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1564[label="xuu98 == xuu101",fontsize=16,color="magenta"];1564 -> 1896[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1564 -> 1897[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1565 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1565[label="xuu98 == xuu101",fontsize=16,color="magenta"];1565 -> 1898[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1565 -> 1899[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1566 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1566[label="xuu98 == xuu101",fontsize=16,color="magenta"];1566 -> 1900[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1566 -> 1901[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1567 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1567[label="xuu98 == xuu101",fontsize=16,color="magenta"];1567 -> 1902[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1567 -> 1903[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1568 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1568[label="xuu98 == xuu101",fontsize=16,color="magenta"];1568 -> 1904[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1568 -> 1905[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1569 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1569[label="xuu98 == xuu101",fontsize=16,color="magenta"];1569 -> 1906[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1569 -> 1907[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1570 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1570[label="xuu98 == xuu101",fontsize=16,color="magenta"];1570 -> 1908[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1570 -> 1909[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1571 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1571[label="xuu98 == xuu101",fontsize=16,color="magenta"];1571 -> 1910[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1571 -> 1911[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1572[label="compare1 (xuu170,xuu171,xuu172) (xuu173,xuu174,xuu175) xuu177",fontsize=16,color="burlywood",shape="triangle"];4328[label="xuu177/False",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4328[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4328 -> 1912[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 4329[label="xuu177/True",fontsize=10,color="white",style="solid",shape="box"];1572 -> 4329[label="",style="solid", color="burlywood", weight=9]; 25.22/9.05 4329 -> 1913[label="",style="solid", color="burlywood", weight=3]; 25.22/9.05 1573 -> 1572[label="",style="dashed", color="red", weight=0]; 25.22/9.05 1573[label="compare1 (xuu170,xuu171,xuu172) (xuu173,xuu174,xuu175) True",fontsize=16,color="magenta"];1573 -> 1914[label="",style="dashed", color="magenta", weight=3]; 25.22/9.05 1129[label="xuu400001 == xuu30001",fontsize=16,color="blue",shape="box"];4330[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1129 -> 4330[label="",style="solid", color="blue", weight=9]; 25.22/9.05 4330 -> 1915[label="",style="solid", color="blue", weight=3]; 25.22/9.05 4331[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1129 -> 4331[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4331 -> 1916[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4332[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1129 -> 4332[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4332 -> 1917[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4333[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1129 -> 4333[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4333 -> 1918[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4334[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1129 -> 4334[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4334 -> 1919[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4335[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1129 -> 4335[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4335 -> 1920[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4336[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1129 -> 4336[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4336 -> 1921[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4337[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1129 -> 4337[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4337 -> 1922[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4338[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1129 -> 4338[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4338 -> 1923[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4339[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1129 -> 4339[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4339 -> 1924[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4340[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1129 -> 4340[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4340 -> 1925[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4341[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1129 -> 4341[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4341 -> 1926[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4342[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1129 -> 4342[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4342 -> 1927[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4343[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1129 -> 4343[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4343 -> 1928[label="",style="solid", color="blue", weight=3]; 25.22/9.06 1130[label="xuu400000 == xuu30000",fontsize=16,color="blue",shape="box"];4344[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 4344[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4344 -> 1929[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4345[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 4345[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4345 -> 1930[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4346[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 4346[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4346 -> 1931[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4347[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 4347[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4347 -> 1932[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4348[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 4348[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4348 -> 1933[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4349[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 4349[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4349 -> 1934[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4350[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 4350[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4350 -> 1935[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4351[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 4351[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4351 -> 1936[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4352[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 4352[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4352 -> 1937[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4353[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 4353[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4353 -> 1938[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4354[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 4354[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4354 -> 1939[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4355[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 4355[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4355 -> 1940[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4356[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 4356[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4356 -> 1941[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4357[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1130 -> 4357[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4357 -> 1942[label="",style="solid", color="blue", weight=3]; 25.22/9.06 1131 -> 1120[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1131[label="xuu400001 == xuu30001 && xuu400002 == xuu30002",fontsize=16,color="magenta"];1131 -> 1943[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1131 -> 1944[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1132[label="xuu400000 == xuu30000",fontsize=16,color="blue",shape="box"];4358[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4358[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4358 -> 1945[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4359[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4359[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4359 -> 1946[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4360[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4360[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4360 -> 1947[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4361[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4361[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4361 -> 1948[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4362[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4362[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4362 -> 1949[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4363[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4363[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4363 -> 1950[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4364[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4364[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4364 -> 1951[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4365[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4365[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4365 -> 1952[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4366[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4366[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4366 -> 1953[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4367[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4367[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4367 -> 1954[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4368[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4368[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4368 -> 1955[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4369[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4369[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4369 -> 1956[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4370[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4370[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4370 -> 1957[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4371[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1132 -> 4371[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4371 -> 1958[label="",style="solid", color="blue", weight=3]; 25.22/9.06 1574[label="primEqInt (Pos (Succ xuu4000000)) (Pos xuu30000)",fontsize=16,color="burlywood",shape="box"];4372[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4372[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4372 -> 1959[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4373[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1574 -> 4373[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4373 -> 1960[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1575[label="primEqInt (Pos (Succ xuu4000000)) (Neg xuu30000)",fontsize=16,color="black",shape="box"];1575 -> 1961[label="",style="solid", color="black", weight=3]; 25.22/9.06 1576[label="primEqInt (Pos Zero) (Pos xuu30000)",fontsize=16,color="burlywood",shape="box"];4374[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4374[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4374 -> 1962[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4375[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1576 -> 4375[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4375 -> 1963[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1577[label="primEqInt (Pos Zero) (Neg xuu30000)",fontsize=16,color="burlywood",shape="box"];4376[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1577 -> 4376[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4376 -> 1964[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4377[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1577 -> 4377[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4377 -> 1965[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1578[label="primEqInt (Neg (Succ xuu4000000)) (Pos xuu30000)",fontsize=16,color="black",shape="box"];1578 -> 1966[label="",style="solid", color="black", weight=3]; 25.22/9.06 1579[label="primEqInt (Neg (Succ xuu4000000)) (Neg xuu30000)",fontsize=16,color="burlywood",shape="box"];4378[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1579 -> 4378[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4378 -> 1967[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4379[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1579 -> 4379[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4379 -> 1968[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1580[label="primEqInt (Neg Zero) (Pos xuu30000)",fontsize=16,color="burlywood",shape="box"];4380[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4380[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4380 -> 1969[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4381[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1580 -> 4381[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4381 -> 1970[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1581[label="primEqInt (Neg Zero) (Neg xuu30000)",fontsize=16,color="burlywood",shape="box"];4382[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];1581 -> 4382[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4382 -> 1971[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4383[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1581 -> 4383[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4383 -> 1972[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1582 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1582[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1582 -> 1973[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1582 -> 1974[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1583 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1583[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1583 -> 1975[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1583 -> 1976[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1584 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1584[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1584 -> 1977[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1584 -> 1978[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1585 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1585[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1585 -> 1979[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1585 -> 1980[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1586 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1586[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1586 -> 1981[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1586 -> 1982[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1587 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1587[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1587 -> 1983[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1587 -> 1984[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1588 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1588[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1588 -> 1985[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1588 -> 1986[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1589 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1589[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1589 -> 1987[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1589 -> 1988[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1590 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1590[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1590 -> 1989[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1590 -> 1990[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1591 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1591[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1591 -> 1991[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1591 -> 1992[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1592 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1592[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1592 -> 1993[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1592 -> 1994[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1593 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1593[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1593 -> 1995[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1593 -> 1996[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1594 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1594[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1594 -> 1997[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1594 -> 1998[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1595 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1595[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1595 -> 1999[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1595 -> 2000[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1596 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1596[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1596 -> 2001[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1596 -> 2002[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1597 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1597[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1597 -> 2003[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1597 -> 2004[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1598 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1598[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1598 -> 2005[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1598 -> 2006[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1599 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1599[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1599 -> 2007[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1599 -> 2008[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1600 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1600[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1600 -> 2009[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1600 -> 2010[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1601 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1601[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1601 -> 2011[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1601 -> 2012[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1602 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1602[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1602 -> 2013[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1602 -> 2014[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1603 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1603[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1603 -> 2015[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1603 -> 2016[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1604 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1604[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1604 -> 2017[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1604 -> 2018[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1605 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1605[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1605 -> 2019[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1605 -> 2020[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1606 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1606[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1606 -> 2021[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1606 -> 2022[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1607 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1607[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1607 -> 2023[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1607 -> 2024[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1608 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1608[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1608 -> 2025[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1608 -> 2026[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1609 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1609[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1609 -> 2027[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1609 -> 2028[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1610[label="primEqNat xuu400000 xuu30000",fontsize=16,color="burlywood",shape="triangle"];4384[label="xuu400000/Succ xuu4000000",fontsize=10,color="white",style="solid",shape="box"];1610 -> 4384[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4384 -> 2029[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4385[label="xuu400000/Zero",fontsize=10,color="white",style="solid",shape="box"];1610 -> 4385[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4385 -> 2030[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1611 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1611[label="xuu400000 * xuu30001 == xuu400001 * xuu30000",fontsize=16,color="magenta"];1611 -> 2031[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1611 -> 2032[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1133[label="xuu400001 == xuu30001",fontsize=16,color="blue",shape="box"];4386[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1133 -> 4386[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4386 -> 2033[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4387[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1133 -> 4387[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4387 -> 2034[label="",style="solid", color="blue", weight=3]; 25.22/9.06 1134[label="xuu400000 == xuu30000",fontsize=16,color="blue",shape="box"];4388[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 4388[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4388 -> 2035[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4389[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1134 -> 4389[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4389 -> 2036[label="",style="solid", color="blue", weight=3]; 25.22/9.06 1612 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1612[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1612 -> 2037[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1612 -> 2038[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1613 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1613[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1613 -> 2039[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1613 -> 2040[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1614 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1614[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1614 -> 2041[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1614 -> 2042[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1615 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1615[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1615 -> 2043[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1615 -> 2044[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1616 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1616[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1616 -> 2045[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1616 -> 2046[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1617 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1617[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1617 -> 2047[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1617 -> 2048[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1618 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1618[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1618 -> 2049[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1618 -> 2050[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1619 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1619[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1619 -> 2051[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1619 -> 2052[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1620 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1620[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1620 -> 2053[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1620 -> 2054[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1621 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1621[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1621 -> 2055[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1621 -> 2056[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1622 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1622[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1622 -> 2057[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1622 -> 2058[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1623 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1623[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1623 -> 2059[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1623 -> 2060[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1624 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1624[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1624 -> 2061[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1624 -> 2062[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1625 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1625[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1625 -> 2063[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1625 -> 2064[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1626[label="xuu400000",fontsize=16,color="green",shape="box"];1627[label="xuu30000",fontsize=16,color="green",shape="box"];1135 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1135[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1135 -> 2065[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1135 -> 2066[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1136[label="xuu400000 == xuu30000",fontsize=16,color="blue",shape="box"];4390[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 4390[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4390 -> 2067[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4391[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 4391[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4391 -> 2068[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4392[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 4392[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4392 -> 2069[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4393[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 4393[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4393 -> 2070[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4394[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 4394[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4394 -> 2071[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4395[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 4395[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4395 -> 2072[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4396[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 4396[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4396 -> 2073[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4397[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 4397[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4397 -> 2074[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4398[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 4398[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4398 -> 2075[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4399[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 4399[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4399 -> 2076[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4400[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 4400[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4400 -> 2077[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4401[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 4401[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4401 -> 2078[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4402[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 4402[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4402 -> 2079[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4403[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1136 -> 4403[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4403 -> 2080[label="",style="solid", color="blue", weight=3]; 25.22/9.06 1628 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1628[label="xuu400000 * xuu30001 == xuu400001 * xuu30000",fontsize=16,color="magenta"];1628 -> 2081[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1628 -> 2082[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1629 -> 2083[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1629[label="compare xuu59 xuu60 /= GT",fontsize=16,color="magenta"];1629 -> 2084[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1630[label="(xuu590,xuu591,xuu592) <= xuu60",fontsize=16,color="burlywood",shape="box"];4404[label="xuu60/(xuu600,xuu601,xuu602)",fontsize=10,color="white",style="solid",shape="box"];1630 -> 4404[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4404 -> 2097[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1631 -> 2083[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1631[label="compare xuu59 xuu60 /= GT",fontsize=16,color="magenta"];1631 -> 2085[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1632[label="Left xuu590 <= xuu60",fontsize=16,color="burlywood",shape="box"];4405[label="xuu60/Left xuu600",fontsize=10,color="white",style="solid",shape="box"];1632 -> 4405[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4405 -> 2098[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4406[label="xuu60/Right xuu600",fontsize=10,color="white",style="solid",shape="box"];1632 -> 4406[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4406 -> 2099[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1633[label="Right xuu590 <= xuu60",fontsize=16,color="burlywood",shape="box"];4407[label="xuu60/Left xuu600",fontsize=10,color="white",style="solid",shape="box"];1633 -> 4407[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4407 -> 2100[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4408[label="xuu60/Right xuu600",fontsize=10,color="white",style="solid",shape="box"];1633 -> 4408[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4408 -> 2101[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1634 -> 2083[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1634[label="compare xuu59 xuu60 /= GT",fontsize=16,color="magenta"];1634 -> 2086[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1635 -> 2083[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1635[label="compare xuu59 xuu60 /= GT",fontsize=16,color="magenta"];1635 -> 2087[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1636 -> 2083[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1636[label="compare xuu59 xuu60 /= GT",fontsize=16,color="magenta"];1636 -> 2088[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1637[label="False <= xuu60",fontsize=16,color="burlywood",shape="box"];4409[label="xuu60/False",fontsize=10,color="white",style="solid",shape="box"];1637 -> 4409[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4409 -> 2102[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4410[label="xuu60/True",fontsize=10,color="white",style="solid",shape="box"];1637 -> 4410[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4410 -> 2103[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1638[label="True <= xuu60",fontsize=16,color="burlywood",shape="box"];4411[label="xuu60/False",fontsize=10,color="white",style="solid",shape="box"];1638 -> 4411[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4411 -> 2104[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4412[label="xuu60/True",fontsize=10,color="white",style="solid",shape="box"];1638 -> 4412[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4412 -> 2105[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1639[label="Nothing <= xuu60",fontsize=16,color="burlywood",shape="box"];4413[label="xuu60/Nothing",fontsize=10,color="white",style="solid",shape="box"];1639 -> 4413[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4413 -> 2106[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4414[label="xuu60/Just xuu600",fontsize=10,color="white",style="solid",shape="box"];1639 -> 4414[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4414 -> 2107[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1640[label="Just xuu590 <= xuu60",fontsize=16,color="burlywood",shape="box"];4415[label="xuu60/Nothing",fontsize=10,color="white",style="solid",shape="box"];1640 -> 4415[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4415 -> 2108[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4416[label="xuu60/Just xuu600",fontsize=10,color="white",style="solid",shape="box"];1640 -> 4416[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4416 -> 2109[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1641[label="(xuu590,xuu591) <= xuu60",fontsize=16,color="burlywood",shape="box"];4417[label="xuu60/(xuu600,xuu601)",fontsize=10,color="white",style="solid",shape="box"];1641 -> 4417[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4417 -> 2110[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1642 -> 2083[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1642[label="compare xuu59 xuu60 /= GT",fontsize=16,color="magenta"];1642 -> 2089[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1643[label="LT <= xuu60",fontsize=16,color="burlywood",shape="box"];4418[label="xuu60/LT",fontsize=10,color="white",style="solid",shape="box"];1643 -> 4418[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4418 -> 2111[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4419[label="xuu60/EQ",fontsize=10,color="white",style="solid",shape="box"];1643 -> 4419[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4419 -> 2112[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4420[label="xuu60/GT",fontsize=10,color="white",style="solid",shape="box"];1643 -> 4420[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4420 -> 2113[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1644[label="EQ <= xuu60",fontsize=16,color="burlywood",shape="box"];4421[label="xuu60/LT",fontsize=10,color="white",style="solid",shape="box"];1644 -> 4421[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4421 -> 2114[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4422[label="xuu60/EQ",fontsize=10,color="white",style="solid",shape="box"];1644 -> 4422[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4422 -> 2115[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4423[label="xuu60/GT",fontsize=10,color="white",style="solid",shape="box"];1644 -> 4423[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4423 -> 2116[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1645[label="GT <= xuu60",fontsize=16,color="burlywood",shape="box"];4424[label="xuu60/LT",fontsize=10,color="white",style="solid",shape="box"];1645 -> 4424[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4424 -> 2117[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4425[label="xuu60/EQ",fontsize=10,color="white",style="solid",shape="box"];1645 -> 4425[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4425 -> 2118[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4426[label="xuu60/GT",fontsize=10,color="white",style="solid",shape="box"];1645 -> 4426[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4426 -> 2119[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1646 -> 2083[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1646[label="compare xuu59 xuu60 /= GT",fontsize=16,color="magenta"];1646 -> 2090[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1647 -> 2083[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1647[label="compare xuu59 xuu60 /= GT",fontsize=16,color="magenta"];1647 -> 2091[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1648[label="compare0 (Left xuu137) (Left xuu138) True",fontsize=16,color="black",shape="box"];1648 -> 2120[label="",style="solid", color="black", weight=3]; 25.22/9.06 1649[label="xuu66",fontsize=16,color="green",shape="box"];1650[label="xuu67",fontsize=16,color="green",shape="box"];1651[label="xuu66",fontsize=16,color="green",shape="box"];1652[label="xuu67",fontsize=16,color="green",shape="box"];1653[label="xuu66",fontsize=16,color="green",shape="box"];1654[label="xuu67",fontsize=16,color="green",shape="box"];1655[label="xuu66",fontsize=16,color="green",shape="box"];1656[label="xuu67",fontsize=16,color="green",shape="box"];1657[label="xuu66",fontsize=16,color="green",shape="box"];1658[label="xuu67",fontsize=16,color="green",shape="box"];1659[label="xuu66",fontsize=16,color="green",shape="box"];1660[label="xuu67",fontsize=16,color="green",shape="box"];1661[label="xuu66",fontsize=16,color="green",shape="box"];1662[label="xuu67",fontsize=16,color="green",shape="box"];1663[label="xuu66",fontsize=16,color="green",shape="box"];1664[label="xuu67",fontsize=16,color="green",shape="box"];1665[label="xuu66",fontsize=16,color="green",shape="box"];1666[label="xuu67",fontsize=16,color="green",shape="box"];1667[label="xuu66",fontsize=16,color="green",shape="box"];1668[label="xuu67",fontsize=16,color="green",shape="box"];1669[label="xuu66",fontsize=16,color="green",shape="box"];1670[label="xuu67",fontsize=16,color="green",shape="box"];1671[label="xuu66",fontsize=16,color="green",shape="box"];1672[label="xuu67",fontsize=16,color="green",shape="box"];1673[label="xuu66",fontsize=16,color="green",shape="box"];1674[label="xuu67",fontsize=16,color="green",shape="box"];1675[label="xuu66",fontsize=16,color="green",shape="box"];1676[label="xuu67",fontsize=16,color="green",shape="box"];1677[label="compare0 (Right xuu144) (Right xuu145) True",fontsize=16,color="black",shape="box"];1677 -> 2121[label="",style="solid", color="black", weight=3]; 25.22/9.06 1678[label="primMulNat (Succ xuu300000) (Succ xuu4000100)",fontsize=16,color="black",shape="box"];1678 -> 2122[label="",style="solid", color="black", weight=3]; 25.22/9.06 1679[label="primMulNat (Succ xuu300000) Zero",fontsize=16,color="black",shape="box"];1679 -> 2123[label="",style="solid", color="black", weight=3]; 25.22/9.06 1680[label="primMulNat Zero (Succ xuu4000100)",fontsize=16,color="black",shape="box"];1680 -> 2124[label="",style="solid", color="black", weight=3]; 25.22/9.06 1681[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1681 -> 2125[label="",style="solid", color="black", weight=3]; 25.22/9.06 1682[label="xuu73",fontsize=16,color="green",shape="box"];1683[label="xuu74",fontsize=16,color="green",shape="box"];1684[label="xuu73",fontsize=16,color="green",shape="box"];1685[label="xuu74",fontsize=16,color="green",shape="box"];1686[label="xuu73",fontsize=16,color="green",shape="box"];1687[label="xuu74",fontsize=16,color="green",shape="box"];1688[label="xuu73",fontsize=16,color="green",shape="box"];1689[label="xuu74",fontsize=16,color="green",shape="box"];1690[label="xuu73",fontsize=16,color="green",shape="box"];1691[label="xuu74",fontsize=16,color="green",shape="box"];1692[label="xuu73",fontsize=16,color="green",shape="box"];1693[label="xuu74",fontsize=16,color="green",shape="box"];1694[label="xuu73",fontsize=16,color="green",shape="box"];1695[label="xuu74",fontsize=16,color="green",shape="box"];1696[label="xuu73",fontsize=16,color="green",shape="box"];1697[label="xuu74",fontsize=16,color="green",shape="box"];1698[label="xuu73",fontsize=16,color="green",shape="box"];1699[label="xuu74",fontsize=16,color="green",shape="box"];1700[label="xuu73",fontsize=16,color="green",shape="box"];1701[label="xuu74",fontsize=16,color="green",shape="box"];1702[label="xuu73",fontsize=16,color="green",shape="box"];1703[label="xuu74",fontsize=16,color="green",shape="box"];1704[label="xuu73",fontsize=16,color="green",shape="box"];1705[label="xuu74",fontsize=16,color="green",shape="box"];1706[label="xuu73",fontsize=16,color="green",shape="box"];1707[label="xuu74",fontsize=16,color="green",shape="box"];1708[label="xuu73",fontsize=16,color="green",shape="box"];1709[label="xuu74",fontsize=16,color="green",shape="box"];1710[label="compare0 (Just xuu153) (Just xuu154) True",fontsize=16,color="black",shape="box"];1710 -> 2126[label="",style="solid", color="black", weight=3]; 25.22/9.06 1711 -> 1434[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1711[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1711 -> 2127[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1711 -> 2128[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1712 -> 1435[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1712[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1712 -> 2129[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1712 -> 2130[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1713 -> 1436[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1713[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1713 -> 2131[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1713 -> 2132[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1714 -> 1437[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1714[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1714 -> 2133[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1714 -> 2134[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1715 -> 1438[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1715[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1715 -> 2135[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1715 -> 2136[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1716 -> 1439[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1716[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1716 -> 2137[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1716 -> 2138[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1717 -> 1440[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1717[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1717 -> 2139[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1717 -> 2140[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1718 -> 1441[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1718[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1718 -> 2141[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1718 -> 2142[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1719 -> 1442[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1719[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1719 -> 2143[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1719 -> 2144[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1720 -> 1443[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1720[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1720 -> 2145[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1720 -> 2146[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1721 -> 1444[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1721[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1721 -> 2147[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1721 -> 2148[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1722 -> 1445[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1722[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1722 -> 2149[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1722 -> 2150[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1723 -> 1446[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1723[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1723 -> 2151[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1723 -> 2152[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1724 -> 1447[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1724[label="xuu112 <= xuu114",fontsize=16,color="magenta"];1724 -> 2153[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1724 -> 2154[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1725 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1725[label="xuu111 == xuu113",fontsize=16,color="magenta"];1725 -> 2155[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1725 -> 2156[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1726 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1726[label="xuu111 == xuu113",fontsize=16,color="magenta"];1726 -> 2157[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1726 -> 2158[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1727 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1727[label="xuu111 == xuu113",fontsize=16,color="magenta"];1727 -> 2159[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1727 -> 2160[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1728 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1728[label="xuu111 == xuu113",fontsize=16,color="magenta"];1728 -> 2161[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1728 -> 2162[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1729 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1729[label="xuu111 == xuu113",fontsize=16,color="magenta"];1729 -> 2163[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1729 -> 2164[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1730 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1730[label="xuu111 == xuu113",fontsize=16,color="magenta"];1730 -> 2165[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1730 -> 2166[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1731 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1731[label="xuu111 == xuu113",fontsize=16,color="magenta"];1731 -> 2167[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1731 -> 2168[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1732 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1732[label="xuu111 == xuu113",fontsize=16,color="magenta"];1732 -> 2169[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1732 -> 2170[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1733 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1733[label="xuu111 == xuu113",fontsize=16,color="magenta"];1733 -> 2171[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1733 -> 2172[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1734 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1734[label="xuu111 == xuu113",fontsize=16,color="magenta"];1734 -> 2173[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1734 -> 2174[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1735 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1735[label="xuu111 == xuu113",fontsize=16,color="magenta"];1735 -> 2175[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1735 -> 2176[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1736 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1736[label="xuu111 == xuu113",fontsize=16,color="magenta"];1736 -> 2177[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1736 -> 2178[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1737 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1737[label="xuu111 == xuu113",fontsize=16,color="magenta"];1737 -> 2179[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1737 -> 2180[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1738 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1738[label="xuu111 == xuu113",fontsize=16,color="magenta"];1738 -> 2181[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1738 -> 2182[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1739[label="xuu111",fontsize=16,color="green",shape="box"];1740[label="xuu113",fontsize=16,color="green",shape="box"];1741[label="xuu111",fontsize=16,color="green",shape="box"];1742[label="xuu113",fontsize=16,color="green",shape="box"];1743[label="xuu111",fontsize=16,color="green",shape="box"];1744[label="xuu113",fontsize=16,color="green",shape="box"];1745[label="xuu111",fontsize=16,color="green",shape="box"];1746[label="xuu113",fontsize=16,color="green",shape="box"];1747[label="xuu111",fontsize=16,color="green",shape="box"];1748[label="xuu113",fontsize=16,color="green",shape="box"];1749[label="xuu111",fontsize=16,color="green",shape="box"];1750[label="xuu113",fontsize=16,color="green",shape="box"];1751[label="xuu111",fontsize=16,color="green",shape="box"];1752[label="xuu113",fontsize=16,color="green",shape="box"];1753[label="xuu111",fontsize=16,color="green",shape="box"];1754[label="xuu113",fontsize=16,color="green",shape="box"];1755[label="xuu111",fontsize=16,color="green",shape="box"];1756[label="xuu113",fontsize=16,color="green",shape="box"];1757[label="xuu111",fontsize=16,color="green",shape="box"];1758[label="xuu113",fontsize=16,color="green",shape="box"];1759[label="xuu111",fontsize=16,color="green",shape="box"];1760[label="xuu113",fontsize=16,color="green",shape="box"];1761[label="xuu111",fontsize=16,color="green",shape="box"];1762[label="xuu113",fontsize=16,color="green",shape="box"];1763[label="xuu111",fontsize=16,color="green",shape="box"];1764[label="xuu113",fontsize=16,color="green",shape="box"];1765[label="xuu111",fontsize=16,color="green",shape="box"];1766[label="xuu113",fontsize=16,color="green",shape="box"];1767[label="compare1 (xuu185,xuu186) (xuu187,xuu188) xuu190",fontsize=16,color="burlywood",shape="triangle"];4427[label="xuu190/False",fontsize=10,color="white",style="solid",shape="box"];1767 -> 4427[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4427 -> 2183[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4428[label="xuu190/True",fontsize=10,color="white",style="solid",shape="box"];1767 -> 4428[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4428 -> 2184[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1768 -> 1767[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1768[label="compare1 (xuu185,xuu186) (xuu187,xuu188) True",fontsize=16,color="magenta"];1768 -> 2185[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2201[label="FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38",fontsize=16,color="black",shape="triangle"];2201 -> 2223[label="",style="solid", color="black", weight=3]; 25.22/9.06 2202 -> 1804[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2202[label="FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38",fontsize=16,color="magenta"];1815 -> 2201[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1815[label="FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38",fontsize=16,color="magenta"];1816 -> 1810[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1816[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1817 -> 1811[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1817[label="FiniteMap.sizeFM xuu38",fontsize=16,color="magenta"];1817 -> 2224[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1818 -> 2225[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1818[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 (FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38)",fontsize=16,color="magenta"];1818 -> 2226[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1819[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu33 [] xuu31 xuu38 xuu33 xuu38 xuu38",fontsize=16,color="burlywood",shape="box"];4429[label="xuu38/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1819 -> 4429[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4429 -> 2231[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4430[label="xuu38/FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384",fontsize=10,color="white",style="solid",shape="box"];1819 -> 4430[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4430 -> 2232[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 2776[label="primPlusNat (Succ xuu20900) (Succ xuu20800)",fontsize=16,color="black",shape="box"];2776 -> 2906[label="",style="solid", color="black", weight=3]; 25.22/9.06 2777[label="primPlusNat (Succ xuu20900) Zero",fontsize=16,color="black",shape="box"];2777 -> 2907[label="",style="solid", color="black", weight=3]; 25.22/9.06 2778[label="primPlusNat Zero (Succ xuu20800)",fontsize=16,color="black",shape="box"];2778 -> 2908[label="",style="solid", color="black", weight=3]; 25.22/9.06 2779[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2779 -> 2909[label="",style="solid", color="black", weight=3]; 25.22/9.06 2780 -> 2242[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2780[label="primMinusNat xuu20900 xuu20800",fontsize=16,color="magenta"];2780 -> 2910[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2780 -> 2911[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2781[label="Pos (Succ xuu20900)",fontsize=16,color="green",shape="box"];2782[label="Neg (Succ xuu20800)",fontsize=16,color="green",shape="box"];2783[label="Pos Zero",fontsize=16,color="green",shape="box"];3737 -> 2186[label="",style="dashed", color="red", weight=0]; 25.22/9.06 3737[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu307 xuu308 xuu305) (FiniteMap.mkBranchRight_size xuu307 xuu308 xuu305)",fontsize=16,color="magenta"];3737 -> 3738[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 3737 -> 3739[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1820 -> 1800[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1820[label="FiniteMap.mkBalBranch6Size_r xuu26 (xuu300 : xuu301) xuu31 xuu34",fontsize=16,color="magenta"];1821 -> 1810[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1821[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1864[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 otherwise",fontsize=16,color="black",shape="box"];1864 -> 2236[label="",style="solid", color="black", weight=3]; 25.22/9.06 1865[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu26 (xuu300 : xuu301) xuu31 xuu34 xuu26 xuu34 xuu26",fontsize=16,color="burlywood",shape="box"];4431[label="xuu26/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1865 -> 4431[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4431 -> 2237[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4432[label="xuu26/FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264",fontsize=10,color="white",style="solid",shape="box"];1865 -> 4432[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4432 -> 2238[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 1823 -> 2239[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1823[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 (FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344)",fontsize=16,color="magenta"];1823 -> 2240[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1824 -> 164[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1824[label="compare xuu98 xuu101",fontsize=16,color="magenta"];1824 -> 2245[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1824 -> 2246[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1825[label="LT",fontsize=16,color="green",shape="box"];1826 -> 165[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1826[label="compare xuu98 xuu101",fontsize=16,color="magenta"];1826 -> 2247[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1826 -> 2248[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1827[label="LT",fontsize=16,color="green",shape="box"];1828 -> 166[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1828[label="compare xuu98 xuu101",fontsize=16,color="magenta"];1828 -> 2249[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1828 -> 2250[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1829[label="LT",fontsize=16,color="green",shape="box"];1830 -> 167[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1830[label="compare xuu98 xuu101",fontsize=16,color="magenta"];1830 -> 2251[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1830 -> 2252[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1831[label="LT",fontsize=16,color="green",shape="box"];1832 -> 168[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1832[label="compare xuu98 xuu101",fontsize=16,color="magenta"];1832 -> 2253[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1832 -> 2254[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1833[label="LT",fontsize=16,color="green",shape="box"];1834 -> 169[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1834[label="compare xuu98 xuu101",fontsize=16,color="magenta"];1834 -> 2255[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1834 -> 2256[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1835[label="LT",fontsize=16,color="green",shape="box"];1836 -> 170[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1836[label="compare xuu98 xuu101",fontsize=16,color="magenta"];1836 -> 2257[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1836 -> 2258[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1837[label="LT",fontsize=16,color="green",shape="box"];1838 -> 171[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1838[label="compare xuu98 xuu101",fontsize=16,color="magenta"];1838 -> 2259[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1838 -> 2260[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1839[label="LT",fontsize=16,color="green",shape="box"];1840 -> 172[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1840[label="compare xuu98 xuu101",fontsize=16,color="magenta"];1840 -> 2261[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1840 -> 2262[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1841[label="LT",fontsize=16,color="green",shape="box"];1842 -> 173[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1842[label="compare xuu98 xuu101",fontsize=16,color="magenta"];1842 -> 2263[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1842 -> 2264[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1843[label="LT",fontsize=16,color="green",shape="box"];1844 -> 174[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1844[label="compare xuu98 xuu101",fontsize=16,color="magenta"];1844 -> 2265[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1844 -> 2266[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1845[label="LT",fontsize=16,color="green",shape="box"];1846 -> 175[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1846[label="compare xuu98 xuu101",fontsize=16,color="magenta"];1846 -> 2267[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1846 -> 2268[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1847[label="LT",fontsize=16,color="green",shape="box"];1848 -> 176[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1848[label="compare xuu98 xuu101",fontsize=16,color="magenta"];1848 -> 2269[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1848 -> 2270[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1849[label="LT",fontsize=16,color="green",shape="box"];1850 -> 177[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1850[label="compare xuu98 xuu101",fontsize=16,color="magenta"];1850 -> 2271[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1850 -> 2272[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1851[label="LT",fontsize=16,color="green",shape="box"];1866 -> 1416[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1866[label="xuu99 < xuu102",fontsize=16,color="magenta"];1866 -> 2273[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1866 -> 2274[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1867 -> 1417[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1867[label="xuu99 < xuu102",fontsize=16,color="magenta"];1867 -> 2275[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1867 -> 2276[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1868 -> 1418[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1868[label="xuu99 < xuu102",fontsize=16,color="magenta"];1868 -> 2277[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1868 -> 2278[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1869 -> 1419[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1869[label="xuu99 < xuu102",fontsize=16,color="magenta"];1869 -> 2279[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1869 -> 2280[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1870 -> 1420[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1870[label="xuu99 < xuu102",fontsize=16,color="magenta"];1870 -> 2281[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1870 -> 2282[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1871 -> 1421[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1871[label="xuu99 < xuu102",fontsize=16,color="magenta"];1871 -> 2283[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1871 -> 2284[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1872 -> 1422[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1872[label="xuu99 < xuu102",fontsize=16,color="magenta"];1872 -> 2285[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1872 -> 2286[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1873 -> 1423[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1873[label="xuu99 < xuu102",fontsize=16,color="magenta"];1873 -> 2287[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1873 -> 2288[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1874 -> 1424[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1874[label="xuu99 < xuu102",fontsize=16,color="magenta"];1874 -> 2289[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1874 -> 2290[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1875 -> 1425[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1875[label="xuu99 < xuu102",fontsize=16,color="magenta"];1875 -> 2291[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1875 -> 2292[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1876 -> 1426[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1876[label="xuu99 < xuu102",fontsize=16,color="magenta"];1876 -> 2293[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1876 -> 2294[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1877 -> 1427[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1877[label="xuu99 < xuu102",fontsize=16,color="magenta"];1877 -> 2295[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1877 -> 2296[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1878 -> 1428[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1878[label="xuu99 < xuu102",fontsize=16,color="magenta"];1878 -> 2297[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1878 -> 2298[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1879 -> 1429[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1879[label="xuu99 < xuu102",fontsize=16,color="magenta"];1879 -> 2299[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1879 -> 2300[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1880[label="xuu100 <= xuu103",fontsize=16,color="blue",shape="box"];4433[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4433[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4433 -> 2301[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4434[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4434[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4434 -> 2302[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4435[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4435[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4435 -> 2303[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4436[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4436[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4436 -> 2304[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4437[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4437[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4437 -> 2305[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4438[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4438[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4438 -> 2306[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4439[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4439[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4439 -> 2307[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4440[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4440[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4440 -> 2308[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4441[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4441[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4441 -> 2309[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4442[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4442[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4442 -> 2310[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4443[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4443[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4443 -> 2311[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4444[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4444[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4444 -> 2312[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4445[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4445[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4445 -> 2313[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4446[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1880 -> 4446[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4446 -> 2314[label="",style="solid", color="blue", weight=3]; 25.22/9.06 1881[label="xuu99 == xuu102",fontsize=16,color="blue",shape="box"];4447[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4447[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4447 -> 2315[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4448[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4448[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4448 -> 2316[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4449[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4449[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4449 -> 2317[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4450[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4450[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4450 -> 2318[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4451[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4451[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4451 -> 2319[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4452[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4452[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4452 -> 2320[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4453[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4453[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4453 -> 2321[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4454[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4454[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4454 -> 2322[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4455[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4455[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4455 -> 2323[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4456[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4456[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4456 -> 2324[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4457[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4457[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4457 -> 2325[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4458[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4458[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4458 -> 2326[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4459[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4459[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4459 -> 2327[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4460[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1881 -> 4460[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4460 -> 2328[label="",style="solid", color="blue", weight=3]; 25.22/9.06 1882[label="False || xuu206",fontsize=16,color="black",shape="box"];1882 -> 2329[label="",style="solid", color="black", weight=3]; 25.22/9.06 1883[label="True || xuu206",fontsize=16,color="black",shape="box"];1883 -> 2330[label="",style="solid", color="black", weight=3]; 25.22/9.06 1884[label="xuu98",fontsize=16,color="green",shape="box"];1885[label="xuu101",fontsize=16,color="green",shape="box"];1886[label="xuu98",fontsize=16,color="green",shape="box"];1887[label="xuu101",fontsize=16,color="green",shape="box"];1888[label="xuu98",fontsize=16,color="green",shape="box"];1889[label="xuu101",fontsize=16,color="green",shape="box"];1890[label="xuu98",fontsize=16,color="green",shape="box"];1891[label="xuu101",fontsize=16,color="green",shape="box"];1892[label="xuu98",fontsize=16,color="green",shape="box"];1893[label="xuu101",fontsize=16,color="green",shape="box"];1894[label="xuu98",fontsize=16,color="green",shape="box"];1895[label="xuu101",fontsize=16,color="green",shape="box"];1896[label="xuu98",fontsize=16,color="green",shape="box"];1897[label="xuu101",fontsize=16,color="green",shape="box"];1898[label="xuu98",fontsize=16,color="green",shape="box"];1899[label="xuu101",fontsize=16,color="green",shape="box"];1900[label="xuu98",fontsize=16,color="green",shape="box"];1901[label="xuu101",fontsize=16,color="green",shape="box"];1902[label="xuu98",fontsize=16,color="green",shape="box"];1903[label="xuu101",fontsize=16,color="green",shape="box"];1904[label="xuu98",fontsize=16,color="green",shape="box"];1905[label="xuu101",fontsize=16,color="green",shape="box"];1906[label="xuu98",fontsize=16,color="green",shape="box"];1907[label="xuu101",fontsize=16,color="green",shape="box"];1908[label="xuu98",fontsize=16,color="green",shape="box"];1909[label="xuu101",fontsize=16,color="green",shape="box"];1910[label="xuu98",fontsize=16,color="green",shape="box"];1911[label="xuu101",fontsize=16,color="green",shape="box"];1912[label="compare1 (xuu170,xuu171,xuu172) (xuu173,xuu174,xuu175) False",fontsize=16,color="black",shape="box"];1912 -> 2331[label="",style="solid", color="black", weight=3]; 25.22/9.06 1913[label="compare1 (xuu170,xuu171,xuu172) (xuu173,xuu174,xuu175) True",fontsize=16,color="black",shape="box"];1913 -> 2332[label="",style="solid", color="black", weight=3]; 25.22/9.06 1914[label="True",fontsize=16,color="green",shape="box"];1915 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1915[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1915 -> 2333[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1915 -> 2334[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1916 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1916[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1916 -> 2335[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1916 -> 2336[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1917 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1917[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1917 -> 2337[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1917 -> 2338[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1918 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1918[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1918 -> 2339[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1918 -> 2340[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1919 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1919[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1919 -> 2341[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1919 -> 2342[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1920 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1920[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1920 -> 2343[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1920 -> 2344[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1921 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1921[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1921 -> 2345[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1921 -> 2346[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1922 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1922[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1922 -> 2347[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1922 -> 2348[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1923 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1923[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1923 -> 2349[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1923 -> 2350[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1924 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1924[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1924 -> 2351[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1924 -> 2352[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1925 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1925[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1925 -> 2353[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1925 -> 2354[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1926 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1926[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1926 -> 2355[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1926 -> 2356[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1927 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1927[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1927 -> 2357[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1927 -> 2358[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1928 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1928[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];1928 -> 2359[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1928 -> 2360[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1929 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1929[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1929 -> 2361[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1929 -> 2362[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1930 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1930[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1930 -> 2363[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1930 -> 2364[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1931 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1931[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1931 -> 2365[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1931 -> 2366[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1932 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1932[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1932 -> 2367[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1932 -> 2368[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1933 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1933[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1933 -> 2369[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1933 -> 2370[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1934 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1934[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1934 -> 2371[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1934 -> 2372[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1935 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1935[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1935 -> 2373[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1935 -> 2374[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1936 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1936[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1936 -> 2375[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1936 -> 2376[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1937 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1937[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1937 -> 2377[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1937 -> 2378[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1938 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1938[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1938 -> 2379[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1938 -> 2380[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1939 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1939[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1939 -> 2381[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1939 -> 2382[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1940 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1940[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1940 -> 2383[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1940 -> 2384[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1941 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1941[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1941 -> 2385[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1941 -> 2386[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1942 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1942[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1942 -> 2387[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1942 -> 2388[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1943[label="xuu400002 == xuu30002",fontsize=16,color="blue",shape="box"];4461[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4461[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4461 -> 2389[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4462[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4462[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4462 -> 2390[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4463[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4463[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4463 -> 2391[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4464[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4464[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4464 -> 2392[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4465[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4465[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4465 -> 2393[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4466[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4466[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4466 -> 2394[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4467[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4467[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4467 -> 2395[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4468[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4468[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4468 -> 2396[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4469[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4469[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4469 -> 2397[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4470[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4470[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4470 -> 2398[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4471[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4471[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4471 -> 2399[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4472[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4472[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4472 -> 2400[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4473[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4473[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4473 -> 2401[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4474[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1943 -> 4474[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4474 -> 2402[label="",style="solid", color="blue", weight=3]; 25.22/9.06 1944[label="xuu400001 == xuu30001",fontsize=16,color="blue",shape="box"];4475[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4475[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4475 -> 2403[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4476[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4476[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4476 -> 2404[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4477[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4477[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4477 -> 2405[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4478[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4478[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4478 -> 2406[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4479[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4479[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4479 -> 2407[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4480[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4480[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4480 -> 2408[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4481[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4481[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4481 -> 2409[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4482[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4482[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4482 -> 2410[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4483[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4483[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4483 -> 2411[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4484[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4484[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4484 -> 2412[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4485[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4485[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4485 -> 2413[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4486[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4486[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4486 -> 2414[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4487[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4487[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4487 -> 2415[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4488[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1944 -> 4488[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4488 -> 2416[label="",style="solid", color="blue", weight=3]; 25.22/9.06 1945 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1945[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1945 -> 2417[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1945 -> 2418[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1946 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1946[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1946 -> 2419[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1946 -> 2420[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1947 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1947[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1947 -> 2421[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1947 -> 2422[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1948 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1948[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1948 -> 2423[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1948 -> 2424[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1949 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1949[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1949 -> 2425[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1949 -> 2426[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1950 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1950[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1950 -> 2427[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1950 -> 2428[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1951 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1951[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1951 -> 2429[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1951 -> 2430[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1952 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1952[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1952 -> 2431[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1952 -> 2432[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1953 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1953[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1953 -> 2433[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1953 -> 2434[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1954 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1954[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1954 -> 2435[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1954 -> 2436[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1955 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1955[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1955 -> 2437[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1955 -> 2438[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1956 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1956[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1956 -> 2439[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1956 -> 2440[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1957 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1957[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1957 -> 2441[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1957 -> 2442[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1958 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.06 1958[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];1958 -> 2443[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1958 -> 2444[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 1959[label="primEqInt (Pos (Succ xuu4000000)) (Pos (Succ xuu300000))",fontsize=16,color="black",shape="box"];1959 -> 2445[label="",style="solid", color="black", weight=3]; 25.22/9.06 1960[label="primEqInt (Pos (Succ xuu4000000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1960 -> 2446[label="",style="solid", color="black", weight=3]; 25.22/9.06 1961[label="False",fontsize=16,color="green",shape="box"];1962[label="primEqInt (Pos Zero) (Pos (Succ xuu300000))",fontsize=16,color="black",shape="box"];1962 -> 2447[label="",style="solid", color="black", weight=3]; 25.22/9.06 1963[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1963 -> 2448[label="",style="solid", color="black", weight=3]; 25.22/9.06 1964[label="primEqInt (Pos Zero) (Neg (Succ xuu300000))",fontsize=16,color="black",shape="box"];1964 -> 2449[label="",style="solid", color="black", weight=3]; 25.22/9.06 1965[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1965 -> 2450[label="",style="solid", color="black", weight=3]; 25.22/9.06 1966[label="False",fontsize=16,color="green",shape="box"];1967[label="primEqInt (Neg (Succ xuu4000000)) (Neg (Succ xuu300000))",fontsize=16,color="black",shape="box"];1967 -> 2451[label="",style="solid", color="black", weight=3]; 25.22/9.06 1968[label="primEqInt (Neg (Succ xuu4000000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1968 -> 2452[label="",style="solid", color="black", weight=3]; 25.22/9.06 1969[label="primEqInt (Neg Zero) (Pos (Succ xuu300000))",fontsize=16,color="black",shape="box"];1969 -> 2453[label="",style="solid", color="black", weight=3]; 25.22/9.06 1970[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1970 -> 2454[label="",style="solid", color="black", weight=3]; 25.22/9.06 1971[label="primEqInt (Neg Zero) (Neg (Succ xuu300000))",fontsize=16,color="black",shape="box"];1971 -> 2455[label="",style="solid", color="black", weight=3]; 25.22/9.06 1972[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1972 -> 2456[label="",style="solid", color="black", weight=3]; 25.22/9.06 1973[label="xuu400000",fontsize=16,color="green",shape="box"];1974[label="xuu30000",fontsize=16,color="green",shape="box"];1975[label="xuu400000",fontsize=16,color="green",shape="box"];1976[label="xuu30000",fontsize=16,color="green",shape="box"];1977[label="xuu400000",fontsize=16,color="green",shape="box"];1978[label="xuu30000",fontsize=16,color="green",shape="box"];1979[label="xuu400000",fontsize=16,color="green",shape="box"];1980[label="xuu30000",fontsize=16,color="green",shape="box"];1981[label="xuu400000",fontsize=16,color="green",shape="box"];1982[label="xuu30000",fontsize=16,color="green",shape="box"];1983[label="xuu400000",fontsize=16,color="green",shape="box"];1984[label="xuu30000",fontsize=16,color="green",shape="box"];1985[label="xuu400000",fontsize=16,color="green",shape="box"];1986[label="xuu30000",fontsize=16,color="green",shape="box"];1987[label="xuu400000",fontsize=16,color="green",shape="box"];1988[label="xuu30000",fontsize=16,color="green",shape="box"];1989[label="xuu400000",fontsize=16,color="green",shape="box"];1990[label="xuu30000",fontsize=16,color="green",shape="box"];1991[label="xuu400000",fontsize=16,color="green",shape="box"];1992[label="xuu30000",fontsize=16,color="green",shape="box"];1993[label="xuu400000",fontsize=16,color="green",shape="box"];1994[label="xuu30000",fontsize=16,color="green",shape="box"];1995[label="xuu400000",fontsize=16,color="green",shape="box"];1996[label="xuu30000",fontsize=16,color="green",shape="box"];1997[label="xuu400000",fontsize=16,color="green",shape="box"];1998[label="xuu30000",fontsize=16,color="green",shape="box"];1999[label="xuu400000",fontsize=16,color="green",shape="box"];2000[label="xuu30000",fontsize=16,color="green",shape="box"];2001[label="xuu400000",fontsize=16,color="green",shape="box"];2002[label="xuu30000",fontsize=16,color="green",shape="box"];2003[label="xuu400000",fontsize=16,color="green",shape="box"];2004[label="xuu30000",fontsize=16,color="green",shape="box"];2005[label="xuu400000",fontsize=16,color="green",shape="box"];2006[label="xuu30000",fontsize=16,color="green",shape="box"];2007[label="xuu400000",fontsize=16,color="green",shape="box"];2008[label="xuu30000",fontsize=16,color="green",shape="box"];2009[label="xuu400000",fontsize=16,color="green",shape="box"];2010[label="xuu30000",fontsize=16,color="green",shape="box"];2011[label="xuu400000",fontsize=16,color="green",shape="box"];2012[label="xuu30000",fontsize=16,color="green",shape="box"];2013[label="xuu400000",fontsize=16,color="green",shape="box"];2014[label="xuu30000",fontsize=16,color="green",shape="box"];2015[label="xuu400000",fontsize=16,color="green",shape="box"];2016[label="xuu30000",fontsize=16,color="green",shape="box"];2017[label="xuu400000",fontsize=16,color="green",shape="box"];2018[label="xuu30000",fontsize=16,color="green",shape="box"];2019[label="xuu400000",fontsize=16,color="green",shape="box"];2020[label="xuu30000",fontsize=16,color="green",shape="box"];2021[label="xuu400000",fontsize=16,color="green",shape="box"];2022[label="xuu30000",fontsize=16,color="green",shape="box"];2023[label="xuu400000",fontsize=16,color="green",shape="box"];2024[label="xuu30000",fontsize=16,color="green",shape="box"];2025[label="xuu400000",fontsize=16,color="green",shape="box"];2026[label="xuu30000",fontsize=16,color="green",shape="box"];2027[label="xuu400000",fontsize=16,color="green",shape="box"];2028[label="xuu30000",fontsize=16,color="green",shape="box"];2029[label="primEqNat (Succ xuu4000000) xuu30000",fontsize=16,color="burlywood",shape="box"];4489[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4489[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4489 -> 2457[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4490[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2029 -> 4490[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4490 -> 2458[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 2030[label="primEqNat Zero xuu30000",fontsize=16,color="burlywood",shape="box"];4491[label="xuu30000/Succ xuu300000",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4491[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4491 -> 2459[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4492[label="xuu30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2030 -> 4492[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4492 -> 2460[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 2031 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2031[label="xuu400000 * xuu30001",fontsize=16,color="magenta"];2031 -> 2461[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2031 -> 2462[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2032 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2032[label="xuu400001 * xuu30000",fontsize=16,color="magenta"];2032 -> 2463[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2032 -> 2464[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2033 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2033[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2033 -> 2465[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2033 -> 2466[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2034 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2034[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2034 -> 2467[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2034 -> 2468[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2035 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2035[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2035 -> 2469[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2035 -> 2470[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2036 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2036[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2036 -> 2471[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2036 -> 2472[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2037[label="xuu400000",fontsize=16,color="green",shape="box"];2038[label="xuu30000",fontsize=16,color="green",shape="box"];2039[label="xuu400000",fontsize=16,color="green",shape="box"];2040[label="xuu30000",fontsize=16,color="green",shape="box"];2041[label="xuu400000",fontsize=16,color="green",shape="box"];2042[label="xuu30000",fontsize=16,color="green",shape="box"];2043[label="xuu400000",fontsize=16,color="green",shape="box"];2044[label="xuu30000",fontsize=16,color="green",shape="box"];2045[label="xuu400000",fontsize=16,color="green",shape="box"];2046[label="xuu30000",fontsize=16,color="green",shape="box"];2047[label="xuu400000",fontsize=16,color="green",shape="box"];2048[label="xuu30000",fontsize=16,color="green",shape="box"];2049[label="xuu400000",fontsize=16,color="green",shape="box"];2050[label="xuu30000",fontsize=16,color="green",shape="box"];2051[label="xuu400000",fontsize=16,color="green",shape="box"];2052[label="xuu30000",fontsize=16,color="green",shape="box"];2053[label="xuu400000",fontsize=16,color="green",shape="box"];2054[label="xuu30000",fontsize=16,color="green",shape="box"];2055[label="xuu400000",fontsize=16,color="green",shape="box"];2056[label="xuu30000",fontsize=16,color="green",shape="box"];2057[label="xuu400000",fontsize=16,color="green",shape="box"];2058[label="xuu30000",fontsize=16,color="green",shape="box"];2059[label="xuu400000",fontsize=16,color="green",shape="box"];2060[label="xuu30000",fontsize=16,color="green",shape="box"];2061[label="xuu400000",fontsize=16,color="green",shape="box"];2062[label="xuu30000",fontsize=16,color="green",shape="box"];2063[label="xuu400000",fontsize=16,color="green",shape="box"];2064[label="xuu30000",fontsize=16,color="green",shape="box"];2065[label="xuu400001",fontsize=16,color="green",shape="box"];2066[label="xuu30001",fontsize=16,color="green",shape="box"];2067 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2067[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2067 -> 2473[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2067 -> 2474[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2068 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2068[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2068 -> 2475[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2068 -> 2476[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2069 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2069[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2069 -> 2477[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2069 -> 2478[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2070 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2070[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2070 -> 2479[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2070 -> 2480[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2071 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2071[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2071 -> 2481[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2071 -> 2482[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2072 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2072[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2072 -> 2483[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2072 -> 2484[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2073 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2073[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2073 -> 2485[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2073 -> 2486[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2074 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2074[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2074 -> 2487[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2074 -> 2488[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2075 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2075[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2075 -> 2489[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2075 -> 2490[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2076 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2076[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2076 -> 2491[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2076 -> 2492[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2077 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2077[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2077 -> 2493[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2077 -> 2494[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2078 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2078[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2078 -> 2495[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2078 -> 2496[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2079 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2079[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2079 -> 2497[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2079 -> 2498[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2080 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2080[label="xuu400000 == xuu30000",fontsize=16,color="magenta"];2080 -> 2499[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2080 -> 2500[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2081 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2081[label="xuu400000 * xuu30001",fontsize=16,color="magenta"];2081 -> 2501[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2081 -> 2502[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2082 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2082[label="xuu400001 * xuu30000",fontsize=16,color="magenta"];2082 -> 2503[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2082 -> 2504[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2084 -> 164[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2084[label="compare xuu59 xuu60",fontsize=16,color="magenta"];2084 -> 2505[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2084 -> 2506[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2083[label="xuu207 /= GT",fontsize=16,color="black",shape="triangle"];2083 -> 2507[label="",style="solid", color="black", weight=3]; 25.22/9.06 2097[label="(xuu590,xuu591,xuu592) <= (xuu600,xuu601,xuu602)",fontsize=16,color="black",shape="box"];2097 -> 2508[label="",style="solid", color="black", weight=3]; 25.22/9.06 2085 -> 166[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2085[label="compare xuu59 xuu60",fontsize=16,color="magenta"];2085 -> 2509[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2085 -> 2510[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2098[label="Left xuu590 <= Left xuu600",fontsize=16,color="black",shape="box"];2098 -> 2511[label="",style="solid", color="black", weight=3]; 25.22/9.06 2099[label="Left xuu590 <= Right xuu600",fontsize=16,color="black",shape="box"];2099 -> 2512[label="",style="solid", color="black", weight=3]; 25.22/9.06 2100[label="Right xuu590 <= Left xuu600",fontsize=16,color="black",shape="box"];2100 -> 2513[label="",style="solid", color="black", weight=3]; 25.22/9.06 2101[label="Right xuu590 <= Right xuu600",fontsize=16,color="black",shape="box"];2101 -> 2514[label="",style="solid", color="black", weight=3]; 25.22/9.06 2086 -> 168[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2086[label="compare xuu59 xuu60",fontsize=16,color="magenta"];2086 -> 2515[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2086 -> 2516[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2087 -> 169[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2087[label="compare xuu59 xuu60",fontsize=16,color="magenta"];2087 -> 2517[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2087 -> 2518[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2088 -> 170[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2088[label="compare xuu59 xuu60",fontsize=16,color="magenta"];2088 -> 2519[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2088 -> 2520[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2102[label="False <= False",fontsize=16,color="black",shape="box"];2102 -> 2521[label="",style="solid", color="black", weight=3]; 25.22/9.06 2103[label="False <= True",fontsize=16,color="black",shape="box"];2103 -> 2522[label="",style="solid", color="black", weight=3]; 25.22/9.06 2104[label="True <= False",fontsize=16,color="black",shape="box"];2104 -> 2523[label="",style="solid", color="black", weight=3]; 25.22/9.06 2105[label="True <= True",fontsize=16,color="black",shape="box"];2105 -> 2524[label="",style="solid", color="black", weight=3]; 25.22/9.06 2106[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2106 -> 2525[label="",style="solid", color="black", weight=3]; 25.22/9.06 2107[label="Nothing <= Just xuu600",fontsize=16,color="black",shape="box"];2107 -> 2526[label="",style="solid", color="black", weight=3]; 25.22/9.06 2108[label="Just xuu590 <= Nothing",fontsize=16,color="black",shape="box"];2108 -> 2527[label="",style="solid", color="black", weight=3]; 25.22/9.06 2109[label="Just xuu590 <= Just xuu600",fontsize=16,color="black",shape="box"];2109 -> 2528[label="",style="solid", color="black", weight=3]; 25.22/9.06 2110[label="(xuu590,xuu591) <= (xuu600,xuu601)",fontsize=16,color="black",shape="box"];2110 -> 2529[label="",style="solid", color="black", weight=3]; 25.22/9.06 2089 -> 174[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2089[label="compare xuu59 xuu60",fontsize=16,color="magenta"];2089 -> 2530[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2089 -> 2531[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2111[label="LT <= LT",fontsize=16,color="black",shape="box"];2111 -> 2532[label="",style="solid", color="black", weight=3]; 25.22/9.06 2112[label="LT <= EQ",fontsize=16,color="black",shape="box"];2112 -> 2533[label="",style="solid", color="black", weight=3]; 25.22/9.06 2113[label="LT <= GT",fontsize=16,color="black",shape="box"];2113 -> 2534[label="",style="solid", color="black", weight=3]; 25.22/9.06 2114[label="EQ <= LT",fontsize=16,color="black",shape="box"];2114 -> 2535[label="",style="solid", color="black", weight=3]; 25.22/9.06 2115[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2115 -> 2536[label="",style="solid", color="black", weight=3]; 25.22/9.06 2116[label="EQ <= GT",fontsize=16,color="black",shape="box"];2116 -> 2537[label="",style="solid", color="black", weight=3]; 25.22/9.06 2117[label="GT <= LT",fontsize=16,color="black",shape="box"];2117 -> 2538[label="",style="solid", color="black", weight=3]; 25.22/9.06 2118[label="GT <= EQ",fontsize=16,color="black",shape="box"];2118 -> 2539[label="",style="solid", color="black", weight=3]; 25.22/9.06 2119[label="GT <= GT",fontsize=16,color="black",shape="box"];2119 -> 2540[label="",style="solid", color="black", weight=3]; 25.22/9.06 2090 -> 176[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2090[label="compare xuu59 xuu60",fontsize=16,color="magenta"];2090 -> 2541[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2090 -> 2542[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2091 -> 177[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2091[label="compare xuu59 xuu60",fontsize=16,color="magenta"];2091 -> 2543[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2091 -> 2544[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2120[label="GT",fontsize=16,color="green",shape="box"];2121[label="GT",fontsize=16,color="green",shape="box"];2122 -> 2545[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2122[label="primPlusNat (primMulNat xuu300000 (Succ xuu4000100)) (Succ xuu4000100)",fontsize=16,color="magenta"];2122 -> 2546[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2123[label="Zero",fontsize=16,color="green",shape="box"];2124[label="Zero",fontsize=16,color="green",shape="box"];2125[label="Zero",fontsize=16,color="green",shape="box"];2126[label="GT",fontsize=16,color="green",shape="box"];2127[label="xuu112",fontsize=16,color="green",shape="box"];2128[label="xuu114",fontsize=16,color="green",shape="box"];2129[label="xuu112",fontsize=16,color="green",shape="box"];2130[label="xuu114",fontsize=16,color="green",shape="box"];2131[label="xuu112",fontsize=16,color="green",shape="box"];2132[label="xuu114",fontsize=16,color="green",shape="box"];2133[label="xuu112",fontsize=16,color="green",shape="box"];2134[label="xuu114",fontsize=16,color="green",shape="box"];2135[label="xuu112",fontsize=16,color="green",shape="box"];2136[label="xuu114",fontsize=16,color="green",shape="box"];2137[label="xuu112",fontsize=16,color="green",shape="box"];2138[label="xuu114",fontsize=16,color="green",shape="box"];2139[label="xuu112",fontsize=16,color="green",shape="box"];2140[label="xuu114",fontsize=16,color="green",shape="box"];2141[label="xuu112",fontsize=16,color="green",shape="box"];2142[label="xuu114",fontsize=16,color="green",shape="box"];2143[label="xuu112",fontsize=16,color="green",shape="box"];2144[label="xuu114",fontsize=16,color="green",shape="box"];2145[label="xuu112",fontsize=16,color="green",shape="box"];2146[label="xuu114",fontsize=16,color="green",shape="box"];2147[label="xuu112",fontsize=16,color="green",shape="box"];2148[label="xuu114",fontsize=16,color="green",shape="box"];2149[label="xuu112",fontsize=16,color="green",shape="box"];2150[label="xuu114",fontsize=16,color="green",shape="box"];2151[label="xuu112",fontsize=16,color="green",shape="box"];2152[label="xuu114",fontsize=16,color="green",shape="box"];2153[label="xuu112",fontsize=16,color="green",shape="box"];2154[label="xuu114",fontsize=16,color="green",shape="box"];2155[label="xuu111",fontsize=16,color="green",shape="box"];2156[label="xuu113",fontsize=16,color="green",shape="box"];2157[label="xuu111",fontsize=16,color="green",shape="box"];2158[label="xuu113",fontsize=16,color="green",shape="box"];2159[label="xuu111",fontsize=16,color="green",shape="box"];2160[label="xuu113",fontsize=16,color="green",shape="box"];2161[label="xuu111",fontsize=16,color="green",shape="box"];2162[label="xuu113",fontsize=16,color="green",shape="box"];2163[label="xuu111",fontsize=16,color="green",shape="box"];2164[label="xuu113",fontsize=16,color="green",shape="box"];2165[label="xuu111",fontsize=16,color="green",shape="box"];2166[label="xuu113",fontsize=16,color="green",shape="box"];2167[label="xuu111",fontsize=16,color="green",shape="box"];2168[label="xuu113",fontsize=16,color="green",shape="box"];2169[label="xuu111",fontsize=16,color="green",shape="box"];2170[label="xuu113",fontsize=16,color="green",shape="box"];2171[label="xuu111",fontsize=16,color="green",shape="box"];2172[label="xuu113",fontsize=16,color="green",shape="box"];2173[label="xuu111",fontsize=16,color="green",shape="box"];2174[label="xuu113",fontsize=16,color="green",shape="box"];2175[label="xuu111",fontsize=16,color="green",shape="box"];2176[label="xuu113",fontsize=16,color="green",shape="box"];2177[label="xuu111",fontsize=16,color="green",shape="box"];2178[label="xuu113",fontsize=16,color="green",shape="box"];2179[label="xuu111",fontsize=16,color="green",shape="box"];2180[label="xuu113",fontsize=16,color="green",shape="box"];2181[label="xuu111",fontsize=16,color="green",shape="box"];2182[label="xuu113",fontsize=16,color="green",shape="box"];2183[label="compare1 (xuu185,xuu186) (xuu187,xuu188) False",fontsize=16,color="black",shape="box"];2183 -> 2553[label="",style="solid", color="black", weight=3]; 25.22/9.06 2184[label="compare1 (xuu185,xuu186) (xuu187,xuu188) True",fontsize=16,color="black",shape="box"];2184 -> 2554[label="",style="solid", color="black", weight=3]; 25.22/9.06 2185[label="True",fontsize=16,color="green",shape="box"];2223 -> 1811[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2223[label="FiniteMap.sizeFM xuu33",fontsize=16,color="magenta"];2223 -> 2555[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2224[label="xuu38",fontsize=16,color="green",shape="box"];2226 -> 1798[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2226[label="FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38",fontsize=16,color="magenta"];2226 -> 2556[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2226 -> 2557[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2225[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 xuu210",fontsize=16,color="burlywood",shape="triangle"];4493[label="xuu210/False",fontsize=10,color="white",style="solid",shape="box"];2225 -> 4493[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4493 -> 2558[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4494[label="xuu210/True",fontsize=10,color="white",style="solid",shape="box"];2225 -> 4494[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4494 -> 2559[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 2231[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu33 [] xuu31 FiniteMap.EmptyFM xuu33 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2231 -> 2560[label="",style="solid", color="black", weight=3]; 25.22/9.06 2232[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384)",fontsize=16,color="black",shape="box"];2232 -> 2561[label="",style="solid", color="black", weight=3]; 25.22/9.06 2906[label="Succ (Succ (primPlusNat xuu20900 xuu20800))",fontsize=16,color="green",shape="box"];2906 -> 2917[label="",style="dashed", color="green", weight=3]; 25.22/9.06 2907[label="Succ xuu20900",fontsize=16,color="green",shape="box"];2908[label="Succ xuu20800",fontsize=16,color="green",shape="box"];2909[label="Zero",fontsize=16,color="green",shape="box"];2910[label="xuu20800",fontsize=16,color="green",shape="box"];2911[label="xuu20900",fontsize=16,color="green",shape="box"];3738[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu307 xuu308 xuu305",fontsize=16,color="black",shape="box"];3738 -> 3740[label="",style="solid", color="black", weight=3]; 25.22/9.06 3739[label="FiniteMap.mkBranchRight_size xuu307 xuu308 xuu305",fontsize=16,color="black",shape="box"];3739 -> 3741[label="",style="solid", color="black", weight=3]; 25.22/9.06 2236[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu26 (xuu300 : xuu301) xuu31 xuu34 (xuu300 : xuu301) xuu31 xuu26 xuu34 True",fontsize=16,color="black",shape="box"];2236 -> 2565[label="",style="solid", color="black", weight=3]; 25.22/9.06 2237[label="FiniteMap.mkBalBranch6MkBalBranch1 FiniteMap.EmptyFM (xuu300 : xuu301) xuu31 xuu34 FiniteMap.EmptyFM xuu34 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2237 -> 2566[label="",style="solid", color="black", weight=3]; 25.22/9.06 2238[label="FiniteMap.mkBalBranch6MkBalBranch1 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264)",fontsize=16,color="black",shape="box"];2238 -> 2567[label="",style="solid", color="black", weight=3]; 25.22/9.06 2240 -> 1418[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2240[label="FiniteMap.sizeFM xuu343 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2240 -> 2568[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2240 -> 2569[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2239[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 xuu215",fontsize=16,color="burlywood",shape="triangle"];4495[label="xuu215/False",fontsize=10,color="white",style="solid",shape="box"];2239 -> 4495[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4495 -> 2570[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4496[label="xuu215/True",fontsize=10,color="white",style="solid",shape="box"];2239 -> 4496[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4496 -> 2571[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 2245[label="xuu101",fontsize=16,color="green",shape="box"];2246[label="xuu98",fontsize=16,color="green",shape="box"];2247[label="xuu101",fontsize=16,color="green",shape="box"];2248[label="xuu98",fontsize=16,color="green",shape="box"];2249[label="xuu101",fontsize=16,color="green",shape="box"];2250[label="xuu98",fontsize=16,color="green",shape="box"];2251[label="xuu101",fontsize=16,color="green",shape="box"];2252[label="xuu98",fontsize=16,color="green",shape="box"];2253[label="xuu101",fontsize=16,color="green",shape="box"];2254[label="xuu98",fontsize=16,color="green",shape="box"];2255[label="xuu101",fontsize=16,color="green",shape="box"];2256[label="xuu98",fontsize=16,color="green",shape="box"];2257[label="xuu101",fontsize=16,color="green",shape="box"];2258[label="xuu98",fontsize=16,color="green",shape="box"];2259[label="xuu101",fontsize=16,color="green",shape="box"];2260[label="xuu98",fontsize=16,color="green",shape="box"];2261[label="xuu101",fontsize=16,color="green",shape="box"];2262[label="xuu98",fontsize=16,color="green",shape="box"];2263[label="xuu101",fontsize=16,color="green",shape="box"];2264[label="xuu98",fontsize=16,color="green",shape="box"];2265[label="xuu101",fontsize=16,color="green",shape="box"];2266[label="xuu98",fontsize=16,color="green",shape="box"];2267[label="xuu101",fontsize=16,color="green",shape="box"];2268[label="xuu98",fontsize=16,color="green",shape="box"];2269[label="xuu101",fontsize=16,color="green",shape="box"];2270[label="xuu98",fontsize=16,color="green",shape="box"];2271[label="xuu101",fontsize=16,color="green",shape="box"];2272[label="xuu98",fontsize=16,color="green",shape="box"];2273[label="xuu99",fontsize=16,color="green",shape="box"];2274[label="xuu102",fontsize=16,color="green",shape="box"];2275[label="xuu99",fontsize=16,color="green",shape="box"];2276[label="xuu102",fontsize=16,color="green",shape="box"];2277[label="xuu99",fontsize=16,color="green",shape="box"];2278[label="xuu102",fontsize=16,color="green",shape="box"];2279[label="xuu99",fontsize=16,color="green",shape="box"];2280[label="xuu102",fontsize=16,color="green",shape="box"];2281[label="xuu99",fontsize=16,color="green",shape="box"];2282[label="xuu102",fontsize=16,color="green",shape="box"];2283[label="xuu99",fontsize=16,color="green",shape="box"];2284[label="xuu102",fontsize=16,color="green",shape="box"];2285[label="xuu99",fontsize=16,color="green",shape="box"];2286[label="xuu102",fontsize=16,color="green",shape="box"];2287[label="xuu99",fontsize=16,color="green",shape="box"];2288[label="xuu102",fontsize=16,color="green",shape="box"];2289[label="xuu99",fontsize=16,color="green",shape="box"];2290[label="xuu102",fontsize=16,color="green",shape="box"];2291[label="xuu99",fontsize=16,color="green",shape="box"];2292[label="xuu102",fontsize=16,color="green",shape="box"];2293[label="xuu99",fontsize=16,color="green",shape="box"];2294[label="xuu102",fontsize=16,color="green",shape="box"];2295[label="xuu99",fontsize=16,color="green",shape="box"];2296[label="xuu102",fontsize=16,color="green",shape="box"];2297[label="xuu99",fontsize=16,color="green",shape="box"];2298[label="xuu102",fontsize=16,color="green",shape="box"];2299[label="xuu99",fontsize=16,color="green",shape="box"];2300[label="xuu102",fontsize=16,color="green",shape="box"];2301 -> 1434[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2301[label="xuu100 <= xuu103",fontsize=16,color="magenta"];2301 -> 2572[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2301 -> 2573[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2302 -> 1435[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2302[label="xuu100 <= xuu103",fontsize=16,color="magenta"];2302 -> 2574[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2302 -> 2575[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2303 -> 1436[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2303[label="xuu100 <= xuu103",fontsize=16,color="magenta"];2303 -> 2576[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2303 -> 2577[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2304 -> 1437[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2304[label="xuu100 <= xuu103",fontsize=16,color="magenta"];2304 -> 2578[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2304 -> 2579[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2305 -> 1438[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2305[label="xuu100 <= xuu103",fontsize=16,color="magenta"];2305 -> 2580[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2305 -> 2581[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2306 -> 1439[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2306[label="xuu100 <= xuu103",fontsize=16,color="magenta"];2306 -> 2582[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2306 -> 2583[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2307 -> 1440[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2307[label="xuu100 <= xuu103",fontsize=16,color="magenta"];2307 -> 2584[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2307 -> 2585[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2308 -> 1441[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2308[label="xuu100 <= xuu103",fontsize=16,color="magenta"];2308 -> 2586[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2308 -> 2587[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2309 -> 1442[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2309[label="xuu100 <= xuu103",fontsize=16,color="magenta"];2309 -> 2588[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2309 -> 2589[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2310 -> 1443[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2310[label="xuu100 <= xuu103",fontsize=16,color="magenta"];2310 -> 2590[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2310 -> 2591[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2311 -> 1444[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2311[label="xuu100 <= xuu103",fontsize=16,color="magenta"];2311 -> 2592[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2311 -> 2593[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2312 -> 1445[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2312[label="xuu100 <= xuu103",fontsize=16,color="magenta"];2312 -> 2594[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2312 -> 2595[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2313 -> 1446[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2313[label="xuu100 <= xuu103",fontsize=16,color="magenta"];2313 -> 2596[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2313 -> 2597[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2314 -> 1447[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2314[label="xuu100 <= xuu103",fontsize=16,color="magenta"];2314 -> 2598[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2314 -> 2599[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2315 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2315[label="xuu99 == xuu102",fontsize=16,color="magenta"];2315 -> 2600[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2315 -> 2601[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2316 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2316[label="xuu99 == xuu102",fontsize=16,color="magenta"];2316 -> 2602[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2316 -> 2603[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2317 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2317[label="xuu99 == xuu102",fontsize=16,color="magenta"];2317 -> 2604[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2317 -> 2605[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2318 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2318[label="xuu99 == xuu102",fontsize=16,color="magenta"];2318 -> 2606[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2318 -> 2607[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2319 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2319[label="xuu99 == xuu102",fontsize=16,color="magenta"];2319 -> 2608[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2319 -> 2609[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2320 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2320[label="xuu99 == xuu102",fontsize=16,color="magenta"];2320 -> 2610[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2320 -> 2611[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2321 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2321[label="xuu99 == xuu102",fontsize=16,color="magenta"];2321 -> 2612[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2321 -> 2613[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2322 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2322[label="xuu99 == xuu102",fontsize=16,color="magenta"];2322 -> 2614[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2322 -> 2615[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2323 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2323[label="xuu99 == xuu102",fontsize=16,color="magenta"];2323 -> 2616[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2323 -> 2617[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2324 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2324[label="xuu99 == xuu102",fontsize=16,color="magenta"];2324 -> 2618[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2324 -> 2619[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2325 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2325[label="xuu99 == xuu102",fontsize=16,color="magenta"];2325 -> 2620[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2325 -> 2621[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2326 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2326[label="xuu99 == xuu102",fontsize=16,color="magenta"];2326 -> 2622[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2326 -> 2623[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2327 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2327[label="xuu99 == xuu102",fontsize=16,color="magenta"];2327 -> 2624[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2327 -> 2625[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2328 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2328[label="xuu99 == xuu102",fontsize=16,color="magenta"];2328 -> 2626[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2328 -> 2627[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2329[label="xuu206",fontsize=16,color="green",shape="box"];2330[label="True",fontsize=16,color="green",shape="box"];2331[label="compare0 (xuu170,xuu171,xuu172) (xuu173,xuu174,xuu175) otherwise",fontsize=16,color="black",shape="box"];2331 -> 2628[label="",style="solid", color="black", weight=3]; 25.22/9.06 2332[label="LT",fontsize=16,color="green",shape="box"];2333[label="xuu400001",fontsize=16,color="green",shape="box"];2334[label="xuu30001",fontsize=16,color="green",shape="box"];2335[label="xuu400001",fontsize=16,color="green",shape="box"];2336[label="xuu30001",fontsize=16,color="green",shape="box"];2337[label="xuu400001",fontsize=16,color="green",shape="box"];2338[label="xuu30001",fontsize=16,color="green",shape="box"];2339[label="xuu400001",fontsize=16,color="green",shape="box"];2340[label="xuu30001",fontsize=16,color="green",shape="box"];2341[label="xuu400001",fontsize=16,color="green",shape="box"];2342[label="xuu30001",fontsize=16,color="green",shape="box"];2343[label="xuu400001",fontsize=16,color="green",shape="box"];2344[label="xuu30001",fontsize=16,color="green",shape="box"];2345[label="xuu400001",fontsize=16,color="green",shape="box"];2346[label="xuu30001",fontsize=16,color="green",shape="box"];2347[label="xuu400001",fontsize=16,color="green",shape="box"];2348[label="xuu30001",fontsize=16,color="green",shape="box"];2349[label="xuu400001",fontsize=16,color="green",shape="box"];2350[label="xuu30001",fontsize=16,color="green",shape="box"];2351[label="xuu400001",fontsize=16,color="green",shape="box"];2352[label="xuu30001",fontsize=16,color="green",shape="box"];2353[label="xuu400001",fontsize=16,color="green",shape="box"];2354[label="xuu30001",fontsize=16,color="green",shape="box"];2355[label="xuu400001",fontsize=16,color="green",shape="box"];2356[label="xuu30001",fontsize=16,color="green",shape="box"];2357[label="xuu400001",fontsize=16,color="green",shape="box"];2358[label="xuu30001",fontsize=16,color="green",shape="box"];2359[label="xuu400001",fontsize=16,color="green",shape="box"];2360[label="xuu30001",fontsize=16,color="green",shape="box"];2361[label="xuu400000",fontsize=16,color="green",shape="box"];2362[label="xuu30000",fontsize=16,color="green",shape="box"];2363[label="xuu400000",fontsize=16,color="green",shape="box"];2364[label="xuu30000",fontsize=16,color="green",shape="box"];2365[label="xuu400000",fontsize=16,color="green",shape="box"];2366[label="xuu30000",fontsize=16,color="green",shape="box"];2367[label="xuu400000",fontsize=16,color="green",shape="box"];2368[label="xuu30000",fontsize=16,color="green",shape="box"];2369[label="xuu400000",fontsize=16,color="green",shape="box"];2370[label="xuu30000",fontsize=16,color="green",shape="box"];2371[label="xuu400000",fontsize=16,color="green",shape="box"];2372[label="xuu30000",fontsize=16,color="green",shape="box"];2373[label="xuu400000",fontsize=16,color="green",shape="box"];2374[label="xuu30000",fontsize=16,color="green",shape="box"];2375[label="xuu400000",fontsize=16,color="green",shape="box"];2376[label="xuu30000",fontsize=16,color="green",shape="box"];2377[label="xuu400000",fontsize=16,color="green",shape="box"];2378[label="xuu30000",fontsize=16,color="green",shape="box"];2379[label="xuu400000",fontsize=16,color="green",shape="box"];2380[label="xuu30000",fontsize=16,color="green",shape="box"];2381[label="xuu400000",fontsize=16,color="green",shape="box"];2382[label="xuu30000",fontsize=16,color="green",shape="box"];2383[label="xuu400000",fontsize=16,color="green",shape="box"];2384[label="xuu30000",fontsize=16,color="green",shape="box"];2385[label="xuu400000",fontsize=16,color="green",shape="box"];2386[label="xuu30000",fontsize=16,color="green",shape="box"];2387[label="xuu400000",fontsize=16,color="green",shape="box"];2388[label="xuu30000",fontsize=16,color="green",shape="box"];2389 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2389[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2389 -> 2629[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2389 -> 2630[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2390 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2390[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2390 -> 2631[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2390 -> 2632[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2391 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2391[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2391 -> 2633[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2391 -> 2634[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2392 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2392[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2392 -> 2635[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2392 -> 2636[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2393 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2393[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2393 -> 2637[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2393 -> 2638[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2394 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2394[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2394 -> 2639[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2394 -> 2640[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2395 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2395[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2395 -> 2641[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2395 -> 2642[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2396 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2396[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2396 -> 2643[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2396 -> 2644[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2397 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2397[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2397 -> 2645[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2397 -> 2646[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2398 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2398[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2398 -> 2647[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2398 -> 2648[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2399 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2399[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2399 -> 2649[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2399 -> 2650[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2400 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2400[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2400 -> 2651[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2400 -> 2652[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2401 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2401[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2401 -> 2653[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2401 -> 2654[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2402 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2402[label="xuu400002 == xuu30002",fontsize=16,color="magenta"];2402 -> 2655[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2402 -> 2656[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2403 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2403[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2403 -> 2657[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2403 -> 2658[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2404 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2404[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2404 -> 2659[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2404 -> 2660[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2405 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2405[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2405 -> 2661[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2405 -> 2662[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2406 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2406[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2406 -> 2663[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2406 -> 2664[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2407 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2407[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2407 -> 2665[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2407 -> 2666[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2408 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2408[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2408 -> 2667[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2408 -> 2668[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2409 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2409[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2409 -> 2669[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2409 -> 2670[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2410 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2410[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2410 -> 2671[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2410 -> 2672[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2411 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2411[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2411 -> 2673[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2411 -> 2674[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2412 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2412[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2412 -> 2675[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2412 -> 2676[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2413 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2413[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2413 -> 2677[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2413 -> 2678[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2414 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2414[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2414 -> 2679[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2414 -> 2680[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2415 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2415[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2415 -> 2681[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2415 -> 2682[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2416 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2416[label="xuu400001 == xuu30001",fontsize=16,color="magenta"];2416 -> 2683[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2416 -> 2684[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2417[label="xuu400000",fontsize=16,color="green",shape="box"];2418[label="xuu30000",fontsize=16,color="green",shape="box"];2419[label="xuu400000",fontsize=16,color="green",shape="box"];2420[label="xuu30000",fontsize=16,color="green",shape="box"];2421[label="xuu400000",fontsize=16,color="green",shape="box"];2422[label="xuu30000",fontsize=16,color="green",shape="box"];2423[label="xuu400000",fontsize=16,color="green",shape="box"];2424[label="xuu30000",fontsize=16,color="green",shape="box"];2425[label="xuu400000",fontsize=16,color="green",shape="box"];2426[label="xuu30000",fontsize=16,color="green",shape="box"];2427[label="xuu400000",fontsize=16,color="green",shape="box"];2428[label="xuu30000",fontsize=16,color="green",shape="box"];2429[label="xuu400000",fontsize=16,color="green",shape="box"];2430[label="xuu30000",fontsize=16,color="green",shape="box"];2431[label="xuu400000",fontsize=16,color="green",shape="box"];2432[label="xuu30000",fontsize=16,color="green",shape="box"];2433[label="xuu400000",fontsize=16,color="green",shape="box"];2434[label="xuu30000",fontsize=16,color="green",shape="box"];2435[label="xuu400000",fontsize=16,color="green",shape="box"];2436[label="xuu30000",fontsize=16,color="green",shape="box"];2437[label="xuu400000",fontsize=16,color="green",shape="box"];2438[label="xuu30000",fontsize=16,color="green",shape="box"];2439[label="xuu400000",fontsize=16,color="green",shape="box"];2440[label="xuu30000",fontsize=16,color="green",shape="box"];2441[label="xuu400000",fontsize=16,color="green",shape="box"];2442[label="xuu30000",fontsize=16,color="green",shape="box"];2443[label="xuu400000",fontsize=16,color="green",shape="box"];2444[label="xuu30000",fontsize=16,color="green",shape="box"];2445 -> 1610[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2445[label="primEqNat xuu4000000 xuu300000",fontsize=16,color="magenta"];2445 -> 2685[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2445 -> 2686[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2446[label="False",fontsize=16,color="green",shape="box"];2447[label="False",fontsize=16,color="green",shape="box"];2448[label="True",fontsize=16,color="green",shape="box"];2449[label="False",fontsize=16,color="green",shape="box"];2450[label="True",fontsize=16,color="green",shape="box"];2451 -> 1610[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2451[label="primEqNat xuu4000000 xuu300000",fontsize=16,color="magenta"];2451 -> 2687[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2451 -> 2688[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2452[label="False",fontsize=16,color="green",shape="box"];2453[label="False",fontsize=16,color="green",shape="box"];2454[label="True",fontsize=16,color="green",shape="box"];2455[label="False",fontsize=16,color="green",shape="box"];2456[label="True",fontsize=16,color="green",shape="box"];2457[label="primEqNat (Succ xuu4000000) (Succ xuu300000)",fontsize=16,color="black",shape="box"];2457 -> 2689[label="",style="solid", color="black", weight=3]; 25.22/9.06 2458[label="primEqNat (Succ xuu4000000) Zero",fontsize=16,color="black",shape="box"];2458 -> 2690[label="",style="solid", color="black", weight=3]; 25.22/9.06 2459[label="primEqNat Zero (Succ xuu300000)",fontsize=16,color="black",shape="box"];2459 -> 2691[label="",style="solid", color="black", weight=3]; 25.22/9.06 2460[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2460 -> 2692[label="",style="solid", color="black", weight=3]; 25.22/9.06 2461[label="xuu30001",fontsize=16,color="green",shape="box"];2462[label="xuu400000",fontsize=16,color="green",shape="box"];2463[label="xuu30000",fontsize=16,color="green",shape="box"];2464[label="xuu400001",fontsize=16,color="green",shape="box"];2465[label="xuu400001",fontsize=16,color="green",shape="box"];2466[label="xuu30001",fontsize=16,color="green",shape="box"];2467[label="xuu400001",fontsize=16,color="green",shape="box"];2468[label="xuu30001",fontsize=16,color="green",shape="box"];2469[label="xuu400000",fontsize=16,color="green",shape="box"];2470[label="xuu30000",fontsize=16,color="green",shape="box"];2471[label="xuu400000",fontsize=16,color="green",shape="box"];2472[label="xuu30000",fontsize=16,color="green",shape="box"];2473[label="xuu400000",fontsize=16,color="green",shape="box"];2474[label="xuu30000",fontsize=16,color="green",shape="box"];2475[label="xuu400000",fontsize=16,color="green",shape="box"];2476[label="xuu30000",fontsize=16,color="green",shape="box"];2477[label="xuu400000",fontsize=16,color="green",shape="box"];2478[label="xuu30000",fontsize=16,color="green",shape="box"];2479[label="xuu400000",fontsize=16,color="green",shape="box"];2480[label="xuu30000",fontsize=16,color="green",shape="box"];2481[label="xuu400000",fontsize=16,color="green",shape="box"];2482[label="xuu30000",fontsize=16,color="green",shape="box"];2483[label="xuu400000",fontsize=16,color="green",shape="box"];2484[label="xuu30000",fontsize=16,color="green",shape="box"];2485[label="xuu400000",fontsize=16,color="green",shape="box"];2486[label="xuu30000",fontsize=16,color="green",shape="box"];2487[label="xuu400000",fontsize=16,color="green",shape="box"];2488[label="xuu30000",fontsize=16,color="green",shape="box"];2489[label="xuu400000",fontsize=16,color="green",shape="box"];2490[label="xuu30000",fontsize=16,color="green",shape="box"];2491[label="xuu400000",fontsize=16,color="green",shape="box"];2492[label="xuu30000",fontsize=16,color="green",shape="box"];2493[label="xuu400000",fontsize=16,color="green",shape="box"];2494[label="xuu30000",fontsize=16,color="green",shape="box"];2495[label="xuu400000",fontsize=16,color="green",shape="box"];2496[label="xuu30000",fontsize=16,color="green",shape="box"];2497[label="xuu400000",fontsize=16,color="green",shape="box"];2498[label="xuu30000",fontsize=16,color="green",shape="box"];2499[label="xuu400000",fontsize=16,color="green",shape="box"];2500[label="xuu30000",fontsize=16,color="green",shape="box"];2501[label="xuu30001",fontsize=16,color="green",shape="box"];2502[label="xuu400000",fontsize=16,color="green",shape="box"];2503[label="xuu30000",fontsize=16,color="green",shape="box"];2504[label="xuu400001",fontsize=16,color="green",shape="box"];2505[label="xuu60",fontsize=16,color="green",shape="box"];2506[label="xuu59",fontsize=16,color="green",shape="box"];2507 -> 2693[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2507[label="not (xuu207 == GT)",fontsize=16,color="magenta"];2507 -> 2694[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2508 -> 1854[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2508[label="xuu590 < xuu600 || xuu590 == xuu600 && (xuu591 < xuu601 || xuu591 == xuu601 && xuu592 <= xuu602)",fontsize=16,color="magenta"];2508 -> 2703[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2508 -> 2704[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2509[label="xuu60",fontsize=16,color="green",shape="box"];2510[label="xuu59",fontsize=16,color="green",shape="box"];2511[label="xuu590 <= xuu600",fontsize=16,color="blue",shape="box"];4497[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4497[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4497 -> 2705[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4498[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4498[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4498 -> 2706[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4499[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4499[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4499 -> 2707[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4500[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4500[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4500 -> 2708[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4501[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4501[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4501 -> 2709[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4502[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4502[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4502 -> 2710[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4503[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4503[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4503 -> 2711[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4504[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4504[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4504 -> 2712[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4505[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4505[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4505 -> 2713[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4506[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4506[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4506 -> 2714[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4507[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4507[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4507 -> 2715[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4508[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4508[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4508 -> 2716[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4509[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4509[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4509 -> 2717[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4510[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2511 -> 4510[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4510 -> 2718[label="",style="solid", color="blue", weight=3]; 25.22/9.06 2512[label="True",fontsize=16,color="green",shape="box"];2513[label="False",fontsize=16,color="green",shape="box"];2514[label="xuu590 <= xuu600",fontsize=16,color="blue",shape="box"];4511[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4511[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4511 -> 2719[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4512[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4512[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4512 -> 2720[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4513[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4513[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4513 -> 2721[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4514[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4514[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4514 -> 2722[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4515[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4515[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4515 -> 2723[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4516[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4516[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4516 -> 2724[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4517[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4517[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4517 -> 2725[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4518[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4518[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4518 -> 2726[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4519[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4519[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4519 -> 2727[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4520[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4520[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4520 -> 2728[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4521[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4521[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4521 -> 2729[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4522[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4522[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4522 -> 2730[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4523[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4523[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4523 -> 2731[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4524[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2514 -> 4524[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4524 -> 2732[label="",style="solid", color="blue", weight=3]; 25.22/9.06 2515[label="xuu60",fontsize=16,color="green",shape="box"];2516[label="xuu59",fontsize=16,color="green",shape="box"];2517[label="xuu60",fontsize=16,color="green",shape="box"];2518[label="xuu59",fontsize=16,color="green",shape="box"];2519[label="xuu60",fontsize=16,color="green",shape="box"];2520[label="xuu59",fontsize=16,color="green",shape="box"];2521[label="True",fontsize=16,color="green",shape="box"];2522[label="True",fontsize=16,color="green",shape="box"];2523[label="False",fontsize=16,color="green",shape="box"];2524[label="True",fontsize=16,color="green",shape="box"];2525[label="True",fontsize=16,color="green",shape="box"];2526[label="True",fontsize=16,color="green",shape="box"];2527[label="False",fontsize=16,color="green",shape="box"];2528[label="xuu590 <= xuu600",fontsize=16,color="blue",shape="box"];4525[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4525[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4525 -> 2733[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4526[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4526[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4526 -> 2734[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4527[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4527[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4527 -> 2735[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4528[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4528[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4528 -> 2736[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4529[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4529[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4529 -> 2737[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4530[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4530[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4530 -> 2738[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4531[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4531[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4531 -> 2739[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4532[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4532[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4532 -> 2740[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4533[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4533[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4533 -> 2741[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4534[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4534[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4534 -> 2742[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4535[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4535[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4535 -> 2743[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4536[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4536[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4536 -> 2744[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4537[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4537[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4537 -> 2745[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4538[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 4538[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4538 -> 2746[label="",style="solid", color="blue", weight=3]; 25.22/9.06 2529 -> 1854[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2529[label="xuu590 < xuu600 || xuu590 == xuu600 && xuu591 <= xuu601",fontsize=16,color="magenta"];2529 -> 2747[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2529 -> 2748[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2530[label="xuu60",fontsize=16,color="green",shape="box"];2531[label="xuu59",fontsize=16,color="green",shape="box"];2532[label="True",fontsize=16,color="green",shape="box"];2533[label="True",fontsize=16,color="green",shape="box"];2534[label="True",fontsize=16,color="green",shape="box"];2535[label="False",fontsize=16,color="green",shape="box"];2536[label="True",fontsize=16,color="green",shape="box"];2537[label="True",fontsize=16,color="green",shape="box"];2538[label="False",fontsize=16,color="green",shape="box"];2539[label="False",fontsize=16,color="green",shape="box"];2540[label="True",fontsize=16,color="green",shape="box"];2541[label="xuu60",fontsize=16,color="green",shape="box"];2542[label="xuu59",fontsize=16,color="green",shape="box"];2543[label="xuu60",fontsize=16,color="green",shape="box"];2544[label="xuu59",fontsize=16,color="green",shape="box"];2546 -> 1355[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2546[label="primMulNat xuu300000 (Succ xuu4000100)",fontsize=16,color="magenta"];2546 -> 2749[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2546 -> 2750[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2545 -> 2547[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2545[label="primPlusNat xuu219 (Succ xuu4000100)",fontsize=16,color="magenta"];2545 -> 2751[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2545 -> 2752[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2553[label="compare0 (xuu185,xuu186) (xuu187,xuu188) otherwise",fontsize=16,color="black",shape="box"];2553 -> 2753[label="",style="solid", color="black", weight=3]; 25.22/9.06 2554[label="LT",fontsize=16,color="green",shape="box"];2555[label="xuu33",fontsize=16,color="green",shape="box"];2556 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2556[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38",fontsize=16,color="magenta"];2556 -> 2754[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2556 -> 2755[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2557 -> 2201[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2557[label="FiniteMap.mkBalBranch6Size_l xuu33 [] xuu31 xuu38",fontsize=16,color="magenta"];2558[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 False",fontsize=16,color="black",shape="box"];2558 -> 2756[label="",style="solid", color="black", weight=3]; 25.22/9.06 2559[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 True",fontsize=16,color="black",shape="box"];2559 -> 2757[label="",style="solid", color="black", weight=3]; 25.22/9.06 2560[label="error []",fontsize=16,color="red",shape="box"];2561[label="FiniteMap.mkBalBranch6MkBalBranch02 xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384)",fontsize=16,color="black",shape="box"];2561 -> 2758[label="",style="solid", color="black", weight=3]; 25.22/9.06 2917 -> 2547[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2917[label="primPlusNat xuu20900 xuu20800",fontsize=16,color="magenta"];2917 -> 3037[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2917 -> 3038[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 3740 -> 2186[label="",style="dashed", color="red", weight=0]; 25.22/9.06 3740[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu307 xuu308 xuu305)",fontsize=16,color="magenta"];3740 -> 3742[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 3740 -> 3743[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 3741[label="FiniteMap.sizeFM xuu308",fontsize=16,color="burlywood",shape="triangle"];4539[label="xuu308/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3741 -> 4539[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4539 -> 3744[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4540[label="xuu308/FiniteMap.Branch xuu3080 xuu3081 xuu3082 xuu3083 xuu3084",fontsize=10,color="white",style="solid",shape="box"];3741 -> 4540[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4540 -> 3745[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 2565 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2565[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) (xuu300 : xuu301) xuu31 xuu26 xuu34",fontsize=16,color="magenta"];2565 -> 3506[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2565 -> 3507[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2565 -> 3508[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2565 -> 3509[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2565 -> 3510[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2566[label="error []",fontsize=16,color="red",shape="box"];2567[label="FiniteMap.mkBalBranch6MkBalBranch12 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264)",fontsize=16,color="black",shape="box"];2567 -> 2763[label="",style="solid", color="black", weight=3]; 25.22/9.06 2568 -> 1811[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2568[label="FiniteMap.sizeFM xuu343",fontsize=16,color="magenta"];2568 -> 2764[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2569 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2569[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2569 -> 2765[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2569 -> 2766[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2570[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 False",fontsize=16,color="black",shape="box"];2570 -> 2767[label="",style="solid", color="black", weight=3]; 25.22/9.06 2571[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];2571 -> 2768[label="",style="solid", color="black", weight=3]; 25.22/9.06 2572[label="xuu100",fontsize=16,color="green",shape="box"];2573[label="xuu103",fontsize=16,color="green",shape="box"];2574[label="xuu100",fontsize=16,color="green",shape="box"];2575[label="xuu103",fontsize=16,color="green",shape="box"];2576[label="xuu100",fontsize=16,color="green",shape="box"];2577[label="xuu103",fontsize=16,color="green",shape="box"];2578[label="xuu100",fontsize=16,color="green",shape="box"];2579[label="xuu103",fontsize=16,color="green",shape="box"];2580[label="xuu100",fontsize=16,color="green",shape="box"];2581[label="xuu103",fontsize=16,color="green",shape="box"];2582[label="xuu100",fontsize=16,color="green",shape="box"];2583[label="xuu103",fontsize=16,color="green",shape="box"];2584[label="xuu100",fontsize=16,color="green",shape="box"];2585[label="xuu103",fontsize=16,color="green",shape="box"];2586[label="xuu100",fontsize=16,color="green",shape="box"];2587[label="xuu103",fontsize=16,color="green",shape="box"];2588[label="xuu100",fontsize=16,color="green",shape="box"];2589[label="xuu103",fontsize=16,color="green",shape="box"];2590[label="xuu100",fontsize=16,color="green",shape="box"];2591[label="xuu103",fontsize=16,color="green",shape="box"];2592[label="xuu100",fontsize=16,color="green",shape="box"];2593[label="xuu103",fontsize=16,color="green",shape="box"];2594[label="xuu100",fontsize=16,color="green",shape="box"];2595[label="xuu103",fontsize=16,color="green",shape="box"];2596[label="xuu100",fontsize=16,color="green",shape="box"];2597[label="xuu103",fontsize=16,color="green",shape="box"];2598[label="xuu100",fontsize=16,color="green",shape="box"];2599[label="xuu103",fontsize=16,color="green",shape="box"];2600[label="xuu99",fontsize=16,color="green",shape="box"];2601[label="xuu102",fontsize=16,color="green",shape="box"];2602[label="xuu99",fontsize=16,color="green",shape="box"];2603[label="xuu102",fontsize=16,color="green",shape="box"];2604[label="xuu99",fontsize=16,color="green",shape="box"];2605[label="xuu102",fontsize=16,color="green",shape="box"];2606[label="xuu99",fontsize=16,color="green",shape="box"];2607[label="xuu102",fontsize=16,color="green",shape="box"];2608[label="xuu99",fontsize=16,color="green",shape="box"];2609[label="xuu102",fontsize=16,color="green",shape="box"];2610[label="xuu99",fontsize=16,color="green",shape="box"];2611[label="xuu102",fontsize=16,color="green",shape="box"];2612[label="xuu99",fontsize=16,color="green",shape="box"];2613[label="xuu102",fontsize=16,color="green",shape="box"];2614[label="xuu99",fontsize=16,color="green",shape="box"];2615[label="xuu102",fontsize=16,color="green",shape="box"];2616[label="xuu99",fontsize=16,color="green",shape="box"];2617[label="xuu102",fontsize=16,color="green",shape="box"];2618[label="xuu99",fontsize=16,color="green",shape="box"];2619[label="xuu102",fontsize=16,color="green",shape="box"];2620[label="xuu99",fontsize=16,color="green",shape="box"];2621[label="xuu102",fontsize=16,color="green",shape="box"];2622[label="xuu99",fontsize=16,color="green",shape="box"];2623[label="xuu102",fontsize=16,color="green",shape="box"];2624[label="xuu99",fontsize=16,color="green",shape="box"];2625[label="xuu102",fontsize=16,color="green",shape="box"];2626[label="xuu99",fontsize=16,color="green",shape="box"];2627[label="xuu102",fontsize=16,color="green",shape="box"];2628[label="compare0 (xuu170,xuu171,xuu172) (xuu173,xuu174,xuu175) True",fontsize=16,color="black",shape="box"];2628 -> 2769[label="",style="solid", color="black", weight=3]; 25.22/9.06 2629[label="xuu400002",fontsize=16,color="green",shape="box"];2630[label="xuu30002",fontsize=16,color="green",shape="box"];2631[label="xuu400002",fontsize=16,color="green",shape="box"];2632[label="xuu30002",fontsize=16,color="green",shape="box"];2633[label="xuu400002",fontsize=16,color="green",shape="box"];2634[label="xuu30002",fontsize=16,color="green",shape="box"];2635[label="xuu400002",fontsize=16,color="green",shape="box"];2636[label="xuu30002",fontsize=16,color="green",shape="box"];2637[label="xuu400002",fontsize=16,color="green",shape="box"];2638[label="xuu30002",fontsize=16,color="green",shape="box"];2639[label="xuu400002",fontsize=16,color="green",shape="box"];2640[label="xuu30002",fontsize=16,color="green",shape="box"];2641[label="xuu400002",fontsize=16,color="green",shape="box"];2642[label="xuu30002",fontsize=16,color="green",shape="box"];2643[label="xuu400002",fontsize=16,color="green",shape="box"];2644[label="xuu30002",fontsize=16,color="green",shape="box"];2645[label="xuu400002",fontsize=16,color="green",shape="box"];2646[label="xuu30002",fontsize=16,color="green",shape="box"];2647[label="xuu400002",fontsize=16,color="green",shape="box"];2648[label="xuu30002",fontsize=16,color="green",shape="box"];2649[label="xuu400002",fontsize=16,color="green",shape="box"];2650[label="xuu30002",fontsize=16,color="green",shape="box"];2651[label="xuu400002",fontsize=16,color="green",shape="box"];2652[label="xuu30002",fontsize=16,color="green",shape="box"];2653[label="xuu400002",fontsize=16,color="green",shape="box"];2654[label="xuu30002",fontsize=16,color="green",shape="box"];2655[label="xuu400002",fontsize=16,color="green",shape="box"];2656[label="xuu30002",fontsize=16,color="green",shape="box"];2657[label="xuu400001",fontsize=16,color="green",shape="box"];2658[label="xuu30001",fontsize=16,color="green",shape="box"];2659[label="xuu400001",fontsize=16,color="green",shape="box"];2660[label="xuu30001",fontsize=16,color="green",shape="box"];2661[label="xuu400001",fontsize=16,color="green",shape="box"];2662[label="xuu30001",fontsize=16,color="green",shape="box"];2663[label="xuu400001",fontsize=16,color="green",shape="box"];2664[label="xuu30001",fontsize=16,color="green",shape="box"];2665[label="xuu400001",fontsize=16,color="green",shape="box"];2666[label="xuu30001",fontsize=16,color="green",shape="box"];2667[label="xuu400001",fontsize=16,color="green",shape="box"];2668[label="xuu30001",fontsize=16,color="green",shape="box"];2669[label="xuu400001",fontsize=16,color="green",shape="box"];2670[label="xuu30001",fontsize=16,color="green",shape="box"];2671[label="xuu400001",fontsize=16,color="green",shape="box"];2672[label="xuu30001",fontsize=16,color="green",shape="box"];2673[label="xuu400001",fontsize=16,color="green",shape="box"];2674[label="xuu30001",fontsize=16,color="green",shape="box"];2675[label="xuu400001",fontsize=16,color="green",shape="box"];2676[label="xuu30001",fontsize=16,color="green",shape="box"];2677[label="xuu400001",fontsize=16,color="green",shape="box"];2678[label="xuu30001",fontsize=16,color="green",shape="box"];2679[label="xuu400001",fontsize=16,color="green",shape="box"];2680[label="xuu30001",fontsize=16,color="green",shape="box"];2681[label="xuu400001",fontsize=16,color="green",shape="box"];2682[label="xuu30001",fontsize=16,color="green",shape="box"];2683[label="xuu400001",fontsize=16,color="green",shape="box"];2684[label="xuu30001",fontsize=16,color="green",shape="box"];2685[label="xuu300000",fontsize=16,color="green",shape="box"];2686[label="xuu4000000",fontsize=16,color="green",shape="box"];2687[label="xuu300000",fontsize=16,color="green",shape="box"];2688[label="xuu4000000",fontsize=16,color="green",shape="box"];2689 -> 1610[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2689[label="primEqNat xuu4000000 xuu300000",fontsize=16,color="magenta"];2689 -> 2770[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2689 -> 2771[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2690[label="False",fontsize=16,color="green",shape="box"];2691[label="False",fontsize=16,color="green",shape="box"];2692[label="True",fontsize=16,color="green",shape="box"];2694 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2694[label="xuu207 == GT",fontsize=16,color="magenta"];2694 -> 2772[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2694 -> 2773[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2693[label="not xuu220",fontsize=16,color="burlywood",shape="triangle"];4541[label="xuu220/False",fontsize=10,color="white",style="solid",shape="box"];2693 -> 4541[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4541 -> 2774[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4542[label="xuu220/True",fontsize=10,color="white",style="solid",shape="box"];2693 -> 4542[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4542 -> 2775[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 2703[label="xuu590 < xuu600",fontsize=16,color="blue",shape="box"];4543[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2703 -> 4543[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4543 -> 2784[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4544[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2703 -> 4544[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4544 -> 2785[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4545[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2703 -> 4545[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4545 -> 2786[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4546[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2703 -> 4546[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4546 -> 2787[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4547[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2703 -> 4547[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4547 -> 2788[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4548[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2703 -> 4548[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4548 -> 2789[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4549[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2703 -> 4549[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4549 -> 2790[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4550[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2703 -> 4550[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4550 -> 2791[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4551[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2703 -> 4551[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4551 -> 2792[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4552[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2703 -> 4552[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4552 -> 2793[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4553[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2703 -> 4553[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4553 -> 2794[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4554[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2703 -> 4554[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4554 -> 2795[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4555[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2703 -> 4555[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4555 -> 2796[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4556[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2703 -> 4556[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4556 -> 2797[label="",style="solid", color="blue", weight=3]; 25.22/9.06 2704 -> 1120[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2704[label="xuu590 == xuu600 && (xuu591 < xuu601 || xuu591 == xuu601 && xuu592 <= xuu602)",fontsize=16,color="magenta"];2704 -> 2798[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2704 -> 2799[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2705 -> 1434[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2705[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2705 -> 2800[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2705 -> 2801[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2706 -> 1435[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2706[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2706 -> 2802[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2706 -> 2803[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2707 -> 1436[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2707[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2707 -> 2804[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2707 -> 2805[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2708 -> 1437[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2708[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2708 -> 2806[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2708 -> 2807[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2709 -> 1438[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2709[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2709 -> 2808[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2709 -> 2809[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2710 -> 1439[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2710[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2710 -> 2810[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2710 -> 2811[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2711 -> 1440[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2711[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2711 -> 2812[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2711 -> 2813[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2712 -> 1441[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2712[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2712 -> 2814[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2712 -> 2815[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2713 -> 1442[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2713[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2713 -> 2816[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2713 -> 2817[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2714 -> 1443[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2714[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2714 -> 2818[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2714 -> 2819[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2715 -> 1444[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2715[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2715 -> 2820[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2715 -> 2821[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2716 -> 1445[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2716[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2716 -> 2822[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2716 -> 2823[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2717 -> 1446[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2717[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2717 -> 2824[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2717 -> 2825[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2718 -> 1447[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2718[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2718 -> 2826[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2718 -> 2827[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2719 -> 1434[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2719[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2719 -> 2828[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2719 -> 2829[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2720 -> 1435[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2720[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2720 -> 2830[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2720 -> 2831[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2721 -> 1436[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2721[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2721 -> 2832[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2721 -> 2833[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2722 -> 1437[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2722[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2722 -> 2834[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2722 -> 2835[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2723 -> 1438[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2723[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2723 -> 2836[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2723 -> 2837[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2724 -> 1439[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2724[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2724 -> 2838[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2724 -> 2839[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2725 -> 1440[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2725[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2725 -> 2840[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2725 -> 2841[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2726 -> 1441[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2726[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2726 -> 2842[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2726 -> 2843[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2727 -> 1442[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2727[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2727 -> 2844[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2727 -> 2845[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2728 -> 1443[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2728[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2728 -> 2846[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2728 -> 2847[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2729 -> 1444[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2729[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2729 -> 2848[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2729 -> 2849[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2730 -> 1445[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2730[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2730 -> 2850[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2730 -> 2851[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2731 -> 1446[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2731[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2731 -> 2852[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2731 -> 2853[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2732 -> 1447[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2732[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2732 -> 2854[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2732 -> 2855[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2733 -> 1434[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2733[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2733 -> 2856[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2733 -> 2857[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2734 -> 1435[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2734[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2734 -> 2858[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2734 -> 2859[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2735 -> 1436[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2735[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2735 -> 2860[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2735 -> 2861[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2736 -> 1437[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2736[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2736 -> 2862[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2736 -> 2863[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2737 -> 1438[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2737[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2737 -> 2864[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2737 -> 2865[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2738 -> 1439[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2738[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2738 -> 2866[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2738 -> 2867[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2739 -> 1440[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2739[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2739 -> 2868[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2739 -> 2869[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2740 -> 1441[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2740[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2740 -> 2870[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2740 -> 2871[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2741 -> 1442[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2741[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2741 -> 2872[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2741 -> 2873[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2742 -> 1443[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2742[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2742 -> 2874[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2742 -> 2875[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2743 -> 1444[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2743[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2743 -> 2876[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2743 -> 2877[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2744 -> 1445[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2744[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2744 -> 2878[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2744 -> 2879[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2745 -> 1446[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2745[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2745 -> 2880[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2745 -> 2881[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2746 -> 1447[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2746[label="xuu590 <= xuu600",fontsize=16,color="magenta"];2746 -> 2882[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2746 -> 2883[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2747[label="xuu590 < xuu600",fontsize=16,color="blue",shape="box"];4557[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 4557[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4557 -> 2884[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4558[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 4558[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4558 -> 2885[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4559[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 4559[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4559 -> 2886[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4560[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 4560[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4560 -> 2887[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4561[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 4561[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4561 -> 2888[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4562[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 4562[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4562 -> 2889[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4563[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 4563[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4563 -> 2890[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4564[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 4564[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4564 -> 2891[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4565[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 4565[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4565 -> 2892[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4566[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 4566[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4566 -> 2893[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4567[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 4567[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4567 -> 2894[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4568[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 4568[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4568 -> 2895[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4569[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 4569[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4569 -> 2896[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4570[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2747 -> 4570[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4570 -> 2897[label="",style="solid", color="blue", weight=3]; 25.22/9.06 2748 -> 1120[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2748[label="xuu590 == xuu600 && xuu591 <= xuu601",fontsize=16,color="magenta"];2748 -> 2898[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2748 -> 2899[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2749[label="Succ xuu4000100",fontsize=16,color="green",shape="box"];2750[label="xuu300000",fontsize=16,color="green",shape="box"];2751[label="xuu219",fontsize=16,color="green",shape="box"];2752[label="Succ xuu4000100",fontsize=16,color="green",shape="box"];2753[label="compare0 (xuu185,xuu186) (xuu187,xuu188) True",fontsize=16,color="black",shape="box"];2753 -> 2900[label="",style="solid", color="black", weight=3]; 25.22/9.06 2754 -> 1804[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2754[label="FiniteMap.mkBalBranch6Size_r xuu33 [] xuu31 xuu38",fontsize=16,color="magenta"];2755 -> 1810[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2755[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];2756[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 otherwise",fontsize=16,color="black",shape="box"];2756 -> 2901[label="",style="solid", color="black", weight=3]; 25.22/9.06 2757[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu33 [] xuu31 xuu38 xuu33 xuu38 xuu33",fontsize=16,color="burlywood",shape="box"];4571[label="xuu33/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2757 -> 4571[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4571 -> 2902[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 4572[label="xuu33/FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334",fontsize=10,color="white",style="solid",shape="box"];2757 -> 4572[label="",style="solid", color="burlywood", weight=9]; 25.22/9.06 4572 -> 2903[label="",style="solid", color="burlywood", weight=3]; 25.22/9.06 2758 -> 2904[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2758[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu380 xuu381 xuu382 xuu383 xuu384 (FiniteMap.sizeFM xuu383 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu384)",fontsize=16,color="magenta"];2758 -> 2905[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 3037[label="xuu20900",fontsize=16,color="green",shape="box"];3038[label="xuu20800",fontsize=16,color="green",shape="box"];3742[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];3743[label="FiniteMap.mkBranchLeft_size xuu307 xuu308 xuu305",fontsize=16,color="black",shape="box"];3743 -> 3746[label="",style="solid", color="black", weight=3]; 25.22/9.06 3744[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];3744 -> 3747[label="",style="solid", color="black", weight=3]; 25.22/9.06 3745[label="FiniteMap.sizeFM (FiniteMap.Branch xuu3080 xuu3081 xuu3082 xuu3083 xuu3084)",fontsize=16,color="black",shape="box"];3745 -> 3748[label="",style="solid", color="black", weight=3]; 25.22/9.06 3506[label="xuu31",fontsize=16,color="green",shape="box"];3507[label="xuu26",fontsize=16,color="green",shape="box"];3508[label="xuu34",fontsize=16,color="green",shape="box"];3509[label="Succ Zero",fontsize=16,color="green",shape="box"];3510[label="xuu300 : xuu301",fontsize=16,color="green",shape="box"];2763 -> 2915[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2763[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34 xuu260 xuu261 xuu262 xuu263 xuu264 (FiniteMap.sizeFM xuu264 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu263)",fontsize=16,color="magenta"];2763 -> 2916[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2764[label="xuu343",fontsize=16,color="green",shape="box"];2765 -> 1811[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2765[label="FiniteMap.sizeFM xuu344",fontsize=16,color="magenta"];2765 -> 2918[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2766[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2767[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 otherwise",fontsize=16,color="black",shape="box"];2767 -> 2919[label="",style="solid", color="black", weight=3]; 25.22/9.06 2768[label="FiniteMap.mkBalBranch6Single_L xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="black",shape="box"];2768 -> 2920[label="",style="solid", color="black", weight=3]; 25.22/9.06 2769[label="GT",fontsize=16,color="green",shape="box"];2770[label="xuu300000",fontsize=16,color="green",shape="box"];2771[label="xuu4000000",fontsize=16,color="green",shape="box"];2772[label="xuu207",fontsize=16,color="green",shape="box"];2773[label="GT",fontsize=16,color="green",shape="box"];2774[label="not False",fontsize=16,color="black",shape="box"];2774 -> 2921[label="",style="solid", color="black", weight=3]; 25.22/9.06 2775[label="not True",fontsize=16,color="black",shape="box"];2775 -> 2922[label="",style="solid", color="black", weight=3]; 25.22/9.06 2784 -> 1416[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2784[label="xuu590 < xuu600",fontsize=16,color="magenta"];2784 -> 2923[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2784 -> 2924[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2785 -> 1417[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2785[label="xuu590 < xuu600",fontsize=16,color="magenta"];2785 -> 2925[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2785 -> 2926[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2786 -> 1418[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2786[label="xuu590 < xuu600",fontsize=16,color="magenta"];2786 -> 2927[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2786 -> 2928[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2787 -> 1419[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2787[label="xuu590 < xuu600",fontsize=16,color="magenta"];2787 -> 2929[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2787 -> 2930[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2788 -> 1420[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2788[label="xuu590 < xuu600",fontsize=16,color="magenta"];2788 -> 2931[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2788 -> 2932[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2789 -> 1421[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2789[label="xuu590 < xuu600",fontsize=16,color="magenta"];2789 -> 2933[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2789 -> 2934[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2790 -> 1422[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2790[label="xuu590 < xuu600",fontsize=16,color="magenta"];2790 -> 2935[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2790 -> 2936[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2791 -> 1423[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2791[label="xuu590 < xuu600",fontsize=16,color="magenta"];2791 -> 2937[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2791 -> 2938[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2792 -> 1424[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2792[label="xuu590 < xuu600",fontsize=16,color="magenta"];2792 -> 2939[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2792 -> 2940[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2793 -> 1425[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2793[label="xuu590 < xuu600",fontsize=16,color="magenta"];2793 -> 2941[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2793 -> 2942[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2794 -> 1426[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2794[label="xuu590 < xuu600",fontsize=16,color="magenta"];2794 -> 2943[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2794 -> 2944[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2795 -> 1427[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2795[label="xuu590 < xuu600",fontsize=16,color="magenta"];2795 -> 2945[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2795 -> 2946[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2796 -> 1428[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2796[label="xuu590 < xuu600",fontsize=16,color="magenta"];2796 -> 2947[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2796 -> 2948[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2797 -> 1429[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2797[label="xuu590 < xuu600",fontsize=16,color="magenta"];2797 -> 2949[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2797 -> 2950[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2798 -> 1854[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2798[label="xuu591 < xuu601 || xuu591 == xuu601 && xuu592 <= xuu602",fontsize=16,color="magenta"];2798 -> 2951[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2798 -> 2952[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2799[label="xuu590 == xuu600",fontsize=16,color="blue",shape="box"];4573[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2799 -> 4573[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4573 -> 2953[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4574[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2799 -> 4574[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4574 -> 2954[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4575[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2799 -> 4575[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4575 -> 2955[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4576[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2799 -> 4576[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4576 -> 2956[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4577[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2799 -> 4577[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4577 -> 2957[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4578[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2799 -> 4578[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4578 -> 2958[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4579[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2799 -> 4579[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4579 -> 2959[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4580[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2799 -> 4580[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4580 -> 2960[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4581[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2799 -> 4581[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4581 -> 2961[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4582[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2799 -> 4582[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4582 -> 2962[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4583[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2799 -> 4583[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4583 -> 2963[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4584[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2799 -> 4584[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4584 -> 2964[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4585[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2799 -> 4585[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4585 -> 2965[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4586[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2799 -> 4586[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4586 -> 2966[label="",style="solid", color="blue", weight=3]; 25.22/9.06 2800[label="xuu590",fontsize=16,color="green",shape="box"];2801[label="xuu600",fontsize=16,color="green",shape="box"];2802[label="xuu590",fontsize=16,color="green",shape="box"];2803[label="xuu600",fontsize=16,color="green",shape="box"];2804[label="xuu590",fontsize=16,color="green",shape="box"];2805[label="xuu600",fontsize=16,color="green",shape="box"];2806[label="xuu590",fontsize=16,color="green",shape="box"];2807[label="xuu600",fontsize=16,color="green",shape="box"];2808[label="xuu590",fontsize=16,color="green",shape="box"];2809[label="xuu600",fontsize=16,color="green",shape="box"];2810[label="xuu590",fontsize=16,color="green",shape="box"];2811[label="xuu600",fontsize=16,color="green",shape="box"];2812[label="xuu590",fontsize=16,color="green",shape="box"];2813[label="xuu600",fontsize=16,color="green",shape="box"];2814[label="xuu590",fontsize=16,color="green",shape="box"];2815[label="xuu600",fontsize=16,color="green",shape="box"];2816[label="xuu590",fontsize=16,color="green",shape="box"];2817[label="xuu600",fontsize=16,color="green",shape="box"];2818[label="xuu590",fontsize=16,color="green",shape="box"];2819[label="xuu600",fontsize=16,color="green",shape="box"];2820[label="xuu590",fontsize=16,color="green",shape="box"];2821[label="xuu600",fontsize=16,color="green",shape="box"];2822[label="xuu590",fontsize=16,color="green",shape="box"];2823[label="xuu600",fontsize=16,color="green",shape="box"];2824[label="xuu590",fontsize=16,color="green",shape="box"];2825[label="xuu600",fontsize=16,color="green",shape="box"];2826[label="xuu590",fontsize=16,color="green",shape="box"];2827[label="xuu600",fontsize=16,color="green",shape="box"];2828[label="xuu590",fontsize=16,color="green",shape="box"];2829[label="xuu600",fontsize=16,color="green",shape="box"];2830[label="xuu590",fontsize=16,color="green",shape="box"];2831[label="xuu600",fontsize=16,color="green",shape="box"];2832[label="xuu590",fontsize=16,color="green",shape="box"];2833[label="xuu600",fontsize=16,color="green",shape="box"];2834[label="xuu590",fontsize=16,color="green",shape="box"];2835[label="xuu600",fontsize=16,color="green",shape="box"];2836[label="xuu590",fontsize=16,color="green",shape="box"];2837[label="xuu600",fontsize=16,color="green",shape="box"];2838[label="xuu590",fontsize=16,color="green",shape="box"];2839[label="xuu600",fontsize=16,color="green",shape="box"];2840[label="xuu590",fontsize=16,color="green",shape="box"];2841[label="xuu600",fontsize=16,color="green",shape="box"];2842[label="xuu590",fontsize=16,color="green",shape="box"];2843[label="xuu600",fontsize=16,color="green",shape="box"];2844[label="xuu590",fontsize=16,color="green",shape="box"];2845[label="xuu600",fontsize=16,color="green",shape="box"];2846[label="xuu590",fontsize=16,color="green",shape="box"];2847[label="xuu600",fontsize=16,color="green",shape="box"];2848[label="xuu590",fontsize=16,color="green",shape="box"];2849[label="xuu600",fontsize=16,color="green",shape="box"];2850[label="xuu590",fontsize=16,color="green",shape="box"];2851[label="xuu600",fontsize=16,color="green",shape="box"];2852[label="xuu590",fontsize=16,color="green",shape="box"];2853[label="xuu600",fontsize=16,color="green",shape="box"];2854[label="xuu590",fontsize=16,color="green",shape="box"];2855[label="xuu600",fontsize=16,color="green",shape="box"];2856[label="xuu590",fontsize=16,color="green",shape="box"];2857[label="xuu600",fontsize=16,color="green",shape="box"];2858[label="xuu590",fontsize=16,color="green",shape="box"];2859[label="xuu600",fontsize=16,color="green",shape="box"];2860[label="xuu590",fontsize=16,color="green",shape="box"];2861[label="xuu600",fontsize=16,color="green",shape="box"];2862[label="xuu590",fontsize=16,color="green",shape="box"];2863[label="xuu600",fontsize=16,color="green",shape="box"];2864[label="xuu590",fontsize=16,color="green",shape="box"];2865[label="xuu600",fontsize=16,color="green",shape="box"];2866[label="xuu590",fontsize=16,color="green",shape="box"];2867[label="xuu600",fontsize=16,color="green",shape="box"];2868[label="xuu590",fontsize=16,color="green",shape="box"];2869[label="xuu600",fontsize=16,color="green",shape="box"];2870[label="xuu590",fontsize=16,color="green",shape="box"];2871[label="xuu600",fontsize=16,color="green",shape="box"];2872[label="xuu590",fontsize=16,color="green",shape="box"];2873[label="xuu600",fontsize=16,color="green",shape="box"];2874[label="xuu590",fontsize=16,color="green",shape="box"];2875[label="xuu600",fontsize=16,color="green",shape="box"];2876[label="xuu590",fontsize=16,color="green",shape="box"];2877[label="xuu600",fontsize=16,color="green",shape="box"];2878[label="xuu590",fontsize=16,color="green",shape="box"];2879[label="xuu600",fontsize=16,color="green",shape="box"];2880[label="xuu590",fontsize=16,color="green",shape="box"];2881[label="xuu600",fontsize=16,color="green",shape="box"];2882[label="xuu590",fontsize=16,color="green",shape="box"];2883[label="xuu600",fontsize=16,color="green",shape="box"];2884 -> 1416[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2884[label="xuu590 < xuu600",fontsize=16,color="magenta"];2884 -> 2967[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2884 -> 2968[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2885 -> 1417[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2885[label="xuu590 < xuu600",fontsize=16,color="magenta"];2885 -> 2969[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2885 -> 2970[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2886 -> 1418[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2886[label="xuu590 < xuu600",fontsize=16,color="magenta"];2886 -> 2971[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2886 -> 2972[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2887 -> 1419[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2887[label="xuu590 < xuu600",fontsize=16,color="magenta"];2887 -> 2973[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2887 -> 2974[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2888 -> 1420[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2888[label="xuu590 < xuu600",fontsize=16,color="magenta"];2888 -> 2975[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2888 -> 2976[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2889 -> 1421[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2889[label="xuu590 < xuu600",fontsize=16,color="magenta"];2889 -> 2977[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2889 -> 2978[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2890 -> 1422[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2890[label="xuu590 < xuu600",fontsize=16,color="magenta"];2890 -> 2979[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2890 -> 2980[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2891 -> 1423[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2891[label="xuu590 < xuu600",fontsize=16,color="magenta"];2891 -> 2981[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2891 -> 2982[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2892 -> 1424[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2892[label="xuu590 < xuu600",fontsize=16,color="magenta"];2892 -> 2983[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2892 -> 2984[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2893 -> 1425[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2893[label="xuu590 < xuu600",fontsize=16,color="magenta"];2893 -> 2985[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2893 -> 2986[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2894 -> 1426[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2894[label="xuu590 < xuu600",fontsize=16,color="magenta"];2894 -> 2987[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2894 -> 2988[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2895 -> 1427[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2895[label="xuu590 < xuu600",fontsize=16,color="magenta"];2895 -> 2989[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2895 -> 2990[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2896 -> 1428[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2896[label="xuu590 < xuu600",fontsize=16,color="magenta"];2896 -> 2991[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2896 -> 2992[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2897 -> 1429[label="",style="dashed", color="red", weight=0]; 25.22/9.06 2897[label="xuu590 < xuu600",fontsize=16,color="magenta"];2897 -> 2993[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2897 -> 2994[label="",style="dashed", color="magenta", weight=3]; 25.22/9.06 2898[label="xuu591 <= xuu601",fontsize=16,color="blue",shape="box"];4587[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4587[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4587 -> 2995[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4588[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4588[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4588 -> 2996[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4589[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4589[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4589 -> 2997[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4590[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4590[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4590 -> 2998[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4591[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4591[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4591 -> 2999[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4592[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4592[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4592 -> 3000[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4593[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4593[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4593 -> 3001[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4594[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4594[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4594 -> 3002[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4595[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4595[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4595 -> 3003[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4596[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4596[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4596 -> 3004[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4597[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4597[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4597 -> 3005[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4598[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4598[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4598 -> 3006[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4599[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4599[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4599 -> 3007[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4600[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4600[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4600 -> 3008[label="",style="solid", color="blue", weight=3]; 25.22/9.06 2899[label="xuu590 == xuu600",fontsize=16,color="blue",shape="box"];4601[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4601[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4601 -> 3009[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4602[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4602[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4602 -> 3010[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4603[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4603[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4603 -> 3011[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4604[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4604[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4604 -> 3012[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4605[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4605[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4605 -> 3013[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4606[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4606[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4606 -> 3014[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4607[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4607[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4607 -> 3015[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4608[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4608[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4608 -> 3016[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4609[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4609[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4609 -> 3017[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4610[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4610[label="",style="solid", color="blue", weight=9]; 25.22/9.06 4610 -> 3018[label="",style="solid", color="blue", weight=3]; 25.22/9.06 4611[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4611[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4611 -> 3019[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4612[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4612[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4612 -> 3020[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4613[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4613[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4613 -> 3021[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4614[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4614[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4614 -> 3022[label="",style="solid", color="blue", weight=3]; 25.22/9.07 2900[label="GT",fontsize=16,color="green",shape="box"];2901[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu33 [] xuu31 xuu38 [] xuu31 xuu33 xuu38 True",fontsize=16,color="black",shape="box"];2901 -> 3023[label="",style="solid", color="black", weight=3]; 25.22/9.07 2902[label="FiniteMap.mkBalBranch6MkBalBranch1 FiniteMap.EmptyFM [] xuu31 xuu38 FiniteMap.EmptyFM xuu38 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];2902 -> 3024[label="",style="solid", color="black", weight=3]; 25.22/9.07 2903[label="FiniteMap.mkBalBranch6MkBalBranch1 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334)",fontsize=16,color="black",shape="box"];2903 -> 3025[label="",style="solid", color="black", weight=3]; 25.22/9.07 2905 -> 1418[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2905[label="FiniteMap.sizeFM xuu383 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu384",fontsize=16,color="magenta"];2905 -> 3026[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2905 -> 3027[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2904[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu380 xuu381 xuu382 xuu383 xuu384 xuu221",fontsize=16,color="burlywood",shape="triangle"];4615[label="xuu221/False",fontsize=10,color="white",style="solid",shape="box"];2904 -> 4615[label="",style="solid", color="burlywood", weight=9]; 25.22/9.07 4615 -> 3028[label="",style="solid", color="burlywood", weight=3]; 25.22/9.07 4616[label="xuu221/True",fontsize=10,color="white",style="solid",shape="box"];2904 -> 4616[label="",style="solid", color="burlywood", weight=9]; 25.22/9.07 4616 -> 3029[label="",style="solid", color="burlywood", weight=3]; 25.22/9.07 3746 -> 3741[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3746[label="FiniteMap.sizeFM xuu307",fontsize=16,color="magenta"];3746 -> 3749[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3747[label="Pos Zero",fontsize=16,color="green",shape="box"];3748[label="xuu3082",fontsize=16,color="green",shape="box"];2916 -> 1418[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2916[label="FiniteMap.sizeFM xuu264 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu263",fontsize=16,color="magenta"];2916 -> 3033[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2916 -> 3034[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2915[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34 xuu260 xuu261 xuu262 xuu263 xuu264 xuu225",fontsize=16,color="burlywood",shape="triangle"];4617[label="xuu225/False",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4617[label="",style="solid", color="burlywood", weight=9]; 25.22/9.07 4617 -> 3035[label="",style="solid", color="burlywood", weight=3]; 25.22/9.07 4618[label="xuu225/True",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4618[label="",style="solid", color="burlywood", weight=9]; 25.22/9.07 4618 -> 3036[label="",style="solid", color="burlywood", weight=3]; 25.22/9.07 2918[label="xuu344",fontsize=16,color="green",shape="box"];2919[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu340 xuu341 xuu342 xuu343 xuu344 True",fontsize=16,color="black",shape="box"];2919 -> 3039[label="",style="solid", color="black", weight=3]; 25.22/9.07 2920 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2920[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu340 xuu341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu300 : xuu301) xuu31 xuu26 xuu343) xuu344",fontsize=16,color="magenta"];2920 -> 3511[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2920 -> 3512[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2920 -> 3513[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2920 -> 3514[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2920 -> 3515[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2921[label="True",fontsize=16,color="green",shape="box"];2922[label="False",fontsize=16,color="green",shape="box"];2923[label="xuu590",fontsize=16,color="green",shape="box"];2924[label="xuu600",fontsize=16,color="green",shape="box"];2925[label="xuu590",fontsize=16,color="green",shape="box"];2926[label="xuu600",fontsize=16,color="green",shape="box"];2927[label="xuu590",fontsize=16,color="green",shape="box"];2928[label="xuu600",fontsize=16,color="green",shape="box"];2929[label="xuu590",fontsize=16,color="green",shape="box"];2930[label="xuu600",fontsize=16,color="green",shape="box"];2931[label="xuu590",fontsize=16,color="green",shape="box"];2932[label="xuu600",fontsize=16,color="green",shape="box"];2933[label="xuu590",fontsize=16,color="green",shape="box"];2934[label="xuu600",fontsize=16,color="green",shape="box"];2935[label="xuu590",fontsize=16,color="green",shape="box"];2936[label="xuu600",fontsize=16,color="green",shape="box"];2937[label="xuu590",fontsize=16,color="green",shape="box"];2938[label="xuu600",fontsize=16,color="green",shape="box"];2939[label="xuu590",fontsize=16,color="green",shape="box"];2940[label="xuu600",fontsize=16,color="green",shape="box"];2941[label="xuu590",fontsize=16,color="green",shape="box"];2942[label="xuu600",fontsize=16,color="green",shape="box"];2943[label="xuu590",fontsize=16,color="green",shape="box"];2944[label="xuu600",fontsize=16,color="green",shape="box"];2945[label="xuu590",fontsize=16,color="green",shape="box"];2946[label="xuu600",fontsize=16,color="green",shape="box"];2947[label="xuu590",fontsize=16,color="green",shape="box"];2948[label="xuu600",fontsize=16,color="green",shape="box"];2949[label="xuu590",fontsize=16,color="green",shape="box"];2950[label="xuu600",fontsize=16,color="green",shape="box"];2951[label="xuu591 < xuu601",fontsize=16,color="blue",shape="box"];4619[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2951 -> 4619[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4619 -> 3041[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4620[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2951 -> 4620[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4620 -> 3042[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4621[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2951 -> 4621[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4621 -> 3043[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4622[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2951 -> 4622[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4622 -> 3044[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4623[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2951 -> 4623[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4623 -> 3045[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4624[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2951 -> 4624[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4624 -> 3046[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4625[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2951 -> 4625[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4625 -> 3047[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4626[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2951 -> 4626[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4626 -> 3048[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4627[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2951 -> 4627[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4627 -> 3049[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4628[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2951 -> 4628[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4628 -> 3050[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4629[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2951 -> 4629[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4629 -> 3051[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4630[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2951 -> 4630[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4630 -> 3052[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4631[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2951 -> 4631[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4631 -> 3053[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4632[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2951 -> 4632[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4632 -> 3054[label="",style="solid", color="blue", weight=3]; 25.22/9.07 2952 -> 1120[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2952[label="xuu591 == xuu601 && xuu592 <= xuu602",fontsize=16,color="magenta"];2952 -> 3055[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2952 -> 3056[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2953 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2953[label="xuu590 == xuu600",fontsize=16,color="magenta"];2953 -> 3057[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2953 -> 3058[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2954 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2954[label="xuu590 == xuu600",fontsize=16,color="magenta"];2954 -> 3059[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2954 -> 3060[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2955 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2955[label="xuu590 == xuu600",fontsize=16,color="magenta"];2955 -> 3061[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2955 -> 3062[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2956 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2956[label="xuu590 == xuu600",fontsize=16,color="magenta"];2956 -> 3063[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2956 -> 3064[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2957 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2957[label="xuu590 == xuu600",fontsize=16,color="magenta"];2957 -> 3065[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2957 -> 3066[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2958 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2958[label="xuu590 == xuu600",fontsize=16,color="magenta"];2958 -> 3067[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2958 -> 3068[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2959 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2959[label="xuu590 == xuu600",fontsize=16,color="magenta"];2959 -> 3069[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2959 -> 3070[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2960 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2960[label="xuu590 == xuu600",fontsize=16,color="magenta"];2960 -> 3071[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2960 -> 3072[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2961 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2961[label="xuu590 == xuu600",fontsize=16,color="magenta"];2961 -> 3073[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2961 -> 3074[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2962 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2962[label="xuu590 == xuu600",fontsize=16,color="magenta"];2962 -> 3075[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2962 -> 3076[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2963 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2963[label="xuu590 == xuu600",fontsize=16,color="magenta"];2963 -> 3077[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2963 -> 3078[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2964 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2964[label="xuu590 == xuu600",fontsize=16,color="magenta"];2964 -> 3079[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2964 -> 3080[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2965 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2965[label="xuu590 == xuu600",fontsize=16,color="magenta"];2965 -> 3081[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2965 -> 3082[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2966 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2966[label="xuu590 == xuu600",fontsize=16,color="magenta"];2966 -> 3083[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2966 -> 3084[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2967[label="xuu590",fontsize=16,color="green",shape="box"];2968[label="xuu600",fontsize=16,color="green",shape="box"];2969[label="xuu590",fontsize=16,color="green",shape="box"];2970[label="xuu600",fontsize=16,color="green",shape="box"];2971[label="xuu590",fontsize=16,color="green",shape="box"];2972[label="xuu600",fontsize=16,color="green",shape="box"];2973[label="xuu590",fontsize=16,color="green",shape="box"];2974[label="xuu600",fontsize=16,color="green",shape="box"];2975[label="xuu590",fontsize=16,color="green",shape="box"];2976[label="xuu600",fontsize=16,color="green",shape="box"];2977[label="xuu590",fontsize=16,color="green",shape="box"];2978[label="xuu600",fontsize=16,color="green",shape="box"];2979[label="xuu590",fontsize=16,color="green",shape="box"];2980[label="xuu600",fontsize=16,color="green",shape="box"];2981[label="xuu590",fontsize=16,color="green",shape="box"];2982[label="xuu600",fontsize=16,color="green",shape="box"];2983[label="xuu590",fontsize=16,color="green",shape="box"];2984[label="xuu600",fontsize=16,color="green",shape="box"];2985[label="xuu590",fontsize=16,color="green",shape="box"];2986[label="xuu600",fontsize=16,color="green",shape="box"];2987[label="xuu590",fontsize=16,color="green",shape="box"];2988[label="xuu600",fontsize=16,color="green",shape="box"];2989[label="xuu590",fontsize=16,color="green",shape="box"];2990[label="xuu600",fontsize=16,color="green",shape="box"];2991[label="xuu590",fontsize=16,color="green",shape="box"];2992[label="xuu600",fontsize=16,color="green",shape="box"];2993[label="xuu590",fontsize=16,color="green",shape="box"];2994[label="xuu600",fontsize=16,color="green",shape="box"];2995 -> 1434[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2995[label="xuu591 <= xuu601",fontsize=16,color="magenta"];2995 -> 3085[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2995 -> 3086[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2996 -> 1435[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2996[label="xuu591 <= xuu601",fontsize=16,color="magenta"];2996 -> 3087[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2996 -> 3088[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2997 -> 1436[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2997[label="xuu591 <= xuu601",fontsize=16,color="magenta"];2997 -> 3089[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2997 -> 3090[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2998 -> 1437[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2998[label="xuu591 <= xuu601",fontsize=16,color="magenta"];2998 -> 3091[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2998 -> 3092[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2999 -> 1438[label="",style="dashed", color="red", weight=0]; 25.22/9.07 2999[label="xuu591 <= xuu601",fontsize=16,color="magenta"];2999 -> 3093[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 2999 -> 3094[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3000 -> 1439[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3000[label="xuu591 <= xuu601",fontsize=16,color="magenta"];3000 -> 3095[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3000 -> 3096[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3001 -> 1440[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3001[label="xuu591 <= xuu601",fontsize=16,color="magenta"];3001 -> 3097[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3001 -> 3098[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3002 -> 1441[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3002[label="xuu591 <= xuu601",fontsize=16,color="magenta"];3002 -> 3099[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3002 -> 3100[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3003 -> 1442[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3003[label="xuu591 <= xuu601",fontsize=16,color="magenta"];3003 -> 3101[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3003 -> 3102[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3004 -> 1443[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3004[label="xuu591 <= xuu601",fontsize=16,color="magenta"];3004 -> 3103[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3004 -> 3104[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3005 -> 1444[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3005[label="xuu591 <= xuu601",fontsize=16,color="magenta"];3005 -> 3105[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3005 -> 3106[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3006 -> 1445[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3006[label="xuu591 <= xuu601",fontsize=16,color="magenta"];3006 -> 3107[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3006 -> 3108[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3007 -> 1446[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3007[label="xuu591 <= xuu601",fontsize=16,color="magenta"];3007 -> 3109[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3007 -> 3110[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3008 -> 1447[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3008[label="xuu591 <= xuu601",fontsize=16,color="magenta"];3008 -> 3111[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3008 -> 3112[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3009 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3009[label="xuu590 == xuu600",fontsize=16,color="magenta"];3009 -> 3113[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3009 -> 3114[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3010 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3010[label="xuu590 == xuu600",fontsize=16,color="magenta"];3010 -> 3115[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3010 -> 3116[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3011 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3011[label="xuu590 == xuu600",fontsize=16,color="magenta"];3011 -> 3117[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3011 -> 3118[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3012 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3012[label="xuu590 == xuu600",fontsize=16,color="magenta"];3012 -> 3119[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3012 -> 3120[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3013 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3013[label="xuu590 == xuu600",fontsize=16,color="magenta"];3013 -> 3121[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3013 -> 3122[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3014 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3014[label="xuu590 == xuu600",fontsize=16,color="magenta"];3014 -> 3123[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3014 -> 3124[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3015 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3015[label="xuu590 == xuu600",fontsize=16,color="magenta"];3015 -> 3125[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3015 -> 3126[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3016 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3016[label="xuu590 == xuu600",fontsize=16,color="magenta"];3016 -> 3127[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3016 -> 3128[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3017 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3017[label="xuu590 == xuu600",fontsize=16,color="magenta"];3017 -> 3129[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3017 -> 3130[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3018 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3018[label="xuu590 == xuu600",fontsize=16,color="magenta"];3018 -> 3131[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3018 -> 3132[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3019 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3019[label="xuu590 == xuu600",fontsize=16,color="magenta"];3019 -> 3133[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3019 -> 3134[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3020 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3020[label="xuu590 == xuu600",fontsize=16,color="magenta"];3020 -> 3135[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3020 -> 3136[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3021 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3021[label="xuu590 == xuu600",fontsize=16,color="magenta"];3021 -> 3137[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3021 -> 3138[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3022 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3022[label="xuu590 == xuu600",fontsize=16,color="magenta"];3022 -> 3139[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3022 -> 3140[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3023 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3023[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) [] xuu31 xuu33 xuu38",fontsize=16,color="magenta"];3023 -> 3516[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3023 -> 3517[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3023 -> 3518[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3023 -> 3519[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3023 -> 3520[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3024[label="error []",fontsize=16,color="red",shape="box"];3025[label="FiniteMap.mkBalBranch6MkBalBranch12 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334)",fontsize=16,color="black",shape="box"];3025 -> 3142[label="",style="solid", color="black", weight=3]; 25.22/9.07 3026 -> 1811[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3026[label="FiniteMap.sizeFM xuu383",fontsize=16,color="magenta"];3026 -> 3143[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3027 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3027[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu384",fontsize=16,color="magenta"];3027 -> 3144[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3027 -> 3145[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3028[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu380 xuu381 xuu382 xuu383 xuu384 False",fontsize=16,color="black",shape="box"];3028 -> 3146[label="",style="solid", color="black", weight=3]; 25.22/9.07 3029[label="FiniteMap.mkBalBranch6MkBalBranch01 xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu380 xuu381 xuu382 xuu383 xuu384 True",fontsize=16,color="black",shape="box"];3029 -> 3147[label="",style="solid", color="black", weight=3]; 25.22/9.07 3749[label="xuu307",fontsize=16,color="green",shape="box"];3033 -> 1811[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3033[label="FiniteMap.sizeFM xuu264",fontsize=16,color="magenta"];3033 -> 3149[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3034 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3034[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu263",fontsize=16,color="magenta"];3034 -> 3150[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3034 -> 3151[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3035[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34 xuu260 xuu261 xuu262 xuu263 xuu264 False",fontsize=16,color="black",shape="box"];3035 -> 3152[label="",style="solid", color="black", weight=3]; 25.22/9.07 3036[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34 xuu260 xuu261 xuu262 xuu263 xuu264 True",fontsize=16,color="black",shape="box"];3036 -> 3153[label="",style="solid", color="black", weight=3]; 25.22/9.07 3039[label="FiniteMap.mkBalBranch6Double_L xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 xuu343 xuu344)",fontsize=16,color="burlywood",shape="box"];4633[label="xuu343/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3039 -> 4633[label="",style="solid", color="burlywood", weight=9]; 25.22/9.07 4633 -> 3154[label="",style="solid", color="burlywood", weight=3]; 25.22/9.07 4634[label="xuu343/FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434",fontsize=10,color="white",style="solid",shape="box"];3039 -> 4634[label="",style="solid", color="burlywood", weight=9]; 25.22/9.07 4634 -> 3155[label="",style="solid", color="burlywood", weight=3]; 25.22/9.07 3511[label="xuu341",fontsize=16,color="green",shape="box"];3512 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3512[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) (xuu300 : xuu301) xuu31 xuu26 xuu343",fontsize=16,color="magenta"];3512 -> 3667[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3512 -> 3668[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3512 -> 3669[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3512 -> 3670[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3512 -> 3671[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3513[label="xuu344",fontsize=16,color="green",shape="box"];3514[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3515[label="xuu340",fontsize=16,color="green",shape="box"];3041 -> 1416[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3041[label="xuu591 < xuu601",fontsize=16,color="magenta"];3041 -> 3157[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3041 -> 3158[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3042 -> 1417[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3042[label="xuu591 < xuu601",fontsize=16,color="magenta"];3042 -> 3159[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3042 -> 3160[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3043 -> 1418[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3043[label="xuu591 < xuu601",fontsize=16,color="magenta"];3043 -> 3161[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3043 -> 3162[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3044 -> 1419[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3044[label="xuu591 < xuu601",fontsize=16,color="magenta"];3044 -> 3163[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3044 -> 3164[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3045 -> 1420[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3045[label="xuu591 < xuu601",fontsize=16,color="magenta"];3045 -> 3165[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3045 -> 3166[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3046 -> 1421[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3046[label="xuu591 < xuu601",fontsize=16,color="magenta"];3046 -> 3167[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3046 -> 3168[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3047 -> 1422[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3047[label="xuu591 < xuu601",fontsize=16,color="magenta"];3047 -> 3169[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3047 -> 3170[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3048 -> 1423[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3048[label="xuu591 < xuu601",fontsize=16,color="magenta"];3048 -> 3171[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3048 -> 3172[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3049 -> 1424[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3049[label="xuu591 < xuu601",fontsize=16,color="magenta"];3049 -> 3173[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3049 -> 3174[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3050 -> 1425[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3050[label="xuu591 < xuu601",fontsize=16,color="magenta"];3050 -> 3175[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3050 -> 3176[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3051 -> 1426[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3051[label="xuu591 < xuu601",fontsize=16,color="magenta"];3051 -> 3177[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3051 -> 3178[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3052 -> 1427[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3052[label="xuu591 < xuu601",fontsize=16,color="magenta"];3052 -> 3179[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3052 -> 3180[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3053 -> 1428[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3053[label="xuu591 < xuu601",fontsize=16,color="magenta"];3053 -> 3181[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3053 -> 3182[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3054 -> 1429[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3054[label="xuu591 < xuu601",fontsize=16,color="magenta"];3054 -> 3183[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3054 -> 3184[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3055[label="xuu592 <= xuu602",fontsize=16,color="blue",shape="box"];4635[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4635[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4635 -> 3185[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4636[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4636[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4636 -> 3186[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4637[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4637[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4637 -> 3187[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4638[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4638[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4638 -> 3188[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4639[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4639[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4639 -> 3189[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4640[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4640[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4640 -> 3190[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4641[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4641[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4641 -> 3191[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4642[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4642[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4642 -> 3192[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4643[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4643[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4643 -> 3193[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4644[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4644[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4644 -> 3194[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4645[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4645[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4645 -> 3195[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4646[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4646[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4646 -> 3196[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4647[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4647[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4647 -> 3197[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4648[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3055 -> 4648[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4648 -> 3198[label="",style="solid", color="blue", weight=3]; 25.22/9.07 3056[label="xuu591 == xuu601",fontsize=16,color="blue",shape="box"];4649[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4649[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4649 -> 3199[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4650[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4650[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4650 -> 3200[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4651[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4651[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4651 -> 3201[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4652[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4652[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4652 -> 3202[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4653[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4653[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4653 -> 3203[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4654[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4654[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4654 -> 3204[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4655[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4655[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4655 -> 3205[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4656[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4656[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4656 -> 3206[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4657[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4657[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4657 -> 3207[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4658[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4658[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4658 -> 3208[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4659[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4659[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4659 -> 3209[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4660[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4660[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4660 -> 3210[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4661[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4661[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4661 -> 3211[label="",style="solid", color="blue", weight=3]; 25.22/9.07 4662[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3056 -> 4662[label="",style="solid", color="blue", weight=9]; 25.22/9.07 4662 -> 3212[label="",style="solid", color="blue", weight=3]; 25.22/9.07 3057[label="xuu590",fontsize=16,color="green",shape="box"];3058[label="xuu600",fontsize=16,color="green",shape="box"];3059[label="xuu590",fontsize=16,color="green",shape="box"];3060[label="xuu600",fontsize=16,color="green",shape="box"];3061[label="xuu590",fontsize=16,color="green",shape="box"];3062[label="xuu600",fontsize=16,color="green",shape="box"];3063[label="xuu590",fontsize=16,color="green",shape="box"];3064[label="xuu600",fontsize=16,color="green",shape="box"];3065[label="xuu590",fontsize=16,color="green",shape="box"];3066[label="xuu600",fontsize=16,color="green",shape="box"];3067[label="xuu590",fontsize=16,color="green",shape="box"];3068[label="xuu600",fontsize=16,color="green",shape="box"];3069[label="xuu590",fontsize=16,color="green",shape="box"];3070[label="xuu600",fontsize=16,color="green",shape="box"];3071[label="xuu590",fontsize=16,color="green",shape="box"];3072[label="xuu600",fontsize=16,color="green",shape="box"];3073[label="xuu590",fontsize=16,color="green",shape="box"];3074[label="xuu600",fontsize=16,color="green",shape="box"];3075[label="xuu590",fontsize=16,color="green",shape="box"];3076[label="xuu600",fontsize=16,color="green",shape="box"];3077[label="xuu590",fontsize=16,color="green",shape="box"];3078[label="xuu600",fontsize=16,color="green",shape="box"];3079[label="xuu590",fontsize=16,color="green",shape="box"];3080[label="xuu600",fontsize=16,color="green",shape="box"];3081[label="xuu590",fontsize=16,color="green",shape="box"];3082[label="xuu600",fontsize=16,color="green",shape="box"];3083[label="xuu590",fontsize=16,color="green",shape="box"];3084[label="xuu600",fontsize=16,color="green",shape="box"];3085[label="xuu591",fontsize=16,color="green",shape="box"];3086[label="xuu601",fontsize=16,color="green",shape="box"];3087[label="xuu591",fontsize=16,color="green",shape="box"];3088[label="xuu601",fontsize=16,color="green",shape="box"];3089[label="xuu591",fontsize=16,color="green",shape="box"];3090[label="xuu601",fontsize=16,color="green",shape="box"];3091[label="xuu591",fontsize=16,color="green",shape="box"];3092[label="xuu601",fontsize=16,color="green",shape="box"];3093[label="xuu591",fontsize=16,color="green",shape="box"];3094[label="xuu601",fontsize=16,color="green",shape="box"];3095[label="xuu591",fontsize=16,color="green",shape="box"];3096[label="xuu601",fontsize=16,color="green",shape="box"];3097[label="xuu591",fontsize=16,color="green",shape="box"];3098[label="xuu601",fontsize=16,color="green",shape="box"];3099[label="xuu591",fontsize=16,color="green",shape="box"];3100[label="xuu601",fontsize=16,color="green",shape="box"];3101[label="xuu591",fontsize=16,color="green",shape="box"];3102[label="xuu601",fontsize=16,color="green",shape="box"];3103[label="xuu591",fontsize=16,color="green",shape="box"];3104[label="xuu601",fontsize=16,color="green",shape="box"];3105[label="xuu591",fontsize=16,color="green",shape="box"];3106[label="xuu601",fontsize=16,color="green",shape="box"];3107[label="xuu591",fontsize=16,color="green",shape="box"];3108[label="xuu601",fontsize=16,color="green",shape="box"];3109[label="xuu591",fontsize=16,color="green",shape="box"];3110[label="xuu601",fontsize=16,color="green",shape="box"];3111[label="xuu591",fontsize=16,color="green",shape="box"];3112[label="xuu601",fontsize=16,color="green",shape="box"];3113[label="xuu590",fontsize=16,color="green",shape="box"];3114[label="xuu600",fontsize=16,color="green",shape="box"];3115[label="xuu590",fontsize=16,color="green",shape="box"];3116[label="xuu600",fontsize=16,color="green",shape="box"];3117[label="xuu590",fontsize=16,color="green",shape="box"];3118[label="xuu600",fontsize=16,color="green",shape="box"];3119[label="xuu590",fontsize=16,color="green",shape="box"];3120[label="xuu600",fontsize=16,color="green",shape="box"];3121[label="xuu590",fontsize=16,color="green",shape="box"];3122[label="xuu600",fontsize=16,color="green",shape="box"];3123[label="xuu590",fontsize=16,color="green",shape="box"];3124[label="xuu600",fontsize=16,color="green",shape="box"];3125[label="xuu590",fontsize=16,color="green",shape="box"];3126[label="xuu600",fontsize=16,color="green",shape="box"];3127[label="xuu590",fontsize=16,color="green",shape="box"];3128[label="xuu600",fontsize=16,color="green",shape="box"];3129[label="xuu590",fontsize=16,color="green",shape="box"];3130[label="xuu600",fontsize=16,color="green",shape="box"];3131[label="xuu590",fontsize=16,color="green",shape="box"];3132[label="xuu600",fontsize=16,color="green",shape="box"];3133[label="xuu590",fontsize=16,color="green",shape="box"];3134[label="xuu600",fontsize=16,color="green",shape="box"];3135[label="xuu590",fontsize=16,color="green",shape="box"];3136[label="xuu600",fontsize=16,color="green",shape="box"];3137[label="xuu590",fontsize=16,color="green",shape="box"];3138[label="xuu600",fontsize=16,color="green",shape="box"];3139[label="xuu590",fontsize=16,color="green",shape="box"];3140[label="xuu600",fontsize=16,color="green",shape="box"];3516[label="xuu31",fontsize=16,color="green",shape="box"];3517[label="xuu33",fontsize=16,color="green",shape="box"];3518[label="xuu38",fontsize=16,color="green",shape="box"];3519[label="Succ Zero",fontsize=16,color="green",shape="box"];3520[label="[]",fontsize=16,color="green",shape="box"];3142 -> 3213[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3142[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38 xuu330 xuu331 xuu332 xuu333 xuu334 (FiniteMap.sizeFM xuu334 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu333)",fontsize=16,color="magenta"];3142 -> 3214[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3143[label="xuu383",fontsize=16,color="green",shape="box"];3144 -> 1811[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3144[label="FiniteMap.sizeFM xuu384",fontsize=16,color="magenta"];3144 -> 3215[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3145[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3146[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu380 xuu381 xuu382 xuu383 xuu384 otherwise",fontsize=16,color="black",shape="box"];3146 -> 3216[label="",style="solid", color="black", weight=3]; 25.22/9.07 3147[label="FiniteMap.mkBalBranch6Single_L xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384)",fontsize=16,color="black",shape="box"];3147 -> 3217[label="",style="solid", color="black", weight=3]; 25.22/9.07 3149[label="xuu264",fontsize=16,color="green",shape="box"];3150 -> 1811[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3150[label="FiniteMap.sizeFM xuu263",fontsize=16,color="magenta"];3150 -> 3219[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3151[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3152[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34 xuu260 xuu261 xuu262 xuu263 xuu264 otherwise",fontsize=16,color="black",shape="box"];3152 -> 3220[label="",style="solid", color="black", weight=3]; 25.22/9.07 3153[label="FiniteMap.mkBalBranch6Single_R (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34",fontsize=16,color="black",shape="box"];3153 -> 3221[label="",style="solid", color="black", weight=3]; 25.22/9.07 3154[label="FiniteMap.mkBalBranch6Double_L xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 FiniteMap.EmptyFM xuu344)",fontsize=16,color="black",shape="box"];3154 -> 3222[label="",style="solid", color="black", weight=3]; 25.22/9.07 3155[label="FiniteMap.mkBalBranch6Double_L xuu26 (xuu300 : xuu301) xuu31 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344) xuu26 (FiniteMap.Branch xuu340 xuu341 xuu342 (FiniteMap.Branch xuu3430 xuu3431 xuu3432 xuu3433 xuu3434) xuu344)",fontsize=16,color="black",shape="box"];3155 -> 3223[label="",style="solid", color="black", weight=3]; 25.22/9.07 3667[label="xuu31",fontsize=16,color="green",shape="box"];3668[label="xuu26",fontsize=16,color="green",shape="box"];3669[label="xuu343",fontsize=16,color="green",shape="box"];3670[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3671[label="xuu300 : xuu301",fontsize=16,color="green",shape="box"];3157[label="xuu591",fontsize=16,color="green",shape="box"];3158[label="xuu601",fontsize=16,color="green",shape="box"];3159[label="xuu591",fontsize=16,color="green",shape="box"];3160[label="xuu601",fontsize=16,color="green",shape="box"];3161[label="xuu591",fontsize=16,color="green",shape="box"];3162[label="xuu601",fontsize=16,color="green",shape="box"];3163[label="xuu591",fontsize=16,color="green",shape="box"];3164[label="xuu601",fontsize=16,color="green",shape="box"];3165[label="xuu591",fontsize=16,color="green",shape="box"];3166[label="xuu601",fontsize=16,color="green",shape="box"];3167[label="xuu591",fontsize=16,color="green",shape="box"];3168[label="xuu601",fontsize=16,color="green",shape="box"];3169[label="xuu591",fontsize=16,color="green",shape="box"];3170[label="xuu601",fontsize=16,color="green",shape="box"];3171[label="xuu591",fontsize=16,color="green",shape="box"];3172[label="xuu601",fontsize=16,color="green",shape="box"];3173[label="xuu591",fontsize=16,color="green",shape="box"];3174[label="xuu601",fontsize=16,color="green",shape="box"];3175[label="xuu591",fontsize=16,color="green",shape="box"];3176[label="xuu601",fontsize=16,color="green",shape="box"];3177[label="xuu591",fontsize=16,color="green",shape="box"];3178[label="xuu601",fontsize=16,color="green",shape="box"];3179[label="xuu591",fontsize=16,color="green",shape="box"];3180[label="xuu601",fontsize=16,color="green",shape="box"];3181[label="xuu591",fontsize=16,color="green",shape="box"];3182[label="xuu601",fontsize=16,color="green",shape="box"];3183[label="xuu591",fontsize=16,color="green",shape="box"];3184[label="xuu601",fontsize=16,color="green",shape="box"];3185 -> 1434[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3185[label="xuu592 <= xuu602",fontsize=16,color="magenta"];3185 -> 3226[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3185 -> 3227[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3186 -> 1435[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3186[label="xuu592 <= xuu602",fontsize=16,color="magenta"];3186 -> 3228[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3186 -> 3229[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3187 -> 1436[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3187[label="xuu592 <= xuu602",fontsize=16,color="magenta"];3187 -> 3230[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3187 -> 3231[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3188 -> 1437[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3188[label="xuu592 <= xuu602",fontsize=16,color="magenta"];3188 -> 3232[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3188 -> 3233[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3189 -> 1438[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3189[label="xuu592 <= xuu602",fontsize=16,color="magenta"];3189 -> 3234[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3189 -> 3235[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3190 -> 1439[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3190[label="xuu592 <= xuu602",fontsize=16,color="magenta"];3190 -> 3236[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3190 -> 3237[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3191 -> 1440[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3191[label="xuu592 <= xuu602",fontsize=16,color="magenta"];3191 -> 3238[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3191 -> 3239[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3192 -> 1441[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3192[label="xuu592 <= xuu602",fontsize=16,color="magenta"];3192 -> 3240[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3192 -> 3241[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3193 -> 1442[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3193[label="xuu592 <= xuu602",fontsize=16,color="magenta"];3193 -> 3242[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3193 -> 3243[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3194 -> 1443[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3194[label="xuu592 <= xuu602",fontsize=16,color="magenta"];3194 -> 3244[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3194 -> 3245[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3195 -> 1444[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3195[label="xuu592 <= xuu602",fontsize=16,color="magenta"];3195 -> 3246[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3195 -> 3247[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3196 -> 1445[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3196[label="xuu592 <= xuu602",fontsize=16,color="magenta"];3196 -> 3248[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3196 -> 3249[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3197 -> 1446[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3197[label="xuu592 <= xuu602",fontsize=16,color="magenta"];3197 -> 3250[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3197 -> 3251[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3198 -> 1447[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3198[label="xuu592 <= xuu602",fontsize=16,color="magenta"];3198 -> 3252[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3198 -> 3253[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3199 -> 536[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3199[label="xuu591 == xuu601",fontsize=16,color="magenta"];3199 -> 3254[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3199 -> 3255[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3200 -> 525[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3200[label="xuu591 == xuu601",fontsize=16,color="magenta"];3200 -> 3256[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3200 -> 3257[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3201 -> 527[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3201[label="xuu591 == xuu601",fontsize=16,color="magenta"];3201 -> 3258[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3201 -> 3259[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3202 -> 528[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3202[label="xuu591 == xuu601",fontsize=16,color="magenta"];3202 -> 3260[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3202 -> 3261[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3203 -> 534[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3203[label="xuu591 == xuu601",fontsize=16,color="magenta"];3203 -> 3262[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3203 -> 3263[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3204 -> 529[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3204[label="xuu591 == xuu601",fontsize=16,color="magenta"];3204 -> 3264[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3204 -> 3265[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3205 -> 532[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3205[label="xuu591 == xuu601",fontsize=16,color="magenta"];3205 -> 3266[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3205 -> 3267[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3206 -> 526[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3206[label="xuu591 == xuu601",fontsize=16,color="magenta"];3206 -> 3268[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3206 -> 3269[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3207 -> 533[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3207[label="xuu591 == xuu601",fontsize=16,color="magenta"];3207 -> 3270[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3207 -> 3271[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3208 -> 524[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3208[label="xuu591 == xuu601",fontsize=16,color="magenta"];3208 -> 3272[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3208 -> 3273[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3209 -> 537[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3209[label="xuu591 == xuu601",fontsize=16,color="magenta"];3209 -> 3274[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3209 -> 3275[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3210 -> 530[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3210[label="xuu591 == xuu601",fontsize=16,color="magenta"];3210 -> 3276[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3210 -> 3277[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3211 -> 531[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3211[label="xuu591 == xuu601",fontsize=16,color="magenta"];3211 -> 3278[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3211 -> 3279[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3212 -> 535[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3212[label="xuu591 == xuu601",fontsize=16,color="magenta"];3212 -> 3280[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3212 -> 3281[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3214 -> 1418[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3214[label="FiniteMap.sizeFM xuu334 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu333",fontsize=16,color="magenta"];3214 -> 3282[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3214 -> 3283[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3213[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38 xuu330 xuu331 xuu332 xuu333 xuu334 xuu229",fontsize=16,color="burlywood",shape="triangle"];4663[label="xuu229/False",fontsize=10,color="white",style="solid",shape="box"];3213 -> 4663[label="",style="solid", color="burlywood", weight=9]; 25.22/9.07 4663 -> 3284[label="",style="solid", color="burlywood", weight=3]; 25.22/9.07 4664[label="xuu229/True",fontsize=10,color="white",style="solid",shape="box"];3213 -> 4664[label="",style="solid", color="burlywood", weight=9]; 25.22/9.07 4664 -> 3285[label="",style="solid", color="burlywood", weight=3]; 25.22/9.07 3215[label="xuu384",fontsize=16,color="green",shape="box"];3216[label="FiniteMap.mkBalBranch6MkBalBranch00 xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu380 xuu381 xuu382 xuu383 xuu384 True",fontsize=16,color="black",shape="box"];3216 -> 3286[label="",style="solid", color="black", weight=3]; 25.22/9.07 3217 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3217[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu380 xuu381 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) [] xuu31 xuu33 xuu383) xuu384",fontsize=16,color="magenta"];3217 -> 3521[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3217 -> 3522[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3217 -> 3523[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3217 -> 3524[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3217 -> 3525[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3219[label="xuu263",fontsize=16,color="green",shape="box"];3220[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34 xuu260 xuu261 xuu262 xuu263 xuu264 True",fontsize=16,color="black",shape="box"];3220 -> 3288[label="",style="solid", color="black", weight=3]; 25.22/9.07 3221 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3221[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu260 xuu261 xuu263 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (xuu300 : xuu301) xuu31 xuu264 xuu34)",fontsize=16,color="magenta"];3221 -> 3526[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3221 -> 3527[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3221 -> 3528[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3221 -> 3529[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3221 -> 3530[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3222[label="error []",fontsize=16,color="red",shape="box"];3223 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3223[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu3430 xuu3431 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu300 : xuu301) xuu31 xuu26 xuu3433) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344)",fontsize=16,color="magenta"];3223 -> 3531[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3223 -> 3532[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3223 -> 3533[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3223 -> 3534[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3223 -> 3535[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3226[label="xuu592",fontsize=16,color="green",shape="box"];3227[label="xuu602",fontsize=16,color="green",shape="box"];3228[label="xuu592",fontsize=16,color="green",shape="box"];3229[label="xuu602",fontsize=16,color="green",shape="box"];3230[label="xuu592",fontsize=16,color="green",shape="box"];3231[label="xuu602",fontsize=16,color="green",shape="box"];3232[label="xuu592",fontsize=16,color="green",shape="box"];3233[label="xuu602",fontsize=16,color="green",shape="box"];3234[label="xuu592",fontsize=16,color="green",shape="box"];3235[label="xuu602",fontsize=16,color="green",shape="box"];3236[label="xuu592",fontsize=16,color="green",shape="box"];3237[label="xuu602",fontsize=16,color="green",shape="box"];3238[label="xuu592",fontsize=16,color="green",shape="box"];3239[label="xuu602",fontsize=16,color="green",shape="box"];3240[label="xuu592",fontsize=16,color="green",shape="box"];3241[label="xuu602",fontsize=16,color="green",shape="box"];3242[label="xuu592",fontsize=16,color="green",shape="box"];3243[label="xuu602",fontsize=16,color="green",shape="box"];3244[label="xuu592",fontsize=16,color="green",shape="box"];3245[label="xuu602",fontsize=16,color="green",shape="box"];3246[label="xuu592",fontsize=16,color="green",shape="box"];3247[label="xuu602",fontsize=16,color="green",shape="box"];3248[label="xuu592",fontsize=16,color="green",shape="box"];3249[label="xuu602",fontsize=16,color="green",shape="box"];3250[label="xuu592",fontsize=16,color="green",shape="box"];3251[label="xuu602",fontsize=16,color="green",shape="box"];3252[label="xuu592",fontsize=16,color="green",shape="box"];3253[label="xuu602",fontsize=16,color="green",shape="box"];3254[label="xuu591",fontsize=16,color="green",shape="box"];3255[label="xuu601",fontsize=16,color="green",shape="box"];3256[label="xuu591",fontsize=16,color="green",shape="box"];3257[label="xuu601",fontsize=16,color="green",shape="box"];3258[label="xuu591",fontsize=16,color="green",shape="box"];3259[label="xuu601",fontsize=16,color="green",shape="box"];3260[label="xuu591",fontsize=16,color="green",shape="box"];3261[label="xuu601",fontsize=16,color="green",shape="box"];3262[label="xuu591",fontsize=16,color="green",shape="box"];3263[label="xuu601",fontsize=16,color="green",shape="box"];3264[label="xuu591",fontsize=16,color="green",shape="box"];3265[label="xuu601",fontsize=16,color="green",shape="box"];3266[label="xuu591",fontsize=16,color="green",shape="box"];3267[label="xuu601",fontsize=16,color="green",shape="box"];3268[label="xuu591",fontsize=16,color="green",shape="box"];3269[label="xuu601",fontsize=16,color="green",shape="box"];3270[label="xuu591",fontsize=16,color="green",shape="box"];3271[label="xuu601",fontsize=16,color="green",shape="box"];3272[label="xuu591",fontsize=16,color="green",shape="box"];3273[label="xuu601",fontsize=16,color="green",shape="box"];3274[label="xuu591",fontsize=16,color="green",shape="box"];3275[label="xuu601",fontsize=16,color="green",shape="box"];3276[label="xuu591",fontsize=16,color="green",shape="box"];3277[label="xuu601",fontsize=16,color="green",shape="box"];3278[label="xuu591",fontsize=16,color="green",shape="box"];3279[label="xuu601",fontsize=16,color="green",shape="box"];3280[label="xuu591",fontsize=16,color="green",shape="box"];3281[label="xuu601",fontsize=16,color="green",shape="box"];3282 -> 1811[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3282[label="FiniteMap.sizeFM xuu334",fontsize=16,color="magenta"];3282 -> 3314[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3283 -> 406[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3283[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu333",fontsize=16,color="magenta"];3283 -> 3315[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3283 -> 3316[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3284[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38 xuu330 xuu331 xuu332 xuu333 xuu334 False",fontsize=16,color="black",shape="box"];3284 -> 3317[label="",style="solid", color="black", weight=3]; 25.22/9.07 3285[label="FiniteMap.mkBalBranch6MkBalBranch11 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38 xuu330 xuu331 xuu332 xuu333 xuu334 True",fontsize=16,color="black",shape="box"];3285 -> 3318[label="",style="solid", color="black", weight=3]; 25.22/9.07 3286[label="FiniteMap.mkBalBranch6Double_L xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 xuu383 xuu384)",fontsize=16,color="burlywood",shape="box"];4665[label="xuu383/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3286 -> 4665[label="",style="solid", color="burlywood", weight=9]; 25.22/9.07 4665 -> 3319[label="",style="solid", color="burlywood", weight=3]; 25.22/9.07 4666[label="xuu383/FiniteMap.Branch xuu3830 xuu3831 xuu3832 xuu3833 xuu3834",fontsize=10,color="white",style="solid",shape="box"];3286 -> 4666[label="",style="solid", color="burlywood", weight=9]; 25.22/9.07 4666 -> 3320[label="",style="solid", color="burlywood", weight=3]; 25.22/9.07 3521[label="xuu381",fontsize=16,color="green",shape="box"];3522 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3522[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) [] xuu31 xuu33 xuu383",fontsize=16,color="magenta"];3522 -> 3672[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3522 -> 3673[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3522 -> 3674[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3522 -> 3675[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3522 -> 3676[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3523[label="xuu384",fontsize=16,color="green",shape="box"];3524[label="Succ (Succ Zero)",fontsize=16,color="green",shape="box"];3525[label="xuu380",fontsize=16,color="green",shape="box"];3288[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 xuu264) xuu34",fontsize=16,color="burlywood",shape="box"];4667[label="xuu264/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3288 -> 4667[label="",style="solid", color="burlywood", weight=9]; 25.22/9.07 4667 -> 3322[label="",style="solid", color="burlywood", weight=3]; 25.22/9.07 4668[label="xuu264/FiniteMap.Branch xuu2640 xuu2641 xuu2642 xuu2643 xuu2644",fontsize=10,color="white",style="solid",shape="box"];3288 -> 4668[label="",style="solid", color="burlywood", weight=9]; 25.22/9.07 4668 -> 3323[label="",style="solid", color="burlywood", weight=3]; 25.22/9.07 3526[label="xuu261",fontsize=16,color="green",shape="box"];3527[label="xuu263",fontsize=16,color="green",shape="box"];3528 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3528[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) (xuu300 : xuu301) xuu31 xuu264 xuu34",fontsize=16,color="magenta"];3528 -> 3677[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3528 -> 3678[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3528 -> 3679[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3528 -> 3680[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3528 -> 3681[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3529[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3530[label="xuu260",fontsize=16,color="green",shape="box"];3531[label="xuu3431",fontsize=16,color="green",shape="box"];3532 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3532[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) (xuu300 : xuu301) xuu31 xuu26 xuu3433",fontsize=16,color="magenta"];3532 -> 3682[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3532 -> 3683[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3532 -> 3684[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3532 -> 3685[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3532 -> 3686[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3533 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3533[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu340 xuu341 xuu3434 xuu344",fontsize=16,color="magenta"];3533 -> 3687[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3533 -> 3688[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3533 -> 3689[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3533 -> 3690[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3533 -> 3691[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3534[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3535[label="xuu3430",fontsize=16,color="green",shape="box"];3314[label="xuu334",fontsize=16,color="green",shape="box"];3315 -> 1811[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3315[label="FiniteMap.sizeFM xuu333",fontsize=16,color="magenta"];3315 -> 3360[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3316[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3317[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38 xuu330 xuu331 xuu332 xuu333 xuu334 otherwise",fontsize=16,color="black",shape="box"];3317 -> 3361[label="",style="solid", color="black", weight=3]; 25.22/9.07 3318[label="FiniteMap.mkBalBranch6Single_R (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38",fontsize=16,color="black",shape="box"];3318 -> 3362[label="",style="solid", color="black", weight=3]; 25.22/9.07 3319[label="FiniteMap.mkBalBranch6Double_L xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 FiniteMap.EmptyFM xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 FiniteMap.EmptyFM xuu384)",fontsize=16,color="black",shape="box"];3319 -> 3363[label="",style="solid", color="black", weight=3]; 25.22/9.07 3320[label="FiniteMap.mkBalBranch6Double_L xuu33 [] xuu31 (FiniteMap.Branch xuu380 xuu381 xuu382 (FiniteMap.Branch xuu3830 xuu3831 xuu3832 xuu3833 xuu3834) xuu384) xuu33 (FiniteMap.Branch xuu380 xuu381 xuu382 (FiniteMap.Branch xuu3830 xuu3831 xuu3832 xuu3833 xuu3834) xuu384)",fontsize=16,color="black",shape="box"];3320 -> 3364[label="",style="solid", color="black", weight=3]; 25.22/9.07 3672[label="xuu31",fontsize=16,color="green",shape="box"];3673[label="xuu33",fontsize=16,color="green",shape="box"];3674[label="xuu383",fontsize=16,color="green",shape="box"];3675[label="Succ (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];3676[label="[]",fontsize=16,color="green",shape="box"];3322[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 FiniteMap.EmptyFM) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 FiniteMap.EmptyFM) xuu34",fontsize=16,color="black",shape="box"];3322 -> 3367[label="",style="solid", color="black", weight=3]; 25.22/9.07 3323[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 (FiniteMap.Branch xuu2640 xuu2641 xuu2642 xuu2643 xuu2644)) (xuu300 : xuu301) xuu31 xuu34 (FiniteMap.Branch xuu260 xuu261 xuu262 xuu263 (FiniteMap.Branch xuu2640 xuu2641 xuu2642 xuu2643 xuu2644)) xuu34",fontsize=16,color="black",shape="box"];3323 -> 3368[label="",style="solid", color="black", weight=3]; 25.22/9.07 3677[label="xuu31",fontsize=16,color="green",shape="box"];3678[label="xuu264",fontsize=16,color="green",shape="box"];3679[label="xuu34",fontsize=16,color="green",shape="box"];3680[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3681[label="xuu300 : xuu301",fontsize=16,color="green",shape="box"];3682[label="xuu31",fontsize=16,color="green",shape="box"];3683[label="xuu26",fontsize=16,color="green",shape="box"];3684[label="xuu3433",fontsize=16,color="green",shape="box"];3685[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3686[label="xuu300 : xuu301",fontsize=16,color="green",shape="box"];3687[label="xuu341",fontsize=16,color="green",shape="box"];3688[label="xuu3434",fontsize=16,color="green",shape="box"];3689[label="xuu344",fontsize=16,color="green",shape="box"];3690[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3691[label="xuu340",fontsize=16,color="green",shape="box"];3360[label="xuu333",fontsize=16,color="green",shape="box"];3361[label="FiniteMap.mkBalBranch6MkBalBranch10 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38 xuu330 xuu331 xuu332 xuu333 xuu334 True",fontsize=16,color="black",shape="box"];3361 -> 3373[label="",style="solid", color="black", weight=3]; 25.22/9.07 3362 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3362[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu330 xuu331 xuu333 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) [] xuu31 xuu334 xuu38)",fontsize=16,color="magenta"];3362 -> 3566[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3362 -> 3567[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3362 -> 3568[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3362 -> 3569[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3362 -> 3570[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3363[label="error []",fontsize=16,color="red",shape="box"];3364 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3364[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu3830 xuu3831 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) [] xuu31 xuu33 xuu3833) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu380 xuu381 xuu3834 xuu384)",fontsize=16,color="magenta"];3364 -> 3571[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3364 -> 3572[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3364 -> 3573[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3364 -> 3574[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3364 -> 3575[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3367[label="error []",fontsize=16,color="red",shape="box"];3368 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3368[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu2640 xuu2641 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu260 xuu261 xuu263 xuu2643) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (xuu300 : xuu301) xuu31 xuu2644 xuu34)",fontsize=16,color="magenta"];3368 -> 3581[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3368 -> 3582[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3368 -> 3583[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3368 -> 3584[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3368 -> 3585[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3373[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 xuu334) xuu38",fontsize=16,color="burlywood",shape="box"];4669[label="xuu334/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3373 -> 4669[label="",style="solid", color="burlywood", weight=9]; 25.22/9.07 4669 -> 3417[label="",style="solid", color="burlywood", weight=3]; 25.22/9.07 4670[label="xuu334/FiniteMap.Branch xuu3340 xuu3341 xuu3342 xuu3343 xuu3344",fontsize=10,color="white",style="solid",shape="box"];3373 -> 4670[label="",style="solid", color="burlywood", weight=9]; 25.22/9.07 4670 -> 3418[label="",style="solid", color="burlywood", weight=3]; 25.22/9.07 3566[label="xuu331",fontsize=16,color="green",shape="box"];3567[label="xuu333",fontsize=16,color="green",shape="box"];3568 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3568[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) [] xuu31 xuu334 xuu38",fontsize=16,color="magenta"];3568 -> 3692[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3568 -> 3693[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3568 -> 3694[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3568 -> 3695[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3568 -> 3696[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3569[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3570[label="xuu330",fontsize=16,color="green",shape="box"];3571[label="xuu3831",fontsize=16,color="green",shape="box"];3572 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3572[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) [] xuu31 xuu33 xuu3833",fontsize=16,color="magenta"];3572 -> 3697[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3572 -> 3698[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3572 -> 3699[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3572 -> 3700[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3572 -> 3701[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3573 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3573[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu380 xuu381 xuu3834 xuu384",fontsize=16,color="magenta"];3573 -> 3702[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3573 -> 3703[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3573 -> 3704[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3573 -> 3705[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3573 -> 3706[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3574[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3575[label="xuu3830",fontsize=16,color="green",shape="box"];3581[label="xuu2641",fontsize=16,color="green",shape="box"];3582 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3582[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu260 xuu261 xuu263 xuu2643",fontsize=16,color="magenta"];3582 -> 3707[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3582 -> 3708[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3582 -> 3709[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3582 -> 3710[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3582 -> 3711[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3583 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3583[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) (xuu300 : xuu301) xuu31 xuu2644 xuu34",fontsize=16,color="magenta"];3583 -> 3712[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3583 -> 3713[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3583 -> 3714[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3583 -> 3715[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3583 -> 3716[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3584[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3585[label="xuu2640",fontsize=16,color="green",shape="box"];3417[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 FiniteMap.EmptyFM) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 FiniteMap.EmptyFM) xuu38",fontsize=16,color="black",shape="box"];3417 -> 3717[label="",style="solid", color="black", weight=3]; 25.22/9.07 3418[label="FiniteMap.mkBalBranch6Double_R (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 (FiniteMap.Branch xuu3340 xuu3341 xuu3342 xuu3343 xuu3344)) [] xuu31 xuu38 (FiniteMap.Branch xuu330 xuu331 xuu332 xuu333 (FiniteMap.Branch xuu3340 xuu3341 xuu3342 xuu3343 xuu3344)) xuu38",fontsize=16,color="black",shape="box"];3418 -> 3718[label="",style="solid", color="black", weight=3]; 25.22/9.07 3692[label="xuu31",fontsize=16,color="green",shape="box"];3693[label="xuu334",fontsize=16,color="green",shape="box"];3694[label="xuu38",fontsize=16,color="green",shape="box"];3695[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3696[label="[]",fontsize=16,color="green",shape="box"];3697[label="xuu31",fontsize=16,color="green",shape="box"];3698[label="xuu33",fontsize=16,color="green",shape="box"];3699[label="xuu3833",fontsize=16,color="green",shape="box"];3700[label="Succ (Succ (Succ (Succ (Succ Zero))))",fontsize=16,color="green",shape="box"];3701[label="[]",fontsize=16,color="green",shape="box"];3702[label="xuu381",fontsize=16,color="green",shape="box"];3703[label="xuu3834",fontsize=16,color="green",shape="box"];3704[label="xuu384",fontsize=16,color="green",shape="box"];3705[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3706[label="xuu380",fontsize=16,color="green",shape="box"];3707[label="xuu261",fontsize=16,color="green",shape="box"];3708[label="xuu263",fontsize=16,color="green",shape="box"];3709[label="xuu2643",fontsize=16,color="green",shape="box"];3710[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3711[label="xuu260",fontsize=16,color="green",shape="box"];3712[label="xuu31",fontsize=16,color="green",shape="box"];3713[label="xuu2644",fontsize=16,color="green",shape="box"];3714[label="xuu34",fontsize=16,color="green",shape="box"];3715[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3716[label="xuu300 : xuu301",fontsize=16,color="green",shape="box"];3717[label="error []",fontsize=16,color="red",shape="box"];3718 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3718[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu3340 xuu3341 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu330 xuu331 xuu333 xuu3343) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) [] xuu31 xuu3344 xuu38)",fontsize=16,color="magenta"];3718 -> 3720[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3718 -> 3721[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3718 -> 3722[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3718 -> 3723[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3718 -> 3724[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3720[label="xuu3341",fontsize=16,color="green",shape="box"];3721 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3721[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu330 xuu331 xuu333 xuu3343",fontsize=16,color="magenta"];3721 -> 3726[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3721 -> 3727[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3721 -> 3728[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3721 -> 3729[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3721 -> 3730[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3722 -> 3495[label="",style="dashed", color="red", weight=0]; 25.22/9.07 3722[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) [] xuu31 xuu3344 xuu38",fontsize=16,color="magenta"];3722 -> 3731[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3722 -> 3732[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3722 -> 3733[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3722 -> 3734[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3722 -> 3735[label="",style="dashed", color="magenta", weight=3]; 25.22/9.07 3723[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3724[label="xuu3340",fontsize=16,color="green",shape="box"];3726[label="xuu331",fontsize=16,color="green",shape="box"];3727[label="xuu333",fontsize=16,color="green",shape="box"];3728[label="xuu3343",fontsize=16,color="green",shape="box"];3729[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3730[label="xuu330",fontsize=16,color="green",shape="box"];3731[label="xuu31",fontsize=16,color="green",shape="box"];3732[label="xuu3344",fontsize=16,color="green",shape="box"];3733[label="xuu38",fontsize=16,color="green",shape="box"];3734[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3735[label="[]",fontsize=16,color="green",shape="box"];} 25.22/9.07 25.22/9.07 ---------------------------------------- 25.22/9.07 25.22/9.07 (16) 25.22/9.07 Complex Obligation (AND) 25.22/9.07 25.22/9.07 ---------------------------------------- 25.22/9.07 25.22/9.07 (17) 25.22/9.07 Obligation: 25.22/9.07 Q DP problem: 25.22/9.07 The TRS P consists of the following rules: 25.22/9.07 25.22/9.07 new_primCmpNat(Succ(xuu400000), Succ(xuu30000)) -> new_primCmpNat(xuu400000, xuu30000) 25.22/9.07 25.22/9.07 R is empty. 25.22/9.07 Q is empty. 25.22/9.07 We have to consider all minimal (P,Q,R)-chains. 25.22/9.07 ---------------------------------------- 25.22/9.07 25.22/9.07 (18) QDPSizeChangeProof (EQUIVALENT) 25.22/9.07 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 25.22/9.07 25.22/9.07 From the DPs we obtained the following set of size-change graphs: 25.22/9.07 *new_primCmpNat(Succ(xuu400000), Succ(xuu30000)) -> new_primCmpNat(xuu400000, xuu30000) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2 25.22/9.07 25.22/9.07 25.22/9.07 ---------------------------------------- 25.22/9.07 25.22/9.07 (19) 25.22/9.07 YES 25.22/9.07 25.22/9.07 ---------------------------------------- 25.22/9.07 25.22/9.07 (20) 25.22/9.07 Obligation: 25.22/9.07 Q DP problem: 25.22/9.07 The TRS P consists of the following rules: 25.22/9.07 25.22/9.07 new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, app(ty_Maybe, ga), fb) -> new_esEs2(xuu400001, xuu30001, ga) 25.22/9.07 new_esEs1(Left(xuu400000), Left(xuu30000), app(app(ty_Either, bab), bac), hf) -> new_esEs1(xuu400000, xuu30000, bab, bac) 25.22/9.07 new_esEs3(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(app(ty_Either, bdg), bdh)) -> new_esEs1(xuu400000, xuu30000, bdg, bdh) 25.22/9.07 new_esEs1(Left(xuu400000), Left(xuu30000), app(ty_[], bae), hf) -> new_esEs3(xuu400000, xuu30000, bae) 25.22/9.07 new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(ty_Maybe, hb), df, fb) -> new_esEs2(xuu400000, xuu30000, hb) 25.22/9.07 new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_esEs0(xuu400001, xuu30001, fc, fd, ff) 25.22/9.07 new_esEs2(Just(xuu400000), Just(xuu30000), app(app(ty_@2, bbh), bca)) -> new_esEs(xuu400000, xuu30000, bbh, bca) 25.22/9.07 new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(app(ty_@2, cb), cc), cd) -> new_esEs(xuu400000, xuu30000, cb, cc) 25.22/9.07 new_esEs3(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(ty_Maybe, bea)) -> new_esEs2(xuu400000, xuu30000, bea) 25.22/9.07 new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), h, app(app(app(ty_@3, bc), bd), be)) -> new_esEs0(xuu400001, xuu30001, bc, bd, be) 25.22/9.07 new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), h, app(ty_[], ca)) -> new_esEs3(xuu400001, xuu30001, ca) 25.22/9.07 new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), h, app(ty_Maybe, bh)) -> new_esEs2(xuu400001, xuu30001, bh) 25.22/9.07 new_esEs3(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(ty_[], beb)) -> new_esEs3(xuu400000, xuu30000, beb) 25.22/9.07 new_esEs2(Just(xuu400000), Just(xuu30000), app(ty_Maybe, bcg)) -> new_esEs2(xuu400000, xuu30000, bcg) 25.22/9.07 new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(app(ty_@2, gc), gd), df, fb) -> new_esEs(xuu400000, xuu30000, gc, gd) 25.22/9.07 new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(app(ty_Either, gh), ha), df, fb) -> new_esEs1(xuu400000, xuu30000, gh, ha) 25.22/9.07 new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(ty_Maybe, dc), cd) -> new_esEs2(xuu400000, xuu30000, dc) 25.22/9.07 new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, df, app(ty_[], eg)) -> new_esEs3(xuu400002, xuu30002, eg) 25.22/9.07 new_esEs2(Just(xuu400000), Just(xuu30000), app(ty_[], bch)) -> new_esEs3(xuu400000, xuu30000, bch) 25.22/9.07 new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs0(xuu400002, xuu30002, ea, eb, ec) 25.22/9.07 new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), h, app(app(ty_@2, ba), bb)) -> new_esEs(xuu400001, xuu30001, ba, bb) 25.22/9.07 new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, df, app(ty_Maybe, ef)) -> new_esEs2(xuu400002, xuu30002, ef) 25.22/9.07 new_esEs1(Left(xuu400000), Left(xuu30000), app(app(app(ty_@3, hg), hh), baa), hf) -> new_esEs0(xuu400000, xuu30000, hg, hh, baa) 25.22/9.07 new_esEs3(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(app(ty_@2, bdb), bdc)) -> new_esEs(xuu400000, xuu30000, bdb, bdc) 25.22/9.07 new_esEs1(Left(xuu400000), Left(xuu30000), app(app(ty_@2, hd), he), hf) -> new_esEs(xuu400000, xuu30000, hd, he) 25.22/9.07 new_esEs1(Left(xuu400000), Left(xuu30000), app(ty_Maybe, bad), hf) -> new_esEs2(xuu400000, xuu30000, bad) 25.22/9.07 new_esEs2(Just(xuu400000), Just(xuu30000), app(app(ty_Either, bce), bcf)) -> new_esEs1(xuu400000, xuu30000, bce, bcf) 25.22/9.07 new_esEs3(:(xuu400000, xuu400001), :(xuu30000, xuu30001), bda) -> new_esEs3(xuu400001, xuu30001, bda) 25.22/9.07 new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), h, app(app(ty_Either, bf), bg)) -> new_esEs1(xuu400001, xuu30001, bf, bg) 25.22/9.07 new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(app(ty_Either, da), db), cd) -> new_esEs1(xuu400000, xuu30000, da, db) 25.22/9.07 new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, app(ty_[], gb), fb) -> new_esEs3(xuu400001, xuu30001, gb) 25.22/9.07 new_esEs3(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(xuu400000, xuu30000, bdd, bde, bdf) 25.22/9.07 new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, app(app(ty_Either, fg), fh), fb) -> new_esEs1(xuu400001, xuu30001, fg, fh) 25.22/9.07 new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(ty_[], hc), df, fb) -> new_esEs3(xuu400000, xuu30000, hc) 25.22/9.07 new_esEs1(Right(xuu400000), Right(xuu30000), baf, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(xuu400000, xuu30000, bba, bbb, bbc) 25.22/9.07 new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, app(app(ty_@2, eh), fa), fb) -> new_esEs(xuu400001, xuu30001, eh, fa) 25.22/9.07 new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(ty_[], dd), cd) -> new_esEs3(xuu400000, xuu30000, dd) 25.22/9.07 new_esEs1(Right(xuu400000), Right(xuu30000), baf, app(ty_[], bbg)) -> new_esEs3(xuu400000, xuu30000, bbg) 25.22/9.07 new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, df, app(app(ty_@2, dg), dh)) -> new_esEs(xuu400002, xuu30002, dg, dh) 25.22/9.07 new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(app(app(ty_@3, ce), cf), cg), cd) -> new_esEs0(xuu400000, xuu30000, ce, cf, cg) 25.22/9.07 new_esEs1(Right(xuu400000), Right(xuu30000), baf, app(app(ty_@2, bag), bah)) -> new_esEs(xuu400000, xuu30000, bag, bah) 25.22/9.07 new_esEs1(Right(xuu400000), Right(xuu30000), baf, app(ty_Maybe, bbf)) -> new_esEs2(xuu400000, xuu30000, bbf) 25.22/9.07 new_esEs1(Right(xuu400000), Right(xuu30000), baf, app(app(ty_Either, bbd), bbe)) -> new_esEs1(xuu400000, xuu30000, bbd, bbe) 25.22/9.07 new_esEs2(Just(xuu400000), Just(xuu30000), app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(xuu400000, xuu30000, bcb, bcc, bcd) 25.22/9.07 new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_esEs0(xuu400000, xuu30000, ge, gf, gg) 25.22/9.07 new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, df, app(app(ty_Either, ed), ee)) -> new_esEs1(xuu400002, xuu30002, ed, ee) 25.22/9.07 25.22/9.07 R is empty. 25.22/9.07 Q is empty. 25.22/9.07 We have to consider all minimal (P,Q,R)-chains. 25.22/9.07 ---------------------------------------- 25.22/9.07 25.22/9.07 (21) QDPSizeChangeProof (EQUIVALENT) 25.22/9.07 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 25.22/9.07 25.22/9.07 From the DPs we obtained the following set of size-change graphs: 25.22/9.07 *new_esEs2(Just(xuu400000), Just(xuu30000), app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(xuu400000, xuu30000, bcb, bcc, bcd) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs2(Just(xuu400000), Just(xuu30000), app(app(ty_Either, bce), bcf)) -> new_esEs1(xuu400000, xuu30000, bce, bcf) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs2(Just(xuu400000), Just(xuu30000), app(ty_[], bch)) -> new_esEs3(xuu400000, xuu30000, bch) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs3(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(xuu400000, xuu30000, bdd, bde, bdf) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs3(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(app(ty_Either, bdg), bdh)) -> new_esEs1(xuu400000, xuu30000, bdg, bdh) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs2(Just(xuu400000), Just(xuu30000), app(ty_Maybe, bcg)) -> new_esEs2(xuu400000, xuu30000, bcg) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs2(Just(xuu400000), Just(xuu30000), app(app(ty_@2, bbh), bca)) -> new_esEs(xuu400000, xuu30000, bbh, bca) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs3(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(ty_Maybe, bea)) -> new_esEs2(xuu400000, xuu30000, bea) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs3(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(app(ty_@2, bdb), bdc)) -> new_esEs(xuu400000, xuu30000, bdb, bdc) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs1(Left(xuu400000), Left(xuu30000), app(app(app(ty_@3, hg), hh), baa), hf) -> new_esEs0(xuu400000, xuu30000, hg, hh, baa) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs1(Right(xuu400000), Right(xuu30000), baf, app(app(app(ty_@3, bba), bbb), bbc)) -> new_esEs0(xuu400000, xuu30000, bba, bbb, bbc) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_esEs0(xuu400001, xuu30001, fc, fd, ff) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs0(xuu400002, xuu30002, ea, eb, ec) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_esEs0(xuu400000, xuu30000, ge, gf, gg) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), h, app(app(app(ty_@3, bc), bd), be)) -> new_esEs0(xuu400001, xuu30001, bc, bd, be) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(app(app(ty_@3, ce), cf), cg), cd) -> new_esEs0(xuu400000, xuu30000, ce, cf, cg) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs1(Left(xuu400000), Left(xuu30000), app(app(ty_Either, bab), bac), hf) -> new_esEs1(xuu400000, xuu30000, bab, bac) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs1(Right(xuu400000), Right(xuu30000), baf, app(app(ty_Either, bbd), bbe)) -> new_esEs1(xuu400000, xuu30000, bbd, bbe) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs1(Left(xuu400000), Left(xuu30000), app(ty_[], bae), hf) -> new_esEs3(xuu400000, xuu30000, bae) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs1(Right(xuu400000), Right(xuu30000), baf, app(ty_[], bbg)) -> new_esEs3(xuu400000, xuu30000, bbg) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs1(Left(xuu400000), Left(xuu30000), app(ty_Maybe, bad), hf) -> new_esEs2(xuu400000, xuu30000, bad) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs1(Right(xuu400000), Right(xuu30000), baf, app(ty_Maybe, bbf)) -> new_esEs2(xuu400000, xuu30000, bbf) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs1(Left(xuu400000), Left(xuu30000), app(app(ty_@2, hd), he), hf) -> new_esEs(xuu400000, xuu30000, hd, he) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs1(Right(xuu400000), Right(xuu30000), baf, app(app(ty_@2, bag), bah)) -> new_esEs(xuu400000, xuu30000, bag, bah) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(app(ty_Either, gh), ha), df, fb) -> new_esEs1(xuu400000, xuu30000, gh, ha) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, app(app(ty_Either, fg), fh), fb) -> new_esEs1(xuu400001, xuu30001, fg, fh) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, df, app(app(ty_Either, ed), ee)) -> new_esEs1(xuu400002, xuu30002, ed, ee) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), h, app(app(ty_Either, bf), bg)) -> new_esEs1(xuu400001, xuu30001, bf, bg) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(app(ty_Either, da), db), cd) -> new_esEs1(xuu400000, xuu30000, da, db) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs3(:(xuu400000, xuu400001), :(xuu30000, xuu30001), app(ty_[], beb)) -> new_esEs3(xuu400000, xuu30000, beb) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs3(:(xuu400000, xuu400001), :(xuu30000, xuu30001), bda) -> new_esEs3(xuu400001, xuu30001, bda) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, df, app(ty_[], eg)) -> new_esEs3(xuu400002, xuu30002, eg) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, app(ty_[], gb), fb) -> new_esEs3(xuu400001, xuu30001, gb) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(ty_[], hc), df, fb) -> new_esEs3(xuu400000, xuu30000, hc) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), h, app(ty_[], ca)) -> new_esEs3(xuu400001, xuu30001, ca) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(ty_[], dd), cd) -> new_esEs3(xuu400000, xuu30000, dd) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, app(ty_Maybe, ga), fb) -> new_esEs2(xuu400001, xuu30001, ga) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(ty_Maybe, hb), df, fb) -> new_esEs2(xuu400000, xuu30000, hb) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, df, app(ty_Maybe, ef)) -> new_esEs2(xuu400002, xuu30002, ef) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), app(app(ty_@2, gc), gd), df, fb) -> new_esEs(xuu400000, xuu30000, gc, gd) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, app(app(ty_@2, eh), fa), fb) -> new_esEs(xuu400001, xuu30001, eh, fa) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs0(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), de, df, app(app(ty_@2, dg), dh)) -> new_esEs(xuu400002, xuu30002, dg, dh) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), h, app(ty_Maybe, bh)) -> new_esEs2(xuu400001, xuu30001, bh) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(ty_Maybe, dc), cd) -> new_esEs2(xuu400000, xuu30000, dc) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), app(app(ty_@2, cb), cc), cd) -> new_esEs(xuu400000, xuu30000, cb, cc) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.22/9.07 25.22/9.07 25.22/9.07 *new_esEs(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), h, app(app(ty_@2, ba), bb)) -> new_esEs(xuu400001, xuu30001, ba, bb) 25.22/9.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.22/9.07 25.22/9.07 25.22/9.07 ---------------------------------------- 25.22/9.07 25.22/9.07 (22) 25.22/9.07 YES 25.22/9.07 25.22/9.07 ---------------------------------------- 25.22/9.07 25.22/9.07 (23) 25.22/9.07 Obligation: 25.22/9.07 Q DP problem: 25.22/9.07 The TRS P consists of the following rules: 25.22/9.07 25.22/9.07 new_compare20(Left(xuu590), Left(xuu600), False, app(app(ty_Either, app(app(ty_@2, bec), bed)), bdd), hd) -> new_ltEs3(xuu590, xuu600, bec, bed) 25.22/9.07 new_primCompAux0(xuu34, xuu35, EQ, app(ty_Maybe, db)) -> new_compare4(xuu34, xuu35, db) 25.22/9.07 new_compare1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bc, bd, be) -> new_compare2(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs6(xuu40000, xuu3000, bc), new_asAs(new_esEs5(xuu40001, xuu3001, bd), new_esEs4(xuu40002, xuu3002, be))), bc, bd, be) 25.22/9.07 new_ltEs(xuu59, xuu60, hc) -> new_compare(xuu59, xuu60, hc) 25.22/9.07 new_compare23(xuu111, xuu112, xuu113, xuu114, False, app(ty_Maybe, cef), cdh) -> new_lt2(xuu111, xuu113, cef) 25.22/9.07 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, app(app(ty_Either, cag), cah)) -> new_ltEs1(xuu591, xuu601, cag, cah) 25.22/9.07 new_compare21(xuu66, xuu67, False, cfa, app(app(ty_@2, cga), cgb)) -> new_ltEs3(xuu66, xuu67, cga, cgb) 25.22/9.07 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs0(xuu592, xuu602, bcc, bcd, bce) 25.22/9.07 new_compare21(xuu66, xuu67, False, cfa, app(ty_[], cfb)) -> new_ltEs(xuu66, xuu67, cfb) 25.22/9.07 new_compare20(Just(xuu590), Just(xuu600), False, app(ty_Maybe, app(ty_Maybe, bge)), hd) -> new_ltEs2(xuu590, xuu600, bge) 25.22/9.07 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, app(ty_Maybe, ed), de, df) -> new_compare4(xuu98, xuu101, ed) 25.22/9.07 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, app(app(app(ty_@3, fa), fb), fc), df) -> new_lt0(xuu99, xuu102, fa, fb, fc) 25.22/9.07 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, cab), app(app(ty_@2, cbb), cbc)), hd) -> new_ltEs3(xuu591, xuu601, cbb, cbc) 25.22/9.07 new_primCompAux(Right(xuu40000), Right(xuu3000), xuu4001, xuu301, app(app(ty_Either, bf), bg)) -> new_compare21(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bg), bf, bg) 25.22/9.07 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), app(ty_[], bba)), hg), hd) -> new_lt(xuu591, xuu601, bba) 25.22/9.07 new_compare20(Left(xuu590), Left(xuu600), False, app(app(ty_Either, app(ty_[], bdc)), bdd), hd) -> new_ltEs(xuu590, xuu600, bdc) 25.22/9.07 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), hf), app(app(app(ty_@3, bcc), bcd), bce)), hd) -> new_ltEs0(xuu592, xuu602, bcc, bcd, bce) 25.22/9.07 new_compare23(xuu111, xuu112, xuu113, xuu114, False, app(ty_[], cdg), cdh) -> new_lt(xuu111, xuu113, cdg) 25.22/9.07 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), app(app(app(ty_@3, hh), baa), bab), hf, hg) -> new_lt0(xuu590, xuu600, hh, baa, bab) 25.22/9.07 new_ltEs1(Right(xuu590), Right(xuu600), bee, app(ty_[], bef)) -> new_ltEs(xuu590, xuu600, bef) 25.22/9.07 new_compare20(Just(xuu590), Just(xuu600), False, app(ty_Maybe, app(app(ty_Either, bgc), bgd)), hd) -> new_ltEs1(xuu590, xuu600, bgc, bgd) 25.22/9.07 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, app(app(ty_@2, ha), hb)) -> new_ltEs3(xuu100, xuu103, ha, hb) 25.22/9.07 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, app(ty_[], bgh)), bha), hd) -> new_lt(xuu590, xuu600, bgh) 25.22/9.07 new_ltEs1(Left(xuu590), Left(xuu600), app(ty_Maybe, beb), bdd) -> new_ltEs2(xuu590, xuu600, beb) 25.22/9.07 new_ltEs1(Left(xuu590), Left(xuu600), app(ty_[], bdc), bdd) -> new_ltEs(xuu590, xuu600, bdc) 25.22/9.07 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, app(app(ty_@2, fh), ga), df) -> new_lt3(xuu99, xuu102, fh, ga) 25.22/9.07 new_compare3(Right(xuu40000), Right(xuu3000), bf, bg) -> new_compare21(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bg), bf, bg) 25.22/9.07 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), app(app(ty_@2, bbh), bca)), hg), hd) -> new_lt3(xuu591, xuu601, bbh, bca) 25.22/9.07 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, app(app(ty_@2, baf), bag)), hf), hg), hd) -> new_lt3(xuu590, xuu600, baf, bag) 25.22/9.07 new_primCompAux(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), xuu4001, xuu301, app(app(ty_@2, ca), cb)) -> new_compare23(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs11(xuu40000, xuu3000, ca), new_esEs10(xuu40001, xuu3001, cb)), ca, cb) 25.22/9.07 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), hf), app(ty_Maybe, bch)), hd) -> new_ltEs2(xuu592, xuu602, bch) 25.22/9.07 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, app(app(ty_@2, cbb), cbc)) -> new_ltEs3(xuu591, xuu601, cbb, cbc) 25.22/9.07 new_ltEs1(Right(xuu590), Right(xuu600), bee, app(app(ty_Either, bfb), bfc)) -> new_ltEs1(xuu590, xuu600, bfb, bfc) 25.22/9.07 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, app(app(app(ty_@3, hh), baa), bab)), hf), hg), hd) -> new_lt0(xuu590, xuu600, hh, baa, bab) 25.22/9.07 new_ltEs1(Left(xuu590), Left(xuu600), app(app(ty_@2, bec), bed), bdd) -> new_ltEs3(xuu590, xuu600, bec, bed) 25.22/9.07 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), app(app(ty_@2, bhh), caa), bha) -> new_lt3(xuu590, xuu600, bhh, caa) 25.22/9.07 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, app(ty_Maybe, cba)) -> new_ltEs2(xuu591, xuu601, cba) 25.22/9.07 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, app(app(ty_Either, eb), ec), de, df) -> new_compare3(xuu98, xuu101, eb, ec) 25.22/9.07 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, app(ty_Maybe, bhg)), bha), hd) -> new_lt2(xuu590, xuu600, bhg) 25.22/9.07 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), app(ty_Maybe, bae), hf, hg) -> new_lt2(xuu590, xuu600, bae) 25.22/9.07 new_compare20(Right(xuu590), Right(xuu600), False, app(app(ty_Either, bee), app(ty_[], bef)), hd) -> new_ltEs(xuu590, xuu600, bef) 25.22/9.07 new_compare23(xuu111, xuu112, xuu113, xuu114, False, cce, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs0(xuu112, xuu114, ccg, cch, cda) 25.22/9.07 new_compare20(Right(xuu590), Right(xuu600), False, app(app(ty_Either, bee), app(app(ty_@2, bfe), bff)), hd) -> new_ltEs3(xuu590, xuu600, bfe, bff) 25.22/9.07 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), app(ty_[], he), hf, hg) -> new_lt(xuu590, xuu600, he) 25.22/9.07 new_compare21(xuu66, xuu67, False, cfa, app(ty_Maybe, cfh)) -> new_ltEs2(xuu66, xuu67, cfh) 25.22/9.07 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, app(app(ty_Either, fd), ff), df) -> new_lt1(xuu99, xuu102, fd, ff) 25.22/9.07 new_lt3(xuu98, xuu101, ee, ef) -> new_compare5(xuu98, xuu101, ee, ef) 25.22/9.07 new_primCompAux(Just(xuu40000), Just(xuu3000), xuu4001, xuu301, app(ty_Maybe, bh)) -> new_compare22(xuu40000, xuu3000, new_esEs9(xuu40000, xuu3000, bh), bh) 25.22/9.07 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, app(app(ty_@2, bhh), caa)), bha), hd) -> new_lt3(xuu590, xuu600, bhh, caa) 25.22/9.07 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs0(xuu100, xuu103, gc, gd, ge) 25.22/9.07 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, app(ty_[], bba), hg) -> new_lt(xuu591, xuu601, bba) 25.22/9.07 new_compare22(xuu73, xuu74, False, app(app(ty_@2, ccc), ccd)) -> new_ltEs3(xuu73, xuu74, ccc, ccd) 25.22/9.07 new_ltEs1(Right(xuu590), Right(xuu600), bee, app(ty_Maybe, bfd)) -> new_ltEs2(xuu590, xuu600, bfd) 25.22/9.07 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, app(ty_Maybe, fg), df) -> new_lt2(xuu99, xuu102, fg) 25.22/9.07 new_compare22(xuu73, xuu74, False, app(app(ty_Either, cbh), cca)) -> new_ltEs1(xuu73, xuu74, cbh, cca) 25.22/9.07 new_primCompAux0(xuu34, xuu35, EQ, app(app(ty_Either, cg), da)) -> new_compare3(xuu34, xuu35, cg, da) 25.22/9.07 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), app(ty_[], bgh), bha) -> new_lt(xuu590, xuu600, bgh) 25.22/9.07 new_primCompAux0(xuu34, xuu35, EQ, app(ty_[], cc)) -> new_compare(xuu34, xuu35, cc) 25.22/9.07 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, cab), app(app(app(ty_@3, cad), cae), caf)), hd) -> new_ltEs0(xuu591, xuu601, cad, cae, caf) 25.22/9.07 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), app(ty_Maybe, bbg)), hg), hd) -> new_lt2(xuu591, xuu601, bbg) 25.22/9.07 new_compare22(xuu73, xuu74, False, app(ty_[], cbd)) -> new_ltEs(xuu73, xuu74, cbd) 25.22/9.07 new_primCompAux(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), xuu4001, xuu301, app(app(app(ty_@3, bc), bd), be)) -> new_compare2(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs6(xuu40000, xuu3000, bc), new_asAs(new_esEs5(xuu40001, xuu3001, bd), new_esEs4(xuu40002, xuu3002, be))), bc, bd, be) 25.22/9.07 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, app(ty_[], gb)) -> new_ltEs(xuu100, xuu103, gb) 25.22/9.07 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs0(xuu591, xuu601, cad, cae, caf) 25.22/9.07 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, app(app(ty_@2, ee), ef), de, df) -> new_compare5(xuu98, xuu101, ee, ef) 25.22/9.07 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, app(ty_Maybe, bae)), hf), hg), hd) -> new_lt2(xuu590, xuu600, bae) 25.22/9.07 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, app(app(ty_Either, bcf), bcg)) -> new_ltEs1(xuu592, xuu602, bcf, bcg) 25.22/9.07 new_ltEs2(Just(xuu590), Just(xuu600), app(ty_[], bfg)) -> new_ltEs(xuu590, xuu600, bfg) 25.22/9.07 new_primCompAux(xuu4000, xuu300, xuu4001, xuu301, bb) -> new_primCompAux0(xuu4001, xuu301, new_compare0(xuu4000, xuu300, bb), app(ty_[], bb)) 25.22/9.07 new_compare20(Just(xuu590), Just(xuu600), False, app(ty_Maybe, app(ty_[], bfg)), hd) -> new_ltEs(xuu590, xuu600, bfg) 25.22/9.07 new_ltEs2(Just(xuu590), Just(xuu600), app(ty_Maybe, bge)) -> new_ltEs2(xuu590, xuu600, bge) 25.22/9.07 new_compare23(xuu111, xuu112, xuu113, xuu114, False, app(app(app(ty_@3, cea), ceb), cec), cdh) -> new_lt0(xuu111, xuu113, cea, ceb, cec) 25.22/9.07 new_compare23(xuu111, xuu112, xuu113, xuu114, False, app(app(ty_@2, ceg), ceh), cdh) -> new_lt3(xuu111, xuu113, ceg, ceh) 25.22/9.07 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), app(app(ty_@2, baf), bag), hf, hg) -> new_lt3(xuu590, xuu600, baf, bag) 25.22/9.07 new_compare3(Left(xuu40000), Left(xuu3000), bf, bg) -> new_compare20(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, bf), bf, bg) 25.22/9.07 new_compare22(xuu73, xuu74, False, app(ty_Maybe, ccb)) -> new_ltEs2(xuu73, xuu74, ccb) 25.22/9.07 new_compare20(Left(xuu590), Left(xuu600), False, app(app(ty_Either, app(ty_Maybe, beb)), bdd), hd) -> new_ltEs2(xuu590, xuu600, beb) 25.22/9.07 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, app(ty_[], bcb)) -> new_ltEs(xuu592, xuu602, bcb) 25.22/9.07 new_lt1(xuu98, xuu101, eb, ec) -> new_compare3(xuu98, xuu101, eb, ec) 25.22/9.07 new_ltEs2(Just(xuu590), Just(xuu600), app(app(ty_@2, bgf), bgg)) -> new_ltEs3(xuu590, xuu600, bgf, bgg) 25.22/9.07 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, app(app(ty_@2, bbh), bca), hg) -> new_lt3(xuu591, xuu601, bbh, bca) 25.22/9.07 new_lt0(xuu98, xuu101, dg, dh, ea) -> new_compare1(xuu98, xuu101, dg, dh, ea) 25.22/9.07 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, app(ty_[], cac)) -> new_ltEs(xuu591, xuu601, cac) 25.22/9.07 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, app(app(ty_Either, bhe), bhf)), bha), hd) -> new_lt1(xuu590, xuu600, bhe, bhf) 25.22/9.07 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, cab), app(ty_Maybe, cba)), hd) -> new_ltEs2(xuu591, xuu601, cba) 25.22/9.07 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, app(app(ty_Either, bbe), bbf), hg) -> new_lt1(xuu591, xuu601, bbe, bbf) 25.22/9.07 new_primCompAux0(xuu34, xuu35, EQ, app(app(ty_@2, dc), dd)) -> new_compare5(xuu34, xuu35, dc, dd) 25.22/9.07 new_compare20(Just(xuu590), Just(xuu600), False, app(ty_Maybe, app(app(app(ty_@3, bfh), bga), bgb)), hd) -> new_ltEs0(xuu590, xuu600, bfh, bga, bgb) 25.22/9.07 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), hf), app(app(ty_@2, bda), bdb)), hd) -> new_ltEs3(xuu592, xuu602, bda, bdb) 25.22/9.07 new_ltEs2(Just(xuu590), Just(xuu600), app(app(app(ty_@3, bfh), bga), bgb)) -> new_ltEs0(xuu590, xuu600, bfh, bga, bgb) 25.22/9.07 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), hf), app(app(ty_Either, bcf), bcg)), hd) -> new_ltEs1(xuu592, xuu602, bcf, bcg) 25.22/9.07 new_ltEs2(Just(xuu590), Just(xuu600), app(app(ty_Either, bgc), bgd)) -> new_ltEs1(xuu590, xuu600, bgc, bgd) 25.22/9.07 new_ltEs1(Left(xuu590), Left(xuu600), app(app(app(ty_@3, bde), bdf), bdg), bdd) -> new_ltEs0(xuu590, xuu600, bde, bdf, bdg) 25.22/9.07 new_primCompAux(Left(xuu40000), Left(xuu3000), xuu4001, xuu301, app(app(ty_Either, bf), bg)) -> new_compare20(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, bf), bf, bg) 25.22/9.07 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, app(ty_Maybe, gh)) -> new_ltEs2(xuu100, xuu103, gh) 25.22/9.07 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, cab), app(ty_[], cac)), hd) -> new_ltEs(xuu591, xuu601, cac) 25.22/9.07 new_compare20(Right(xuu590), Right(xuu600), False, app(app(ty_Either, bee), app(app(app(ty_@3, beg), beh), bfa)), hd) -> new_ltEs0(xuu590, xuu600, beg, beh, bfa) 25.22/9.07 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, app(app(app(ty_@3, bbb), bbc), bbd), hg) -> new_lt0(xuu591, xuu601, bbb, bbc, bbd) 25.22/9.07 new_lt(xuu98, xuu101, h) -> new_compare(xuu98, xuu101, h) 25.22/9.07 new_compare23(xuu111, xuu112, xuu113, xuu114, False, app(app(ty_Either, ced), cee), cdh) -> new_lt1(xuu111, xuu113, ced, cee) 25.22/9.07 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, app(app(ty_Either, bac), bad)), hf), hg), hd) -> new_lt1(xuu590, xuu600, bac, bad) 25.22/9.07 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, app(app(ty_@2, bda), bdb)) -> new_ltEs3(xuu592, xuu602, bda, bdb) 25.22/9.07 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), app(app(ty_Either, bac), bad), hf, hg) -> new_lt1(xuu590, xuu600, bac, bad) 25.22/9.07 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), app(app(app(ty_@3, bbb), bbc), bbd)), hg), hd) -> new_lt0(xuu591, xuu601, bbb, bbc, bbd) 25.22/9.07 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, app(app(app(ty_@3, dg), dh), ea), de, df) -> new_compare1(xuu98, xuu101, dg, dh, ea) 25.22/9.07 new_compare21(xuu66, xuu67, False, cfa, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs0(xuu66, xuu67, cfc, cfd, cfe) 25.22/9.07 new_lt2(xuu98, xuu101, ed) -> new_compare4(xuu98, xuu101, ed) 25.22/9.07 new_compare23(xuu111, xuu112, xuu113, xuu114, False, cce, app(app(ty_Either, cdb), cdc)) -> new_ltEs1(xuu112, xuu114, cdb, cdc) 25.22/9.07 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), app(app(app(ty_@3, bhb), bhc), bhd), bha) -> new_lt0(xuu590, xuu600, bhb, bhc, bhd) 25.22/9.07 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, app(ty_[], h), de, df) -> new_compare(xuu98, xuu101, h) 25.22/9.07 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, app(ty_[], he)), hf), hg), hd) -> new_lt(xuu590, xuu600, he) 25.22/9.07 new_compare20(Left(xuu590), Left(xuu600), False, app(app(ty_Either, app(app(ty_Either, bdh), bea)), bdd), hd) -> new_ltEs1(xuu590, xuu600, bdh, bea) 25.22/9.07 new_ltEs1(Left(xuu590), Left(xuu600), app(app(ty_Either, bdh), bea), bdd) -> new_ltEs1(xuu590, xuu600, bdh, bea) 25.22/9.07 new_compare20(Right(xuu590), Right(xuu600), False, app(app(ty_Either, bee), app(app(ty_Either, bfb), bfc)), hd) -> new_ltEs1(xuu590, xuu600, bfb, bfc) 25.22/9.07 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, app(ty_Maybe, bch)) -> new_ltEs2(xuu592, xuu602, bch) 25.22/9.07 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), app(ty_Maybe, bhg), bha) -> new_lt2(xuu590, xuu600, bhg) 25.22/9.07 new_primCompAux(:(xuu40000, xuu40001), :(xuu3000, xuu3001), xuu4001, xuu301, app(ty_[], ba)) -> new_primCompAux(xuu40000, xuu3000, xuu40001, xuu3001, ba) 25.22/9.07 new_compare22(xuu73, xuu74, False, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs0(xuu73, xuu74, cbe, cbf, cbg) 25.22/9.07 new_primCompAux0(xuu34, xuu35, EQ, app(app(app(ty_@3, cd), ce), cf)) -> new_compare1(xuu34, xuu35, cd, ce, cf) 25.22/9.07 new_compare5(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), ca, cb) -> new_compare23(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs11(xuu40000, xuu3000, ca), new_esEs10(xuu40001, xuu3001, cb)), ca, cb) 25.22/9.07 new_compare4(Just(xuu40000), Just(xuu3000), bh) -> new_compare22(xuu40000, xuu3000, new_esEs9(xuu40000, xuu3000, bh), bh) 25.22/9.07 new_compare23(xuu111, xuu112, xuu113, xuu114, False, cce, app(ty_[], ccf)) -> new_ltEs(xuu112, xuu114, ccf) 25.22/9.07 new_ltEs1(Right(xuu590), Right(xuu600), bee, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs0(xuu590, xuu600, beg, beh, bfa) 25.22/9.07 new_compare20(Just(xuu590), Just(xuu600), False, app(ty_Maybe, app(app(ty_@2, bgf), bgg)), hd) -> new_ltEs3(xuu590, xuu600, bgf, bgg) 25.22/9.07 new_compare21(xuu66, xuu67, False, cfa, app(app(ty_Either, cff), cfg)) -> new_ltEs1(xuu66, xuu67, cff, cfg) 25.22/9.07 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, app(ty_Maybe, bbg), hg) -> new_lt2(xuu591, xuu601, bbg) 25.22/9.07 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), app(app(ty_Either, bbe), bbf)), hg), hd) -> new_lt1(xuu591, xuu601, bbe, bbf) 25.22/9.07 new_compare(:(xuu40000, xuu40001), :(xuu3000, xuu3001), ba) -> new_primCompAux(xuu40000, xuu3000, xuu40001, xuu3001, ba) 25.22/9.07 new_compare20(Right(xuu590), Right(xuu600), False, app(app(ty_Either, bee), app(ty_Maybe, bfd)), hd) -> new_ltEs2(xuu590, xuu600, bfd) 25.22/9.07 new_compare20(xuu59, xuu60, False, app(ty_[], hc), hd) -> new_compare(xuu59, xuu60, hc) 25.22/9.07 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), hf), app(ty_[], bcb)), hd) -> new_ltEs(xuu592, xuu602, bcb) 25.22/9.07 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, app(app(app(ty_@3, bhb), bhc), bhd)), bha), hd) -> new_lt0(xuu590, xuu600, bhb, bhc, bhd) 25.22/9.07 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, app(ty_[], eh), df) -> new_lt(xuu99, xuu102, eh) 25.22/9.07 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, app(app(ty_Either, gf), gg)) -> new_ltEs1(xuu100, xuu103, gf, gg) 25.22/9.07 new_compare23(xuu111, xuu112, xuu113, xuu114, False, cce, app(app(ty_@2, cde), cdf)) -> new_ltEs3(xuu112, xuu114, cde, cdf) 25.22/9.07 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, cab), app(app(ty_Either, cag), cah)), hd) -> new_ltEs1(xuu591, xuu601, cag, cah) 25.22/9.07 new_compare23(xuu111, xuu112, xuu113, xuu114, False, cce, app(ty_Maybe, cdd)) -> new_ltEs2(xuu112, xuu114, cdd) 25.22/9.07 new_compare20(Left(xuu590), Left(xuu600), False, app(app(ty_Either, app(app(app(ty_@3, bde), bdf), bdg)), bdd), hd) -> new_ltEs0(xuu590, xuu600, bde, bdf, bdg) 25.22/9.07 new_ltEs1(Right(xuu590), Right(xuu600), bee, app(app(ty_@2, bfe), bff)) -> new_ltEs3(xuu590, xuu600, bfe, bff) 25.22/9.07 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), app(app(ty_Either, bhe), bhf), bha) -> new_lt1(xuu590, xuu600, bhe, bhf) 25.22/9.07 25.22/9.07 The TRS R consists of the following rules: 25.22/9.07 25.22/9.07 new_esEs11(xuu40000, xuu3000, app(ty_[], ddc)) -> new_esEs24(xuu40000, xuu3000, ddc) 25.22/9.07 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.22/9.07 new_esEs26(xuu590, xuu600, app(ty_Ratio, ddg)) -> new_esEs21(xuu590, xuu600, ddg) 25.22/9.07 new_esEs7(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.22/9.07 new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, bb) -> new_primCompAux00(xuu4001, xuu301, new_compare0(xuu4000, xuu300, bb), app(ty_[], bb)) 25.22/9.07 new_pePe(True, xuu206) -> True 25.22/9.07 new_ltEs19(xuu591, xuu601, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs6(xuu591, xuu601, cad, cae, caf) 25.22/9.07 new_esEs10(xuu40001, xuu3001, ty_@0) -> new_esEs22(xuu40001, xuu3001) 25.22/9.07 new_esEs36(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.22/9.07 new_esEs27(xuu400002, xuu30002, ty_Float) -> new_esEs20(xuu400002, xuu30002) 25.22/9.07 new_compare16(GT, LT) -> GT 25.22/9.07 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.22/9.07 new_primCompAux00(xuu34, xuu35, EQ, ty_Char) -> new_compare6(xuu34, xuu35) 25.22/9.07 new_ltEs24(xuu592, xuu602, ty_Bool) -> new_ltEs12(xuu592, xuu602) 25.22/9.07 new_compare24(xuu111, xuu112, xuu113, xuu114, True, cce, cdh) -> EQ 25.22/9.07 new_compare110(xuu153, xuu154, False, fbf) -> GT 25.22/9.07 new_compare26(xuu66, xuu67, True, cfa, eaf) -> EQ 25.22/9.07 new_ltEs4(xuu59, xuu60, ty_Int) -> new_ltEs7(xuu59, xuu60) 25.22/9.07 new_esEs28(xuu400001, xuu30001, ty_Char) -> new_esEs18(xuu400001, xuu30001) 25.22/9.07 new_lt6(xuu590, xuu600, ty_Bool) -> new_lt12(xuu590, xuu600) 25.22/9.07 new_esEs5(xuu40001, xuu3001, app(ty_Ratio, fgh)) -> new_esEs21(xuu40001, xuu3001, fgh) 25.22/9.07 new_compare0(xuu4000, xuu300, ty_Char) -> new_compare6(xuu4000, xuu300) 25.22/9.07 new_ltEs23(xuu100, xuu103, ty_Double) -> new_ltEs15(xuu100, xuu103) 25.22/9.07 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_Maybe, chd)) -> new_esEs12(xuu400000, xuu30000, chd) 25.22/9.07 new_ltEs8(Right(xuu590), Right(xuu600), bee, app(ty_Ratio, faa)) -> new_ltEs11(xuu590, xuu600, faa) 25.22/9.07 new_esEs4(xuu40002, xuu3002, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs14(xuu40002, xuu3002, fca, fcb, fcc) 25.22/9.07 new_compare16(EQ, LT) -> GT 25.22/9.07 new_esEs33(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.22/9.07 new_lt19(xuu111, xuu113, app(ty_Ratio, eae)) -> new_lt11(xuu111, xuu113, eae) 25.22/9.07 new_esEs26(xuu590, xuu600, ty_Ordering) -> new_esEs19(xuu590, xuu600) 25.22/9.07 new_esEs5(xuu40001, xuu3001, app(ty_[], fhb)) -> new_esEs24(xuu40001, xuu3001, fhb) 25.22/9.07 new_esEs35(xuu98, xuu101, ty_@0) -> new_esEs22(xuu98, xuu101) 25.22/9.07 new_esEs36(xuu400001, xuu30001, app(ty_Ratio, fed)) -> new_esEs21(xuu400001, xuu30001, fed) 25.22/9.07 new_esEs26(xuu590, xuu600, ty_Integer) -> new_esEs23(xuu590, xuu600) 25.22/9.07 new_ltEs21(xuu66, xuu67, ty_Ordering) -> new_ltEs16(xuu66, xuu67) 25.22/9.07 new_esEs12(Nothing, Just(xuu30000), cgc) -> False 25.22/9.07 new_esEs12(Just(xuu400000), Nothing, cgc) -> False 25.22/9.07 new_esEs6(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.22/9.07 new_ltEs8(Left(xuu590), Left(xuu600), ty_Double, bdd) -> new_ltEs15(xuu590, xuu600) 25.22/9.07 new_esEs17(Left(xuu400000), Left(xuu30000), ty_@0, ebb) -> new_esEs22(xuu400000, xuu30000) 25.22/9.07 new_esEs5(xuu40001, xuu3001, ty_Ordering) -> new_esEs19(xuu40001, xuu3001) 25.22/9.07 new_esEs12(Nothing, Nothing, cgc) -> True 25.22/9.07 new_esEs26(xuu590, xuu600, app(ty_[], bgh)) -> new_esEs24(xuu590, xuu600, bgh) 25.22/9.07 new_primEqNat0(Succ(xuu4000000), Succ(xuu300000)) -> new_primEqNat0(xuu4000000, xuu300000) 25.22/9.07 new_esEs33(xuu400000, xuu30000, app(ty_Maybe, fbb)) -> new_esEs12(xuu400000, xuu30000, fbb) 25.22/9.07 new_compare27(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Int) -> new_compare17(new_sr(xuu40000, xuu3001), new_sr(xuu3000, xuu40001)) 25.22/9.07 new_esEs24([], [], eea) -> True 25.22/9.07 new_not(True) -> False 25.22/9.07 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(app(ty_@3, ebc), ebd), ebe), ebb) -> new_esEs14(xuu400000, xuu30000, ebc, ebd, ebe) 25.22/9.07 new_lt22(xuu590, xuu600, app(ty_[], he)) -> new_lt7(xuu590, xuu600, he) 25.22/9.07 new_lt21(xuu99, xuu102, app(app(ty_@2, fh), ga)) -> new_lt14(xuu99, xuu102, fh, ga) 25.22/9.07 new_lt23(xuu591, xuu601, ty_Int) -> new_lt9(xuu591, xuu601) 25.22/9.07 new_esEs36(xuu400001, xuu30001, app(app(ty_@2, fde), fdf)) -> new_esEs13(xuu400001, xuu30001, fde, fdf) 25.22/9.07 new_esEs5(xuu40001, xuu3001, app(ty_Maybe, fha)) -> new_esEs12(xuu40001, xuu3001, fha) 25.22/9.07 new_esEs11(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.22/9.07 new_esEs5(xuu40001, xuu3001, ty_Integer) -> new_esEs23(xuu40001, xuu3001) 25.22/9.07 new_ltEs24(xuu592, xuu602, ty_Integer) -> new_ltEs18(xuu592, xuu602) 25.22/9.07 new_ltEs22(xuu73, xuu74, ty_Float) -> new_ltEs17(xuu73, xuu74) 25.22/9.07 new_ltEs8(Left(xuu590), Left(xuu600), app(app(ty_Either, bdh), bea), bdd) -> new_ltEs8(xuu590, xuu600, bdh, bea) 25.22/9.07 new_esEs8(xuu40000, xuu3000, app(app(ty_Either, egh), eha)) -> new_esEs17(xuu40000, xuu3000, egh, eha) 25.22/9.07 new_esEs35(xuu98, xuu101, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs14(xuu98, xuu101, dg, dh, ea) 25.22/9.07 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.22/9.07 new_esEs11(xuu40000, xuu3000, app(app(ty_Either, dcg), dch)) -> new_esEs17(xuu40000, xuu3000, dcg, dch) 25.22/9.07 new_ltEs19(xuu591, xuu601, ty_Bool) -> new_ltEs12(xuu591, xuu601) 25.22/9.07 new_primEqNat0(Succ(xuu4000000), Zero) -> False 25.22/9.07 new_primEqNat0(Zero, Succ(xuu300000)) -> False 25.22/9.07 new_esEs18(Char(xuu400000), Char(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 25.22/9.07 new_esEs38(xuu591, xuu601, ty_Char) -> new_esEs18(xuu591, xuu601) 25.22/9.07 new_compare10(xuu137, xuu138, True, fbd, fbe) -> LT 25.22/9.07 new_ltEs8(Left(xuu590), Left(xuu600), ty_Char, bdd) -> new_ltEs10(xuu590, xuu600) 25.22/9.07 new_esEs8(xuu40000, xuu3000, app(app(ty_@2, egc), egd)) -> new_esEs13(xuu40000, xuu3000, egc, egd) 25.22/9.07 new_ltEs4(xuu59, xuu60, app(ty_Ratio, dde)) -> new_ltEs11(xuu59, xuu60, dde) 25.22/9.07 new_esEs33(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.22/9.07 new_esEs11(xuu40000, xuu3000, app(ty_Maybe, ddb)) -> new_esEs12(xuu40000, xuu3000, ddb) 25.22/9.07 new_ltEs4(xuu59, xuu60, app(app(ty_@2, cab), bha)) -> new_ltEs14(xuu59, xuu60, cab, bha) 25.22/9.07 new_compare13(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.22/9.07 new_esEs4(xuu40002, xuu3002, ty_@0) -> new_esEs22(xuu40002, xuu3002) 25.22/9.07 new_esEs36(xuu400001, xuu30001, ty_Bool) -> new_esEs15(xuu400001, xuu30001) 25.22/9.07 new_esEs9(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.22/9.07 new_primCmpInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> GT 25.22/9.07 new_compare18(:(xuu40000, xuu40001), :(xuu3000, xuu3001), ba) -> new_primCompAux1(xuu40000, xuu3000, xuu40001, xuu3001, ba) 25.22/9.07 new_lt6(xuu590, xuu600, ty_Ordering) -> new_lt16(xuu590, xuu600) 25.22/9.07 new_esEs11(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.22/9.07 new_ltEs11(xuu59, xuu60, dde) -> new_fsEs(new_compare27(xuu59, xuu60, dde)) 25.22/9.07 new_esEs26(xuu590, xuu600, app(app(ty_@2, bhh), caa)) -> new_esEs13(xuu590, xuu600, bhh, caa) 25.22/9.07 new_ltEs21(xuu66, xuu67, ty_Int) -> new_ltEs7(xuu66, xuu67) 25.22/9.07 new_esEs33(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.22/9.07 new_ltEs8(Left(xuu590), Left(xuu600), ty_@0, bdd) -> new_ltEs9(xuu590, xuu600) 25.22/9.07 new_ltEs19(xuu591, xuu601, ty_Integer) -> new_ltEs18(xuu591, xuu601) 25.22/9.07 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.22/9.07 new_ltEs9(xuu59, xuu60) -> new_fsEs(new_compare8(xuu59, xuu60)) 25.22/9.07 new_primPlusNat1(Succ(xuu20900), Succ(xuu20800)) -> Succ(Succ(new_primPlusNat1(xuu20900, xuu20800))) 25.22/9.07 new_primCompAux00(xuu34, xuu35, GT, eeb) -> GT 25.22/9.07 new_compare0(xuu4000, xuu300, app(app(ty_@2, ca), cb)) -> new_compare7(xuu4000, xuu300, ca, cb) 25.22/9.07 new_primCmpNat0(Zero, Succ(xuu30000)) -> LT 25.22/9.07 new_ltEs23(xuu100, xuu103, ty_@0) -> new_ltEs9(xuu100, xuu103) 25.22/9.07 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.22/9.07 new_esEs29(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.22/9.07 new_compare15(Right(xuu40000), Right(xuu3000), bf, bg) -> new_compare26(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bg), bf, bg) 25.22/9.07 new_ltEs21(xuu66, xuu67, app(app(ty_Either, cff), cfg)) -> new_ltEs8(xuu66, xuu67, cff, cfg) 25.22/9.07 new_ltEs20(xuu112, xuu114, app(ty_Maybe, cdd)) -> new_ltEs13(xuu112, xuu114, cdd) 25.22/9.07 new_esEs33(xuu400000, xuu30000, app(ty_Ratio, fba)) -> new_esEs21(xuu400000, xuu30000, fba) 25.22/9.07 new_ltEs23(xuu100, xuu103, app(ty_Ratio, fdc)) -> new_ltEs11(xuu100, xuu103, fdc) 25.22/9.07 new_lt20(xuu98, xuu101, ty_Float) -> new_lt17(xuu98, xuu101) 25.22/9.07 new_compare15(Left(xuu40000), Right(xuu3000), bf, bg) -> LT 25.22/9.07 new_ltEs4(xuu59, xuu60, app(app(app(ty_@3, bah), hf), hg)) -> new_ltEs6(xuu59, xuu60, bah, hf, hg) 25.22/9.07 new_esEs5(xuu40001, xuu3001, app(app(ty_@2, fga), fgb)) -> new_esEs13(xuu40001, xuu3001, fga, fgb) 25.22/9.07 new_lt22(xuu590, xuu600, ty_Char) -> new_lt4(xuu590, xuu600) 25.22/9.07 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_[], che)) -> new_esEs24(xuu400000, xuu30000, che) 25.22/9.07 new_primCompAux00(xuu34, xuu35, EQ, ty_@0) -> new_compare8(xuu34, xuu35) 25.22/9.07 new_esEs39(xuu590, xuu600, app(app(ty_Either, bac), bad)) -> new_esEs17(xuu590, xuu600, bac, bad) 25.22/9.07 new_esEs19(LT, EQ) -> False 25.22/9.07 new_esEs19(EQ, LT) -> False 25.22/9.07 new_esEs39(xuu590, xuu600, ty_Bool) -> new_esEs15(xuu590, xuu600) 25.22/9.07 new_esEs30(xuu111, xuu113, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs14(xuu111, xuu113, cea, ceb, cec) 25.22/9.07 new_esEs7(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.22/9.07 new_esEs33(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.22/9.07 new_ltEs4(xuu59, xuu60, ty_@0) -> new_ltEs9(xuu59, xuu60) 25.22/9.07 new_lt23(xuu591, xuu601, app(ty_Maybe, bbg)) -> new_lt13(xuu591, xuu601, bbg) 25.22/9.07 new_esEs11(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.22/9.07 new_compare17(xuu4000, xuu300) -> new_primCmpInt(xuu4000, xuu300) 25.22/9.07 new_lt23(xuu591, xuu601, ty_Double) -> new_lt15(xuu591, xuu601) 25.22/9.07 new_esEs39(xuu590, xuu600, app(app(ty_@2, baf), bag)) -> new_esEs13(xuu590, xuu600, baf, bag) 25.22/9.07 new_compare7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), ca, cb) -> new_compare24(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs11(xuu40000, xuu3000, ca), new_esEs10(xuu40001, xuu3001, cb)), ca, cb) 25.22/9.07 new_esEs8(xuu40000, xuu3000, app(ty_Ratio, ehb)) -> new_esEs21(xuu40000, xuu3000, ehb) 25.22/9.07 new_esEs36(xuu400001, xuu30001, app(ty_Maybe, fee)) -> new_esEs12(xuu400001, xuu30001, fee) 25.22/9.07 new_ltEs23(xuu100, xuu103, app(app(ty_@2, ha), hb)) -> new_ltEs14(xuu100, xuu103, ha, hb) 25.22/9.07 new_esEs10(xuu40001, xuu3001, ty_Char) -> new_esEs18(xuu40001, xuu3001) 25.22/9.07 new_esEs29(xuu400000, xuu30000, app(ty_[], eaa)) -> new_esEs24(xuu400000, xuu30000, eaa) 25.22/9.07 new_esEs34(xuu99, xuu102, ty_Float) -> new_esEs20(xuu99, xuu102) 25.22/9.07 new_esEs8(xuu40000, xuu3000, app(ty_[], ehd)) -> new_esEs24(xuu40000, xuu3000, ehd) 25.22/9.07 new_esEs29(xuu400000, xuu30000, app(app(ty_Either, dhe), dhf)) -> new_esEs17(xuu400000, xuu30000, dhe, dhf) 25.22/9.07 new_esEs38(xuu591, xuu601, ty_Int) -> new_esEs16(xuu591, xuu601) 25.22/9.07 new_ltEs8(Right(xuu590), Right(xuu600), bee, ty_Float) -> new_ltEs17(xuu590, xuu600) 25.22/9.07 new_lt22(xuu590, xuu600, ty_Bool) -> new_lt12(xuu590, xuu600) 25.22/9.07 new_esEs15(True, True) -> True 25.22/9.07 new_primCompAux00(xuu34, xuu35, EQ, ty_Bool) -> new_compare28(xuu34, xuu35) 25.22/9.07 new_esEs5(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) 25.22/9.07 new_ltEs19(xuu591, xuu601, app(app(ty_@2, cbb), cbc)) -> new_ltEs14(xuu591, xuu601, cbb, cbc) 25.22/9.07 new_esEs29(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.22/9.07 new_primEqInt(Neg(Succ(xuu4000000)), Neg(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) 25.22/9.07 new_ltEs4(xuu59, xuu60, ty_Ordering) -> new_ltEs16(xuu59, xuu60) 25.22/9.07 new_esEs30(xuu111, xuu113, ty_@0) -> new_esEs22(xuu111, xuu113) 25.22/9.07 new_compare0(xuu4000, xuu300, ty_Float) -> new_compare13(xuu4000, xuu300) 25.22/9.07 new_primCmpInt(Neg(Zero), Pos(Succ(xuu30000))) -> LT 25.22/9.07 new_primCompAux00(xuu34, xuu35, EQ, ty_Double) -> new_compare30(xuu34, xuu35) 25.22/9.07 new_primMulInt(Pos(xuu30000), Pos(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) 25.22/9.07 new_ltEs20(xuu112, xuu114, ty_Double) -> new_ltEs15(xuu112, xuu114) 25.22/9.07 new_ltEs13(Just(xuu590), Just(xuu600), app(app(ty_Either, bgc), bgd)) -> new_ltEs8(xuu590, xuu600, bgc, bgd) 25.22/9.07 new_esEs9(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.22/9.07 new_ltEs13(Just(xuu590), Just(xuu600), ty_Bool) -> new_ltEs12(xuu590, xuu600) 25.22/9.07 new_ltEs24(xuu592, xuu602, ty_Float) -> new_ltEs17(xuu592, xuu602) 25.22/9.07 new_lt21(xuu99, xuu102, app(ty_Maybe, fg)) -> new_lt13(xuu99, xuu102, fg) 25.22/9.07 new_esEs38(xuu591, xuu601, app(ty_Maybe, bbg)) -> new_esEs12(xuu591, xuu601, bbg) 25.22/9.07 new_ltEs8(Right(xuu590), Left(xuu600), bee, bdd) -> False 25.22/9.07 new_primMulNat0(Succ(xuu300000), Zero) -> Zero 25.22/9.07 new_primMulNat0(Zero, Succ(xuu4000100)) -> Zero 25.22/9.07 new_ltEs8(Right(xuu590), Right(xuu600), bee, app(ty_Maybe, bfd)) -> new_ltEs13(xuu590, xuu600, bfd) 25.22/9.07 new_ltEs13(Just(xuu590), Just(xuu600), app(app(app(ty_@3, bfh), bga), bgb)) -> new_ltEs6(xuu590, xuu600, bfh, bga, bgb) 25.22/9.07 new_esEs26(xuu590, xuu600, ty_Bool) -> new_esEs15(xuu590, xuu600) 25.22/9.07 new_esEs5(xuu40001, xuu3001, app(app(ty_Either, fgf), fgg)) -> new_esEs17(xuu40001, xuu3001, fgf, fgg) 25.22/9.07 new_esEs37(xuu400000, xuu30000, app(app(app(ty_@3, ffa), ffb), ffc)) -> new_esEs14(xuu400000, xuu30000, ffa, ffb, ffc) 25.22/9.07 new_compare30(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.22/9.07 new_esEs26(xuu590, xuu600, ty_Int) -> new_esEs16(xuu590, xuu600) 25.22/9.07 new_ltEs21(xuu66, xuu67, ty_Integer) -> new_ltEs18(xuu66, xuu67) 25.22/9.07 new_esEs8(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.22/9.07 new_compare15(Left(xuu40000), Left(xuu3000), bf, bg) -> new_compare25(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, bf), bf, bg) 25.22/9.07 new_ltEs23(xuu100, xuu103, ty_Int) -> new_ltEs7(xuu100, xuu103) 25.22/9.07 new_ltEs12(False, True) -> True 25.22/9.07 new_lt20(xuu98, xuu101, app(app(ty_Either, eb), ec)) -> new_lt10(xuu98, xuu101, eb, ec) 25.22/9.07 new_ltEs4(xuu59, xuu60, app(app(ty_Either, bee), bdd)) -> new_ltEs8(xuu59, xuu60, bee, bdd) 25.22/9.07 new_ltEs19(xuu591, xuu601, app(app(ty_Either, cag), cah)) -> new_ltEs8(xuu591, xuu601, cag, cah) 25.22/9.07 new_ltEs20(xuu112, xuu114, ty_@0) -> new_ltEs9(xuu112, xuu114) 25.22/9.07 new_esEs28(xuu400001, xuu30001, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs14(xuu400001, xuu30001, dfh, dga, dgb) 25.22/9.07 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(ty_@2, cgd), cge)) -> new_esEs13(xuu400000, xuu30000, cgd, cge) 25.22/9.07 new_esEs26(xuu590, xuu600, app(ty_Maybe, bhg)) -> new_esEs12(xuu590, xuu600, bhg) 25.22/9.07 new_primPlusNat1(Succ(xuu20900), Zero) -> Succ(xuu20900) 25.22/9.07 new_primPlusNat1(Zero, Succ(xuu20800)) -> Succ(xuu20800) 25.22/9.07 new_esEs7(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.22/9.07 new_esEs30(xuu111, xuu113, ty_Char) -> new_esEs18(xuu111, xuu113) 25.22/9.07 new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_@2, dc), dd)) -> new_compare7(xuu34, xuu35, dc, dd) 25.22/9.07 new_esEs29(xuu400000, xuu30000, app(app(ty_@2, dgh), dha)) -> new_esEs13(xuu400000, xuu30000, dgh, dha) 25.22/9.07 new_compare28(False, False) -> EQ 25.22/9.07 new_ltEs21(xuu66, xuu67, ty_@0) -> new_ltEs9(xuu66, xuu67) 25.22/9.07 new_ltEs12(True, True) -> True 25.22/9.07 new_ltEs21(xuu66, xuu67, app(ty_Ratio, eag)) -> new_ltEs11(xuu66, xuu67, eag) 25.22/9.07 new_esEs11(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.22/9.07 new_compare0(xuu4000, xuu300, app(app(ty_Either, bf), bg)) -> new_compare15(xuu4000, xuu300, bf, bg) 25.22/9.07 new_ltEs21(xuu66, xuu67, app(app(ty_@2, cga), cgb)) -> new_ltEs14(xuu66, xuu67, cga, cgb) 25.22/9.07 new_ltEs19(xuu591, xuu601, ty_Ordering) -> new_ltEs16(xuu591, xuu601) 25.22/9.07 new_compare9(Integer(xuu40000), Integer(xuu3000)) -> new_primCmpInt(xuu40000, xuu3000) 25.22/9.07 new_esEs11(xuu40000, xuu3000, app(ty_Ratio, dda)) -> new_esEs21(xuu40000, xuu3000, dda) 25.22/9.07 new_ltEs4(xuu59, xuu60, app(ty_Maybe, ddf)) -> new_ltEs13(xuu59, xuu60, ddf) 25.22/9.07 new_esEs7(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.22/9.07 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.22/9.07 new_compare18(:(xuu40000, xuu40001), [], ba) -> GT 25.22/9.07 new_ltEs21(xuu66, xuu67, ty_Double) -> new_ltEs15(xuu66, xuu67) 25.22/9.07 new_esEs36(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.22/9.07 new_esEs31(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.22/9.07 new_ltEs24(xuu592, xuu602, ty_Int) -> new_ltEs7(xuu592, xuu602) 25.22/9.07 new_compare16(LT, LT) -> EQ 25.22/9.07 new_esEs27(xuu400002, xuu30002, app(app(app(ty_@3, def), deg), deh)) -> new_esEs14(xuu400002, xuu30002, def, deg, deh) 25.22/9.07 new_esEs33(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.22/9.07 new_ltEs24(xuu592, xuu602, app(app(ty_@2, bda), bdb)) -> new_ltEs14(xuu592, xuu602, bda, bdb) 25.22/9.07 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_Ratio, ebh), ebb) -> new_esEs21(xuu400000, xuu30000, ebh) 25.22/9.07 new_esEs6(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.22/9.07 new_esEs7(xuu40000, xuu3000, app(ty_[], egb)) -> new_esEs24(xuu40000, xuu3000, egb) 25.22/9.07 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, app(ty_Ratio, edc)) -> new_esEs21(xuu400000, xuu30000, edc) 25.22/9.07 new_esEs11(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.22/9.07 new_esEs38(xuu591, xuu601, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs14(xuu591, xuu601, bbb, bbc, bbd) 25.22/9.07 new_esEs35(xuu98, xuu101, ty_Float) -> new_esEs20(xuu98, xuu101) 25.22/9.07 new_ltEs5(xuu59, xuu60, hc) -> new_fsEs(new_compare18(xuu59, xuu60, hc)) 25.22/9.07 new_esEs29(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.22/9.07 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_[], ecb), ebb) -> new_esEs24(xuu400000, xuu30000, ecb) 25.22/9.07 new_esEs35(xuu98, xuu101, ty_Int) -> new_esEs16(xuu98, xuu101) 25.22/9.07 new_lt6(xuu590, xuu600, ty_Char) -> new_lt4(xuu590, xuu600) 25.22/9.07 new_ltEs13(Just(xuu590), Just(xuu600), ty_Int) -> new_ltEs7(xuu590, xuu600) 25.22/9.07 new_ltEs19(xuu591, xuu601, ty_@0) -> new_ltEs9(xuu591, xuu601) 25.22/9.07 new_ltEs8(Right(xuu590), Right(xuu600), bee, app(app(ty_@2, bfe), bff)) -> new_ltEs14(xuu590, xuu600, bfe, bff) 25.22/9.07 new_esEs28(xuu400001, xuu30001, app(ty_[], dgg)) -> new_esEs24(xuu400001, xuu30001, dgg) 25.22/9.07 new_esEs10(xuu40001, xuu3001, ty_Float) -> new_esEs20(xuu40001, xuu3001) 25.22/9.07 new_esEs10(xuu40001, xuu3001, ty_Double) -> new_esEs25(xuu40001, xuu3001) 25.22/9.07 new_esEs29(xuu400000, xuu30000, app(ty_Maybe, dhh)) -> new_esEs12(xuu400000, xuu30000, dhh) 25.22/9.07 new_esEs35(xuu98, xuu101, app(ty_Maybe, ed)) -> new_esEs12(xuu98, xuu101, ed) 25.22/9.07 new_esEs38(xuu591, xuu601, ty_Bool) -> new_esEs15(xuu591, xuu601) 25.22/9.07 new_lt20(xuu98, xuu101, app(ty_Maybe, ed)) -> new_lt13(xuu98, xuu101, ed) 25.22/9.07 new_esEs38(xuu591, xuu601, app(app(ty_Either, bbe), bbf)) -> new_esEs17(xuu591, xuu601, bbe, bbf) 25.22/9.07 new_primCompAux00(xuu34, xuu35, EQ, app(app(app(ty_@3, cd), ce), cf)) -> new_compare19(xuu34, xuu35, cd, ce, cf) 25.22/9.07 new_esEs5(xuu40001, xuu3001, ty_Char) -> new_esEs18(xuu40001, xuu3001) 25.22/9.07 new_compare0(xuu4000, xuu300, app(ty_[], ba)) -> new_compare18(xuu4000, xuu300, ba) 25.22/9.07 new_ltEs18(xuu59, xuu60) -> new_fsEs(new_compare9(xuu59, xuu60)) 25.22/9.07 new_esEs30(xuu111, xuu113, app(ty_Maybe, cef)) -> new_esEs12(xuu111, xuu113, cef) 25.22/9.07 new_compare10(xuu137, xuu138, False, fbd, fbe) -> GT 25.22/9.07 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.22/9.07 new_ltEs14(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, bha) -> new_pePe(new_lt6(xuu590, xuu600, cab), new_asAs(new_esEs26(xuu590, xuu600, cab), new_ltEs19(xuu591, xuu601, bha))) 25.22/9.07 new_esEs38(xuu591, xuu601, ty_Integer) -> new_esEs23(xuu591, xuu601) 25.22/9.07 new_lt19(xuu111, xuu113, ty_Bool) -> new_lt12(xuu111, xuu113) 25.22/9.07 new_esEs19(LT, LT) -> True 25.22/9.07 new_primCompAux00(xuu34, xuu35, EQ, ty_Float) -> new_compare13(xuu34, xuu35) 25.22/9.07 new_esEs30(xuu111, xuu113, app(ty_Ratio, eae)) -> new_esEs21(xuu111, xuu113, eae) 25.22/9.07 new_lt22(xuu590, xuu600, ty_Ordering) -> new_lt16(xuu590, xuu600) 25.22/9.07 new_esEs27(xuu400002, xuu30002, app(app(ty_@2, ded), dee)) -> new_esEs13(xuu400002, xuu30002, ded, dee) 25.22/9.07 new_esEs6(xuu40000, xuu3000, app(app(ty_@2, edf), edg)) -> new_esEs13(xuu40000, xuu3000, edf, edg) 25.22/9.07 new_primCmpInt(Pos(Succ(xuu400000)), Pos(xuu3000)) -> new_primCmpNat0(Succ(xuu400000), xuu3000) 25.22/9.07 new_esEs38(xuu591, xuu601, ty_@0) -> new_esEs22(xuu591, xuu601) 25.22/9.07 new_lt18(xuu98, xuu101) -> new_esEs19(new_compare9(xuu98, xuu101), LT) 25.22/9.07 new_esEs10(xuu40001, xuu3001, app(ty_Maybe, dbh)) -> new_esEs12(xuu40001, xuu3001, dbh) 25.22/9.07 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, app(ty_[], ede)) -> new_esEs24(xuu400000, xuu30000, ede) 25.22/9.07 new_esEs29(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.22/9.07 new_lt23(xuu591, xuu601, ty_Char) -> new_lt4(xuu591, xuu601) 25.22/9.07 new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_Either, cg), da)) -> new_compare15(xuu34, xuu35, cg, da) 25.22/9.07 new_lt17(xuu98, xuu101) -> new_esEs19(new_compare13(xuu98, xuu101), LT) 25.22/9.07 new_esEs39(xuu590, xuu600, ty_Float) -> new_esEs20(xuu590, xuu600) 25.22/9.07 new_lt19(xuu111, xuu113, ty_Integer) -> new_lt18(xuu111, xuu113) 25.22/9.07 new_lt21(xuu99, xuu102, ty_Ordering) -> new_lt16(xuu99, xuu102) 25.22/9.07 new_ltEs23(xuu100, xuu103, app(ty_[], gb)) -> new_ltEs5(xuu100, xuu103, gb) 25.22/9.07 new_ltEs13(Nothing, Nothing, ddf) -> True 25.22/9.07 new_ltEs13(Just(xuu590), Just(xuu600), app(app(ty_@2, bgf), bgg)) -> new_ltEs14(xuu590, xuu600, bgf, bgg) 25.22/9.07 new_ltEs13(Just(xuu590), Nothing, ddf) -> False 25.22/9.07 new_lt19(xuu111, xuu113, app(ty_Maybe, cef)) -> new_lt13(xuu111, xuu113, cef) 25.22/9.07 new_ltEs12(True, False) -> False 25.22/9.07 new_esEs4(xuu40002, xuu3002, ty_Float) -> new_esEs20(xuu40002, xuu3002) 25.22/9.07 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Float, ebb) -> new_esEs20(xuu400000, xuu30000) 25.22/9.07 new_esEs33(xuu400000, xuu30000, app(app(ty_Either, fag), fah)) -> new_esEs17(xuu400000, xuu30000, fag, fah) 25.22/9.07 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_Maybe, eca), ebb) -> new_esEs12(xuu400000, xuu30000, eca) 25.22/9.07 new_esEs34(xuu99, xuu102, ty_Ordering) -> new_esEs19(xuu99, xuu102) 25.22/9.07 new_esEs14(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), dea, deb, dec) -> new_asAs(new_esEs29(xuu400000, xuu30000, dea), new_asAs(new_esEs28(xuu400001, xuu30001, deb), new_esEs27(xuu400002, xuu30002, dec))) 25.22/9.07 new_lt20(xuu98, xuu101, app(app(app(ty_@3, dg), dh), ea)) -> new_lt8(xuu98, xuu101, dg, dh, ea) 25.22/9.07 new_compare0(xuu4000, xuu300, ty_Int) -> new_compare17(xuu4000, xuu300) 25.22/9.07 new_ltEs22(xuu73, xuu74, app(ty_[], cbd)) -> new_ltEs5(xuu73, xuu74, cbd) 25.22/9.07 new_esEs10(xuu40001, xuu3001, ty_Ordering) -> new_esEs19(xuu40001, xuu3001) 25.22/9.07 new_ltEs8(Left(xuu590), Left(xuu600), ty_Ordering, bdd) -> new_ltEs16(xuu590, xuu600) 25.22/9.07 new_esEs13(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), edf, edg) -> new_asAs(new_esEs37(xuu400000, xuu30000, edf), new_esEs36(xuu400001, xuu30001, edg)) 25.22/9.07 new_lt21(xuu99, xuu102, ty_Int) -> new_lt9(xuu99, xuu102) 25.22/9.07 new_esEs33(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.22/9.07 new_esEs34(xuu99, xuu102, app(app(ty_Either, fd), ff)) -> new_esEs17(xuu99, xuu102, fd, ff) 25.22/9.07 new_compare28(False, True) -> LT 25.22/9.07 new_esEs10(xuu40001, xuu3001, ty_Int) -> new_esEs16(xuu40001, xuu3001) 25.22/9.07 new_esEs34(xuu99, xuu102, app(ty_Maybe, fg)) -> new_esEs12(xuu99, xuu102, fg) 25.22/9.07 new_ltEs12(False, False) -> True 25.22/9.07 new_ltEs8(Right(xuu590), Right(xuu600), bee, ty_Double) -> new_ltEs15(xuu590, xuu600) 25.22/9.07 new_compare29(Just(xuu40000), Nothing, bh) -> GT 25.22/9.07 new_esEs7(xuu40000, xuu3000, app(app(ty_@2, efa), efb)) -> new_esEs13(xuu40000, xuu3000, efa, efb) 25.22/9.07 new_esEs17(Left(xuu400000), Right(xuu30000), ecc, ebb) -> False 25.22/9.07 new_esEs17(Right(xuu400000), Left(xuu30000), ecc, ebb) -> False 25.22/9.07 new_esEs34(xuu99, xuu102, ty_Integer) -> new_esEs23(xuu99, xuu102) 25.22/9.07 new_ltEs15(xuu59, xuu60) -> new_fsEs(new_compare30(xuu59, xuu60)) 25.22/9.07 new_esEs34(xuu99, xuu102, ty_@0) -> new_esEs22(xuu99, xuu102) 25.22/9.07 new_esEs4(xuu40002, xuu3002, ty_Char) -> new_esEs18(xuu40002, xuu3002) 25.22/9.07 new_compare13(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.22/9.07 new_compare13(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.22/9.07 new_lt22(xuu590, xuu600, ty_Int) -> new_lt9(xuu590, xuu600) 25.22/9.07 new_ltEs24(xuu592, xuu602, app(ty_Ratio, fhe)) -> new_ltEs11(xuu592, xuu602, fhe) 25.22/9.07 new_esEs39(xuu590, xuu600, ty_Ordering) -> new_esEs19(xuu590, xuu600) 25.22/9.07 new_esEs28(xuu400001, xuu30001, app(ty_Maybe, dgf)) -> new_esEs12(xuu400001, xuu30001, dgf) 25.22/9.07 new_lt19(xuu111, xuu113, app(app(app(ty_@3, cea), ceb), cec)) -> new_lt8(xuu111, xuu113, cea, ceb, cec) 25.22/9.07 new_lt6(xuu590, xuu600, ty_Float) -> new_lt17(xuu590, xuu600) 25.22/9.07 new_esEs39(xuu590, xuu600, ty_Integer) -> new_esEs23(xuu590, xuu600) 25.22/9.07 new_lt19(xuu111, xuu113, ty_@0) -> new_lt5(xuu111, xuu113) 25.22/9.07 new_compare28(True, True) -> EQ 25.22/9.07 new_esEs27(xuu400002, xuu30002, app(ty_[], dfe)) -> new_esEs24(xuu400002, xuu30002, dfe) 25.22/9.07 new_lt22(xuu590, xuu600, ty_Integer) -> new_lt18(xuu590, xuu600) 25.22/9.07 new_lt19(xuu111, xuu113, ty_Ordering) -> new_lt16(xuu111, xuu113) 25.22/9.07 new_esEs27(xuu400002, xuu30002, app(ty_Ratio, dfc)) -> new_esEs21(xuu400002, xuu30002, dfc) 25.22/9.07 new_esEs26(xuu590, xuu600, ty_Double) -> new_esEs25(xuu590, xuu600) 25.22/9.07 new_ltEs8(Left(xuu590), Left(xuu600), ty_Float, bdd) -> new_ltEs17(xuu590, xuu600) 25.22/9.07 new_ltEs8(Left(xuu590), Left(xuu600), ty_Integer, bdd) -> new_ltEs18(xuu590, xuu600) 25.22/9.07 new_ltEs8(Left(xuu590), Right(xuu600), bee, bdd) -> True 25.22/9.07 new_esEs24(:(xuu400000, xuu400001), :(xuu30000, xuu30001), eea) -> new_asAs(new_esEs33(xuu400000, xuu30000, eea), new_esEs24(xuu400001, xuu30001, eea)) 25.22/9.07 new_esEs28(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.22/9.07 new_lt19(xuu111, xuu113, ty_Int) -> new_lt9(xuu111, xuu113) 25.22/9.07 new_esEs37(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.22/9.07 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_Ratio, chc)) -> new_esEs21(xuu400000, xuu30000, chc) 25.22/9.07 new_esEs19(LT, GT) -> False 25.22/9.07 new_esEs19(GT, LT) -> False 25.22/9.07 new_ltEs4(xuu59, xuu60, app(ty_[], hc)) -> new_ltEs5(xuu59, xuu60, hc) 25.22/9.07 new_ltEs10(xuu59, xuu60) -> new_fsEs(new_compare6(xuu59, xuu60)) 25.22/9.07 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_Maybe, beb), bdd) -> new_ltEs13(xuu590, xuu600, beb) 25.22/9.07 new_esEs29(xuu400000, xuu30000, app(ty_Ratio, dhg)) -> new_esEs21(xuu400000, xuu30000, dhg) 25.22/9.07 new_lt22(xuu590, xuu600, ty_Float) -> new_lt17(xuu590, xuu600) 25.22/9.07 new_ltEs6(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, hg) -> new_pePe(new_lt22(xuu590, xuu600, bah), new_asAs(new_esEs39(xuu590, xuu600, bah), new_pePe(new_lt23(xuu591, xuu601, hf), new_asAs(new_esEs38(xuu591, xuu601, hf), new_ltEs24(xuu592, xuu602, hg))))) 25.22/9.07 new_esEs38(xuu591, xuu601, ty_Ordering) -> new_esEs19(xuu591, xuu601) 25.22/9.07 new_ltEs8(Left(xuu590), Left(xuu600), app(app(ty_@2, bec), bed), bdd) -> new_ltEs14(xuu590, xuu600, bec, bed) 25.22/9.07 new_ltEs21(xuu66, xuu67, app(ty_[], cfb)) -> new_ltEs5(xuu66, xuu67, cfb) 25.22/9.07 new_lt20(xuu98, xuu101, ty_Integer) -> new_lt18(xuu98, xuu101) 25.22/9.07 new_lt20(xuu98, xuu101, ty_Int) -> new_lt9(xuu98, xuu101) 25.22/9.07 new_primCompAux00(xuu34, xuu35, EQ, ty_Int) -> new_compare17(xuu34, xuu35) 25.22/9.07 new_lt20(xuu98, xuu101, ty_Char) -> new_lt4(xuu98, xuu101) 25.22/9.07 new_compare29(Nothing, Just(xuu3000), bh) -> LT 25.22/9.07 new_esEs37(xuu400000, xuu30000, app(app(ty_Either, ffd), ffe)) -> new_esEs17(xuu400000, xuu30000, ffd, ffe) 25.22/9.07 new_esEs30(xuu111, xuu113, ty_Double) -> new_esEs25(xuu111, xuu113) 25.22/9.07 new_esEs35(xuu98, xuu101, app(app(ty_Either, eb), ec)) -> new_esEs17(xuu98, xuu101, eb, ec) 25.22/9.07 new_lt23(xuu591, xuu601, ty_@0) -> new_lt5(xuu591, xuu601) 25.22/9.07 new_esEs35(xuu98, xuu101, ty_Integer) -> new_esEs23(xuu98, xuu101) 25.22/9.07 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Ordering, ebb) -> new_esEs19(xuu400000, xuu30000) 25.22/9.07 new_compare27(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Integer) -> new_compare9(new_sr0(xuu40000, xuu3001), new_sr0(xuu3000, xuu40001)) 25.22/9.07 new_esEs36(xuu400001, xuu30001, ty_Float) -> new_esEs20(xuu400001, xuu30001) 25.22/9.07 new_esEs25(Double(xuu400000, xuu400001), Double(xuu30000, xuu30001)) -> new_esEs16(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) 25.22/9.07 new_esEs35(xuu98, xuu101, ty_Char) -> new_esEs18(xuu98, xuu101) 25.22/9.07 new_ltEs4(xuu59, xuu60, ty_Float) -> new_ltEs17(xuu59, xuu60) 25.22/9.07 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_Ratio, fdd)) -> new_ltEs11(xuu590, xuu600, fdd) 25.22/9.07 new_primPlusNat1(Zero, Zero) -> Zero 25.22/9.07 new_ltEs4(xuu59, xuu60, ty_Integer) -> new_ltEs18(xuu59, xuu60) 25.22/9.07 new_primCompAux00(xuu34, xuu35, EQ, ty_Ordering) -> new_compare16(xuu34, xuu35) 25.22/9.07 new_primCompAux00(xuu34, xuu35, EQ, app(ty_Ratio, eec)) -> new_compare27(xuu34, xuu35, eec) 25.22/9.07 new_compare16(GT, GT) -> EQ 25.22/9.07 new_esEs32(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.22/9.07 new_compare0(xuu4000, xuu300, ty_Double) -> new_compare30(xuu4000, xuu300) 25.22/9.07 new_ltEs21(xuu66, xuu67, ty_Float) -> new_ltEs17(xuu66, xuu67) 25.22/9.07 new_lt9(xuu98, xuu101) -> new_esEs19(new_compare17(xuu98, xuu101), LT) 25.22/9.07 new_lt20(xuu98, xuu101, ty_@0) -> new_lt5(xuu98, xuu101) 25.22/9.07 new_esEs9(xuu40000, xuu3000, app(app(ty_@2, chf), chg)) -> new_esEs13(xuu40000, xuu3000, chf, chg) 25.22/9.07 new_esEs34(xuu99, xuu102, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs14(xuu99, xuu102, fa, fb, fc) 25.22/9.07 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Char, ebb) -> new_esEs18(xuu400000, xuu30000) 25.22/9.07 new_lt21(xuu99, xuu102, app(app(app(ty_@3, fa), fb), fc)) -> new_lt8(xuu99, xuu102, fa, fb, fc) 25.22/9.07 new_esEs15(False, True) -> False 25.22/9.07 new_esEs15(True, False) -> False 25.22/9.07 new_esEs31(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.22/9.07 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, app(app(ty_@2, ecd), ece)) -> new_esEs13(xuu400000, xuu30000, ecd, ece) 25.22/9.07 new_esEs34(xuu99, xuu102, ty_Bool) -> new_esEs15(xuu99, xuu102) 25.22/9.07 new_esEs10(xuu40001, xuu3001, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs14(xuu40001, xuu3001, dbb, dbc, dbd) 25.22/9.07 new_esEs35(xuu98, xuu101, ty_Ordering) -> new_esEs19(xuu98, xuu101) 25.22/9.07 new_lt4(xuu98, xuu101) -> new_esEs19(new_compare6(xuu98, xuu101), LT) 25.22/9.07 new_esEs11(xuu40000, xuu3000, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs14(xuu40000, xuu3000, dcd, dce, dcf) 25.22/9.07 new_esEs37(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.22/9.07 new_esEs10(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) 25.22/9.07 new_primCmpNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primCmpNat0(xuu400000, xuu30000) 25.22/9.07 new_lt21(xuu99, xuu102, ty_@0) -> new_lt5(xuu99, xuu102) 25.22/9.07 new_esEs30(xuu111, xuu113, ty_Int) -> new_esEs16(xuu111, xuu113) 25.22/9.07 new_lt19(xuu111, xuu113, ty_Char) -> new_lt4(xuu111, xuu113) 25.22/9.07 new_esEs38(xuu591, xuu601, ty_Float) -> new_esEs20(xuu591, xuu601) 25.22/9.07 new_lt5(xuu98, xuu101) -> new_esEs19(new_compare8(xuu98, xuu101), LT) 25.22/9.07 new_lt23(xuu591, xuu601, ty_Float) -> new_lt17(xuu591, xuu601) 25.22/9.07 new_esEs37(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.22/9.07 new_lt22(xuu590, xuu600, ty_@0) -> new_lt5(xuu590, xuu600) 25.22/9.07 new_esEs37(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.22/9.07 new_esEs36(xuu400001, xuu30001, ty_@0) -> new_esEs22(xuu400001, xuu30001) 25.22/9.07 new_lt23(xuu591, xuu601, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_lt8(xuu591, xuu601, bbb, bbc, bbd) 25.22/9.07 new_esEs11(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.22/9.07 new_esEs36(xuu400001, xuu30001, app(app(ty_Either, feb), fec)) -> new_esEs17(xuu400001, xuu30001, feb, fec) 25.22/9.07 new_esEs28(xuu400001, xuu30001, ty_Double) -> new_esEs25(xuu400001, xuu30001) 25.22/9.07 new_esEs37(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.22/9.07 new_compare211(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, df) -> new_compare112(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, new_lt20(xuu98, xuu101, eg), new_asAs(new_esEs35(xuu98, xuu101, eg), new_pePe(new_lt21(xuu99, xuu102, de), new_asAs(new_esEs34(xuu99, xuu102, de), new_ltEs23(xuu100, xuu103, df)))), eg, de, df) 25.22/9.07 new_ltEs20(xuu112, xuu114, app(ty_[], ccf)) -> new_ltEs5(xuu112, xuu114, ccf) 25.22/9.07 new_esEs36(xuu400001, xuu30001, ty_Char) -> new_esEs18(xuu400001, xuu30001) 25.22/9.07 new_compare110(xuu153, xuu154, True, fbf) -> LT 25.22/9.07 new_compare14(xuu144, xuu145, False, ehe, ehf) -> GT 25.22/9.07 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.22/9.07 new_ltEs20(xuu112, xuu114, ty_Float) -> new_ltEs17(xuu112, xuu114) 25.22/9.07 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(ty_@2, eah), eba), ebb) -> new_esEs13(xuu400000, xuu30000, eah, eba) 25.22/9.07 new_compare15(Right(xuu40000), Left(xuu3000), bf, bg) -> GT 25.22/9.07 new_lt22(xuu590, xuu600, app(app(app(ty_@3, hh), baa), bab)) -> new_lt8(xuu590, xuu600, hh, baa, bab) 25.22/9.07 new_lt6(xuu590, xuu600, ty_@0) -> new_lt5(xuu590, xuu600) 25.22/9.07 new_lt6(xuu590, xuu600, ty_Integer) -> new_lt18(xuu590, xuu600) 25.22/9.07 new_esEs33(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.22/9.07 new_ltEs13(Nothing, Just(xuu600), ddf) -> True 25.22/9.07 new_lt7(xuu98, xuu101, h) -> new_esEs19(new_compare18(xuu98, xuu101, h), LT) 25.22/9.07 new_lt21(xuu99, xuu102, ty_Integer) -> new_lt18(xuu99, xuu102) 25.22/9.07 new_esEs36(xuu400001, xuu30001, ty_Ordering) -> new_esEs19(xuu400001, xuu30001) 25.22/9.07 new_esEs28(xuu400001, xuu30001, app(ty_Ratio, dge)) -> new_esEs21(xuu400001, xuu30001, dge) 25.22/9.07 new_compare16(LT, EQ) -> LT 25.22/9.07 new_ltEs19(xuu591, xuu601, ty_Float) -> new_ltEs17(xuu591, xuu601) 25.22/9.07 new_esEs33(xuu400000, xuu30000, app(app(app(ty_@3, fad), fae), faf)) -> new_esEs14(xuu400000, xuu30000, fad, fae, faf) 25.22/9.07 new_esEs6(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.22/9.07 new_ltEs24(xuu592, xuu602, ty_Char) -> new_ltEs10(xuu592, xuu602) 25.22/9.07 new_primCmpInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> LT 25.22/9.07 new_lt22(xuu590, xuu600, app(ty_Maybe, bae)) -> new_lt13(xuu590, xuu600, bae) 25.22/9.07 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Bool, ebb) -> new_esEs15(xuu400000, xuu30000) 25.22/9.07 new_esEs37(xuu400000, xuu30000, app(ty_Maybe, ffg)) -> new_esEs12(xuu400000, xuu30000, ffg) 25.22/9.07 new_esEs34(xuu99, xuu102, ty_Char) -> new_esEs18(xuu99, xuu102) 25.22/9.07 new_ltEs7(xuu59, xuu60) -> new_fsEs(new_compare17(xuu59, xuu60)) 25.22/9.07 new_compare30(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.22/9.07 new_esEs9(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.22/9.07 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_Maybe, bge)) -> new_ltEs13(xuu590, xuu600, bge) 25.22/9.07 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_Ratio, ehh), bdd) -> new_ltEs11(xuu590, xuu600, ehh) 25.22/9.07 new_ltEs20(xuu112, xuu114, ty_Integer) -> new_ltEs18(xuu112, xuu114) 25.22/9.07 new_compare14(xuu144, xuu145, True, ehe, ehf) -> LT 25.22/9.07 new_esEs37(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.22/9.07 new_lt23(xuu591, xuu601, ty_Integer) -> new_lt18(xuu591, xuu601) 25.22/9.07 new_primCmpInt(Pos(Zero), Neg(Succ(xuu30000))) -> GT 25.22/9.07 new_esEs4(xuu40002, xuu3002, ty_Bool) -> new_esEs15(xuu40002, xuu3002) 25.22/9.07 new_lt19(xuu111, xuu113, app(app(ty_Either, ced), cee)) -> new_lt10(xuu111, xuu113, ced, cee) 25.22/9.07 new_compare18([], :(xuu3000, xuu3001), ba) -> LT 25.22/9.07 new_ltEs19(xuu591, xuu601, app(ty_[], cac)) -> new_ltEs5(xuu591, xuu601, cac) 25.22/9.07 new_ltEs22(xuu73, xuu74, app(ty_Ratio, eee)) -> new_ltEs11(xuu73, xuu74, eee) 25.22/9.07 new_primCmpInt(Neg(Succ(xuu400000)), Neg(xuu3000)) -> new_primCmpNat0(xuu3000, Succ(xuu400000)) 25.22/9.07 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.22/9.07 new_lt21(xuu99, xuu102, ty_Char) -> new_lt4(xuu99, xuu102) 25.22/9.07 new_esEs4(xuu40002, xuu3002, app(app(ty_@2, fbg), fbh)) -> new_esEs13(xuu40002, xuu3002, fbg, fbh) 25.22/9.07 new_esEs27(xuu400002, xuu30002, ty_Double) -> new_esEs25(xuu400002, xuu30002) 25.22/9.07 new_compare12(xuu185, xuu186, xuu187, xuu188, True, eab, eac) -> LT 25.22/9.07 new_esEs9(xuu40000, xuu3000, app(ty_Ratio, dae)) -> new_esEs21(xuu40000, xuu3000, dae) 25.22/9.07 new_esEs10(xuu40001, xuu3001, app(app(ty_@2, dah), dba)) -> new_esEs13(xuu40001, xuu3001, dah, dba) 25.22/9.07 new_esEs27(xuu400002, xuu30002, app(ty_Maybe, dfd)) -> new_esEs12(xuu400002, xuu30002, dfd) 25.22/9.07 new_ltEs22(xuu73, xuu74, app(app(ty_@2, ccc), ccd)) -> new_ltEs14(xuu73, xuu74, ccc, ccd) 25.22/9.07 new_esEs8(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.22/9.07 new_esEs15(False, False) -> True 25.22/9.07 new_ltEs20(xuu112, xuu114, ty_Bool) -> new_ltEs12(xuu112, xuu114) 25.22/9.07 new_esEs33(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.22/9.07 new_primEqInt(Pos(Succ(xuu4000000)), Pos(Zero)) -> False 25.22/9.07 new_primEqInt(Pos(Zero), Pos(Succ(xuu300000))) -> False 25.22/9.07 new_lt6(xuu590, xuu600, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_lt8(xuu590, xuu600, bhb, bhc, bhd) 25.22/9.07 new_ltEs8(Right(xuu590), Right(xuu600), bee, ty_Ordering) -> new_ltEs16(xuu590, xuu600) 25.22/9.07 new_esEs29(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.22/9.07 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Integer, ebb) -> new_esEs23(xuu400000, xuu30000) 25.22/9.07 new_ltEs20(xuu112, xuu114, app(app(ty_Either, cdb), cdc)) -> new_ltEs8(xuu112, xuu114, cdb, cdc) 25.22/9.07 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.22/9.07 new_ltEs23(xuu100, xuu103, ty_Float) -> new_ltEs17(xuu100, xuu103) 25.22/9.07 new_ltEs13(Just(xuu590), Just(xuu600), ty_Char) -> new_ltEs10(xuu590, xuu600) 25.22/9.07 new_esEs39(xuu590, xuu600, ty_Char) -> new_esEs18(xuu590, xuu600) 25.22/9.07 new_primCmpNat0(Zero, Zero) -> EQ 25.22/9.07 new_esEs10(xuu40001, xuu3001, app(app(ty_Either, dbe), dbf)) -> new_esEs17(xuu40001, xuu3001, dbe, dbf) 25.22/9.07 new_lt6(xuu590, xuu600, ty_Int) -> new_lt9(xuu590, xuu600) 25.22/9.07 new_ltEs16(GT, EQ) -> False 25.22/9.07 new_primCompAux00(xuu34, xuu35, EQ, app(ty_Maybe, db)) -> new_compare29(xuu34, xuu35, db) 25.22/9.07 new_lt23(xuu591, xuu601, app(ty_[], bba)) -> new_lt7(xuu591, xuu601, bba) 25.22/9.07 new_lt20(xuu98, xuu101, ty_Ordering) -> new_lt16(xuu98, xuu101) 25.22/9.07 new_esEs4(xuu40002, xuu3002, app(ty_[], fch)) -> new_esEs24(xuu40002, xuu3002, fch) 25.22/9.07 new_ltEs20(xuu112, xuu114, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs6(xuu112, xuu114, ccg, cch, cda) 25.22/9.07 new_esEs35(xuu98, xuu101, ty_Bool) -> new_esEs15(xuu98, xuu101) 25.22/9.07 new_lt11(xuu98, xuu101, fda) -> new_esEs19(new_compare27(xuu98, xuu101, fda), LT) 25.22/9.07 new_esEs27(xuu400002, xuu30002, ty_Ordering) -> new_esEs19(xuu400002, xuu30002) 25.22/9.07 new_ltEs13(Just(xuu590), Just(xuu600), ty_Double) -> new_ltEs15(xuu590, xuu600) 25.22/9.07 new_esEs37(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.22/9.07 new_compare13(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.22/9.07 new_esEs29(xuu400000, xuu30000, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs14(xuu400000, xuu30000, dhb, dhc, dhd) 25.22/9.07 new_ltEs22(xuu73, xuu74, ty_Int) -> new_ltEs7(xuu73, xuu74) 25.22/9.07 new_lt12(xuu98, xuu101) -> new_esEs19(new_compare28(xuu98, xuu101), LT) 25.22/9.07 new_lt22(xuu590, xuu600, ty_Double) -> new_lt15(xuu590, xuu600) 25.22/9.07 new_compare11(xuu185, xuu186, xuu187, xuu188, True, xuu190, eab, eac) -> new_compare12(xuu185, xuu186, xuu187, xuu188, True, eab, eac) 25.22/9.07 new_esEs4(xuu40002, xuu3002, app(app(ty_Either, fcd), fce)) -> new_esEs17(xuu40002, xuu3002, fcd, fce) 25.22/9.07 new_esEs27(xuu400002, xuu30002, ty_Int) -> new_esEs16(xuu400002, xuu30002) 25.22/9.07 new_ltEs24(xuu592, xuu602, ty_Double) -> new_ltEs15(xuu592, xuu602) 25.22/9.07 new_esEs36(xuu400001, xuu30001, app(app(app(ty_@3, fdg), fdh), fea)) -> new_esEs14(xuu400001, xuu30001, fdg, fdh, fea) 25.22/9.07 new_ltEs16(LT, LT) -> True 25.22/9.07 new_lt23(xuu591, xuu601, ty_Bool) -> new_lt12(xuu591, xuu601) 25.22/9.07 new_compare16(LT, GT) -> LT 25.22/9.07 new_esEs23(Integer(xuu400000), Integer(xuu30000)) -> new_primEqInt(xuu400000, xuu30000) 25.22/9.07 new_esEs37(xuu400000, xuu30000, app(ty_Ratio, fff)) -> new_esEs21(xuu400000, xuu30000, fff) 25.22/9.07 new_esEs39(xuu590, xuu600, ty_@0) -> new_esEs22(xuu590, xuu600) 25.22/9.07 new_ltEs13(Just(xuu590), Just(xuu600), ty_@0) -> new_ltEs9(xuu590, xuu600) 25.22/9.07 new_esEs9(xuu40000, xuu3000, app(ty_[], dag)) -> new_esEs24(xuu40000, xuu3000, dag) 25.22/9.07 new_lt21(xuu99, xuu102, ty_Float) -> new_lt17(xuu99, xuu102) 25.22/9.07 new_esEs9(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.22/9.07 new_compare25(xuu59, xuu60, False, ddd, hd) -> new_compare10(xuu59, xuu60, new_ltEs4(xuu59, xuu60, ddd), ddd, hd) 25.22/9.07 new_esEs4(xuu40002, xuu3002, ty_Integer) -> new_esEs23(xuu40002, xuu3002) 25.22/9.07 new_esEs9(xuu40000, xuu3000, app(app(ty_Either, dac), dad)) -> new_esEs17(xuu40000, xuu3000, dac, dad) 25.22/9.07 new_esEs11(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.22/9.07 new_esEs5(xuu40001, xuu3001, ty_Float) -> new_esEs20(xuu40001, xuu3001) 25.22/9.07 new_esEs9(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.22/9.07 new_esEs10(xuu40001, xuu3001, app(ty_Ratio, dbg)) -> new_esEs21(xuu40001, xuu3001, dbg) 25.22/9.07 new_primCmpNat0(Succ(xuu400000), Zero) -> GT 25.22/9.07 new_pePe(False, xuu206) -> xuu206 25.22/9.07 new_esEs39(xuu590, xuu600, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs14(xuu590, xuu600, hh, baa, bab) 25.22/9.07 new_esEs11(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.22/9.07 new_lt13(xuu98, xuu101, ed) -> new_esEs19(new_compare29(xuu98, xuu101, ed), LT) 25.22/9.07 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.22/9.07 new_esEs8(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.22/9.07 new_compare25(xuu59, xuu60, True, ddd, hd) -> EQ 25.22/9.07 new_ltEs22(xuu73, xuu74, ty_Double) -> new_ltEs15(xuu73, xuu74) 25.22/9.07 new_esEs10(xuu40001, xuu3001, app(ty_[], dca)) -> new_esEs24(xuu40001, xuu3001, dca) 25.22/9.07 new_compare210(xuu73, xuu74, True, eed) -> EQ 25.22/9.07 new_ltEs8(Right(xuu590), Right(xuu600), bee, ty_Integer) -> new_ltEs18(xuu590, xuu600) 25.22/9.07 new_esEs4(xuu40002, xuu3002, ty_Ordering) -> new_esEs19(xuu40002, xuu3002) 25.22/9.07 new_ltEs16(LT, GT) -> True 25.22/9.07 new_esEs30(xuu111, xuu113, app(app(ty_@2, ceg), ceh)) -> new_esEs13(xuu111, xuu113, ceg, ceh) 25.22/9.07 new_esEs5(xuu40001, xuu3001, ty_@0) -> new_esEs22(xuu40001, xuu3001) 25.22/9.07 new_compare0(xuu4000, xuu300, ty_Ordering) -> new_compare16(xuu4000, xuu300) 25.22/9.07 new_esEs30(xuu111, xuu113, app(app(ty_Either, ced), cee)) -> new_esEs17(xuu111, xuu113, ced, cee) 25.22/9.07 new_esEs6(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.22/9.07 new_ltEs16(LT, EQ) -> True 25.22/9.07 new_ltEs16(EQ, LT) -> False 25.22/9.07 new_lt6(xuu590, xuu600, app(ty_Maybe, bhg)) -> new_lt13(xuu590, xuu600, bhg) 25.22/9.07 new_esEs35(xuu98, xuu101, app(ty_Ratio, fda)) -> new_esEs21(xuu98, xuu101, fda) 25.22/9.07 new_esEs30(xuu111, xuu113, ty_Bool) -> new_esEs15(xuu111, xuu113) 25.22/9.07 new_lt14(xuu98, xuu101, ee, ef) -> new_esEs19(new_compare7(xuu98, xuu101, ee, ef), LT) 25.22/9.07 new_primEqInt(Pos(Zero), Neg(Succ(xuu300000))) -> False 25.22/9.07 new_primEqInt(Neg(Zero), Pos(Succ(xuu300000))) -> False 25.22/9.07 new_ltEs16(GT, LT) -> False 25.22/9.07 new_esEs7(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.22/9.07 new_esEs34(xuu99, xuu102, ty_Int) -> new_esEs16(xuu99, xuu102) 25.22/9.07 new_compare16(EQ, EQ) -> EQ 25.22/9.07 new_esEs10(xuu40001, xuu3001, ty_Integer) -> new_esEs23(xuu40001, xuu3001) 25.22/9.07 new_ltEs17(xuu59, xuu60) -> new_fsEs(new_compare13(xuu59, xuu60)) 25.22/9.07 new_esEs29(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.22/9.07 new_ltEs22(xuu73, xuu74, ty_@0) -> new_ltEs9(xuu73, xuu74) 25.22/9.07 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Int, ebb) -> new_esEs16(xuu400000, xuu30000) 25.22/9.07 new_esEs37(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.22/9.07 new_esEs30(xuu111, xuu113, ty_Integer) -> new_esEs23(xuu111, xuu113) 25.22/9.07 new_esEs5(xuu40001, xuu3001, app(app(app(ty_@3, fgc), fgd), fge)) -> new_esEs14(xuu40001, xuu3001, fgc, fgd, fge) 25.22/9.07 new_ltEs24(xuu592, xuu602, app(ty_[], bcb)) -> new_ltEs5(xuu592, xuu602, bcb) 25.22/9.07 new_lt19(xuu111, xuu113, ty_Float) -> new_lt17(xuu111, xuu113) 25.22/9.07 new_esEs24(:(xuu400000, xuu400001), [], eea) -> False 25.22/9.07 new_esEs24([], :(xuu30000, xuu30001), eea) -> False 25.22/9.07 new_compare24(xuu111, xuu112, xuu113, xuu114, False, cce, cdh) -> new_compare11(xuu111, xuu112, xuu113, xuu114, new_lt19(xuu111, xuu113, cce), new_asAs(new_esEs30(xuu111, xuu113, cce), new_ltEs20(xuu112, xuu114, cdh)), cce, cdh) 25.22/9.07 new_ltEs8(Right(xuu590), Right(xuu600), bee, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs6(xuu590, xuu600, beg, beh, bfa) 25.22/9.07 new_compare26(xuu66, xuu67, False, cfa, eaf) -> new_compare14(xuu66, xuu67, new_ltEs21(xuu66, xuu67, eaf), cfa, eaf) 25.22/9.07 new_compare0(xuu4000, xuu300, app(ty_Ratio, ehg)) -> new_compare27(xuu4000, xuu300, ehg) 25.22/9.07 new_esEs16(xuu40000, xuu3000) -> new_primEqInt(xuu40000, xuu3000) 25.22/9.07 new_esEs19(EQ, EQ) -> True 25.22/9.07 new_esEs7(xuu40000, xuu3000, app(app(ty_Either, eff), efg)) -> new_esEs17(xuu40000, xuu3000, eff, efg) 25.22/9.07 new_lt20(xuu98, xuu101, ty_Bool) -> new_lt12(xuu98, xuu101) 25.22/9.07 new_ltEs16(EQ, GT) -> True 25.22/9.07 new_esEs20(Float(xuu400000, xuu400001), Float(xuu30000, xuu30001)) -> new_esEs16(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) 25.22/9.07 new_esEs30(xuu111, xuu113, app(ty_[], cdg)) -> new_esEs24(xuu111, xuu113, cdg) 25.22/9.07 new_ltEs8(Right(xuu590), Right(xuu600), bee, app(app(ty_Either, bfb), bfc)) -> new_ltEs8(xuu590, xuu600, bfb, bfc) 25.22/9.07 new_ltEs16(EQ, EQ) -> True 25.22/9.07 new_esEs27(xuu400002, xuu30002, ty_Bool) -> new_esEs15(xuu400002, xuu30002) 25.22/9.07 new_esEs32(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.22/9.07 new_lt21(xuu99, xuu102, app(app(ty_Either, fd), ff)) -> new_lt10(xuu99, xuu102, fd, ff) 25.22/9.07 new_compare28(True, False) -> GT 25.22/9.07 new_esEs6(xuu40000, xuu3000, app(app(ty_Either, ecc), ebb)) -> new_esEs17(xuu40000, xuu3000, ecc, ebb) 25.22/9.07 new_esEs26(xuu590, xuu600, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs14(xuu590, xuu600, bhb, bhc, bhd) 25.22/9.07 new_ltEs8(Left(xuu590), Left(xuu600), ty_Bool, bdd) -> new_ltEs12(xuu590, xuu600) 25.22/9.07 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs14(xuu400000, xuu30000, cgf, cgg, cgh) 25.22/9.07 new_esEs28(xuu400001, xuu30001, app(app(ty_@2, dff), dfg)) -> new_esEs13(xuu400001, xuu30001, dff, dfg) 25.22/9.07 new_lt21(xuu99, xuu102, ty_Bool) -> new_lt12(xuu99, xuu102) 25.22/9.07 new_esEs28(xuu400001, xuu30001, ty_Bool) -> new_esEs15(xuu400001, xuu30001) 25.22/9.07 new_esEs6(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.22/9.07 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.22/9.07 new_lt8(xuu98, xuu101, dg, dh, ea) -> new_esEs19(new_compare19(xuu98, xuu101, dg, dh, ea), LT) 25.22/9.07 new_ltEs23(xuu100, xuu103, ty_Integer) -> new_ltEs18(xuu100, xuu103) 25.22/9.07 new_primCompAux00(xuu34, xuu35, EQ, ty_Integer) -> new_compare9(xuu34, xuu35) 25.22/9.07 new_ltEs20(xuu112, xuu114, app(app(ty_@2, cde), cdf)) -> new_ltEs14(xuu112, xuu114, cde, cdf) 25.22/9.07 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.22/9.07 new_ltEs20(xuu112, xuu114, ty_Ordering) -> new_ltEs16(xuu112, xuu114) 25.22/9.07 new_ltEs8(Right(xuu590), Right(xuu600), bee, ty_Int) -> new_ltEs7(xuu590, xuu600) 25.22/9.07 new_esEs7(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.22/9.07 new_esEs6(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.22/9.07 new_lt23(xuu591, xuu601, ty_Ordering) -> new_lt16(xuu591, xuu601) 25.22/9.07 new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, eef, eeg, eeh) -> LT 25.22/9.07 new_primMulInt(Neg(xuu30000), Neg(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) 25.22/9.07 new_primCmpInt(Pos(Zero), Pos(Succ(xuu30000))) -> new_primCmpNat0(Zero, Succ(xuu30000)) 25.22/9.07 new_esEs9(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.22/9.07 new_ltEs22(xuu73, xuu74, ty_Integer) -> new_ltEs18(xuu73, xuu74) 25.22/9.07 new_esEs34(xuu99, xuu102, ty_Double) -> new_esEs25(xuu99, xuu102) 25.22/9.07 new_fsEs(xuu207) -> new_not(new_esEs19(xuu207, GT)) 25.22/9.07 new_compare210(xuu73, xuu74, False, eed) -> new_compare110(xuu73, xuu74, new_ltEs22(xuu73, xuu74, eed), eed) 25.22/9.07 new_esEs34(xuu99, xuu102, app(ty_Ratio, fdb)) -> new_esEs21(xuu99, xuu102, fdb) 25.22/9.07 new_esEs6(xuu40000, xuu3000, app(ty_[], eea)) -> new_esEs24(xuu40000, xuu3000, eea) 25.22/9.07 new_compare0(xuu4000, xuu300, ty_Integer) -> new_compare9(xuu4000, xuu300) 25.22/9.07 new_primMulInt(Pos(xuu30000), Neg(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) 25.22/9.07 new_primMulInt(Neg(xuu30000), Pos(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) 25.22/9.07 new_esEs34(xuu99, xuu102, app(ty_[], eh)) -> new_esEs24(xuu99, xuu102, eh) 25.22/9.07 new_ltEs21(xuu66, xuu67, app(ty_Maybe, cfh)) -> new_ltEs13(xuu66, xuu67, cfh) 25.22/9.07 new_primCompAux00(xuu34, xuu35, EQ, app(ty_[], cc)) -> new_compare18(xuu34, xuu35, cc) 25.22/9.07 new_esEs8(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.22/9.07 new_esEs28(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.22/9.07 new_esEs8(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.22/9.07 new_lt15(xuu98, xuu101) -> new_esEs19(new_compare30(xuu98, xuu101), LT) 25.22/9.07 new_esEs27(xuu400002, xuu30002, ty_@0) -> new_esEs22(xuu400002, xuu30002) 25.22/9.07 new_ltEs23(xuu100, xuu103, ty_Ordering) -> new_ltEs16(xuu100, xuu103) 25.22/9.07 new_ltEs22(xuu73, xuu74, app(app(ty_Either, cbh), cca)) -> new_ltEs8(xuu73, xuu74, cbh, cca) 25.22/9.07 new_sr0(Integer(xuu30000), Integer(xuu400010)) -> Integer(new_primMulInt(xuu30000, xuu400010)) 25.22/9.07 new_lt20(xuu98, xuu101, app(ty_[], h)) -> new_lt7(xuu98, xuu101, h) 25.22/9.07 new_esEs30(xuu111, xuu113, ty_Ordering) -> new_esEs19(xuu111, xuu113) 25.22/9.07 new_lt6(xuu590, xuu600, app(app(ty_Either, bhe), bhf)) -> new_lt10(xuu590, xuu600, bhe, bhf) 25.22/9.07 new_esEs35(xuu98, xuu101, ty_Double) -> new_esEs25(xuu98, xuu101) 25.22/9.07 new_esEs38(xuu591, xuu601, app(app(ty_@2, bbh), bca)) -> new_esEs13(xuu591, xuu601, bbh, bca) 25.22/9.07 new_esEs8(xuu40000, xuu3000, app(ty_Maybe, ehc)) -> new_esEs12(xuu40000, xuu3000, ehc) 25.22/9.07 new_asAs(True, xuu132) -> xuu132 25.22/9.07 new_ltEs23(xuu100, xuu103, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs6(xuu100, xuu103, gc, gd, ge) 25.22/9.07 new_esEs22(@0, @0) -> True 25.22/9.07 new_compare30(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.22/9.07 new_compare30(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.22/9.07 new_lt6(xuu590, xuu600, app(ty_Ratio, ddg)) -> new_lt11(xuu590, xuu600, ddg) 25.22/9.07 new_lt19(xuu111, xuu113, app(ty_[], cdg)) -> new_lt7(xuu111, xuu113, cdg) 25.22/9.07 new_lt6(xuu590, xuu600, app(app(ty_@2, bhh), caa)) -> new_lt14(xuu590, xuu600, bhh, caa) 25.22/9.07 new_esEs26(xuu590, xuu600, ty_Char) -> new_esEs18(xuu590, xuu600) 25.22/9.07 new_ltEs19(xuu591, xuu601, ty_Double) -> new_ltEs15(xuu591, xuu601) 25.22/9.07 new_esEs29(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.22/9.07 new_ltEs8(Left(xuu590), Left(xuu600), ty_Int, bdd) -> new_ltEs7(xuu590, xuu600) 25.22/9.07 new_ltEs20(xuu112, xuu114, app(ty_Ratio, ead)) -> new_ltEs11(xuu112, xuu114, ead) 25.22/9.07 new_compare211(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, True, eg, de, df) -> EQ 25.22/9.07 new_compare12(xuu185, xuu186, xuu187, xuu188, False, eab, eac) -> GT 25.22/9.07 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Double, ebb) -> new_esEs25(xuu400000, xuu30000) 25.22/9.07 new_esEs33(xuu400000, xuu30000, app(app(ty_@2, fab), fac)) -> new_esEs13(xuu400000, xuu30000, fab, fac) 25.22/9.07 new_esEs8(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.22/9.07 new_ltEs22(xuu73, xuu74, ty_Char) -> new_ltEs10(xuu73, xuu74) 25.22/9.07 new_sr(xuu3000, xuu40001) -> new_primMulInt(xuu3000, xuu40001) 25.22/9.07 new_esEs39(xuu590, xuu600, app(ty_[], he)) -> new_esEs24(xuu590, xuu600, he) 25.22/9.07 new_ltEs16(GT, GT) -> True 25.22/9.07 new_esEs38(xuu591, xuu601, app(ty_Ratio, fhd)) -> new_esEs21(xuu591, xuu601, fhd) 25.22/9.07 new_esEs28(xuu400001, xuu30001, ty_Ordering) -> new_esEs19(xuu400001, xuu30001) 25.22/9.07 new_primMulNat0(Zero, Zero) -> Zero 25.22/9.07 new_esEs4(xuu40002, xuu3002, ty_Int) -> new_esEs16(xuu40002, xuu3002) 25.22/9.07 new_esEs7(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.22/9.07 new_esEs8(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.22/9.07 new_esEs27(xuu400002, xuu30002, app(app(ty_Either, dfa), dfb)) -> new_esEs17(xuu400002, xuu30002, dfa, dfb) 25.22/9.07 new_compare0(xuu4000, xuu300, app(app(app(ty_@3, bc), bd), be)) -> new_compare19(xuu4000, xuu300, bc, bd, be) 25.22/9.07 new_ltEs8(Right(xuu590), Right(xuu600), bee, ty_@0) -> new_ltEs9(xuu590, xuu600) 25.22/9.07 new_ltEs13(Just(xuu590), Just(xuu600), ty_Ordering) -> new_ltEs16(xuu590, xuu600) 25.22/9.07 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_[], bdc), bdd) -> new_ltEs5(xuu590, xuu600, bdc) 25.22/9.07 new_esEs7(xuu40000, xuu3000, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs14(xuu40000, xuu3000, efc, efd, efe) 25.22/9.07 new_esEs4(xuu40002, xuu3002, app(ty_Maybe, fcg)) -> new_esEs12(xuu40002, xuu3002, fcg) 25.22/9.07 new_esEs38(xuu591, xuu601, app(ty_[], bba)) -> new_esEs24(xuu591, xuu601, bba) 25.22/9.07 new_ltEs19(xuu591, xuu601, app(ty_Maybe, cba)) -> new_ltEs13(xuu591, xuu601, cba) 25.22/9.07 new_ltEs4(xuu59, xuu60, ty_Bool) -> new_ltEs12(xuu59, xuu60) 25.22/9.07 new_esEs36(xuu400001, xuu30001, ty_Double) -> new_esEs25(xuu400001, xuu30001) 25.22/9.07 new_ltEs8(Right(xuu590), Right(xuu600), bee, app(ty_[], bef)) -> new_ltEs5(xuu590, xuu600, bef) 25.22/9.07 new_lt22(xuu590, xuu600, app(app(ty_Either, bac), bad)) -> new_lt10(xuu590, xuu600, bac, bad) 25.22/9.07 new_ltEs19(xuu591, xuu601, app(ty_Ratio, ddh)) -> new_ltEs11(xuu591, xuu601, ddh) 25.22/9.07 new_lt23(xuu591, xuu601, app(app(ty_@2, bbh), bca)) -> new_lt14(xuu591, xuu601, bbh, bca) 25.22/9.07 new_esEs28(xuu400001, xuu30001, app(app(ty_Either, dgc), dgd)) -> new_esEs17(xuu400001, xuu30001, dgc, dgd) 25.22/9.07 new_esEs30(xuu111, xuu113, ty_Float) -> new_esEs20(xuu111, xuu113) 25.22/9.07 new_lt16(xuu98, xuu101) -> new_esEs19(new_compare16(xuu98, xuu101), LT) 25.22/9.07 new_compare16(EQ, GT) -> LT 25.22/9.07 new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, False, eef, eeg, eeh) -> GT 25.22/9.07 new_esEs39(xuu590, xuu600, app(ty_Maybe, bae)) -> new_esEs12(xuu590, xuu600, bae) 25.22/9.07 new_lt23(xuu591, xuu601, app(app(ty_Either, bbe), bbf)) -> new_lt10(xuu591, xuu601, bbe, bbf) 25.22/9.07 new_ltEs4(xuu59, xuu60, ty_Char) -> new_ltEs10(xuu59, xuu60) 25.22/9.07 new_esEs28(xuu400001, xuu30001, ty_@0) -> new_esEs22(xuu400001, xuu30001) 25.22/9.07 new_primEqInt(Neg(Succ(xuu4000000)), Neg(Zero)) -> False 25.22/9.07 new_primEqInt(Neg(Zero), Neg(Succ(xuu300000))) -> False 25.22/9.07 new_esEs12(Just(xuu400000), Just(xuu30000), ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.22/9.07 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.22/9.07 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, app(ty_Maybe, edd)) -> new_esEs12(xuu400000, xuu30000, edd) 25.22/9.07 new_esEs29(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.22/9.07 new_primEqInt(Pos(Succ(xuu4000000)), Pos(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) 25.22/9.07 new_esEs21(:%(xuu400000, xuu400001), :%(xuu30000, xuu30001), edh) -> new_asAs(new_esEs32(xuu400000, xuu30000, edh), new_esEs31(xuu400001, xuu30001, edh)) 25.22/9.07 new_esEs39(xuu590, xuu600, ty_Int) -> new_esEs16(xuu590, xuu600) 25.22/9.07 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(ty_Either, cha), chb)) -> new_esEs17(xuu400000, xuu30000, cha, chb) 25.22/9.07 new_esEs6(xuu40000, xuu3000, app(app(app(ty_@3, dea), deb), dec)) -> new_esEs14(xuu40000, xuu3000, dea, deb, dec) 25.22/9.07 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_[], bfg)) -> new_ltEs5(xuu590, xuu600, bfg) 25.22/9.07 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.22/9.07 new_lt22(xuu590, xuu600, app(app(ty_@2, baf), bag)) -> new_lt14(xuu590, xuu600, baf, bag) 25.22/9.07 new_esEs37(xuu400000, xuu30000, app(app(ty_@2, feg), feh)) -> new_esEs13(xuu400000, xuu30000, feg, feh) 25.22/9.07 new_ltEs4(xuu59, xuu60, ty_Double) -> new_ltEs15(xuu59, xuu60) 25.22/9.07 new_esEs33(xuu400000, xuu30000, app(ty_[], fbc)) -> new_esEs24(xuu400000, xuu30000, fbc) 25.22/9.07 new_primEqInt(Pos(Succ(xuu4000000)), Neg(xuu30000)) -> False 25.22/9.07 new_primEqInt(Neg(Succ(xuu4000000)), Pos(xuu30000)) -> False 25.22/9.07 new_esEs6(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.22/9.07 new_esEs9(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.22/9.07 new_primCmpInt(Neg(Zero), Neg(Succ(xuu30000))) -> new_primCmpNat0(Succ(xuu30000), Zero) 25.22/9.07 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.22/9.07 new_esEs7(xuu40000, xuu3000, app(ty_Ratio, efh)) -> new_esEs21(xuu40000, xuu3000, efh) 25.22/9.07 new_ltEs8(Right(xuu590), Right(xuu600), bee, ty_Char) -> new_ltEs10(xuu590, xuu600) 25.22/9.07 new_compare0(xuu4000, xuu300, ty_@0) -> new_compare8(xuu4000, xuu300) 25.22/9.07 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.22/9.07 new_ltEs22(xuu73, xuu74, ty_Ordering) -> new_ltEs16(xuu73, xuu74) 25.22/9.07 new_lt23(xuu591, xuu601, app(ty_Ratio, fhd)) -> new_lt11(xuu591, xuu601, fhd) 25.22/9.07 new_compare19(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bc, bd, be) -> new_compare211(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs6(xuu40000, xuu3000, bc), new_asAs(new_esEs5(xuu40001, xuu3001, bd), new_esEs4(xuu40002, xuu3002, be))), bc, bd, be) 25.22/9.07 new_esEs27(xuu400002, xuu30002, ty_Char) -> new_esEs18(xuu400002, xuu30002) 25.22/9.07 new_ltEs23(xuu100, xuu103, ty_Bool) -> new_ltEs12(xuu100, xuu103) 25.22/9.07 new_primCompAux00(xuu34, xuu35, LT, eeb) -> LT 25.22/9.07 new_esEs26(xuu590, xuu600, ty_@0) -> new_esEs22(xuu590, xuu600) 25.22/9.07 new_esEs6(xuu40000, xuu3000, app(ty_Ratio, edh)) -> new_esEs21(xuu40000, xuu3000, edh) 25.22/9.07 new_esEs5(xuu40001, xuu3001, ty_Double) -> new_esEs25(xuu40001, xuu3001) 25.22/9.07 new_ltEs23(xuu100, xuu103, ty_Char) -> new_ltEs10(xuu100, xuu103) 25.22/9.07 new_primPlusNat0(xuu219, xuu4000100) -> new_primPlusNat1(xuu219, Succ(xuu4000100)) 25.22/9.07 new_not(False) -> True 25.22/9.07 new_ltEs13(Just(xuu590), Just(xuu600), ty_Float) -> new_ltEs17(xuu590, xuu600) 25.22/9.07 new_ltEs24(xuu592, xuu602, ty_@0) -> new_ltEs9(xuu592, xuu602) 25.22/9.07 new_esEs9(xuu40000, xuu3000, app(ty_Maybe, daf)) -> new_esEs12(xuu40000, xuu3000, daf) 25.22/9.07 new_esEs35(xuu98, xuu101, app(ty_[], h)) -> new_esEs24(xuu98, xuu101, h) 25.22/9.07 new_ltEs24(xuu592, xuu602, app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs6(xuu592, xuu602, bcc, bcd, bce) 25.22/9.07 new_ltEs21(xuu66, xuu67, ty_Bool) -> new_ltEs12(xuu66, xuu67) 25.22/9.07 new_compare0(xuu4000, xuu300, app(ty_Maybe, bh)) -> new_compare29(xuu4000, xuu300, bh) 25.22/9.07 new_ltEs13(Just(xuu590), Just(xuu600), ty_Integer) -> new_ltEs18(xuu590, xuu600) 25.22/9.07 new_esEs27(xuu400002, xuu30002, ty_Integer) -> new_esEs23(xuu400002, xuu30002) 25.22/9.07 new_esEs7(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.22/9.07 new_ltEs24(xuu592, xuu602, ty_Ordering) -> new_ltEs16(xuu592, xuu602) 25.22/9.07 new_esEs28(xuu400001, xuu30001, ty_Float) -> new_esEs20(xuu400001, xuu30001) 25.22/9.07 new_compare112(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, False, xuu177, eef, eeg, eeh) -> new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, xuu177, eef, eeg, eeh) 25.22/9.07 new_ltEs8(Right(xuu590), Right(xuu600), bee, ty_Bool) -> new_ltEs12(xuu590, xuu600) 25.22/9.07 new_esEs37(xuu400000, xuu30000, app(ty_[], ffh)) -> new_esEs24(xuu400000, xuu30000, ffh) 25.22/9.07 new_compare29(Nothing, Nothing, bh) -> EQ 25.22/9.07 new_ltEs23(xuu100, xuu103, app(app(ty_Either, gf), gg)) -> new_ltEs8(xuu100, xuu103, gf, gg) 25.22/9.07 new_ltEs19(xuu591, xuu601, ty_Int) -> new_ltEs7(xuu591, xuu601) 25.22/9.07 new_lt22(xuu590, xuu600, app(ty_Ratio, fhc)) -> new_lt11(xuu590, xuu600, fhc) 25.22/9.07 new_ltEs19(xuu591, xuu601, ty_Char) -> new_ltEs10(xuu591, xuu601) 25.22/9.07 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(ty_Either, ebf), ebg), ebb) -> new_esEs17(xuu400000, xuu30000, ebf, ebg) 25.22/9.07 new_lt6(xuu590, xuu600, ty_Double) -> new_lt15(xuu590, xuu600) 25.22/9.07 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.22/9.07 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.22/9.07 new_lt21(xuu99, xuu102, ty_Double) -> new_lt15(xuu99, xuu102) 25.22/9.07 new_esEs26(xuu590, xuu600, app(app(ty_Either, bhe), bhf)) -> new_esEs17(xuu590, xuu600, bhe, bhf) 25.22/9.07 new_ltEs20(xuu112, xuu114, ty_Int) -> new_ltEs7(xuu112, xuu114) 25.22/9.07 new_ltEs22(xuu73, xuu74, app(ty_Maybe, ccb)) -> new_ltEs13(xuu73, xuu74, ccb) 25.22/9.07 new_esEs5(xuu40001, xuu3001, ty_Int) -> new_esEs16(xuu40001, xuu3001) 25.22/9.07 new_lt6(xuu590, xuu600, app(ty_[], bgh)) -> new_lt7(xuu590, xuu600, bgh) 25.22/9.07 new_ltEs21(xuu66, xuu67, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs6(xuu66, xuu67, cfc, cfd, cfe) 25.22/9.07 new_lt20(xuu98, xuu101, app(ty_Ratio, fda)) -> new_lt11(xuu98, xuu101, fda) 25.22/9.07 new_ltEs8(Left(xuu590), Left(xuu600), app(app(app(ty_@3, bde), bdf), bdg), bdd) -> new_ltEs6(xuu590, xuu600, bde, bdf, bdg) 25.22/9.07 new_compare0(xuu4000, xuu300, ty_Bool) -> new_compare28(xuu4000, xuu300) 25.22/9.07 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.22/9.07 new_primMulNat0(Succ(xuu300000), Succ(xuu4000100)) -> new_primPlusNat0(new_primMulNat0(xuu300000, Succ(xuu4000100)), xuu4000100) 25.22/9.07 new_compare112(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, xuu177, eef, eeg, eeh) -> new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, eef, eeg, eeh) 25.22/9.07 new_esEs38(xuu591, xuu601, ty_Double) -> new_esEs25(xuu591, xuu601) 25.22/9.07 new_esEs6(xuu40000, xuu3000, app(ty_Maybe, cgc)) -> new_esEs12(xuu40000, xuu3000, cgc) 25.22/9.07 new_esEs19(EQ, GT) -> False 25.22/9.07 new_esEs19(GT, EQ) -> False 25.22/9.07 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.22/9.07 new_esEs19(GT, GT) -> True 25.22/9.07 new_esEs11(xuu40000, xuu3000, app(app(ty_@2, dcb), dcc)) -> new_esEs13(xuu40000, xuu3000, dcb, dcc) 25.22/9.07 new_lt20(xuu98, xuu101, app(app(ty_@2, ee), ef)) -> new_lt14(xuu98, xuu101, ee, ef) 25.22/9.07 new_esEs8(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.22/9.07 new_esEs39(xuu590, xuu600, app(ty_Ratio, fhc)) -> new_esEs21(xuu590, xuu600, fhc) 25.22/9.07 new_compare6(Char(xuu40000), Char(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) 25.22/9.07 new_ltEs20(xuu112, xuu114, ty_Char) -> new_ltEs10(xuu112, xuu114) 25.22/9.07 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, app(app(ty_Either, eda), edb)) -> new_esEs17(xuu400000, xuu30000, eda, edb) 25.22/9.07 new_lt10(xuu98, xuu101, eb, ec) -> new_esEs19(new_compare15(xuu98, xuu101, eb, ec), LT) 25.22/9.07 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.22/9.07 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.22/9.07 new_compare8(@0, @0) -> EQ 25.22/9.07 new_esEs35(xuu98, xuu101, app(app(ty_@2, ee), ef)) -> new_esEs13(xuu98, xuu101, ee, ef) 25.22/9.07 new_ltEs24(xuu592, xuu602, app(ty_Maybe, bch)) -> new_ltEs13(xuu592, xuu602, bch) 25.22/9.07 new_lt21(xuu99, xuu102, app(ty_Ratio, fdb)) -> new_lt11(xuu99, xuu102, fdb) 25.22/9.07 new_esEs8(xuu40000, xuu3000, app(app(app(ty_@3, ege), egf), egg)) -> new_esEs14(xuu40000, xuu3000, ege, egf, egg) 25.22/9.07 new_compare18([], [], ba) -> EQ 25.22/9.07 new_primEqNat0(Zero, Zero) -> True 25.22/9.07 new_lt19(xuu111, xuu113, ty_Double) -> new_lt15(xuu111, xuu113) 25.22/9.07 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, app(app(app(ty_@3, ecf), ecg), ech)) -> new_esEs14(xuu400000, xuu30000, ecf, ecg, ech) 25.22/9.07 new_esEs9(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.22/9.07 new_esEs9(xuu40000, xuu3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs14(xuu40000, xuu3000, chh, daa, dab) 25.22/9.07 new_lt21(xuu99, xuu102, app(ty_[], eh)) -> new_lt7(xuu99, xuu102, eh) 25.22/9.07 new_esEs34(xuu99, xuu102, app(app(ty_@2, fh), ga)) -> new_esEs13(xuu99, xuu102, fh, ga) 25.22/9.07 new_esEs6(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.22/9.07 new_esEs4(xuu40002, xuu3002, app(ty_Ratio, fcf)) -> new_esEs21(xuu40002, xuu3002, fcf) 25.22/9.07 new_ltEs23(xuu100, xuu103, app(ty_Maybe, gh)) -> new_ltEs13(xuu100, xuu103, gh) 25.22/9.07 new_asAs(False, xuu132) -> False 25.22/9.07 new_ltEs21(xuu66, xuu67, ty_Char) -> new_ltEs10(xuu66, xuu67) 25.22/9.07 new_compare29(Just(xuu40000), Just(xuu3000), bh) -> new_compare210(xuu40000, xuu3000, new_esEs9(xuu40000, xuu3000, bh), bh) 25.22/9.07 new_ltEs22(xuu73, xuu74, ty_Bool) -> new_ltEs12(xuu73, xuu74) 25.22/9.07 new_esEs39(xuu590, xuu600, ty_Double) -> new_esEs25(xuu590, xuu600) 25.22/9.07 new_ltEs22(xuu73, xuu74, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs6(xuu73, xuu74, cbe, cbf, cbg) 25.22/9.07 new_esEs36(xuu400001, xuu30001, app(ty_[], fef)) -> new_esEs24(xuu400001, xuu30001, fef) 25.22/9.07 new_compare11(xuu185, xuu186, xuu187, xuu188, False, xuu190, eab, eac) -> new_compare12(xuu185, xuu186, xuu187, xuu188, xuu190, eab, eac) 25.22/9.07 new_lt20(xuu98, xuu101, ty_Double) -> new_lt15(xuu98, xuu101) 25.22/9.07 new_esEs7(xuu40000, xuu3000, app(ty_Maybe, ega)) -> new_esEs12(xuu40000, xuu3000, ega) 25.22/9.07 new_lt19(xuu111, xuu113, app(app(ty_@2, ceg), ceh)) -> new_lt14(xuu111, xuu113, ceg, ceh) 25.22/9.07 new_compare16(GT, EQ) -> GT 25.22/9.07 new_esEs4(xuu40002, xuu3002, ty_Double) -> new_esEs25(xuu40002, xuu3002) 25.22/9.07 new_ltEs24(xuu592, xuu602, app(app(ty_Either, bcf), bcg)) -> new_ltEs8(xuu592, xuu602, bcf, bcg) 25.22/9.07 new_esEs26(xuu590, xuu600, ty_Float) -> new_esEs20(xuu590, xuu600) 25.22/9.07 25.22/9.07 The set Q consists of the following terms: 25.22/9.07 25.22/9.07 new_ltEs24(x0, x1, app(ty_[], x2)) 25.22/9.07 new_lt20(x0, x1, ty_Ordering) 25.22/9.07 new_esEs33(x0, x1, app(ty_Maybe, x2)) 25.22/9.07 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.07 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.07 new_esEs9(x0, x1, ty_Integer) 25.22/9.07 new_ltEs21(x0, x1, ty_Ordering) 25.22/9.07 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.07 new_compare0(x0, x1, ty_Integer) 25.22/9.07 new_asAs(True, x0) 25.22/9.07 new_ltEs8(Right(x0), Left(x1), x2, x3) 25.22/9.07 new_ltEs8(Left(x0), Right(x1), x2, x3) 25.22/9.07 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 25.22/9.07 new_esEs26(x0, x1, app(ty_[], x2)) 25.22/9.07 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.07 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 25.22/9.07 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.07 new_esEs28(x0, x1, ty_Bool) 25.22/9.07 new_esEs4(x0, x1, ty_Ordering) 25.22/9.07 new_primPlusNat1(Zero, Zero) 25.22/9.07 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.07 new_ltEs21(x0, x1, ty_Double) 25.22/9.07 new_esEs29(x0, x1, ty_@0) 25.22/9.07 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.07 new_esEs16(x0, x1) 25.22/9.07 new_ltEs4(x0, x1, ty_@0) 25.22/9.07 new_esEs28(x0, x1, ty_@0) 25.22/9.07 new_esEs28(x0, x1, app(ty_[], x2)) 25.22/9.07 new_compare10(x0, x1, False, x2, x3) 25.22/9.07 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.07 new_lt6(x0, x1, app(ty_Maybe, x2)) 25.22/9.07 new_esEs9(x0, x1, ty_Bool) 25.22/9.07 new_esEs36(x0, x1, ty_Float) 25.22/9.07 new_primEqInt(Pos(Zero), Pos(Zero)) 25.22/9.07 new_primCompAux00(x0, x1, EQ, ty_Float) 25.22/9.07 new_compare28(True, True) 25.22/9.07 new_esEs28(x0, x1, ty_Integer) 25.22/9.07 new_lt18(x0, x1) 25.22/9.07 new_compare29(Just(x0), Nothing, x1) 25.22/9.08 new_ltEs23(x0, x1, ty_Bool) 25.22/9.08 new_lt20(x0, x1, ty_Char) 25.22/9.08 new_compare0(x0, x1, ty_Bool) 25.22/9.08 new_lt20(x0, x1, ty_Double) 25.22/9.08 new_lt21(x0, x1, ty_Int) 25.22/9.08 new_primCompAux00(x0, x1, EQ, ty_Integer) 25.22/9.08 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs37(x0, x1, ty_Bool) 25.22/9.08 new_primEqInt(Neg(Zero), Neg(Zero)) 25.22/9.08 new_lt14(x0, x1, x2, x3) 25.22/9.08 new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) 25.22/9.08 new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) 25.22/9.08 new_ltEs7(x0, x1) 25.22/9.08 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_esEs4(x0, x1, ty_Double) 25.22/9.08 new_ltEs16(GT, EQ) 25.22/9.08 new_ltEs16(EQ, GT) 25.22/9.08 new_esEs9(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_esEs4(x0, x1, ty_Char) 25.22/9.08 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_esEs27(x0, x1, ty_Bool) 25.22/9.08 new_esEs29(x0, x1, ty_Int) 25.22/9.08 new_esEs37(x0, x1, ty_@0) 25.22/9.08 new_ltEs20(x0, x1, app(ty_[], x2)) 25.22/9.08 new_ltEs16(LT, LT) 25.22/9.08 new_lt21(x0, x1, ty_@0) 25.22/9.08 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_ltEs22(x0, x1, ty_Int) 25.22/9.08 new_compare16(LT, LT) 25.22/9.08 new_ltEs4(x0, x1, ty_Int) 25.22/9.08 new_esEs6(x0, x1, ty_Double) 25.22/9.08 new_esEs35(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_lt23(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_compare0(x0, x1, ty_Float) 25.22/9.08 new_esEs32(x0, x1, ty_Int) 25.22/9.08 new_lt19(x0, x1, ty_Char) 25.22/9.08 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs35(x0, x1, ty_Char) 25.22/9.08 new_compare18([], :(x0, x1), x2) 25.22/9.08 new_esEs6(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_esEs11(x0, x1, app(ty_[], x2)) 25.22/9.08 new_esEs31(x0, x1, ty_Int) 25.22/9.08 new_esEs33(x0, x1, ty_Integer) 25.22/9.08 new_primEqInt(Pos(Zero), Neg(Zero)) 25.22/9.08 new_primEqInt(Neg(Zero), Pos(Zero)) 25.22/9.08 new_ltEs23(x0, x1, ty_@0) 25.22/9.08 new_lt22(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_ltEs21(x0, x1, ty_Char) 25.22/9.08 new_esEs5(x0, x1, ty_Double) 25.22/9.08 new_ltEs24(x0, x1, ty_Int) 25.22/9.08 new_primCompAux00(x0, x1, EQ, ty_Bool) 25.22/9.08 new_esEs25(Double(x0, x1), Double(x2, x3)) 25.22/9.08 new_esEs5(x0, x1, ty_Char) 25.22/9.08 new_esEs37(x0, x1, ty_Float) 25.22/9.08 new_esEs15(False, False) 25.22/9.08 new_primMulInt(Neg(x0), Neg(x1)) 25.22/9.08 new_ltEs23(x0, x1, ty_Int) 25.22/9.08 new_ltEs24(x0, x1, ty_@0) 25.22/9.08 new_esEs17(Right(x0), Right(x1), x2, ty_Int) 25.22/9.08 new_esEs27(x0, x1, ty_Integer) 25.22/9.08 new_esEs8(x0, x1, app(ty_[], x2)) 25.22/9.08 new_compare0(x0, x1, ty_@0) 25.22/9.08 new_compare12(x0, x1, x2, x3, True, x4, x5) 25.22/9.08 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs11(x0, x1, ty_Char) 25.22/9.08 new_esEs9(x0, x1, ty_Int) 25.22/9.08 new_compare0(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_lt19(x0, x1, ty_Ordering) 25.22/9.08 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.22/9.08 new_ltEs4(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 25.22/9.08 new_esEs6(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_ltEs19(x0, x1, ty_Double) 25.22/9.08 new_esEs28(x0, x1, ty_Int) 25.22/9.08 new_lt19(x0, x1, ty_Double) 25.22/9.08 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_esEs26(x0, x1, ty_Double) 25.22/9.08 new_esEs4(x0, x1, app(ty_[], x2)) 25.22/9.08 new_esEs38(x0, x1, ty_Bool) 25.22/9.08 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_primCompAux00(x0, x1, EQ, ty_@0) 25.22/9.08 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.22/9.08 new_lt8(x0, x1, x2, x3, x4) 25.22/9.08 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_ltEs16(LT, EQ) 25.22/9.08 new_ltEs16(EQ, LT) 25.22/9.08 new_lt22(x0, x1, ty_Float) 25.22/9.08 new_compare110(x0, x1, False, x2) 25.22/9.08 new_compare210(x0, x1, True, x2) 25.22/9.08 new_primCmpNat0(Succ(x0), Succ(x1)) 25.22/9.08 new_esEs7(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.22/9.08 new_esEs28(x0, x1, ty_Float) 25.22/9.08 new_esEs27(x0, x1, app(ty_[], x2)) 25.22/9.08 new_compare18(:(x0, x1), [], x2) 25.22/9.08 new_esEs6(x0, x1, ty_Ordering) 25.22/9.08 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_ltEs19(x0, x1, app(ty_[], x2)) 25.22/9.08 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_ltEs20(x0, x1, ty_Int) 25.22/9.08 new_esEs29(x0, x1, app(ty_[], x2)) 25.22/9.08 new_compare15(Left(x0), Left(x1), x2, x3) 25.22/9.08 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_esEs30(x0, x1, app(ty_[], x2)) 25.22/9.08 new_esEs36(x0, x1, ty_Int) 25.22/9.08 new_esEs36(x0, x1, ty_Integer) 25.22/9.08 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_esEs8(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_lt6(x0, x1, ty_@0) 25.22/9.08 new_esEs10(x0, x1, app(ty_[], x2)) 25.22/9.08 new_esEs33(x0, x1, ty_Bool) 25.22/9.08 new_esEs19(GT, GT) 25.22/9.08 new_lt6(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_ltEs15(x0, x1) 25.22/9.08 new_primPlusNat1(Succ(x0), Succ(x1)) 25.22/9.08 new_lt13(x0, x1, x2) 25.22/9.08 new_ltEs23(x0, x1, ty_Integer) 25.22/9.08 new_compare16(EQ, LT) 25.22/9.08 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_compare16(LT, EQ) 25.22/9.08 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.22/9.08 new_esEs39(x0, x1, ty_@0) 25.22/9.08 new_esEs38(x0, x1, ty_Int) 25.22/9.08 new_esEs27(x0, x1, ty_@0) 25.22/9.08 new_esEs33(x0, x1, ty_Float) 25.22/9.08 new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.22/9.08 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 25.22/9.08 new_ltEs11(x0, x1, x2) 25.22/9.08 new_esEs34(x0, x1, ty_Double) 25.22/9.08 new_esEs35(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.22/9.08 new_compare15(Left(x0), Right(x1), x2, x3) 25.22/9.08 new_compare15(Right(x0), Left(x1), x2, x3) 25.22/9.08 new_esEs17(Left(x0), Left(x1), ty_Double, x2) 25.22/9.08 new_esEs9(x0, x1, ty_Float) 25.22/9.08 new_esEs34(x0, x1, app(ty_[], x2)) 25.22/9.08 new_ltEs13(Nothing, Nothing, x0) 25.22/9.08 new_esEs20(Float(x0, x1), Float(x2, x3)) 25.22/9.08 new_esEs31(x0, x1, ty_Integer) 25.22/9.08 new_primMulNat0(Succ(x0), Succ(x1)) 25.22/9.08 new_esEs35(x0, x1, ty_Ordering) 25.22/9.08 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.22/9.08 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.22/9.08 new_compare7(@2(x0, x1), @2(x2, x3), x4, x5) 25.22/9.08 new_esEs38(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_esEs34(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 25.22/9.08 new_esEs39(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 25.22/9.08 new_primCompAux00(x0, x1, LT, x2) 25.22/9.08 new_esEs11(x0, x1, ty_Ordering) 25.22/9.08 new_esEs12(Nothing, Just(x0), x1) 25.22/9.08 new_compare16(EQ, EQ) 25.22/9.08 new_lt6(x0, x1, ty_Double) 25.22/9.08 new_esEs7(x0, x1, ty_Double) 25.22/9.08 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.22/9.08 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.22/9.08 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_esEs33(x0, x1, ty_Int) 25.22/9.08 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.22/9.08 new_compare24(x0, x1, x2, x3, False, x4, x5) 25.22/9.08 new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.22/9.08 new_esEs36(x0, x1, ty_Bool) 25.22/9.08 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_esEs8(x0, x1, ty_Integer) 25.22/9.08 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_esEs12(Just(x0), Just(x1), ty_@0) 25.22/9.08 new_esEs38(x0, x1, app(ty_[], x2)) 25.22/9.08 new_ltEs13(Just(x0), Just(x1), ty_Double) 25.22/9.08 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_ltEs20(x0, x1, ty_Bool) 25.22/9.08 new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.22/9.08 new_ltEs19(x0, x1, ty_@0) 25.22/9.08 new_esEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.22/9.08 new_compare9(Integer(x0), Integer(x1)) 25.22/9.08 new_primCmpNat0(Zero, Succ(x0)) 25.22/9.08 new_ltEs21(x0, x1, ty_Float) 25.22/9.08 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_compare17(x0, x1) 25.22/9.08 new_esEs34(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_ltEs19(x0, x1, ty_Bool) 25.22/9.08 new_esEs6(x0, x1, ty_Integer) 25.22/9.08 new_compare28(False, False) 25.22/9.08 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.22/9.08 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.22/9.08 new_sr(x0, x1) 25.22/9.08 new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs39(x0, x1, ty_Integer) 25.22/9.08 new_esEs8(x0, x1, ty_Bool) 25.22/9.08 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_ltEs5(x0, x1, x2) 25.22/9.08 new_esEs36(x0, x1, ty_Ordering) 25.22/9.08 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs17(Left(x0), Left(x1), ty_Float, x2) 25.22/9.08 new_esEs5(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_lt23(x0, x1, ty_Integer) 25.22/9.08 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_lt22(x0, x1, ty_@0) 25.22/9.08 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 25.22/9.08 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 25.22/9.08 new_esEs10(x0, x1, ty_Int) 25.22/9.08 new_lt23(x0, x1, ty_@0) 25.22/9.08 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.22/9.08 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_lt9(x0, x1) 25.22/9.08 new_compare16(GT, LT) 25.22/9.08 new_compare16(LT, GT) 25.22/9.08 new_esEs32(x0, x1, ty_Integer) 25.22/9.08 new_esEs33(x0, x1, ty_Ordering) 25.22/9.08 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs35(x0, x1, app(ty_[], x2)) 25.22/9.08 new_lt22(x0, x1, ty_Integer) 25.22/9.08 new_not(True) 25.22/9.08 new_esEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.22/9.08 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs27(x0, x1, ty_Ordering) 25.22/9.08 new_lt22(x0, x1, ty_Int) 25.22/9.08 new_ltEs12(True, True) 25.22/9.08 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_ltEs22(x0, x1, app(ty_[], x2)) 25.22/9.08 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_lt10(x0, x1, x2, x3) 25.22/9.08 new_lt22(x0, x1, ty_Char) 25.22/9.08 new_esEs6(x0, x1, ty_Bool) 25.22/9.08 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.22/9.08 new_lt22(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_esEs7(x0, x1, ty_Ordering) 25.22/9.08 new_lt6(x0, x1, app(ty_[], x2)) 25.22/9.08 new_compare0(x0, x1, ty_Double) 25.22/9.08 new_esEs29(x0, x1, ty_Float) 25.22/9.08 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.22/9.08 new_esEs24([], [], x0) 25.22/9.08 new_esEs27(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_ltEs4(x0, x1, ty_Float) 25.22/9.08 new_compare210(x0, x1, False, x2) 25.22/9.08 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 25.22/9.08 new_esEs8(x0, x1, ty_Float) 25.22/9.08 new_lt6(x0, x1, ty_Ordering) 25.22/9.08 new_esEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.22/9.08 new_lt22(x0, x1, ty_Bool) 25.22/9.08 new_compare26(x0, x1, False, x2, x3) 25.22/9.08 new_compare0(x0, x1, ty_Int) 25.22/9.08 new_esEs8(x0, x1, ty_@0) 25.22/9.08 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_pePe(True, x0) 25.22/9.08 new_esEs23(Integer(x0), Integer(x1)) 25.22/9.08 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.22/9.08 new_primCompAux00(x0, x1, GT, x2) 25.22/9.08 new_ltEs20(x0, x1, ty_Double) 25.22/9.08 new_esEs10(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_esEs34(x0, x1, ty_Int) 25.22/9.08 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_primMulInt(Pos(x0), Pos(x1)) 25.22/9.08 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.22/9.08 new_compare11(x0, x1, x2, x3, False, x4, x5, x6) 25.22/9.08 new_esEs19(LT, GT) 25.22/9.08 new_esEs19(GT, LT) 25.22/9.08 new_esEs8(x0, x1, ty_Int) 25.22/9.08 new_compare10(x0, x1, True, x2, x3) 25.22/9.08 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_esEs24(:(x0, x1), [], x2) 25.22/9.08 new_esEs30(x0, x1, ty_Ordering) 25.22/9.08 new_esEs6(x0, x1, ty_Char) 25.22/9.08 new_compare24(x0, x1, x2, x3, True, x4, x5) 25.22/9.08 new_lt23(x0, x1, ty_Float) 25.22/9.08 new_sr0(Integer(x0), Integer(x1)) 25.22/9.08 new_esEs37(x0, x1, ty_Char) 25.22/9.08 new_esEs37(x0, x1, ty_Int) 25.22/9.08 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.22/9.08 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.22/9.08 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_ltEs21(x0, x1, ty_Bool) 25.22/9.08 new_lt19(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_compare30(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.22/9.08 new_lt19(x0, x1, ty_Float) 25.22/9.08 new_esEs21(:%(x0, x1), :%(x2, x3), x4) 25.22/9.08 new_esEs26(x0, x1, ty_Float) 25.22/9.08 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_esEs34(x0, x1, ty_Char) 25.22/9.08 new_ltEs21(x0, x1, ty_Integer) 25.22/9.08 new_compare30(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.22/9.08 new_compare30(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.22/9.08 new_esEs10(x0, x1, ty_Bool) 25.22/9.08 new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.22/9.08 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_ltEs19(x0, x1, ty_Float) 25.22/9.08 new_esEs8(x0, x1, ty_Char) 25.22/9.08 new_lt11(x0, x1, x2) 25.22/9.08 new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.22/9.08 new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs4(x0, x1, ty_@0) 25.22/9.08 new_esEs4(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 25.22/9.08 new_ltEs18(x0, x1) 25.22/9.08 new_esEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs9(x0, x1, ty_Double) 25.22/9.08 new_esEs9(x0, x1, ty_Ordering) 25.22/9.08 new_lt23(x0, x1, ty_Int) 25.22/9.08 new_esEs34(x0, x1, ty_Float) 25.22/9.08 new_esEs10(x0, x1, ty_Char) 25.22/9.08 new_esEs26(x0, x1, ty_Int) 25.22/9.08 new_primEqNat0(Succ(x0), Succ(x1)) 25.22/9.08 new_compare14(x0, x1, True, x2, x3) 25.22/9.08 new_asAs(False, x0) 25.22/9.08 new_esEs15(False, True) 25.22/9.08 new_esEs15(True, False) 25.22/9.08 new_lt19(x0, x1, ty_Int) 25.22/9.08 new_ltEs19(x0, x1, ty_Int) 25.22/9.08 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 25.22/9.08 new_esEs6(x0, x1, ty_Int) 25.22/9.08 new_esEs39(x0, x1, ty_Bool) 25.22/9.08 new_esEs10(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_esEs10(x0, x1, ty_Integer) 25.22/9.08 new_primEqNat0(Zero, Zero) 25.22/9.08 new_esEs39(x0, x1, ty_Float) 25.22/9.08 new_ltEs9(x0, x1) 25.22/9.08 new_esEs24(:(x0, x1), :(x2, x3), x4) 25.22/9.08 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.22/9.08 new_not(False) 25.22/9.08 new_esEs17(Left(x0), Left(x1), ty_Integer, x2) 25.22/9.08 new_esEs17(Left(x0), Left(x1), ty_Int, x2) 25.22/9.08 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_ltEs19(x0, x1, ty_Char) 25.22/9.08 new_ltEs22(x0, x1, ty_Ordering) 25.22/9.08 new_compare26(x0, x1, True, x2, x3) 25.22/9.08 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_ltEs4(x0, x1, ty_Bool) 25.22/9.08 new_esEs29(x0, x1, ty_Integer) 25.22/9.08 new_esEs33(x0, x1, ty_Double) 25.22/9.08 new_esEs26(x0, x1, ty_Char) 25.22/9.08 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_primPlusNat0(x0, x1) 25.22/9.08 new_esEs6(x0, x1, ty_Float) 25.22/9.08 new_esEs29(x0, x1, ty_Bool) 25.22/9.08 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_ltEs4(x0, x1, app(ty_[], x2)) 25.22/9.08 new_lt23(x0, x1, ty_Char) 25.22/9.08 new_esEs24([], :(x0, x1), x2) 25.22/9.08 new_ltEs19(x0, x1, ty_Integer) 25.22/9.08 new_esEs17(Left(x0), Left(x1), ty_Char, x2) 25.22/9.08 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 25.22/9.08 new_esEs39(x0, x1, ty_Int) 25.22/9.08 new_esEs5(x0, x1, ty_Ordering) 25.22/9.08 new_esEs34(x0, x1, ty_Bool) 25.22/9.08 new_esEs17(Left(x0), Left(x1), ty_Bool, x2) 25.22/9.08 new_esEs27(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_esEs36(x0, x1, ty_Double) 25.22/9.08 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_ltEs4(x0, x1, ty_Integer) 25.22/9.08 new_lt4(x0, x1) 25.22/9.08 new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) 25.22/9.08 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs39(x0, x1, ty_Char) 25.22/9.08 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 25.22/9.08 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_lt23(x0, x1, ty_Bool) 25.22/9.08 new_ltEs24(x0, x1, ty_Ordering) 25.22/9.08 new_esEs37(x0, x1, ty_Integer) 25.22/9.08 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs28(x0, x1, ty_Double) 25.22/9.08 new_lt16(x0, x1) 25.22/9.08 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs38(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_ltEs24(x0, x1, ty_Double) 25.22/9.08 new_compare12(x0, x1, x2, x3, False, x4, x5) 25.22/9.08 new_esEs7(x0, x1, ty_Integer) 25.22/9.08 new_lt19(x0, x1, ty_Bool) 25.22/9.08 new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) 25.22/9.08 new_esEs34(x0, x1, ty_Integer) 25.22/9.08 new_esEs4(x0, x1, ty_Int) 25.22/9.08 new_esEs35(x0, x1, ty_@0) 25.22/9.08 new_lt21(x0, x1, ty_Char) 25.22/9.08 new_ltEs13(Just(x0), Just(x1), ty_Float) 25.22/9.08 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.22/9.08 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_esEs26(x0, x1, ty_Bool) 25.22/9.08 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.22/9.08 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.22/9.08 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 25.22/9.08 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.22/9.08 new_esEs19(EQ, GT) 25.22/9.08 new_esEs19(GT, EQ) 25.22/9.08 new_esEs11(x0, x1, ty_Integer) 25.22/9.08 new_primEqNat0(Zero, Succ(x0)) 25.22/9.08 new_esEs10(x0, x1, ty_Float) 25.22/9.08 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 25.22/9.08 new_esEs38(x0, x1, ty_Ordering) 25.22/9.08 new_esEs39(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_compare11(x0, x1, x2, x3, True, x4, x5, x6) 25.22/9.08 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 25.22/9.08 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.22/9.08 new_ltEs4(x0, x1, ty_Char) 25.22/9.08 new_esEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs26(x0, x1, ty_Integer) 25.22/9.08 new_lt19(x0, x1, ty_Integer) 25.22/9.08 new_compare0(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_compare16(GT, GT) 25.22/9.08 new_esEs12(Just(x0), Nothing, x1) 25.22/9.08 new_lt20(x0, x1, ty_Int) 25.22/9.08 new_pePe(False, x0) 25.22/9.08 new_primCompAux1(x0, x1, x2, x3, x4) 25.22/9.08 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_lt21(x0, x1, ty_Ordering) 25.22/9.08 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_lt21(x0, x1, ty_Double) 25.22/9.08 new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 25.22/9.08 new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.22/9.08 new_lt19(x0, x1, ty_@0) 25.22/9.08 new_esEs26(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_esEs12(Just(x0), Just(x1), app(ty_[], x2)) 25.22/9.08 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs29(x0, x1, ty_Char) 25.22/9.08 new_esEs26(x0, x1, ty_@0) 25.22/9.08 new_esEs35(x0, x1, ty_Bool) 25.22/9.08 new_esEs34(x0, x1, ty_@0) 25.22/9.08 new_compare0(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs38(x0, x1, ty_Double) 25.22/9.08 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 25.22/9.08 new_primPlusNat1(Zero, Succ(x0)) 25.22/9.08 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_esEs11(x0, x1, ty_@0) 25.22/9.08 new_esEs5(x0, x1, ty_Int) 25.22/9.08 new_lt19(x0, x1, app(ty_[], x2)) 25.22/9.08 new_esEs39(x0, x1, ty_Ordering) 25.22/9.08 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs11(x0, x1, ty_Bool) 25.22/9.08 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_esEs35(x0, x1, ty_Int) 25.22/9.08 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.22/9.08 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.22/9.08 new_esEs11(x0, x1, ty_Float) 25.22/9.08 new_ltEs24(x0, x1, ty_Char) 25.22/9.08 new_lt12(x0, x1) 25.22/9.08 new_esEs8(x0, x1, ty_Double) 25.22/9.08 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_primMulNat0(Succ(x0), Zero) 25.22/9.08 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.22/9.08 new_esEs36(x0, x1, app(ty_[], x2)) 25.22/9.08 new_esEs17(Right(x0), Right(x1), x2, ty_Char) 25.22/9.08 new_ltEs23(x0, x1, ty_Double) 25.22/9.08 new_ltEs21(x0, x1, ty_@0) 25.22/9.08 new_ltEs23(x0, x1, ty_Char) 25.22/9.08 new_esEs22(@0, @0) 25.22/9.08 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_compare8(@0, @0) 25.22/9.08 new_esEs17(Right(x0), Right(x1), x2, ty_Double) 25.22/9.08 new_compare0(x0, x1, app(ty_[], x2)) 25.22/9.08 new_ltEs21(x0, x1, ty_Int) 25.22/9.08 new_esEs37(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_compare14(x0, x1, False, x2, x3) 25.22/9.08 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs12(Just(x0), Just(x1), ty_Float) 25.22/9.08 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.22/9.08 new_ltEs13(Just(x0), Just(x1), ty_Bool) 25.22/9.08 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_ltEs22(x0, x1, ty_Double) 25.22/9.08 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_ltEs22(x0, x1, ty_Char) 25.22/9.08 new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) 25.22/9.08 new_ltEs20(x0, x1, ty_Float) 25.22/9.08 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs37(x0, x1, app(ty_[], x2)) 25.22/9.08 new_compare30(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.22/9.08 new_ltEs20(x0, x1, ty_Ordering) 25.22/9.08 new_ltEs13(Just(x0), Nothing, x1) 25.22/9.08 new_compare18([], [], x0) 25.22/9.08 new_esEs10(x0, x1, ty_@0) 25.22/9.08 new_esEs4(x0, x1, ty_Integer) 25.22/9.08 new_esEs33(x0, x1, ty_Char) 25.22/9.08 new_esEs12(Just(x0), Just(x1), ty_Ordering) 25.22/9.08 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 25.22/9.08 new_compare29(Nothing, Just(x0), x1) 25.22/9.08 new_esEs4(x0, x1, ty_Bool) 25.22/9.08 new_compare0(x0, x1, ty_Char) 25.22/9.08 new_ltEs16(GT, GT) 25.22/9.08 new_lt20(x0, x1, ty_Bool) 25.22/9.08 new_lt23(x0, x1, ty_Double) 25.22/9.08 new_esEs28(x0, x1, ty_Ordering) 25.22/9.08 new_primCmpNat0(Succ(x0), Zero) 25.22/9.08 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 25.22/9.08 new_esEs29(x0, x1, ty_Double) 25.22/9.08 new_lt23(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_esEs4(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_esEs30(x0, x1, ty_Double) 25.22/9.08 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 25.22/9.08 new_esEs9(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_esEs9(x0, x1, ty_Char) 25.22/9.08 new_esEs17(Left(x0), Left(x1), ty_@0, x2) 25.22/9.08 new_esEs38(x0, x1, ty_Char) 25.22/9.08 new_ltEs4(x0, x1, ty_Double) 25.22/9.08 new_ltEs21(x0, x1, app(ty_[], x2)) 25.22/9.08 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.22/9.08 new_esEs6(x0, x1, ty_@0) 25.22/9.08 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs7(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_esEs33(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs35(x0, x1, ty_Integer) 25.22/9.08 new_esEs11(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_esEs39(x0, x1, ty_Double) 25.22/9.08 new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.22/9.08 new_esEs27(x0, x1, ty_Double) 25.22/9.08 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.22/9.08 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.22/9.08 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs19(LT, EQ) 25.22/9.08 new_esEs19(EQ, LT) 25.22/9.08 new_ltEs20(x0, x1, ty_Char) 25.22/9.08 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs15(True, True) 25.22/9.08 new_ltEs4(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_esEs36(x0, x1, ty_Char) 25.22/9.08 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs5(x0, x1, app(ty_[], x2)) 25.22/9.08 new_esEs19(LT, LT) 25.22/9.08 new_esEs7(x0, x1, ty_@0) 25.22/9.08 new_primCompAux00(x0, x1, EQ, ty_Ordering) 25.22/9.08 new_ltEs20(x0, x1, ty_Integer) 25.22/9.08 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.22/9.08 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_compare29(Just(x0), Just(x1), x2) 25.22/9.08 new_esEs6(x0, x1, app(ty_[], x2)) 25.22/9.08 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.22/9.08 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 25.22/9.08 new_esEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.22/9.08 new_lt22(x0, x1, app(ty_[], x2)) 25.22/9.08 new_ltEs23(x0, x1, ty_Ordering) 25.22/9.08 new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.22/9.08 new_esEs28(x0, x1, ty_Char) 25.22/9.08 new_esEs18(Char(x0), Char(x1)) 25.22/9.08 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_lt20(x0, x1, app(ty_[], x2)) 25.22/9.08 new_lt21(x0, x1, app(ty_[], x2)) 25.22/9.08 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_compare0(x0, x1, ty_Ordering) 25.22/9.08 new_esEs12(Just(x0), Just(x1), ty_Integer) 25.22/9.08 new_ltEs24(x0, x1, ty_Float) 25.22/9.08 new_ltEs16(EQ, EQ) 25.22/9.08 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_esEs36(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_esEs8(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_ltEs20(x0, x1, ty_@0) 25.22/9.08 new_compare15(Right(x0), Right(x1), x2, x3) 25.22/9.08 new_esEs38(x0, x1, ty_Float) 25.22/9.08 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.22/9.08 new_primMulNat0(Zero, Zero) 25.22/9.08 new_esEs30(x0, x1, ty_Bool) 25.22/9.08 new_lt20(x0, x1, ty_Float) 25.22/9.08 new_esEs5(x0, x1, ty_Float) 25.22/9.08 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.22/9.08 new_esEs30(x0, x1, ty_Integer) 25.22/9.08 new_esEs19(EQ, EQ) 25.22/9.08 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_lt15(x0, x1) 25.22/9.08 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_lt17(x0, x1) 25.22/9.08 new_esEs30(x0, x1, ty_@0) 25.22/9.08 new_ltEs22(x0, x1, ty_Float) 25.22/9.08 new_ltEs13(Just(x0), Just(x1), ty_Int) 25.22/9.08 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_primPlusNat1(Succ(x0), Zero) 25.22/9.08 new_esEs10(x0, x1, ty_Double) 25.22/9.08 new_esEs10(x0, x1, ty_Ordering) 25.22/9.08 new_compare29(Nothing, Nothing, x0) 25.22/9.08 new_esEs17(Left(x0), Right(x1), x2, x3) 25.22/9.08 new_esEs17(Right(x0), Left(x1), x2, x3) 25.22/9.08 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_esEs12(Just(x0), Just(x1), ty_Bool) 25.22/9.08 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 25.22/9.08 new_esEs39(x0, x1, app(ty_[], x2)) 25.22/9.08 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_fsEs(x0) 25.22/9.08 new_esEs12(Just(x0), Just(x1), ty_Char) 25.22/9.08 new_esEs26(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_ltEs13(Just(x0), Just(x1), ty_Char) 25.22/9.08 new_esEs11(x0, x1, ty_Double) 25.22/9.08 new_primMulNat0(Zero, Succ(x0)) 25.22/9.08 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.22/9.08 new_primCompAux00(x0, x1, EQ, ty_Int) 25.22/9.08 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_esEs37(x0, x1, ty_Double) 25.22/9.08 new_ltEs23(x0, x1, app(ty_[], x2)) 25.22/9.08 new_compare25(x0, x1, False, x2, x3) 25.22/9.08 new_esEs38(x0, x1, ty_Integer) 25.22/9.08 new_lt21(x0, x1, ty_Float) 25.22/9.08 new_lt5(x0, x1) 25.22/9.08 new_ltEs22(x0, x1, ty_Bool) 25.22/9.08 new_esEs17(Right(x0), Right(x1), x2, ty_Bool) 25.22/9.08 new_esEs17(Right(x0), Right(x1), x2, ty_Float) 25.22/9.08 new_esEs12(Just(x0), Just(x1), ty_Int) 25.22/9.08 new_ltEs12(False, True) 25.22/9.08 new_ltEs12(True, False) 25.22/9.08 new_primCompAux00(x0, x1, EQ, ty_Double) 25.22/9.08 new_compare28(False, True) 25.22/9.08 new_compare28(True, False) 25.22/9.08 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_ltEs22(x0, x1, ty_@0) 25.22/9.08 new_lt23(x0, x1, app(ty_[], x2)) 25.22/9.08 new_primCompAux00(x0, x1, EQ, ty_Char) 25.22/9.08 new_esEs12(Nothing, Nothing, x0) 25.22/9.08 new_lt20(x0, x1, ty_Integer) 25.22/9.08 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs4(x0, x1, ty_Float) 25.22/9.08 new_ltEs23(x0, x1, ty_Float) 25.22/9.08 new_esEs9(x0, x1, app(ty_[], x2)) 25.22/9.08 new_lt19(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_esEs17(Right(x0), Right(x1), x2, ty_@0) 25.22/9.08 new_ltEs16(LT, GT) 25.22/9.08 new_ltEs16(GT, LT) 25.22/9.08 new_ltEs10(x0, x1) 25.22/9.08 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs33(x0, x1, app(ty_[], x2)) 25.22/9.08 new_esEs35(x0, x1, ty_Float) 25.22/9.08 new_esEs11(x0, x1, ty_Int) 25.22/9.08 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.22/9.08 new_ltEs13(Nothing, Just(x0), x1) 25.22/9.08 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.22/9.08 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.22/9.08 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 25.22/9.08 new_esEs38(x0, x1, ty_@0) 25.22/9.08 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_lt6(x0, x1, ty_Integer) 25.22/9.08 new_ltEs13(Just(x0), Just(x1), ty_@0) 25.22/9.08 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 25.22/9.08 new_esEs27(x0, x1, ty_Char) 25.22/9.08 new_esEs12(Just(x0), Just(x1), ty_Double) 25.22/9.08 new_lt20(x0, x1, ty_@0) 25.22/9.08 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs5(x0, x1, ty_@0) 25.22/9.08 new_lt7(x0, x1, x2) 25.22/9.08 new_primMulInt(Pos(x0), Neg(x1)) 25.22/9.08 new_primMulInt(Neg(x0), Pos(x1)) 25.22/9.08 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs35(x0, x1, ty_Double) 25.22/9.08 new_esEs7(x0, x1, ty_Int) 25.22/9.08 new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_lt22(x0, x1, ty_Double) 25.22/9.08 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.22/9.08 new_esEs5(x0, x1, ty_Bool) 25.22/9.08 new_lt21(x0, x1, ty_Integer) 25.22/9.08 new_esEs30(x0, x1, ty_Float) 25.22/9.08 new_esEs27(x0, x1, ty_Int) 25.22/9.08 new_lt22(x0, x1, ty_Ordering) 25.22/9.08 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 25.22/9.08 new_ltEs19(x0, x1, ty_Ordering) 25.22/9.08 new_esEs30(x0, x1, ty_Char) 25.22/9.08 new_esEs5(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_esEs7(x0, x1, ty_Float) 25.22/9.08 new_ltEs13(Just(x0), Just(x1), ty_Integer) 25.22/9.08 new_esEs36(x0, x1, ty_@0) 25.22/9.08 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs34(x0, x1, ty_Ordering) 25.22/9.08 new_esEs11(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_ltEs24(x0, x1, ty_Bool) 25.22/9.08 new_esEs26(x0, x1, ty_Ordering) 25.22/9.08 new_esEs30(x0, x1, ty_Int) 25.22/9.08 new_lt23(x0, x1, ty_Ordering) 25.22/9.08 new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.22/9.08 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.22/9.08 new_esEs27(x0, x1, ty_Float) 25.22/9.08 new_esEs5(x0, x1, ty_Integer) 25.22/9.08 new_primEqNat0(Succ(x0), Zero) 25.22/9.08 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.22/9.08 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_esEs17(Right(x0), Right(x1), x2, ty_Integer) 25.22/9.08 new_ltEs22(x0, x1, ty_Integer) 25.22/9.08 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.22/9.08 new_esEs9(x0, x1, ty_@0) 25.22/9.08 new_ltEs12(False, False) 25.22/9.08 new_compare110(x0, x1, True, x2) 25.22/9.08 new_lt6(x0, x1, ty_Float) 25.22/9.08 new_esEs29(x0, x1, ty_Ordering) 25.22/9.08 new_compare25(x0, x1, True, x2, x3) 25.22/9.08 new_esEs36(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_ltEs17(x0, x1) 25.22/9.08 new_lt21(x0, x1, ty_Bool) 25.22/9.08 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.22/9.08 new_ltEs4(x0, x1, ty_Ordering) 25.22/9.08 new_lt6(x0, x1, ty_Bool) 25.22/9.08 new_esEs8(x0, x1, ty_Ordering) 25.22/9.08 new_compare0(x0, x1, app(app(ty_@2, x2), x3)) 25.22/9.08 new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.22/9.08 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.22/9.08 new_esEs37(x0, x1, ty_Ordering) 25.22/9.08 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 25.22/9.08 new_esEs7(x0, x1, ty_Bool) 25.22/9.08 new_compare6(Char(x0), Char(x1)) 25.22/9.08 new_compare16(EQ, GT) 25.22/9.08 new_compare16(GT, EQ) 25.22/9.08 new_esEs37(x0, x1, app(ty_Maybe, x2)) 25.22/9.08 new_compare19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.22/9.08 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 25.22/9.08 new_compare18(:(x0, x1), :(x2, x3), x4) 25.22/9.08 new_esEs33(x0, x1, ty_@0) 25.22/9.08 new_lt6(x0, x1, ty_Int) 25.22/9.08 new_ltEs24(x0, x1, ty_Integer) 25.22/9.08 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.22/9.08 new_lt6(x0, x1, ty_Char) 25.22/9.08 new_esEs7(x0, x1, ty_Char) 25.22/9.08 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.22/9.08 new_primCmpNat0(Zero, Zero) 25.22/9.08 new_esEs7(x0, x1, app(ty_[], x2)) 25.22/9.08 25.22/9.08 We have to consider all minimal (P,Q,R)-chains. 25.22/9.08 ---------------------------------------- 25.22/9.08 25.22/9.08 (24) DependencyGraphProof (EQUIVALENT) 25.22/9.08 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 1 SCC with 4 less nodes. 25.22/9.08 ---------------------------------------- 25.22/9.08 25.22/9.08 (25) 25.22/9.08 Obligation: 25.22/9.08 Q DP problem: 25.22/9.08 The TRS P consists of the following rules: 25.22/9.08 25.22/9.08 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, app(app(ty_Either, cag), cah)) -> new_ltEs1(xuu591, xuu601, cag, cah) 25.22/9.08 new_ltEs1(Right(xuu590), Right(xuu600), bee, app(ty_[], bef)) -> new_ltEs(xuu590, xuu600, bef) 25.22/9.08 new_ltEs(xuu59, xuu60, hc) -> new_compare(xuu59, xuu60, hc) 25.22/9.08 new_compare(:(xuu40000, xuu40001), :(xuu3000, xuu3001), ba) -> new_primCompAux(xuu40000, xuu3000, xuu40001, xuu3001, ba) 25.22/9.08 new_primCompAux(Right(xuu40000), Right(xuu3000), xuu4001, xuu301, app(app(ty_Either, bf), bg)) -> new_compare21(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bg), bf, bg) 25.22/9.08 new_compare21(xuu66, xuu67, False, cfa, app(app(ty_@2, cga), cgb)) -> new_ltEs3(xuu66, xuu67, cga, cgb) 25.22/9.08 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, app(app(ty_@2, cbb), cbc)) -> new_ltEs3(xuu591, xuu601, cbb, cbc) 25.22/9.08 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), app(app(ty_@2, bhh), caa), bha) -> new_lt3(xuu590, xuu600, bhh, caa) 25.22/9.08 new_lt3(xuu98, xuu101, ee, ef) -> new_compare5(xuu98, xuu101, ee, ef) 25.22/9.08 new_compare5(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), ca, cb) -> new_compare23(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs11(xuu40000, xuu3000, ca), new_esEs10(xuu40001, xuu3001, cb)), ca, cb) 25.22/9.08 new_compare23(xuu111, xuu112, xuu113, xuu114, False, app(ty_Maybe, cef), cdh) -> new_lt2(xuu111, xuu113, cef) 25.22/9.08 new_lt2(xuu98, xuu101, ed) -> new_compare4(xuu98, xuu101, ed) 25.22/9.08 new_compare4(Just(xuu40000), Just(xuu3000), bh) -> new_compare22(xuu40000, xuu3000, new_esEs9(xuu40000, xuu3000, bh), bh) 25.22/9.08 new_compare22(xuu73, xuu74, False, app(app(ty_@2, ccc), ccd)) -> new_ltEs3(xuu73, xuu74, ccc, ccd) 25.22/9.08 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, app(ty_Maybe, cba)) -> new_ltEs2(xuu591, xuu601, cba) 25.22/9.08 new_ltEs2(Just(xuu590), Just(xuu600), app(ty_[], bfg)) -> new_ltEs(xuu590, xuu600, bfg) 25.22/9.08 new_ltEs2(Just(xuu590), Just(xuu600), app(ty_Maybe, bge)) -> new_ltEs2(xuu590, xuu600, bge) 25.22/9.08 new_ltEs2(Just(xuu590), Just(xuu600), app(app(ty_@2, bgf), bgg)) -> new_ltEs3(xuu590, xuu600, bgf, bgg) 25.22/9.08 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), app(ty_[], bgh), bha) -> new_lt(xuu590, xuu600, bgh) 25.22/9.08 new_lt(xuu98, xuu101, h) -> new_compare(xuu98, xuu101, h) 25.22/9.08 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs0(xuu591, xuu601, cad, cae, caf) 25.22/9.08 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs0(xuu592, xuu602, bcc, bcd, bce) 25.22/9.08 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), app(app(app(ty_@3, hh), baa), bab), hf, hg) -> new_lt0(xuu590, xuu600, hh, baa, bab) 25.22/9.08 new_lt0(xuu98, xuu101, dg, dh, ea) -> new_compare1(xuu98, xuu101, dg, dh, ea) 25.22/9.08 new_compare1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bc, bd, be) -> new_compare2(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs6(xuu40000, xuu3000, bc), new_asAs(new_esEs5(xuu40001, xuu3001, bd), new_esEs4(xuu40002, xuu3002, be))), bc, bd, be) 25.22/9.08 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, app(ty_Maybe, ed), de, df) -> new_compare4(xuu98, xuu101, ed) 25.22/9.08 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, app(app(app(ty_@3, fa), fb), fc), df) -> new_lt0(xuu99, xuu102, fa, fb, fc) 25.22/9.08 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, app(app(ty_@2, ha), hb)) -> new_ltEs3(xuu100, xuu103, ha, hb) 25.22/9.08 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, app(ty_[], cac)) -> new_ltEs(xuu591, xuu601, cac) 25.22/9.08 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), app(app(app(ty_@3, bhb), bhc), bhd), bha) -> new_lt0(xuu590, xuu600, bhb, bhc, bhd) 25.22/9.08 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), app(ty_Maybe, bhg), bha) -> new_lt2(xuu590, xuu600, bhg) 25.22/9.08 new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), app(app(ty_Either, bhe), bhf), bha) -> new_lt1(xuu590, xuu600, bhe, bhf) 25.22/9.08 new_lt1(xuu98, xuu101, eb, ec) -> new_compare3(xuu98, xuu101, eb, ec) 25.22/9.08 new_compare3(Right(xuu40000), Right(xuu3000), bf, bg) -> new_compare21(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bg), bf, bg) 25.22/9.08 new_compare21(xuu66, xuu67, False, cfa, app(ty_[], cfb)) -> new_ltEs(xuu66, xuu67, cfb) 25.22/9.08 new_compare21(xuu66, xuu67, False, cfa, app(ty_Maybe, cfh)) -> new_ltEs2(xuu66, xuu67, cfh) 25.22/9.08 new_ltEs2(Just(xuu590), Just(xuu600), app(app(app(ty_@3, bfh), bga), bgb)) -> new_ltEs0(xuu590, xuu600, bfh, bga, bgb) 25.22/9.08 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), app(ty_Maybe, bae), hf, hg) -> new_lt2(xuu590, xuu600, bae) 25.22/9.08 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), app(ty_[], he), hf, hg) -> new_lt(xuu590, xuu600, he) 25.22/9.08 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, app(ty_[], bba), hg) -> new_lt(xuu591, xuu601, bba) 25.22/9.08 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, app(app(ty_Either, bcf), bcg)) -> new_ltEs1(xuu592, xuu602, bcf, bcg) 25.22/9.08 new_ltEs1(Left(xuu590), Left(xuu600), app(ty_Maybe, beb), bdd) -> new_ltEs2(xuu590, xuu600, beb) 25.22/9.08 new_ltEs2(Just(xuu590), Just(xuu600), app(app(ty_Either, bgc), bgd)) -> new_ltEs1(xuu590, xuu600, bgc, bgd) 25.22/9.08 new_ltEs1(Left(xuu590), Left(xuu600), app(ty_[], bdc), bdd) -> new_ltEs(xuu590, xuu600, bdc) 25.22/9.08 new_ltEs1(Right(xuu590), Right(xuu600), bee, app(app(ty_Either, bfb), bfc)) -> new_ltEs1(xuu590, xuu600, bfb, bfc) 25.22/9.08 new_ltEs1(Left(xuu590), Left(xuu600), app(app(ty_@2, bec), bed), bdd) -> new_ltEs3(xuu590, xuu600, bec, bed) 25.22/9.08 new_ltEs1(Right(xuu590), Right(xuu600), bee, app(ty_Maybe, bfd)) -> new_ltEs2(xuu590, xuu600, bfd) 25.22/9.08 new_ltEs1(Left(xuu590), Left(xuu600), app(app(app(ty_@3, bde), bdf), bdg), bdd) -> new_ltEs0(xuu590, xuu600, bde, bdf, bdg) 25.22/9.08 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), app(app(ty_@2, baf), bag), hf, hg) -> new_lt3(xuu590, xuu600, baf, bag) 25.22/9.08 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, app(ty_[], bcb)) -> new_ltEs(xuu592, xuu602, bcb) 25.22/9.08 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, app(app(ty_@2, bbh), bca), hg) -> new_lt3(xuu591, xuu601, bbh, bca) 25.22/9.08 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, app(app(ty_Either, bbe), bbf), hg) -> new_lt1(xuu591, xuu601, bbe, bbf) 25.22/9.08 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, app(app(app(ty_@3, bbb), bbc), bbd), hg) -> new_lt0(xuu591, xuu601, bbb, bbc, bbd) 25.22/9.08 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, app(app(ty_@2, bda), bdb)) -> new_ltEs3(xuu592, xuu602, bda, bdb) 25.22/9.08 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), app(app(ty_Either, bac), bad), hf, hg) -> new_lt1(xuu590, xuu600, bac, bad) 25.22/9.08 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, app(ty_Maybe, bch)) -> new_ltEs2(xuu592, xuu602, bch) 25.22/9.08 new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, app(ty_Maybe, bbg), hg) -> new_lt2(xuu591, xuu601, bbg) 25.22/9.08 new_ltEs1(Left(xuu590), Left(xuu600), app(app(ty_Either, bdh), bea), bdd) -> new_ltEs1(xuu590, xuu600, bdh, bea) 25.22/9.08 new_ltEs1(Right(xuu590), Right(xuu600), bee, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs0(xuu590, xuu600, beg, beh, bfa) 25.22/9.08 new_ltEs1(Right(xuu590), Right(xuu600), bee, app(app(ty_@2, bfe), bff)) -> new_ltEs3(xuu590, xuu600, bfe, bff) 25.22/9.08 new_compare21(xuu66, xuu67, False, cfa, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs0(xuu66, xuu67, cfc, cfd, cfe) 25.22/9.08 new_compare21(xuu66, xuu67, False, cfa, app(app(ty_Either, cff), cfg)) -> new_ltEs1(xuu66, xuu67, cff, cfg) 25.22/9.08 new_compare3(Left(xuu40000), Left(xuu3000), bf, bg) -> new_compare20(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, bf), bf, bg) 25.22/9.08 new_compare20(Left(xuu590), Left(xuu600), False, app(app(ty_Either, app(app(ty_@2, bec), bed)), bdd), hd) -> new_ltEs3(xuu590, xuu600, bec, bed) 25.22/9.08 new_compare20(Just(xuu590), Just(xuu600), False, app(ty_Maybe, app(ty_Maybe, bge)), hd) -> new_ltEs2(xuu590, xuu600, bge) 25.22/9.08 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, cab), app(app(ty_@2, cbb), cbc)), hd) -> new_ltEs3(xuu591, xuu601, cbb, cbc) 25.22/9.08 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), app(ty_[], bba)), hg), hd) -> new_lt(xuu591, xuu601, bba) 25.22/9.08 new_compare20(Left(xuu590), Left(xuu600), False, app(app(ty_Either, app(ty_[], bdc)), bdd), hd) -> new_ltEs(xuu590, xuu600, bdc) 25.22/9.08 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), hf), app(app(app(ty_@3, bcc), bcd), bce)), hd) -> new_ltEs0(xuu592, xuu602, bcc, bcd, bce) 25.22/9.08 new_compare20(Just(xuu590), Just(xuu600), False, app(ty_Maybe, app(app(ty_Either, bgc), bgd)), hd) -> new_ltEs1(xuu590, xuu600, bgc, bgd) 25.22/9.08 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, app(ty_[], bgh)), bha), hd) -> new_lt(xuu590, xuu600, bgh) 25.22/9.08 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), app(app(ty_@2, bbh), bca)), hg), hd) -> new_lt3(xuu591, xuu601, bbh, bca) 25.22/9.08 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, app(app(ty_@2, baf), bag)), hf), hg), hd) -> new_lt3(xuu590, xuu600, baf, bag) 25.22/9.08 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), hf), app(ty_Maybe, bch)), hd) -> new_ltEs2(xuu592, xuu602, bch) 25.22/9.08 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, app(app(app(ty_@3, hh), baa), bab)), hf), hg), hd) -> new_lt0(xuu590, xuu600, hh, baa, bab) 25.22/9.08 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, app(ty_Maybe, bhg)), bha), hd) -> new_lt2(xuu590, xuu600, bhg) 25.22/9.08 new_compare20(Right(xuu590), Right(xuu600), False, app(app(ty_Either, bee), app(ty_[], bef)), hd) -> new_ltEs(xuu590, xuu600, bef) 25.22/9.08 new_compare20(Right(xuu590), Right(xuu600), False, app(app(ty_Either, bee), app(app(ty_@2, bfe), bff)), hd) -> new_ltEs3(xuu590, xuu600, bfe, bff) 25.22/9.08 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, app(app(ty_@2, bhh), caa)), bha), hd) -> new_lt3(xuu590, xuu600, bhh, caa) 25.22/9.08 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, cab), app(app(app(ty_@3, cad), cae), caf)), hd) -> new_ltEs0(xuu591, xuu601, cad, cae, caf) 25.22/9.08 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), app(ty_Maybe, bbg)), hg), hd) -> new_lt2(xuu591, xuu601, bbg) 25.22/9.08 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, app(ty_Maybe, bae)), hf), hg), hd) -> new_lt2(xuu590, xuu600, bae) 25.22/9.08 new_compare20(Just(xuu590), Just(xuu600), False, app(ty_Maybe, app(ty_[], bfg)), hd) -> new_ltEs(xuu590, xuu600, bfg) 25.22/9.08 new_compare20(Left(xuu590), Left(xuu600), False, app(app(ty_Either, app(ty_Maybe, beb)), bdd), hd) -> new_ltEs2(xuu590, xuu600, beb) 25.22/9.08 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, app(app(ty_Either, bhe), bhf)), bha), hd) -> new_lt1(xuu590, xuu600, bhe, bhf) 25.22/9.08 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, cab), app(ty_Maybe, cba)), hd) -> new_ltEs2(xuu591, xuu601, cba) 25.22/9.08 new_compare20(Just(xuu590), Just(xuu600), False, app(ty_Maybe, app(app(app(ty_@3, bfh), bga), bgb)), hd) -> new_ltEs0(xuu590, xuu600, bfh, bga, bgb) 25.22/9.08 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), hf), app(app(ty_@2, bda), bdb)), hd) -> new_ltEs3(xuu592, xuu602, bda, bdb) 25.22/9.08 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), hf), app(app(ty_Either, bcf), bcg)), hd) -> new_ltEs1(xuu592, xuu602, bcf, bcg) 25.22/9.08 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, cab), app(ty_[], cac)), hd) -> new_ltEs(xuu591, xuu601, cac) 25.22/9.08 new_compare20(Right(xuu590), Right(xuu600), False, app(app(ty_Either, bee), app(app(app(ty_@3, beg), beh), bfa)), hd) -> new_ltEs0(xuu590, xuu600, beg, beh, bfa) 25.22/9.08 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, app(app(ty_Either, bac), bad)), hf), hg), hd) -> new_lt1(xuu590, xuu600, bac, bad) 25.22/9.08 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), app(app(app(ty_@3, bbb), bbc), bbd)), hg), hd) -> new_lt0(xuu591, xuu601, bbb, bbc, bbd) 25.22/9.08 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, app(ty_[], he)), hf), hg), hd) -> new_lt(xuu590, xuu600, he) 25.22/9.08 new_compare20(Left(xuu590), Left(xuu600), False, app(app(ty_Either, app(app(ty_Either, bdh), bea)), bdd), hd) -> new_ltEs1(xuu590, xuu600, bdh, bea) 25.22/9.08 new_compare20(Right(xuu590), Right(xuu600), False, app(app(ty_Either, bee), app(app(ty_Either, bfb), bfc)), hd) -> new_ltEs1(xuu590, xuu600, bfb, bfc) 25.22/9.08 new_compare20(Just(xuu590), Just(xuu600), False, app(ty_Maybe, app(app(ty_@2, bgf), bgg)), hd) -> new_ltEs3(xuu590, xuu600, bgf, bgg) 25.22/9.08 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), app(app(ty_Either, bbe), bbf)), hg), hd) -> new_lt1(xuu591, xuu601, bbe, bbf) 25.22/9.08 new_compare20(Right(xuu590), Right(xuu600), False, app(app(ty_Either, bee), app(ty_Maybe, bfd)), hd) -> new_ltEs2(xuu590, xuu600, bfd) 25.22/9.08 new_compare20(xuu59, xuu60, False, app(ty_[], hc), hd) -> new_compare(xuu59, xuu60, hc) 25.22/9.08 new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), hf), app(ty_[], bcb)), hd) -> new_ltEs(xuu592, xuu602, bcb) 25.22/9.08 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, app(app(app(ty_@3, bhb), bhc), bhd)), bha), hd) -> new_lt0(xuu590, xuu600, bhb, bhc, bhd) 25.22/9.08 new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, cab), app(app(ty_Either, cag), cah)), hd) -> new_ltEs1(xuu591, xuu601, cag, cah) 25.22/9.08 new_compare20(Left(xuu590), Left(xuu600), False, app(app(ty_Either, app(app(app(ty_@3, bde), bdf), bdg)), bdd), hd) -> new_ltEs0(xuu590, xuu600, bde, bdf, bdg) 25.22/9.08 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, app(app(ty_@2, fh), ga), df) -> new_lt3(xuu99, xuu102, fh, ga) 25.22/9.08 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, app(app(ty_Either, eb), ec), de, df) -> new_compare3(xuu98, xuu101, eb, ec) 25.22/9.08 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, app(app(ty_Either, fd), ff), df) -> new_lt1(xuu99, xuu102, fd, ff) 25.22/9.08 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs0(xuu100, xuu103, gc, gd, ge) 25.22/9.08 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, app(ty_Maybe, fg), df) -> new_lt2(xuu99, xuu102, fg) 25.22/9.08 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, app(ty_[], gb)) -> new_ltEs(xuu100, xuu103, gb) 25.22/9.08 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, app(app(ty_@2, ee), ef), de, df) -> new_compare5(xuu98, xuu101, ee, ef) 25.22/9.08 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, app(ty_Maybe, gh)) -> new_ltEs2(xuu100, xuu103, gh) 25.22/9.08 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, app(app(app(ty_@3, dg), dh), ea), de, df) -> new_compare1(xuu98, xuu101, dg, dh, ea) 25.22/9.08 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, app(ty_[], h), de, df) -> new_compare(xuu98, xuu101, h) 25.22/9.08 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, app(ty_[], eh), df) -> new_lt(xuu99, xuu102, eh) 25.22/9.08 new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, app(app(ty_Either, gf), gg)) -> new_ltEs1(xuu100, xuu103, gf, gg) 25.22/9.08 new_compare22(xuu73, xuu74, False, app(app(ty_Either, cbh), cca)) -> new_ltEs1(xuu73, xuu74, cbh, cca) 25.22/9.08 new_compare22(xuu73, xuu74, False, app(ty_[], cbd)) -> new_ltEs(xuu73, xuu74, cbd) 25.22/9.08 new_compare22(xuu73, xuu74, False, app(ty_Maybe, ccb)) -> new_ltEs2(xuu73, xuu74, ccb) 25.22/9.08 new_compare22(xuu73, xuu74, False, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs0(xuu73, xuu74, cbe, cbf, cbg) 25.22/9.08 new_compare23(xuu111, xuu112, xuu113, xuu114, False, app(ty_[], cdg), cdh) -> new_lt(xuu111, xuu113, cdg) 25.22/9.08 new_compare23(xuu111, xuu112, xuu113, xuu114, False, cce, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs0(xuu112, xuu114, ccg, cch, cda) 25.22/9.08 new_compare23(xuu111, xuu112, xuu113, xuu114, False, app(app(app(ty_@3, cea), ceb), cec), cdh) -> new_lt0(xuu111, xuu113, cea, ceb, cec) 25.22/9.08 new_compare23(xuu111, xuu112, xuu113, xuu114, False, app(app(ty_@2, ceg), ceh), cdh) -> new_lt3(xuu111, xuu113, ceg, ceh) 25.22/9.08 new_compare23(xuu111, xuu112, xuu113, xuu114, False, app(app(ty_Either, ced), cee), cdh) -> new_lt1(xuu111, xuu113, ced, cee) 25.22/9.08 new_compare23(xuu111, xuu112, xuu113, xuu114, False, cce, app(app(ty_Either, cdb), cdc)) -> new_ltEs1(xuu112, xuu114, cdb, cdc) 25.22/9.08 new_compare23(xuu111, xuu112, xuu113, xuu114, False, cce, app(ty_[], ccf)) -> new_ltEs(xuu112, xuu114, ccf) 25.22/9.08 new_compare23(xuu111, xuu112, xuu113, xuu114, False, cce, app(app(ty_@2, cde), cdf)) -> new_ltEs3(xuu112, xuu114, cde, cdf) 25.22/9.08 new_compare23(xuu111, xuu112, xuu113, xuu114, False, cce, app(ty_Maybe, cdd)) -> new_ltEs2(xuu112, xuu114, cdd) 25.22/9.08 new_primCompAux(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), xuu4001, xuu301, app(app(ty_@2, ca), cb)) -> new_compare23(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs11(xuu40000, xuu3000, ca), new_esEs10(xuu40001, xuu3001, cb)), ca, cb) 25.22/9.08 new_primCompAux(Just(xuu40000), Just(xuu3000), xuu4001, xuu301, app(ty_Maybe, bh)) -> new_compare22(xuu40000, xuu3000, new_esEs9(xuu40000, xuu3000, bh), bh) 25.22/9.08 new_primCompAux(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), xuu4001, xuu301, app(app(app(ty_@3, bc), bd), be)) -> new_compare2(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs6(xuu40000, xuu3000, bc), new_asAs(new_esEs5(xuu40001, xuu3001, bd), new_esEs4(xuu40002, xuu3002, be))), bc, bd, be) 25.22/9.08 new_primCompAux(xuu4000, xuu300, xuu4001, xuu301, bb) -> new_primCompAux0(xuu4001, xuu301, new_compare0(xuu4000, xuu300, bb), app(ty_[], bb)) 25.22/9.08 new_primCompAux0(xuu34, xuu35, EQ, app(ty_[], cc)) -> new_compare(xuu34, xuu35, cc) 25.22/9.08 new_primCompAux(Left(xuu40000), Left(xuu3000), xuu4001, xuu301, app(app(ty_Either, bf), bg)) -> new_compare20(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, bf), bf, bg) 25.22/9.08 new_primCompAux(:(xuu40000, xuu40001), :(xuu3000, xuu3001), xuu4001, xuu301, app(ty_[], ba)) -> new_primCompAux(xuu40000, xuu3000, xuu40001, xuu3001, ba) 25.22/9.08 25.22/9.08 The TRS R consists of the following rules: 25.22/9.08 25.22/9.08 new_esEs11(xuu40000, xuu3000, app(ty_[], ddc)) -> new_esEs24(xuu40000, xuu3000, ddc) 25.22/9.08 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.22/9.08 new_esEs26(xuu590, xuu600, app(ty_Ratio, ddg)) -> new_esEs21(xuu590, xuu600, ddg) 25.22/9.08 new_esEs7(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.22/9.08 new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, bb) -> new_primCompAux00(xuu4001, xuu301, new_compare0(xuu4000, xuu300, bb), app(ty_[], bb)) 25.22/9.08 new_pePe(True, xuu206) -> True 25.22/9.08 new_ltEs19(xuu591, xuu601, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs6(xuu591, xuu601, cad, cae, caf) 25.22/9.08 new_esEs10(xuu40001, xuu3001, ty_@0) -> new_esEs22(xuu40001, xuu3001) 25.22/9.08 new_esEs36(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.22/9.08 new_esEs27(xuu400002, xuu30002, ty_Float) -> new_esEs20(xuu400002, xuu30002) 25.22/9.08 new_compare16(GT, LT) -> GT 25.22/9.08 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.22/9.08 new_primCompAux00(xuu34, xuu35, EQ, ty_Char) -> new_compare6(xuu34, xuu35) 25.22/9.08 new_ltEs24(xuu592, xuu602, ty_Bool) -> new_ltEs12(xuu592, xuu602) 25.22/9.08 new_compare24(xuu111, xuu112, xuu113, xuu114, True, cce, cdh) -> EQ 25.22/9.08 new_compare110(xuu153, xuu154, False, fbf) -> GT 25.22/9.08 new_compare26(xuu66, xuu67, True, cfa, eaf) -> EQ 25.22/9.08 new_ltEs4(xuu59, xuu60, ty_Int) -> new_ltEs7(xuu59, xuu60) 25.22/9.08 new_esEs28(xuu400001, xuu30001, ty_Char) -> new_esEs18(xuu400001, xuu30001) 25.22/9.08 new_lt6(xuu590, xuu600, ty_Bool) -> new_lt12(xuu590, xuu600) 25.22/9.08 new_esEs5(xuu40001, xuu3001, app(ty_Ratio, fgh)) -> new_esEs21(xuu40001, xuu3001, fgh) 25.22/9.08 new_compare0(xuu4000, xuu300, ty_Char) -> new_compare6(xuu4000, xuu300) 25.22/9.08 new_ltEs23(xuu100, xuu103, ty_Double) -> new_ltEs15(xuu100, xuu103) 25.22/9.08 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_Maybe, chd)) -> new_esEs12(xuu400000, xuu30000, chd) 25.22/9.08 new_ltEs8(Right(xuu590), Right(xuu600), bee, app(ty_Ratio, faa)) -> new_ltEs11(xuu590, xuu600, faa) 25.22/9.08 new_esEs4(xuu40002, xuu3002, app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs14(xuu40002, xuu3002, fca, fcb, fcc) 25.22/9.08 new_compare16(EQ, LT) -> GT 25.22/9.08 new_esEs33(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.22/9.08 new_lt19(xuu111, xuu113, app(ty_Ratio, eae)) -> new_lt11(xuu111, xuu113, eae) 25.22/9.08 new_esEs26(xuu590, xuu600, ty_Ordering) -> new_esEs19(xuu590, xuu600) 25.22/9.08 new_esEs5(xuu40001, xuu3001, app(ty_[], fhb)) -> new_esEs24(xuu40001, xuu3001, fhb) 25.22/9.08 new_esEs35(xuu98, xuu101, ty_@0) -> new_esEs22(xuu98, xuu101) 25.22/9.08 new_esEs36(xuu400001, xuu30001, app(ty_Ratio, fed)) -> new_esEs21(xuu400001, xuu30001, fed) 25.22/9.08 new_esEs26(xuu590, xuu600, ty_Integer) -> new_esEs23(xuu590, xuu600) 25.22/9.08 new_ltEs21(xuu66, xuu67, ty_Ordering) -> new_ltEs16(xuu66, xuu67) 25.22/9.08 new_esEs12(Nothing, Just(xuu30000), cgc) -> False 25.22/9.08 new_esEs12(Just(xuu400000), Nothing, cgc) -> False 25.22/9.08 new_esEs6(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.22/9.08 new_ltEs8(Left(xuu590), Left(xuu600), ty_Double, bdd) -> new_ltEs15(xuu590, xuu600) 25.22/9.08 new_esEs17(Left(xuu400000), Left(xuu30000), ty_@0, ebb) -> new_esEs22(xuu400000, xuu30000) 25.22/9.08 new_esEs5(xuu40001, xuu3001, ty_Ordering) -> new_esEs19(xuu40001, xuu3001) 25.22/9.08 new_esEs12(Nothing, Nothing, cgc) -> True 25.22/9.08 new_esEs26(xuu590, xuu600, app(ty_[], bgh)) -> new_esEs24(xuu590, xuu600, bgh) 25.22/9.08 new_primEqNat0(Succ(xuu4000000), Succ(xuu300000)) -> new_primEqNat0(xuu4000000, xuu300000) 25.22/9.08 new_esEs33(xuu400000, xuu30000, app(ty_Maybe, fbb)) -> new_esEs12(xuu400000, xuu30000, fbb) 25.22/9.08 new_compare27(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Int) -> new_compare17(new_sr(xuu40000, xuu3001), new_sr(xuu3000, xuu40001)) 25.22/9.08 new_esEs24([], [], eea) -> True 25.22/9.08 new_not(True) -> False 25.22/9.08 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(app(ty_@3, ebc), ebd), ebe), ebb) -> new_esEs14(xuu400000, xuu30000, ebc, ebd, ebe) 25.22/9.08 new_lt22(xuu590, xuu600, app(ty_[], he)) -> new_lt7(xuu590, xuu600, he) 25.22/9.08 new_lt21(xuu99, xuu102, app(app(ty_@2, fh), ga)) -> new_lt14(xuu99, xuu102, fh, ga) 25.22/9.08 new_lt23(xuu591, xuu601, ty_Int) -> new_lt9(xuu591, xuu601) 25.22/9.08 new_esEs36(xuu400001, xuu30001, app(app(ty_@2, fde), fdf)) -> new_esEs13(xuu400001, xuu30001, fde, fdf) 25.22/9.08 new_esEs5(xuu40001, xuu3001, app(ty_Maybe, fha)) -> new_esEs12(xuu40001, xuu3001, fha) 25.22/9.08 new_esEs11(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.22/9.08 new_esEs5(xuu40001, xuu3001, ty_Integer) -> new_esEs23(xuu40001, xuu3001) 25.22/9.08 new_ltEs24(xuu592, xuu602, ty_Integer) -> new_ltEs18(xuu592, xuu602) 25.22/9.08 new_ltEs22(xuu73, xuu74, ty_Float) -> new_ltEs17(xuu73, xuu74) 25.22/9.08 new_ltEs8(Left(xuu590), Left(xuu600), app(app(ty_Either, bdh), bea), bdd) -> new_ltEs8(xuu590, xuu600, bdh, bea) 25.22/9.08 new_esEs8(xuu40000, xuu3000, app(app(ty_Either, egh), eha)) -> new_esEs17(xuu40000, xuu3000, egh, eha) 25.22/9.08 new_esEs35(xuu98, xuu101, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs14(xuu98, xuu101, dg, dh, ea) 25.22/9.08 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.22/9.08 new_esEs11(xuu40000, xuu3000, app(app(ty_Either, dcg), dch)) -> new_esEs17(xuu40000, xuu3000, dcg, dch) 25.22/9.08 new_ltEs19(xuu591, xuu601, ty_Bool) -> new_ltEs12(xuu591, xuu601) 25.22/9.08 new_primEqNat0(Succ(xuu4000000), Zero) -> False 25.22/9.08 new_primEqNat0(Zero, Succ(xuu300000)) -> False 25.22/9.08 new_esEs18(Char(xuu400000), Char(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 25.22/9.08 new_esEs38(xuu591, xuu601, ty_Char) -> new_esEs18(xuu591, xuu601) 25.22/9.08 new_compare10(xuu137, xuu138, True, fbd, fbe) -> LT 25.22/9.08 new_ltEs8(Left(xuu590), Left(xuu600), ty_Char, bdd) -> new_ltEs10(xuu590, xuu600) 25.22/9.08 new_esEs8(xuu40000, xuu3000, app(app(ty_@2, egc), egd)) -> new_esEs13(xuu40000, xuu3000, egc, egd) 25.22/9.08 new_ltEs4(xuu59, xuu60, app(ty_Ratio, dde)) -> new_ltEs11(xuu59, xuu60, dde) 25.22/9.08 new_esEs33(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.22/9.08 new_esEs11(xuu40000, xuu3000, app(ty_Maybe, ddb)) -> new_esEs12(xuu40000, xuu3000, ddb) 25.22/9.08 new_ltEs4(xuu59, xuu60, app(app(ty_@2, cab), bha)) -> new_ltEs14(xuu59, xuu60, cab, bha) 25.22/9.08 new_compare13(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.22/9.08 new_esEs4(xuu40002, xuu3002, ty_@0) -> new_esEs22(xuu40002, xuu3002) 25.22/9.08 new_esEs36(xuu400001, xuu30001, ty_Bool) -> new_esEs15(xuu400001, xuu30001) 25.22/9.08 new_esEs9(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.22/9.08 new_primCmpInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> GT 25.22/9.08 new_compare18(:(xuu40000, xuu40001), :(xuu3000, xuu3001), ba) -> new_primCompAux1(xuu40000, xuu3000, xuu40001, xuu3001, ba) 25.22/9.08 new_lt6(xuu590, xuu600, ty_Ordering) -> new_lt16(xuu590, xuu600) 25.22/9.08 new_esEs11(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.22/9.08 new_ltEs11(xuu59, xuu60, dde) -> new_fsEs(new_compare27(xuu59, xuu60, dde)) 25.22/9.08 new_esEs26(xuu590, xuu600, app(app(ty_@2, bhh), caa)) -> new_esEs13(xuu590, xuu600, bhh, caa) 25.22/9.08 new_ltEs21(xuu66, xuu67, ty_Int) -> new_ltEs7(xuu66, xuu67) 25.22/9.08 new_esEs33(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.22/9.08 new_ltEs8(Left(xuu590), Left(xuu600), ty_@0, bdd) -> new_ltEs9(xuu590, xuu600) 25.22/9.08 new_ltEs19(xuu591, xuu601, ty_Integer) -> new_ltEs18(xuu591, xuu601) 25.22/9.08 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.22/9.08 new_ltEs9(xuu59, xuu60) -> new_fsEs(new_compare8(xuu59, xuu60)) 25.22/9.08 new_primPlusNat1(Succ(xuu20900), Succ(xuu20800)) -> Succ(Succ(new_primPlusNat1(xuu20900, xuu20800))) 25.22/9.08 new_primCompAux00(xuu34, xuu35, GT, eeb) -> GT 25.22/9.08 new_compare0(xuu4000, xuu300, app(app(ty_@2, ca), cb)) -> new_compare7(xuu4000, xuu300, ca, cb) 25.22/9.08 new_primCmpNat0(Zero, Succ(xuu30000)) -> LT 25.22/9.08 new_ltEs23(xuu100, xuu103, ty_@0) -> new_ltEs9(xuu100, xuu103) 25.22/9.08 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.22/9.08 new_esEs29(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.22/9.08 new_compare15(Right(xuu40000), Right(xuu3000), bf, bg) -> new_compare26(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bg), bf, bg) 25.22/9.08 new_ltEs21(xuu66, xuu67, app(app(ty_Either, cff), cfg)) -> new_ltEs8(xuu66, xuu67, cff, cfg) 25.22/9.08 new_ltEs20(xuu112, xuu114, app(ty_Maybe, cdd)) -> new_ltEs13(xuu112, xuu114, cdd) 25.22/9.08 new_esEs33(xuu400000, xuu30000, app(ty_Ratio, fba)) -> new_esEs21(xuu400000, xuu30000, fba) 25.22/9.08 new_ltEs23(xuu100, xuu103, app(ty_Ratio, fdc)) -> new_ltEs11(xuu100, xuu103, fdc) 25.22/9.08 new_lt20(xuu98, xuu101, ty_Float) -> new_lt17(xuu98, xuu101) 25.22/9.08 new_compare15(Left(xuu40000), Right(xuu3000), bf, bg) -> LT 25.22/9.08 new_ltEs4(xuu59, xuu60, app(app(app(ty_@3, bah), hf), hg)) -> new_ltEs6(xuu59, xuu60, bah, hf, hg) 25.22/9.08 new_esEs5(xuu40001, xuu3001, app(app(ty_@2, fga), fgb)) -> new_esEs13(xuu40001, xuu3001, fga, fgb) 25.22/9.08 new_lt22(xuu590, xuu600, ty_Char) -> new_lt4(xuu590, xuu600) 25.22/9.08 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_[], che)) -> new_esEs24(xuu400000, xuu30000, che) 25.22/9.08 new_primCompAux00(xuu34, xuu35, EQ, ty_@0) -> new_compare8(xuu34, xuu35) 25.22/9.08 new_esEs39(xuu590, xuu600, app(app(ty_Either, bac), bad)) -> new_esEs17(xuu590, xuu600, bac, bad) 25.22/9.08 new_esEs19(LT, EQ) -> False 25.22/9.08 new_esEs19(EQ, LT) -> False 25.22/9.08 new_esEs39(xuu590, xuu600, ty_Bool) -> new_esEs15(xuu590, xuu600) 25.22/9.08 new_esEs30(xuu111, xuu113, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs14(xuu111, xuu113, cea, ceb, cec) 25.22/9.08 new_esEs7(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.22/9.08 new_esEs33(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.22/9.08 new_ltEs4(xuu59, xuu60, ty_@0) -> new_ltEs9(xuu59, xuu60) 25.22/9.08 new_lt23(xuu591, xuu601, app(ty_Maybe, bbg)) -> new_lt13(xuu591, xuu601, bbg) 25.22/9.08 new_esEs11(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.22/9.08 new_compare17(xuu4000, xuu300) -> new_primCmpInt(xuu4000, xuu300) 25.22/9.08 new_lt23(xuu591, xuu601, ty_Double) -> new_lt15(xuu591, xuu601) 25.22/9.08 new_esEs39(xuu590, xuu600, app(app(ty_@2, baf), bag)) -> new_esEs13(xuu590, xuu600, baf, bag) 25.22/9.08 new_compare7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), ca, cb) -> new_compare24(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs11(xuu40000, xuu3000, ca), new_esEs10(xuu40001, xuu3001, cb)), ca, cb) 25.22/9.08 new_esEs8(xuu40000, xuu3000, app(ty_Ratio, ehb)) -> new_esEs21(xuu40000, xuu3000, ehb) 25.22/9.08 new_esEs36(xuu400001, xuu30001, app(ty_Maybe, fee)) -> new_esEs12(xuu400001, xuu30001, fee) 25.22/9.08 new_ltEs23(xuu100, xuu103, app(app(ty_@2, ha), hb)) -> new_ltEs14(xuu100, xuu103, ha, hb) 25.22/9.08 new_esEs10(xuu40001, xuu3001, ty_Char) -> new_esEs18(xuu40001, xuu3001) 25.22/9.08 new_esEs29(xuu400000, xuu30000, app(ty_[], eaa)) -> new_esEs24(xuu400000, xuu30000, eaa) 25.22/9.08 new_esEs34(xuu99, xuu102, ty_Float) -> new_esEs20(xuu99, xuu102) 25.22/9.08 new_esEs8(xuu40000, xuu3000, app(ty_[], ehd)) -> new_esEs24(xuu40000, xuu3000, ehd) 25.22/9.08 new_esEs29(xuu400000, xuu30000, app(app(ty_Either, dhe), dhf)) -> new_esEs17(xuu400000, xuu30000, dhe, dhf) 25.22/9.08 new_esEs38(xuu591, xuu601, ty_Int) -> new_esEs16(xuu591, xuu601) 25.22/9.08 new_ltEs8(Right(xuu590), Right(xuu600), bee, ty_Float) -> new_ltEs17(xuu590, xuu600) 25.22/9.08 new_lt22(xuu590, xuu600, ty_Bool) -> new_lt12(xuu590, xuu600) 25.22/9.08 new_esEs15(True, True) -> True 25.22/9.08 new_primCompAux00(xuu34, xuu35, EQ, ty_Bool) -> new_compare28(xuu34, xuu35) 25.22/9.08 new_esEs5(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) 25.22/9.08 new_ltEs19(xuu591, xuu601, app(app(ty_@2, cbb), cbc)) -> new_ltEs14(xuu591, xuu601, cbb, cbc) 25.22/9.08 new_esEs29(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.22/9.08 new_primEqInt(Neg(Succ(xuu4000000)), Neg(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) 25.22/9.08 new_ltEs4(xuu59, xuu60, ty_Ordering) -> new_ltEs16(xuu59, xuu60) 25.22/9.08 new_esEs30(xuu111, xuu113, ty_@0) -> new_esEs22(xuu111, xuu113) 25.22/9.08 new_compare0(xuu4000, xuu300, ty_Float) -> new_compare13(xuu4000, xuu300) 25.22/9.08 new_primCmpInt(Neg(Zero), Pos(Succ(xuu30000))) -> LT 25.22/9.08 new_primCompAux00(xuu34, xuu35, EQ, ty_Double) -> new_compare30(xuu34, xuu35) 25.22/9.08 new_primMulInt(Pos(xuu30000), Pos(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) 25.22/9.08 new_ltEs20(xuu112, xuu114, ty_Double) -> new_ltEs15(xuu112, xuu114) 25.22/9.08 new_ltEs13(Just(xuu590), Just(xuu600), app(app(ty_Either, bgc), bgd)) -> new_ltEs8(xuu590, xuu600, bgc, bgd) 25.22/9.08 new_esEs9(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.22/9.08 new_ltEs13(Just(xuu590), Just(xuu600), ty_Bool) -> new_ltEs12(xuu590, xuu600) 25.22/9.08 new_ltEs24(xuu592, xuu602, ty_Float) -> new_ltEs17(xuu592, xuu602) 25.22/9.08 new_lt21(xuu99, xuu102, app(ty_Maybe, fg)) -> new_lt13(xuu99, xuu102, fg) 25.22/9.08 new_esEs38(xuu591, xuu601, app(ty_Maybe, bbg)) -> new_esEs12(xuu591, xuu601, bbg) 25.22/9.08 new_ltEs8(Right(xuu590), Left(xuu600), bee, bdd) -> False 25.22/9.08 new_primMulNat0(Succ(xuu300000), Zero) -> Zero 25.22/9.08 new_primMulNat0(Zero, Succ(xuu4000100)) -> Zero 25.22/9.08 new_ltEs8(Right(xuu590), Right(xuu600), bee, app(ty_Maybe, bfd)) -> new_ltEs13(xuu590, xuu600, bfd) 25.22/9.08 new_ltEs13(Just(xuu590), Just(xuu600), app(app(app(ty_@3, bfh), bga), bgb)) -> new_ltEs6(xuu590, xuu600, bfh, bga, bgb) 25.22/9.08 new_esEs26(xuu590, xuu600, ty_Bool) -> new_esEs15(xuu590, xuu600) 25.22/9.08 new_esEs5(xuu40001, xuu3001, app(app(ty_Either, fgf), fgg)) -> new_esEs17(xuu40001, xuu3001, fgf, fgg) 25.22/9.08 new_esEs37(xuu400000, xuu30000, app(app(app(ty_@3, ffa), ffb), ffc)) -> new_esEs14(xuu400000, xuu30000, ffa, ffb, ffc) 25.22/9.08 new_compare30(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.22/9.08 new_esEs26(xuu590, xuu600, ty_Int) -> new_esEs16(xuu590, xuu600) 25.22/9.08 new_ltEs21(xuu66, xuu67, ty_Integer) -> new_ltEs18(xuu66, xuu67) 25.22/9.08 new_esEs8(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.22/9.08 new_compare15(Left(xuu40000), Left(xuu3000), bf, bg) -> new_compare25(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, bf), bf, bg) 25.22/9.08 new_ltEs23(xuu100, xuu103, ty_Int) -> new_ltEs7(xuu100, xuu103) 25.22/9.08 new_ltEs12(False, True) -> True 25.22/9.08 new_lt20(xuu98, xuu101, app(app(ty_Either, eb), ec)) -> new_lt10(xuu98, xuu101, eb, ec) 25.22/9.08 new_ltEs4(xuu59, xuu60, app(app(ty_Either, bee), bdd)) -> new_ltEs8(xuu59, xuu60, bee, bdd) 25.22/9.08 new_ltEs19(xuu591, xuu601, app(app(ty_Either, cag), cah)) -> new_ltEs8(xuu591, xuu601, cag, cah) 25.22/9.08 new_ltEs20(xuu112, xuu114, ty_@0) -> new_ltEs9(xuu112, xuu114) 25.22/9.08 new_esEs28(xuu400001, xuu30001, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs14(xuu400001, xuu30001, dfh, dga, dgb) 25.22/9.08 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(ty_@2, cgd), cge)) -> new_esEs13(xuu400000, xuu30000, cgd, cge) 25.22/9.08 new_esEs26(xuu590, xuu600, app(ty_Maybe, bhg)) -> new_esEs12(xuu590, xuu600, bhg) 25.22/9.08 new_primPlusNat1(Succ(xuu20900), Zero) -> Succ(xuu20900) 25.22/9.08 new_primPlusNat1(Zero, Succ(xuu20800)) -> Succ(xuu20800) 25.22/9.08 new_esEs7(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.22/9.08 new_esEs30(xuu111, xuu113, ty_Char) -> new_esEs18(xuu111, xuu113) 25.22/9.08 new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_@2, dc), dd)) -> new_compare7(xuu34, xuu35, dc, dd) 25.22/9.08 new_esEs29(xuu400000, xuu30000, app(app(ty_@2, dgh), dha)) -> new_esEs13(xuu400000, xuu30000, dgh, dha) 25.22/9.08 new_compare28(False, False) -> EQ 25.22/9.08 new_ltEs21(xuu66, xuu67, ty_@0) -> new_ltEs9(xuu66, xuu67) 25.22/9.08 new_ltEs12(True, True) -> True 25.22/9.08 new_ltEs21(xuu66, xuu67, app(ty_Ratio, eag)) -> new_ltEs11(xuu66, xuu67, eag) 25.22/9.08 new_esEs11(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.22/9.08 new_compare0(xuu4000, xuu300, app(app(ty_Either, bf), bg)) -> new_compare15(xuu4000, xuu300, bf, bg) 25.22/9.08 new_ltEs21(xuu66, xuu67, app(app(ty_@2, cga), cgb)) -> new_ltEs14(xuu66, xuu67, cga, cgb) 25.22/9.08 new_ltEs19(xuu591, xuu601, ty_Ordering) -> new_ltEs16(xuu591, xuu601) 25.22/9.08 new_compare9(Integer(xuu40000), Integer(xuu3000)) -> new_primCmpInt(xuu40000, xuu3000) 25.22/9.08 new_esEs11(xuu40000, xuu3000, app(ty_Ratio, dda)) -> new_esEs21(xuu40000, xuu3000, dda) 25.22/9.08 new_ltEs4(xuu59, xuu60, app(ty_Maybe, ddf)) -> new_ltEs13(xuu59, xuu60, ddf) 25.22/9.08 new_esEs7(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.22/9.08 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.22/9.08 new_compare18(:(xuu40000, xuu40001), [], ba) -> GT 25.22/9.08 new_ltEs21(xuu66, xuu67, ty_Double) -> new_ltEs15(xuu66, xuu67) 25.22/9.08 new_esEs36(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.22/9.08 new_esEs31(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.22/9.08 new_ltEs24(xuu592, xuu602, ty_Int) -> new_ltEs7(xuu592, xuu602) 25.22/9.08 new_compare16(LT, LT) -> EQ 25.22/9.08 new_esEs27(xuu400002, xuu30002, app(app(app(ty_@3, def), deg), deh)) -> new_esEs14(xuu400002, xuu30002, def, deg, deh) 25.22/9.08 new_esEs33(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.22/9.08 new_ltEs24(xuu592, xuu602, app(app(ty_@2, bda), bdb)) -> new_ltEs14(xuu592, xuu602, bda, bdb) 25.22/9.08 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_Ratio, ebh), ebb) -> new_esEs21(xuu400000, xuu30000, ebh) 25.22/9.08 new_esEs6(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.22/9.08 new_esEs7(xuu40000, xuu3000, app(ty_[], egb)) -> new_esEs24(xuu40000, xuu3000, egb) 25.22/9.08 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, app(ty_Ratio, edc)) -> new_esEs21(xuu400000, xuu30000, edc) 25.22/9.08 new_esEs11(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.22/9.08 new_esEs38(xuu591, xuu601, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs14(xuu591, xuu601, bbb, bbc, bbd) 25.22/9.08 new_esEs35(xuu98, xuu101, ty_Float) -> new_esEs20(xuu98, xuu101) 25.22/9.08 new_ltEs5(xuu59, xuu60, hc) -> new_fsEs(new_compare18(xuu59, xuu60, hc)) 25.22/9.08 new_esEs29(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.22/9.08 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_[], ecb), ebb) -> new_esEs24(xuu400000, xuu30000, ecb) 25.22/9.08 new_esEs35(xuu98, xuu101, ty_Int) -> new_esEs16(xuu98, xuu101) 25.22/9.08 new_lt6(xuu590, xuu600, ty_Char) -> new_lt4(xuu590, xuu600) 25.22/9.08 new_ltEs13(Just(xuu590), Just(xuu600), ty_Int) -> new_ltEs7(xuu590, xuu600) 25.22/9.08 new_ltEs19(xuu591, xuu601, ty_@0) -> new_ltEs9(xuu591, xuu601) 25.22/9.08 new_ltEs8(Right(xuu590), Right(xuu600), bee, app(app(ty_@2, bfe), bff)) -> new_ltEs14(xuu590, xuu600, bfe, bff) 25.22/9.08 new_esEs28(xuu400001, xuu30001, app(ty_[], dgg)) -> new_esEs24(xuu400001, xuu30001, dgg) 25.22/9.08 new_esEs10(xuu40001, xuu3001, ty_Float) -> new_esEs20(xuu40001, xuu3001) 25.22/9.08 new_esEs10(xuu40001, xuu3001, ty_Double) -> new_esEs25(xuu40001, xuu3001) 25.22/9.08 new_esEs29(xuu400000, xuu30000, app(ty_Maybe, dhh)) -> new_esEs12(xuu400000, xuu30000, dhh) 25.22/9.08 new_esEs35(xuu98, xuu101, app(ty_Maybe, ed)) -> new_esEs12(xuu98, xuu101, ed) 25.22/9.08 new_esEs38(xuu591, xuu601, ty_Bool) -> new_esEs15(xuu591, xuu601) 25.22/9.08 new_lt20(xuu98, xuu101, app(ty_Maybe, ed)) -> new_lt13(xuu98, xuu101, ed) 25.22/9.08 new_esEs38(xuu591, xuu601, app(app(ty_Either, bbe), bbf)) -> new_esEs17(xuu591, xuu601, bbe, bbf) 25.22/9.08 new_primCompAux00(xuu34, xuu35, EQ, app(app(app(ty_@3, cd), ce), cf)) -> new_compare19(xuu34, xuu35, cd, ce, cf) 25.22/9.08 new_esEs5(xuu40001, xuu3001, ty_Char) -> new_esEs18(xuu40001, xuu3001) 25.22/9.08 new_compare0(xuu4000, xuu300, app(ty_[], ba)) -> new_compare18(xuu4000, xuu300, ba) 25.22/9.08 new_ltEs18(xuu59, xuu60) -> new_fsEs(new_compare9(xuu59, xuu60)) 25.22/9.08 new_esEs30(xuu111, xuu113, app(ty_Maybe, cef)) -> new_esEs12(xuu111, xuu113, cef) 25.22/9.08 new_compare10(xuu137, xuu138, False, fbd, fbe) -> GT 25.22/9.08 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.22/9.08 new_ltEs14(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, bha) -> new_pePe(new_lt6(xuu590, xuu600, cab), new_asAs(new_esEs26(xuu590, xuu600, cab), new_ltEs19(xuu591, xuu601, bha))) 25.22/9.08 new_esEs38(xuu591, xuu601, ty_Integer) -> new_esEs23(xuu591, xuu601) 25.22/9.08 new_lt19(xuu111, xuu113, ty_Bool) -> new_lt12(xuu111, xuu113) 25.22/9.08 new_esEs19(LT, LT) -> True 25.22/9.08 new_primCompAux00(xuu34, xuu35, EQ, ty_Float) -> new_compare13(xuu34, xuu35) 25.22/9.08 new_esEs30(xuu111, xuu113, app(ty_Ratio, eae)) -> new_esEs21(xuu111, xuu113, eae) 25.22/9.08 new_lt22(xuu590, xuu600, ty_Ordering) -> new_lt16(xuu590, xuu600) 25.22/9.08 new_esEs27(xuu400002, xuu30002, app(app(ty_@2, ded), dee)) -> new_esEs13(xuu400002, xuu30002, ded, dee) 25.22/9.08 new_esEs6(xuu40000, xuu3000, app(app(ty_@2, edf), edg)) -> new_esEs13(xuu40000, xuu3000, edf, edg) 25.22/9.08 new_primCmpInt(Pos(Succ(xuu400000)), Pos(xuu3000)) -> new_primCmpNat0(Succ(xuu400000), xuu3000) 25.22/9.08 new_esEs38(xuu591, xuu601, ty_@0) -> new_esEs22(xuu591, xuu601) 25.22/9.08 new_lt18(xuu98, xuu101) -> new_esEs19(new_compare9(xuu98, xuu101), LT) 25.22/9.08 new_esEs10(xuu40001, xuu3001, app(ty_Maybe, dbh)) -> new_esEs12(xuu40001, xuu3001, dbh) 25.22/9.08 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, app(ty_[], ede)) -> new_esEs24(xuu400000, xuu30000, ede) 25.22/9.08 new_esEs29(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.22/9.08 new_lt23(xuu591, xuu601, ty_Char) -> new_lt4(xuu591, xuu601) 25.22/9.08 new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_Either, cg), da)) -> new_compare15(xuu34, xuu35, cg, da) 25.22/9.08 new_lt17(xuu98, xuu101) -> new_esEs19(new_compare13(xuu98, xuu101), LT) 25.22/9.08 new_esEs39(xuu590, xuu600, ty_Float) -> new_esEs20(xuu590, xuu600) 25.22/9.08 new_lt19(xuu111, xuu113, ty_Integer) -> new_lt18(xuu111, xuu113) 25.22/9.08 new_lt21(xuu99, xuu102, ty_Ordering) -> new_lt16(xuu99, xuu102) 25.22/9.08 new_ltEs23(xuu100, xuu103, app(ty_[], gb)) -> new_ltEs5(xuu100, xuu103, gb) 25.22/9.08 new_ltEs13(Nothing, Nothing, ddf) -> True 25.22/9.08 new_ltEs13(Just(xuu590), Just(xuu600), app(app(ty_@2, bgf), bgg)) -> new_ltEs14(xuu590, xuu600, bgf, bgg) 25.22/9.08 new_ltEs13(Just(xuu590), Nothing, ddf) -> False 25.22/9.08 new_lt19(xuu111, xuu113, app(ty_Maybe, cef)) -> new_lt13(xuu111, xuu113, cef) 25.22/9.08 new_ltEs12(True, False) -> False 25.22/9.08 new_esEs4(xuu40002, xuu3002, ty_Float) -> new_esEs20(xuu40002, xuu3002) 25.22/9.08 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Float, ebb) -> new_esEs20(xuu400000, xuu30000) 25.22/9.08 new_esEs33(xuu400000, xuu30000, app(app(ty_Either, fag), fah)) -> new_esEs17(xuu400000, xuu30000, fag, fah) 25.22/9.08 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_Maybe, eca), ebb) -> new_esEs12(xuu400000, xuu30000, eca) 25.22/9.08 new_esEs34(xuu99, xuu102, ty_Ordering) -> new_esEs19(xuu99, xuu102) 25.22/9.08 new_esEs14(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), dea, deb, dec) -> new_asAs(new_esEs29(xuu400000, xuu30000, dea), new_asAs(new_esEs28(xuu400001, xuu30001, deb), new_esEs27(xuu400002, xuu30002, dec))) 25.22/9.08 new_lt20(xuu98, xuu101, app(app(app(ty_@3, dg), dh), ea)) -> new_lt8(xuu98, xuu101, dg, dh, ea) 25.22/9.08 new_compare0(xuu4000, xuu300, ty_Int) -> new_compare17(xuu4000, xuu300) 25.22/9.08 new_ltEs22(xuu73, xuu74, app(ty_[], cbd)) -> new_ltEs5(xuu73, xuu74, cbd) 25.22/9.08 new_esEs10(xuu40001, xuu3001, ty_Ordering) -> new_esEs19(xuu40001, xuu3001) 25.22/9.08 new_ltEs8(Left(xuu590), Left(xuu600), ty_Ordering, bdd) -> new_ltEs16(xuu590, xuu600) 25.22/9.08 new_esEs13(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), edf, edg) -> new_asAs(new_esEs37(xuu400000, xuu30000, edf), new_esEs36(xuu400001, xuu30001, edg)) 25.22/9.08 new_lt21(xuu99, xuu102, ty_Int) -> new_lt9(xuu99, xuu102) 25.22/9.08 new_esEs33(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.22/9.08 new_esEs34(xuu99, xuu102, app(app(ty_Either, fd), ff)) -> new_esEs17(xuu99, xuu102, fd, ff) 25.22/9.08 new_compare28(False, True) -> LT 25.22/9.08 new_esEs10(xuu40001, xuu3001, ty_Int) -> new_esEs16(xuu40001, xuu3001) 25.22/9.08 new_esEs34(xuu99, xuu102, app(ty_Maybe, fg)) -> new_esEs12(xuu99, xuu102, fg) 25.22/9.08 new_ltEs12(False, False) -> True 25.22/9.08 new_ltEs8(Right(xuu590), Right(xuu600), bee, ty_Double) -> new_ltEs15(xuu590, xuu600) 25.22/9.08 new_compare29(Just(xuu40000), Nothing, bh) -> GT 25.22/9.08 new_esEs7(xuu40000, xuu3000, app(app(ty_@2, efa), efb)) -> new_esEs13(xuu40000, xuu3000, efa, efb) 25.22/9.08 new_esEs17(Left(xuu400000), Right(xuu30000), ecc, ebb) -> False 25.22/9.08 new_esEs17(Right(xuu400000), Left(xuu30000), ecc, ebb) -> False 25.22/9.08 new_esEs34(xuu99, xuu102, ty_Integer) -> new_esEs23(xuu99, xuu102) 25.22/9.08 new_ltEs15(xuu59, xuu60) -> new_fsEs(new_compare30(xuu59, xuu60)) 25.22/9.08 new_esEs34(xuu99, xuu102, ty_@0) -> new_esEs22(xuu99, xuu102) 25.22/9.08 new_esEs4(xuu40002, xuu3002, ty_Char) -> new_esEs18(xuu40002, xuu3002) 25.22/9.08 new_compare13(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.22/9.08 new_compare13(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.22/9.08 new_lt22(xuu590, xuu600, ty_Int) -> new_lt9(xuu590, xuu600) 25.22/9.08 new_ltEs24(xuu592, xuu602, app(ty_Ratio, fhe)) -> new_ltEs11(xuu592, xuu602, fhe) 25.22/9.08 new_esEs39(xuu590, xuu600, ty_Ordering) -> new_esEs19(xuu590, xuu600) 25.22/9.08 new_esEs28(xuu400001, xuu30001, app(ty_Maybe, dgf)) -> new_esEs12(xuu400001, xuu30001, dgf) 25.22/9.08 new_lt19(xuu111, xuu113, app(app(app(ty_@3, cea), ceb), cec)) -> new_lt8(xuu111, xuu113, cea, ceb, cec) 25.22/9.08 new_lt6(xuu590, xuu600, ty_Float) -> new_lt17(xuu590, xuu600) 25.22/9.08 new_esEs39(xuu590, xuu600, ty_Integer) -> new_esEs23(xuu590, xuu600) 25.22/9.08 new_lt19(xuu111, xuu113, ty_@0) -> new_lt5(xuu111, xuu113) 25.22/9.08 new_compare28(True, True) -> EQ 25.22/9.08 new_esEs27(xuu400002, xuu30002, app(ty_[], dfe)) -> new_esEs24(xuu400002, xuu30002, dfe) 25.22/9.08 new_lt22(xuu590, xuu600, ty_Integer) -> new_lt18(xuu590, xuu600) 25.22/9.08 new_lt19(xuu111, xuu113, ty_Ordering) -> new_lt16(xuu111, xuu113) 25.22/9.08 new_esEs27(xuu400002, xuu30002, app(ty_Ratio, dfc)) -> new_esEs21(xuu400002, xuu30002, dfc) 25.22/9.08 new_esEs26(xuu590, xuu600, ty_Double) -> new_esEs25(xuu590, xuu600) 25.22/9.08 new_ltEs8(Left(xuu590), Left(xuu600), ty_Float, bdd) -> new_ltEs17(xuu590, xuu600) 25.22/9.08 new_ltEs8(Left(xuu590), Left(xuu600), ty_Integer, bdd) -> new_ltEs18(xuu590, xuu600) 25.22/9.08 new_ltEs8(Left(xuu590), Right(xuu600), bee, bdd) -> True 25.22/9.08 new_esEs24(:(xuu400000, xuu400001), :(xuu30000, xuu30001), eea) -> new_asAs(new_esEs33(xuu400000, xuu30000, eea), new_esEs24(xuu400001, xuu30001, eea)) 25.22/9.08 new_esEs28(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.22/9.08 new_lt19(xuu111, xuu113, ty_Int) -> new_lt9(xuu111, xuu113) 25.22/9.08 new_esEs37(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.22/9.08 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_Ratio, chc)) -> new_esEs21(xuu400000, xuu30000, chc) 25.22/9.08 new_esEs19(LT, GT) -> False 25.22/9.08 new_esEs19(GT, LT) -> False 25.22/9.08 new_ltEs4(xuu59, xuu60, app(ty_[], hc)) -> new_ltEs5(xuu59, xuu60, hc) 25.22/9.08 new_ltEs10(xuu59, xuu60) -> new_fsEs(new_compare6(xuu59, xuu60)) 25.22/9.08 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_Maybe, beb), bdd) -> new_ltEs13(xuu590, xuu600, beb) 25.22/9.08 new_esEs29(xuu400000, xuu30000, app(ty_Ratio, dhg)) -> new_esEs21(xuu400000, xuu30000, dhg) 25.22/9.08 new_lt22(xuu590, xuu600, ty_Float) -> new_lt17(xuu590, xuu600) 25.22/9.08 new_ltEs6(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, hg) -> new_pePe(new_lt22(xuu590, xuu600, bah), new_asAs(new_esEs39(xuu590, xuu600, bah), new_pePe(new_lt23(xuu591, xuu601, hf), new_asAs(new_esEs38(xuu591, xuu601, hf), new_ltEs24(xuu592, xuu602, hg))))) 25.22/9.08 new_esEs38(xuu591, xuu601, ty_Ordering) -> new_esEs19(xuu591, xuu601) 25.22/9.08 new_ltEs8(Left(xuu590), Left(xuu600), app(app(ty_@2, bec), bed), bdd) -> new_ltEs14(xuu590, xuu600, bec, bed) 25.22/9.08 new_ltEs21(xuu66, xuu67, app(ty_[], cfb)) -> new_ltEs5(xuu66, xuu67, cfb) 25.22/9.08 new_lt20(xuu98, xuu101, ty_Integer) -> new_lt18(xuu98, xuu101) 25.22/9.08 new_lt20(xuu98, xuu101, ty_Int) -> new_lt9(xuu98, xuu101) 25.22/9.08 new_primCompAux00(xuu34, xuu35, EQ, ty_Int) -> new_compare17(xuu34, xuu35) 25.22/9.08 new_lt20(xuu98, xuu101, ty_Char) -> new_lt4(xuu98, xuu101) 25.22/9.08 new_compare29(Nothing, Just(xuu3000), bh) -> LT 25.22/9.08 new_esEs37(xuu400000, xuu30000, app(app(ty_Either, ffd), ffe)) -> new_esEs17(xuu400000, xuu30000, ffd, ffe) 25.22/9.08 new_esEs30(xuu111, xuu113, ty_Double) -> new_esEs25(xuu111, xuu113) 25.22/9.08 new_esEs35(xuu98, xuu101, app(app(ty_Either, eb), ec)) -> new_esEs17(xuu98, xuu101, eb, ec) 25.22/9.08 new_lt23(xuu591, xuu601, ty_@0) -> new_lt5(xuu591, xuu601) 25.22/9.08 new_esEs35(xuu98, xuu101, ty_Integer) -> new_esEs23(xuu98, xuu101) 25.22/9.08 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Ordering, ebb) -> new_esEs19(xuu400000, xuu30000) 25.22/9.08 new_compare27(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Integer) -> new_compare9(new_sr0(xuu40000, xuu3001), new_sr0(xuu3000, xuu40001)) 25.22/9.08 new_esEs36(xuu400001, xuu30001, ty_Float) -> new_esEs20(xuu400001, xuu30001) 25.22/9.08 new_esEs25(Double(xuu400000, xuu400001), Double(xuu30000, xuu30001)) -> new_esEs16(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) 25.22/9.08 new_esEs35(xuu98, xuu101, ty_Char) -> new_esEs18(xuu98, xuu101) 25.22/9.08 new_ltEs4(xuu59, xuu60, ty_Float) -> new_ltEs17(xuu59, xuu60) 25.22/9.08 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_Ratio, fdd)) -> new_ltEs11(xuu590, xuu600, fdd) 25.22/9.08 new_primPlusNat1(Zero, Zero) -> Zero 25.22/9.08 new_ltEs4(xuu59, xuu60, ty_Integer) -> new_ltEs18(xuu59, xuu60) 25.22/9.08 new_primCompAux00(xuu34, xuu35, EQ, ty_Ordering) -> new_compare16(xuu34, xuu35) 25.22/9.08 new_primCompAux00(xuu34, xuu35, EQ, app(ty_Ratio, eec)) -> new_compare27(xuu34, xuu35, eec) 25.22/9.08 new_compare16(GT, GT) -> EQ 25.22/9.08 new_esEs32(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.22/9.08 new_compare0(xuu4000, xuu300, ty_Double) -> new_compare30(xuu4000, xuu300) 25.22/9.08 new_ltEs21(xuu66, xuu67, ty_Float) -> new_ltEs17(xuu66, xuu67) 25.22/9.08 new_lt9(xuu98, xuu101) -> new_esEs19(new_compare17(xuu98, xuu101), LT) 25.22/9.08 new_lt20(xuu98, xuu101, ty_@0) -> new_lt5(xuu98, xuu101) 25.22/9.08 new_esEs9(xuu40000, xuu3000, app(app(ty_@2, chf), chg)) -> new_esEs13(xuu40000, xuu3000, chf, chg) 25.22/9.08 new_esEs34(xuu99, xuu102, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs14(xuu99, xuu102, fa, fb, fc) 25.22/9.08 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Char, ebb) -> new_esEs18(xuu400000, xuu30000) 25.22/9.08 new_lt21(xuu99, xuu102, app(app(app(ty_@3, fa), fb), fc)) -> new_lt8(xuu99, xuu102, fa, fb, fc) 25.22/9.08 new_esEs15(False, True) -> False 25.22/9.08 new_esEs15(True, False) -> False 25.22/9.08 new_esEs31(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.22/9.08 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, app(app(ty_@2, ecd), ece)) -> new_esEs13(xuu400000, xuu30000, ecd, ece) 25.22/9.08 new_esEs34(xuu99, xuu102, ty_Bool) -> new_esEs15(xuu99, xuu102) 25.22/9.08 new_esEs10(xuu40001, xuu3001, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs14(xuu40001, xuu3001, dbb, dbc, dbd) 25.22/9.08 new_esEs35(xuu98, xuu101, ty_Ordering) -> new_esEs19(xuu98, xuu101) 25.22/9.08 new_lt4(xuu98, xuu101) -> new_esEs19(new_compare6(xuu98, xuu101), LT) 25.22/9.08 new_esEs11(xuu40000, xuu3000, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs14(xuu40000, xuu3000, dcd, dce, dcf) 25.22/9.08 new_esEs37(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.22/9.08 new_esEs10(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) 25.22/9.08 new_primCmpNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primCmpNat0(xuu400000, xuu30000) 25.22/9.08 new_lt21(xuu99, xuu102, ty_@0) -> new_lt5(xuu99, xuu102) 25.22/9.08 new_esEs30(xuu111, xuu113, ty_Int) -> new_esEs16(xuu111, xuu113) 25.22/9.08 new_lt19(xuu111, xuu113, ty_Char) -> new_lt4(xuu111, xuu113) 25.22/9.08 new_esEs38(xuu591, xuu601, ty_Float) -> new_esEs20(xuu591, xuu601) 25.22/9.08 new_lt5(xuu98, xuu101) -> new_esEs19(new_compare8(xuu98, xuu101), LT) 25.22/9.08 new_lt23(xuu591, xuu601, ty_Float) -> new_lt17(xuu591, xuu601) 25.22/9.08 new_esEs37(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.22/9.08 new_lt22(xuu590, xuu600, ty_@0) -> new_lt5(xuu590, xuu600) 25.22/9.08 new_esEs37(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.22/9.08 new_esEs36(xuu400001, xuu30001, ty_@0) -> new_esEs22(xuu400001, xuu30001) 25.22/9.08 new_lt23(xuu591, xuu601, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_lt8(xuu591, xuu601, bbb, bbc, bbd) 25.22/9.08 new_esEs11(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.22/9.08 new_esEs36(xuu400001, xuu30001, app(app(ty_Either, feb), fec)) -> new_esEs17(xuu400001, xuu30001, feb, fec) 25.22/9.08 new_esEs28(xuu400001, xuu30001, ty_Double) -> new_esEs25(xuu400001, xuu30001) 25.22/9.08 new_esEs37(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.22/9.08 new_compare211(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, df) -> new_compare112(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, new_lt20(xuu98, xuu101, eg), new_asAs(new_esEs35(xuu98, xuu101, eg), new_pePe(new_lt21(xuu99, xuu102, de), new_asAs(new_esEs34(xuu99, xuu102, de), new_ltEs23(xuu100, xuu103, df)))), eg, de, df) 25.22/9.08 new_ltEs20(xuu112, xuu114, app(ty_[], ccf)) -> new_ltEs5(xuu112, xuu114, ccf) 25.22/9.08 new_esEs36(xuu400001, xuu30001, ty_Char) -> new_esEs18(xuu400001, xuu30001) 25.22/9.08 new_compare110(xuu153, xuu154, True, fbf) -> LT 25.22/9.08 new_compare14(xuu144, xuu145, False, ehe, ehf) -> GT 25.22/9.08 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.22/9.08 new_ltEs20(xuu112, xuu114, ty_Float) -> new_ltEs17(xuu112, xuu114) 25.22/9.08 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(ty_@2, eah), eba), ebb) -> new_esEs13(xuu400000, xuu30000, eah, eba) 25.22/9.08 new_compare15(Right(xuu40000), Left(xuu3000), bf, bg) -> GT 25.22/9.08 new_lt22(xuu590, xuu600, app(app(app(ty_@3, hh), baa), bab)) -> new_lt8(xuu590, xuu600, hh, baa, bab) 25.22/9.08 new_lt6(xuu590, xuu600, ty_@0) -> new_lt5(xuu590, xuu600) 25.22/9.08 new_lt6(xuu590, xuu600, ty_Integer) -> new_lt18(xuu590, xuu600) 25.22/9.08 new_esEs33(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.22/9.08 new_ltEs13(Nothing, Just(xuu600), ddf) -> True 25.22/9.08 new_lt7(xuu98, xuu101, h) -> new_esEs19(new_compare18(xuu98, xuu101, h), LT) 25.22/9.08 new_lt21(xuu99, xuu102, ty_Integer) -> new_lt18(xuu99, xuu102) 25.22/9.08 new_esEs36(xuu400001, xuu30001, ty_Ordering) -> new_esEs19(xuu400001, xuu30001) 25.22/9.08 new_esEs28(xuu400001, xuu30001, app(ty_Ratio, dge)) -> new_esEs21(xuu400001, xuu30001, dge) 25.22/9.08 new_compare16(LT, EQ) -> LT 25.22/9.08 new_ltEs19(xuu591, xuu601, ty_Float) -> new_ltEs17(xuu591, xuu601) 25.22/9.08 new_esEs33(xuu400000, xuu30000, app(app(app(ty_@3, fad), fae), faf)) -> new_esEs14(xuu400000, xuu30000, fad, fae, faf) 25.22/9.08 new_esEs6(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.22/9.08 new_ltEs24(xuu592, xuu602, ty_Char) -> new_ltEs10(xuu592, xuu602) 25.22/9.08 new_primCmpInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> LT 25.22/9.08 new_lt22(xuu590, xuu600, app(ty_Maybe, bae)) -> new_lt13(xuu590, xuu600, bae) 25.22/9.08 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Bool, ebb) -> new_esEs15(xuu400000, xuu30000) 25.22/9.08 new_esEs37(xuu400000, xuu30000, app(ty_Maybe, ffg)) -> new_esEs12(xuu400000, xuu30000, ffg) 25.22/9.08 new_esEs34(xuu99, xuu102, ty_Char) -> new_esEs18(xuu99, xuu102) 25.22/9.08 new_ltEs7(xuu59, xuu60) -> new_fsEs(new_compare17(xuu59, xuu60)) 25.22/9.08 new_compare30(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.22/9.08 new_esEs9(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.22/9.08 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_Maybe, bge)) -> new_ltEs13(xuu590, xuu600, bge) 25.22/9.08 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_Ratio, ehh), bdd) -> new_ltEs11(xuu590, xuu600, ehh) 25.22/9.08 new_ltEs20(xuu112, xuu114, ty_Integer) -> new_ltEs18(xuu112, xuu114) 25.22/9.08 new_compare14(xuu144, xuu145, True, ehe, ehf) -> LT 25.22/9.08 new_esEs37(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.22/9.08 new_lt23(xuu591, xuu601, ty_Integer) -> new_lt18(xuu591, xuu601) 25.22/9.08 new_primCmpInt(Pos(Zero), Neg(Succ(xuu30000))) -> GT 25.22/9.08 new_esEs4(xuu40002, xuu3002, ty_Bool) -> new_esEs15(xuu40002, xuu3002) 25.22/9.08 new_lt19(xuu111, xuu113, app(app(ty_Either, ced), cee)) -> new_lt10(xuu111, xuu113, ced, cee) 25.22/9.08 new_compare18([], :(xuu3000, xuu3001), ba) -> LT 25.22/9.08 new_ltEs19(xuu591, xuu601, app(ty_[], cac)) -> new_ltEs5(xuu591, xuu601, cac) 25.22/9.08 new_ltEs22(xuu73, xuu74, app(ty_Ratio, eee)) -> new_ltEs11(xuu73, xuu74, eee) 25.22/9.08 new_primCmpInt(Neg(Succ(xuu400000)), Neg(xuu3000)) -> new_primCmpNat0(xuu3000, Succ(xuu400000)) 25.22/9.08 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.22/9.08 new_lt21(xuu99, xuu102, ty_Char) -> new_lt4(xuu99, xuu102) 25.22/9.08 new_esEs4(xuu40002, xuu3002, app(app(ty_@2, fbg), fbh)) -> new_esEs13(xuu40002, xuu3002, fbg, fbh) 25.22/9.08 new_esEs27(xuu400002, xuu30002, ty_Double) -> new_esEs25(xuu400002, xuu30002) 25.22/9.08 new_compare12(xuu185, xuu186, xuu187, xuu188, True, eab, eac) -> LT 25.22/9.08 new_esEs9(xuu40000, xuu3000, app(ty_Ratio, dae)) -> new_esEs21(xuu40000, xuu3000, dae) 25.22/9.08 new_esEs10(xuu40001, xuu3001, app(app(ty_@2, dah), dba)) -> new_esEs13(xuu40001, xuu3001, dah, dba) 25.22/9.08 new_esEs27(xuu400002, xuu30002, app(ty_Maybe, dfd)) -> new_esEs12(xuu400002, xuu30002, dfd) 25.22/9.08 new_ltEs22(xuu73, xuu74, app(app(ty_@2, ccc), ccd)) -> new_ltEs14(xuu73, xuu74, ccc, ccd) 25.22/9.08 new_esEs8(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.22/9.08 new_esEs15(False, False) -> True 25.22/9.08 new_ltEs20(xuu112, xuu114, ty_Bool) -> new_ltEs12(xuu112, xuu114) 25.22/9.08 new_esEs33(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.22/9.08 new_primEqInt(Pos(Succ(xuu4000000)), Pos(Zero)) -> False 25.22/9.08 new_primEqInt(Pos(Zero), Pos(Succ(xuu300000))) -> False 25.22/9.08 new_lt6(xuu590, xuu600, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_lt8(xuu590, xuu600, bhb, bhc, bhd) 25.22/9.08 new_ltEs8(Right(xuu590), Right(xuu600), bee, ty_Ordering) -> new_ltEs16(xuu590, xuu600) 25.22/9.08 new_esEs29(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.22/9.08 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Integer, ebb) -> new_esEs23(xuu400000, xuu30000) 25.22/9.08 new_ltEs20(xuu112, xuu114, app(app(ty_Either, cdb), cdc)) -> new_ltEs8(xuu112, xuu114, cdb, cdc) 25.22/9.08 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.22/9.08 new_ltEs23(xuu100, xuu103, ty_Float) -> new_ltEs17(xuu100, xuu103) 25.22/9.08 new_ltEs13(Just(xuu590), Just(xuu600), ty_Char) -> new_ltEs10(xuu590, xuu600) 25.22/9.08 new_esEs39(xuu590, xuu600, ty_Char) -> new_esEs18(xuu590, xuu600) 25.22/9.08 new_primCmpNat0(Zero, Zero) -> EQ 25.22/9.08 new_esEs10(xuu40001, xuu3001, app(app(ty_Either, dbe), dbf)) -> new_esEs17(xuu40001, xuu3001, dbe, dbf) 25.22/9.08 new_lt6(xuu590, xuu600, ty_Int) -> new_lt9(xuu590, xuu600) 25.22/9.08 new_ltEs16(GT, EQ) -> False 25.22/9.08 new_primCompAux00(xuu34, xuu35, EQ, app(ty_Maybe, db)) -> new_compare29(xuu34, xuu35, db) 25.22/9.08 new_lt23(xuu591, xuu601, app(ty_[], bba)) -> new_lt7(xuu591, xuu601, bba) 25.22/9.08 new_lt20(xuu98, xuu101, ty_Ordering) -> new_lt16(xuu98, xuu101) 25.22/9.08 new_esEs4(xuu40002, xuu3002, app(ty_[], fch)) -> new_esEs24(xuu40002, xuu3002, fch) 25.22/9.08 new_ltEs20(xuu112, xuu114, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs6(xuu112, xuu114, ccg, cch, cda) 25.22/9.08 new_esEs35(xuu98, xuu101, ty_Bool) -> new_esEs15(xuu98, xuu101) 25.22/9.08 new_lt11(xuu98, xuu101, fda) -> new_esEs19(new_compare27(xuu98, xuu101, fda), LT) 25.22/9.08 new_esEs27(xuu400002, xuu30002, ty_Ordering) -> new_esEs19(xuu400002, xuu30002) 25.22/9.08 new_ltEs13(Just(xuu590), Just(xuu600), ty_Double) -> new_ltEs15(xuu590, xuu600) 25.22/9.08 new_esEs37(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.22/9.08 new_compare13(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.22/9.08 new_esEs29(xuu400000, xuu30000, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs14(xuu400000, xuu30000, dhb, dhc, dhd) 25.22/9.08 new_ltEs22(xuu73, xuu74, ty_Int) -> new_ltEs7(xuu73, xuu74) 25.22/9.08 new_lt12(xuu98, xuu101) -> new_esEs19(new_compare28(xuu98, xuu101), LT) 25.22/9.08 new_lt22(xuu590, xuu600, ty_Double) -> new_lt15(xuu590, xuu600) 25.22/9.08 new_compare11(xuu185, xuu186, xuu187, xuu188, True, xuu190, eab, eac) -> new_compare12(xuu185, xuu186, xuu187, xuu188, True, eab, eac) 25.22/9.08 new_esEs4(xuu40002, xuu3002, app(app(ty_Either, fcd), fce)) -> new_esEs17(xuu40002, xuu3002, fcd, fce) 25.22/9.08 new_esEs27(xuu400002, xuu30002, ty_Int) -> new_esEs16(xuu400002, xuu30002) 25.22/9.08 new_ltEs24(xuu592, xuu602, ty_Double) -> new_ltEs15(xuu592, xuu602) 25.22/9.08 new_esEs36(xuu400001, xuu30001, app(app(app(ty_@3, fdg), fdh), fea)) -> new_esEs14(xuu400001, xuu30001, fdg, fdh, fea) 25.22/9.08 new_ltEs16(LT, LT) -> True 25.22/9.08 new_lt23(xuu591, xuu601, ty_Bool) -> new_lt12(xuu591, xuu601) 25.22/9.08 new_compare16(LT, GT) -> LT 25.22/9.08 new_esEs23(Integer(xuu400000), Integer(xuu30000)) -> new_primEqInt(xuu400000, xuu30000) 25.22/9.08 new_esEs37(xuu400000, xuu30000, app(ty_Ratio, fff)) -> new_esEs21(xuu400000, xuu30000, fff) 25.22/9.08 new_esEs39(xuu590, xuu600, ty_@0) -> new_esEs22(xuu590, xuu600) 25.38/9.08 new_ltEs13(Just(xuu590), Just(xuu600), ty_@0) -> new_ltEs9(xuu590, xuu600) 25.38/9.08 new_esEs9(xuu40000, xuu3000, app(ty_[], dag)) -> new_esEs24(xuu40000, xuu3000, dag) 25.38/9.08 new_lt21(xuu99, xuu102, ty_Float) -> new_lt17(xuu99, xuu102) 25.38/9.08 new_esEs9(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.08 new_compare25(xuu59, xuu60, False, ddd, hd) -> new_compare10(xuu59, xuu60, new_ltEs4(xuu59, xuu60, ddd), ddd, hd) 25.38/9.08 new_esEs4(xuu40002, xuu3002, ty_Integer) -> new_esEs23(xuu40002, xuu3002) 25.38/9.08 new_esEs9(xuu40000, xuu3000, app(app(ty_Either, dac), dad)) -> new_esEs17(xuu40000, xuu3000, dac, dad) 25.38/9.08 new_esEs11(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.08 new_esEs5(xuu40001, xuu3001, ty_Float) -> new_esEs20(xuu40001, xuu3001) 25.38/9.08 new_esEs9(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.08 new_esEs10(xuu40001, xuu3001, app(ty_Ratio, dbg)) -> new_esEs21(xuu40001, xuu3001, dbg) 25.38/9.08 new_primCmpNat0(Succ(xuu400000), Zero) -> GT 25.38/9.08 new_pePe(False, xuu206) -> xuu206 25.38/9.08 new_esEs39(xuu590, xuu600, app(app(app(ty_@3, hh), baa), bab)) -> new_esEs14(xuu590, xuu600, hh, baa, bab) 25.38/9.08 new_esEs11(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.08 new_lt13(xuu98, xuu101, ed) -> new_esEs19(new_compare29(xuu98, xuu101, ed), LT) 25.38/9.08 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.08 new_esEs8(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.08 new_compare25(xuu59, xuu60, True, ddd, hd) -> EQ 25.38/9.08 new_ltEs22(xuu73, xuu74, ty_Double) -> new_ltEs15(xuu73, xuu74) 25.38/9.08 new_esEs10(xuu40001, xuu3001, app(ty_[], dca)) -> new_esEs24(xuu40001, xuu3001, dca) 25.38/9.08 new_compare210(xuu73, xuu74, True, eed) -> EQ 25.38/9.08 new_ltEs8(Right(xuu590), Right(xuu600), bee, ty_Integer) -> new_ltEs18(xuu590, xuu600) 25.38/9.08 new_esEs4(xuu40002, xuu3002, ty_Ordering) -> new_esEs19(xuu40002, xuu3002) 25.38/9.08 new_ltEs16(LT, GT) -> True 25.38/9.08 new_esEs30(xuu111, xuu113, app(app(ty_@2, ceg), ceh)) -> new_esEs13(xuu111, xuu113, ceg, ceh) 25.38/9.08 new_esEs5(xuu40001, xuu3001, ty_@0) -> new_esEs22(xuu40001, xuu3001) 25.38/9.08 new_compare0(xuu4000, xuu300, ty_Ordering) -> new_compare16(xuu4000, xuu300) 25.38/9.08 new_esEs30(xuu111, xuu113, app(app(ty_Either, ced), cee)) -> new_esEs17(xuu111, xuu113, ced, cee) 25.38/9.08 new_esEs6(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.08 new_ltEs16(LT, EQ) -> True 25.38/9.08 new_ltEs16(EQ, LT) -> False 25.38/9.08 new_lt6(xuu590, xuu600, app(ty_Maybe, bhg)) -> new_lt13(xuu590, xuu600, bhg) 25.38/9.08 new_esEs35(xuu98, xuu101, app(ty_Ratio, fda)) -> new_esEs21(xuu98, xuu101, fda) 25.38/9.08 new_esEs30(xuu111, xuu113, ty_Bool) -> new_esEs15(xuu111, xuu113) 25.38/9.08 new_lt14(xuu98, xuu101, ee, ef) -> new_esEs19(new_compare7(xuu98, xuu101, ee, ef), LT) 25.38/9.08 new_primEqInt(Pos(Zero), Neg(Succ(xuu300000))) -> False 25.38/9.08 new_primEqInt(Neg(Zero), Pos(Succ(xuu300000))) -> False 25.38/9.08 new_ltEs16(GT, LT) -> False 25.38/9.08 new_esEs7(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.08 new_esEs34(xuu99, xuu102, ty_Int) -> new_esEs16(xuu99, xuu102) 25.38/9.08 new_compare16(EQ, EQ) -> EQ 25.38/9.08 new_esEs10(xuu40001, xuu3001, ty_Integer) -> new_esEs23(xuu40001, xuu3001) 25.38/9.08 new_ltEs17(xuu59, xuu60) -> new_fsEs(new_compare13(xuu59, xuu60)) 25.38/9.08 new_esEs29(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.08 new_ltEs22(xuu73, xuu74, ty_@0) -> new_ltEs9(xuu73, xuu74) 25.38/9.08 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Int, ebb) -> new_esEs16(xuu400000, xuu30000) 25.38/9.08 new_esEs37(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.08 new_esEs30(xuu111, xuu113, ty_Integer) -> new_esEs23(xuu111, xuu113) 25.38/9.08 new_esEs5(xuu40001, xuu3001, app(app(app(ty_@3, fgc), fgd), fge)) -> new_esEs14(xuu40001, xuu3001, fgc, fgd, fge) 25.38/9.08 new_ltEs24(xuu592, xuu602, app(ty_[], bcb)) -> new_ltEs5(xuu592, xuu602, bcb) 25.38/9.08 new_lt19(xuu111, xuu113, ty_Float) -> new_lt17(xuu111, xuu113) 25.38/9.08 new_esEs24(:(xuu400000, xuu400001), [], eea) -> False 25.38/9.08 new_esEs24([], :(xuu30000, xuu30001), eea) -> False 25.38/9.08 new_compare24(xuu111, xuu112, xuu113, xuu114, False, cce, cdh) -> new_compare11(xuu111, xuu112, xuu113, xuu114, new_lt19(xuu111, xuu113, cce), new_asAs(new_esEs30(xuu111, xuu113, cce), new_ltEs20(xuu112, xuu114, cdh)), cce, cdh) 25.38/9.08 new_ltEs8(Right(xuu590), Right(xuu600), bee, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs6(xuu590, xuu600, beg, beh, bfa) 25.38/9.08 new_compare26(xuu66, xuu67, False, cfa, eaf) -> new_compare14(xuu66, xuu67, new_ltEs21(xuu66, xuu67, eaf), cfa, eaf) 25.38/9.08 new_compare0(xuu4000, xuu300, app(ty_Ratio, ehg)) -> new_compare27(xuu4000, xuu300, ehg) 25.38/9.08 new_esEs16(xuu40000, xuu3000) -> new_primEqInt(xuu40000, xuu3000) 25.38/9.08 new_esEs19(EQ, EQ) -> True 25.38/9.08 new_esEs7(xuu40000, xuu3000, app(app(ty_Either, eff), efg)) -> new_esEs17(xuu40000, xuu3000, eff, efg) 25.38/9.08 new_lt20(xuu98, xuu101, ty_Bool) -> new_lt12(xuu98, xuu101) 25.38/9.08 new_ltEs16(EQ, GT) -> True 25.38/9.08 new_esEs20(Float(xuu400000, xuu400001), Float(xuu30000, xuu30001)) -> new_esEs16(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) 25.38/9.08 new_esEs30(xuu111, xuu113, app(ty_[], cdg)) -> new_esEs24(xuu111, xuu113, cdg) 25.38/9.08 new_ltEs8(Right(xuu590), Right(xuu600), bee, app(app(ty_Either, bfb), bfc)) -> new_ltEs8(xuu590, xuu600, bfb, bfc) 25.38/9.08 new_ltEs16(EQ, EQ) -> True 25.38/9.08 new_esEs27(xuu400002, xuu30002, ty_Bool) -> new_esEs15(xuu400002, xuu30002) 25.38/9.08 new_esEs32(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.08 new_lt21(xuu99, xuu102, app(app(ty_Either, fd), ff)) -> new_lt10(xuu99, xuu102, fd, ff) 25.38/9.08 new_compare28(True, False) -> GT 25.38/9.08 new_esEs6(xuu40000, xuu3000, app(app(ty_Either, ecc), ebb)) -> new_esEs17(xuu40000, xuu3000, ecc, ebb) 25.38/9.08 new_esEs26(xuu590, xuu600, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs14(xuu590, xuu600, bhb, bhc, bhd) 25.38/9.08 new_ltEs8(Left(xuu590), Left(xuu600), ty_Bool, bdd) -> new_ltEs12(xuu590, xuu600) 25.38/9.08 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs14(xuu400000, xuu30000, cgf, cgg, cgh) 25.38/9.08 new_esEs28(xuu400001, xuu30001, app(app(ty_@2, dff), dfg)) -> new_esEs13(xuu400001, xuu30001, dff, dfg) 25.38/9.08 new_lt21(xuu99, xuu102, ty_Bool) -> new_lt12(xuu99, xuu102) 25.38/9.08 new_esEs28(xuu400001, xuu30001, ty_Bool) -> new_esEs15(xuu400001, xuu30001) 25.38/9.08 new_esEs6(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.08 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.08 new_lt8(xuu98, xuu101, dg, dh, ea) -> new_esEs19(new_compare19(xuu98, xuu101, dg, dh, ea), LT) 25.38/9.08 new_ltEs23(xuu100, xuu103, ty_Integer) -> new_ltEs18(xuu100, xuu103) 25.38/9.08 new_primCompAux00(xuu34, xuu35, EQ, ty_Integer) -> new_compare9(xuu34, xuu35) 25.38/9.08 new_ltEs20(xuu112, xuu114, app(app(ty_@2, cde), cdf)) -> new_ltEs14(xuu112, xuu114, cde, cdf) 25.38/9.08 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.08 new_ltEs20(xuu112, xuu114, ty_Ordering) -> new_ltEs16(xuu112, xuu114) 25.38/9.08 new_ltEs8(Right(xuu590), Right(xuu600), bee, ty_Int) -> new_ltEs7(xuu590, xuu600) 25.38/9.08 new_esEs7(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.08 new_esEs6(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.08 new_lt23(xuu591, xuu601, ty_Ordering) -> new_lt16(xuu591, xuu601) 25.38/9.08 new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, eef, eeg, eeh) -> LT 25.38/9.08 new_primMulInt(Neg(xuu30000), Neg(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.08 new_primCmpInt(Pos(Zero), Pos(Succ(xuu30000))) -> new_primCmpNat0(Zero, Succ(xuu30000)) 25.38/9.08 new_esEs9(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.08 new_ltEs22(xuu73, xuu74, ty_Integer) -> new_ltEs18(xuu73, xuu74) 25.38/9.08 new_esEs34(xuu99, xuu102, ty_Double) -> new_esEs25(xuu99, xuu102) 25.38/9.08 new_fsEs(xuu207) -> new_not(new_esEs19(xuu207, GT)) 25.38/9.08 new_compare210(xuu73, xuu74, False, eed) -> new_compare110(xuu73, xuu74, new_ltEs22(xuu73, xuu74, eed), eed) 25.38/9.08 new_esEs34(xuu99, xuu102, app(ty_Ratio, fdb)) -> new_esEs21(xuu99, xuu102, fdb) 25.38/9.08 new_esEs6(xuu40000, xuu3000, app(ty_[], eea)) -> new_esEs24(xuu40000, xuu3000, eea) 25.38/9.08 new_compare0(xuu4000, xuu300, ty_Integer) -> new_compare9(xuu4000, xuu300) 25.38/9.08 new_primMulInt(Pos(xuu30000), Neg(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.08 new_primMulInt(Neg(xuu30000), Pos(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.08 new_esEs34(xuu99, xuu102, app(ty_[], eh)) -> new_esEs24(xuu99, xuu102, eh) 25.38/9.08 new_ltEs21(xuu66, xuu67, app(ty_Maybe, cfh)) -> new_ltEs13(xuu66, xuu67, cfh) 25.38/9.08 new_primCompAux00(xuu34, xuu35, EQ, app(ty_[], cc)) -> new_compare18(xuu34, xuu35, cc) 25.38/9.08 new_esEs8(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.08 new_esEs28(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.38/9.08 new_esEs8(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.08 new_lt15(xuu98, xuu101) -> new_esEs19(new_compare30(xuu98, xuu101), LT) 25.38/9.08 new_esEs27(xuu400002, xuu30002, ty_@0) -> new_esEs22(xuu400002, xuu30002) 25.38/9.08 new_ltEs23(xuu100, xuu103, ty_Ordering) -> new_ltEs16(xuu100, xuu103) 25.38/9.08 new_ltEs22(xuu73, xuu74, app(app(ty_Either, cbh), cca)) -> new_ltEs8(xuu73, xuu74, cbh, cca) 25.38/9.08 new_sr0(Integer(xuu30000), Integer(xuu400010)) -> Integer(new_primMulInt(xuu30000, xuu400010)) 25.38/9.08 new_lt20(xuu98, xuu101, app(ty_[], h)) -> new_lt7(xuu98, xuu101, h) 25.38/9.08 new_esEs30(xuu111, xuu113, ty_Ordering) -> new_esEs19(xuu111, xuu113) 25.38/9.08 new_lt6(xuu590, xuu600, app(app(ty_Either, bhe), bhf)) -> new_lt10(xuu590, xuu600, bhe, bhf) 25.38/9.08 new_esEs35(xuu98, xuu101, ty_Double) -> new_esEs25(xuu98, xuu101) 25.38/9.08 new_esEs38(xuu591, xuu601, app(app(ty_@2, bbh), bca)) -> new_esEs13(xuu591, xuu601, bbh, bca) 25.38/9.08 new_esEs8(xuu40000, xuu3000, app(ty_Maybe, ehc)) -> new_esEs12(xuu40000, xuu3000, ehc) 25.38/9.08 new_asAs(True, xuu132) -> xuu132 25.38/9.08 new_ltEs23(xuu100, xuu103, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs6(xuu100, xuu103, gc, gd, ge) 25.38/9.08 new_esEs22(@0, @0) -> True 25.38/9.08 new_compare30(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.08 new_compare30(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.08 new_lt6(xuu590, xuu600, app(ty_Ratio, ddg)) -> new_lt11(xuu590, xuu600, ddg) 25.38/9.08 new_lt19(xuu111, xuu113, app(ty_[], cdg)) -> new_lt7(xuu111, xuu113, cdg) 25.38/9.08 new_lt6(xuu590, xuu600, app(app(ty_@2, bhh), caa)) -> new_lt14(xuu590, xuu600, bhh, caa) 25.38/9.08 new_esEs26(xuu590, xuu600, ty_Char) -> new_esEs18(xuu590, xuu600) 25.38/9.08 new_ltEs19(xuu591, xuu601, ty_Double) -> new_ltEs15(xuu591, xuu601) 25.38/9.08 new_esEs29(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.08 new_ltEs8(Left(xuu590), Left(xuu600), ty_Int, bdd) -> new_ltEs7(xuu590, xuu600) 25.38/9.08 new_ltEs20(xuu112, xuu114, app(ty_Ratio, ead)) -> new_ltEs11(xuu112, xuu114, ead) 25.38/9.08 new_compare211(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, True, eg, de, df) -> EQ 25.38/9.08 new_compare12(xuu185, xuu186, xuu187, xuu188, False, eab, eac) -> GT 25.38/9.08 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Double, ebb) -> new_esEs25(xuu400000, xuu30000) 25.38/9.08 new_esEs33(xuu400000, xuu30000, app(app(ty_@2, fab), fac)) -> new_esEs13(xuu400000, xuu30000, fab, fac) 25.38/9.08 new_esEs8(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.08 new_ltEs22(xuu73, xuu74, ty_Char) -> new_ltEs10(xuu73, xuu74) 25.38/9.08 new_sr(xuu3000, xuu40001) -> new_primMulInt(xuu3000, xuu40001) 25.38/9.08 new_esEs39(xuu590, xuu600, app(ty_[], he)) -> new_esEs24(xuu590, xuu600, he) 25.38/9.08 new_ltEs16(GT, GT) -> True 25.38/9.08 new_esEs38(xuu591, xuu601, app(ty_Ratio, fhd)) -> new_esEs21(xuu591, xuu601, fhd) 25.38/9.08 new_esEs28(xuu400001, xuu30001, ty_Ordering) -> new_esEs19(xuu400001, xuu30001) 25.38/9.08 new_primMulNat0(Zero, Zero) -> Zero 25.38/9.08 new_esEs4(xuu40002, xuu3002, ty_Int) -> new_esEs16(xuu40002, xuu3002) 25.38/9.08 new_esEs7(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.08 new_esEs8(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.08 new_esEs27(xuu400002, xuu30002, app(app(ty_Either, dfa), dfb)) -> new_esEs17(xuu400002, xuu30002, dfa, dfb) 25.38/9.08 new_compare0(xuu4000, xuu300, app(app(app(ty_@3, bc), bd), be)) -> new_compare19(xuu4000, xuu300, bc, bd, be) 25.38/9.08 new_ltEs8(Right(xuu590), Right(xuu600), bee, ty_@0) -> new_ltEs9(xuu590, xuu600) 25.38/9.08 new_ltEs13(Just(xuu590), Just(xuu600), ty_Ordering) -> new_ltEs16(xuu590, xuu600) 25.38/9.08 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_[], bdc), bdd) -> new_ltEs5(xuu590, xuu600, bdc) 25.38/9.08 new_esEs7(xuu40000, xuu3000, app(app(app(ty_@3, efc), efd), efe)) -> new_esEs14(xuu40000, xuu3000, efc, efd, efe) 25.38/9.08 new_esEs4(xuu40002, xuu3002, app(ty_Maybe, fcg)) -> new_esEs12(xuu40002, xuu3002, fcg) 25.38/9.08 new_esEs38(xuu591, xuu601, app(ty_[], bba)) -> new_esEs24(xuu591, xuu601, bba) 25.38/9.08 new_ltEs19(xuu591, xuu601, app(ty_Maybe, cba)) -> new_ltEs13(xuu591, xuu601, cba) 25.38/9.08 new_ltEs4(xuu59, xuu60, ty_Bool) -> new_ltEs12(xuu59, xuu60) 25.38/9.08 new_esEs36(xuu400001, xuu30001, ty_Double) -> new_esEs25(xuu400001, xuu30001) 25.38/9.08 new_ltEs8(Right(xuu590), Right(xuu600), bee, app(ty_[], bef)) -> new_ltEs5(xuu590, xuu600, bef) 25.38/9.08 new_lt22(xuu590, xuu600, app(app(ty_Either, bac), bad)) -> new_lt10(xuu590, xuu600, bac, bad) 25.38/9.08 new_ltEs19(xuu591, xuu601, app(ty_Ratio, ddh)) -> new_ltEs11(xuu591, xuu601, ddh) 25.38/9.08 new_lt23(xuu591, xuu601, app(app(ty_@2, bbh), bca)) -> new_lt14(xuu591, xuu601, bbh, bca) 25.38/9.08 new_esEs28(xuu400001, xuu30001, app(app(ty_Either, dgc), dgd)) -> new_esEs17(xuu400001, xuu30001, dgc, dgd) 25.38/9.08 new_esEs30(xuu111, xuu113, ty_Float) -> new_esEs20(xuu111, xuu113) 25.38/9.08 new_lt16(xuu98, xuu101) -> new_esEs19(new_compare16(xuu98, xuu101), LT) 25.38/9.08 new_compare16(EQ, GT) -> LT 25.38/9.08 new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, False, eef, eeg, eeh) -> GT 25.38/9.08 new_esEs39(xuu590, xuu600, app(ty_Maybe, bae)) -> new_esEs12(xuu590, xuu600, bae) 25.38/9.08 new_lt23(xuu591, xuu601, app(app(ty_Either, bbe), bbf)) -> new_lt10(xuu591, xuu601, bbe, bbf) 25.38/9.08 new_ltEs4(xuu59, xuu60, ty_Char) -> new_ltEs10(xuu59, xuu60) 25.38/9.08 new_esEs28(xuu400001, xuu30001, ty_@0) -> new_esEs22(xuu400001, xuu30001) 25.38/9.08 new_primEqInt(Neg(Succ(xuu4000000)), Neg(Zero)) -> False 25.38/9.08 new_primEqInt(Neg(Zero), Neg(Succ(xuu300000))) -> False 25.38/9.08 new_esEs12(Just(xuu400000), Just(xuu30000), ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.08 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.08 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, app(ty_Maybe, edd)) -> new_esEs12(xuu400000, xuu30000, edd) 25.38/9.08 new_esEs29(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.08 new_primEqInt(Pos(Succ(xuu4000000)), Pos(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) 25.38/9.08 new_esEs21(:%(xuu400000, xuu400001), :%(xuu30000, xuu30001), edh) -> new_asAs(new_esEs32(xuu400000, xuu30000, edh), new_esEs31(xuu400001, xuu30001, edh)) 25.38/9.08 new_esEs39(xuu590, xuu600, ty_Int) -> new_esEs16(xuu590, xuu600) 25.38/9.08 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(ty_Either, cha), chb)) -> new_esEs17(xuu400000, xuu30000, cha, chb) 25.38/9.08 new_esEs6(xuu40000, xuu3000, app(app(app(ty_@3, dea), deb), dec)) -> new_esEs14(xuu40000, xuu3000, dea, deb, dec) 25.38/9.08 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_[], bfg)) -> new_ltEs5(xuu590, xuu600, bfg) 25.38/9.08 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.08 new_lt22(xuu590, xuu600, app(app(ty_@2, baf), bag)) -> new_lt14(xuu590, xuu600, baf, bag) 25.38/9.08 new_esEs37(xuu400000, xuu30000, app(app(ty_@2, feg), feh)) -> new_esEs13(xuu400000, xuu30000, feg, feh) 25.38/9.08 new_ltEs4(xuu59, xuu60, ty_Double) -> new_ltEs15(xuu59, xuu60) 25.38/9.08 new_esEs33(xuu400000, xuu30000, app(ty_[], fbc)) -> new_esEs24(xuu400000, xuu30000, fbc) 25.38/9.08 new_primEqInt(Pos(Succ(xuu4000000)), Neg(xuu30000)) -> False 25.38/9.08 new_primEqInt(Neg(Succ(xuu4000000)), Pos(xuu30000)) -> False 25.38/9.08 new_esEs6(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.08 new_esEs9(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.08 new_primCmpInt(Neg(Zero), Neg(Succ(xuu30000))) -> new_primCmpNat0(Succ(xuu30000), Zero) 25.38/9.08 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.08 new_esEs7(xuu40000, xuu3000, app(ty_Ratio, efh)) -> new_esEs21(xuu40000, xuu3000, efh) 25.38/9.08 new_ltEs8(Right(xuu590), Right(xuu600), bee, ty_Char) -> new_ltEs10(xuu590, xuu600) 25.38/9.08 new_compare0(xuu4000, xuu300, ty_@0) -> new_compare8(xuu4000, xuu300) 25.38/9.08 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.38/9.08 new_ltEs22(xuu73, xuu74, ty_Ordering) -> new_ltEs16(xuu73, xuu74) 25.38/9.08 new_lt23(xuu591, xuu601, app(ty_Ratio, fhd)) -> new_lt11(xuu591, xuu601, fhd) 25.38/9.08 new_compare19(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bc, bd, be) -> new_compare211(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs6(xuu40000, xuu3000, bc), new_asAs(new_esEs5(xuu40001, xuu3001, bd), new_esEs4(xuu40002, xuu3002, be))), bc, bd, be) 25.38/9.08 new_esEs27(xuu400002, xuu30002, ty_Char) -> new_esEs18(xuu400002, xuu30002) 25.38/9.08 new_ltEs23(xuu100, xuu103, ty_Bool) -> new_ltEs12(xuu100, xuu103) 25.38/9.08 new_primCompAux00(xuu34, xuu35, LT, eeb) -> LT 25.38/9.08 new_esEs26(xuu590, xuu600, ty_@0) -> new_esEs22(xuu590, xuu600) 25.38/9.08 new_esEs6(xuu40000, xuu3000, app(ty_Ratio, edh)) -> new_esEs21(xuu40000, xuu3000, edh) 25.38/9.08 new_esEs5(xuu40001, xuu3001, ty_Double) -> new_esEs25(xuu40001, xuu3001) 25.38/9.08 new_ltEs23(xuu100, xuu103, ty_Char) -> new_ltEs10(xuu100, xuu103) 25.38/9.08 new_primPlusNat0(xuu219, xuu4000100) -> new_primPlusNat1(xuu219, Succ(xuu4000100)) 25.38/9.08 new_not(False) -> True 25.38/9.08 new_ltEs13(Just(xuu590), Just(xuu600), ty_Float) -> new_ltEs17(xuu590, xuu600) 25.38/9.08 new_ltEs24(xuu592, xuu602, ty_@0) -> new_ltEs9(xuu592, xuu602) 25.38/9.08 new_esEs9(xuu40000, xuu3000, app(ty_Maybe, daf)) -> new_esEs12(xuu40000, xuu3000, daf) 25.38/9.08 new_esEs35(xuu98, xuu101, app(ty_[], h)) -> new_esEs24(xuu98, xuu101, h) 25.38/9.08 new_ltEs24(xuu592, xuu602, app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs6(xuu592, xuu602, bcc, bcd, bce) 25.38/9.08 new_ltEs21(xuu66, xuu67, ty_Bool) -> new_ltEs12(xuu66, xuu67) 25.38/9.08 new_compare0(xuu4000, xuu300, app(ty_Maybe, bh)) -> new_compare29(xuu4000, xuu300, bh) 25.38/9.08 new_ltEs13(Just(xuu590), Just(xuu600), ty_Integer) -> new_ltEs18(xuu590, xuu600) 25.38/9.08 new_esEs27(xuu400002, xuu30002, ty_Integer) -> new_esEs23(xuu400002, xuu30002) 25.38/9.08 new_esEs7(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.08 new_ltEs24(xuu592, xuu602, ty_Ordering) -> new_ltEs16(xuu592, xuu602) 25.38/9.08 new_esEs28(xuu400001, xuu30001, ty_Float) -> new_esEs20(xuu400001, xuu30001) 25.38/9.08 new_compare112(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, False, xuu177, eef, eeg, eeh) -> new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, xuu177, eef, eeg, eeh) 25.38/9.08 new_ltEs8(Right(xuu590), Right(xuu600), bee, ty_Bool) -> new_ltEs12(xuu590, xuu600) 25.38/9.08 new_esEs37(xuu400000, xuu30000, app(ty_[], ffh)) -> new_esEs24(xuu400000, xuu30000, ffh) 25.38/9.08 new_compare29(Nothing, Nothing, bh) -> EQ 25.38/9.08 new_ltEs23(xuu100, xuu103, app(app(ty_Either, gf), gg)) -> new_ltEs8(xuu100, xuu103, gf, gg) 25.38/9.08 new_ltEs19(xuu591, xuu601, ty_Int) -> new_ltEs7(xuu591, xuu601) 25.38/9.08 new_lt22(xuu590, xuu600, app(ty_Ratio, fhc)) -> new_lt11(xuu590, xuu600, fhc) 25.38/9.08 new_ltEs19(xuu591, xuu601, ty_Char) -> new_ltEs10(xuu591, xuu601) 25.38/9.08 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(ty_Either, ebf), ebg), ebb) -> new_esEs17(xuu400000, xuu30000, ebf, ebg) 25.38/9.08 new_lt6(xuu590, xuu600, ty_Double) -> new_lt15(xuu590, xuu600) 25.38/9.08 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.38/9.08 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.38/9.08 new_lt21(xuu99, xuu102, ty_Double) -> new_lt15(xuu99, xuu102) 25.38/9.08 new_esEs26(xuu590, xuu600, app(app(ty_Either, bhe), bhf)) -> new_esEs17(xuu590, xuu600, bhe, bhf) 25.38/9.08 new_ltEs20(xuu112, xuu114, ty_Int) -> new_ltEs7(xuu112, xuu114) 25.38/9.08 new_ltEs22(xuu73, xuu74, app(ty_Maybe, ccb)) -> new_ltEs13(xuu73, xuu74, ccb) 25.38/9.08 new_esEs5(xuu40001, xuu3001, ty_Int) -> new_esEs16(xuu40001, xuu3001) 25.38/9.08 new_lt6(xuu590, xuu600, app(ty_[], bgh)) -> new_lt7(xuu590, xuu600, bgh) 25.38/9.08 new_ltEs21(xuu66, xuu67, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs6(xuu66, xuu67, cfc, cfd, cfe) 25.38/9.08 new_lt20(xuu98, xuu101, app(ty_Ratio, fda)) -> new_lt11(xuu98, xuu101, fda) 25.38/9.08 new_ltEs8(Left(xuu590), Left(xuu600), app(app(app(ty_@3, bde), bdf), bdg), bdd) -> new_ltEs6(xuu590, xuu600, bde, bdf, bdg) 25.38/9.08 new_compare0(xuu4000, xuu300, ty_Bool) -> new_compare28(xuu4000, xuu300) 25.38/9.08 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.38/9.08 new_primMulNat0(Succ(xuu300000), Succ(xuu4000100)) -> new_primPlusNat0(new_primMulNat0(xuu300000, Succ(xuu4000100)), xuu4000100) 25.38/9.08 new_compare112(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, xuu177, eef, eeg, eeh) -> new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, eef, eeg, eeh) 25.38/9.08 new_esEs38(xuu591, xuu601, ty_Double) -> new_esEs25(xuu591, xuu601) 25.38/9.08 new_esEs6(xuu40000, xuu3000, app(ty_Maybe, cgc)) -> new_esEs12(xuu40000, xuu3000, cgc) 25.38/9.08 new_esEs19(EQ, GT) -> False 25.38/9.08 new_esEs19(GT, EQ) -> False 25.38/9.08 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.08 new_esEs19(GT, GT) -> True 25.38/9.08 new_esEs11(xuu40000, xuu3000, app(app(ty_@2, dcb), dcc)) -> new_esEs13(xuu40000, xuu3000, dcb, dcc) 25.38/9.08 new_lt20(xuu98, xuu101, app(app(ty_@2, ee), ef)) -> new_lt14(xuu98, xuu101, ee, ef) 25.38/9.08 new_esEs8(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.08 new_esEs39(xuu590, xuu600, app(ty_Ratio, fhc)) -> new_esEs21(xuu590, xuu600, fhc) 25.38/9.08 new_compare6(Char(xuu40000), Char(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) 25.38/9.08 new_ltEs20(xuu112, xuu114, ty_Char) -> new_ltEs10(xuu112, xuu114) 25.38/9.08 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, app(app(ty_Either, eda), edb)) -> new_esEs17(xuu400000, xuu30000, eda, edb) 25.38/9.08 new_lt10(xuu98, xuu101, eb, ec) -> new_esEs19(new_compare15(xuu98, xuu101, eb, ec), LT) 25.38/9.08 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.38/9.08 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.38/9.08 new_compare8(@0, @0) -> EQ 25.38/9.08 new_esEs35(xuu98, xuu101, app(app(ty_@2, ee), ef)) -> new_esEs13(xuu98, xuu101, ee, ef) 25.38/9.08 new_ltEs24(xuu592, xuu602, app(ty_Maybe, bch)) -> new_ltEs13(xuu592, xuu602, bch) 25.38/9.08 new_lt21(xuu99, xuu102, app(ty_Ratio, fdb)) -> new_lt11(xuu99, xuu102, fdb) 25.38/9.08 new_esEs8(xuu40000, xuu3000, app(app(app(ty_@3, ege), egf), egg)) -> new_esEs14(xuu40000, xuu3000, ege, egf, egg) 25.38/9.08 new_compare18([], [], ba) -> EQ 25.38/9.08 new_primEqNat0(Zero, Zero) -> True 25.38/9.08 new_lt19(xuu111, xuu113, ty_Double) -> new_lt15(xuu111, xuu113) 25.38/9.08 new_esEs17(Right(xuu400000), Right(xuu30000), ecc, app(app(app(ty_@3, ecf), ecg), ech)) -> new_esEs14(xuu400000, xuu30000, ecf, ecg, ech) 25.38/9.08 new_esEs9(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.08 new_esEs9(xuu40000, xuu3000, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs14(xuu40000, xuu3000, chh, daa, dab) 25.38/9.08 new_lt21(xuu99, xuu102, app(ty_[], eh)) -> new_lt7(xuu99, xuu102, eh) 25.38/9.08 new_esEs34(xuu99, xuu102, app(app(ty_@2, fh), ga)) -> new_esEs13(xuu99, xuu102, fh, ga) 25.38/9.08 new_esEs6(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.08 new_esEs4(xuu40002, xuu3002, app(ty_Ratio, fcf)) -> new_esEs21(xuu40002, xuu3002, fcf) 25.38/9.08 new_ltEs23(xuu100, xuu103, app(ty_Maybe, gh)) -> new_ltEs13(xuu100, xuu103, gh) 25.38/9.08 new_asAs(False, xuu132) -> False 25.38/9.08 new_ltEs21(xuu66, xuu67, ty_Char) -> new_ltEs10(xuu66, xuu67) 25.38/9.08 new_compare29(Just(xuu40000), Just(xuu3000), bh) -> new_compare210(xuu40000, xuu3000, new_esEs9(xuu40000, xuu3000, bh), bh) 25.38/9.08 new_ltEs22(xuu73, xuu74, ty_Bool) -> new_ltEs12(xuu73, xuu74) 25.38/9.08 new_esEs39(xuu590, xuu600, ty_Double) -> new_esEs25(xuu590, xuu600) 25.38/9.08 new_ltEs22(xuu73, xuu74, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs6(xuu73, xuu74, cbe, cbf, cbg) 25.38/9.08 new_esEs36(xuu400001, xuu30001, app(ty_[], fef)) -> new_esEs24(xuu400001, xuu30001, fef) 25.38/9.08 new_compare11(xuu185, xuu186, xuu187, xuu188, False, xuu190, eab, eac) -> new_compare12(xuu185, xuu186, xuu187, xuu188, xuu190, eab, eac) 25.38/9.08 new_lt20(xuu98, xuu101, ty_Double) -> new_lt15(xuu98, xuu101) 25.38/9.08 new_esEs7(xuu40000, xuu3000, app(ty_Maybe, ega)) -> new_esEs12(xuu40000, xuu3000, ega) 25.38/9.08 new_lt19(xuu111, xuu113, app(app(ty_@2, ceg), ceh)) -> new_lt14(xuu111, xuu113, ceg, ceh) 25.38/9.08 new_compare16(GT, EQ) -> GT 25.38/9.08 new_esEs4(xuu40002, xuu3002, ty_Double) -> new_esEs25(xuu40002, xuu3002) 25.38/9.08 new_ltEs24(xuu592, xuu602, app(app(ty_Either, bcf), bcg)) -> new_ltEs8(xuu592, xuu602, bcf, bcg) 25.38/9.08 new_esEs26(xuu590, xuu600, ty_Float) -> new_esEs20(xuu590, xuu600) 25.38/9.08 25.38/9.08 The set Q consists of the following terms: 25.38/9.08 25.38/9.08 new_ltEs24(x0, x1, app(ty_[], x2)) 25.38/9.08 new_lt20(x0, x1, ty_Ordering) 25.38/9.08 new_esEs33(x0, x1, app(ty_Maybe, x2)) 25.38/9.08 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.08 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.08 new_esEs9(x0, x1, ty_Integer) 25.38/9.08 new_ltEs21(x0, x1, ty_Ordering) 25.38/9.08 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.08 new_compare0(x0, x1, ty_Integer) 25.38/9.08 new_asAs(True, x0) 25.38/9.08 new_ltEs8(Right(x0), Left(x1), x2, x3) 25.38/9.08 new_ltEs8(Left(x0), Right(x1), x2, x3) 25.38/9.08 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 25.38/9.08 new_esEs26(x0, x1, app(ty_[], x2)) 25.38/9.08 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.08 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 25.38/9.08 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.08 new_esEs28(x0, x1, ty_Bool) 25.38/9.08 new_esEs4(x0, x1, ty_Ordering) 25.38/9.08 new_primPlusNat1(Zero, Zero) 25.38/9.08 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.08 new_ltEs21(x0, x1, ty_Double) 25.38/9.08 new_esEs29(x0, x1, ty_@0) 25.38/9.08 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.08 new_esEs16(x0, x1) 25.38/9.08 new_ltEs4(x0, x1, ty_@0) 25.38/9.08 new_esEs28(x0, x1, ty_@0) 25.38/9.08 new_esEs28(x0, x1, app(ty_[], x2)) 25.38/9.08 new_compare10(x0, x1, False, x2, x3) 25.38/9.08 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.08 new_lt6(x0, x1, app(ty_Maybe, x2)) 25.38/9.08 new_esEs9(x0, x1, ty_Bool) 25.38/9.08 new_esEs36(x0, x1, ty_Float) 25.38/9.08 new_primEqInt(Pos(Zero), Pos(Zero)) 25.38/9.08 new_primCompAux00(x0, x1, EQ, ty_Float) 25.38/9.08 new_compare28(True, True) 25.38/9.08 new_esEs28(x0, x1, ty_Integer) 25.38/9.08 new_lt18(x0, x1) 25.38/9.08 new_compare29(Just(x0), Nothing, x1) 25.38/9.08 new_ltEs23(x0, x1, ty_Bool) 25.38/9.08 new_lt20(x0, x1, ty_Char) 25.38/9.08 new_compare0(x0, x1, ty_Bool) 25.38/9.08 new_lt20(x0, x1, ty_Double) 25.38/9.08 new_lt21(x0, x1, ty_Int) 25.38/9.08 new_primCompAux00(x0, x1, EQ, ty_Integer) 25.38/9.08 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.08 new_esEs37(x0, x1, ty_Bool) 25.38/9.08 new_primEqInt(Neg(Zero), Neg(Zero)) 25.38/9.08 new_lt14(x0, x1, x2, x3) 25.38/9.08 new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) 25.38/9.08 new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) 25.38/9.08 new_ltEs7(x0, x1) 25.38/9.08 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.08 new_esEs4(x0, x1, ty_Double) 25.38/9.08 new_ltEs16(GT, EQ) 25.38/9.08 new_ltEs16(EQ, GT) 25.38/9.08 new_esEs9(x0, x1, app(ty_Ratio, x2)) 25.38/9.08 new_esEs4(x0, x1, ty_Char) 25.38/9.08 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.08 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.08 new_esEs27(x0, x1, ty_Bool) 25.38/9.08 new_esEs29(x0, x1, ty_Int) 25.38/9.08 new_esEs37(x0, x1, ty_@0) 25.38/9.08 new_ltEs20(x0, x1, app(ty_[], x2)) 25.38/9.08 new_ltEs16(LT, LT) 25.38/9.08 new_lt21(x0, x1, ty_@0) 25.38/9.08 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.08 new_ltEs22(x0, x1, ty_Int) 25.38/9.08 new_compare16(LT, LT) 25.38/9.08 new_ltEs4(x0, x1, ty_Int) 25.38/9.08 new_esEs6(x0, x1, ty_Double) 25.38/9.08 new_esEs35(x0, x1, app(ty_Maybe, x2)) 25.38/9.08 new_lt23(x0, x1, app(ty_Ratio, x2)) 25.38/9.08 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.08 new_compare0(x0, x1, ty_Float) 25.38/9.08 new_esEs32(x0, x1, ty_Int) 25.38/9.08 new_lt19(x0, x1, ty_Char) 25.38/9.08 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.08 new_esEs35(x0, x1, ty_Char) 25.38/9.08 new_compare18([], :(x0, x1), x2) 25.38/9.08 new_esEs6(x0, x1, app(ty_Maybe, x2)) 25.38/9.08 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.08 new_esEs11(x0, x1, app(ty_[], x2)) 25.38/9.08 new_esEs31(x0, x1, ty_Int) 25.38/9.08 new_esEs33(x0, x1, ty_Integer) 25.38/9.08 new_primEqInt(Pos(Zero), Neg(Zero)) 25.38/9.08 new_primEqInt(Neg(Zero), Pos(Zero)) 25.38/9.08 new_ltEs23(x0, x1, ty_@0) 25.38/9.08 new_lt22(x0, x1, app(ty_Maybe, x2)) 25.38/9.08 new_ltEs21(x0, x1, ty_Char) 25.38/9.08 new_esEs5(x0, x1, ty_Double) 25.38/9.08 new_ltEs24(x0, x1, ty_Int) 25.38/9.08 new_primCompAux00(x0, x1, EQ, ty_Bool) 25.38/9.08 new_esEs25(Double(x0, x1), Double(x2, x3)) 25.38/9.08 new_esEs5(x0, x1, ty_Char) 25.38/9.08 new_esEs37(x0, x1, ty_Float) 25.38/9.08 new_esEs15(False, False) 25.38/9.08 new_primMulInt(Neg(x0), Neg(x1)) 25.38/9.08 new_ltEs23(x0, x1, ty_Int) 25.38/9.08 new_ltEs24(x0, x1, ty_@0) 25.38/9.08 new_esEs17(Right(x0), Right(x1), x2, ty_Int) 25.38/9.08 new_esEs27(x0, x1, ty_Integer) 25.38/9.08 new_esEs8(x0, x1, app(ty_[], x2)) 25.38/9.08 new_compare0(x0, x1, ty_@0) 25.38/9.08 new_compare12(x0, x1, x2, x3, True, x4, x5) 25.38/9.08 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.08 new_esEs11(x0, x1, ty_Char) 25.38/9.08 new_esEs9(x0, x1, ty_Int) 25.38/9.08 new_compare0(x0, x1, app(ty_Maybe, x2)) 25.38/9.08 new_lt19(x0, x1, ty_Ordering) 25.38/9.08 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.08 new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.38/9.08 new_ltEs4(x0, x1, app(ty_Maybe, x2)) 25.38/9.08 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 25.38/9.08 new_esEs6(x0, x1, app(ty_Ratio, x2)) 25.38/9.08 new_ltEs19(x0, x1, ty_Double) 25.38/9.08 new_esEs28(x0, x1, ty_Int) 25.38/9.08 new_lt19(x0, x1, ty_Double) 25.38/9.08 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.38/9.08 new_esEs26(x0, x1, ty_Double) 25.38/9.08 new_esEs4(x0, x1, app(ty_[], x2)) 25.38/9.08 new_esEs38(x0, x1, ty_Bool) 25.38/9.08 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.08 new_primCompAux00(x0, x1, EQ, ty_@0) 25.38/9.08 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.08 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.38/9.08 new_lt8(x0, x1, x2, x3, x4) 25.38/9.08 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.08 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 25.38/9.08 new_ltEs16(LT, EQ) 25.38/9.08 new_ltEs16(EQ, LT) 25.38/9.08 new_lt22(x0, x1, ty_Float) 25.38/9.08 new_compare110(x0, x1, False, x2) 25.38/9.08 new_compare210(x0, x1, True, x2) 25.38/9.08 new_primCmpNat0(Succ(x0), Succ(x1)) 25.38/9.08 new_esEs7(x0, x1, app(ty_Ratio, x2)) 25.38/9.08 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.38/9.08 new_esEs28(x0, x1, ty_Float) 25.38/9.08 new_esEs27(x0, x1, app(ty_[], x2)) 25.38/9.08 new_compare18(:(x0, x1), [], x2) 25.38/9.08 new_esEs6(x0, x1, ty_Ordering) 25.38/9.08 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.08 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.08 new_ltEs19(x0, x1, app(ty_[], x2)) 25.38/9.08 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.08 new_ltEs20(x0, x1, ty_Int) 25.38/9.08 new_esEs29(x0, x1, app(ty_[], x2)) 25.38/9.08 new_compare15(Left(x0), Left(x1), x2, x3) 25.38/9.08 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.38/9.08 new_esEs30(x0, x1, app(ty_[], x2)) 25.38/9.08 new_esEs36(x0, x1, ty_Int) 25.38/9.08 new_esEs36(x0, x1, ty_Integer) 25.38/9.08 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.38/9.08 new_esEs8(x0, x1, app(ty_Ratio, x2)) 25.38/9.08 new_lt6(x0, x1, ty_@0) 25.38/9.08 new_esEs10(x0, x1, app(ty_[], x2)) 25.38/9.08 new_esEs33(x0, x1, ty_Bool) 25.38/9.08 new_esEs19(GT, GT) 25.38/9.08 new_lt6(x0, x1, app(ty_Ratio, x2)) 25.38/9.08 new_ltEs15(x0, x1) 25.38/9.08 new_primPlusNat1(Succ(x0), Succ(x1)) 25.38/9.08 new_lt13(x0, x1, x2) 25.38/9.08 new_ltEs23(x0, x1, ty_Integer) 25.38/9.08 new_compare16(EQ, LT) 25.38/9.08 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.38/9.08 new_compare16(LT, EQ) 25.38/9.08 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.38/9.08 new_esEs39(x0, x1, ty_@0) 25.38/9.08 new_esEs38(x0, x1, ty_Int) 25.38/9.08 new_esEs27(x0, x1, ty_@0) 25.38/9.08 new_esEs33(x0, x1, ty_Float) 25.38/9.08 new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.38/9.08 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 25.38/9.08 new_ltEs11(x0, x1, x2) 25.38/9.08 new_esEs34(x0, x1, ty_Double) 25.38/9.08 new_esEs35(x0, x1, app(ty_Ratio, x2)) 25.38/9.08 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.38/9.08 new_compare15(Left(x0), Right(x1), x2, x3) 25.38/9.08 new_compare15(Right(x0), Left(x1), x2, x3) 25.38/9.08 new_esEs17(Left(x0), Left(x1), ty_Double, x2) 25.38/9.08 new_esEs9(x0, x1, ty_Float) 25.38/9.08 new_esEs34(x0, x1, app(ty_[], x2)) 25.38/9.08 new_ltEs13(Nothing, Nothing, x0) 25.38/9.08 new_esEs20(Float(x0, x1), Float(x2, x3)) 25.38/9.08 new_esEs31(x0, x1, ty_Integer) 25.38/9.08 new_primMulNat0(Succ(x0), Succ(x1)) 25.38/9.08 new_esEs35(x0, x1, ty_Ordering) 25.38/9.08 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.38/9.08 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.38/9.08 new_compare7(@2(x0, x1), @2(x2, x3), x4, x5) 25.38/9.08 new_esEs38(x0, x1, app(ty_Ratio, x2)) 25.38/9.08 new_esEs34(x0, x1, app(ty_Ratio, x2)) 25.38/9.08 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 25.38/9.08 new_esEs39(x0, x1, app(ty_Ratio, x2)) 25.38/9.08 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 25.38/9.08 new_primCompAux00(x0, x1, LT, x2) 25.38/9.08 new_esEs11(x0, x1, ty_Ordering) 25.38/9.08 new_esEs12(Nothing, Just(x0), x1) 25.38/9.08 new_compare16(EQ, EQ) 25.38/9.08 new_lt6(x0, x1, ty_Double) 25.38/9.08 new_esEs7(x0, x1, ty_Double) 25.38/9.08 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.38/9.08 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.38/9.08 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.38/9.08 new_esEs33(x0, x1, ty_Int) 25.38/9.08 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.38/9.08 new_compare24(x0, x1, x2, x3, False, x4, x5) 25.38/9.08 new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.38/9.08 new_esEs36(x0, x1, ty_Bool) 25.38/9.08 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.38/9.08 new_esEs8(x0, x1, ty_Integer) 25.38/9.08 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.08 new_esEs12(Just(x0), Just(x1), ty_@0) 25.38/9.08 new_esEs38(x0, x1, app(ty_[], x2)) 25.38/9.08 new_ltEs13(Just(x0), Just(x1), ty_Double) 25.38/9.08 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 25.38/9.08 new_ltEs20(x0, x1, ty_Bool) 25.38/9.08 new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.38/9.08 new_ltEs19(x0, x1, ty_@0) 25.38/9.08 new_esEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.38/9.08 new_compare9(Integer(x0), Integer(x1)) 25.38/9.08 new_primCmpNat0(Zero, Succ(x0)) 25.38/9.08 new_ltEs21(x0, x1, ty_Float) 25.38/9.08 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.08 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.08 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.08 new_compare17(x0, x1) 25.38/9.08 new_esEs34(x0, x1, app(ty_Maybe, x2)) 25.38/9.08 new_ltEs19(x0, x1, ty_Bool) 25.38/9.08 new_esEs6(x0, x1, ty_Integer) 25.38/9.08 new_compare28(False, False) 25.38/9.08 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.38/9.08 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.38/9.08 new_sr(x0, x1) 25.38/9.08 new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.08 new_esEs39(x0, x1, ty_Integer) 25.38/9.08 new_esEs8(x0, x1, ty_Bool) 25.38/9.08 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.08 new_ltEs5(x0, x1, x2) 25.38/9.08 new_esEs36(x0, x1, ty_Ordering) 25.38/9.08 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.08 new_esEs17(Left(x0), Left(x1), ty_Float, x2) 25.38/9.08 new_esEs5(x0, x1, app(ty_Maybe, x2)) 25.38/9.08 new_lt23(x0, x1, ty_Integer) 25.38/9.08 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.08 new_lt22(x0, x1, ty_@0) 25.38/9.08 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 25.38/9.08 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 25.38/9.09 new_esEs10(x0, x1, ty_Int) 25.38/9.09 new_lt23(x0, x1, ty_@0) 25.38/9.09 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.38/9.09 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_lt9(x0, x1) 25.38/9.09 new_compare16(GT, LT) 25.38/9.09 new_compare16(LT, GT) 25.38/9.09 new_esEs32(x0, x1, ty_Integer) 25.38/9.09 new_esEs33(x0, x1, ty_Ordering) 25.38/9.09 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_esEs35(x0, x1, app(ty_[], x2)) 25.38/9.09 new_lt22(x0, x1, ty_Integer) 25.38/9.09 new_not(True) 25.38/9.09 new_esEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.38/9.09 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_esEs27(x0, x1, ty_Ordering) 25.38/9.09 new_lt22(x0, x1, ty_Int) 25.38/9.09 new_ltEs12(True, True) 25.38/9.09 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_ltEs22(x0, x1, app(ty_[], x2)) 25.38/9.09 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_lt10(x0, x1, x2, x3) 25.38/9.09 new_lt22(x0, x1, ty_Char) 25.38/9.09 new_esEs6(x0, x1, ty_Bool) 25.38/9.09 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.38/9.09 new_lt22(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_esEs7(x0, x1, ty_Ordering) 25.38/9.09 new_lt6(x0, x1, app(ty_[], x2)) 25.38/9.09 new_compare0(x0, x1, ty_Double) 25.38/9.09 new_esEs29(x0, x1, ty_Float) 25.38/9.09 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.38/9.09 new_esEs24([], [], x0) 25.38/9.09 new_esEs27(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_ltEs4(x0, x1, ty_Float) 25.38/9.09 new_compare210(x0, x1, False, x2) 25.38/9.09 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 25.38/9.09 new_esEs8(x0, x1, ty_Float) 25.38/9.09 new_lt6(x0, x1, ty_Ordering) 25.38/9.09 new_esEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.38/9.09 new_lt22(x0, x1, ty_Bool) 25.38/9.09 new_compare26(x0, x1, False, x2, x3) 25.38/9.09 new_compare0(x0, x1, ty_Int) 25.38/9.09 new_esEs8(x0, x1, ty_@0) 25.38/9.09 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_pePe(True, x0) 25.38/9.09 new_esEs23(Integer(x0), Integer(x1)) 25.38/9.09 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.38/9.09 new_primCompAux00(x0, x1, GT, x2) 25.38/9.09 new_ltEs20(x0, x1, ty_Double) 25.38/9.09 new_esEs10(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_esEs34(x0, x1, ty_Int) 25.38/9.09 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_primMulInt(Pos(x0), Pos(x1)) 25.38/9.09 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.38/9.09 new_compare11(x0, x1, x2, x3, False, x4, x5, x6) 25.38/9.09 new_esEs19(LT, GT) 25.38/9.09 new_esEs19(GT, LT) 25.38/9.09 new_esEs8(x0, x1, ty_Int) 25.38/9.09 new_compare10(x0, x1, True, x2, x3) 25.38/9.09 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_esEs24(:(x0, x1), [], x2) 25.38/9.09 new_esEs30(x0, x1, ty_Ordering) 25.38/9.09 new_esEs6(x0, x1, ty_Char) 25.38/9.09 new_compare24(x0, x1, x2, x3, True, x4, x5) 25.38/9.09 new_lt23(x0, x1, ty_Float) 25.38/9.09 new_sr0(Integer(x0), Integer(x1)) 25.38/9.09 new_esEs37(x0, x1, ty_Char) 25.38/9.09 new_esEs37(x0, x1, ty_Int) 25.38/9.09 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.38/9.09 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.38/9.09 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_ltEs21(x0, x1, ty_Bool) 25.38/9.09 new_lt19(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_compare30(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.38/9.09 new_lt19(x0, x1, ty_Float) 25.38/9.09 new_esEs21(:%(x0, x1), :%(x2, x3), x4) 25.38/9.09 new_esEs26(x0, x1, ty_Float) 25.38/9.09 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_esEs34(x0, x1, ty_Char) 25.38/9.09 new_ltEs21(x0, x1, ty_Integer) 25.38/9.09 new_compare30(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.38/9.09 new_compare30(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.38/9.09 new_esEs10(x0, x1, ty_Bool) 25.38/9.09 new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.38/9.09 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_ltEs19(x0, x1, ty_Float) 25.38/9.09 new_esEs8(x0, x1, ty_Char) 25.38/9.09 new_lt11(x0, x1, x2) 25.38/9.09 new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.38/9.09 new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_esEs4(x0, x1, ty_@0) 25.38/9.09 new_esEs4(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 25.38/9.09 new_ltEs18(x0, x1) 25.38/9.09 new_esEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_esEs9(x0, x1, ty_Double) 25.38/9.09 new_esEs9(x0, x1, ty_Ordering) 25.38/9.09 new_lt23(x0, x1, ty_Int) 25.38/9.09 new_esEs34(x0, x1, ty_Float) 25.38/9.09 new_esEs10(x0, x1, ty_Char) 25.38/9.09 new_esEs26(x0, x1, ty_Int) 25.38/9.09 new_primEqNat0(Succ(x0), Succ(x1)) 25.38/9.09 new_compare14(x0, x1, True, x2, x3) 25.38/9.09 new_asAs(False, x0) 25.38/9.09 new_esEs15(False, True) 25.38/9.09 new_esEs15(True, False) 25.38/9.09 new_lt19(x0, x1, ty_Int) 25.38/9.09 new_ltEs19(x0, x1, ty_Int) 25.38/9.09 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 25.38/9.09 new_esEs6(x0, x1, ty_Int) 25.38/9.09 new_esEs39(x0, x1, ty_Bool) 25.38/9.09 new_esEs10(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_esEs10(x0, x1, ty_Integer) 25.38/9.09 new_primEqNat0(Zero, Zero) 25.38/9.09 new_esEs39(x0, x1, ty_Float) 25.38/9.09 new_ltEs9(x0, x1) 25.38/9.09 new_esEs24(:(x0, x1), :(x2, x3), x4) 25.38/9.09 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.38/9.09 new_not(False) 25.38/9.09 new_esEs17(Left(x0), Left(x1), ty_Integer, x2) 25.38/9.09 new_esEs17(Left(x0), Left(x1), ty_Int, x2) 25.38/9.09 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_ltEs19(x0, x1, ty_Char) 25.38/9.09 new_ltEs22(x0, x1, ty_Ordering) 25.38/9.09 new_compare26(x0, x1, True, x2, x3) 25.38/9.09 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_ltEs4(x0, x1, ty_Bool) 25.38/9.09 new_esEs29(x0, x1, ty_Integer) 25.38/9.09 new_esEs33(x0, x1, ty_Double) 25.38/9.09 new_esEs26(x0, x1, ty_Char) 25.38/9.09 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_primPlusNat0(x0, x1) 25.38/9.09 new_esEs6(x0, x1, ty_Float) 25.38/9.09 new_esEs29(x0, x1, ty_Bool) 25.38/9.09 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_ltEs4(x0, x1, app(ty_[], x2)) 25.38/9.09 new_lt23(x0, x1, ty_Char) 25.38/9.09 new_esEs24([], :(x0, x1), x2) 25.38/9.09 new_ltEs19(x0, x1, ty_Integer) 25.38/9.09 new_esEs17(Left(x0), Left(x1), ty_Char, x2) 25.38/9.09 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 25.38/9.09 new_esEs39(x0, x1, ty_Int) 25.38/9.09 new_esEs5(x0, x1, ty_Ordering) 25.38/9.09 new_esEs34(x0, x1, ty_Bool) 25.38/9.09 new_esEs17(Left(x0), Left(x1), ty_Bool, x2) 25.38/9.09 new_esEs27(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_esEs36(x0, x1, ty_Double) 25.38/9.09 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_ltEs4(x0, x1, ty_Integer) 25.38/9.09 new_lt4(x0, x1) 25.38/9.09 new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) 25.38/9.09 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_esEs39(x0, x1, ty_Char) 25.38/9.09 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 25.38/9.09 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_lt23(x0, x1, ty_Bool) 25.38/9.09 new_ltEs24(x0, x1, ty_Ordering) 25.38/9.09 new_esEs37(x0, x1, ty_Integer) 25.38/9.09 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_esEs28(x0, x1, ty_Double) 25.38/9.09 new_lt16(x0, x1) 25.38/9.09 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_esEs38(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_ltEs24(x0, x1, ty_Double) 25.38/9.09 new_compare12(x0, x1, x2, x3, False, x4, x5) 25.38/9.09 new_esEs7(x0, x1, ty_Integer) 25.38/9.09 new_lt19(x0, x1, ty_Bool) 25.38/9.09 new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) 25.38/9.09 new_esEs34(x0, x1, ty_Integer) 25.38/9.09 new_esEs4(x0, x1, ty_Int) 25.38/9.09 new_esEs35(x0, x1, ty_@0) 25.38/9.09 new_lt21(x0, x1, ty_Char) 25.38/9.09 new_ltEs13(Just(x0), Just(x1), ty_Float) 25.38/9.09 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.38/9.09 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_esEs26(x0, x1, ty_Bool) 25.38/9.09 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.38/9.09 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.38/9.09 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 25.38/9.09 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.38/9.09 new_esEs19(EQ, GT) 25.38/9.09 new_esEs19(GT, EQ) 25.38/9.09 new_esEs11(x0, x1, ty_Integer) 25.38/9.09 new_primEqNat0(Zero, Succ(x0)) 25.38/9.09 new_esEs10(x0, x1, ty_Float) 25.38/9.09 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 25.38/9.09 new_esEs38(x0, x1, ty_Ordering) 25.38/9.09 new_esEs39(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_compare11(x0, x1, x2, x3, True, x4, x5, x6) 25.38/9.09 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 25.38/9.09 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.38/9.09 new_ltEs4(x0, x1, ty_Char) 25.38/9.09 new_esEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.38/9.09 new_esEs26(x0, x1, ty_Integer) 25.38/9.09 new_lt19(x0, x1, ty_Integer) 25.38/9.09 new_compare0(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_compare16(GT, GT) 25.38/9.09 new_esEs12(Just(x0), Nothing, x1) 25.38/9.09 new_lt20(x0, x1, ty_Int) 25.38/9.09 new_pePe(False, x0) 25.38/9.09 new_primCompAux1(x0, x1, x2, x3, x4) 25.38/9.09 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_lt21(x0, x1, ty_Ordering) 25.38/9.09 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_lt21(x0, x1, ty_Double) 25.38/9.09 new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 25.38/9.09 new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.38/9.09 new_lt19(x0, x1, ty_@0) 25.38/9.09 new_esEs26(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_esEs12(Just(x0), Just(x1), app(ty_[], x2)) 25.38/9.09 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_esEs29(x0, x1, ty_Char) 25.38/9.09 new_esEs26(x0, x1, ty_@0) 25.38/9.09 new_esEs35(x0, x1, ty_Bool) 25.38/9.09 new_esEs34(x0, x1, ty_@0) 25.38/9.09 new_compare0(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_esEs38(x0, x1, ty_Double) 25.38/9.09 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 25.38/9.09 new_primPlusNat1(Zero, Succ(x0)) 25.38/9.09 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_esEs11(x0, x1, ty_@0) 25.38/9.09 new_esEs5(x0, x1, ty_Int) 25.38/9.09 new_lt19(x0, x1, app(ty_[], x2)) 25.38/9.09 new_esEs39(x0, x1, ty_Ordering) 25.38/9.09 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_esEs11(x0, x1, ty_Bool) 25.38/9.09 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_esEs35(x0, x1, ty_Int) 25.38/9.09 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.38/9.09 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.38/9.09 new_esEs11(x0, x1, ty_Float) 25.38/9.09 new_ltEs24(x0, x1, ty_Char) 25.38/9.09 new_lt12(x0, x1) 25.38/9.09 new_esEs8(x0, x1, ty_Double) 25.38/9.09 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_primMulNat0(Succ(x0), Zero) 25.38/9.09 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.38/9.09 new_esEs36(x0, x1, app(ty_[], x2)) 25.38/9.09 new_esEs17(Right(x0), Right(x1), x2, ty_Char) 25.38/9.09 new_ltEs23(x0, x1, ty_Double) 25.38/9.09 new_ltEs21(x0, x1, ty_@0) 25.38/9.09 new_ltEs23(x0, x1, ty_Char) 25.38/9.09 new_esEs22(@0, @0) 25.38/9.09 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_compare8(@0, @0) 25.38/9.09 new_esEs17(Right(x0), Right(x1), x2, ty_Double) 25.38/9.09 new_compare0(x0, x1, app(ty_[], x2)) 25.38/9.09 new_ltEs21(x0, x1, ty_Int) 25.38/9.09 new_esEs37(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_compare14(x0, x1, False, x2, x3) 25.38/9.09 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_esEs12(Just(x0), Just(x1), ty_Float) 25.38/9.09 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.38/9.09 new_ltEs13(Just(x0), Just(x1), ty_Bool) 25.38/9.09 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_ltEs22(x0, x1, ty_Double) 25.38/9.09 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_ltEs22(x0, x1, ty_Char) 25.38/9.09 new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) 25.38/9.09 new_ltEs20(x0, x1, ty_Float) 25.38/9.09 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_esEs37(x0, x1, app(ty_[], x2)) 25.38/9.09 new_compare30(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.38/9.09 new_ltEs20(x0, x1, ty_Ordering) 25.38/9.09 new_ltEs13(Just(x0), Nothing, x1) 25.38/9.09 new_compare18([], [], x0) 25.38/9.09 new_esEs10(x0, x1, ty_@0) 25.38/9.09 new_esEs4(x0, x1, ty_Integer) 25.38/9.09 new_esEs33(x0, x1, ty_Char) 25.38/9.09 new_esEs12(Just(x0), Just(x1), ty_Ordering) 25.38/9.09 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 25.38/9.09 new_compare29(Nothing, Just(x0), x1) 25.38/9.09 new_esEs4(x0, x1, ty_Bool) 25.38/9.09 new_compare0(x0, x1, ty_Char) 25.38/9.09 new_ltEs16(GT, GT) 25.38/9.09 new_lt20(x0, x1, ty_Bool) 25.38/9.09 new_lt23(x0, x1, ty_Double) 25.38/9.09 new_esEs28(x0, x1, ty_Ordering) 25.38/9.09 new_primCmpNat0(Succ(x0), Zero) 25.38/9.09 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 25.38/9.09 new_esEs29(x0, x1, ty_Double) 25.38/9.09 new_lt23(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_esEs4(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_esEs30(x0, x1, ty_Double) 25.38/9.09 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 25.38/9.09 new_esEs9(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_esEs9(x0, x1, ty_Char) 25.38/9.09 new_esEs17(Left(x0), Left(x1), ty_@0, x2) 25.38/9.09 new_esEs38(x0, x1, ty_Char) 25.38/9.09 new_ltEs4(x0, x1, ty_Double) 25.38/9.09 new_ltEs21(x0, x1, app(ty_[], x2)) 25.38/9.09 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.38/9.09 new_esEs6(x0, x1, ty_@0) 25.38/9.09 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_esEs7(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_esEs33(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_esEs35(x0, x1, ty_Integer) 25.38/9.09 new_esEs11(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_esEs39(x0, x1, ty_Double) 25.38/9.09 new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.38/9.09 new_esEs27(x0, x1, ty_Double) 25.38/9.09 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.38/9.09 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.38/9.09 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_esEs19(LT, EQ) 25.38/9.09 new_esEs19(EQ, LT) 25.38/9.09 new_ltEs20(x0, x1, ty_Char) 25.38/9.09 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 25.38/9.09 new_esEs15(True, True) 25.38/9.09 new_ltEs4(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_esEs36(x0, x1, ty_Char) 25.38/9.09 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.38/9.09 new_esEs5(x0, x1, app(ty_[], x2)) 25.38/9.09 new_esEs19(LT, LT) 25.38/9.09 new_esEs7(x0, x1, ty_@0) 25.38/9.09 new_primCompAux00(x0, x1, EQ, ty_Ordering) 25.38/9.09 new_ltEs20(x0, x1, ty_Integer) 25.38/9.09 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.38/9.09 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_compare29(Just(x0), Just(x1), x2) 25.38/9.09 new_esEs6(x0, x1, app(ty_[], x2)) 25.38/9.09 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.38/9.09 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 25.38/9.09 new_esEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.38/9.09 new_lt22(x0, x1, app(ty_[], x2)) 25.38/9.09 new_ltEs23(x0, x1, ty_Ordering) 25.38/9.09 new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.38/9.09 new_esEs28(x0, x1, ty_Char) 25.38/9.09 new_esEs18(Char(x0), Char(x1)) 25.38/9.09 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_lt20(x0, x1, app(ty_[], x2)) 25.38/9.09 new_lt21(x0, x1, app(ty_[], x2)) 25.38/9.09 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_compare0(x0, x1, ty_Ordering) 25.38/9.09 new_esEs12(Just(x0), Just(x1), ty_Integer) 25.38/9.09 new_ltEs24(x0, x1, ty_Float) 25.38/9.09 new_ltEs16(EQ, EQ) 25.38/9.09 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_esEs36(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_esEs8(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_ltEs20(x0, x1, ty_@0) 25.38/9.09 new_compare15(Right(x0), Right(x1), x2, x3) 25.38/9.09 new_esEs38(x0, x1, ty_Float) 25.38/9.09 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.38/9.09 new_primMulNat0(Zero, Zero) 25.38/9.09 new_esEs30(x0, x1, ty_Bool) 25.38/9.09 new_lt20(x0, x1, ty_Float) 25.38/9.09 new_esEs5(x0, x1, ty_Float) 25.38/9.09 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.38/9.09 new_esEs30(x0, x1, ty_Integer) 25.38/9.09 new_esEs19(EQ, EQ) 25.38/9.09 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_lt15(x0, x1) 25.38/9.09 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_lt17(x0, x1) 25.38/9.09 new_esEs30(x0, x1, ty_@0) 25.38/9.09 new_ltEs22(x0, x1, ty_Float) 25.38/9.09 new_ltEs13(Just(x0), Just(x1), ty_Int) 25.38/9.09 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_primPlusNat1(Succ(x0), Zero) 25.38/9.09 new_esEs10(x0, x1, ty_Double) 25.38/9.09 new_esEs10(x0, x1, ty_Ordering) 25.38/9.09 new_compare29(Nothing, Nothing, x0) 25.38/9.09 new_esEs17(Left(x0), Right(x1), x2, x3) 25.38/9.09 new_esEs17(Right(x0), Left(x1), x2, x3) 25.38/9.09 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_esEs12(Just(x0), Just(x1), ty_Bool) 25.38/9.09 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 25.38/9.09 new_esEs39(x0, x1, app(ty_[], x2)) 25.38/9.09 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_fsEs(x0) 25.38/9.09 new_esEs12(Just(x0), Just(x1), ty_Char) 25.38/9.09 new_esEs26(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_ltEs13(Just(x0), Just(x1), ty_Char) 25.38/9.09 new_esEs11(x0, x1, ty_Double) 25.38/9.09 new_primMulNat0(Zero, Succ(x0)) 25.38/9.09 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.38/9.09 new_primCompAux00(x0, x1, EQ, ty_Int) 25.38/9.09 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_esEs37(x0, x1, ty_Double) 25.38/9.09 new_ltEs23(x0, x1, app(ty_[], x2)) 25.38/9.09 new_compare25(x0, x1, False, x2, x3) 25.38/9.09 new_esEs38(x0, x1, ty_Integer) 25.38/9.09 new_lt21(x0, x1, ty_Float) 25.38/9.09 new_lt5(x0, x1) 25.38/9.09 new_ltEs22(x0, x1, ty_Bool) 25.38/9.09 new_esEs17(Right(x0), Right(x1), x2, ty_Bool) 25.38/9.09 new_esEs17(Right(x0), Right(x1), x2, ty_Float) 25.38/9.09 new_esEs12(Just(x0), Just(x1), ty_Int) 25.38/9.09 new_ltEs12(False, True) 25.38/9.09 new_ltEs12(True, False) 25.38/9.09 new_primCompAux00(x0, x1, EQ, ty_Double) 25.38/9.09 new_compare28(False, True) 25.38/9.09 new_compare28(True, False) 25.38/9.09 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_ltEs22(x0, x1, ty_@0) 25.38/9.09 new_lt23(x0, x1, app(ty_[], x2)) 25.38/9.09 new_primCompAux00(x0, x1, EQ, ty_Char) 25.38/9.09 new_esEs12(Nothing, Nothing, x0) 25.38/9.09 new_lt20(x0, x1, ty_Integer) 25.38/9.09 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_esEs4(x0, x1, ty_Float) 25.38/9.09 new_ltEs23(x0, x1, ty_Float) 25.38/9.09 new_esEs9(x0, x1, app(ty_[], x2)) 25.38/9.09 new_lt19(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_esEs17(Right(x0), Right(x1), x2, ty_@0) 25.38/9.09 new_ltEs16(LT, GT) 25.38/9.09 new_ltEs16(GT, LT) 25.38/9.09 new_ltEs10(x0, x1) 25.38/9.09 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_esEs33(x0, x1, app(ty_[], x2)) 25.38/9.09 new_esEs35(x0, x1, ty_Float) 25.38/9.09 new_esEs11(x0, x1, ty_Int) 25.38/9.09 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.38/9.09 new_ltEs13(Nothing, Just(x0), x1) 25.38/9.09 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.38/9.09 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.38/9.09 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 25.38/9.09 new_esEs38(x0, x1, ty_@0) 25.38/9.09 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_lt6(x0, x1, ty_Integer) 25.38/9.09 new_ltEs13(Just(x0), Just(x1), ty_@0) 25.38/9.09 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 25.38/9.09 new_esEs27(x0, x1, ty_Char) 25.38/9.09 new_esEs12(Just(x0), Just(x1), ty_Double) 25.38/9.09 new_lt20(x0, x1, ty_@0) 25.38/9.09 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_esEs5(x0, x1, ty_@0) 25.38/9.09 new_lt7(x0, x1, x2) 25.38/9.09 new_primMulInt(Pos(x0), Neg(x1)) 25.38/9.09 new_primMulInt(Neg(x0), Pos(x1)) 25.38/9.09 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_esEs35(x0, x1, ty_Double) 25.38/9.09 new_esEs7(x0, x1, ty_Int) 25.38/9.09 new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_lt22(x0, x1, ty_Double) 25.38/9.09 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.38/9.09 new_esEs5(x0, x1, ty_Bool) 25.38/9.09 new_lt21(x0, x1, ty_Integer) 25.38/9.09 new_esEs30(x0, x1, ty_Float) 25.38/9.09 new_esEs27(x0, x1, ty_Int) 25.38/9.09 new_lt22(x0, x1, ty_Ordering) 25.38/9.09 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 25.38/9.09 new_ltEs19(x0, x1, ty_Ordering) 25.38/9.09 new_esEs30(x0, x1, ty_Char) 25.38/9.09 new_esEs5(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_esEs7(x0, x1, ty_Float) 25.38/9.09 new_ltEs13(Just(x0), Just(x1), ty_Integer) 25.38/9.09 new_esEs36(x0, x1, ty_@0) 25.38/9.09 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_esEs34(x0, x1, ty_Ordering) 25.38/9.09 new_esEs11(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_ltEs24(x0, x1, ty_Bool) 25.38/9.09 new_esEs26(x0, x1, ty_Ordering) 25.38/9.09 new_esEs30(x0, x1, ty_Int) 25.38/9.09 new_lt23(x0, x1, ty_Ordering) 25.38/9.09 new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.38/9.09 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.38/9.09 new_esEs27(x0, x1, ty_Float) 25.38/9.09 new_esEs5(x0, x1, ty_Integer) 25.38/9.09 new_primEqNat0(Succ(x0), Zero) 25.38/9.09 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.38/9.09 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_esEs17(Right(x0), Right(x1), x2, ty_Integer) 25.38/9.09 new_ltEs22(x0, x1, ty_Integer) 25.38/9.09 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.38/9.09 new_esEs9(x0, x1, ty_@0) 25.38/9.09 new_ltEs12(False, False) 25.38/9.09 new_compare110(x0, x1, True, x2) 25.38/9.09 new_lt6(x0, x1, ty_Float) 25.38/9.09 new_esEs29(x0, x1, ty_Ordering) 25.38/9.09 new_compare25(x0, x1, True, x2, x3) 25.38/9.09 new_esEs36(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_ltEs17(x0, x1) 25.38/9.09 new_lt21(x0, x1, ty_Bool) 25.38/9.09 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.38/9.09 new_ltEs4(x0, x1, ty_Ordering) 25.38/9.09 new_lt6(x0, x1, ty_Bool) 25.38/9.09 new_esEs8(x0, x1, ty_Ordering) 25.38/9.09 new_compare0(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.09 new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.38/9.09 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.38/9.09 new_esEs37(x0, x1, ty_Ordering) 25.38/9.09 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 25.38/9.09 new_esEs7(x0, x1, ty_Bool) 25.38/9.09 new_compare6(Char(x0), Char(x1)) 25.38/9.09 new_compare16(EQ, GT) 25.38/9.09 new_compare16(GT, EQ) 25.38/9.09 new_esEs37(x0, x1, app(ty_Maybe, x2)) 25.38/9.09 new_compare19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.38/9.09 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.09 new_compare18(:(x0, x1), :(x2, x3), x4) 25.38/9.09 new_esEs33(x0, x1, ty_@0) 25.38/9.09 new_lt6(x0, x1, ty_Int) 25.38/9.09 new_ltEs24(x0, x1, ty_Integer) 25.38/9.09 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.38/9.09 new_lt6(x0, x1, ty_Char) 25.38/9.09 new_esEs7(x0, x1, ty_Char) 25.38/9.09 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.09 new_primCmpNat0(Zero, Zero) 25.38/9.09 new_esEs7(x0, x1, app(ty_[], x2)) 25.38/9.09 25.38/9.09 We have to consider all minimal (P,Q,R)-chains. 25.38/9.09 ---------------------------------------- 25.38/9.09 25.38/9.09 (26) QDPSizeChangeProof (EQUIVALENT) 25.38/9.09 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 25.38/9.09 25.38/9.09 From the DPs we obtained the following set of size-change graphs: 25.38/9.09 *new_ltEs(xuu59, xuu60, hc) -> new_compare(xuu59, xuu60, hc) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare(:(xuu40000, xuu40001), :(xuu3000, xuu3001), ba) -> new_primCompAux(xuu40000, xuu3000, xuu40001, xuu3001, ba) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 3 >= 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare21(xuu66, xuu67, False, cfa, app(app(ty_@2, cga), cgb)) -> new_ltEs3(xuu66, xuu67, cga, cgb) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare21(xuu66, xuu67, False, cfa, app(app(ty_Either, cff), cfg)) -> new_ltEs1(xuu66, xuu67, cff, cfg) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare21(xuu66, xuu67, False, cfa, app(ty_[], cfb)) -> new_ltEs(xuu66, xuu67, cfb) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_primCompAux(:(xuu40000, xuu40001), :(xuu3000, xuu3001), xuu4001, xuu301, app(ty_[], ba)) -> new_primCompAux(xuu40000, xuu3000, xuu40001, xuu3001, ba) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 1 > 3, 2 > 4, 5 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, app(app(ty_@2, cbb), cbc)) -> new_ltEs3(xuu591, xuu601, cbb, cbc) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, app(app(ty_Either, cag), cah)) -> new_ltEs1(xuu591, xuu601, cag, cah) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, app(ty_[], cac)) -> new_ltEs(xuu591, xuu601, cac) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_primCompAux(Right(xuu40000), Right(xuu3000), xuu4001, xuu301, app(app(ty_Either, bf), bg)) -> new_compare21(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bg), bf, bg) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare3(Right(xuu40000), Right(xuu3000), bf, bg) -> new_compare21(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bg), bf, bg) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_lt3(xuu98, xuu101, ee, ef) -> new_compare5(xuu98, xuu101, ee, ef) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), app(app(ty_@2, bhh), caa), bha) -> new_lt3(xuu590, xuu600, bhh, caa) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare5(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), ca, cb) -> new_compare23(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs11(xuu40000, xuu3000, ca), new_esEs10(xuu40001, xuu3001, cb)), ca, cb) 25.38/9.09 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare23(xuu111, xuu112, xuu113, xuu114, False, cce, app(app(ty_@2, cde), cdf)) -> new_ltEs3(xuu112, xuu114, cde, cdf) 25.38/9.09 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare23(xuu111, xuu112, xuu113, xuu114, False, cce, app(app(ty_Either, cdb), cdc)) -> new_ltEs1(xuu112, xuu114, cdb, cdc) 25.38/9.09 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare23(xuu111, xuu112, xuu113, xuu114, False, cce, app(ty_[], ccf)) -> new_ltEs(xuu112, xuu114, ccf) 25.38/9.09 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare23(xuu111, xuu112, xuu113, xuu114, False, app(app(ty_@2, ceg), ceh), cdh) -> new_lt3(xuu111, xuu113, ceg, ceh) 25.38/9.09 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, app(app(ty_@2, ee), ef), de, df) -> new_compare5(xuu98, xuu101, ee, ef) 25.38/9.09 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_primCompAux(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), xuu4001, xuu301, app(app(ty_@2, ca), cb)) -> new_compare23(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs11(xuu40000, xuu3000, ca), new_esEs10(xuu40001, xuu3001, cb)), ca, cb) 25.38/9.09 The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 5 > 6, 5 > 7 25.38/9.09 25.38/9.09 25.38/9.09 *new_lt2(xuu98, xuu101, ed) -> new_compare4(xuu98, xuu101, ed) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), app(ty_Maybe, bhg), bha) -> new_lt2(xuu590, xuu600, bhg) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare23(xuu111, xuu112, xuu113, xuu114, False, app(ty_Maybe, cef), cdh) -> new_lt2(xuu111, xuu113, cef) 25.38/9.09 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare4(Just(xuu40000), Just(xuu3000), bh) -> new_compare22(xuu40000, xuu3000, new_esEs9(xuu40000, xuu3000, bh), bh) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare22(xuu73, xuu74, False, app(app(ty_@2, ccc), ccd)) -> new_ltEs3(xuu73, xuu74, ccc, ccd) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare22(xuu73, xuu74, False, app(app(ty_Either, cbh), cca)) -> new_ltEs1(xuu73, xuu74, cbh, cca) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare22(xuu73, xuu74, False, app(ty_[], cbd)) -> new_ltEs(xuu73, xuu74, cbd) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, app(ty_Maybe, ed), de, df) -> new_compare4(xuu98, xuu101, ed) 25.38/9.09 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_primCompAux(Just(xuu40000), Just(xuu3000), xuu4001, xuu301, app(ty_Maybe, bh)) -> new_compare22(xuu40000, xuu3000, new_esEs9(xuu40000, xuu3000, bh), bh) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs2(Just(xuu590), Just(xuu600), app(app(ty_@2, bgf), bgg)) -> new_ltEs3(xuu590, xuu600, bgf, bgg) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs2(Just(xuu590), Just(xuu600), app(app(ty_Either, bgc), bgd)) -> new_ltEs1(xuu590, xuu600, bgc, bgd) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs2(Just(xuu590), Just(xuu600), app(ty_[], bfg)) -> new_ltEs(xuu590, xuu600, bfg) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare21(xuu66, xuu67, False, cfa, app(ty_Maybe, cfh)) -> new_ltEs2(xuu66, xuu67, cfh) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare21(xuu66, xuu67, False, cfa, app(app(app(ty_@3, cfc), cfd), cfe)) -> new_ltEs0(xuu66, xuu67, cfc, cfd, cfe) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, app(ty_Maybe, cba)) -> new_ltEs2(xuu591, xuu601, cba) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare23(xuu111, xuu112, xuu113, xuu114, False, cce, app(ty_Maybe, cdd)) -> new_ltEs2(xuu112, xuu114, cdd) 25.38/9.09 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare22(xuu73, xuu74, False, app(ty_Maybe, ccb)) -> new_ltEs2(xuu73, xuu74, ccb) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare22(xuu73, xuu74, False, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs0(xuu73, xuu74, cbe, cbf, cbg) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs2(Just(xuu590), Just(xuu600), app(ty_Maybe, bge)) -> new_ltEs2(xuu590, xuu600, bge) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs2(Just(xuu590), Just(xuu600), app(app(app(ty_@3, bfh), bga), bgb)) -> new_ltEs0(xuu590, xuu600, bfh, bga, bgb) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_lt(xuu98, xuu101, h) -> new_compare(xuu98, xuu101, h) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), app(ty_[], bgh), bha) -> new_lt(xuu590, xuu600, bgh) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare23(xuu111, xuu112, xuu113, xuu114, False, app(ty_[], cdg), cdh) -> new_lt(xuu111, xuu113, cdg) 25.38/9.09 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, app(app(ty_@2, bda), bdb)) -> new_ltEs3(xuu592, xuu602, bda, bdb) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, app(app(ty_Either, bcf), bcg)) -> new_ltEs1(xuu592, xuu602, bcf, bcg) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, app(ty_[], bcb)) -> new_ltEs(xuu592, xuu602, bcb) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, app(ty_Maybe, bch)) -> new_ltEs2(xuu592, xuu602, bch) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), cab, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs0(xuu591, xuu601, cad, cae, caf) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare23(xuu111, xuu112, xuu113, xuu114, False, cce, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs0(xuu112, xuu114, ccg, cch, cda) 25.38/9.09 The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, hf, app(app(app(ty_@3, bcc), bcd), bce)) -> new_ltEs0(xuu592, xuu602, bcc, bcd, bce) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_lt0(xuu98, xuu101, dg, dh, ea) -> new_compare1(xuu98, xuu101, dg, dh, ea) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), app(app(app(ty_@3, bhb), bhc), bhd), bha) -> new_lt0(xuu590, xuu600, bhb, bhc, bhd) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs3(@2(xuu590, xuu591), @2(xuu600, xuu601), app(app(ty_Either, bhe), bhf), bha) -> new_lt1(xuu590, xuu600, bhe, bhf) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare23(xuu111, xuu112, xuu113, xuu114, False, app(app(app(ty_@3, cea), ceb), cec), cdh) -> new_lt0(xuu111, xuu113, cea, ceb, cec) 25.38/9.09 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare23(xuu111, xuu112, xuu113, xuu114, False, app(app(ty_Either, ced), cee), cdh) -> new_lt1(xuu111, xuu113, ced, cee) 25.38/9.09 The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare1(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bc, bd, be) -> new_compare2(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs6(xuu40000, xuu3000, bc), new_asAs(new_esEs5(xuu40001, xuu3001, bd), new_esEs4(xuu40002, xuu3002, be))), bc, bd, be) 25.38/9.09 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, app(app(ty_@2, ha), hb)) -> new_ltEs3(xuu100, xuu103, ha, hb) 25.38/9.09 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, app(app(ty_Either, gf), gg)) -> new_ltEs1(xuu100, xuu103, gf, gg) 25.38/9.09 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, app(ty_[], gb)) -> new_ltEs(xuu100, xuu103, gb) 25.38/9.09 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, app(ty_[], h), de, df) -> new_compare(xuu98, xuu101, h) 25.38/9.09 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, app(app(ty_@2, fh), ga), df) -> new_lt3(xuu99, xuu102, fh, ga) 25.38/9.09 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, app(ty_Maybe, fg), df) -> new_lt2(xuu99, xuu102, fg) 25.38/9.09 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, app(ty_Maybe, gh)) -> new_ltEs2(xuu100, xuu103, gh) 25.38/9.09 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, app(ty_[], eh), df) -> new_lt(xuu99, xuu102, eh) 25.38/9.09 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, de, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs0(xuu100, xuu103, gc, gd, ge) 25.38/9.09 The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, app(app(app(ty_@3, fa), fb), fc), df) -> new_lt0(xuu99, xuu102, fa, fb, fc) 25.38/9.09 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, app(app(app(ty_@3, dg), dh), ea), de, df) -> new_compare1(xuu98, xuu101, dg, dh, ea) 25.38/9.09 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_primCompAux(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), xuu4001, xuu301, app(app(app(ty_@3, bc), bd), be)) -> new_compare2(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs6(xuu40000, xuu3000, bc), new_asAs(new_esEs5(xuu40001, xuu3001, bd), new_esEs4(xuu40002, xuu3002, be))), bc, bd, be) 25.38/9.09 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 5 > 8, 5 > 9, 5 > 10 25.38/9.09 25.38/9.09 25.38/9.09 *new_lt1(xuu98, xuu101, eb, ec) -> new_compare3(xuu98, xuu101, eb, ec) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, eg, app(app(ty_Either, fd), ff), df) -> new_lt1(xuu99, xuu102, fd, ff) 25.38/9.09 The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare2(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, app(app(ty_Either, eb), ec), de, df) -> new_compare3(xuu98, xuu101, eb, ec) 25.38/9.09 The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare3(Left(xuu40000), Left(xuu3000), bf, bg) -> new_compare20(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, bf), bf, bg) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(xuu59, xuu60, False, app(ty_[], hc), hd) -> new_compare(xuu59, xuu60, hc) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_primCompAux0(xuu34, xuu35, EQ, app(ty_[], cc)) -> new_compare(xuu34, xuu35, cc) 25.38/9.09 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_primCompAux(Left(xuu40000), Left(xuu3000), xuu4001, xuu301, app(app(ty_Either, bf), bg)) -> new_compare20(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, bf), bf, bg) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 5 > 4, 5 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_primCompAux(xuu4000, xuu300, xuu4001, xuu301, bb) -> new_primCompAux0(xuu4001, xuu301, new_compare0(xuu4000, xuu300, bb), app(ty_[], bb)) 25.38/9.09 The graph contains the following edges 3 >= 1, 4 >= 2 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs1(Left(xuu590), Left(xuu600), app(app(ty_@2, bec), bed), bdd) -> new_ltEs3(xuu590, xuu600, bec, bed) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs1(Right(xuu590), Right(xuu600), bee, app(app(ty_@2, bfe), bff)) -> new_ltEs3(xuu590, xuu600, bfe, bff) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs1(Right(xuu590), Right(xuu600), bee, app(app(ty_Either, bfb), bfc)) -> new_ltEs1(xuu590, xuu600, bfb, bfc) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs1(Left(xuu590), Left(xuu600), app(app(ty_Either, bdh), bea), bdd) -> new_ltEs1(xuu590, xuu600, bdh, bea) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs1(Right(xuu590), Right(xuu600), bee, app(ty_[], bef)) -> new_ltEs(xuu590, xuu600, bef) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs1(Left(xuu590), Left(xuu600), app(ty_[], bdc), bdd) -> new_ltEs(xuu590, xuu600, bdc) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs1(Left(xuu590), Left(xuu600), app(ty_Maybe, beb), bdd) -> new_ltEs2(xuu590, xuu600, beb) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs1(Right(xuu590), Right(xuu600), bee, app(ty_Maybe, bfd)) -> new_ltEs2(xuu590, xuu600, bfd) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs1(Left(xuu590), Left(xuu600), app(app(app(ty_@3, bde), bdf), bdg), bdd) -> new_ltEs0(xuu590, xuu600, bde, bdf, bdg) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs1(Right(xuu590), Right(xuu600), bee, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs0(xuu590, xuu600, beg, beh, bfa) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(Left(xuu590), Left(xuu600), False, app(app(ty_Either, app(app(ty_@2, bec), bed)), bdd), hd) -> new_ltEs3(xuu590, xuu600, bec, bed) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, cab), app(app(ty_@2, cbb), cbc)), hd) -> new_ltEs3(xuu591, xuu601, cbb, cbc) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(Right(xuu590), Right(xuu600), False, app(app(ty_Either, bee), app(app(ty_@2, bfe), bff)), hd) -> new_ltEs3(xuu590, xuu600, bfe, bff) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), hf), app(app(ty_@2, bda), bdb)), hd) -> new_ltEs3(xuu592, xuu602, bda, bdb) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(Just(xuu590), Just(xuu600), False, app(ty_Maybe, app(app(ty_@2, bgf), bgg)), hd) -> new_ltEs3(xuu590, xuu600, bgf, bgg) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(Just(xuu590), Just(xuu600), False, app(ty_Maybe, app(app(ty_Either, bgc), bgd)), hd) -> new_ltEs1(xuu590, xuu600, bgc, bgd) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), hf), app(app(ty_Either, bcf), bcg)), hd) -> new_ltEs1(xuu592, xuu602, bcf, bcg) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(Left(xuu590), Left(xuu600), False, app(app(ty_Either, app(app(ty_Either, bdh), bea)), bdd), hd) -> new_ltEs1(xuu590, xuu600, bdh, bea) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(Right(xuu590), Right(xuu600), False, app(app(ty_Either, bee), app(app(ty_Either, bfb), bfc)), hd) -> new_ltEs1(xuu590, xuu600, bfb, bfc) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, cab), app(app(ty_Either, cag), cah)), hd) -> new_ltEs1(xuu591, xuu601, cag, cah) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(Left(xuu590), Left(xuu600), False, app(app(ty_Either, app(ty_[], bdc)), bdd), hd) -> new_ltEs(xuu590, xuu600, bdc) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(Right(xuu590), Right(xuu600), False, app(app(ty_Either, bee), app(ty_[], bef)), hd) -> new_ltEs(xuu590, xuu600, bef) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(Just(xuu590), Just(xuu600), False, app(ty_Maybe, app(ty_[], bfg)), hd) -> new_ltEs(xuu590, xuu600, bfg) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, cab), app(ty_[], cac)), hd) -> new_ltEs(xuu591, xuu601, cac) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), hf), app(ty_[], bcb)), hd) -> new_ltEs(xuu592, xuu602, bcb) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), app(app(ty_@2, baf), bag), hf, hg) -> new_lt3(xuu590, xuu600, baf, bag) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, app(app(ty_@2, bbh), bca), hg) -> new_lt3(xuu591, xuu601, bbh, bca) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), app(app(ty_@2, bbh), bca)), hg), hd) -> new_lt3(xuu591, xuu601, bbh, bca) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, app(app(ty_@2, baf), bag)), hf), hg), hd) -> new_lt3(xuu590, xuu600, baf, bag) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, app(app(ty_@2, bhh), caa)), bha), hd) -> new_lt3(xuu590, xuu600, bhh, caa) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), app(ty_Maybe, bae), hf, hg) -> new_lt2(xuu590, xuu600, bae) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, app(ty_Maybe, bbg), hg) -> new_lt2(xuu591, xuu601, bbg) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, app(ty_Maybe, bhg)), bha), hd) -> new_lt2(xuu590, xuu600, bhg) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), app(ty_Maybe, bbg)), hg), hd) -> new_lt2(xuu591, xuu601, bbg) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, app(ty_Maybe, bae)), hf), hg), hd) -> new_lt2(xuu590, xuu600, bae) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(Just(xuu590), Just(xuu600), False, app(ty_Maybe, app(ty_Maybe, bge)), hd) -> new_ltEs2(xuu590, xuu600, bge) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), hf), app(ty_Maybe, bch)), hd) -> new_ltEs2(xuu592, xuu602, bch) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(Left(xuu590), Left(xuu600), False, app(app(ty_Either, app(ty_Maybe, beb)), bdd), hd) -> new_ltEs2(xuu590, xuu600, beb) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, cab), app(ty_Maybe, cba)), hd) -> new_ltEs2(xuu591, xuu601, cba) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(Right(xuu590), Right(xuu600), False, app(app(ty_Either, bee), app(ty_Maybe, bfd)), hd) -> new_ltEs2(xuu590, xuu600, bfd) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), app(ty_[], he), hf, hg) -> new_lt(xuu590, xuu600, he) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, app(ty_[], bba), hg) -> new_lt(xuu591, xuu601, bba) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), app(ty_[], bba)), hg), hd) -> new_lt(xuu591, xuu601, bba) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, app(ty_[], bgh)), bha), hd) -> new_lt(xuu590, xuu600, bgh) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, app(ty_[], he)), hf), hg), hd) -> new_lt(xuu590, xuu600, he) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), app(app(app(ty_@3, hh), baa), bab), hf, hg) -> new_lt0(xuu590, xuu600, hh, baa, bab) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, app(app(app(ty_@3, bbb), bbc), bbd), hg) -> new_lt0(xuu591, xuu601, bbb, bbc, bbd) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), bah, app(app(ty_Either, bbe), bbf), hg) -> new_lt1(xuu591, xuu601, bbe, bbf) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_ltEs0(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), app(app(ty_Either, bac), bad), hf, hg) -> new_lt1(xuu590, xuu600, bac, bad) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), hf), app(app(app(ty_@3, bcc), bcd), bce)), hd) -> new_ltEs0(xuu592, xuu602, bcc, bcd, bce) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, cab), app(app(app(ty_@3, cad), cae), caf)), hd) -> new_ltEs0(xuu591, xuu601, cad, cae, caf) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(Just(xuu590), Just(xuu600), False, app(ty_Maybe, app(app(app(ty_@3, bfh), bga), bgb)), hd) -> new_ltEs0(xuu590, xuu600, bfh, bga, bgb) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(Right(xuu590), Right(xuu600), False, app(app(ty_Either, bee), app(app(app(ty_@3, beg), beh), bfa)), hd) -> new_ltEs0(xuu590, xuu600, beg, beh, bfa) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(Left(xuu590), Left(xuu600), False, app(app(ty_Either, app(app(app(ty_@3, bde), bdf), bdg)), bdd), hd) -> new_ltEs0(xuu590, xuu600, bde, bdf, bdg) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, app(app(app(ty_@3, hh), baa), bab)), hf), hg), hd) -> new_lt0(xuu590, xuu600, hh, baa, bab) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), app(app(app(ty_@3, bbb), bbc), bbd)), hg), hd) -> new_lt0(xuu591, xuu601, bbb, bbc, bbd) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, app(app(app(ty_@3, bhb), bhc), bhd)), bha), hd) -> new_lt0(xuu590, xuu600, bhb, bhc, bhd) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@2(xuu590, xuu591), @2(xuu600, xuu601), False, app(app(ty_@2, app(app(ty_Either, bhe), bhf)), bha), hd) -> new_lt1(xuu590, xuu600, bhe, bhf) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, app(app(ty_Either, bac), bad)), hf), hg), hd) -> new_lt1(xuu590, xuu600, bac, bad) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 *new_compare20(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), False, app(app(app(ty_@3, bah), app(app(ty_Either, bbe), bbf)), hg), hd) -> new_lt1(xuu591, xuu601, bbe, bbf) 25.38/9.09 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.38/9.09 25.38/9.09 25.38/9.09 ---------------------------------------- 25.38/9.09 25.38/9.09 (27) 25.38/9.09 YES 25.38/9.09 25.38/9.09 ---------------------------------------- 25.38/9.09 25.38/9.09 (28) 25.38/9.09 Obligation: 25.38/9.09 Q DP problem: 25.38/9.09 The TRS P consists of the following rules: 25.38/9.09 25.38/9.09 new_addToFM_C10(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, GT, bb, bc) -> new_addToFM_C(xuu34, :(xuu4000, xuu4001), xuu401, bb, bc) 25.38/9.09 new_addToFM_C(Branch([], xuu31, xuu32, xuu33, xuu34), :(xuu4000, xuu4001), xuu401, bb, bc) -> new_addToFM_C10(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, GT, bb, bc) 25.38/9.09 new_addToFM_C(Branch(:(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), [], xuu401, bb, bc) -> new_addToFM_C(xuu33, [], xuu401, bb, bc) 25.38/9.09 new_addToFM_C(Branch([], xuu31, xuu32, xuu33, xuu34), [], xuu401, bb, bc) -> new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu401, EQ, bb, bc) 25.38/9.09 new_addToFM_C20(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, h, ba) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_compare18(:(xuu22, xuu23), :(xuu16, xuu17), h), h, ba) 25.38/9.09 new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, EQ, h, ba) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_compare18(:(xuu22, xuu23), :(xuu16, xuu17), h), h, ba) 25.38/9.09 new_addToFM_C(Branch(:(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), :(xuu4000, xuu4001), xuu401, bb, bc) -> new_addToFM_C2(xuu300, xuu301, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, bb), bb, bc) 25.38/9.09 new_addToFM_C11(xuu31, xuu32, xuu33, xuu34, xuu401, GT, bb, bc) -> new_addToFM_C(xuu34, [], xuu401, bb, bc) 25.38/9.09 new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, LT, h, ba) -> new_addToFM_C(xuu20, :(xuu22, xuu23), xuu24, h, ba) 25.38/9.09 new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, GT, h, ba) -> new_addToFM_C20(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, h, ba) 25.38/9.09 new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, GT, h, ba) -> new_addToFM_C(xuu21, :(xuu22, xuu23), xuu24, h, ba) 25.38/9.09 25.38/9.09 The TRS R consists of the following rules: 25.38/9.09 25.38/9.09 new_esEs11(xuu40000, xuu3000, app(ty_[], ff)) -> new_esEs24(xuu40000, xuu3000, ff) 25.38/9.09 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.38/9.09 new_esEs26(xuu590, xuu600, app(ty_Ratio, baa)) -> new_esEs21(xuu590, xuu600, baa) 25.38/9.09 new_esEs7(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.09 new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, bb) -> new_primCompAux00(xuu4001, xuu301, new_compare0(xuu4000, xuu300, bb), app(ty_[], bb)) 25.38/9.09 new_pePe(True, xuu206) -> True 25.38/9.09 new_ltEs19(xuu591, xuu601, app(app(app(ty_@3, baf), bag), bah)) -> new_ltEs6(xuu591, xuu601, baf, bag, bah) 25.38/9.09 new_esEs10(xuu40001, xuu3001, ty_@0) -> new_esEs22(xuu40001, xuu3001) 25.38/9.09 new_esEs36(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.38/9.09 new_esEs27(xuu400002, xuu30002, ty_Float) -> new_esEs20(xuu400002, xuu30002) 25.38/9.09 new_compare16(GT, LT) -> GT 25.38/9.09 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.38/9.09 new_primCompAux00(xuu34, xuu35, EQ, ty_Char) -> new_compare6(xuu34, xuu35) 25.38/9.09 new_ltEs24(xuu592, xuu602, ty_Bool) -> new_ltEs12(xuu592, xuu602) 25.38/9.09 new_compare24(xuu111, xuu112, xuu113, xuu114, True, bgb, bgc) -> EQ 25.38/9.09 new_compare110(xuu153, xuu154, False, eca) -> GT 25.38/9.09 new_compare26(xuu66, xuu67, True, cah, cba) -> EQ 25.38/9.09 new_ltEs4(xuu59, xuu60, ty_Int) -> new_ltEs7(xuu59, xuu60) 25.38/9.09 new_esEs28(xuu400001, xuu30001, ty_Char) -> new_esEs18(xuu400001, xuu30001) 25.38/9.09 new_lt6(xuu590, xuu600, ty_Bool) -> new_lt12(xuu590, xuu600) 25.38/9.09 new_esEs5(xuu40001, xuu3001, app(ty_Ratio, fhf)) -> new_esEs21(xuu40001, xuu3001, fhf) 25.38/9.09 new_compare0(xuu4000, xuu300, ty_Char) -> new_compare6(xuu4000, xuu300) 25.38/9.09 new_ltEs23(xuu100, xuu103, ty_Double) -> new_ltEs15(xuu100, xuu103) 25.38/9.09 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_Maybe, ce)) -> new_esEs12(xuu400000, xuu30000, ce) 25.38/9.09 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(ty_Ratio, dhh)) -> new_ltEs11(xuu590, xuu600, dhh) 25.38/9.09 new_esEs4(xuu40002, xuu3002, app(app(app(ty_@3, ffg), ffh), fga)) -> new_esEs14(xuu40002, xuu3002, ffg, ffh, fga) 25.38/9.09 new_compare16(EQ, LT) -> GT 25.38/9.09 new_esEs33(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.09 new_lt19(xuu111, xuu113, app(ty_Ratio, cad)) -> new_lt11(xuu111, xuu113, cad) 25.38/9.09 new_esEs26(xuu590, xuu600, ty_Ordering) -> new_esEs19(xuu590, xuu600) 25.38/9.09 new_esEs5(xuu40001, xuu3001, app(ty_[], fhh)) -> new_esEs24(xuu40001, xuu3001, fhh) 25.38/9.09 new_esEs35(xuu98, xuu101, ty_@0) -> new_esEs22(xuu98, xuu101) 25.38/9.09 new_esEs36(xuu400001, xuu30001, app(ty_Ratio, fab)) -> new_esEs21(xuu400001, xuu30001, fab) 25.38/9.09 new_esEs26(xuu590, xuu600, ty_Integer) -> new_esEs23(xuu590, xuu600) 25.38/9.09 new_ltEs21(xuu66, xuu67, ty_Ordering) -> new_ltEs16(xuu66, xuu67) 25.38/9.09 new_esEs12(Nothing, Just(xuu30000), bd) -> False 25.38/9.09 new_esEs12(Just(xuu400000), Nothing, bd) -> False 25.38/9.09 new_esEs6(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.09 new_ltEs8(Left(xuu590), Left(xuu600), ty_Double, gf) -> new_ltEs15(xuu590, xuu600) 25.38/9.09 new_esEs17(Left(xuu400000), Left(xuu30000), ty_@0, ccf) -> new_esEs22(xuu400000, xuu30000) 25.38/9.09 new_esEs5(xuu40001, xuu3001, ty_Ordering) -> new_esEs19(xuu40001, xuu3001) 25.38/9.09 new_esEs12(Nothing, Nothing, bd) -> True 25.38/9.09 new_esEs26(xuu590, xuu600, app(ty_[], hc)) -> new_esEs24(xuu590, xuu600, hc) 25.38/9.09 new_primEqNat0(Succ(xuu4000000), Succ(xuu300000)) -> new_primEqNat0(xuu4000000, xuu300000) 25.38/9.09 new_esEs33(xuu400000, xuu30000, app(ty_Maybe, ebe)) -> new_esEs12(xuu400000, xuu30000, ebe) 25.38/9.09 new_compare27(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Int) -> new_compare17(new_sr(xuu40000, xuu3001), new_sr(xuu3000, xuu40001)) 25.38/9.09 new_esEs24([], [], ead) -> True 25.38/9.09 new_not(True) -> False 25.38/9.09 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(app(ty_@3, ccg), cch), cda), ccf) -> new_esEs14(xuu400000, xuu30000, ccg, cch, cda) 25.38/9.09 new_lt22(xuu590, xuu600, app(ty_[], fbg)) -> new_lt7(xuu590, xuu600, fbg) 25.38/9.09 new_lt21(xuu99, xuu102, app(app(ty_@2, eec), eed)) -> new_lt14(xuu99, xuu102, eec, eed) 25.38/9.09 new_lt23(xuu591, xuu601, ty_Int) -> new_lt9(xuu591, xuu601) 25.38/9.09 new_esEs36(xuu400001, xuu30001, app(app(ty_@2, ehc), ehd)) -> new_esEs13(xuu400001, xuu30001, ehc, ehd) 25.38/9.09 new_esEs5(xuu40001, xuu3001, app(ty_Maybe, fhg)) -> new_esEs12(xuu40001, xuu3001, fhg) 25.38/9.09 new_esEs11(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.09 new_esEs5(xuu40001, xuu3001, ty_Integer) -> new_esEs23(xuu40001, xuu3001) 25.38/9.09 new_ltEs24(xuu592, xuu602, ty_Integer) -> new_ltEs18(xuu592, xuu602) 25.38/9.09 new_ltEs22(xuu73, xuu74, ty_Float) -> new_ltEs17(xuu73, xuu74) 25.38/9.09 new_ltEs8(Left(xuu590), Left(xuu600), app(app(ty_Either, dgd), dge), gf) -> new_ltEs8(xuu590, xuu600, dgd, dge) 25.38/9.09 new_esEs8(xuu40000, xuu3000, app(app(ty_Either, dcg), dch)) -> new_esEs17(xuu40000, xuu3000, dcg, dch) 25.38/9.09 new_esEs35(xuu98, xuu101, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_esEs14(xuu98, xuu101, ecb, ecc, ecd) 25.38/9.09 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.09 new_esEs11(xuu40000, xuu3000, app(app(ty_Either, fa), fb)) -> new_esEs17(xuu40000, xuu3000, fa, fb) 25.38/9.09 new_ltEs19(xuu591, xuu601, ty_Bool) -> new_ltEs12(xuu591, xuu601) 25.38/9.09 new_primEqNat0(Succ(xuu4000000), Zero) -> False 25.38/9.09 new_primEqNat0(Zero, Succ(xuu300000)) -> False 25.38/9.09 new_esEs18(Char(xuu400000), Char(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 25.38/9.09 new_esEs38(xuu591, xuu601, ty_Char) -> new_esEs18(xuu591, xuu601) 25.38/9.09 new_compare10(xuu137, xuu138, True, ebg, ebh) -> LT 25.38/9.09 new_ltEs8(Left(xuu590), Left(xuu600), ty_Char, gf) -> new_ltEs10(xuu590, xuu600) 25.38/9.09 new_esEs8(xuu40000, xuu3000, app(app(ty_@2, dcb), dcc)) -> new_esEs13(xuu40000, xuu3000, dcb, dcc) 25.38/9.09 new_ltEs4(xuu59, xuu60, app(ty_Ratio, gg)) -> new_ltEs11(xuu59, xuu60, gg) 25.38/9.09 new_esEs33(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.09 new_esEs11(xuu40000, xuu3000, app(ty_Maybe, fd)) -> new_esEs12(xuu40000, xuu3000, fd) 25.38/9.09 new_ltEs4(xuu59, xuu60, app(app(ty_@2, ha), hb)) -> new_ltEs14(xuu59, xuu60, ha, hb) 25.38/9.09 new_compare13(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.09 new_esEs4(xuu40002, xuu3002, ty_@0) -> new_esEs22(xuu40002, xuu3002) 25.38/9.09 new_esEs36(xuu400001, xuu30001, ty_Bool) -> new_esEs15(xuu400001, xuu30001) 25.38/9.09 new_esEs9(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.09 new_primCmpInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> GT 25.38/9.09 new_compare18(:(xuu40000, xuu40001), :(xuu3000, xuu3001), ddd) -> new_primCompAux1(xuu40000, xuu3000, xuu40001, xuu3001, ddd) 25.38/9.09 new_lt6(xuu590, xuu600, ty_Ordering) -> new_lt16(xuu590, xuu600) 25.38/9.09 new_esEs11(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.09 new_ltEs11(xuu59, xuu60, gg) -> new_fsEs(new_compare27(xuu59, xuu60, gg)) 25.38/9.09 new_esEs26(xuu590, xuu600, app(app(ty_@2, bac), bad)) -> new_esEs13(xuu590, xuu600, bac, bad) 25.38/9.09 new_ltEs21(xuu66, xuu67, ty_Int) -> new_ltEs7(xuu66, xuu67) 25.38/9.09 new_esEs33(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.09 new_ltEs8(Left(xuu590), Left(xuu600), ty_@0, gf) -> new_ltEs9(xuu590, xuu600) 25.38/9.09 new_ltEs19(xuu591, xuu601, ty_Integer) -> new_ltEs18(xuu591, xuu601) 25.38/9.09 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.09 new_ltEs9(xuu59, xuu60) -> new_fsEs(new_compare8(xuu59, xuu60)) 25.38/9.09 new_primPlusNat1(Succ(xuu20900), Succ(xuu20800)) -> Succ(Succ(new_primPlusNat1(xuu20900, xuu20800))) 25.38/9.09 new_primCompAux00(xuu34, xuu35, GT, cfd) -> GT 25.38/9.09 new_compare0(xuu4000, xuu300, app(app(ty_@2, cg), da)) -> new_compare7(xuu4000, xuu300, cg, da) 25.38/9.09 new_primCmpNat0(Zero, Succ(xuu30000)) -> LT 25.38/9.09 new_ltEs23(xuu100, xuu103, ty_@0) -> new_ltEs9(xuu100, xuu103) 25.38/9.09 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.09 new_esEs29(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.09 new_compare15(Right(xuu40000), Right(xuu3000), daf, dag) -> new_compare26(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, dag), daf, dag) 25.38/9.09 new_ltEs21(xuu66, xuu67, app(app(ty_Either, cbf), cbg)) -> new_ltEs8(xuu66, xuu67, cbf, cbg) 25.38/9.09 new_ltEs20(xuu112, xuu114, app(ty_Maybe, bhc)) -> new_ltEs13(xuu112, xuu114, bhc) 25.38/9.09 new_esEs33(xuu400000, xuu30000, app(ty_Ratio, ebd)) -> new_esEs21(xuu400000, xuu30000, ebd) 25.38/9.09 new_ltEs23(xuu100, xuu103, app(ty_Ratio, efc)) -> new_ltEs11(xuu100, xuu103, efc) 25.38/9.09 new_lt20(xuu98, xuu101, ty_Float) -> new_lt17(xuu98, xuu101) 25.38/9.09 new_compare15(Left(xuu40000), Right(xuu3000), daf, dag) -> LT 25.38/9.09 new_ltEs4(xuu59, xuu60, app(app(app(ty_@3, gb), gc), gd)) -> new_ltEs6(xuu59, xuu60, gb, gc, gd) 25.38/9.09 new_esEs5(xuu40001, xuu3001, app(app(ty_@2, fgg), fgh)) -> new_esEs13(xuu40001, xuu3001, fgg, fgh) 25.38/9.09 new_lt22(xuu590, xuu600, ty_Char) -> new_lt4(xuu590, xuu600) 25.38/9.09 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_[], cf)) -> new_esEs24(xuu400000, xuu30000, cf) 25.38/9.09 new_primCompAux00(xuu34, xuu35, EQ, ty_@0) -> new_compare8(xuu34, xuu35) 25.38/9.09 new_esEs39(xuu590, xuu600, app(app(ty_Either, fcc), fcd)) -> new_esEs17(xuu590, xuu600, fcc, fcd) 25.38/9.09 new_esEs19(LT, EQ) -> False 25.38/9.09 new_esEs19(EQ, LT) -> False 25.38/9.09 new_esEs39(xuu590, xuu600, ty_Bool) -> new_esEs15(xuu590, xuu600) 25.38/9.09 new_esEs30(xuu111, xuu113, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs14(xuu111, xuu113, bhg, bhh, caa) 25.38/9.09 new_esEs7(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.09 new_esEs33(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.09 new_ltEs4(xuu59, xuu60, ty_@0) -> new_ltEs9(xuu59, xuu60) 25.38/9.09 new_lt23(xuu591, xuu601, app(ty_Maybe, fdh)) -> new_lt13(xuu591, xuu601, fdh) 25.38/9.09 new_esEs11(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.09 new_compare17(xuu4000, xuu300) -> new_primCmpInt(xuu4000, xuu300) 25.38/9.09 new_lt23(xuu591, xuu601, ty_Double) -> new_lt15(xuu591, xuu601) 25.38/9.09 new_esEs39(xuu590, xuu600, app(app(ty_@2, fcg), fch)) -> new_esEs13(xuu590, xuu600, fcg, fch) 25.38/9.09 new_compare7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cg, da) -> new_compare24(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs11(xuu40000, xuu3000, cg), new_esEs10(xuu40001, xuu3001, da)), cg, da) 25.38/9.09 new_esEs8(xuu40000, xuu3000, app(ty_Ratio, dda)) -> new_esEs21(xuu40000, xuu3000, dda) 25.38/9.09 new_esEs36(xuu400001, xuu30001, app(ty_Maybe, fac)) -> new_esEs12(xuu400001, xuu30001, fac) 25.38/9.09 new_ltEs23(xuu100, xuu103, app(app(ty_@2, efe), eff)) -> new_ltEs14(xuu100, xuu103, efe, eff) 25.38/9.09 new_esEs10(xuu40001, xuu3001, ty_Char) -> new_esEs18(xuu40001, xuu3001) 25.38/9.09 new_esEs29(xuu400000, xuu30000, app(ty_[], bfg)) -> new_esEs24(xuu400000, xuu30000, bfg) 25.38/9.09 new_esEs34(xuu99, xuu102, ty_Float) -> new_esEs20(xuu99, xuu102) 25.38/9.09 new_esEs8(xuu40000, xuu3000, app(ty_[], ddc)) -> new_esEs24(xuu40000, xuu3000, ddc) 25.38/9.09 new_esEs29(xuu400000, xuu30000, app(app(ty_Either, bfc), bfd)) -> new_esEs17(xuu400000, xuu30000, bfc, bfd) 25.38/9.09 new_esEs38(xuu591, xuu601, ty_Int) -> new_esEs16(xuu591, xuu601) 25.38/9.09 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Float) -> new_ltEs17(xuu590, xuu600) 25.38/9.09 new_lt22(xuu590, xuu600, ty_Bool) -> new_lt12(xuu590, xuu600) 25.38/9.09 new_esEs15(True, True) -> True 25.38/9.09 new_primCompAux00(xuu34, xuu35, EQ, ty_Bool) -> new_compare28(xuu34, xuu35) 25.38/9.09 new_esEs5(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) 25.38/9.09 new_ltEs19(xuu591, xuu601, app(app(ty_@2, bbe), bbf)) -> new_ltEs14(xuu591, xuu601, bbe, bbf) 25.38/9.09 new_esEs29(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.09 new_primEqInt(Neg(Succ(xuu4000000)), Neg(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) 25.38/9.09 new_ltEs4(xuu59, xuu60, ty_Ordering) -> new_ltEs16(xuu59, xuu60) 25.38/9.09 new_esEs30(xuu111, xuu113, ty_@0) -> new_esEs22(xuu111, xuu113) 25.38/9.09 new_compare0(xuu4000, xuu300, ty_Float) -> new_compare13(xuu4000, xuu300) 25.38/9.09 new_primCmpInt(Neg(Zero), Pos(Succ(xuu30000))) -> LT 25.38/9.09 new_primCompAux00(xuu34, xuu35, EQ, ty_Double) -> new_compare30(xuu34, xuu35) 25.38/9.09 new_primMulInt(Pos(xuu30000), Pos(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.09 new_ltEs20(xuu112, xuu114, ty_Double) -> new_ltEs15(xuu112, xuu114) 25.38/9.09 new_ltEs13(Just(xuu590), Just(xuu600), app(app(ty_Either, egc), egd)) -> new_ltEs8(xuu590, xuu600, egc, egd) 25.38/9.09 new_esEs9(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.09 new_ltEs13(Just(xuu590), Just(xuu600), ty_Bool) -> new_ltEs12(xuu590, xuu600) 25.38/9.09 new_ltEs24(xuu592, xuu602, ty_Float) -> new_ltEs17(xuu592, xuu602) 25.38/9.09 new_lt21(xuu99, xuu102, app(ty_Maybe, eeb)) -> new_lt13(xuu99, xuu102, eeb) 25.38/9.09 new_esEs38(xuu591, xuu601, app(ty_Maybe, fdh)) -> new_esEs12(xuu591, xuu601, fdh) 25.38/9.09 new_ltEs8(Right(xuu590), Left(xuu600), ge, gf) -> False 25.38/9.09 new_primMulNat0(Succ(xuu300000), Zero) -> Zero 25.38/9.09 new_primMulNat0(Zero, Succ(xuu4000100)) -> Zero 25.38/9.09 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(ty_Maybe, eaa)) -> new_ltEs13(xuu590, xuu600, eaa) 25.38/9.09 new_ltEs13(Just(xuu590), Just(xuu600), app(app(app(ty_@3, efh), ega), egb)) -> new_ltEs6(xuu590, xuu600, efh, ega, egb) 25.38/9.09 new_esEs26(xuu590, xuu600, ty_Bool) -> new_esEs15(xuu590, xuu600) 25.38/9.09 new_esEs5(xuu40001, xuu3001, app(app(ty_Either, fhd), fhe)) -> new_esEs17(xuu40001, xuu3001, fhd, fhe) 25.38/9.09 new_esEs37(xuu400000, xuu30000, app(app(app(ty_@3, fag), fah), fba)) -> new_esEs14(xuu400000, xuu30000, fag, fah, fba) 25.38/9.09 new_compare30(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.09 new_esEs26(xuu590, xuu600, ty_Int) -> new_esEs16(xuu590, xuu600) 25.38/9.09 new_ltEs21(xuu66, xuu67, ty_Integer) -> new_ltEs18(xuu66, xuu67) 25.38/9.09 new_esEs8(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.09 new_compare15(Left(xuu40000), Left(xuu3000), daf, dag) -> new_compare25(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, daf), daf, dag) 25.38/9.09 new_ltEs23(xuu100, xuu103, ty_Int) -> new_ltEs7(xuu100, xuu103) 25.38/9.09 new_ltEs12(False, True) -> True 25.38/9.09 new_lt20(xuu98, xuu101, app(app(ty_Either, cfb), cfc)) -> new_lt10(xuu98, xuu101, cfb, cfc) 25.38/9.09 new_ltEs4(xuu59, xuu60, app(app(ty_Either, ge), gf)) -> new_ltEs8(xuu59, xuu60, ge, gf) 25.38/9.09 new_ltEs19(xuu591, xuu601, app(app(ty_Either, bba), bbb)) -> new_ltEs8(xuu591, xuu601, bba, bbb) 25.38/9.09 new_ltEs20(xuu112, xuu114, ty_@0) -> new_ltEs9(xuu112, xuu114) 25.38/9.09 new_esEs28(xuu400001, xuu30001, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs14(xuu400001, xuu30001, bdf, bdg, bdh) 25.38/9.09 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(ty_@2, be), bf)) -> new_esEs13(xuu400000, xuu30000, be, bf) 25.38/9.09 new_esEs26(xuu590, xuu600, app(ty_Maybe, bab)) -> new_esEs12(xuu590, xuu600, bab) 25.38/9.09 new_primPlusNat1(Succ(xuu20900), Zero) -> Succ(xuu20900) 25.38/9.09 new_primPlusNat1(Zero, Succ(xuu20800)) -> Succ(xuu20800) 25.38/9.09 new_esEs7(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.09 new_esEs30(xuu111, xuu113, ty_Char) -> new_esEs18(xuu111, xuu113) 25.38/9.09 new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_@2, cge), cgf)) -> new_compare7(xuu34, xuu35, cge, cgf) 25.38/9.09 new_esEs29(xuu400000, xuu30000, app(app(ty_@2, bef), beg)) -> new_esEs13(xuu400000, xuu30000, bef, beg) 25.38/9.09 new_compare28(False, False) -> EQ 25.38/9.09 new_ltEs21(xuu66, xuu67, ty_@0) -> new_ltEs9(xuu66, xuu67) 25.38/9.09 new_ltEs12(True, True) -> True 25.38/9.09 new_ltEs21(xuu66, xuu67, app(ty_Ratio, cbh)) -> new_ltEs11(xuu66, xuu67, cbh) 25.38/9.09 new_esEs11(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.09 new_compare0(xuu4000, xuu300, app(app(ty_Either, daf), dag)) -> new_compare15(xuu4000, xuu300, daf, dag) 25.38/9.09 new_ltEs21(xuu66, xuu67, app(app(ty_@2, ccb), ccc)) -> new_ltEs14(xuu66, xuu67, ccb, ccc) 25.38/9.09 new_ltEs19(xuu591, xuu601, ty_Ordering) -> new_ltEs16(xuu591, xuu601) 25.38/9.09 new_compare9(Integer(xuu40000), Integer(xuu3000)) -> new_primCmpInt(xuu40000, xuu3000) 25.38/9.09 new_esEs11(xuu40000, xuu3000, app(ty_Ratio, fc)) -> new_esEs21(xuu40000, xuu3000, fc) 25.38/9.09 new_ltEs4(xuu59, xuu60, app(ty_Maybe, gh)) -> new_ltEs13(xuu59, xuu60, gh) 25.38/9.09 new_esEs7(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.09 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.09 new_compare18(:(xuu40000, xuu40001), [], ddd) -> GT 25.38/9.09 new_ltEs21(xuu66, xuu67, ty_Double) -> new_ltEs15(xuu66, xuu67) 25.38/9.09 new_esEs36(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.38/9.09 new_esEs31(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.38/9.09 new_ltEs24(xuu592, xuu602, ty_Int) -> new_ltEs7(xuu592, xuu602) 25.38/9.09 new_compare16(LT, LT) -> EQ 25.38/9.09 new_esEs27(xuu400002, xuu30002, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs14(xuu400002, xuu30002, bcd, bce, bcf) 25.38/9.09 new_esEs33(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.09 new_ltEs24(xuu592, xuu602, app(app(ty_@2, ffc), ffd)) -> new_ltEs14(xuu592, xuu602, ffc, ffd) 25.38/9.09 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_Ratio, cdd), ccf) -> new_esEs21(xuu400000, xuu30000, cdd) 25.38/9.09 new_esEs6(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.09 new_esEs7(xuu40000, xuu3000, app(ty_[], dca)) -> new_esEs24(xuu40000, xuu3000, dca) 25.38/9.09 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(ty_Ratio, ceg)) -> new_esEs21(xuu400000, xuu30000, ceg) 25.38/9.09 new_esEs11(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.09 new_esEs38(xuu591, xuu601, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_esEs14(xuu591, xuu601, fdb, fdc, fdd) 25.38/9.09 new_esEs35(xuu98, xuu101, ty_Float) -> new_esEs20(xuu98, xuu101) 25.38/9.09 new_ltEs5(xuu59, xuu60, ga) -> new_fsEs(new_compare18(xuu59, xuu60, ga)) 25.38/9.09 new_esEs29(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.09 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_[], cdf), ccf) -> new_esEs24(xuu400000, xuu30000, cdf) 25.38/9.09 new_esEs35(xuu98, xuu101, ty_Int) -> new_esEs16(xuu98, xuu101) 25.38/9.09 new_lt6(xuu590, xuu600, ty_Char) -> new_lt4(xuu590, xuu600) 25.38/9.09 new_ltEs13(Just(xuu590), Just(xuu600), ty_Int) -> new_ltEs7(xuu590, xuu600) 25.38/9.09 new_ltEs19(xuu591, xuu601, ty_@0) -> new_ltEs9(xuu591, xuu601) 25.38/9.09 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(app(ty_@2, eab), eac)) -> new_ltEs14(xuu590, xuu600, eab, eac) 25.38/9.09 new_esEs28(xuu400001, xuu30001, app(ty_[], bee)) -> new_esEs24(xuu400001, xuu30001, bee) 25.38/9.09 new_esEs10(xuu40001, xuu3001, ty_Float) -> new_esEs20(xuu40001, xuu3001) 25.38/9.09 new_esEs10(xuu40001, xuu3001, ty_Double) -> new_esEs25(xuu40001, xuu3001) 25.38/9.09 new_esEs29(xuu400000, xuu30000, app(ty_Maybe, bff)) -> new_esEs12(xuu400000, xuu30000, bff) 25.38/9.09 new_esEs35(xuu98, xuu101, app(ty_Maybe, dfc)) -> new_esEs12(xuu98, xuu101, dfc) 25.38/9.09 new_esEs38(xuu591, xuu601, ty_Bool) -> new_esEs15(xuu591, xuu601) 25.38/9.09 new_lt20(xuu98, xuu101, app(ty_Maybe, dfc)) -> new_lt13(xuu98, xuu101, dfc) 25.38/9.09 new_esEs38(xuu591, xuu601, app(app(ty_Either, fde), fdf)) -> new_esEs17(xuu591, xuu601, fde, fdf) 25.38/9.09 new_primCompAux00(xuu34, xuu35, EQ, app(app(app(ty_@3, cff), cfg), cfh)) -> new_compare19(xuu34, xuu35, cff, cfg, cfh) 25.38/9.09 new_esEs5(xuu40001, xuu3001, ty_Char) -> new_esEs18(xuu40001, xuu3001) 25.38/9.09 new_compare0(xuu4000, xuu300, app(ty_[], ddd)) -> new_compare18(xuu4000, xuu300, ddd) 25.38/9.09 new_ltEs18(xuu59, xuu60) -> new_fsEs(new_compare9(xuu59, xuu60)) 25.38/9.09 new_esEs30(xuu111, xuu113, app(ty_Maybe, cae)) -> new_esEs12(xuu111, xuu113, cae) 25.38/9.09 new_compare10(xuu137, xuu138, False, ebg, ebh) -> GT 25.38/9.09 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.09 new_ltEs14(@2(xuu590, xuu591), @2(xuu600, xuu601), ha, hb) -> new_pePe(new_lt6(xuu590, xuu600, ha), new_asAs(new_esEs26(xuu590, xuu600, ha), new_ltEs19(xuu591, xuu601, hb))) 25.38/9.09 new_esEs38(xuu591, xuu601, ty_Integer) -> new_esEs23(xuu591, xuu601) 25.38/9.09 new_lt19(xuu111, xuu113, ty_Bool) -> new_lt12(xuu111, xuu113) 25.38/9.09 new_esEs19(LT, LT) -> True 25.38/9.09 new_primCompAux00(xuu34, xuu35, EQ, ty_Float) -> new_compare13(xuu34, xuu35) 25.38/9.09 new_esEs30(xuu111, xuu113, app(ty_Ratio, cad)) -> new_esEs21(xuu111, xuu113, cad) 25.38/9.09 new_lt22(xuu590, xuu600, ty_Ordering) -> new_lt16(xuu590, xuu600) 25.38/9.09 new_esEs27(xuu400002, xuu30002, app(app(ty_@2, bcb), bcc)) -> new_esEs13(xuu400002, xuu30002, bcb, bcc) 25.38/9.09 new_esEs6(xuu40000, xuu3000, app(app(ty_@2, eha), ehb)) -> new_esEs13(xuu40000, xuu3000, eha, ehb) 25.38/9.09 new_primCmpInt(Pos(Succ(xuu400000)), Pos(xuu3000)) -> new_primCmpNat0(Succ(xuu400000), xuu3000) 25.38/9.09 new_esEs38(xuu591, xuu601, ty_@0) -> new_esEs22(xuu591, xuu601) 25.38/9.09 new_lt18(xuu98, xuu101) -> new_esEs19(new_compare9(xuu98, xuu101), LT) 25.38/9.09 new_esEs10(xuu40001, xuu3001, app(ty_Maybe, eb)) -> new_esEs12(xuu40001, xuu3001, eb) 25.38/9.09 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(ty_[], cfa)) -> new_esEs24(xuu400000, xuu30000, cfa) 25.38/9.09 new_esEs29(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.09 new_lt23(xuu591, xuu601, ty_Char) -> new_lt4(xuu591, xuu601) 25.38/9.09 new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_Either, cga), cgb)) -> new_compare15(xuu34, xuu35, cga, cgb) 25.38/9.09 new_lt17(xuu98, xuu101) -> new_esEs19(new_compare13(xuu98, xuu101), LT) 25.38/9.09 new_esEs39(xuu590, xuu600, ty_Float) -> new_esEs20(xuu590, xuu600) 25.38/9.09 new_lt19(xuu111, xuu113, ty_Integer) -> new_lt18(xuu111, xuu113) 25.38/9.09 new_lt21(xuu99, xuu102, ty_Ordering) -> new_lt16(xuu99, xuu102) 25.38/9.09 new_ltEs23(xuu100, xuu103, app(ty_[], eee)) -> new_ltEs5(xuu100, xuu103, eee) 25.38/9.09 new_ltEs13(Nothing, Nothing, gh) -> True 25.38/9.09 new_ltEs13(Just(xuu590), Just(xuu600), app(app(ty_@2, egg), egh)) -> new_ltEs14(xuu590, xuu600, egg, egh) 25.38/9.09 new_ltEs13(Just(xuu590), Nothing, gh) -> False 25.38/9.09 new_lt19(xuu111, xuu113, app(ty_Maybe, cae)) -> new_lt13(xuu111, xuu113, cae) 25.38/9.09 new_ltEs12(True, False) -> False 25.38/9.09 new_esEs4(xuu40002, xuu3002, ty_Float) -> new_esEs20(xuu40002, xuu3002) 25.38/9.09 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Float, ccf) -> new_esEs20(xuu400000, xuu30000) 25.38/9.09 new_esEs33(xuu400000, xuu30000, app(app(ty_Either, ebb), ebc)) -> new_esEs17(xuu400000, xuu30000, ebb, ebc) 25.38/9.09 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_Maybe, cde), ccf) -> new_esEs12(xuu400000, xuu30000, cde) 25.38/9.09 new_esEs34(xuu99, xuu102, ty_Ordering) -> new_esEs19(xuu99, xuu102) 25.38/9.09 new_esEs14(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), bbg, bbh, bca) -> new_asAs(new_esEs29(xuu400000, xuu30000, bbg), new_asAs(new_esEs28(xuu400001, xuu30001, bbh), new_esEs27(xuu400002, xuu30002, bca))) 25.38/9.09 new_lt20(xuu98, xuu101, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_lt8(xuu98, xuu101, ecb, ecc, ecd) 25.38/9.09 new_compare0(xuu4000, xuu300, ty_Int) -> new_compare17(xuu4000, xuu300) 25.38/9.09 new_ltEs22(xuu73, xuu74, app(ty_[], cha)) -> new_ltEs5(xuu73, xuu74, cha) 25.38/9.09 new_esEs10(xuu40001, xuu3001, ty_Ordering) -> new_esEs19(xuu40001, xuu3001) 25.38/9.09 new_ltEs8(Left(xuu590), Left(xuu600), ty_Ordering, gf) -> new_ltEs16(xuu590, xuu600) 25.38/9.09 new_esEs13(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), eha, ehb) -> new_asAs(new_esEs37(xuu400000, xuu30000, eha), new_esEs36(xuu400001, xuu30001, ehb)) 25.38/9.09 new_lt21(xuu99, xuu102, ty_Int) -> new_lt9(xuu99, xuu102) 25.38/9.09 new_esEs33(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.09 new_esEs34(xuu99, xuu102, app(app(ty_Either, edg), edh)) -> new_esEs17(xuu99, xuu102, edg, edh) 25.38/9.09 new_compare28(False, True) -> LT 25.38/9.09 new_esEs10(xuu40001, xuu3001, ty_Int) -> new_esEs16(xuu40001, xuu3001) 25.38/9.09 new_esEs34(xuu99, xuu102, app(ty_Maybe, eeb)) -> new_esEs12(xuu99, xuu102, eeb) 25.38/9.09 new_ltEs12(False, False) -> True 25.38/9.09 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Double) -> new_ltEs15(xuu590, xuu600) 25.38/9.09 new_compare29(Just(xuu40000), Nothing, dde) -> GT 25.38/9.09 new_esEs7(xuu40000, xuu3000, app(app(ty_@2, dah), dba)) -> new_esEs13(xuu40000, xuu3000, dah, dba) 25.38/9.09 new_esEs17(Left(xuu400000), Right(xuu30000), cdg, ccf) -> False 25.38/9.09 new_esEs17(Right(xuu400000), Left(xuu30000), cdg, ccf) -> False 25.38/9.09 new_esEs34(xuu99, xuu102, ty_Integer) -> new_esEs23(xuu99, xuu102) 25.38/9.09 new_ltEs15(xuu59, xuu60) -> new_fsEs(new_compare30(xuu59, xuu60)) 25.38/9.09 new_esEs34(xuu99, xuu102, ty_@0) -> new_esEs22(xuu99, xuu102) 25.38/9.09 new_esEs4(xuu40002, xuu3002, ty_Char) -> new_esEs18(xuu40002, xuu3002) 25.38/9.09 new_compare13(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.09 new_compare13(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.09 new_lt22(xuu590, xuu600, ty_Int) -> new_lt9(xuu590, xuu600) 25.38/9.09 new_ltEs24(xuu592, xuu602, app(ty_Ratio, ffa)) -> new_ltEs11(xuu592, xuu602, ffa) 25.38/9.09 new_esEs39(xuu590, xuu600, ty_Ordering) -> new_esEs19(xuu590, xuu600) 25.38/9.09 new_esEs28(xuu400001, xuu30001, app(ty_Maybe, bed)) -> new_esEs12(xuu400001, xuu30001, bed) 25.38/9.09 new_lt19(xuu111, xuu113, app(app(app(ty_@3, bhg), bhh), caa)) -> new_lt8(xuu111, xuu113, bhg, bhh, caa) 25.38/9.09 new_lt6(xuu590, xuu600, ty_Float) -> new_lt17(xuu590, xuu600) 25.38/9.09 new_esEs39(xuu590, xuu600, ty_Integer) -> new_esEs23(xuu590, xuu600) 25.38/9.09 new_lt19(xuu111, xuu113, ty_@0) -> new_lt5(xuu111, xuu113) 25.38/9.09 new_compare28(True, True) -> EQ 25.38/9.09 new_esEs27(xuu400002, xuu30002, app(ty_[], bdc)) -> new_esEs24(xuu400002, xuu30002, bdc) 25.38/9.09 new_lt22(xuu590, xuu600, ty_Integer) -> new_lt18(xuu590, xuu600) 25.38/9.09 new_lt19(xuu111, xuu113, ty_Ordering) -> new_lt16(xuu111, xuu113) 25.38/9.09 new_esEs27(xuu400002, xuu30002, app(ty_Ratio, bda)) -> new_esEs21(xuu400002, xuu30002, bda) 25.38/9.09 new_esEs26(xuu590, xuu600, ty_Double) -> new_esEs25(xuu590, xuu600) 25.38/9.09 new_ltEs8(Left(xuu590), Left(xuu600), ty_Float, gf) -> new_ltEs17(xuu590, xuu600) 25.38/9.09 new_ltEs8(Left(xuu590), Left(xuu600), ty_Integer, gf) -> new_ltEs18(xuu590, xuu600) 25.38/9.09 new_ltEs8(Left(xuu590), Right(xuu600), ge, gf) -> True 25.38/9.09 new_esEs24(:(xuu400000, xuu400001), :(xuu30000, xuu30001), ead) -> new_asAs(new_esEs33(xuu400000, xuu30000, ead), new_esEs24(xuu400001, xuu30001, ead)) 25.38/9.09 new_esEs28(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.38/9.09 new_lt19(xuu111, xuu113, ty_Int) -> new_lt9(xuu111, xuu113) 25.38/9.09 new_esEs37(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.09 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_Ratio, cd)) -> new_esEs21(xuu400000, xuu30000, cd) 25.38/9.09 new_esEs19(LT, GT) -> False 25.38/9.09 new_esEs19(GT, LT) -> False 25.38/9.09 new_ltEs4(xuu59, xuu60, app(ty_[], ga)) -> new_ltEs5(xuu59, xuu60, ga) 25.38/9.09 new_ltEs10(xuu59, xuu60) -> new_fsEs(new_compare6(xuu59, xuu60)) 25.38/9.09 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_Maybe, dgg), gf) -> new_ltEs13(xuu590, xuu600, dgg) 25.38/9.09 new_esEs29(xuu400000, xuu30000, app(ty_Ratio, bfe)) -> new_esEs21(xuu400000, xuu30000, bfe) 25.38/9.09 new_lt22(xuu590, xuu600, ty_Float) -> new_lt17(xuu590, xuu600) 25.38/9.09 new_ltEs6(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), gb, gc, gd) -> new_pePe(new_lt22(xuu590, xuu600, gb), new_asAs(new_esEs39(xuu590, xuu600, gb), new_pePe(new_lt23(xuu591, xuu601, gc), new_asAs(new_esEs38(xuu591, xuu601, gc), new_ltEs24(xuu592, xuu602, gd))))) 25.38/9.09 new_esEs38(xuu591, xuu601, ty_Ordering) -> new_esEs19(xuu591, xuu601) 25.38/9.09 new_ltEs8(Left(xuu590), Left(xuu600), app(app(ty_@2, dgh), dha), gf) -> new_ltEs14(xuu590, xuu600, dgh, dha) 25.38/9.09 new_ltEs21(xuu66, xuu67, app(ty_[], cbb)) -> new_ltEs5(xuu66, xuu67, cbb) 25.38/9.09 new_lt20(xuu98, xuu101, ty_Integer) -> new_lt18(xuu98, xuu101) 25.38/9.09 new_lt20(xuu98, xuu101, ty_Int) -> new_lt9(xuu98, xuu101) 25.38/9.09 new_primCompAux00(xuu34, xuu35, EQ, ty_Int) -> new_compare17(xuu34, xuu35) 25.38/9.09 new_lt20(xuu98, xuu101, ty_Char) -> new_lt4(xuu98, xuu101) 25.38/9.09 new_compare29(Nothing, Just(xuu3000), dde) -> LT 25.38/9.09 new_esEs37(xuu400000, xuu30000, app(app(ty_Either, fbb), fbc)) -> new_esEs17(xuu400000, xuu30000, fbb, fbc) 25.38/9.09 new_esEs30(xuu111, xuu113, ty_Double) -> new_esEs25(xuu111, xuu113) 25.38/9.09 new_esEs35(xuu98, xuu101, app(app(ty_Either, cfb), cfc)) -> new_esEs17(xuu98, xuu101, cfb, cfc) 25.38/9.09 new_lt23(xuu591, xuu601, ty_@0) -> new_lt5(xuu591, xuu601) 25.38/9.09 new_esEs35(xuu98, xuu101, ty_Integer) -> new_esEs23(xuu98, xuu101) 25.38/9.09 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Ordering, ccf) -> new_esEs19(xuu400000, xuu30000) 25.38/9.09 new_compare27(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Integer) -> new_compare9(new_sr0(xuu40000, xuu3001), new_sr0(xuu3000, xuu40001)) 25.38/9.09 new_esEs36(xuu400001, xuu30001, ty_Float) -> new_esEs20(xuu400001, xuu30001) 25.38/9.09 new_esEs25(Double(xuu400000, xuu400001), Double(xuu30000, xuu30001)) -> new_esEs16(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) 25.38/9.09 new_esEs35(xuu98, xuu101, ty_Char) -> new_esEs18(xuu98, xuu101) 25.38/9.09 new_ltEs4(xuu59, xuu60, ty_Float) -> new_ltEs17(xuu59, xuu60) 25.38/9.09 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_Ratio, ege)) -> new_ltEs11(xuu590, xuu600, ege) 25.38/9.09 new_primPlusNat1(Zero, Zero) -> Zero 25.38/9.09 new_ltEs4(xuu59, xuu60, ty_Integer) -> new_ltEs18(xuu59, xuu60) 25.38/9.09 new_primCompAux00(xuu34, xuu35, EQ, ty_Ordering) -> new_compare16(xuu34, xuu35) 25.38/9.09 new_primCompAux00(xuu34, xuu35, EQ, app(ty_Ratio, cgc)) -> new_compare27(xuu34, xuu35, cgc) 25.38/9.09 new_compare16(GT, GT) -> EQ 25.38/9.09 new_esEs32(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.09 new_compare0(xuu4000, xuu300, ty_Double) -> new_compare30(xuu4000, xuu300) 25.38/9.09 new_ltEs21(xuu66, xuu67, ty_Float) -> new_ltEs17(xuu66, xuu67) 25.38/9.09 new_lt9(xuu98, xuu101) -> new_esEs19(new_compare17(xuu98, xuu101), LT) 25.38/9.09 new_lt20(xuu98, xuu101, ty_@0) -> new_lt5(xuu98, xuu101) 25.38/9.09 new_esEs9(xuu40000, xuu3000, app(app(ty_@2, ddf), ddg)) -> new_esEs13(xuu40000, xuu3000, ddf, ddg) 25.38/9.09 new_esEs34(xuu99, xuu102, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs14(xuu99, xuu102, edd, ede, edf) 25.38/9.09 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Char, ccf) -> new_esEs18(xuu400000, xuu30000) 25.38/9.09 new_lt21(xuu99, xuu102, app(app(app(ty_@3, edd), ede), edf)) -> new_lt8(xuu99, xuu102, edd, ede, edf) 25.38/9.09 new_esEs15(False, True) -> False 25.38/9.09 new_esEs15(True, False) -> False 25.38/9.09 new_esEs31(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.38/9.09 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(app(ty_@2, cdh), cea)) -> new_esEs13(xuu400000, xuu30000, cdh, cea) 25.38/9.09 new_esEs34(xuu99, xuu102, ty_Bool) -> new_esEs15(xuu99, xuu102) 25.38/9.09 new_esEs10(xuu40001, xuu3001, app(app(app(ty_@3, dd), de), df)) -> new_esEs14(xuu40001, xuu3001, dd, de, df) 25.38/9.09 new_esEs35(xuu98, xuu101, ty_Ordering) -> new_esEs19(xuu98, xuu101) 25.38/9.09 new_lt4(xuu98, xuu101) -> new_esEs19(new_compare6(xuu98, xuu101), LT) 25.38/9.09 new_esEs11(xuu40000, xuu3000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs14(xuu40000, xuu3000, ef, eg, eh) 25.38/9.09 new_esEs37(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.09 new_esEs10(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) 25.38/9.09 new_primCmpNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primCmpNat0(xuu400000, xuu30000) 25.38/9.09 new_lt21(xuu99, xuu102, ty_@0) -> new_lt5(xuu99, xuu102) 25.38/9.09 new_esEs30(xuu111, xuu113, ty_Int) -> new_esEs16(xuu111, xuu113) 25.38/9.09 new_lt19(xuu111, xuu113, ty_Char) -> new_lt4(xuu111, xuu113) 25.38/9.09 new_esEs38(xuu591, xuu601, ty_Float) -> new_esEs20(xuu591, xuu601) 25.38/9.09 new_lt5(xuu98, xuu101) -> new_esEs19(new_compare8(xuu98, xuu101), LT) 25.38/9.09 new_lt23(xuu591, xuu601, ty_Float) -> new_lt17(xuu591, xuu601) 25.38/9.09 new_esEs37(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.09 new_lt22(xuu590, xuu600, ty_@0) -> new_lt5(xuu590, xuu600) 25.38/9.09 new_esEs37(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.09 new_esEs36(xuu400001, xuu30001, ty_@0) -> new_esEs22(xuu400001, xuu30001) 25.38/9.09 new_lt23(xuu591, xuu601, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_lt8(xuu591, xuu601, fdb, fdc, fdd) 25.38/9.09 new_esEs11(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.09 new_esEs36(xuu400001, xuu30001, app(app(ty_Either, ehh), faa)) -> new_esEs17(xuu400001, xuu30001, ehh, faa) 25.38/9.09 new_esEs28(xuu400001, xuu30001, ty_Double) -> new_esEs25(xuu400001, xuu30001) 25.38/9.09 new_esEs37(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.09 new_compare211(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, ece, ecf, ecg) -> new_compare112(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, new_lt20(xuu98, xuu101, ece), new_asAs(new_esEs35(xuu98, xuu101, ece), new_pePe(new_lt21(xuu99, xuu102, ecf), new_asAs(new_esEs34(xuu99, xuu102, ecf), new_ltEs23(xuu100, xuu103, ecg)))), ece, ecf, ecg) 25.38/9.09 new_ltEs20(xuu112, xuu114, app(ty_[], bgd)) -> new_ltEs5(xuu112, xuu114, bgd) 25.38/9.09 new_esEs36(xuu400001, xuu30001, ty_Char) -> new_esEs18(xuu400001, xuu30001) 25.38/9.09 new_compare110(xuu153, xuu154, True, eca) -> LT 25.38/9.09 new_compare14(xuu144, xuu145, False, dfa, dfb) -> GT 25.38/9.09 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.09 new_ltEs20(xuu112, xuu114, ty_Float) -> new_ltEs17(xuu112, xuu114) 25.38/9.09 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(ty_@2, ccd), cce), ccf) -> new_esEs13(xuu400000, xuu30000, ccd, cce) 25.38/9.09 new_compare15(Right(xuu40000), Left(xuu3000), daf, dag) -> GT 25.38/9.09 new_lt22(xuu590, xuu600, app(app(app(ty_@3, fbh), fca), fcb)) -> new_lt8(xuu590, xuu600, fbh, fca, fcb) 25.38/9.09 new_lt6(xuu590, xuu600, ty_@0) -> new_lt5(xuu590, xuu600) 25.38/9.09 new_lt6(xuu590, xuu600, ty_Integer) -> new_lt18(xuu590, xuu600) 25.38/9.09 new_esEs33(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.09 new_ltEs13(Nothing, Just(xuu600), gh) -> True 25.38/9.09 new_lt7(xuu98, xuu101, cgg) -> new_esEs19(new_compare18(xuu98, xuu101, cgg), LT) 25.38/9.09 new_lt21(xuu99, xuu102, ty_Integer) -> new_lt18(xuu99, xuu102) 25.38/9.09 new_esEs36(xuu400001, xuu30001, ty_Ordering) -> new_esEs19(xuu400001, xuu30001) 25.38/9.09 new_esEs28(xuu400001, xuu30001, app(ty_Ratio, bec)) -> new_esEs21(xuu400001, xuu30001, bec) 25.38/9.09 new_compare16(LT, EQ) -> LT 25.38/9.09 new_ltEs19(xuu591, xuu601, ty_Float) -> new_ltEs17(xuu591, xuu601) 25.38/9.09 new_esEs33(xuu400000, xuu30000, app(app(app(ty_@3, eag), eah), eba)) -> new_esEs14(xuu400000, xuu30000, eag, eah, eba) 25.38/9.09 new_esEs6(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.09 new_ltEs24(xuu592, xuu602, ty_Char) -> new_ltEs10(xuu592, xuu602) 25.38/9.09 new_primCmpInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> LT 25.38/9.09 new_lt22(xuu590, xuu600, app(ty_Maybe, fcf)) -> new_lt13(xuu590, xuu600, fcf) 25.38/9.09 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Bool, ccf) -> new_esEs15(xuu400000, xuu30000) 25.38/9.09 new_esEs37(xuu400000, xuu30000, app(ty_Maybe, fbe)) -> new_esEs12(xuu400000, xuu30000, fbe) 25.38/9.09 new_esEs34(xuu99, xuu102, ty_Char) -> new_esEs18(xuu99, xuu102) 25.38/9.09 new_ltEs7(xuu59, xuu60) -> new_fsEs(new_compare17(xuu59, xuu60)) 25.38/9.09 new_compare30(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.09 new_esEs9(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.09 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_Maybe, egf)) -> new_ltEs13(xuu590, xuu600, egf) 25.38/9.09 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_Ratio, dgf), gf) -> new_ltEs11(xuu590, xuu600, dgf) 25.38/9.09 new_ltEs20(xuu112, xuu114, ty_Integer) -> new_ltEs18(xuu112, xuu114) 25.38/9.09 new_compare14(xuu144, xuu145, True, dfa, dfb) -> LT 25.38/9.09 new_esEs37(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.09 new_lt23(xuu591, xuu601, ty_Integer) -> new_lt18(xuu591, xuu601) 25.38/9.09 new_primCmpInt(Pos(Zero), Neg(Succ(xuu30000))) -> GT 25.38/9.09 new_esEs4(xuu40002, xuu3002, ty_Bool) -> new_esEs15(xuu40002, xuu3002) 25.38/9.09 new_lt19(xuu111, xuu113, app(app(ty_Either, cab), cac)) -> new_lt10(xuu111, xuu113, cab, cac) 25.38/9.09 new_compare18([], :(xuu3000, xuu3001), ddd) -> LT 25.38/9.09 new_ltEs19(xuu591, xuu601, app(ty_[], bae)) -> new_ltEs5(xuu591, xuu601, bae) 25.38/9.09 new_ltEs22(xuu73, xuu74, app(ty_Ratio, chg)) -> new_ltEs11(xuu73, xuu74, chg) 25.38/9.09 new_primCmpInt(Neg(Succ(xuu400000)), Neg(xuu3000)) -> new_primCmpNat0(xuu3000, Succ(xuu400000)) 25.38/9.09 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.09 new_lt21(xuu99, xuu102, ty_Char) -> new_lt4(xuu99, xuu102) 25.38/9.09 new_esEs4(xuu40002, xuu3002, app(app(ty_@2, ffe), fff)) -> new_esEs13(xuu40002, xuu3002, ffe, fff) 25.38/9.09 new_esEs27(xuu400002, xuu30002, ty_Double) -> new_esEs25(xuu400002, xuu30002) 25.38/9.09 new_compare12(xuu185, xuu186, xuu187, xuu188, True, bfh, bga) -> LT 25.38/9.09 new_esEs10(xuu40001, xuu3001, app(app(ty_@2, db), dc)) -> new_esEs13(xuu40001, xuu3001, db, dc) 25.38/9.09 new_esEs9(xuu40000, xuu3000, app(ty_Ratio, dee)) -> new_esEs21(xuu40000, xuu3000, dee) 25.38/9.09 new_esEs27(xuu400002, xuu30002, app(ty_Maybe, bdb)) -> new_esEs12(xuu400002, xuu30002, bdb) 25.38/9.09 new_ltEs22(xuu73, xuu74, app(app(ty_@2, daa), dab)) -> new_ltEs14(xuu73, xuu74, daa, dab) 25.38/9.09 new_esEs8(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.09 new_esEs15(False, False) -> True 25.38/9.09 new_ltEs20(xuu112, xuu114, ty_Bool) -> new_ltEs12(xuu112, xuu114) 25.38/9.09 new_esEs33(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.09 new_primEqInt(Pos(Succ(xuu4000000)), Pos(Zero)) -> False 25.38/9.09 new_primEqInt(Pos(Zero), Pos(Succ(xuu300000))) -> False 25.38/9.09 new_lt6(xuu590, xuu600, app(app(app(ty_@3, hd), he), hf)) -> new_lt8(xuu590, xuu600, hd, he, hf) 25.38/9.09 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Ordering) -> new_ltEs16(xuu590, xuu600) 25.38/9.09 new_esEs29(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.09 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Integer, ccf) -> new_esEs23(xuu400000, xuu30000) 25.38/9.09 new_ltEs20(xuu112, xuu114, app(app(ty_Either, bgh), bha)) -> new_ltEs8(xuu112, xuu114, bgh, bha) 25.38/9.09 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.09 new_ltEs23(xuu100, xuu103, ty_Float) -> new_ltEs17(xuu100, xuu103) 25.38/9.09 new_ltEs13(Just(xuu590), Just(xuu600), ty_Char) -> new_ltEs10(xuu590, xuu600) 25.38/9.09 new_esEs39(xuu590, xuu600, ty_Char) -> new_esEs18(xuu590, xuu600) 25.38/9.09 new_primCmpNat0(Zero, Zero) -> EQ 25.38/9.09 new_esEs10(xuu40001, xuu3001, app(app(ty_Either, dg), dh)) -> new_esEs17(xuu40001, xuu3001, dg, dh) 25.38/9.09 new_lt6(xuu590, xuu600, ty_Int) -> new_lt9(xuu590, xuu600) 25.38/9.09 new_ltEs16(GT, EQ) -> False 25.38/9.09 new_primCompAux00(xuu34, xuu35, EQ, app(ty_Maybe, cgd)) -> new_compare29(xuu34, xuu35, cgd) 25.38/9.09 new_lt23(xuu591, xuu601, app(ty_[], fda)) -> new_lt7(xuu591, xuu601, fda) 25.38/9.09 new_lt20(xuu98, xuu101, ty_Ordering) -> new_lt16(xuu98, xuu101) 25.38/9.09 new_esEs4(xuu40002, xuu3002, app(ty_[], fgf)) -> new_esEs24(xuu40002, xuu3002, fgf) 25.38/9.09 new_ltEs20(xuu112, xuu114, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs6(xuu112, xuu114, bge, bgf, bgg) 25.38/9.09 new_esEs35(xuu98, xuu101, ty_Bool) -> new_esEs15(xuu98, xuu101) 25.38/9.09 new_lt11(xuu98, xuu101, ech) -> new_esEs19(new_compare27(xuu98, xuu101, ech), LT) 25.38/9.09 new_esEs27(xuu400002, xuu30002, ty_Ordering) -> new_esEs19(xuu400002, xuu30002) 25.38/9.09 new_ltEs13(Just(xuu590), Just(xuu600), ty_Double) -> new_ltEs15(xuu590, xuu600) 25.38/9.09 new_esEs37(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.09 new_compare13(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.09 new_esEs29(xuu400000, xuu30000, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs14(xuu400000, xuu30000, beh, bfa, bfb) 25.38/9.09 new_ltEs22(xuu73, xuu74, ty_Int) -> new_ltEs7(xuu73, xuu74) 25.38/9.09 new_lt12(xuu98, xuu101) -> new_esEs19(new_compare28(xuu98, xuu101), LT) 25.38/9.09 new_lt22(xuu590, xuu600, ty_Double) -> new_lt15(xuu590, xuu600) 25.38/9.09 new_compare11(xuu185, xuu186, xuu187, xuu188, True, xuu190, bfh, bga) -> new_compare12(xuu185, xuu186, xuu187, xuu188, True, bfh, bga) 25.38/9.09 new_esEs4(xuu40002, xuu3002, app(app(ty_Either, fgb), fgc)) -> new_esEs17(xuu40002, xuu3002, fgb, fgc) 25.38/9.09 new_esEs27(xuu400002, xuu30002, ty_Int) -> new_esEs16(xuu400002, xuu30002) 25.38/9.09 new_ltEs24(xuu592, xuu602, ty_Double) -> new_ltEs15(xuu592, xuu602) 25.38/9.09 new_esEs36(xuu400001, xuu30001, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs14(xuu400001, xuu30001, ehe, ehf, ehg) 25.38/9.09 new_ltEs16(LT, LT) -> True 25.38/9.09 new_lt23(xuu591, xuu601, ty_Bool) -> new_lt12(xuu591, xuu601) 25.38/9.09 new_compare16(LT, GT) -> LT 25.38/9.09 new_esEs23(Integer(xuu400000), Integer(xuu30000)) -> new_primEqInt(xuu400000, xuu30000) 25.38/9.09 new_esEs37(xuu400000, xuu30000, app(ty_Ratio, fbd)) -> new_esEs21(xuu400000, xuu30000, fbd) 25.38/9.10 new_esEs39(xuu590, xuu600, ty_@0) -> new_esEs22(xuu590, xuu600) 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), ty_@0) -> new_ltEs9(xuu590, xuu600) 25.38/9.10 new_esEs9(xuu40000, xuu3000, app(ty_[], deg)) -> new_esEs24(xuu40000, xuu3000, deg) 25.38/9.10 new_lt21(xuu99, xuu102, ty_Float) -> new_lt17(xuu99, xuu102) 25.38/9.10 new_esEs9(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.10 new_compare25(xuu59, xuu60, False, fg, fh) -> new_compare10(xuu59, xuu60, new_ltEs4(xuu59, xuu60, fg), fg, fh) 25.38/9.10 new_esEs4(xuu40002, xuu3002, ty_Integer) -> new_esEs23(xuu40002, xuu3002) 25.38/9.10 new_esEs9(xuu40000, xuu3000, app(app(ty_Either, dec), ded)) -> new_esEs17(xuu40000, xuu3000, dec, ded) 25.38/9.10 new_esEs11(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.10 new_esEs5(xuu40001, xuu3001, ty_Float) -> new_esEs20(xuu40001, xuu3001) 25.38/9.10 new_esEs9(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.10 new_esEs10(xuu40001, xuu3001, app(ty_Ratio, ea)) -> new_esEs21(xuu40001, xuu3001, ea) 25.38/9.10 new_primCmpNat0(Succ(xuu400000), Zero) -> GT 25.38/9.10 new_pePe(False, xuu206) -> xuu206 25.38/9.10 new_esEs39(xuu590, xuu600, app(app(app(ty_@3, fbh), fca), fcb)) -> new_esEs14(xuu590, xuu600, fbh, fca, fcb) 25.38/9.10 new_esEs11(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.10 new_lt13(xuu98, xuu101, dfc) -> new_esEs19(new_compare29(xuu98, xuu101, dfc), LT) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.10 new_esEs8(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.10 new_compare25(xuu59, xuu60, True, fg, fh) -> EQ 25.38/9.10 new_ltEs22(xuu73, xuu74, ty_Double) -> new_ltEs15(xuu73, xuu74) 25.38/9.10 new_esEs10(xuu40001, xuu3001, app(ty_[], ec)) -> new_esEs24(xuu40001, xuu3001, ec) 25.38/9.10 new_compare210(xuu73, xuu74, True, cgh) -> EQ 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Integer) -> new_ltEs18(xuu590, xuu600) 25.38/9.10 new_esEs4(xuu40002, xuu3002, ty_Ordering) -> new_esEs19(xuu40002, xuu3002) 25.38/9.10 new_ltEs16(LT, GT) -> True 25.38/9.10 new_esEs30(xuu111, xuu113, app(app(ty_@2, caf), cag)) -> new_esEs13(xuu111, xuu113, caf, cag) 25.38/9.10 new_esEs5(xuu40001, xuu3001, ty_@0) -> new_esEs22(xuu40001, xuu3001) 25.38/9.10 new_compare0(xuu4000, xuu300, ty_Ordering) -> new_compare16(xuu4000, xuu300) 25.38/9.10 new_esEs30(xuu111, xuu113, app(app(ty_Either, cab), cac)) -> new_esEs17(xuu111, xuu113, cab, cac) 25.38/9.10 new_esEs6(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.10 new_ltEs16(LT, EQ) -> True 25.38/9.10 new_ltEs16(EQ, LT) -> False 25.38/9.10 new_lt6(xuu590, xuu600, app(ty_Maybe, bab)) -> new_lt13(xuu590, xuu600, bab) 25.38/9.10 new_esEs35(xuu98, xuu101, app(ty_Ratio, ech)) -> new_esEs21(xuu98, xuu101, ech) 25.38/9.10 new_esEs30(xuu111, xuu113, ty_Bool) -> new_esEs15(xuu111, xuu113) 25.38/9.10 new_lt14(xuu98, xuu101, eda, edb) -> new_esEs19(new_compare7(xuu98, xuu101, eda, edb), LT) 25.38/9.10 new_primEqInt(Pos(Zero), Neg(Succ(xuu300000))) -> False 25.38/9.10 new_primEqInt(Neg(Zero), Pos(Succ(xuu300000))) -> False 25.38/9.10 new_ltEs16(GT, LT) -> False 25.38/9.10 new_esEs7(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.10 new_esEs34(xuu99, xuu102, ty_Int) -> new_esEs16(xuu99, xuu102) 25.38/9.10 new_compare16(EQ, EQ) -> EQ 25.38/9.10 new_esEs10(xuu40001, xuu3001, ty_Integer) -> new_esEs23(xuu40001, xuu3001) 25.38/9.10 new_ltEs17(xuu59, xuu60) -> new_fsEs(new_compare13(xuu59, xuu60)) 25.38/9.10 new_esEs29(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.10 new_ltEs22(xuu73, xuu74, ty_@0) -> new_ltEs9(xuu73, xuu74) 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Int, ccf) -> new_esEs16(xuu400000, xuu30000) 25.38/9.10 new_esEs37(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.10 new_esEs30(xuu111, xuu113, ty_Integer) -> new_esEs23(xuu111, xuu113) 25.38/9.10 new_esEs5(xuu40001, xuu3001, app(app(app(ty_@3, fha), fhb), fhc)) -> new_esEs14(xuu40001, xuu3001, fha, fhb, fhc) 25.38/9.10 new_ltEs24(xuu592, xuu602, app(ty_[], fec)) -> new_ltEs5(xuu592, xuu602, fec) 25.38/9.10 new_lt19(xuu111, xuu113, ty_Float) -> new_lt17(xuu111, xuu113) 25.38/9.10 new_esEs24(:(xuu400000, xuu400001), [], ead) -> False 25.38/9.10 new_esEs24([], :(xuu30000, xuu30001), ead) -> False 25.38/9.10 new_compare24(xuu111, xuu112, xuu113, xuu114, False, bgb, bgc) -> new_compare11(xuu111, xuu112, xuu113, xuu114, new_lt19(xuu111, xuu113, bgb), new_asAs(new_esEs30(xuu111, xuu113, bgb), new_ltEs20(xuu112, xuu114, bgc)), bgb, bgc) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_ltEs6(xuu590, xuu600, dhc, dhd, dhe) 25.38/9.10 new_compare26(xuu66, xuu67, False, cah, cba) -> new_compare14(xuu66, xuu67, new_ltEs21(xuu66, xuu67, cba), cah, cba) 25.38/9.10 new_compare0(xuu4000, xuu300, app(ty_Ratio, dfg)) -> new_compare27(xuu4000, xuu300, dfg) 25.38/9.10 new_esEs16(xuu40000, xuu3000) -> new_primEqInt(xuu40000, xuu3000) 25.38/9.10 new_esEs19(EQ, EQ) -> True 25.38/9.10 new_esEs7(xuu40000, xuu3000, app(app(ty_Either, dbe), dbf)) -> new_esEs17(xuu40000, xuu3000, dbe, dbf) 25.38/9.10 new_lt20(xuu98, xuu101, ty_Bool) -> new_lt12(xuu98, xuu101) 25.38/9.10 new_ltEs16(EQ, GT) -> True 25.38/9.10 new_esEs20(Float(xuu400000, xuu400001), Float(xuu30000, xuu30001)) -> new_esEs16(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) 25.38/9.10 new_esEs30(xuu111, xuu113, app(ty_[], bhf)) -> new_esEs24(xuu111, xuu113, bhf) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(app(ty_Either, dhf), dhg)) -> new_ltEs8(xuu590, xuu600, dhf, dhg) 25.38/9.10 new_ltEs16(EQ, EQ) -> True 25.38/9.10 new_esEs27(xuu400002, xuu30002, ty_Bool) -> new_esEs15(xuu400002, xuu30002) 25.38/9.10 new_esEs32(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.10 new_lt21(xuu99, xuu102, app(app(ty_Either, edg), edh)) -> new_lt10(xuu99, xuu102, edg, edh) 25.38/9.10 new_compare28(True, False) -> GT 25.38/9.10 new_esEs6(xuu40000, xuu3000, app(app(ty_Either, cdg), ccf)) -> new_esEs17(xuu40000, xuu3000, cdg, ccf) 25.38/9.10 new_esEs26(xuu590, xuu600, app(app(app(ty_@3, hd), he), hf)) -> new_esEs14(xuu590, xuu600, hd, he, hf) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), ty_Bool, gf) -> new_ltEs12(xuu590, xuu600) 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs14(xuu400000, xuu30000, bg, bh, ca) 25.38/9.10 new_esEs28(xuu400001, xuu30001, app(app(ty_@2, bdd), bde)) -> new_esEs13(xuu400001, xuu30001, bdd, bde) 25.38/9.10 new_lt21(xuu99, xuu102, ty_Bool) -> new_lt12(xuu99, xuu102) 25.38/9.10 new_esEs28(xuu400001, xuu30001, ty_Bool) -> new_esEs15(xuu400001, xuu30001) 25.38/9.10 new_esEs6(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.10 new_lt8(xuu98, xuu101, ecb, ecc, ecd) -> new_esEs19(new_compare19(xuu98, xuu101, ecb, ecc, ecd), LT) 25.38/9.10 new_ltEs23(xuu100, xuu103, ty_Integer) -> new_ltEs18(xuu100, xuu103) 25.38/9.10 new_primCompAux00(xuu34, xuu35, EQ, ty_Integer) -> new_compare9(xuu34, xuu35) 25.38/9.10 new_ltEs20(xuu112, xuu114, app(app(ty_@2, bhd), bhe)) -> new_ltEs14(xuu112, xuu114, bhd, bhe) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.10 new_ltEs20(xuu112, xuu114, ty_Ordering) -> new_ltEs16(xuu112, xuu114) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Int) -> new_ltEs7(xuu590, xuu600) 25.38/9.10 new_esEs7(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.10 new_esEs6(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.10 new_lt23(xuu591, xuu601, ty_Ordering) -> new_lt16(xuu591, xuu601) 25.38/9.10 new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, dac, dad, dae) -> LT 25.38/9.10 new_primMulInt(Neg(xuu30000), Neg(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.10 new_primCmpInt(Pos(Zero), Pos(Succ(xuu30000))) -> new_primCmpNat0(Zero, Succ(xuu30000)) 25.38/9.10 new_ltEs22(xuu73, xuu74, ty_Integer) -> new_ltEs18(xuu73, xuu74) 25.38/9.10 new_esEs9(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.10 new_esEs34(xuu99, xuu102, ty_Double) -> new_esEs25(xuu99, xuu102) 25.38/9.10 new_fsEs(xuu207) -> new_not(new_esEs19(xuu207, GT)) 25.38/9.10 new_compare210(xuu73, xuu74, False, cgh) -> new_compare110(xuu73, xuu74, new_ltEs22(xuu73, xuu74, cgh), cgh) 25.38/9.10 new_esEs34(xuu99, xuu102, app(ty_Ratio, eea)) -> new_esEs21(xuu99, xuu102, eea) 25.38/9.10 new_esEs6(xuu40000, xuu3000, app(ty_[], ead)) -> new_esEs24(xuu40000, xuu3000, ead) 25.38/9.10 new_compare0(xuu4000, xuu300, ty_Integer) -> new_compare9(xuu4000, xuu300) 25.38/9.10 new_primMulInt(Pos(xuu30000), Neg(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.10 new_primMulInt(Neg(xuu30000), Pos(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.10 new_esEs34(xuu99, xuu102, app(ty_[], edc)) -> new_esEs24(xuu99, xuu102, edc) 25.38/9.10 new_ltEs21(xuu66, xuu67, app(ty_Maybe, cca)) -> new_ltEs13(xuu66, xuu67, cca) 25.38/9.10 new_primCompAux00(xuu34, xuu35, EQ, app(ty_[], cfe)) -> new_compare18(xuu34, xuu35, cfe) 25.38/9.10 new_esEs8(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.10 new_esEs28(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.38/9.10 new_esEs8(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.10 new_lt15(xuu98, xuu101) -> new_esEs19(new_compare30(xuu98, xuu101), LT) 25.38/9.10 new_esEs27(xuu400002, xuu30002, ty_@0) -> new_esEs22(xuu400002, xuu30002) 25.38/9.10 new_ltEs23(xuu100, xuu103, ty_Ordering) -> new_ltEs16(xuu100, xuu103) 25.38/9.10 new_ltEs22(xuu73, xuu74, app(app(ty_Either, che), chf)) -> new_ltEs8(xuu73, xuu74, che, chf) 25.38/9.10 new_sr0(Integer(xuu30000), Integer(xuu400010)) -> Integer(new_primMulInt(xuu30000, xuu400010)) 25.38/9.10 new_lt20(xuu98, xuu101, app(ty_[], cgg)) -> new_lt7(xuu98, xuu101, cgg) 25.38/9.10 new_esEs30(xuu111, xuu113, ty_Ordering) -> new_esEs19(xuu111, xuu113) 25.38/9.10 new_lt6(xuu590, xuu600, app(app(ty_Either, hg), hh)) -> new_lt10(xuu590, xuu600, hg, hh) 25.38/9.10 new_esEs35(xuu98, xuu101, ty_Double) -> new_esEs25(xuu98, xuu101) 25.38/9.10 new_esEs38(xuu591, xuu601, app(app(ty_@2, fea), feb)) -> new_esEs13(xuu591, xuu601, fea, feb) 25.38/9.10 new_esEs8(xuu40000, xuu3000, app(ty_Maybe, ddb)) -> new_esEs12(xuu40000, xuu3000, ddb) 25.38/9.10 new_asAs(True, xuu132) -> xuu132 25.38/9.10 new_ltEs23(xuu100, xuu103, app(app(app(ty_@3, eef), eeg), eeh)) -> new_ltEs6(xuu100, xuu103, eef, eeg, eeh) 25.38/9.10 new_esEs22(@0, @0) -> True 25.38/9.10 new_compare30(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.10 new_compare30(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.10 new_lt6(xuu590, xuu600, app(ty_Ratio, baa)) -> new_lt11(xuu590, xuu600, baa) 25.38/9.10 new_lt19(xuu111, xuu113, app(ty_[], bhf)) -> new_lt7(xuu111, xuu113, bhf) 25.38/9.10 new_lt6(xuu590, xuu600, app(app(ty_@2, bac), bad)) -> new_lt14(xuu590, xuu600, bac, bad) 25.38/9.10 new_esEs26(xuu590, xuu600, ty_Char) -> new_esEs18(xuu590, xuu600) 25.38/9.10 new_ltEs19(xuu591, xuu601, ty_Double) -> new_ltEs15(xuu591, xuu601) 25.38/9.10 new_esEs29(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), ty_Int, gf) -> new_ltEs7(xuu590, xuu600) 25.38/9.10 new_ltEs20(xuu112, xuu114, app(ty_Ratio, bhb)) -> new_ltEs11(xuu112, xuu114, bhb) 25.38/9.10 new_compare211(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, True, ece, ecf, ecg) -> EQ 25.38/9.10 new_compare12(xuu185, xuu186, xuu187, xuu188, False, bfh, bga) -> GT 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Double, ccf) -> new_esEs25(xuu400000, xuu30000) 25.38/9.10 new_esEs33(xuu400000, xuu30000, app(app(ty_@2, eae), eaf)) -> new_esEs13(xuu400000, xuu30000, eae, eaf) 25.38/9.10 new_esEs8(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.10 new_ltEs22(xuu73, xuu74, ty_Char) -> new_ltEs10(xuu73, xuu74) 25.38/9.10 new_sr(xuu3000, xuu40001) -> new_primMulInt(xuu3000, xuu40001) 25.38/9.10 new_esEs39(xuu590, xuu600, app(ty_[], fbg)) -> new_esEs24(xuu590, xuu600, fbg) 25.38/9.10 new_ltEs16(GT, GT) -> True 25.38/9.10 new_esEs38(xuu591, xuu601, app(ty_Ratio, fdg)) -> new_esEs21(xuu591, xuu601, fdg) 25.38/9.10 new_esEs28(xuu400001, xuu30001, ty_Ordering) -> new_esEs19(xuu400001, xuu30001) 25.38/9.10 new_primMulNat0(Zero, Zero) -> Zero 25.38/9.10 new_esEs4(xuu40002, xuu3002, ty_Int) -> new_esEs16(xuu40002, xuu3002) 25.38/9.10 new_esEs7(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.10 new_esEs8(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.10 new_esEs27(xuu400002, xuu30002, app(app(ty_Either, bcg), bch)) -> new_esEs17(xuu400002, xuu30002, bcg, bch) 25.38/9.10 new_compare0(xuu4000, xuu300, app(app(app(ty_@3, dfd), dfe), dff)) -> new_compare19(xuu4000, xuu300, dfd, dfe, dff) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_@0) -> new_ltEs9(xuu590, xuu600) 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), ty_Ordering) -> new_ltEs16(xuu590, xuu600) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_[], dfh), gf) -> new_ltEs5(xuu590, xuu600, dfh) 25.38/9.10 new_esEs7(xuu40000, xuu3000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs14(xuu40000, xuu3000, dbb, dbc, dbd) 25.38/9.10 new_esEs38(xuu591, xuu601, app(ty_[], fda)) -> new_esEs24(xuu591, xuu601, fda) 25.38/9.10 new_esEs4(xuu40002, xuu3002, app(ty_Maybe, fge)) -> new_esEs12(xuu40002, xuu3002, fge) 25.38/9.10 new_ltEs19(xuu591, xuu601, app(ty_Maybe, bbd)) -> new_ltEs13(xuu591, xuu601, bbd) 25.38/9.10 new_ltEs4(xuu59, xuu60, ty_Bool) -> new_ltEs12(xuu59, xuu60) 25.38/9.10 new_esEs36(xuu400001, xuu30001, ty_Double) -> new_esEs25(xuu400001, xuu30001) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(ty_[], dhb)) -> new_ltEs5(xuu590, xuu600, dhb) 25.38/9.10 new_lt22(xuu590, xuu600, app(app(ty_Either, fcc), fcd)) -> new_lt10(xuu590, xuu600, fcc, fcd) 25.38/9.10 new_ltEs19(xuu591, xuu601, app(ty_Ratio, bbc)) -> new_ltEs11(xuu591, xuu601, bbc) 25.38/9.10 new_lt23(xuu591, xuu601, app(app(ty_@2, fea), feb)) -> new_lt14(xuu591, xuu601, fea, feb) 25.38/9.10 new_esEs28(xuu400001, xuu30001, app(app(ty_Either, bea), beb)) -> new_esEs17(xuu400001, xuu30001, bea, beb) 25.38/9.10 new_esEs30(xuu111, xuu113, ty_Float) -> new_esEs20(xuu111, xuu113) 25.38/9.10 new_lt16(xuu98, xuu101) -> new_esEs19(new_compare16(xuu98, xuu101), LT) 25.38/9.10 new_compare16(EQ, GT) -> LT 25.38/9.10 new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, False, dac, dad, dae) -> GT 25.38/9.10 new_esEs39(xuu590, xuu600, app(ty_Maybe, fcf)) -> new_esEs12(xuu590, xuu600, fcf) 25.38/9.10 new_lt23(xuu591, xuu601, app(app(ty_Either, fde), fdf)) -> new_lt10(xuu591, xuu601, fde, fdf) 25.38/9.10 new_ltEs4(xuu59, xuu60, ty_Char) -> new_ltEs10(xuu59, xuu60) 25.38/9.10 new_esEs28(xuu400001, xuu30001, ty_@0) -> new_esEs22(xuu400001, xuu30001) 25.38/9.10 new_primEqInt(Neg(Succ(xuu4000000)), Neg(Zero)) -> False 25.38/9.10 new_primEqInt(Neg(Zero), Neg(Succ(xuu300000))) -> False 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(ty_Maybe, ceh)) -> new_esEs12(xuu400000, xuu30000, ceh) 25.38/9.10 new_esEs29(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.10 new_primEqInt(Pos(Succ(xuu4000000)), Pos(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) 25.38/9.10 new_esEs21(:%(xuu400000, xuu400001), :%(xuu30000, xuu30001), deh) -> new_asAs(new_esEs32(xuu400000, xuu30000, deh), new_esEs31(xuu400001, xuu30001, deh)) 25.38/9.10 new_esEs39(xuu590, xuu600, ty_Int) -> new_esEs16(xuu590, xuu600) 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(ty_Either, cb), cc)) -> new_esEs17(xuu400000, xuu30000, cb, cc) 25.38/9.10 new_esEs6(xuu40000, xuu3000, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs14(xuu40000, xuu3000, bbg, bbh, bca) 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_[], efg)) -> new_ltEs5(xuu590, xuu600, efg) 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.10 new_lt22(xuu590, xuu600, app(app(ty_@2, fcg), fch)) -> new_lt14(xuu590, xuu600, fcg, fch) 25.38/9.10 new_esEs37(xuu400000, xuu30000, app(app(ty_@2, fae), faf)) -> new_esEs13(xuu400000, xuu30000, fae, faf) 25.38/9.10 new_ltEs4(xuu59, xuu60, ty_Double) -> new_ltEs15(xuu59, xuu60) 25.38/9.10 new_esEs33(xuu400000, xuu30000, app(ty_[], ebf)) -> new_esEs24(xuu400000, xuu30000, ebf) 25.38/9.10 new_primEqInt(Pos(Succ(xuu4000000)), Neg(xuu30000)) -> False 25.38/9.10 new_primEqInt(Neg(Succ(xuu4000000)), Pos(xuu30000)) -> False 25.38/9.10 new_esEs6(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.10 new_esEs9(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.10 new_primCmpInt(Neg(Zero), Neg(Succ(xuu30000))) -> new_primCmpNat0(Succ(xuu30000), Zero) 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.10 new_esEs7(xuu40000, xuu3000, app(ty_Ratio, dbg)) -> new_esEs21(xuu40000, xuu3000, dbg) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Char) -> new_ltEs10(xuu590, xuu600) 25.38/9.10 new_compare0(xuu4000, xuu300, ty_@0) -> new_compare8(xuu4000, xuu300) 25.38/9.10 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.38/9.10 new_ltEs22(xuu73, xuu74, ty_Ordering) -> new_ltEs16(xuu73, xuu74) 25.38/9.10 new_lt23(xuu591, xuu601, app(ty_Ratio, fdg)) -> new_lt11(xuu591, xuu601, fdg) 25.38/9.10 new_compare19(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), dfd, dfe, dff) -> new_compare211(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs6(xuu40000, xuu3000, dfd), new_asAs(new_esEs5(xuu40001, xuu3001, dfe), new_esEs4(xuu40002, xuu3002, dff))), dfd, dfe, dff) 25.38/9.10 new_esEs27(xuu400002, xuu30002, ty_Char) -> new_esEs18(xuu400002, xuu30002) 25.38/9.10 new_ltEs23(xuu100, xuu103, ty_Bool) -> new_ltEs12(xuu100, xuu103) 25.38/9.10 new_primCompAux00(xuu34, xuu35, LT, cfd) -> LT 25.38/9.10 new_esEs26(xuu590, xuu600, ty_@0) -> new_esEs22(xuu590, xuu600) 25.38/9.10 new_esEs6(xuu40000, xuu3000, app(ty_Ratio, deh)) -> new_esEs21(xuu40000, xuu3000, deh) 25.38/9.10 new_esEs5(xuu40001, xuu3001, ty_Double) -> new_esEs25(xuu40001, xuu3001) 25.38/9.10 new_ltEs23(xuu100, xuu103, ty_Char) -> new_ltEs10(xuu100, xuu103) 25.38/9.10 new_primPlusNat0(xuu219, xuu4000100) -> new_primPlusNat1(xuu219, Succ(xuu4000100)) 25.38/9.10 new_not(False) -> True 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), ty_Float) -> new_ltEs17(xuu590, xuu600) 25.38/9.10 new_ltEs24(xuu592, xuu602, ty_@0) -> new_ltEs9(xuu592, xuu602) 25.38/9.10 new_esEs9(xuu40000, xuu3000, app(ty_Maybe, def)) -> new_esEs12(xuu40000, xuu3000, def) 25.38/9.10 new_esEs35(xuu98, xuu101, app(ty_[], cgg)) -> new_esEs24(xuu98, xuu101, cgg) 25.38/9.10 new_ltEs24(xuu592, xuu602, app(app(app(ty_@3, fed), fee), fef)) -> new_ltEs6(xuu592, xuu602, fed, fee, fef) 25.38/9.10 new_ltEs21(xuu66, xuu67, ty_Bool) -> new_ltEs12(xuu66, xuu67) 25.38/9.10 new_compare0(xuu4000, xuu300, app(ty_Maybe, dde)) -> new_compare29(xuu4000, xuu300, dde) 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), ty_Integer) -> new_ltEs18(xuu590, xuu600) 25.38/9.10 new_esEs27(xuu400002, xuu30002, ty_Integer) -> new_esEs23(xuu400002, xuu30002) 25.38/9.10 new_esEs7(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.10 new_ltEs24(xuu592, xuu602, ty_Ordering) -> new_ltEs16(xuu592, xuu602) 25.38/9.10 new_esEs28(xuu400001, xuu30001, ty_Float) -> new_esEs20(xuu400001, xuu30001) 25.38/9.10 new_compare112(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, False, xuu177, dac, dad, dae) -> new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, xuu177, dac, dad, dae) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Bool) -> new_ltEs12(xuu590, xuu600) 25.38/9.10 new_esEs37(xuu400000, xuu30000, app(ty_[], fbf)) -> new_esEs24(xuu400000, xuu30000, fbf) 25.38/9.10 new_compare29(Nothing, Nothing, dde) -> EQ 25.38/9.10 new_ltEs23(xuu100, xuu103, app(app(ty_Either, efa), efb)) -> new_ltEs8(xuu100, xuu103, efa, efb) 25.38/9.10 new_ltEs19(xuu591, xuu601, ty_Int) -> new_ltEs7(xuu591, xuu601) 25.38/9.10 new_lt22(xuu590, xuu600, app(ty_Ratio, fce)) -> new_lt11(xuu590, xuu600, fce) 25.38/9.10 new_ltEs19(xuu591, xuu601, ty_Char) -> new_ltEs10(xuu591, xuu601) 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(ty_Either, cdb), cdc), ccf) -> new_esEs17(xuu400000, xuu30000, cdb, cdc) 25.38/9.10 new_lt6(xuu590, xuu600, ty_Double) -> new_lt15(xuu590, xuu600) 25.38/9.10 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.38/9.10 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.38/9.10 new_lt21(xuu99, xuu102, ty_Double) -> new_lt15(xuu99, xuu102) 25.38/9.10 new_esEs26(xuu590, xuu600, app(app(ty_Either, hg), hh)) -> new_esEs17(xuu590, xuu600, hg, hh) 25.38/9.10 new_ltEs20(xuu112, xuu114, ty_Int) -> new_ltEs7(xuu112, xuu114) 25.38/9.10 new_ltEs22(xuu73, xuu74, app(ty_Maybe, chh)) -> new_ltEs13(xuu73, xuu74, chh) 25.38/9.10 new_esEs5(xuu40001, xuu3001, ty_Int) -> new_esEs16(xuu40001, xuu3001) 25.38/9.10 new_lt6(xuu590, xuu600, app(ty_[], hc)) -> new_lt7(xuu590, xuu600, hc) 25.38/9.10 new_ltEs21(xuu66, xuu67, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs6(xuu66, xuu67, cbc, cbd, cbe) 25.38/9.10 new_lt20(xuu98, xuu101, app(ty_Ratio, ech)) -> new_lt11(xuu98, xuu101, ech) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), app(app(app(ty_@3, dga), dgb), dgc), gf) -> new_ltEs6(xuu590, xuu600, dga, dgb, dgc) 25.38/9.10 new_compare0(xuu4000, xuu300, ty_Bool) -> new_compare28(xuu4000, xuu300) 25.38/9.10 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.38/9.10 new_primMulNat0(Succ(xuu300000), Succ(xuu4000100)) -> new_primPlusNat0(new_primMulNat0(xuu300000, Succ(xuu4000100)), xuu4000100) 25.38/9.10 new_compare112(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, xuu177, dac, dad, dae) -> new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, dac, dad, dae) 25.38/9.10 new_esEs38(xuu591, xuu601, ty_Double) -> new_esEs25(xuu591, xuu601) 25.38/9.10 new_esEs6(xuu40000, xuu3000, app(ty_Maybe, bd)) -> new_esEs12(xuu40000, xuu3000, bd) 25.38/9.10 new_esEs19(EQ, GT) -> False 25.38/9.10 new_esEs19(GT, EQ) -> False 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.10 new_esEs19(GT, GT) -> True 25.38/9.10 new_esEs11(xuu40000, xuu3000, app(app(ty_@2, ed), ee)) -> new_esEs13(xuu40000, xuu3000, ed, ee) 25.38/9.10 new_lt20(xuu98, xuu101, app(app(ty_@2, eda), edb)) -> new_lt14(xuu98, xuu101, eda, edb) 25.38/9.10 new_esEs8(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.10 new_esEs39(xuu590, xuu600, app(ty_Ratio, fce)) -> new_esEs21(xuu590, xuu600, fce) 25.38/9.10 new_compare6(Char(xuu40000), Char(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) 25.38/9.10 new_ltEs20(xuu112, xuu114, ty_Char) -> new_ltEs10(xuu112, xuu114) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(app(ty_Either, cee), cef)) -> new_esEs17(xuu400000, xuu30000, cee, cef) 25.38/9.10 new_lt10(xuu98, xuu101, cfb, cfc) -> new_esEs19(new_compare15(xuu98, xuu101, cfb, cfc), LT) 25.38/9.10 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.38/9.10 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.38/9.10 new_compare8(@0, @0) -> EQ 25.38/9.10 new_esEs35(xuu98, xuu101, app(app(ty_@2, eda), edb)) -> new_esEs13(xuu98, xuu101, eda, edb) 25.38/9.10 new_ltEs24(xuu592, xuu602, app(ty_Maybe, ffb)) -> new_ltEs13(xuu592, xuu602, ffb) 25.38/9.10 new_lt21(xuu99, xuu102, app(ty_Ratio, eea)) -> new_lt11(xuu99, xuu102, eea) 25.38/9.10 new_esEs8(xuu40000, xuu3000, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs14(xuu40000, xuu3000, dcd, dce, dcf) 25.38/9.10 new_compare18([], [], ddd) -> EQ 25.38/9.10 new_primEqNat0(Zero, Zero) -> True 25.38/9.10 new_lt19(xuu111, xuu113, ty_Double) -> new_lt15(xuu111, xuu113) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs14(xuu400000, xuu30000, ceb, cec, ced) 25.38/9.10 new_esEs9(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.10 new_esEs9(xuu40000, xuu3000, app(app(app(ty_@3, ddh), dea), deb)) -> new_esEs14(xuu40000, xuu3000, ddh, dea, deb) 25.38/9.10 new_lt21(xuu99, xuu102, app(ty_[], edc)) -> new_lt7(xuu99, xuu102, edc) 25.38/9.10 new_esEs34(xuu99, xuu102, app(app(ty_@2, eec), eed)) -> new_esEs13(xuu99, xuu102, eec, eed) 25.38/9.10 new_esEs6(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.10 new_esEs4(xuu40002, xuu3002, app(ty_Ratio, fgd)) -> new_esEs21(xuu40002, xuu3002, fgd) 25.38/9.10 new_ltEs23(xuu100, xuu103, app(ty_Maybe, efd)) -> new_ltEs13(xuu100, xuu103, efd) 25.38/9.10 new_asAs(False, xuu132) -> False 25.38/9.10 new_ltEs21(xuu66, xuu67, ty_Char) -> new_ltEs10(xuu66, xuu67) 25.38/9.10 new_compare29(Just(xuu40000), Just(xuu3000), dde) -> new_compare210(xuu40000, xuu3000, new_esEs9(xuu40000, xuu3000, dde), dde) 25.38/9.10 new_ltEs22(xuu73, xuu74, ty_Bool) -> new_ltEs12(xuu73, xuu74) 25.38/9.10 new_esEs39(xuu590, xuu600, ty_Double) -> new_esEs25(xuu590, xuu600) 25.38/9.10 new_ltEs22(xuu73, xuu74, app(app(app(ty_@3, chb), chc), chd)) -> new_ltEs6(xuu73, xuu74, chb, chc, chd) 25.38/9.10 new_esEs36(xuu400001, xuu30001, app(ty_[], fad)) -> new_esEs24(xuu400001, xuu30001, fad) 25.38/9.10 new_compare11(xuu185, xuu186, xuu187, xuu188, False, xuu190, bfh, bga) -> new_compare12(xuu185, xuu186, xuu187, xuu188, xuu190, bfh, bga) 25.38/9.10 new_lt20(xuu98, xuu101, ty_Double) -> new_lt15(xuu98, xuu101) 25.38/9.10 new_esEs7(xuu40000, xuu3000, app(ty_Maybe, dbh)) -> new_esEs12(xuu40000, xuu3000, dbh) 25.38/9.10 new_lt19(xuu111, xuu113, app(app(ty_@2, caf), cag)) -> new_lt14(xuu111, xuu113, caf, cag) 25.38/9.10 new_compare16(GT, EQ) -> GT 25.38/9.10 new_esEs4(xuu40002, xuu3002, ty_Double) -> new_esEs25(xuu40002, xuu3002) 25.38/9.10 new_ltEs24(xuu592, xuu602, app(app(ty_Either, feg), feh)) -> new_ltEs8(xuu592, xuu602, feg, feh) 25.38/9.10 new_esEs26(xuu590, xuu600, ty_Float) -> new_esEs20(xuu590, xuu600) 25.38/9.10 25.38/9.10 The set Q consists of the following terms: 25.38/9.10 25.38/9.10 new_lt20(x0, x1, ty_Ordering) 25.38/9.10 new_esEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.38/9.10 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs9(x0, x1, ty_Integer) 25.38/9.10 new_ltEs21(x0, x1, ty_Ordering) 25.38/9.10 new_compare0(x0, x1, ty_Integer) 25.38/9.10 new_esEs17(Left(x0), Left(x1), ty_@0, x2) 25.38/9.10 new_asAs(True, x0) 25.38/9.10 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_compare26(x0, x1, False, x2, x3) 25.38/9.10 new_esEs28(x0, x1, ty_Bool) 25.38/9.10 new_esEs4(x0, x1, ty_Ordering) 25.38/9.10 new_lt23(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_primPlusNat1(Zero, Zero) 25.38/9.10 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_ltEs21(x0, x1, ty_Double) 25.38/9.10 new_esEs29(x0, x1, ty_@0) 25.38/9.10 new_compare0(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_lt20(x0, x1, app(ty_[], x2)) 25.38/9.10 new_esEs26(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs16(x0, x1) 25.38/9.10 new_ltEs4(x0, x1, ty_@0) 25.38/9.10 new_esEs28(x0, x1, ty_@0) 25.38/9.10 new_esEs9(x0, x1, ty_Bool) 25.38/9.10 new_esEs36(x0, x1, ty_Float) 25.38/9.10 new_esEs4(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_primEqInt(Pos(Zero), Pos(Zero)) 25.38/9.10 new_primCompAux00(x0, x1, EQ, ty_Float) 25.38/9.10 new_compare28(True, True) 25.38/9.10 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs28(x0, x1, ty_Integer) 25.38/9.10 new_lt18(x0, x1) 25.38/9.10 new_compare10(x0, x1, True, x2, x3) 25.38/9.10 new_ltEs23(x0, x1, ty_Bool) 25.38/9.10 new_lt20(x0, x1, ty_Char) 25.38/9.10 new_compare210(x0, x1, True, x2) 25.38/9.10 new_compare0(x0, x1, ty_Bool) 25.38/9.10 new_lt20(x0, x1, ty_Double) 25.38/9.10 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 25.38/9.10 new_lt21(x0, x1, ty_Int) 25.38/9.10 new_primCompAux00(x0, x1, EQ, ty_Integer) 25.38/9.10 new_esEs37(x0, x1, ty_Bool) 25.38/9.10 new_primEqInt(Neg(Zero), Neg(Zero)) 25.38/9.10 new_ltEs7(x0, x1) 25.38/9.10 new_esEs37(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs4(x0, x1, ty_Double) 25.38/9.10 new_ltEs16(GT, EQ) 25.38/9.10 new_ltEs16(EQ, GT) 25.38/9.10 new_esEs17(Left(x0), Left(x1), ty_Integer, x2) 25.38/9.10 new_esEs4(x0, x1, ty_Char) 25.38/9.10 new_esEs27(x0, x1, ty_Bool) 25.38/9.10 new_ltEs19(x0, x1, app(ty_[], x2)) 25.38/9.10 new_esEs29(x0, x1, ty_Int) 25.38/9.10 new_esEs37(x0, x1, ty_@0) 25.38/9.10 new_esEs35(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs9(x0, x1, app(ty_[], x2)) 25.38/9.10 new_ltEs16(LT, LT) 25.38/9.10 new_lt21(x0, x1, ty_@0) 25.38/9.10 new_ltEs22(x0, x1, ty_Int) 25.38/9.10 new_compare29(Just(x0), Just(x1), x2) 25.38/9.10 new_compare16(LT, LT) 25.38/9.10 new_ltEs4(x0, x1, ty_Int) 25.38/9.10 new_esEs6(x0, x1, ty_Double) 25.38/9.10 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 25.38/9.10 new_esEs6(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.38/9.10 new_compare11(x0, x1, x2, x3, False, x4, x5, x6) 25.38/9.10 new_compare0(x0, x1, ty_Float) 25.38/9.10 new_esEs32(x0, x1, ty_Int) 25.38/9.10 new_lt19(x0, x1, ty_Char) 25.38/9.10 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_esEs35(x0, x1, ty_Char) 25.38/9.10 new_esEs17(Right(x0), Right(x1), x2, ty_Char) 25.38/9.10 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_lt8(x0, x1, x2, x3, x4) 25.38/9.10 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs31(x0, x1, ty_Int) 25.38/9.10 new_esEs12(Nothing, Nothing, x0) 25.38/9.10 new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.38/9.10 new_esEs33(x0, x1, ty_Integer) 25.38/9.10 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_primEqInt(Pos(Zero), Neg(Zero)) 25.38/9.10 new_primEqInt(Neg(Zero), Pos(Zero)) 25.38/9.10 new_ltEs23(x0, x1, ty_@0) 25.38/9.10 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_ltEs21(x0, x1, ty_Char) 25.38/9.10 new_esEs5(x0, x1, ty_Double) 25.38/9.10 new_esEs24(:(x0, x1), :(x2, x3), x4) 25.38/9.10 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 25.38/9.10 new_compare29(Nothing, Nothing, x0) 25.38/9.10 new_ltEs24(x0, x1, ty_Int) 25.38/9.10 new_primCompAux00(x0, x1, EQ, ty_Bool) 25.38/9.10 new_esEs25(Double(x0, x1), Double(x2, x3)) 25.38/9.10 new_esEs35(x0, x1, app(ty_[], x2)) 25.38/9.10 new_esEs5(x0, x1, ty_Char) 25.38/9.10 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs37(x0, x1, ty_Float) 25.38/9.10 new_esEs15(False, False) 25.38/9.10 new_primMulInt(Neg(x0), Neg(x1)) 25.38/9.10 new_ltEs23(x0, x1, ty_Int) 25.38/9.10 new_ltEs24(x0, x1, ty_@0) 25.38/9.10 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_esEs27(x0, x1, ty_Integer) 25.38/9.10 new_lt22(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs11(x0, x1, app(ty_[], x2)) 25.38/9.10 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.38/9.10 new_compare0(x0, x1, ty_@0) 25.38/9.10 new_esEs11(x0, x1, ty_Char) 25.38/9.10 new_esEs9(x0, x1, ty_Int) 25.38/9.10 new_lt19(x0, x1, ty_Ordering) 25.38/9.10 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.38/9.10 new_lt19(x0, x1, app(ty_[], x2)) 25.38/9.10 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 25.38/9.10 new_ltEs19(x0, x1, ty_Double) 25.38/9.10 new_esEs28(x0, x1, ty_Int) 25.38/9.10 new_lt19(x0, x1, ty_Double) 25.38/9.10 new_esEs26(x0, x1, ty_Double) 25.38/9.10 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs34(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs38(x0, x1, ty_Bool) 25.38/9.10 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs36(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_primCompAux00(x0, x1, EQ, ty_@0) 25.38/9.10 new_esEs39(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.38/9.10 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_ltEs16(LT, EQ) 25.38/9.10 new_ltEs16(EQ, LT) 25.38/9.10 new_lt22(x0, x1, ty_Float) 25.38/9.10 new_esEs8(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_primCmpNat0(Succ(x0), Succ(x1)) 25.38/9.10 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.38/9.10 new_esEs28(x0, x1, ty_Float) 25.38/9.10 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 25.38/9.10 new_esEs6(x0, x1, ty_Ordering) 25.38/9.10 new_ltEs20(x0, x1, ty_Int) 25.38/9.10 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.38/9.10 new_esEs17(Left(x0), Left(x1), ty_Float, x2) 25.38/9.10 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 25.38/9.10 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.38/9.10 new_esEs5(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_esEs36(x0, x1, ty_Int) 25.38/9.10 new_esEs36(x0, x1, ty_Integer) 25.38/9.10 new_lt6(x0, x1, ty_@0) 25.38/9.10 new_esEs33(x0, x1, ty_Bool) 25.38/9.10 new_esEs19(GT, GT) 25.38/9.10 new_ltEs15(x0, x1) 25.38/9.10 new_primPlusNat1(Succ(x0), Succ(x1)) 25.38/9.10 new_esEs4(x0, x1, app(ty_[], x2)) 25.38/9.10 new_ltEs23(x0, x1, ty_Integer) 25.38/9.10 new_compare16(EQ, LT) 25.38/9.10 new_compare16(LT, EQ) 25.38/9.10 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.38/9.10 new_esEs39(x0, x1, ty_@0) 25.38/9.10 new_esEs38(x0, x1, ty_Int) 25.38/9.10 new_esEs17(Left(x0), Left(x1), ty_Int, x2) 25.38/9.10 new_lt10(x0, x1, x2, x3) 25.38/9.10 new_esEs27(x0, x1, ty_@0) 25.38/9.10 new_esEs33(x0, x1, ty_Float) 25.38/9.10 new_esEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs34(x0, x1, ty_Double) 25.38/9.10 new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 25.38/9.10 new_esEs9(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs9(x0, x1, ty_Float) 25.38/9.10 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 25.38/9.10 new_compare110(x0, x1, False, x2) 25.38/9.10 new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) 25.38/9.10 new_esEs20(Float(x0, x1), Float(x2, x3)) 25.38/9.10 new_esEs31(x0, x1, ty_Integer) 25.38/9.10 new_primMulNat0(Succ(x0), Succ(x1)) 25.38/9.10 new_esEs35(x0, x1, ty_Ordering) 25.38/9.10 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.38/9.10 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.38/9.10 new_esEs11(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_esEs10(x0, x1, app(ty_[], x2)) 25.38/9.10 new_compare18(:(x0, x1), :(x2, x3), x4) 25.38/9.10 new_esEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.38/9.10 new_esEs11(x0, x1, ty_Ordering) 25.38/9.10 new_esEs17(Left(x0), Left(x1), ty_Bool, x2) 25.38/9.10 new_compare16(EQ, EQ) 25.38/9.10 new_lt6(x0, x1, ty_Double) 25.38/9.10 new_esEs7(x0, x1, ty_Double) 25.38/9.10 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.38/9.10 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.38/9.10 new_esEs33(x0, x1, ty_Int) 25.38/9.10 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs7(x0, x1, app(ty_[], x2)) 25.38/9.10 new_lt19(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) 25.38/9.10 new_esEs27(x0, x1, app(ty_[], x2)) 25.38/9.10 new_esEs36(x0, x1, ty_Bool) 25.38/9.10 new_esEs8(x0, x1, ty_Integer) 25.38/9.10 new_esEs12(Just(x0), Just(x1), ty_@0) 25.38/9.10 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 25.38/9.10 new_ltEs13(Just(x0), Just(x1), ty_Double) 25.38/9.10 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.38/9.10 new_ltEs20(x0, x1, ty_Bool) 25.38/9.10 new_ltEs19(x0, x1, ty_@0) 25.38/9.10 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.38/9.10 new_compare9(Integer(x0), Integer(x1)) 25.38/9.10 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs33(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_primCmpNat0(Zero, Succ(x0)) 25.38/9.10 new_ltEs21(x0, x1, ty_Float) 25.38/9.10 new_compare0(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_compare17(x0, x1) 25.38/9.10 new_ltEs19(x0, x1, ty_Bool) 25.38/9.10 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 25.38/9.10 new_esEs6(x0, x1, ty_Integer) 25.38/9.10 new_compare28(False, False) 25.38/9.10 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.38/9.10 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.38/9.10 new_sr(x0, x1) 25.38/9.10 new_esEs10(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_esEs39(x0, x1, ty_Integer) 25.38/9.10 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs8(x0, x1, ty_Bool) 25.38/9.10 new_esEs36(x0, x1, ty_Ordering) 25.38/9.10 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.38/9.10 new_lt23(x0, x1, ty_Integer) 25.38/9.10 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.38/9.10 new_lt22(x0, x1, ty_@0) 25.38/9.10 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs29(x0, x1, app(ty_[], x2)) 25.38/9.10 new_compare0(x0, x1, app(ty_[], x2)) 25.38/9.10 new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.38/9.10 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 25.38/9.10 new_esEs12(Just(x0), Just(x1), app(ty_[], x2)) 25.38/9.10 new_esEs10(x0, x1, ty_Int) 25.38/9.10 new_lt23(x0, x1, ty_@0) 25.38/9.10 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.38/9.10 new_compare15(Left(x0), Right(x1), x2, x3) 25.38/9.10 new_compare15(Right(x0), Left(x1), x2, x3) 25.38/9.10 new_lt9(x0, x1) 25.38/9.10 new_compare16(GT, LT) 25.38/9.10 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.38/9.10 new_compare16(LT, GT) 25.38/9.10 new_esEs32(x0, x1, ty_Integer) 25.38/9.10 new_esEs24([], :(x0, x1), x2) 25.38/9.10 new_esEs33(x0, x1, ty_Ordering) 25.38/9.10 new_lt22(x0, x1, ty_Integer) 25.38/9.10 new_not(True) 25.38/9.10 new_esEs39(x0, x1, app(ty_[], x2)) 25.38/9.10 new_esEs10(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs27(x0, x1, ty_Ordering) 25.38/9.10 new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.38/9.10 new_lt22(x0, x1, ty_Int) 25.38/9.10 new_ltEs12(True, True) 25.38/9.10 new_ltEs13(Nothing, Nothing, x0) 25.38/9.10 new_lt22(x0, x1, ty_Char) 25.38/9.10 new_esEs6(x0, x1, ty_Bool) 25.38/9.10 new_esEs28(x0, x1, app(ty_[], x2)) 25.38/9.10 new_esEs33(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 25.38/9.10 new_esEs7(x0, x1, ty_Ordering) 25.38/9.10 new_compare18([], [], x0) 25.38/9.10 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_ltEs23(x0, x1, app(ty_[], x2)) 25.38/9.10 new_compare0(x0, x1, ty_Double) 25.38/9.10 new_esEs29(x0, x1, ty_Float) 25.38/9.10 new_esEs9(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_ltEs4(x0, x1, ty_Float) 25.38/9.10 new_esEs8(x0, x1, ty_Float) 25.38/9.10 new_esEs5(x0, x1, app(ty_[], x2)) 25.38/9.10 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 25.38/9.10 new_lt6(x0, x1, ty_Ordering) 25.38/9.10 new_lt22(x0, x1, ty_Bool) 25.38/9.10 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_compare0(x0, x1, ty_Int) 25.38/9.10 new_esEs8(x0, x1, ty_@0) 25.38/9.10 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_esEs11(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_pePe(True, x0) 25.38/9.10 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs23(Integer(x0), Integer(x1)) 25.38/9.10 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_ltEs20(x0, x1, ty_Double) 25.38/9.10 new_esEs34(x0, x1, ty_Int) 25.38/9.10 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_primMulInt(Pos(x0), Pos(x1)) 25.38/9.10 new_esEs19(LT, GT) 25.38/9.10 new_esEs19(GT, LT) 25.38/9.10 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 25.38/9.10 new_esEs8(x0, x1, ty_Int) 25.38/9.10 new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs30(x0, x1, ty_Ordering) 25.38/9.10 new_esEs6(x0, x1, ty_Char) 25.38/9.10 new_lt23(x0, x1, ty_Float) 25.38/9.10 new_sr0(Integer(x0), Integer(x1)) 25.38/9.10 new_esEs37(x0, x1, ty_Char) 25.38/9.10 new_esEs17(Left(x0), Left(x1), ty_Double, x2) 25.38/9.10 new_esEs27(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs37(x0, x1, ty_Int) 25.38/9.10 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.38/9.10 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.38/9.10 new_ltEs21(x0, x1, ty_Bool) 25.38/9.10 new_compare30(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.38/9.10 new_lt19(x0, x1, ty_Float) 25.38/9.10 new_esEs26(x0, x1, ty_Float) 25.38/9.10 new_ltEs13(Nothing, Just(x0), x1) 25.38/9.10 new_esEs24(:(x0, x1), [], x2) 25.38/9.10 new_esEs34(x0, x1, ty_Char) 25.38/9.10 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_ltEs21(x0, x1, ty_Integer) 25.38/9.10 new_compare30(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.38/9.10 new_compare30(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.38/9.10 new_esEs10(x0, x1, ty_Bool) 25.38/9.10 new_ltEs19(x0, x1, ty_Float) 25.38/9.10 new_esEs8(x0, x1, ty_Char) 25.38/9.10 new_esEs4(x0, x1, ty_@0) 25.38/9.10 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_esEs34(x0, x1, app(ty_[], x2)) 25.38/9.10 new_ltEs18(x0, x1) 25.38/9.10 new_esEs9(x0, x1, ty_Double) 25.38/9.10 new_esEs9(x0, x1, ty_Ordering) 25.38/9.10 new_lt23(x0, x1, ty_Int) 25.38/9.10 new_esEs34(x0, x1, ty_Float) 25.38/9.10 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 25.38/9.10 new_esEs10(x0, x1, ty_Char) 25.38/9.10 new_esEs26(x0, x1, ty_Int) 25.38/9.10 new_primEqNat0(Succ(x0), Succ(x1)) 25.38/9.10 new_esEs38(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_asAs(False, x0) 25.38/9.10 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_esEs15(False, True) 25.38/9.10 new_esEs15(True, False) 25.38/9.10 new_lt19(x0, x1, ty_Int) 25.38/9.10 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_ltEs19(x0, x1, ty_Int) 25.38/9.10 new_esEs4(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_esEs6(x0, x1, ty_Int) 25.38/9.10 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs39(x0, x1, ty_Bool) 25.38/9.10 new_esEs10(x0, x1, ty_Integer) 25.38/9.10 new_primEqNat0(Zero, Zero) 25.38/9.10 new_esEs39(x0, x1, ty_Float) 25.38/9.10 new_esEs6(x0, x1, app(ty_[], x2)) 25.38/9.10 new_ltEs9(x0, x1) 25.38/9.10 new_not(False) 25.38/9.10 new_ltEs19(x0, x1, ty_Char) 25.38/9.10 new_esEs27(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_ltEs22(x0, x1, ty_Ordering) 25.38/9.10 new_ltEs8(Right(x0), Left(x1), x2, x3) 25.38/9.10 new_ltEs8(Left(x0), Right(x1), x2, x3) 25.38/9.10 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_ltEs4(x0, x1, ty_Bool) 25.38/9.10 new_esEs29(x0, x1, ty_Integer) 25.38/9.10 new_esEs33(x0, x1, ty_Double) 25.38/9.10 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.38/9.10 new_esEs8(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs26(x0, x1, ty_Char) 25.38/9.10 new_primPlusNat0(x0, x1) 25.38/9.10 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 25.38/9.10 new_esEs6(x0, x1, ty_Float) 25.38/9.10 new_compare14(x0, x1, True, x2, x3) 25.38/9.10 new_esEs29(x0, x1, ty_Bool) 25.38/9.10 new_lt23(x0, x1, ty_Char) 25.38/9.10 new_ltEs19(x0, x1, ty_Integer) 25.38/9.10 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs39(x0, x1, ty_Int) 25.38/9.10 new_esEs5(x0, x1, ty_Ordering) 25.38/9.10 new_esEs26(x0, x1, app(ty_[], x2)) 25.38/9.10 new_esEs34(x0, x1, ty_Bool) 25.38/9.10 new_lt22(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_esEs36(x0, x1, ty_Double) 25.38/9.10 new_compare210(x0, x1, False, x2) 25.38/9.10 new_ltEs4(x0, x1, ty_Integer) 25.38/9.10 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 25.38/9.10 new_lt4(x0, x1) 25.38/9.10 new_ltEs21(x0, x1, app(ty_[], x2)) 25.38/9.10 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 25.38/9.10 new_esEs39(x0, x1, ty_Char) 25.38/9.10 new_compare0(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_lt23(x0, x1, ty_Bool) 25.38/9.10 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_ltEs24(x0, x1, ty_Ordering) 25.38/9.10 new_esEs12(Nothing, Just(x0), x1) 25.38/9.10 new_esEs37(x0, x1, ty_Integer) 25.38/9.10 new_esEs28(x0, x1, ty_Double) 25.38/9.10 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_lt16(x0, x1) 25.38/9.10 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_ltEs24(x0, x1, ty_Double) 25.38/9.10 new_esEs24([], [], x0) 25.38/9.10 new_esEs5(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_esEs7(x0, x1, ty_Integer) 25.38/9.10 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 25.38/9.10 new_lt19(x0, x1, ty_Bool) 25.38/9.10 new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) 25.38/9.10 new_esEs34(x0, x1, ty_Integer) 25.38/9.10 new_esEs4(x0, x1, ty_Int) 25.38/9.10 new_esEs35(x0, x1, ty_@0) 25.38/9.10 new_lt21(x0, x1, ty_Char) 25.38/9.10 new_ltEs13(Just(x0), Just(x1), ty_Float) 25.38/9.10 new_esEs7(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs26(x0, x1, ty_Bool) 25.38/9.10 new_esEs35(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.38/9.10 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.38/9.10 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.38/9.10 new_esEs19(EQ, GT) 25.38/9.10 new_esEs19(GT, EQ) 25.38/9.10 new_esEs11(x0, x1, ty_Integer) 25.38/9.10 new_primEqNat0(Zero, Succ(x0)) 25.38/9.10 new_compare110(x0, x1, True, x2) 25.38/9.10 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 25.38/9.10 new_esEs10(x0, x1, ty_Float) 25.38/9.10 new_esEs38(x0, x1, ty_Ordering) 25.38/9.10 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_ltEs4(x0, x1, ty_Char) 25.38/9.10 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs26(x0, x1, ty_Integer) 25.38/9.10 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_lt19(x0, x1, ty_Integer) 25.38/9.10 new_lt13(x0, x1, x2) 25.38/9.10 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_compare16(GT, GT) 25.38/9.10 new_lt20(x0, x1, ty_Int) 25.38/9.10 new_esEs17(Right(x0), Right(x1), x2, ty_Bool) 25.38/9.10 new_pePe(False, x0) 25.38/9.10 new_primCompAux1(x0, x1, x2, x3, x4) 25.38/9.10 new_lt21(x0, x1, ty_Ordering) 25.38/9.10 new_lt21(x0, x1, ty_Double) 25.38/9.10 new_esEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.38/9.10 new_lt19(x0, x1, ty_@0) 25.38/9.10 new_esEs33(x0, x1, app(ty_[], x2)) 25.38/9.10 new_lt23(x0, x1, app(ty_[], x2)) 25.38/9.10 new_esEs29(x0, x1, ty_Char) 25.38/9.10 new_esEs26(x0, x1, ty_@0) 25.38/9.10 new_esEs35(x0, x1, ty_Bool) 25.38/9.10 new_esEs34(x0, x1, ty_@0) 25.38/9.10 new_esEs38(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_primCompAux00(x0, x1, LT, x2) 25.38/9.10 new_esEs38(x0, x1, ty_Double) 25.38/9.10 new_primPlusNat1(Zero, Succ(x0)) 25.38/9.10 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs11(x0, x1, ty_@0) 25.38/9.10 new_esEs5(x0, x1, ty_Int) 25.38/9.10 new_esEs26(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_esEs39(x0, x1, ty_Ordering) 25.38/9.10 new_esEs11(x0, x1, ty_Bool) 25.38/9.10 new_compare11(x0, x1, x2, x3, True, x4, x5, x6) 25.38/9.10 new_compare18([], :(x0, x1), x2) 25.38/9.10 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs35(x0, x1, ty_Int) 25.38/9.10 new_compare25(x0, x1, True, x2, x3) 25.38/9.10 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_esEs11(x0, x1, ty_Float) 25.38/9.10 new_ltEs24(x0, x1, ty_Char) 25.38/9.10 new_lt12(x0, x1) 25.38/9.10 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs8(x0, x1, ty_Double) 25.38/9.10 new_primMulNat0(Succ(x0), Zero) 25.38/9.10 new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_ltEs23(x0, x1, ty_Double) 25.38/9.10 new_ltEs21(x0, x1, ty_@0) 25.38/9.10 new_esEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.38/9.10 new_compare12(x0, x1, x2, x3, False, x4, x5) 25.38/9.10 new_lt19(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_ltEs23(x0, x1, ty_Char) 25.38/9.10 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_compare7(@2(x0, x1), @2(x2, x3), x4, x5) 25.38/9.10 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_esEs22(@0, @0) 25.38/9.10 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.38/9.10 new_compare8(@0, @0) 25.38/9.10 new_ltEs21(x0, x1, ty_Int) 25.38/9.10 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs17(Right(x0), Right(x1), x2, ty_Int) 25.38/9.10 new_ltEs13(Just(x0), Nothing, x1) 25.38/9.10 new_esEs12(Just(x0), Just(x1), ty_Float) 25.38/9.10 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.38/9.10 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 25.38/9.10 new_ltEs13(Just(x0), Just(x1), ty_Bool) 25.38/9.10 new_ltEs22(x0, x1, ty_Double) 25.38/9.10 new_esEs17(Right(x0), Right(x1), x2, ty_@0) 25.38/9.10 new_ltEs22(x0, x1, ty_Char) 25.38/9.10 new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) 25.38/9.10 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_ltEs20(x0, x1, ty_Float) 25.38/9.10 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_compare30(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.38/9.10 new_ltEs20(x0, x1, ty_Ordering) 25.38/9.10 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.38/9.10 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs10(x0, x1, ty_@0) 25.38/9.10 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.38/9.10 new_esEs4(x0, x1, ty_Integer) 25.38/9.10 new_esEs33(x0, x1, ty_Char) 25.38/9.10 new_esEs12(Just(x0), Just(x1), ty_Ordering) 25.38/9.10 new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.38/9.10 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_ltEs24(x0, x1, app(ty_[], x2)) 25.38/9.10 new_esEs4(x0, x1, ty_Bool) 25.38/9.10 new_compare19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.38/9.10 new_compare0(x0, x1, ty_Char) 25.38/9.10 new_ltEs16(GT, GT) 25.38/9.10 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_lt20(x0, x1, ty_Bool) 25.38/9.10 new_lt23(x0, x1, ty_Double) 25.38/9.10 new_esEs28(x0, x1, ty_Ordering) 25.38/9.10 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 25.38/9.10 new_ltEs20(x0, x1, app(ty_[], x2)) 25.38/9.10 new_esEs38(x0, x1, app(ty_[], x2)) 25.38/9.10 new_primCmpNat0(Succ(x0), Zero) 25.38/9.10 new_esEs21(:%(x0, x1), :%(x2, x3), x4) 25.38/9.10 new_esEs17(Left(x0), Right(x1), x2, x3) 25.38/9.10 new_esEs17(Right(x0), Left(x1), x2, x3) 25.38/9.10 new_esEs29(x0, x1, ty_Double) 25.38/9.10 new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) 25.38/9.10 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.38/9.10 new_lt6(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs30(x0, x1, ty_Double) 25.38/9.10 new_esEs37(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_esEs9(x0, x1, ty_Char) 25.38/9.10 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.38/9.10 new_esEs38(x0, x1, ty_Char) 25.38/9.10 new_ltEs4(x0, x1, ty_Double) 25.38/9.10 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.38/9.10 new_esEs6(x0, x1, ty_@0) 25.38/9.10 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.38/9.10 new_esEs35(x0, x1, ty_Integer) 25.38/9.10 new_esEs39(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs39(x0, x1, ty_Double) 25.38/9.10 new_esEs27(x0, x1, ty_Double) 25.38/9.10 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.38/9.10 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.38/9.10 new_esEs19(LT, EQ) 25.38/9.10 new_esEs19(EQ, LT) 25.38/9.10 new_esEs17(Right(x0), Right(x1), x2, ty_Integer) 25.38/9.10 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_esEs17(Left(x0), Left(x1), ty_Char, x2) 25.38/9.10 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_ltEs20(x0, x1, ty_Char) 25.38/9.10 new_compare14(x0, x1, False, x2, x3) 25.38/9.10 new_esEs15(True, True) 25.38/9.10 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 25.38/9.10 new_ltEs4(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_esEs36(x0, x1, ty_Char) 25.38/9.10 new_esEs6(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_esEs19(LT, LT) 25.38/9.10 new_esEs7(x0, x1, ty_@0) 25.38/9.10 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_compare10(x0, x1, False, x2, x3) 25.38/9.10 new_esEs34(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_primCompAux00(x0, x1, EQ, ty_Ordering) 25.38/9.10 new_lt23(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_ltEs20(x0, x1, ty_Integer) 25.38/9.10 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.38/9.10 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_ltEs22(x0, x1, app(ty_[], x2)) 25.38/9.10 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_ltEs23(x0, x1, ty_Ordering) 25.38/9.10 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 25.38/9.10 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_esEs28(x0, x1, ty_Char) 25.38/9.10 new_esEs18(Char(x0), Char(x1)) 25.38/9.10 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.38/9.10 new_compare0(x0, x1, ty_Ordering) 25.38/9.10 new_esEs12(Just(x0), Just(x1), ty_Integer) 25.38/9.10 new_ltEs24(x0, x1, ty_Float) 25.38/9.10 new_ltEs11(x0, x1, x2) 25.38/9.10 new_ltEs16(EQ, EQ) 25.38/9.10 new_ltEs20(x0, x1, ty_@0) 25.38/9.10 new_esEs38(x0, x1, ty_Float) 25.38/9.10 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.38/9.10 new_primMulNat0(Zero, Zero) 25.38/9.10 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_primCompAux00(x0, x1, GT, x2) 25.38/9.10 new_compare24(x0, x1, x2, x3, True, x4, x5) 25.38/9.10 new_esEs30(x0, x1, ty_Bool) 25.38/9.10 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_lt20(x0, x1, ty_Float) 25.38/9.10 new_esEs5(x0, x1, ty_Float) 25.38/9.10 new_lt22(x0, x1, app(ty_[], x2)) 25.38/9.10 new_esEs30(x0, x1, ty_Integer) 25.38/9.10 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_lt14(x0, x1, x2, x3) 25.38/9.10 new_esEs19(EQ, EQ) 25.38/9.10 new_lt15(x0, x1) 25.38/9.10 new_lt17(x0, x1) 25.38/9.10 new_esEs30(x0, x1, ty_@0) 25.38/9.10 new_ltEs22(x0, x1, ty_Float) 25.38/9.10 new_ltEs13(Just(x0), Just(x1), ty_Int) 25.38/9.10 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_primPlusNat1(Succ(x0), Zero) 25.38/9.10 new_esEs10(x0, x1, ty_Double) 25.38/9.10 new_esEs10(x0, x1, ty_Ordering) 25.38/9.10 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 25.38/9.10 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_lt21(x0, x1, app(ty_[], x2)) 25.38/9.10 new_esEs12(Just(x0), Just(x1), ty_Bool) 25.38/9.10 new_lt6(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_fsEs(x0) 25.38/9.10 new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.38/9.10 new_esEs12(Just(x0), Just(x1), ty_Char) 25.38/9.10 new_compare29(Just(x0), Nothing, x1) 25.38/9.10 new_ltEs13(Just(x0), Just(x1), ty_Char) 25.38/9.10 new_esEs11(x0, x1, ty_Double) 25.38/9.10 new_primMulNat0(Zero, Succ(x0)) 25.38/9.10 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.38/9.10 new_primCompAux00(x0, x1, EQ, ty_Int) 25.38/9.10 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.38/9.10 new_esEs37(x0, x1, ty_Double) 25.38/9.10 new_esEs38(x0, x1, ty_Integer) 25.38/9.10 new_lt21(x0, x1, ty_Float) 25.38/9.10 new_lt5(x0, x1) 25.38/9.10 new_ltEs22(x0, x1, ty_Bool) 25.38/9.10 new_compare15(Right(x0), Right(x1), x2, x3) 25.38/9.10 new_esEs12(Just(x0), Just(x1), ty_Int) 25.38/9.10 new_ltEs12(False, True) 25.38/9.10 new_ltEs12(True, False) 25.38/9.10 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_primCompAux00(x0, x1, EQ, ty_Double) 25.38/9.10 new_compare28(False, True) 25.38/9.10 new_compare28(True, False) 25.38/9.10 new_compare29(Nothing, Just(x0), x1) 25.38/9.10 new_ltEs22(x0, x1, ty_@0) 25.38/9.10 new_esEs37(x0, x1, app(ty_[], x2)) 25.38/9.10 new_primCompAux00(x0, x1, EQ, ty_Char) 25.38/9.10 new_lt20(x0, x1, ty_Integer) 25.38/9.10 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs36(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_esEs4(x0, x1, ty_Float) 25.38/9.10 new_ltEs23(x0, x1, ty_Float) 25.38/9.10 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_ltEs16(LT, GT) 25.38/9.10 new_ltEs16(GT, LT) 25.38/9.10 new_ltEs10(x0, x1) 25.38/9.10 new_esEs8(x0, x1, app(ty_[], x2)) 25.38/9.10 new_compare24(x0, x1, x2, x3, False, x4, x5) 25.38/9.10 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 25.38/9.10 new_esEs35(x0, x1, ty_Float) 25.38/9.10 new_esEs11(x0, x1, ty_Int) 25.38/9.10 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.38/9.10 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.38/9.10 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.38/9.10 new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.38/9.10 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs38(x0, x1, ty_@0) 25.38/9.10 new_lt7(x0, x1, x2) 25.38/9.10 new_ltEs5(x0, x1, x2) 25.38/9.10 new_lt6(x0, x1, app(ty_[], x2)) 25.38/9.10 new_lt6(x0, x1, ty_Integer) 25.38/9.10 new_ltEs13(Just(x0), Just(x1), ty_@0) 25.38/9.10 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_compare15(Left(x0), Left(x1), x2, x3) 25.38/9.10 new_esEs27(x0, x1, ty_Char) 25.38/9.10 new_esEs12(Just(x0), Just(x1), ty_Double) 25.38/9.10 new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_compare26(x0, x1, True, x2, x3) 25.38/9.10 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs17(Right(x0), Right(x1), x2, ty_Float) 25.38/9.10 new_lt20(x0, x1, ty_@0) 25.38/9.10 new_esEs5(x0, x1, ty_@0) 25.38/9.10 new_primMulInt(Pos(x0), Neg(x1)) 25.38/9.10 new_primMulInt(Neg(x0), Pos(x1)) 25.38/9.10 new_esEs35(x0, x1, ty_Double) 25.38/9.10 new_esEs7(x0, x1, ty_Int) 25.38/9.10 new_lt22(x0, x1, ty_Double) 25.38/9.10 new_ltEs4(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.38/9.10 new_esEs5(x0, x1, ty_Bool) 25.38/9.10 new_lt21(x0, x1, ty_Integer) 25.38/9.10 new_esEs17(Right(x0), Right(x1), x2, ty_Double) 25.38/9.10 new_compare0(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs30(x0, x1, ty_Float) 25.38/9.10 new_esEs30(x0, x1, app(ty_[], x2)) 25.38/9.10 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 25.38/9.10 new_esEs27(x0, x1, ty_Int) 25.38/9.10 new_lt22(x0, x1, ty_Ordering) 25.38/9.10 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_lt11(x0, x1, x2) 25.38/9.10 new_ltEs19(x0, x1, ty_Ordering) 25.38/9.10 new_esEs30(x0, x1, ty_Char) 25.38/9.10 new_esEs12(Just(x0), Nothing, x1) 25.38/9.10 new_esEs7(x0, x1, ty_Float) 25.38/9.10 new_ltEs13(Just(x0), Just(x1), ty_Integer) 25.38/9.10 new_esEs36(x0, x1, ty_@0) 25.38/9.10 new_compare25(x0, x1, False, x2, x3) 25.38/9.10 new_esEs34(x0, x1, ty_Ordering) 25.38/9.10 new_ltEs24(x0, x1, ty_Bool) 25.38/9.10 new_esEs26(x0, x1, ty_Ordering) 25.38/9.10 new_esEs30(x0, x1, ty_Int) 25.38/9.10 new_compare18(:(x0, x1), [], x2) 25.38/9.10 new_lt23(x0, x1, ty_Ordering) 25.38/9.10 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs27(x0, x1, ty_Float) 25.38/9.10 new_esEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs7(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_esEs5(x0, x1, ty_Integer) 25.38/9.10 new_primEqNat0(Succ(x0), Zero) 25.38/9.10 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_esEs36(x0, x1, app(ty_[], x2)) 25.38/9.10 new_ltEs22(x0, x1, ty_Integer) 25.38/9.10 new_esEs9(x0, x1, ty_@0) 25.38/9.10 new_ltEs12(False, False) 25.38/9.10 new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.38/9.10 new_lt6(x0, x1, ty_Float) 25.38/9.10 new_esEs29(x0, x1, ty_Ordering) 25.38/9.10 new_compare12(x0, x1, x2, x3, True, x4, x5) 25.38/9.10 new_ltEs17(x0, x1) 25.38/9.10 new_lt21(x0, x1, ty_Bool) 25.38/9.10 new_ltEs4(x0, x1, ty_Ordering) 25.38/9.10 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.38/9.10 new_lt6(x0, x1, ty_Bool) 25.38/9.10 new_ltEs4(x0, x1, app(ty_[], x2)) 25.38/9.10 new_esEs8(x0, x1, ty_Ordering) 25.38/9.10 new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.38/9.10 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.38/9.10 new_esEs37(x0, x1, ty_Ordering) 25.38/9.10 new_esEs7(x0, x1, ty_Bool) 25.38/9.10 new_compare6(Char(x0), Char(x1)) 25.38/9.10 new_compare16(EQ, GT) 25.38/9.10 new_compare16(GT, EQ) 25.38/9.10 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.38/9.10 new_esEs33(x0, x1, ty_@0) 25.38/9.10 new_lt6(x0, x1, ty_Int) 25.38/9.10 new_ltEs24(x0, x1, ty_Integer) 25.38/9.10 new_lt6(x0, x1, ty_Char) 25.38/9.10 new_esEs7(x0, x1, ty_Char) 25.38/9.10 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_primCmpNat0(Zero, Zero) 25.38/9.10 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 25.38/9.10 25.38/9.10 We have to consider all minimal (P,Q,R)-chains. 25.38/9.10 ---------------------------------------- 25.38/9.10 25.38/9.10 (29) DependencyGraphProof (EQUIVALENT) 25.38/9.10 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs with 2 less nodes. 25.38/9.10 ---------------------------------------- 25.38/9.10 25.38/9.10 (30) 25.38/9.10 Complex Obligation (AND) 25.38/9.10 25.38/9.10 ---------------------------------------- 25.38/9.10 25.38/9.10 (31) 25.38/9.10 Obligation: 25.38/9.10 Q DP problem: 25.38/9.10 The TRS P consists of the following rules: 25.38/9.10 25.38/9.10 new_addToFM_C(Branch(:(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), [], xuu401, bb, bc) -> new_addToFM_C(xuu33, [], xuu401, bb, bc) 25.38/9.10 25.38/9.10 The TRS R consists of the following rules: 25.38/9.10 25.38/9.10 new_esEs11(xuu40000, xuu3000, app(ty_[], ff)) -> new_esEs24(xuu40000, xuu3000, ff) 25.38/9.10 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.38/9.10 new_esEs26(xuu590, xuu600, app(ty_Ratio, baa)) -> new_esEs21(xuu590, xuu600, baa) 25.38/9.10 new_esEs7(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.10 new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, bb) -> new_primCompAux00(xuu4001, xuu301, new_compare0(xuu4000, xuu300, bb), app(ty_[], bb)) 25.38/9.10 new_pePe(True, xuu206) -> True 25.38/9.10 new_ltEs19(xuu591, xuu601, app(app(app(ty_@3, baf), bag), bah)) -> new_ltEs6(xuu591, xuu601, baf, bag, bah) 25.38/9.10 new_esEs10(xuu40001, xuu3001, ty_@0) -> new_esEs22(xuu40001, xuu3001) 25.38/9.10 new_esEs36(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.38/9.10 new_esEs27(xuu400002, xuu30002, ty_Float) -> new_esEs20(xuu400002, xuu30002) 25.38/9.10 new_compare16(GT, LT) -> GT 25.38/9.10 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.38/9.10 new_primCompAux00(xuu34, xuu35, EQ, ty_Char) -> new_compare6(xuu34, xuu35) 25.38/9.10 new_ltEs24(xuu592, xuu602, ty_Bool) -> new_ltEs12(xuu592, xuu602) 25.38/9.10 new_compare24(xuu111, xuu112, xuu113, xuu114, True, bgb, bgc) -> EQ 25.38/9.10 new_compare110(xuu153, xuu154, False, eca) -> GT 25.38/9.10 new_compare26(xuu66, xuu67, True, cah, cba) -> EQ 25.38/9.10 new_ltEs4(xuu59, xuu60, ty_Int) -> new_ltEs7(xuu59, xuu60) 25.38/9.10 new_esEs28(xuu400001, xuu30001, ty_Char) -> new_esEs18(xuu400001, xuu30001) 25.38/9.10 new_lt6(xuu590, xuu600, ty_Bool) -> new_lt12(xuu590, xuu600) 25.38/9.10 new_esEs5(xuu40001, xuu3001, app(ty_Ratio, fhf)) -> new_esEs21(xuu40001, xuu3001, fhf) 25.38/9.10 new_compare0(xuu4000, xuu300, ty_Char) -> new_compare6(xuu4000, xuu300) 25.38/9.10 new_ltEs23(xuu100, xuu103, ty_Double) -> new_ltEs15(xuu100, xuu103) 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_Maybe, ce)) -> new_esEs12(xuu400000, xuu30000, ce) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(ty_Ratio, dhh)) -> new_ltEs11(xuu590, xuu600, dhh) 25.38/9.10 new_esEs4(xuu40002, xuu3002, app(app(app(ty_@3, ffg), ffh), fga)) -> new_esEs14(xuu40002, xuu3002, ffg, ffh, fga) 25.38/9.10 new_compare16(EQ, LT) -> GT 25.38/9.10 new_esEs33(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.10 new_lt19(xuu111, xuu113, app(ty_Ratio, cad)) -> new_lt11(xuu111, xuu113, cad) 25.38/9.10 new_esEs26(xuu590, xuu600, ty_Ordering) -> new_esEs19(xuu590, xuu600) 25.38/9.10 new_esEs5(xuu40001, xuu3001, app(ty_[], fhh)) -> new_esEs24(xuu40001, xuu3001, fhh) 25.38/9.10 new_esEs35(xuu98, xuu101, ty_@0) -> new_esEs22(xuu98, xuu101) 25.38/9.10 new_esEs36(xuu400001, xuu30001, app(ty_Ratio, fab)) -> new_esEs21(xuu400001, xuu30001, fab) 25.38/9.10 new_esEs26(xuu590, xuu600, ty_Integer) -> new_esEs23(xuu590, xuu600) 25.38/9.10 new_ltEs21(xuu66, xuu67, ty_Ordering) -> new_ltEs16(xuu66, xuu67) 25.38/9.10 new_esEs12(Nothing, Just(xuu30000), bd) -> False 25.38/9.10 new_esEs12(Just(xuu400000), Nothing, bd) -> False 25.38/9.10 new_esEs6(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), ty_Double, gf) -> new_ltEs15(xuu590, xuu600) 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), ty_@0, ccf) -> new_esEs22(xuu400000, xuu30000) 25.38/9.10 new_esEs5(xuu40001, xuu3001, ty_Ordering) -> new_esEs19(xuu40001, xuu3001) 25.38/9.10 new_esEs12(Nothing, Nothing, bd) -> True 25.38/9.10 new_esEs26(xuu590, xuu600, app(ty_[], hc)) -> new_esEs24(xuu590, xuu600, hc) 25.38/9.10 new_primEqNat0(Succ(xuu4000000), Succ(xuu300000)) -> new_primEqNat0(xuu4000000, xuu300000) 25.38/9.10 new_esEs33(xuu400000, xuu30000, app(ty_Maybe, ebe)) -> new_esEs12(xuu400000, xuu30000, ebe) 25.38/9.10 new_compare27(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Int) -> new_compare17(new_sr(xuu40000, xuu3001), new_sr(xuu3000, xuu40001)) 25.38/9.10 new_esEs24([], [], ead) -> True 25.38/9.10 new_not(True) -> False 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(app(ty_@3, ccg), cch), cda), ccf) -> new_esEs14(xuu400000, xuu30000, ccg, cch, cda) 25.38/9.10 new_lt22(xuu590, xuu600, app(ty_[], fbg)) -> new_lt7(xuu590, xuu600, fbg) 25.38/9.10 new_lt21(xuu99, xuu102, app(app(ty_@2, eec), eed)) -> new_lt14(xuu99, xuu102, eec, eed) 25.38/9.10 new_lt23(xuu591, xuu601, ty_Int) -> new_lt9(xuu591, xuu601) 25.38/9.10 new_esEs36(xuu400001, xuu30001, app(app(ty_@2, ehc), ehd)) -> new_esEs13(xuu400001, xuu30001, ehc, ehd) 25.38/9.10 new_esEs5(xuu40001, xuu3001, app(ty_Maybe, fhg)) -> new_esEs12(xuu40001, xuu3001, fhg) 25.38/9.10 new_esEs11(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.10 new_esEs5(xuu40001, xuu3001, ty_Integer) -> new_esEs23(xuu40001, xuu3001) 25.38/9.10 new_ltEs24(xuu592, xuu602, ty_Integer) -> new_ltEs18(xuu592, xuu602) 25.38/9.10 new_ltEs22(xuu73, xuu74, ty_Float) -> new_ltEs17(xuu73, xuu74) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), app(app(ty_Either, dgd), dge), gf) -> new_ltEs8(xuu590, xuu600, dgd, dge) 25.38/9.10 new_esEs8(xuu40000, xuu3000, app(app(ty_Either, dcg), dch)) -> new_esEs17(xuu40000, xuu3000, dcg, dch) 25.38/9.10 new_esEs35(xuu98, xuu101, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_esEs14(xuu98, xuu101, ecb, ecc, ecd) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.10 new_esEs11(xuu40000, xuu3000, app(app(ty_Either, fa), fb)) -> new_esEs17(xuu40000, xuu3000, fa, fb) 25.38/9.10 new_ltEs19(xuu591, xuu601, ty_Bool) -> new_ltEs12(xuu591, xuu601) 25.38/9.10 new_primEqNat0(Succ(xuu4000000), Zero) -> False 25.38/9.10 new_primEqNat0(Zero, Succ(xuu300000)) -> False 25.38/9.10 new_esEs18(Char(xuu400000), Char(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 25.38/9.10 new_esEs38(xuu591, xuu601, ty_Char) -> new_esEs18(xuu591, xuu601) 25.38/9.10 new_compare10(xuu137, xuu138, True, ebg, ebh) -> LT 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), ty_Char, gf) -> new_ltEs10(xuu590, xuu600) 25.38/9.10 new_esEs8(xuu40000, xuu3000, app(app(ty_@2, dcb), dcc)) -> new_esEs13(xuu40000, xuu3000, dcb, dcc) 25.38/9.10 new_ltEs4(xuu59, xuu60, app(ty_Ratio, gg)) -> new_ltEs11(xuu59, xuu60, gg) 25.38/9.10 new_esEs33(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.10 new_esEs11(xuu40000, xuu3000, app(ty_Maybe, fd)) -> new_esEs12(xuu40000, xuu3000, fd) 25.38/9.10 new_ltEs4(xuu59, xuu60, app(app(ty_@2, ha), hb)) -> new_ltEs14(xuu59, xuu60, ha, hb) 25.38/9.10 new_compare13(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.10 new_esEs4(xuu40002, xuu3002, ty_@0) -> new_esEs22(xuu40002, xuu3002) 25.38/9.10 new_esEs36(xuu400001, xuu30001, ty_Bool) -> new_esEs15(xuu400001, xuu30001) 25.38/9.10 new_esEs9(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.10 new_primCmpInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> GT 25.38/9.10 new_compare18(:(xuu40000, xuu40001), :(xuu3000, xuu3001), ddd) -> new_primCompAux1(xuu40000, xuu3000, xuu40001, xuu3001, ddd) 25.38/9.10 new_lt6(xuu590, xuu600, ty_Ordering) -> new_lt16(xuu590, xuu600) 25.38/9.10 new_esEs11(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.10 new_ltEs11(xuu59, xuu60, gg) -> new_fsEs(new_compare27(xuu59, xuu60, gg)) 25.38/9.10 new_esEs26(xuu590, xuu600, app(app(ty_@2, bac), bad)) -> new_esEs13(xuu590, xuu600, bac, bad) 25.38/9.10 new_ltEs21(xuu66, xuu67, ty_Int) -> new_ltEs7(xuu66, xuu67) 25.38/9.10 new_esEs33(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), ty_@0, gf) -> new_ltEs9(xuu590, xuu600) 25.38/9.10 new_ltEs19(xuu591, xuu601, ty_Integer) -> new_ltEs18(xuu591, xuu601) 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.10 new_ltEs9(xuu59, xuu60) -> new_fsEs(new_compare8(xuu59, xuu60)) 25.38/9.10 new_primPlusNat1(Succ(xuu20900), Succ(xuu20800)) -> Succ(Succ(new_primPlusNat1(xuu20900, xuu20800))) 25.38/9.10 new_primCompAux00(xuu34, xuu35, GT, cfd) -> GT 25.38/9.10 new_compare0(xuu4000, xuu300, app(app(ty_@2, cg), da)) -> new_compare7(xuu4000, xuu300, cg, da) 25.38/9.10 new_primCmpNat0(Zero, Succ(xuu30000)) -> LT 25.38/9.10 new_ltEs23(xuu100, xuu103, ty_@0) -> new_ltEs9(xuu100, xuu103) 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.10 new_esEs29(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.10 new_compare15(Right(xuu40000), Right(xuu3000), daf, dag) -> new_compare26(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, dag), daf, dag) 25.38/9.10 new_ltEs21(xuu66, xuu67, app(app(ty_Either, cbf), cbg)) -> new_ltEs8(xuu66, xuu67, cbf, cbg) 25.38/9.10 new_ltEs20(xuu112, xuu114, app(ty_Maybe, bhc)) -> new_ltEs13(xuu112, xuu114, bhc) 25.38/9.10 new_esEs33(xuu400000, xuu30000, app(ty_Ratio, ebd)) -> new_esEs21(xuu400000, xuu30000, ebd) 25.38/9.10 new_ltEs23(xuu100, xuu103, app(ty_Ratio, efc)) -> new_ltEs11(xuu100, xuu103, efc) 25.38/9.10 new_lt20(xuu98, xuu101, ty_Float) -> new_lt17(xuu98, xuu101) 25.38/9.10 new_compare15(Left(xuu40000), Right(xuu3000), daf, dag) -> LT 25.38/9.10 new_ltEs4(xuu59, xuu60, app(app(app(ty_@3, gb), gc), gd)) -> new_ltEs6(xuu59, xuu60, gb, gc, gd) 25.38/9.10 new_esEs5(xuu40001, xuu3001, app(app(ty_@2, fgg), fgh)) -> new_esEs13(xuu40001, xuu3001, fgg, fgh) 25.38/9.10 new_lt22(xuu590, xuu600, ty_Char) -> new_lt4(xuu590, xuu600) 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_[], cf)) -> new_esEs24(xuu400000, xuu30000, cf) 25.38/9.10 new_primCompAux00(xuu34, xuu35, EQ, ty_@0) -> new_compare8(xuu34, xuu35) 25.38/9.10 new_esEs39(xuu590, xuu600, app(app(ty_Either, fcc), fcd)) -> new_esEs17(xuu590, xuu600, fcc, fcd) 25.38/9.10 new_esEs19(LT, EQ) -> False 25.38/9.10 new_esEs19(EQ, LT) -> False 25.38/9.10 new_esEs39(xuu590, xuu600, ty_Bool) -> new_esEs15(xuu590, xuu600) 25.38/9.10 new_esEs30(xuu111, xuu113, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs14(xuu111, xuu113, bhg, bhh, caa) 25.38/9.10 new_esEs7(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.10 new_esEs33(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.10 new_ltEs4(xuu59, xuu60, ty_@0) -> new_ltEs9(xuu59, xuu60) 25.38/9.10 new_lt23(xuu591, xuu601, app(ty_Maybe, fdh)) -> new_lt13(xuu591, xuu601, fdh) 25.38/9.10 new_esEs11(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.10 new_compare17(xuu4000, xuu300) -> new_primCmpInt(xuu4000, xuu300) 25.38/9.10 new_lt23(xuu591, xuu601, ty_Double) -> new_lt15(xuu591, xuu601) 25.38/9.10 new_esEs39(xuu590, xuu600, app(app(ty_@2, fcg), fch)) -> new_esEs13(xuu590, xuu600, fcg, fch) 25.38/9.10 new_compare7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cg, da) -> new_compare24(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs11(xuu40000, xuu3000, cg), new_esEs10(xuu40001, xuu3001, da)), cg, da) 25.38/9.10 new_esEs8(xuu40000, xuu3000, app(ty_Ratio, dda)) -> new_esEs21(xuu40000, xuu3000, dda) 25.38/9.10 new_esEs36(xuu400001, xuu30001, app(ty_Maybe, fac)) -> new_esEs12(xuu400001, xuu30001, fac) 25.38/9.10 new_ltEs23(xuu100, xuu103, app(app(ty_@2, efe), eff)) -> new_ltEs14(xuu100, xuu103, efe, eff) 25.38/9.10 new_esEs10(xuu40001, xuu3001, ty_Char) -> new_esEs18(xuu40001, xuu3001) 25.38/9.10 new_esEs29(xuu400000, xuu30000, app(ty_[], bfg)) -> new_esEs24(xuu400000, xuu30000, bfg) 25.38/9.10 new_esEs34(xuu99, xuu102, ty_Float) -> new_esEs20(xuu99, xuu102) 25.38/9.10 new_esEs8(xuu40000, xuu3000, app(ty_[], ddc)) -> new_esEs24(xuu40000, xuu3000, ddc) 25.38/9.10 new_esEs29(xuu400000, xuu30000, app(app(ty_Either, bfc), bfd)) -> new_esEs17(xuu400000, xuu30000, bfc, bfd) 25.38/9.10 new_esEs38(xuu591, xuu601, ty_Int) -> new_esEs16(xuu591, xuu601) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Float) -> new_ltEs17(xuu590, xuu600) 25.38/9.10 new_lt22(xuu590, xuu600, ty_Bool) -> new_lt12(xuu590, xuu600) 25.38/9.10 new_esEs15(True, True) -> True 25.38/9.10 new_primCompAux00(xuu34, xuu35, EQ, ty_Bool) -> new_compare28(xuu34, xuu35) 25.38/9.10 new_esEs5(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) 25.38/9.10 new_ltEs19(xuu591, xuu601, app(app(ty_@2, bbe), bbf)) -> new_ltEs14(xuu591, xuu601, bbe, bbf) 25.38/9.10 new_esEs29(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.10 new_primEqInt(Neg(Succ(xuu4000000)), Neg(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) 25.38/9.10 new_ltEs4(xuu59, xuu60, ty_Ordering) -> new_ltEs16(xuu59, xuu60) 25.38/9.10 new_esEs30(xuu111, xuu113, ty_@0) -> new_esEs22(xuu111, xuu113) 25.38/9.10 new_compare0(xuu4000, xuu300, ty_Float) -> new_compare13(xuu4000, xuu300) 25.38/9.10 new_primCmpInt(Neg(Zero), Pos(Succ(xuu30000))) -> LT 25.38/9.10 new_primCompAux00(xuu34, xuu35, EQ, ty_Double) -> new_compare30(xuu34, xuu35) 25.38/9.10 new_primMulInt(Pos(xuu30000), Pos(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.10 new_ltEs20(xuu112, xuu114, ty_Double) -> new_ltEs15(xuu112, xuu114) 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), app(app(ty_Either, egc), egd)) -> new_ltEs8(xuu590, xuu600, egc, egd) 25.38/9.10 new_esEs9(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), ty_Bool) -> new_ltEs12(xuu590, xuu600) 25.38/9.10 new_ltEs24(xuu592, xuu602, ty_Float) -> new_ltEs17(xuu592, xuu602) 25.38/9.10 new_lt21(xuu99, xuu102, app(ty_Maybe, eeb)) -> new_lt13(xuu99, xuu102, eeb) 25.38/9.10 new_esEs38(xuu591, xuu601, app(ty_Maybe, fdh)) -> new_esEs12(xuu591, xuu601, fdh) 25.38/9.10 new_ltEs8(Right(xuu590), Left(xuu600), ge, gf) -> False 25.38/9.10 new_primMulNat0(Succ(xuu300000), Zero) -> Zero 25.38/9.10 new_primMulNat0(Zero, Succ(xuu4000100)) -> Zero 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(ty_Maybe, eaa)) -> new_ltEs13(xuu590, xuu600, eaa) 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), app(app(app(ty_@3, efh), ega), egb)) -> new_ltEs6(xuu590, xuu600, efh, ega, egb) 25.38/9.10 new_esEs26(xuu590, xuu600, ty_Bool) -> new_esEs15(xuu590, xuu600) 25.38/9.10 new_esEs5(xuu40001, xuu3001, app(app(ty_Either, fhd), fhe)) -> new_esEs17(xuu40001, xuu3001, fhd, fhe) 25.38/9.10 new_esEs37(xuu400000, xuu30000, app(app(app(ty_@3, fag), fah), fba)) -> new_esEs14(xuu400000, xuu30000, fag, fah, fba) 25.38/9.10 new_compare30(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.10 new_esEs26(xuu590, xuu600, ty_Int) -> new_esEs16(xuu590, xuu600) 25.38/9.10 new_ltEs21(xuu66, xuu67, ty_Integer) -> new_ltEs18(xuu66, xuu67) 25.38/9.10 new_esEs8(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.10 new_compare15(Left(xuu40000), Left(xuu3000), daf, dag) -> new_compare25(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, daf), daf, dag) 25.38/9.10 new_ltEs23(xuu100, xuu103, ty_Int) -> new_ltEs7(xuu100, xuu103) 25.38/9.10 new_ltEs12(False, True) -> True 25.38/9.10 new_lt20(xuu98, xuu101, app(app(ty_Either, cfb), cfc)) -> new_lt10(xuu98, xuu101, cfb, cfc) 25.38/9.10 new_ltEs4(xuu59, xuu60, app(app(ty_Either, ge), gf)) -> new_ltEs8(xuu59, xuu60, ge, gf) 25.38/9.10 new_ltEs19(xuu591, xuu601, app(app(ty_Either, bba), bbb)) -> new_ltEs8(xuu591, xuu601, bba, bbb) 25.38/9.10 new_ltEs20(xuu112, xuu114, ty_@0) -> new_ltEs9(xuu112, xuu114) 25.38/9.10 new_esEs28(xuu400001, xuu30001, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs14(xuu400001, xuu30001, bdf, bdg, bdh) 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(ty_@2, be), bf)) -> new_esEs13(xuu400000, xuu30000, be, bf) 25.38/9.10 new_esEs26(xuu590, xuu600, app(ty_Maybe, bab)) -> new_esEs12(xuu590, xuu600, bab) 25.38/9.10 new_primPlusNat1(Succ(xuu20900), Zero) -> Succ(xuu20900) 25.38/9.10 new_primPlusNat1(Zero, Succ(xuu20800)) -> Succ(xuu20800) 25.38/9.10 new_esEs7(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.10 new_esEs30(xuu111, xuu113, ty_Char) -> new_esEs18(xuu111, xuu113) 25.38/9.10 new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_@2, cge), cgf)) -> new_compare7(xuu34, xuu35, cge, cgf) 25.38/9.10 new_esEs29(xuu400000, xuu30000, app(app(ty_@2, bef), beg)) -> new_esEs13(xuu400000, xuu30000, bef, beg) 25.38/9.10 new_compare28(False, False) -> EQ 25.38/9.10 new_ltEs21(xuu66, xuu67, ty_@0) -> new_ltEs9(xuu66, xuu67) 25.38/9.10 new_ltEs12(True, True) -> True 25.38/9.10 new_ltEs21(xuu66, xuu67, app(ty_Ratio, cbh)) -> new_ltEs11(xuu66, xuu67, cbh) 25.38/9.10 new_esEs11(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.10 new_compare0(xuu4000, xuu300, app(app(ty_Either, daf), dag)) -> new_compare15(xuu4000, xuu300, daf, dag) 25.38/9.10 new_ltEs21(xuu66, xuu67, app(app(ty_@2, ccb), ccc)) -> new_ltEs14(xuu66, xuu67, ccb, ccc) 25.38/9.10 new_ltEs19(xuu591, xuu601, ty_Ordering) -> new_ltEs16(xuu591, xuu601) 25.38/9.10 new_compare9(Integer(xuu40000), Integer(xuu3000)) -> new_primCmpInt(xuu40000, xuu3000) 25.38/9.10 new_esEs11(xuu40000, xuu3000, app(ty_Ratio, fc)) -> new_esEs21(xuu40000, xuu3000, fc) 25.38/9.10 new_ltEs4(xuu59, xuu60, app(ty_Maybe, gh)) -> new_ltEs13(xuu59, xuu60, gh) 25.38/9.10 new_esEs7(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.10 new_compare18(:(xuu40000, xuu40001), [], ddd) -> GT 25.38/9.10 new_ltEs21(xuu66, xuu67, ty_Double) -> new_ltEs15(xuu66, xuu67) 25.38/9.10 new_esEs36(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.38/9.10 new_esEs31(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.38/9.10 new_ltEs24(xuu592, xuu602, ty_Int) -> new_ltEs7(xuu592, xuu602) 25.38/9.10 new_compare16(LT, LT) -> EQ 25.38/9.10 new_esEs27(xuu400002, xuu30002, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs14(xuu400002, xuu30002, bcd, bce, bcf) 25.38/9.10 new_esEs33(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.10 new_ltEs24(xuu592, xuu602, app(app(ty_@2, ffc), ffd)) -> new_ltEs14(xuu592, xuu602, ffc, ffd) 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_Ratio, cdd), ccf) -> new_esEs21(xuu400000, xuu30000, cdd) 25.38/9.10 new_esEs6(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.10 new_esEs7(xuu40000, xuu3000, app(ty_[], dca)) -> new_esEs24(xuu40000, xuu3000, dca) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(ty_Ratio, ceg)) -> new_esEs21(xuu400000, xuu30000, ceg) 25.38/9.10 new_esEs11(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.10 new_esEs38(xuu591, xuu601, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_esEs14(xuu591, xuu601, fdb, fdc, fdd) 25.38/9.10 new_esEs35(xuu98, xuu101, ty_Float) -> new_esEs20(xuu98, xuu101) 25.38/9.10 new_ltEs5(xuu59, xuu60, ga) -> new_fsEs(new_compare18(xuu59, xuu60, ga)) 25.38/9.10 new_esEs29(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_[], cdf), ccf) -> new_esEs24(xuu400000, xuu30000, cdf) 25.38/9.10 new_esEs35(xuu98, xuu101, ty_Int) -> new_esEs16(xuu98, xuu101) 25.38/9.10 new_lt6(xuu590, xuu600, ty_Char) -> new_lt4(xuu590, xuu600) 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), ty_Int) -> new_ltEs7(xuu590, xuu600) 25.38/9.10 new_ltEs19(xuu591, xuu601, ty_@0) -> new_ltEs9(xuu591, xuu601) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(app(ty_@2, eab), eac)) -> new_ltEs14(xuu590, xuu600, eab, eac) 25.38/9.10 new_esEs28(xuu400001, xuu30001, app(ty_[], bee)) -> new_esEs24(xuu400001, xuu30001, bee) 25.38/9.10 new_esEs10(xuu40001, xuu3001, ty_Float) -> new_esEs20(xuu40001, xuu3001) 25.38/9.10 new_esEs10(xuu40001, xuu3001, ty_Double) -> new_esEs25(xuu40001, xuu3001) 25.38/9.10 new_esEs29(xuu400000, xuu30000, app(ty_Maybe, bff)) -> new_esEs12(xuu400000, xuu30000, bff) 25.38/9.10 new_esEs35(xuu98, xuu101, app(ty_Maybe, dfc)) -> new_esEs12(xuu98, xuu101, dfc) 25.38/9.10 new_esEs38(xuu591, xuu601, ty_Bool) -> new_esEs15(xuu591, xuu601) 25.38/9.10 new_lt20(xuu98, xuu101, app(ty_Maybe, dfc)) -> new_lt13(xuu98, xuu101, dfc) 25.38/9.10 new_esEs38(xuu591, xuu601, app(app(ty_Either, fde), fdf)) -> new_esEs17(xuu591, xuu601, fde, fdf) 25.38/9.10 new_primCompAux00(xuu34, xuu35, EQ, app(app(app(ty_@3, cff), cfg), cfh)) -> new_compare19(xuu34, xuu35, cff, cfg, cfh) 25.38/9.10 new_esEs5(xuu40001, xuu3001, ty_Char) -> new_esEs18(xuu40001, xuu3001) 25.38/9.10 new_compare0(xuu4000, xuu300, app(ty_[], ddd)) -> new_compare18(xuu4000, xuu300, ddd) 25.38/9.10 new_ltEs18(xuu59, xuu60) -> new_fsEs(new_compare9(xuu59, xuu60)) 25.38/9.10 new_esEs30(xuu111, xuu113, app(ty_Maybe, cae)) -> new_esEs12(xuu111, xuu113, cae) 25.38/9.10 new_compare10(xuu137, xuu138, False, ebg, ebh) -> GT 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.10 new_ltEs14(@2(xuu590, xuu591), @2(xuu600, xuu601), ha, hb) -> new_pePe(new_lt6(xuu590, xuu600, ha), new_asAs(new_esEs26(xuu590, xuu600, ha), new_ltEs19(xuu591, xuu601, hb))) 25.38/9.10 new_esEs38(xuu591, xuu601, ty_Integer) -> new_esEs23(xuu591, xuu601) 25.38/9.10 new_lt19(xuu111, xuu113, ty_Bool) -> new_lt12(xuu111, xuu113) 25.38/9.10 new_esEs19(LT, LT) -> True 25.38/9.10 new_primCompAux00(xuu34, xuu35, EQ, ty_Float) -> new_compare13(xuu34, xuu35) 25.38/9.10 new_esEs30(xuu111, xuu113, app(ty_Ratio, cad)) -> new_esEs21(xuu111, xuu113, cad) 25.38/9.10 new_lt22(xuu590, xuu600, ty_Ordering) -> new_lt16(xuu590, xuu600) 25.38/9.10 new_esEs27(xuu400002, xuu30002, app(app(ty_@2, bcb), bcc)) -> new_esEs13(xuu400002, xuu30002, bcb, bcc) 25.38/9.10 new_esEs6(xuu40000, xuu3000, app(app(ty_@2, eha), ehb)) -> new_esEs13(xuu40000, xuu3000, eha, ehb) 25.38/9.10 new_primCmpInt(Pos(Succ(xuu400000)), Pos(xuu3000)) -> new_primCmpNat0(Succ(xuu400000), xuu3000) 25.38/9.10 new_esEs38(xuu591, xuu601, ty_@0) -> new_esEs22(xuu591, xuu601) 25.38/9.10 new_lt18(xuu98, xuu101) -> new_esEs19(new_compare9(xuu98, xuu101), LT) 25.38/9.10 new_esEs10(xuu40001, xuu3001, app(ty_Maybe, eb)) -> new_esEs12(xuu40001, xuu3001, eb) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(ty_[], cfa)) -> new_esEs24(xuu400000, xuu30000, cfa) 25.38/9.10 new_esEs29(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.10 new_lt23(xuu591, xuu601, ty_Char) -> new_lt4(xuu591, xuu601) 25.38/9.10 new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_Either, cga), cgb)) -> new_compare15(xuu34, xuu35, cga, cgb) 25.38/9.10 new_lt17(xuu98, xuu101) -> new_esEs19(new_compare13(xuu98, xuu101), LT) 25.38/9.10 new_esEs39(xuu590, xuu600, ty_Float) -> new_esEs20(xuu590, xuu600) 25.38/9.10 new_lt19(xuu111, xuu113, ty_Integer) -> new_lt18(xuu111, xuu113) 25.38/9.10 new_lt21(xuu99, xuu102, ty_Ordering) -> new_lt16(xuu99, xuu102) 25.38/9.10 new_ltEs23(xuu100, xuu103, app(ty_[], eee)) -> new_ltEs5(xuu100, xuu103, eee) 25.38/9.10 new_ltEs13(Nothing, Nothing, gh) -> True 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), app(app(ty_@2, egg), egh)) -> new_ltEs14(xuu590, xuu600, egg, egh) 25.38/9.10 new_ltEs13(Just(xuu590), Nothing, gh) -> False 25.38/9.10 new_lt19(xuu111, xuu113, app(ty_Maybe, cae)) -> new_lt13(xuu111, xuu113, cae) 25.38/9.10 new_ltEs12(True, False) -> False 25.38/9.10 new_esEs4(xuu40002, xuu3002, ty_Float) -> new_esEs20(xuu40002, xuu3002) 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Float, ccf) -> new_esEs20(xuu400000, xuu30000) 25.38/9.10 new_esEs33(xuu400000, xuu30000, app(app(ty_Either, ebb), ebc)) -> new_esEs17(xuu400000, xuu30000, ebb, ebc) 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_Maybe, cde), ccf) -> new_esEs12(xuu400000, xuu30000, cde) 25.38/9.10 new_esEs34(xuu99, xuu102, ty_Ordering) -> new_esEs19(xuu99, xuu102) 25.38/9.10 new_esEs14(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), bbg, bbh, bca) -> new_asAs(new_esEs29(xuu400000, xuu30000, bbg), new_asAs(new_esEs28(xuu400001, xuu30001, bbh), new_esEs27(xuu400002, xuu30002, bca))) 25.38/9.10 new_lt20(xuu98, xuu101, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_lt8(xuu98, xuu101, ecb, ecc, ecd) 25.38/9.10 new_compare0(xuu4000, xuu300, ty_Int) -> new_compare17(xuu4000, xuu300) 25.38/9.10 new_ltEs22(xuu73, xuu74, app(ty_[], cha)) -> new_ltEs5(xuu73, xuu74, cha) 25.38/9.10 new_esEs10(xuu40001, xuu3001, ty_Ordering) -> new_esEs19(xuu40001, xuu3001) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), ty_Ordering, gf) -> new_ltEs16(xuu590, xuu600) 25.38/9.10 new_esEs13(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), eha, ehb) -> new_asAs(new_esEs37(xuu400000, xuu30000, eha), new_esEs36(xuu400001, xuu30001, ehb)) 25.38/9.10 new_lt21(xuu99, xuu102, ty_Int) -> new_lt9(xuu99, xuu102) 25.38/9.10 new_esEs33(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.10 new_esEs34(xuu99, xuu102, app(app(ty_Either, edg), edh)) -> new_esEs17(xuu99, xuu102, edg, edh) 25.38/9.10 new_compare28(False, True) -> LT 25.38/9.10 new_esEs10(xuu40001, xuu3001, ty_Int) -> new_esEs16(xuu40001, xuu3001) 25.38/9.10 new_esEs34(xuu99, xuu102, app(ty_Maybe, eeb)) -> new_esEs12(xuu99, xuu102, eeb) 25.38/9.10 new_ltEs12(False, False) -> True 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Double) -> new_ltEs15(xuu590, xuu600) 25.38/9.10 new_compare29(Just(xuu40000), Nothing, dde) -> GT 25.38/9.10 new_esEs7(xuu40000, xuu3000, app(app(ty_@2, dah), dba)) -> new_esEs13(xuu40000, xuu3000, dah, dba) 25.38/9.10 new_esEs17(Left(xuu400000), Right(xuu30000), cdg, ccf) -> False 25.38/9.10 new_esEs17(Right(xuu400000), Left(xuu30000), cdg, ccf) -> False 25.38/9.10 new_esEs34(xuu99, xuu102, ty_Integer) -> new_esEs23(xuu99, xuu102) 25.38/9.10 new_ltEs15(xuu59, xuu60) -> new_fsEs(new_compare30(xuu59, xuu60)) 25.38/9.10 new_esEs34(xuu99, xuu102, ty_@0) -> new_esEs22(xuu99, xuu102) 25.38/9.10 new_esEs4(xuu40002, xuu3002, ty_Char) -> new_esEs18(xuu40002, xuu3002) 25.38/9.10 new_compare13(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.10 new_compare13(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.10 new_lt22(xuu590, xuu600, ty_Int) -> new_lt9(xuu590, xuu600) 25.38/9.10 new_ltEs24(xuu592, xuu602, app(ty_Ratio, ffa)) -> new_ltEs11(xuu592, xuu602, ffa) 25.38/9.10 new_esEs39(xuu590, xuu600, ty_Ordering) -> new_esEs19(xuu590, xuu600) 25.38/9.10 new_esEs28(xuu400001, xuu30001, app(ty_Maybe, bed)) -> new_esEs12(xuu400001, xuu30001, bed) 25.38/9.10 new_lt19(xuu111, xuu113, app(app(app(ty_@3, bhg), bhh), caa)) -> new_lt8(xuu111, xuu113, bhg, bhh, caa) 25.38/9.10 new_lt6(xuu590, xuu600, ty_Float) -> new_lt17(xuu590, xuu600) 25.38/9.10 new_esEs39(xuu590, xuu600, ty_Integer) -> new_esEs23(xuu590, xuu600) 25.38/9.10 new_lt19(xuu111, xuu113, ty_@0) -> new_lt5(xuu111, xuu113) 25.38/9.10 new_compare28(True, True) -> EQ 25.38/9.10 new_esEs27(xuu400002, xuu30002, app(ty_[], bdc)) -> new_esEs24(xuu400002, xuu30002, bdc) 25.38/9.10 new_lt22(xuu590, xuu600, ty_Integer) -> new_lt18(xuu590, xuu600) 25.38/9.10 new_lt19(xuu111, xuu113, ty_Ordering) -> new_lt16(xuu111, xuu113) 25.38/9.10 new_esEs27(xuu400002, xuu30002, app(ty_Ratio, bda)) -> new_esEs21(xuu400002, xuu30002, bda) 25.38/9.10 new_esEs26(xuu590, xuu600, ty_Double) -> new_esEs25(xuu590, xuu600) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), ty_Float, gf) -> new_ltEs17(xuu590, xuu600) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), ty_Integer, gf) -> new_ltEs18(xuu590, xuu600) 25.38/9.10 new_ltEs8(Left(xuu590), Right(xuu600), ge, gf) -> True 25.38/9.10 new_esEs24(:(xuu400000, xuu400001), :(xuu30000, xuu30001), ead) -> new_asAs(new_esEs33(xuu400000, xuu30000, ead), new_esEs24(xuu400001, xuu30001, ead)) 25.38/9.10 new_esEs28(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.38/9.10 new_lt19(xuu111, xuu113, ty_Int) -> new_lt9(xuu111, xuu113) 25.38/9.10 new_esEs37(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_Ratio, cd)) -> new_esEs21(xuu400000, xuu30000, cd) 25.38/9.10 new_esEs19(LT, GT) -> False 25.38/9.10 new_esEs19(GT, LT) -> False 25.38/9.10 new_ltEs4(xuu59, xuu60, app(ty_[], ga)) -> new_ltEs5(xuu59, xuu60, ga) 25.38/9.10 new_ltEs10(xuu59, xuu60) -> new_fsEs(new_compare6(xuu59, xuu60)) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_Maybe, dgg), gf) -> new_ltEs13(xuu590, xuu600, dgg) 25.38/9.10 new_esEs29(xuu400000, xuu30000, app(ty_Ratio, bfe)) -> new_esEs21(xuu400000, xuu30000, bfe) 25.38/9.10 new_lt22(xuu590, xuu600, ty_Float) -> new_lt17(xuu590, xuu600) 25.38/9.10 new_ltEs6(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), gb, gc, gd) -> new_pePe(new_lt22(xuu590, xuu600, gb), new_asAs(new_esEs39(xuu590, xuu600, gb), new_pePe(new_lt23(xuu591, xuu601, gc), new_asAs(new_esEs38(xuu591, xuu601, gc), new_ltEs24(xuu592, xuu602, gd))))) 25.38/9.10 new_esEs38(xuu591, xuu601, ty_Ordering) -> new_esEs19(xuu591, xuu601) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), app(app(ty_@2, dgh), dha), gf) -> new_ltEs14(xuu590, xuu600, dgh, dha) 25.38/9.10 new_ltEs21(xuu66, xuu67, app(ty_[], cbb)) -> new_ltEs5(xuu66, xuu67, cbb) 25.38/9.10 new_lt20(xuu98, xuu101, ty_Integer) -> new_lt18(xuu98, xuu101) 25.38/9.10 new_lt20(xuu98, xuu101, ty_Int) -> new_lt9(xuu98, xuu101) 25.38/9.10 new_primCompAux00(xuu34, xuu35, EQ, ty_Int) -> new_compare17(xuu34, xuu35) 25.38/9.10 new_lt20(xuu98, xuu101, ty_Char) -> new_lt4(xuu98, xuu101) 25.38/9.10 new_compare29(Nothing, Just(xuu3000), dde) -> LT 25.38/9.10 new_esEs37(xuu400000, xuu30000, app(app(ty_Either, fbb), fbc)) -> new_esEs17(xuu400000, xuu30000, fbb, fbc) 25.38/9.10 new_esEs30(xuu111, xuu113, ty_Double) -> new_esEs25(xuu111, xuu113) 25.38/9.10 new_esEs35(xuu98, xuu101, app(app(ty_Either, cfb), cfc)) -> new_esEs17(xuu98, xuu101, cfb, cfc) 25.38/9.10 new_lt23(xuu591, xuu601, ty_@0) -> new_lt5(xuu591, xuu601) 25.38/9.10 new_esEs35(xuu98, xuu101, ty_Integer) -> new_esEs23(xuu98, xuu101) 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Ordering, ccf) -> new_esEs19(xuu400000, xuu30000) 25.38/9.10 new_compare27(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Integer) -> new_compare9(new_sr0(xuu40000, xuu3001), new_sr0(xuu3000, xuu40001)) 25.38/9.10 new_esEs36(xuu400001, xuu30001, ty_Float) -> new_esEs20(xuu400001, xuu30001) 25.38/9.10 new_esEs25(Double(xuu400000, xuu400001), Double(xuu30000, xuu30001)) -> new_esEs16(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) 25.38/9.10 new_esEs35(xuu98, xuu101, ty_Char) -> new_esEs18(xuu98, xuu101) 25.38/9.10 new_ltEs4(xuu59, xuu60, ty_Float) -> new_ltEs17(xuu59, xuu60) 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_Ratio, ege)) -> new_ltEs11(xuu590, xuu600, ege) 25.38/9.10 new_primPlusNat1(Zero, Zero) -> Zero 25.38/9.10 new_ltEs4(xuu59, xuu60, ty_Integer) -> new_ltEs18(xuu59, xuu60) 25.38/9.10 new_primCompAux00(xuu34, xuu35, EQ, ty_Ordering) -> new_compare16(xuu34, xuu35) 25.38/9.10 new_primCompAux00(xuu34, xuu35, EQ, app(ty_Ratio, cgc)) -> new_compare27(xuu34, xuu35, cgc) 25.38/9.10 new_compare16(GT, GT) -> EQ 25.38/9.10 new_esEs32(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.10 new_compare0(xuu4000, xuu300, ty_Double) -> new_compare30(xuu4000, xuu300) 25.38/9.10 new_ltEs21(xuu66, xuu67, ty_Float) -> new_ltEs17(xuu66, xuu67) 25.38/9.10 new_lt9(xuu98, xuu101) -> new_esEs19(new_compare17(xuu98, xuu101), LT) 25.38/9.10 new_lt20(xuu98, xuu101, ty_@0) -> new_lt5(xuu98, xuu101) 25.38/9.10 new_esEs9(xuu40000, xuu3000, app(app(ty_@2, ddf), ddg)) -> new_esEs13(xuu40000, xuu3000, ddf, ddg) 25.38/9.10 new_esEs34(xuu99, xuu102, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs14(xuu99, xuu102, edd, ede, edf) 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Char, ccf) -> new_esEs18(xuu400000, xuu30000) 25.38/9.10 new_lt21(xuu99, xuu102, app(app(app(ty_@3, edd), ede), edf)) -> new_lt8(xuu99, xuu102, edd, ede, edf) 25.38/9.10 new_esEs15(False, True) -> False 25.38/9.10 new_esEs15(True, False) -> False 25.38/9.10 new_esEs31(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(app(ty_@2, cdh), cea)) -> new_esEs13(xuu400000, xuu30000, cdh, cea) 25.38/9.10 new_esEs34(xuu99, xuu102, ty_Bool) -> new_esEs15(xuu99, xuu102) 25.38/9.10 new_esEs10(xuu40001, xuu3001, app(app(app(ty_@3, dd), de), df)) -> new_esEs14(xuu40001, xuu3001, dd, de, df) 25.38/9.10 new_esEs35(xuu98, xuu101, ty_Ordering) -> new_esEs19(xuu98, xuu101) 25.38/9.10 new_lt4(xuu98, xuu101) -> new_esEs19(new_compare6(xuu98, xuu101), LT) 25.38/9.10 new_esEs11(xuu40000, xuu3000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs14(xuu40000, xuu3000, ef, eg, eh) 25.38/9.10 new_esEs37(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.10 new_esEs10(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) 25.38/9.10 new_primCmpNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primCmpNat0(xuu400000, xuu30000) 25.38/9.10 new_lt21(xuu99, xuu102, ty_@0) -> new_lt5(xuu99, xuu102) 25.38/9.10 new_esEs30(xuu111, xuu113, ty_Int) -> new_esEs16(xuu111, xuu113) 25.38/9.10 new_lt19(xuu111, xuu113, ty_Char) -> new_lt4(xuu111, xuu113) 25.38/9.10 new_esEs38(xuu591, xuu601, ty_Float) -> new_esEs20(xuu591, xuu601) 25.38/9.10 new_lt5(xuu98, xuu101) -> new_esEs19(new_compare8(xuu98, xuu101), LT) 25.38/9.10 new_lt23(xuu591, xuu601, ty_Float) -> new_lt17(xuu591, xuu601) 25.38/9.10 new_esEs37(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.10 new_lt22(xuu590, xuu600, ty_@0) -> new_lt5(xuu590, xuu600) 25.38/9.10 new_esEs37(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.10 new_esEs36(xuu400001, xuu30001, ty_@0) -> new_esEs22(xuu400001, xuu30001) 25.38/9.10 new_lt23(xuu591, xuu601, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_lt8(xuu591, xuu601, fdb, fdc, fdd) 25.38/9.10 new_esEs11(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.10 new_esEs36(xuu400001, xuu30001, app(app(ty_Either, ehh), faa)) -> new_esEs17(xuu400001, xuu30001, ehh, faa) 25.38/9.10 new_esEs28(xuu400001, xuu30001, ty_Double) -> new_esEs25(xuu400001, xuu30001) 25.38/9.10 new_esEs37(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.10 new_compare211(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, ece, ecf, ecg) -> new_compare112(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, new_lt20(xuu98, xuu101, ece), new_asAs(new_esEs35(xuu98, xuu101, ece), new_pePe(new_lt21(xuu99, xuu102, ecf), new_asAs(new_esEs34(xuu99, xuu102, ecf), new_ltEs23(xuu100, xuu103, ecg)))), ece, ecf, ecg) 25.38/9.10 new_ltEs20(xuu112, xuu114, app(ty_[], bgd)) -> new_ltEs5(xuu112, xuu114, bgd) 25.38/9.10 new_esEs36(xuu400001, xuu30001, ty_Char) -> new_esEs18(xuu400001, xuu30001) 25.38/9.10 new_compare110(xuu153, xuu154, True, eca) -> LT 25.38/9.10 new_compare14(xuu144, xuu145, False, dfa, dfb) -> GT 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.10 new_ltEs20(xuu112, xuu114, ty_Float) -> new_ltEs17(xuu112, xuu114) 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(ty_@2, ccd), cce), ccf) -> new_esEs13(xuu400000, xuu30000, ccd, cce) 25.38/9.10 new_compare15(Right(xuu40000), Left(xuu3000), daf, dag) -> GT 25.38/9.10 new_lt22(xuu590, xuu600, app(app(app(ty_@3, fbh), fca), fcb)) -> new_lt8(xuu590, xuu600, fbh, fca, fcb) 25.38/9.10 new_lt6(xuu590, xuu600, ty_@0) -> new_lt5(xuu590, xuu600) 25.38/9.10 new_lt6(xuu590, xuu600, ty_Integer) -> new_lt18(xuu590, xuu600) 25.38/9.10 new_esEs33(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.10 new_ltEs13(Nothing, Just(xuu600), gh) -> True 25.38/9.10 new_lt7(xuu98, xuu101, cgg) -> new_esEs19(new_compare18(xuu98, xuu101, cgg), LT) 25.38/9.10 new_lt21(xuu99, xuu102, ty_Integer) -> new_lt18(xuu99, xuu102) 25.38/9.10 new_esEs36(xuu400001, xuu30001, ty_Ordering) -> new_esEs19(xuu400001, xuu30001) 25.38/9.10 new_esEs28(xuu400001, xuu30001, app(ty_Ratio, bec)) -> new_esEs21(xuu400001, xuu30001, bec) 25.38/9.10 new_compare16(LT, EQ) -> LT 25.38/9.10 new_ltEs19(xuu591, xuu601, ty_Float) -> new_ltEs17(xuu591, xuu601) 25.38/9.10 new_esEs33(xuu400000, xuu30000, app(app(app(ty_@3, eag), eah), eba)) -> new_esEs14(xuu400000, xuu30000, eag, eah, eba) 25.38/9.10 new_esEs6(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.10 new_ltEs24(xuu592, xuu602, ty_Char) -> new_ltEs10(xuu592, xuu602) 25.38/9.10 new_primCmpInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> LT 25.38/9.10 new_lt22(xuu590, xuu600, app(ty_Maybe, fcf)) -> new_lt13(xuu590, xuu600, fcf) 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Bool, ccf) -> new_esEs15(xuu400000, xuu30000) 25.38/9.10 new_esEs37(xuu400000, xuu30000, app(ty_Maybe, fbe)) -> new_esEs12(xuu400000, xuu30000, fbe) 25.38/9.10 new_esEs34(xuu99, xuu102, ty_Char) -> new_esEs18(xuu99, xuu102) 25.38/9.10 new_ltEs7(xuu59, xuu60) -> new_fsEs(new_compare17(xuu59, xuu60)) 25.38/9.10 new_compare30(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.10 new_esEs9(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_Maybe, egf)) -> new_ltEs13(xuu590, xuu600, egf) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_Ratio, dgf), gf) -> new_ltEs11(xuu590, xuu600, dgf) 25.38/9.10 new_ltEs20(xuu112, xuu114, ty_Integer) -> new_ltEs18(xuu112, xuu114) 25.38/9.10 new_compare14(xuu144, xuu145, True, dfa, dfb) -> LT 25.38/9.10 new_esEs37(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.10 new_lt23(xuu591, xuu601, ty_Integer) -> new_lt18(xuu591, xuu601) 25.38/9.10 new_primCmpInt(Pos(Zero), Neg(Succ(xuu30000))) -> GT 25.38/9.10 new_esEs4(xuu40002, xuu3002, ty_Bool) -> new_esEs15(xuu40002, xuu3002) 25.38/9.10 new_lt19(xuu111, xuu113, app(app(ty_Either, cab), cac)) -> new_lt10(xuu111, xuu113, cab, cac) 25.38/9.10 new_compare18([], :(xuu3000, xuu3001), ddd) -> LT 25.38/9.10 new_ltEs19(xuu591, xuu601, app(ty_[], bae)) -> new_ltEs5(xuu591, xuu601, bae) 25.38/9.10 new_ltEs22(xuu73, xuu74, app(ty_Ratio, chg)) -> new_ltEs11(xuu73, xuu74, chg) 25.38/9.10 new_primCmpInt(Neg(Succ(xuu400000)), Neg(xuu3000)) -> new_primCmpNat0(xuu3000, Succ(xuu400000)) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.10 new_lt21(xuu99, xuu102, ty_Char) -> new_lt4(xuu99, xuu102) 25.38/9.10 new_esEs4(xuu40002, xuu3002, app(app(ty_@2, ffe), fff)) -> new_esEs13(xuu40002, xuu3002, ffe, fff) 25.38/9.10 new_esEs27(xuu400002, xuu30002, ty_Double) -> new_esEs25(xuu400002, xuu30002) 25.38/9.10 new_compare12(xuu185, xuu186, xuu187, xuu188, True, bfh, bga) -> LT 25.38/9.10 new_esEs10(xuu40001, xuu3001, app(app(ty_@2, db), dc)) -> new_esEs13(xuu40001, xuu3001, db, dc) 25.38/9.10 new_esEs9(xuu40000, xuu3000, app(ty_Ratio, dee)) -> new_esEs21(xuu40000, xuu3000, dee) 25.38/9.10 new_esEs27(xuu400002, xuu30002, app(ty_Maybe, bdb)) -> new_esEs12(xuu400002, xuu30002, bdb) 25.38/9.10 new_ltEs22(xuu73, xuu74, app(app(ty_@2, daa), dab)) -> new_ltEs14(xuu73, xuu74, daa, dab) 25.38/9.10 new_esEs8(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.10 new_esEs15(False, False) -> True 25.38/9.10 new_ltEs20(xuu112, xuu114, ty_Bool) -> new_ltEs12(xuu112, xuu114) 25.38/9.10 new_esEs33(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.10 new_primEqInt(Pos(Succ(xuu4000000)), Pos(Zero)) -> False 25.38/9.10 new_primEqInt(Pos(Zero), Pos(Succ(xuu300000))) -> False 25.38/9.10 new_lt6(xuu590, xuu600, app(app(app(ty_@3, hd), he), hf)) -> new_lt8(xuu590, xuu600, hd, he, hf) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Ordering) -> new_ltEs16(xuu590, xuu600) 25.38/9.10 new_esEs29(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Integer, ccf) -> new_esEs23(xuu400000, xuu30000) 25.38/9.10 new_ltEs20(xuu112, xuu114, app(app(ty_Either, bgh), bha)) -> new_ltEs8(xuu112, xuu114, bgh, bha) 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.10 new_ltEs23(xuu100, xuu103, ty_Float) -> new_ltEs17(xuu100, xuu103) 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), ty_Char) -> new_ltEs10(xuu590, xuu600) 25.38/9.10 new_esEs39(xuu590, xuu600, ty_Char) -> new_esEs18(xuu590, xuu600) 25.38/9.10 new_primCmpNat0(Zero, Zero) -> EQ 25.38/9.10 new_esEs10(xuu40001, xuu3001, app(app(ty_Either, dg), dh)) -> new_esEs17(xuu40001, xuu3001, dg, dh) 25.38/9.10 new_lt6(xuu590, xuu600, ty_Int) -> new_lt9(xuu590, xuu600) 25.38/9.10 new_ltEs16(GT, EQ) -> False 25.38/9.10 new_primCompAux00(xuu34, xuu35, EQ, app(ty_Maybe, cgd)) -> new_compare29(xuu34, xuu35, cgd) 25.38/9.10 new_lt23(xuu591, xuu601, app(ty_[], fda)) -> new_lt7(xuu591, xuu601, fda) 25.38/9.10 new_lt20(xuu98, xuu101, ty_Ordering) -> new_lt16(xuu98, xuu101) 25.38/9.10 new_esEs4(xuu40002, xuu3002, app(ty_[], fgf)) -> new_esEs24(xuu40002, xuu3002, fgf) 25.38/9.10 new_ltEs20(xuu112, xuu114, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs6(xuu112, xuu114, bge, bgf, bgg) 25.38/9.10 new_esEs35(xuu98, xuu101, ty_Bool) -> new_esEs15(xuu98, xuu101) 25.38/9.10 new_lt11(xuu98, xuu101, ech) -> new_esEs19(new_compare27(xuu98, xuu101, ech), LT) 25.38/9.10 new_esEs27(xuu400002, xuu30002, ty_Ordering) -> new_esEs19(xuu400002, xuu30002) 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), ty_Double) -> new_ltEs15(xuu590, xuu600) 25.38/9.10 new_esEs37(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.10 new_compare13(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.10 new_esEs29(xuu400000, xuu30000, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs14(xuu400000, xuu30000, beh, bfa, bfb) 25.38/9.10 new_ltEs22(xuu73, xuu74, ty_Int) -> new_ltEs7(xuu73, xuu74) 25.38/9.10 new_lt12(xuu98, xuu101) -> new_esEs19(new_compare28(xuu98, xuu101), LT) 25.38/9.10 new_lt22(xuu590, xuu600, ty_Double) -> new_lt15(xuu590, xuu600) 25.38/9.10 new_compare11(xuu185, xuu186, xuu187, xuu188, True, xuu190, bfh, bga) -> new_compare12(xuu185, xuu186, xuu187, xuu188, True, bfh, bga) 25.38/9.10 new_esEs4(xuu40002, xuu3002, app(app(ty_Either, fgb), fgc)) -> new_esEs17(xuu40002, xuu3002, fgb, fgc) 25.38/9.10 new_esEs27(xuu400002, xuu30002, ty_Int) -> new_esEs16(xuu400002, xuu30002) 25.38/9.10 new_ltEs24(xuu592, xuu602, ty_Double) -> new_ltEs15(xuu592, xuu602) 25.38/9.10 new_esEs36(xuu400001, xuu30001, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs14(xuu400001, xuu30001, ehe, ehf, ehg) 25.38/9.10 new_ltEs16(LT, LT) -> True 25.38/9.10 new_lt23(xuu591, xuu601, ty_Bool) -> new_lt12(xuu591, xuu601) 25.38/9.10 new_compare16(LT, GT) -> LT 25.38/9.10 new_esEs23(Integer(xuu400000), Integer(xuu30000)) -> new_primEqInt(xuu400000, xuu30000) 25.38/9.10 new_esEs37(xuu400000, xuu30000, app(ty_Ratio, fbd)) -> new_esEs21(xuu400000, xuu30000, fbd) 25.38/9.10 new_esEs39(xuu590, xuu600, ty_@0) -> new_esEs22(xuu590, xuu600) 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), ty_@0) -> new_ltEs9(xuu590, xuu600) 25.38/9.10 new_esEs9(xuu40000, xuu3000, app(ty_[], deg)) -> new_esEs24(xuu40000, xuu3000, deg) 25.38/9.10 new_lt21(xuu99, xuu102, ty_Float) -> new_lt17(xuu99, xuu102) 25.38/9.10 new_esEs9(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.10 new_compare25(xuu59, xuu60, False, fg, fh) -> new_compare10(xuu59, xuu60, new_ltEs4(xuu59, xuu60, fg), fg, fh) 25.38/9.10 new_esEs4(xuu40002, xuu3002, ty_Integer) -> new_esEs23(xuu40002, xuu3002) 25.38/9.10 new_esEs9(xuu40000, xuu3000, app(app(ty_Either, dec), ded)) -> new_esEs17(xuu40000, xuu3000, dec, ded) 25.38/9.10 new_esEs11(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.10 new_esEs5(xuu40001, xuu3001, ty_Float) -> new_esEs20(xuu40001, xuu3001) 25.38/9.10 new_esEs9(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.10 new_esEs10(xuu40001, xuu3001, app(ty_Ratio, ea)) -> new_esEs21(xuu40001, xuu3001, ea) 25.38/9.10 new_primCmpNat0(Succ(xuu400000), Zero) -> GT 25.38/9.10 new_pePe(False, xuu206) -> xuu206 25.38/9.10 new_esEs39(xuu590, xuu600, app(app(app(ty_@3, fbh), fca), fcb)) -> new_esEs14(xuu590, xuu600, fbh, fca, fcb) 25.38/9.10 new_esEs11(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.10 new_lt13(xuu98, xuu101, dfc) -> new_esEs19(new_compare29(xuu98, xuu101, dfc), LT) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.10 new_esEs8(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.10 new_compare25(xuu59, xuu60, True, fg, fh) -> EQ 25.38/9.10 new_ltEs22(xuu73, xuu74, ty_Double) -> new_ltEs15(xuu73, xuu74) 25.38/9.10 new_esEs10(xuu40001, xuu3001, app(ty_[], ec)) -> new_esEs24(xuu40001, xuu3001, ec) 25.38/9.10 new_compare210(xuu73, xuu74, True, cgh) -> EQ 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Integer) -> new_ltEs18(xuu590, xuu600) 25.38/9.10 new_esEs4(xuu40002, xuu3002, ty_Ordering) -> new_esEs19(xuu40002, xuu3002) 25.38/9.10 new_ltEs16(LT, GT) -> True 25.38/9.10 new_esEs30(xuu111, xuu113, app(app(ty_@2, caf), cag)) -> new_esEs13(xuu111, xuu113, caf, cag) 25.38/9.10 new_esEs5(xuu40001, xuu3001, ty_@0) -> new_esEs22(xuu40001, xuu3001) 25.38/9.10 new_compare0(xuu4000, xuu300, ty_Ordering) -> new_compare16(xuu4000, xuu300) 25.38/9.10 new_esEs30(xuu111, xuu113, app(app(ty_Either, cab), cac)) -> new_esEs17(xuu111, xuu113, cab, cac) 25.38/9.10 new_esEs6(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.10 new_ltEs16(LT, EQ) -> True 25.38/9.10 new_ltEs16(EQ, LT) -> False 25.38/9.10 new_lt6(xuu590, xuu600, app(ty_Maybe, bab)) -> new_lt13(xuu590, xuu600, bab) 25.38/9.10 new_esEs35(xuu98, xuu101, app(ty_Ratio, ech)) -> new_esEs21(xuu98, xuu101, ech) 25.38/9.10 new_esEs30(xuu111, xuu113, ty_Bool) -> new_esEs15(xuu111, xuu113) 25.38/9.10 new_lt14(xuu98, xuu101, eda, edb) -> new_esEs19(new_compare7(xuu98, xuu101, eda, edb), LT) 25.38/9.10 new_primEqInt(Pos(Zero), Neg(Succ(xuu300000))) -> False 25.38/9.10 new_primEqInt(Neg(Zero), Pos(Succ(xuu300000))) -> False 25.38/9.10 new_ltEs16(GT, LT) -> False 25.38/9.10 new_esEs7(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.10 new_esEs34(xuu99, xuu102, ty_Int) -> new_esEs16(xuu99, xuu102) 25.38/9.10 new_compare16(EQ, EQ) -> EQ 25.38/9.10 new_esEs10(xuu40001, xuu3001, ty_Integer) -> new_esEs23(xuu40001, xuu3001) 25.38/9.10 new_ltEs17(xuu59, xuu60) -> new_fsEs(new_compare13(xuu59, xuu60)) 25.38/9.10 new_esEs29(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.10 new_ltEs22(xuu73, xuu74, ty_@0) -> new_ltEs9(xuu73, xuu74) 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Int, ccf) -> new_esEs16(xuu400000, xuu30000) 25.38/9.10 new_esEs37(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.10 new_esEs30(xuu111, xuu113, ty_Integer) -> new_esEs23(xuu111, xuu113) 25.38/9.10 new_esEs5(xuu40001, xuu3001, app(app(app(ty_@3, fha), fhb), fhc)) -> new_esEs14(xuu40001, xuu3001, fha, fhb, fhc) 25.38/9.10 new_ltEs24(xuu592, xuu602, app(ty_[], fec)) -> new_ltEs5(xuu592, xuu602, fec) 25.38/9.10 new_lt19(xuu111, xuu113, ty_Float) -> new_lt17(xuu111, xuu113) 25.38/9.10 new_esEs24(:(xuu400000, xuu400001), [], ead) -> False 25.38/9.10 new_esEs24([], :(xuu30000, xuu30001), ead) -> False 25.38/9.10 new_compare24(xuu111, xuu112, xuu113, xuu114, False, bgb, bgc) -> new_compare11(xuu111, xuu112, xuu113, xuu114, new_lt19(xuu111, xuu113, bgb), new_asAs(new_esEs30(xuu111, xuu113, bgb), new_ltEs20(xuu112, xuu114, bgc)), bgb, bgc) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_ltEs6(xuu590, xuu600, dhc, dhd, dhe) 25.38/9.10 new_compare26(xuu66, xuu67, False, cah, cba) -> new_compare14(xuu66, xuu67, new_ltEs21(xuu66, xuu67, cba), cah, cba) 25.38/9.10 new_compare0(xuu4000, xuu300, app(ty_Ratio, dfg)) -> new_compare27(xuu4000, xuu300, dfg) 25.38/9.10 new_esEs16(xuu40000, xuu3000) -> new_primEqInt(xuu40000, xuu3000) 25.38/9.10 new_esEs19(EQ, EQ) -> True 25.38/9.10 new_esEs7(xuu40000, xuu3000, app(app(ty_Either, dbe), dbf)) -> new_esEs17(xuu40000, xuu3000, dbe, dbf) 25.38/9.10 new_lt20(xuu98, xuu101, ty_Bool) -> new_lt12(xuu98, xuu101) 25.38/9.10 new_ltEs16(EQ, GT) -> True 25.38/9.10 new_esEs20(Float(xuu400000, xuu400001), Float(xuu30000, xuu30001)) -> new_esEs16(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) 25.38/9.10 new_esEs30(xuu111, xuu113, app(ty_[], bhf)) -> new_esEs24(xuu111, xuu113, bhf) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(app(ty_Either, dhf), dhg)) -> new_ltEs8(xuu590, xuu600, dhf, dhg) 25.38/9.10 new_ltEs16(EQ, EQ) -> True 25.38/9.10 new_esEs27(xuu400002, xuu30002, ty_Bool) -> new_esEs15(xuu400002, xuu30002) 25.38/9.10 new_esEs32(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.10 new_lt21(xuu99, xuu102, app(app(ty_Either, edg), edh)) -> new_lt10(xuu99, xuu102, edg, edh) 25.38/9.10 new_compare28(True, False) -> GT 25.38/9.10 new_esEs6(xuu40000, xuu3000, app(app(ty_Either, cdg), ccf)) -> new_esEs17(xuu40000, xuu3000, cdg, ccf) 25.38/9.10 new_esEs26(xuu590, xuu600, app(app(app(ty_@3, hd), he), hf)) -> new_esEs14(xuu590, xuu600, hd, he, hf) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), ty_Bool, gf) -> new_ltEs12(xuu590, xuu600) 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs14(xuu400000, xuu30000, bg, bh, ca) 25.38/9.10 new_esEs28(xuu400001, xuu30001, app(app(ty_@2, bdd), bde)) -> new_esEs13(xuu400001, xuu30001, bdd, bde) 25.38/9.10 new_lt21(xuu99, xuu102, ty_Bool) -> new_lt12(xuu99, xuu102) 25.38/9.10 new_esEs28(xuu400001, xuu30001, ty_Bool) -> new_esEs15(xuu400001, xuu30001) 25.38/9.10 new_esEs6(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.10 new_lt8(xuu98, xuu101, ecb, ecc, ecd) -> new_esEs19(new_compare19(xuu98, xuu101, ecb, ecc, ecd), LT) 25.38/9.10 new_ltEs23(xuu100, xuu103, ty_Integer) -> new_ltEs18(xuu100, xuu103) 25.38/9.10 new_primCompAux00(xuu34, xuu35, EQ, ty_Integer) -> new_compare9(xuu34, xuu35) 25.38/9.10 new_ltEs20(xuu112, xuu114, app(app(ty_@2, bhd), bhe)) -> new_ltEs14(xuu112, xuu114, bhd, bhe) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.10 new_ltEs20(xuu112, xuu114, ty_Ordering) -> new_ltEs16(xuu112, xuu114) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Int) -> new_ltEs7(xuu590, xuu600) 25.38/9.10 new_esEs7(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.10 new_esEs6(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.10 new_lt23(xuu591, xuu601, ty_Ordering) -> new_lt16(xuu591, xuu601) 25.38/9.10 new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, dac, dad, dae) -> LT 25.38/9.10 new_primMulInt(Neg(xuu30000), Neg(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.10 new_primCmpInt(Pos(Zero), Pos(Succ(xuu30000))) -> new_primCmpNat0(Zero, Succ(xuu30000)) 25.38/9.10 new_ltEs22(xuu73, xuu74, ty_Integer) -> new_ltEs18(xuu73, xuu74) 25.38/9.10 new_esEs9(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.10 new_esEs34(xuu99, xuu102, ty_Double) -> new_esEs25(xuu99, xuu102) 25.38/9.10 new_fsEs(xuu207) -> new_not(new_esEs19(xuu207, GT)) 25.38/9.10 new_compare210(xuu73, xuu74, False, cgh) -> new_compare110(xuu73, xuu74, new_ltEs22(xuu73, xuu74, cgh), cgh) 25.38/9.10 new_esEs34(xuu99, xuu102, app(ty_Ratio, eea)) -> new_esEs21(xuu99, xuu102, eea) 25.38/9.10 new_esEs6(xuu40000, xuu3000, app(ty_[], ead)) -> new_esEs24(xuu40000, xuu3000, ead) 25.38/9.10 new_compare0(xuu4000, xuu300, ty_Integer) -> new_compare9(xuu4000, xuu300) 25.38/9.10 new_primMulInt(Pos(xuu30000), Neg(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.10 new_primMulInt(Neg(xuu30000), Pos(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.10 new_esEs34(xuu99, xuu102, app(ty_[], edc)) -> new_esEs24(xuu99, xuu102, edc) 25.38/9.10 new_ltEs21(xuu66, xuu67, app(ty_Maybe, cca)) -> new_ltEs13(xuu66, xuu67, cca) 25.38/9.10 new_primCompAux00(xuu34, xuu35, EQ, app(ty_[], cfe)) -> new_compare18(xuu34, xuu35, cfe) 25.38/9.10 new_esEs8(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.10 new_esEs28(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.38/9.10 new_esEs8(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.10 new_lt15(xuu98, xuu101) -> new_esEs19(new_compare30(xuu98, xuu101), LT) 25.38/9.10 new_esEs27(xuu400002, xuu30002, ty_@0) -> new_esEs22(xuu400002, xuu30002) 25.38/9.10 new_ltEs23(xuu100, xuu103, ty_Ordering) -> new_ltEs16(xuu100, xuu103) 25.38/9.10 new_ltEs22(xuu73, xuu74, app(app(ty_Either, che), chf)) -> new_ltEs8(xuu73, xuu74, che, chf) 25.38/9.10 new_sr0(Integer(xuu30000), Integer(xuu400010)) -> Integer(new_primMulInt(xuu30000, xuu400010)) 25.38/9.10 new_lt20(xuu98, xuu101, app(ty_[], cgg)) -> new_lt7(xuu98, xuu101, cgg) 25.38/9.10 new_esEs30(xuu111, xuu113, ty_Ordering) -> new_esEs19(xuu111, xuu113) 25.38/9.10 new_lt6(xuu590, xuu600, app(app(ty_Either, hg), hh)) -> new_lt10(xuu590, xuu600, hg, hh) 25.38/9.10 new_esEs35(xuu98, xuu101, ty_Double) -> new_esEs25(xuu98, xuu101) 25.38/9.10 new_esEs38(xuu591, xuu601, app(app(ty_@2, fea), feb)) -> new_esEs13(xuu591, xuu601, fea, feb) 25.38/9.10 new_esEs8(xuu40000, xuu3000, app(ty_Maybe, ddb)) -> new_esEs12(xuu40000, xuu3000, ddb) 25.38/9.10 new_asAs(True, xuu132) -> xuu132 25.38/9.10 new_ltEs23(xuu100, xuu103, app(app(app(ty_@3, eef), eeg), eeh)) -> new_ltEs6(xuu100, xuu103, eef, eeg, eeh) 25.38/9.10 new_esEs22(@0, @0) -> True 25.38/9.10 new_compare30(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.10 new_compare30(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.10 new_lt6(xuu590, xuu600, app(ty_Ratio, baa)) -> new_lt11(xuu590, xuu600, baa) 25.38/9.10 new_lt19(xuu111, xuu113, app(ty_[], bhf)) -> new_lt7(xuu111, xuu113, bhf) 25.38/9.10 new_lt6(xuu590, xuu600, app(app(ty_@2, bac), bad)) -> new_lt14(xuu590, xuu600, bac, bad) 25.38/9.10 new_esEs26(xuu590, xuu600, ty_Char) -> new_esEs18(xuu590, xuu600) 25.38/9.10 new_ltEs19(xuu591, xuu601, ty_Double) -> new_ltEs15(xuu591, xuu601) 25.38/9.10 new_esEs29(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), ty_Int, gf) -> new_ltEs7(xuu590, xuu600) 25.38/9.10 new_ltEs20(xuu112, xuu114, app(ty_Ratio, bhb)) -> new_ltEs11(xuu112, xuu114, bhb) 25.38/9.10 new_compare211(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, True, ece, ecf, ecg) -> EQ 25.38/9.10 new_compare12(xuu185, xuu186, xuu187, xuu188, False, bfh, bga) -> GT 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Double, ccf) -> new_esEs25(xuu400000, xuu30000) 25.38/9.10 new_esEs33(xuu400000, xuu30000, app(app(ty_@2, eae), eaf)) -> new_esEs13(xuu400000, xuu30000, eae, eaf) 25.38/9.10 new_esEs8(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.10 new_ltEs22(xuu73, xuu74, ty_Char) -> new_ltEs10(xuu73, xuu74) 25.38/9.10 new_sr(xuu3000, xuu40001) -> new_primMulInt(xuu3000, xuu40001) 25.38/9.10 new_esEs39(xuu590, xuu600, app(ty_[], fbg)) -> new_esEs24(xuu590, xuu600, fbg) 25.38/9.10 new_ltEs16(GT, GT) -> True 25.38/9.10 new_esEs38(xuu591, xuu601, app(ty_Ratio, fdg)) -> new_esEs21(xuu591, xuu601, fdg) 25.38/9.10 new_esEs28(xuu400001, xuu30001, ty_Ordering) -> new_esEs19(xuu400001, xuu30001) 25.38/9.10 new_primMulNat0(Zero, Zero) -> Zero 25.38/9.10 new_esEs4(xuu40002, xuu3002, ty_Int) -> new_esEs16(xuu40002, xuu3002) 25.38/9.10 new_esEs7(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.10 new_esEs8(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.10 new_esEs27(xuu400002, xuu30002, app(app(ty_Either, bcg), bch)) -> new_esEs17(xuu400002, xuu30002, bcg, bch) 25.38/9.10 new_compare0(xuu4000, xuu300, app(app(app(ty_@3, dfd), dfe), dff)) -> new_compare19(xuu4000, xuu300, dfd, dfe, dff) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_@0) -> new_ltEs9(xuu590, xuu600) 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), ty_Ordering) -> new_ltEs16(xuu590, xuu600) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_[], dfh), gf) -> new_ltEs5(xuu590, xuu600, dfh) 25.38/9.10 new_esEs7(xuu40000, xuu3000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs14(xuu40000, xuu3000, dbb, dbc, dbd) 25.38/9.10 new_esEs38(xuu591, xuu601, app(ty_[], fda)) -> new_esEs24(xuu591, xuu601, fda) 25.38/9.10 new_esEs4(xuu40002, xuu3002, app(ty_Maybe, fge)) -> new_esEs12(xuu40002, xuu3002, fge) 25.38/9.10 new_ltEs19(xuu591, xuu601, app(ty_Maybe, bbd)) -> new_ltEs13(xuu591, xuu601, bbd) 25.38/9.10 new_ltEs4(xuu59, xuu60, ty_Bool) -> new_ltEs12(xuu59, xuu60) 25.38/9.10 new_esEs36(xuu400001, xuu30001, ty_Double) -> new_esEs25(xuu400001, xuu30001) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(ty_[], dhb)) -> new_ltEs5(xuu590, xuu600, dhb) 25.38/9.10 new_lt22(xuu590, xuu600, app(app(ty_Either, fcc), fcd)) -> new_lt10(xuu590, xuu600, fcc, fcd) 25.38/9.10 new_ltEs19(xuu591, xuu601, app(ty_Ratio, bbc)) -> new_ltEs11(xuu591, xuu601, bbc) 25.38/9.10 new_lt23(xuu591, xuu601, app(app(ty_@2, fea), feb)) -> new_lt14(xuu591, xuu601, fea, feb) 25.38/9.10 new_esEs28(xuu400001, xuu30001, app(app(ty_Either, bea), beb)) -> new_esEs17(xuu400001, xuu30001, bea, beb) 25.38/9.10 new_esEs30(xuu111, xuu113, ty_Float) -> new_esEs20(xuu111, xuu113) 25.38/9.10 new_lt16(xuu98, xuu101) -> new_esEs19(new_compare16(xuu98, xuu101), LT) 25.38/9.10 new_compare16(EQ, GT) -> LT 25.38/9.10 new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, False, dac, dad, dae) -> GT 25.38/9.10 new_esEs39(xuu590, xuu600, app(ty_Maybe, fcf)) -> new_esEs12(xuu590, xuu600, fcf) 25.38/9.10 new_lt23(xuu591, xuu601, app(app(ty_Either, fde), fdf)) -> new_lt10(xuu591, xuu601, fde, fdf) 25.38/9.10 new_ltEs4(xuu59, xuu60, ty_Char) -> new_ltEs10(xuu59, xuu60) 25.38/9.10 new_esEs28(xuu400001, xuu30001, ty_@0) -> new_esEs22(xuu400001, xuu30001) 25.38/9.10 new_primEqInt(Neg(Succ(xuu4000000)), Neg(Zero)) -> False 25.38/9.10 new_primEqInt(Neg(Zero), Neg(Succ(xuu300000))) -> False 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(ty_Maybe, ceh)) -> new_esEs12(xuu400000, xuu30000, ceh) 25.38/9.10 new_esEs29(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.10 new_primEqInt(Pos(Succ(xuu4000000)), Pos(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) 25.38/9.10 new_esEs21(:%(xuu400000, xuu400001), :%(xuu30000, xuu30001), deh) -> new_asAs(new_esEs32(xuu400000, xuu30000, deh), new_esEs31(xuu400001, xuu30001, deh)) 25.38/9.10 new_esEs39(xuu590, xuu600, ty_Int) -> new_esEs16(xuu590, xuu600) 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(ty_Either, cb), cc)) -> new_esEs17(xuu400000, xuu30000, cb, cc) 25.38/9.10 new_esEs6(xuu40000, xuu3000, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs14(xuu40000, xuu3000, bbg, bbh, bca) 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_[], efg)) -> new_ltEs5(xuu590, xuu600, efg) 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.10 new_lt22(xuu590, xuu600, app(app(ty_@2, fcg), fch)) -> new_lt14(xuu590, xuu600, fcg, fch) 25.38/9.10 new_esEs37(xuu400000, xuu30000, app(app(ty_@2, fae), faf)) -> new_esEs13(xuu400000, xuu30000, fae, faf) 25.38/9.10 new_ltEs4(xuu59, xuu60, ty_Double) -> new_ltEs15(xuu59, xuu60) 25.38/9.10 new_esEs33(xuu400000, xuu30000, app(ty_[], ebf)) -> new_esEs24(xuu400000, xuu30000, ebf) 25.38/9.10 new_primEqInt(Pos(Succ(xuu4000000)), Neg(xuu30000)) -> False 25.38/9.10 new_primEqInt(Neg(Succ(xuu4000000)), Pos(xuu30000)) -> False 25.38/9.10 new_esEs6(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.10 new_esEs9(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.10 new_primCmpInt(Neg(Zero), Neg(Succ(xuu30000))) -> new_primCmpNat0(Succ(xuu30000), Zero) 25.38/9.10 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.10 new_esEs7(xuu40000, xuu3000, app(ty_Ratio, dbg)) -> new_esEs21(xuu40000, xuu3000, dbg) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Char) -> new_ltEs10(xuu590, xuu600) 25.38/9.10 new_compare0(xuu4000, xuu300, ty_@0) -> new_compare8(xuu4000, xuu300) 25.38/9.10 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.38/9.10 new_ltEs22(xuu73, xuu74, ty_Ordering) -> new_ltEs16(xuu73, xuu74) 25.38/9.10 new_lt23(xuu591, xuu601, app(ty_Ratio, fdg)) -> new_lt11(xuu591, xuu601, fdg) 25.38/9.10 new_compare19(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), dfd, dfe, dff) -> new_compare211(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs6(xuu40000, xuu3000, dfd), new_asAs(new_esEs5(xuu40001, xuu3001, dfe), new_esEs4(xuu40002, xuu3002, dff))), dfd, dfe, dff) 25.38/9.10 new_esEs27(xuu400002, xuu30002, ty_Char) -> new_esEs18(xuu400002, xuu30002) 25.38/9.10 new_ltEs23(xuu100, xuu103, ty_Bool) -> new_ltEs12(xuu100, xuu103) 25.38/9.10 new_primCompAux00(xuu34, xuu35, LT, cfd) -> LT 25.38/9.10 new_esEs26(xuu590, xuu600, ty_@0) -> new_esEs22(xuu590, xuu600) 25.38/9.10 new_esEs6(xuu40000, xuu3000, app(ty_Ratio, deh)) -> new_esEs21(xuu40000, xuu3000, deh) 25.38/9.10 new_esEs5(xuu40001, xuu3001, ty_Double) -> new_esEs25(xuu40001, xuu3001) 25.38/9.10 new_ltEs23(xuu100, xuu103, ty_Char) -> new_ltEs10(xuu100, xuu103) 25.38/9.10 new_primPlusNat0(xuu219, xuu4000100) -> new_primPlusNat1(xuu219, Succ(xuu4000100)) 25.38/9.10 new_not(False) -> True 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), ty_Float) -> new_ltEs17(xuu590, xuu600) 25.38/9.10 new_ltEs24(xuu592, xuu602, ty_@0) -> new_ltEs9(xuu592, xuu602) 25.38/9.10 new_esEs9(xuu40000, xuu3000, app(ty_Maybe, def)) -> new_esEs12(xuu40000, xuu3000, def) 25.38/9.10 new_esEs35(xuu98, xuu101, app(ty_[], cgg)) -> new_esEs24(xuu98, xuu101, cgg) 25.38/9.10 new_ltEs24(xuu592, xuu602, app(app(app(ty_@3, fed), fee), fef)) -> new_ltEs6(xuu592, xuu602, fed, fee, fef) 25.38/9.10 new_ltEs21(xuu66, xuu67, ty_Bool) -> new_ltEs12(xuu66, xuu67) 25.38/9.10 new_compare0(xuu4000, xuu300, app(ty_Maybe, dde)) -> new_compare29(xuu4000, xuu300, dde) 25.38/9.10 new_ltEs13(Just(xuu590), Just(xuu600), ty_Integer) -> new_ltEs18(xuu590, xuu600) 25.38/9.10 new_esEs27(xuu400002, xuu30002, ty_Integer) -> new_esEs23(xuu400002, xuu30002) 25.38/9.10 new_esEs7(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.10 new_ltEs24(xuu592, xuu602, ty_Ordering) -> new_ltEs16(xuu592, xuu602) 25.38/9.10 new_esEs28(xuu400001, xuu30001, ty_Float) -> new_esEs20(xuu400001, xuu30001) 25.38/9.10 new_compare112(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, False, xuu177, dac, dad, dae) -> new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, xuu177, dac, dad, dae) 25.38/9.10 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Bool) -> new_ltEs12(xuu590, xuu600) 25.38/9.10 new_esEs37(xuu400000, xuu30000, app(ty_[], fbf)) -> new_esEs24(xuu400000, xuu30000, fbf) 25.38/9.10 new_compare29(Nothing, Nothing, dde) -> EQ 25.38/9.10 new_ltEs23(xuu100, xuu103, app(app(ty_Either, efa), efb)) -> new_ltEs8(xuu100, xuu103, efa, efb) 25.38/9.10 new_ltEs19(xuu591, xuu601, ty_Int) -> new_ltEs7(xuu591, xuu601) 25.38/9.10 new_lt22(xuu590, xuu600, app(ty_Ratio, fce)) -> new_lt11(xuu590, xuu600, fce) 25.38/9.10 new_ltEs19(xuu591, xuu601, ty_Char) -> new_ltEs10(xuu591, xuu601) 25.38/9.10 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(ty_Either, cdb), cdc), ccf) -> new_esEs17(xuu400000, xuu30000, cdb, cdc) 25.38/9.10 new_lt6(xuu590, xuu600, ty_Double) -> new_lt15(xuu590, xuu600) 25.38/9.10 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.38/9.10 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.38/9.10 new_lt21(xuu99, xuu102, ty_Double) -> new_lt15(xuu99, xuu102) 25.38/9.10 new_esEs26(xuu590, xuu600, app(app(ty_Either, hg), hh)) -> new_esEs17(xuu590, xuu600, hg, hh) 25.38/9.10 new_ltEs20(xuu112, xuu114, ty_Int) -> new_ltEs7(xuu112, xuu114) 25.38/9.10 new_ltEs22(xuu73, xuu74, app(ty_Maybe, chh)) -> new_ltEs13(xuu73, xuu74, chh) 25.38/9.10 new_esEs5(xuu40001, xuu3001, ty_Int) -> new_esEs16(xuu40001, xuu3001) 25.38/9.10 new_lt6(xuu590, xuu600, app(ty_[], hc)) -> new_lt7(xuu590, xuu600, hc) 25.38/9.10 new_ltEs21(xuu66, xuu67, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs6(xuu66, xuu67, cbc, cbd, cbe) 25.38/9.10 new_lt20(xuu98, xuu101, app(ty_Ratio, ech)) -> new_lt11(xuu98, xuu101, ech) 25.38/9.10 new_ltEs8(Left(xuu590), Left(xuu600), app(app(app(ty_@3, dga), dgb), dgc), gf) -> new_ltEs6(xuu590, xuu600, dga, dgb, dgc) 25.38/9.10 new_compare0(xuu4000, xuu300, ty_Bool) -> new_compare28(xuu4000, xuu300) 25.38/9.10 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.38/9.10 new_primMulNat0(Succ(xuu300000), Succ(xuu4000100)) -> new_primPlusNat0(new_primMulNat0(xuu300000, Succ(xuu4000100)), xuu4000100) 25.38/9.10 new_compare112(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, xuu177, dac, dad, dae) -> new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, dac, dad, dae) 25.38/9.10 new_esEs38(xuu591, xuu601, ty_Double) -> new_esEs25(xuu591, xuu601) 25.38/9.10 new_esEs6(xuu40000, xuu3000, app(ty_Maybe, bd)) -> new_esEs12(xuu40000, xuu3000, bd) 25.38/9.10 new_esEs19(EQ, GT) -> False 25.38/9.10 new_esEs19(GT, EQ) -> False 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.10 new_esEs19(GT, GT) -> True 25.38/9.10 new_esEs11(xuu40000, xuu3000, app(app(ty_@2, ed), ee)) -> new_esEs13(xuu40000, xuu3000, ed, ee) 25.38/9.10 new_lt20(xuu98, xuu101, app(app(ty_@2, eda), edb)) -> new_lt14(xuu98, xuu101, eda, edb) 25.38/9.10 new_esEs8(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.10 new_esEs39(xuu590, xuu600, app(ty_Ratio, fce)) -> new_esEs21(xuu590, xuu600, fce) 25.38/9.10 new_compare6(Char(xuu40000), Char(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) 25.38/9.10 new_ltEs20(xuu112, xuu114, ty_Char) -> new_ltEs10(xuu112, xuu114) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(app(ty_Either, cee), cef)) -> new_esEs17(xuu400000, xuu30000, cee, cef) 25.38/9.10 new_lt10(xuu98, xuu101, cfb, cfc) -> new_esEs19(new_compare15(xuu98, xuu101, cfb, cfc), LT) 25.38/9.10 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.38/9.10 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.38/9.10 new_compare8(@0, @0) -> EQ 25.38/9.10 new_esEs35(xuu98, xuu101, app(app(ty_@2, eda), edb)) -> new_esEs13(xuu98, xuu101, eda, edb) 25.38/9.10 new_ltEs24(xuu592, xuu602, app(ty_Maybe, ffb)) -> new_ltEs13(xuu592, xuu602, ffb) 25.38/9.10 new_lt21(xuu99, xuu102, app(ty_Ratio, eea)) -> new_lt11(xuu99, xuu102, eea) 25.38/9.10 new_esEs8(xuu40000, xuu3000, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs14(xuu40000, xuu3000, dcd, dce, dcf) 25.38/9.10 new_compare18([], [], ddd) -> EQ 25.38/9.10 new_primEqNat0(Zero, Zero) -> True 25.38/9.10 new_lt19(xuu111, xuu113, ty_Double) -> new_lt15(xuu111, xuu113) 25.38/9.10 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs14(xuu400000, xuu30000, ceb, cec, ced) 25.38/9.10 new_esEs9(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.10 new_esEs9(xuu40000, xuu3000, app(app(app(ty_@3, ddh), dea), deb)) -> new_esEs14(xuu40000, xuu3000, ddh, dea, deb) 25.38/9.10 new_lt21(xuu99, xuu102, app(ty_[], edc)) -> new_lt7(xuu99, xuu102, edc) 25.38/9.10 new_esEs34(xuu99, xuu102, app(app(ty_@2, eec), eed)) -> new_esEs13(xuu99, xuu102, eec, eed) 25.38/9.10 new_esEs6(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.10 new_esEs4(xuu40002, xuu3002, app(ty_Ratio, fgd)) -> new_esEs21(xuu40002, xuu3002, fgd) 25.38/9.10 new_ltEs23(xuu100, xuu103, app(ty_Maybe, efd)) -> new_ltEs13(xuu100, xuu103, efd) 25.38/9.10 new_asAs(False, xuu132) -> False 25.38/9.10 new_ltEs21(xuu66, xuu67, ty_Char) -> new_ltEs10(xuu66, xuu67) 25.38/9.10 new_compare29(Just(xuu40000), Just(xuu3000), dde) -> new_compare210(xuu40000, xuu3000, new_esEs9(xuu40000, xuu3000, dde), dde) 25.38/9.10 new_ltEs22(xuu73, xuu74, ty_Bool) -> new_ltEs12(xuu73, xuu74) 25.38/9.10 new_esEs39(xuu590, xuu600, ty_Double) -> new_esEs25(xuu590, xuu600) 25.38/9.10 new_ltEs22(xuu73, xuu74, app(app(app(ty_@3, chb), chc), chd)) -> new_ltEs6(xuu73, xuu74, chb, chc, chd) 25.38/9.10 new_esEs36(xuu400001, xuu30001, app(ty_[], fad)) -> new_esEs24(xuu400001, xuu30001, fad) 25.38/9.10 new_compare11(xuu185, xuu186, xuu187, xuu188, False, xuu190, bfh, bga) -> new_compare12(xuu185, xuu186, xuu187, xuu188, xuu190, bfh, bga) 25.38/9.10 new_lt20(xuu98, xuu101, ty_Double) -> new_lt15(xuu98, xuu101) 25.38/9.10 new_esEs7(xuu40000, xuu3000, app(ty_Maybe, dbh)) -> new_esEs12(xuu40000, xuu3000, dbh) 25.38/9.10 new_lt19(xuu111, xuu113, app(app(ty_@2, caf), cag)) -> new_lt14(xuu111, xuu113, caf, cag) 25.38/9.10 new_compare16(GT, EQ) -> GT 25.38/9.10 new_esEs4(xuu40002, xuu3002, ty_Double) -> new_esEs25(xuu40002, xuu3002) 25.38/9.10 new_ltEs24(xuu592, xuu602, app(app(ty_Either, feg), feh)) -> new_ltEs8(xuu592, xuu602, feg, feh) 25.38/9.10 new_esEs26(xuu590, xuu600, ty_Float) -> new_esEs20(xuu590, xuu600) 25.38/9.10 25.38/9.10 The set Q consists of the following terms: 25.38/9.10 25.38/9.10 new_lt20(x0, x1, ty_Ordering) 25.38/9.10 new_esEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.38/9.10 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.10 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs9(x0, x1, ty_Integer) 25.38/9.10 new_ltEs21(x0, x1, ty_Ordering) 25.38/9.10 new_compare0(x0, x1, ty_Integer) 25.38/9.10 new_esEs17(Left(x0), Left(x1), ty_@0, x2) 25.38/9.10 new_asAs(True, x0) 25.38/9.10 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_compare26(x0, x1, False, x2, x3) 25.38/9.10 new_esEs28(x0, x1, ty_Bool) 25.38/9.10 new_esEs4(x0, x1, ty_Ordering) 25.38/9.10 new_lt23(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_primPlusNat1(Zero, Zero) 25.38/9.10 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.10 new_ltEs21(x0, x1, ty_Double) 25.38/9.10 new_esEs29(x0, x1, ty_@0) 25.38/9.10 new_compare0(x0, x1, app(ty_Maybe, x2)) 25.38/9.10 new_lt20(x0, x1, app(ty_[], x2)) 25.38/9.10 new_esEs26(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs16(x0, x1) 25.38/9.10 new_ltEs4(x0, x1, ty_@0) 25.38/9.10 new_esEs28(x0, x1, ty_@0) 25.38/9.10 new_esEs9(x0, x1, ty_Bool) 25.38/9.10 new_esEs36(x0, x1, ty_Float) 25.38/9.10 new_esEs4(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_primEqInt(Pos(Zero), Pos(Zero)) 25.38/9.10 new_primCompAux00(x0, x1, EQ, ty_Float) 25.38/9.10 new_compare28(True, True) 25.38/9.10 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.10 new_esEs28(x0, x1, ty_Integer) 25.38/9.10 new_lt18(x0, x1) 25.38/9.10 new_compare10(x0, x1, True, x2, x3) 25.38/9.10 new_ltEs23(x0, x1, ty_Bool) 25.38/9.10 new_lt20(x0, x1, ty_Char) 25.38/9.10 new_compare210(x0, x1, True, x2) 25.38/9.10 new_compare0(x0, x1, ty_Bool) 25.38/9.10 new_lt20(x0, x1, ty_Double) 25.38/9.10 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 25.38/9.10 new_lt21(x0, x1, ty_Int) 25.38/9.10 new_primCompAux00(x0, x1, EQ, ty_Integer) 25.38/9.10 new_esEs37(x0, x1, ty_Bool) 25.38/9.10 new_primEqInt(Neg(Zero), Neg(Zero)) 25.38/9.10 new_ltEs7(x0, x1) 25.38/9.10 new_esEs37(x0, x1, app(ty_Ratio, x2)) 25.38/9.10 new_esEs4(x0, x1, ty_Double) 25.38/9.10 new_ltEs16(GT, EQ) 25.38/9.10 new_ltEs16(EQ, GT) 25.38/9.11 new_esEs17(Left(x0), Left(x1), ty_Integer, x2) 25.38/9.11 new_esEs4(x0, x1, ty_Char) 25.38/9.11 new_esEs27(x0, x1, ty_Bool) 25.38/9.11 new_ltEs19(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs29(x0, x1, ty_Int) 25.38/9.11 new_esEs37(x0, x1, ty_@0) 25.38/9.11 new_esEs35(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs9(x0, x1, app(ty_[], x2)) 25.38/9.11 new_ltEs16(LT, LT) 25.38/9.11 new_lt21(x0, x1, ty_@0) 25.38/9.11 new_ltEs22(x0, x1, ty_Int) 25.38/9.11 new_compare29(Just(x0), Just(x1), x2) 25.38/9.11 new_compare16(LT, LT) 25.38/9.11 new_ltEs4(x0, x1, ty_Int) 25.38/9.11 new_esEs6(x0, x1, ty_Double) 25.38/9.11 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 25.38/9.11 new_esEs6(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.38/9.11 new_compare11(x0, x1, x2, x3, False, x4, x5, x6) 25.38/9.11 new_compare0(x0, x1, ty_Float) 25.38/9.11 new_esEs32(x0, x1, ty_Int) 25.38/9.11 new_lt19(x0, x1, ty_Char) 25.38/9.11 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs35(x0, x1, ty_Char) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, ty_Char) 25.38/9.11 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_lt8(x0, x1, x2, x3, x4) 25.38/9.11 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs31(x0, x1, ty_Int) 25.38/9.11 new_esEs12(Nothing, Nothing, x0) 25.38/9.11 new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.38/9.11 new_esEs33(x0, x1, ty_Integer) 25.38/9.11 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_primEqInt(Pos(Zero), Neg(Zero)) 25.38/9.11 new_primEqInt(Neg(Zero), Pos(Zero)) 25.38/9.11 new_ltEs23(x0, x1, ty_@0) 25.38/9.11 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_ltEs21(x0, x1, ty_Char) 25.38/9.11 new_esEs5(x0, x1, ty_Double) 25.38/9.11 new_esEs24(:(x0, x1), :(x2, x3), x4) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 25.38/9.11 new_compare29(Nothing, Nothing, x0) 25.38/9.11 new_ltEs24(x0, x1, ty_Int) 25.38/9.11 new_primCompAux00(x0, x1, EQ, ty_Bool) 25.38/9.11 new_esEs25(Double(x0, x1), Double(x2, x3)) 25.38/9.11 new_esEs35(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs5(x0, x1, ty_Char) 25.38/9.11 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs37(x0, x1, ty_Float) 25.38/9.11 new_esEs15(False, False) 25.38/9.11 new_primMulInt(Neg(x0), Neg(x1)) 25.38/9.11 new_ltEs23(x0, x1, ty_Int) 25.38/9.11 new_ltEs24(x0, x1, ty_@0) 25.38/9.11 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs27(x0, x1, ty_Integer) 25.38/9.11 new_lt22(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs11(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.38/9.11 new_compare0(x0, x1, ty_@0) 25.38/9.11 new_esEs11(x0, x1, ty_Char) 25.38/9.11 new_esEs9(x0, x1, ty_Int) 25.38/9.11 new_lt19(x0, x1, ty_Ordering) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.38/9.11 new_lt19(x0, x1, app(ty_[], x2)) 25.38/9.11 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 25.38/9.11 new_ltEs19(x0, x1, ty_Double) 25.38/9.11 new_esEs28(x0, x1, ty_Int) 25.38/9.11 new_lt19(x0, x1, ty_Double) 25.38/9.11 new_esEs26(x0, x1, ty_Double) 25.38/9.11 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs34(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs38(x0, x1, ty_Bool) 25.38/9.11 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs36(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_primCompAux00(x0, x1, EQ, ty_@0) 25.38/9.11 new_esEs39(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.38/9.11 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_ltEs16(LT, EQ) 25.38/9.11 new_ltEs16(EQ, LT) 25.38/9.11 new_lt22(x0, x1, ty_Float) 25.38/9.11 new_esEs8(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_primCmpNat0(Succ(x0), Succ(x1)) 25.38/9.11 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.38/9.11 new_esEs28(x0, x1, ty_Float) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 25.38/9.11 new_esEs6(x0, x1, ty_Ordering) 25.38/9.11 new_ltEs20(x0, x1, ty_Int) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.38/9.11 new_esEs17(Left(x0), Left(x1), ty_Float, x2) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.38/9.11 new_esEs5(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs36(x0, x1, ty_Int) 25.38/9.11 new_esEs36(x0, x1, ty_Integer) 25.38/9.11 new_lt6(x0, x1, ty_@0) 25.38/9.11 new_esEs33(x0, x1, ty_Bool) 25.38/9.11 new_esEs19(GT, GT) 25.38/9.11 new_ltEs15(x0, x1) 25.38/9.11 new_primPlusNat1(Succ(x0), Succ(x1)) 25.38/9.11 new_esEs4(x0, x1, app(ty_[], x2)) 25.38/9.11 new_ltEs23(x0, x1, ty_Integer) 25.38/9.11 new_compare16(EQ, LT) 25.38/9.11 new_compare16(LT, EQ) 25.38/9.11 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.38/9.11 new_esEs39(x0, x1, ty_@0) 25.38/9.11 new_esEs38(x0, x1, ty_Int) 25.38/9.11 new_esEs17(Left(x0), Left(x1), ty_Int, x2) 25.38/9.11 new_lt10(x0, x1, x2, x3) 25.38/9.11 new_esEs27(x0, x1, ty_@0) 25.38/9.11 new_esEs33(x0, x1, ty_Float) 25.38/9.11 new_esEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs34(x0, x1, ty_Double) 25.38/9.11 new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 25.38/9.11 new_esEs9(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs9(x0, x1, ty_Float) 25.38/9.11 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 25.38/9.11 new_compare110(x0, x1, False, x2) 25.38/9.11 new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) 25.38/9.11 new_esEs20(Float(x0, x1), Float(x2, x3)) 25.38/9.11 new_esEs31(x0, x1, ty_Integer) 25.38/9.11 new_primMulNat0(Succ(x0), Succ(x1)) 25.38/9.11 new_esEs35(x0, x1, ty_Ordering) 25.38/9.11 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.38/9.11 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.38/9.11 new_esEs11(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs10(x0, x1, app(ty_[], x2)) 25.38/9.11 new_compare18(:(x0, x1), :(x2, x3), x4) 25.38/9.11 new_esEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.38/9.11 new_esEs11(x0, x1, ty_Ordering) 25.38/9.11 new_esEs17(Left(x0), Left(x1), ty_Bool, x2) 25.38/9.11 new_compare16(EQ, EQ) 25.38/9.11 new_lt6(x0, x1, ty_Double) 25.38/9.11 new_esEs7(x0, x1, ty_Double) 25.38/9.11 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.38/9.11 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.38/9.11 new_esEs33(x0, x1, ty_Int) 25.38/9.11 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs7(x0, x1, app(ty_[], x2)) 25.38/9.11 new_lt19(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) 25.38/9.11 new_esEs27(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs36(x0, x1, ty_Bool) 25.38/9.11 new_esEs8(x0, x1, ty_Integer) 25.38/9.11 new_esEs12(Just(x0), Just(x1), ty_@0) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), ty_Double) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.38/9.11 new_ltEs20(x0, x1, ty_Bool) 25.38/9.11 new_ltEs19(x0, x1, ty_@0) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.38/9.11 new_compare9(Integer(x0), Integer(x1)) 25.38/9.11 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs33(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_primCmpNat0(Zero, Succ(x0)) 25.38/9.11 new_ltEs21(x0, x1, ty_Float) 25.38/9.11 new_compare0(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_compare17(x0, x1) 25.38/9.11 new_ltEs19(x0, x1, ty_Bool) 25.38/9.11 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 25.38/9.11 new_esEs6(x0, x1, ty_Integer) 25.38/9.11 new_compare28(False, False) 25.38/9.11 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.38/9.11 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.38/9.11 new_sr(x0, x1) 25.38/9.11 new_esEs10(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs39(x0, x1, ty_Integer) 25.38/9.11 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs8(x0, x1, ty_Bool) 25.38/9.11 new_esEs36(x0, x1, ty_Ordering) 25.38/9.11 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.38/9.11 new_lt23(x0, x1, ty_Integer) 25.38/9.11 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.38/9.11 new_lt22(x0, x1, ty_@0) 25.38/9.11 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs29(x0, x1, app(ty_[], x2)) 25.38/9.11 new_compare0(x0, x1, app(ty_[], x2)) 25.38/9.11 new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 25.38/9.11 new_esEs12(Just(x0), Just(x1), app(ty_[], x2)) 25.38/9.11 new_esEs10(x0, x1, ty_Int) 25.38/9.11 new_lt23(x0, x1, ty_@0) 25.38/9.11 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.38/9.11 new_compare15(Left(x0), Right(x1), x2, x3) 25.38/9.11 new_compare15(Right(x0), Left(x1), x2, x3) 25.38/9.11 new_lt9(x0, x1) 25.38/9.11 new_compare16(GT, LT) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.38/9.11 new_compare16(LT, GT) 25.38/9.11 new_esEs32(x0, x1, ty_Integer) 25.38/9.11 new_esEs24([], :(x0, x1), x2) 25.38/9.11 new_esEs33(x0, x1, ty_Ordering) 25.38/9.11 new_lt22(x0, x1, ty_Integer) 25.38/9.11 new_not(True) 25.38/9.11 new_esEs39(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs10(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs27(x0, x1, ty_Ordering) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.38/9.11 new_lt22(x0, x1, ty_Int) 25.38/9.11 new_ltEs12(True, True) 25.38/9.11 new_ltEs13(Nothing, Nothing, x0) 25.38/9.11 new_lt22(x0, x1, ty_Char) 25.38/9.11 new_esEs6(x0, x1, ty_Bool) 25.38/9.11 new_esEs28(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs33(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 25.38/9.11 new_esEs7(x0, x1, ty_Ordering) 25.38/9.11 new_compare18([], [], x0) 25.38/9.11 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_ltEs23(x0, x1, app(ty_[], x2)) 25.38/9.11 new_compare0(x0, x1, ty_Double) 25.38/9.11 new_esEs29(x0, x1, ty_Float) 25.38/9.11 new_esEs9(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_ltEs4(x0, x1, ty_Float) 25.38/9.11 new_esEs8(x0, x1, ty_Float) 25.38/9.11 new_esEs5(x0, x1, app(ty_[], x2)) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 25.38/9.11 new_lt6(x0, x1, ty_Ordering) 25.38/9.11 new_lt22(x0, x1, ty_Bool) 25.38/9.11 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_compare0(x0, x1, ty_Int) 25.38/9.11 new_esEs8(x0, x1, ty_@0) 25.38/9.11 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs11(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_pePe(True, x0) 25.38/9.11 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs23(Integer(x0), Integer(x1)) 25.38/9.11 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_ltEs20(x0, x1, ty_Double) 25.38/9.11 new_esEs34(x0, x1, ty_Int) 25.38/9.11 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_primMulInt(Pos(x0), Pos(x1)) 25.38/9.11 new_esEs19(LT, GT) 25.38/9.11 new_esEs19(GT, LT) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 25.38/9.11 new_esEs8(x0, x1, ty_Int) 25.38/9.11 new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs30(x0, x1, ty_Ordering) 25.38/9.11 new_esEs6(x0, x1, ty_Char) 25.38/9.11 new_lt23(x0, x1, ty_Float) 25.38/9.11 new_sr0(Integer(x0), Integer(x1)) 25.38/9.11 new_esEs37(x0, x1, ty_Char) 25.38/9.11 new_esEs17(Left(x0), Left(x1), ty_Double, x2) 25.38/9.11 new_esEs27(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs37(x0, x1, ty_Int) 25.38/9.11 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.38/9.11 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.38/9.11 new_ltEs21(x0, x1, ty_Bool) 25.38/9.11 new_compare30(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.38/9.11 new_lt19(x0, x1, ty_Float) 25.38/9.11 new_esEs26(x0, x1, ty_Float) 25.38/9.11 new_ltEs13(Nothing, Just(x0), x1) 25.38/9.11 new_esEs24(:(x0, x1), [], x2) 25.38/9.11 new_esEs34(x0, x1, ty_Char) 25.38/9.11 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_ltEs21(x0, x1, ty_Integer) 25.38/9.11 new_compare30(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.38/9.11 new_compare30(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.38/9.11 new_esEs10(x0, x1, ty_Bool) 25.38/9.11 new_ltEs19(x0, x1, ty_Float) 25.38/9.11 new_esEs8(x0, x1, ty_Char) 25.38/9.11 new_esEs4(x0, x1, ty_@0) 25.38/9.11 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs34(x0, x1, app(ty_[], x2)) 25.38/9.11 new_ltEs18(x0, x1) 25.38/9.11 new_esEs9(x0, x1, ty_Double) 25.38/9.11 new_esEs9(x0, x1, ty_Ordering) 25.38/9.11 new_lt23(x0, x1, ty_Int) 25.38/9.11 new_esEs34(x0, x1, ty_Float) 25.38/9.11 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 25.38/9.11 new_esEs10(x0, x1, ty_Char) 25.38/9.11 new_esEs26(x0, x1, ty_Int) 25.38/9.11 new_primEqNat0(Succ(x0), Succ(x1)) 25.38/9.11 new_esEs38(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_asAs(False, x0) 25.38/9.11 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs15(False, True) 25.38/9.11 new_esEs15(True, False) 25.38/9.11 new_lt19(x0, x1, ty_Int) 25.38/9.11 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_ltEs19(x0, x1, ty_Int) 25.38/9.11 new_esEs4(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs6(x0, x1, ty_Int) 25.38/9.11 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs39(x0, x1, ty_Bool) 25.38/9.11 new_esEs10(x0, x1, ty_Integer) 25.38/9.11 new_primEqNat0(Zero, Zero) 25.38/9.11 new_esEs39(x0, x1, ty_Float) 25.38/9.11 new_esEs6(x0, x1, app(ty_[], x2)) 25.38/9.11 new_ltEs9(x0, x1) 25.38/9.11 new_not(False) 25.38/9.11 new_ltEs19(x0, x1, ty_Char) 25.38/9.11 new_esEs27(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_ltEs22(x0, x1, ty_Ordering) 25.38/9.11 new_ltEs8(Right(x0), Left(x1), x2, x3) 25.38/9.11 new_ltEs8(Left(x0), Right(x1), x2, x3) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_ltEs4(x0, x1, ty_Bool) 25.38/9.11 new_esEs29(x0, x1, ty_Integer) 25.38/9.11 new_esEs33(x0, x1, ty_Double) 25.38/9.11 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.38/9.11 new_esEs8(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs26(x0, x1, ty_Char) 25.38/9.11 new_primPlusNat0(x0, x1) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 25.38/9.11 new_esEs6(x0, x1, ty_Float) 25.38/9.11 new_compare14(x0, x1, True, x2, x3) 25.38/9.11 new_esEs29(x0, x1, ty_Bool) 25.38/9.11 new_lt23(x0, x1, ty_Char) 25.38/9.11 new_ltEs19(x0, x1, ty_Integer) 25.38/9.11 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs39(x0, x1, ty_Int) 25.38/9.11 new_esEs5(x0, x1, ty_Ordering) 25.38/9.11 new_esEs26(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs34(x0, x1, ty_Bool) 25.38/9.11 new_lt22(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs36(x0, x1, ty_Double) 25.38/9.11 new_compare210(x0, x1, False, x2) 25.38/9.11 new_ltEs4(x0, x1, ty_Integer) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 25.38/9.11 new_lt4(x0, x1) 25.38/9.11 new_ltEs21(x0, x1, app(ty_[], x2)) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 25.38/9.11 new_esEs39(x0, x1, ty_Char) 25.38/9.11 new_compare0(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_lt23(x0, x1, ty_Bool) 25.38/9.11 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_ltEs24(x0, x1, ty_Ordering) 25.38/9.11 new_esEs12(Nothing, Just(x0), x1) 25.38/9.11 new_esEs37(x0, x1, ty_Integer) 25.38/9.11 new_esEs28(x0, x1, ty_Double) 25.38/9.11 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_lt16(x0, x1) 25.38/9.11 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_ltEs24(x0, x1, ty_Double) 25.38/9.11 new_esEs24([], [], x0) 25.38/9.11 new_esEs5(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs7(x0, x1, ty_Integer) 25.38/9.11 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 25.38/9.11 new_lt19(x0, x1, ty_Bool) 25.38/9.11 new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) 25.38/9.11 new_esEs34(x0, x1, ty_Integer) 25.38/9.11 new_esEs4(x0, x1, ty_Int) 25.38/9.11 new_esEs35(x0, x1, ty_@0) 25.38/9.11 new_lt21(x0, x1, ty_Char) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), ty_Float) 25.38/9.11 new_esEs7(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs26(x0, x1, ty_Bool) 25.38/9.11 new_esEs35(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.38/9.11 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.38/9.11 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.38/9.11 new_esEs19(EQ, GT) 25.38/9.11 new_esEs19(GT, EQ) 25.38/9.11 new_esEs11(x0, x1, ty_Integer) 25.38/9.11 new_primEqNat0(Zero, Succ(x0)) 25.38/9.11 new_compare110(x0, x1, True, x2) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 25.38/9.11 new_esEs10(x0, x1, ty_Float) 25.38/9.11 new_esEs38(x0, x1, ty_Ordering) 25.38/9.11 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_ltEs4(x0, x1, ty_Char) 25.38/9.11 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs26(x0, x1, ty_Integer) 25.38/9.11 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_lt19(x0, x1, ty_Integer) 25.38/9.11 new_lt13(x0, x1, x2) 25.38/9.11 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_compare16(GT, GT) 25.38/9.11 new_lt20(x0, x1, ty_Int) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, ty_Bool) 25.38/9.11 new_pePe(False, x0) 25.38/9.11 new_primCompAux1(x0, x1, x2, x3, x4) 25.38/9.11 new_lt21(x0, x1, ty_Ordering) 25.38/9.11 new_lt21(x0, x1, ty_Double) 25.38/9.11 new_esEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.38/9.11 new_lt19(x0, x1, ty_@0) 25.38/9.11 new_esEs33(x0, x1, app(ty_[], x2)) 25.38/9.11 new_lt23(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs29(x0, x1, ty_Char) 25.38/9.11 new_esEs26(x0, x1, ty_@0) 25.38/9.11 new_esEs35(x0, x1, ty_Bool) 25.38/9.11 new_esEs34(x0, x1, ty_@0) 25.38/9.11 new_esEs38(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_primCompAux00(x0, x1, LT, x2) 25.38/9.11 new_esEs38(x0, x1, ty_Double) 25.38/9.11 new_primPlusNat1(Zero, Succ(x0)) 25.38/9.11 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs11(x0, x1, ty_@0) 25.38/9.11 new_esEs5(x0, x1, ty_Int) 25.38/9.11 new_esEs26(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs39(x0, x1, ty_Ordering) 25.38/9.11 new_esEs11(x0, x1, ty_Bool) 25.38/9.11 new_compare11(x0, x1, x2, x3, True, x4, x5, x6) 25.38/9.11 new_compare18([], :(x0, x1), x2) 25.38/9.11 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs35(x0, x1, ty_Int) 25.38/9.11 new_compare25(x0, x1, True, x2, x3) 25.38/9.11 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs11(x0, x1, ty_Float) 25.38/9.11 new_ltEs24(x0, x1, ty_Char) 25.38/9.11 new_lt12(x0, x1) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs8(x0, x1, ty_Double) 25.38/9.11 new_primMulNat0(Succ(x0), Zero) 25.38/9.11 new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_ltEs23(x0, x1, ty_Double) 25.38/9.11 new_ltEs21(x0, x1, ty_@0) 25.38/9.11 new_esEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.38/9.11 new_compare12(x0, x1, x2, x3, False, x4, x5) 25.38/9.11 new_lt19(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_ltEs23(x0, x1, ty_Char) 25.38/9.11 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_compare7(@2(x0, x1), @2(x2, x3), x4, x5) 25.38/9.11 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs22(@0, @0) 25.38/9.11 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.38/9.11 new_compare8(@0, @0) 25.38/9.11 new_ltEs21(x0, x1, ty_Int) 25.38/9.11 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, ty_Int) 25.38/9.11 new_ltEs13(Just(x0), Nothing, x1) 25.38/9.11 new_esEs12(Just(x0), Just(x1), ty_Float) 25.38/9.11 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), ty_Bool) 25.38/9.11 new_ltEs22(x0, x1, ty_Double) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, ty_@0) 25.38/9.11 new_ltEs22(x0, x1, ty_Char) 25.38/9.11 new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) 25.38/9.11 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_ltEs20(x0, x1, ty_Float) 25.38/9.11 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_compare30(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.38/9.11 new_ltEs20(x0, x1, ty_Ordering) 25.38/9.11 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.38/9.11 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs10(x0, x1, ty_@0) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.38/9.11 new_esEs4(x0, x1, ty_Integer) 25.38/9.11 new_esEs33(x0, x1, ty_Char) 25.38/9.11 new_esEs12(Just(x0), Just(x1), ty_Ordering) 25.38/9.11 new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.38/9.11 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_ltEs24(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs4(x0, x1, ty_Bool) 25.38/9.11 new_compare19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.38/9.11 new_compare0(x0, x1, ty_Char) 25.38/9.11 new_ltEs16(GT, GT) 25.38/9.11 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_lt20(x0, x1, ty_Bool) 25.38/9.11 new_lt23(x0, x1, ty_Double) 25.38/9.11 new_esEs28(x0, x1, ty_Ordering) 25.38/9.11 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 25.38/9.11 new_ltEs20(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs38(x0, x1, app(ty_[], x2)) 25.38/9.11 new_primCmpNat0(Succ(x0), Zero) 25.38/9.11 new_esEs21(:%(x0, x1), :%(x2, x3), x4) 25.38/9.11 new_esEs17(Left(x0), Right(x1), x2, x3) 25.38/9.11 new_esEs17(Right(x0), Left(x1), x2, x3) 25.38/9.11 new_esEs29(x0, x1, ty_Double) 25.38/9.11 new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) 25.38/9.11 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.38/9.11 new_lt6(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs30(x0, x1, ty_Double) 25.38/9.11 new_esEs37(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs9(x0, x1, ty_Char) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.38/9.11 new_esEs38(x0, x1, ty_Char) 25.38/9.11 new_ltEs4(x0, x1, ty_Double) 25.38/9.11 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.38/9.11 new_esEs6(x0, x1, ty_@0) 25.38/9.11 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.38/9.11 new_esEs35(x0, x1, ty_Integer) 25.38/9.11 new_esEs39(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs39(x0, x1, ty_Double) 25.38/9.11 new_esEs27(x0, x1, ty_Double) 25.38/9.11 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.38/9.11 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.38/9.11 new_esEs19(LT, EQ) 25.38/9.11 new_esEs19(EQ, LT) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, ty_Integer) 25.38/9.11 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs17(Left(x0), Left(x1), ty_Char, x2) 25.38/9.11 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_ltEs20(x0, x1, ty_Char) 25.38/9.11 new_compare14(x0, x1, False, x2, x3) 25.38/9.11 new_esEs15(True, True) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 25.38/9.11 new_ltEs4(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs36(x0, x1, ty_Char) 25.38/9.11 new_esEs6(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs19(LT, LT) 25.38/9.11 new_esEs7(x0, x1, ty_@0) 25.38/9.11 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_compare10(x0, x1, False, x2, x3) 25.38/9.11 new_esEs34(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_primCompAux00(x0, x1, EQ, ty_Ordering) 25.38/9.11 new_lt23(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_ltEs20(x0, x1, ty_Integer) 25.38/9.11 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.38/9.11 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_ltEs22(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_ltEs23(x0, x1, ty_Ordering) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 25.38/9.11 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs28(x0, x1, ty_Char) 25.38/9.11 new_esEs18(Char(x0), Char(x1)) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.38/9.11 new_compare0(x0, x1, ty_Ordering) 25.38/9.11 new_esEs12(Just(x0), Just(x1), ty_Integer) 25.38/9.11 new_ltEs24(x0, x1, ty_Float) 25.38/9.11 new_ltEs11(x0, x1, x2) 25.38/9.11 new_ltEs16(EQ, EQ) 25.38/9.11 new_ltEs20(x0, x1, ty_@0) 25.38/9.11 new_esEs38(x0, x1, ty_Float) 25.38/9.11 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.38/9.11 new_primMulNat0(Zero, Zero) 25.38/9.11 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_primCompAux00(x0, x1, GT, x2) 25.38/9.11 new_compare24(x0, x1, x2, x3, True, x4, x5) 25.38/9.11 new_esEs30(x0, x1, ty_Bool) 25.38/9.11 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_lt20(x0, x1, ty_Float) 25.38/9.11 new_esEs5(x0, x1, ty_Float) 25.38/9.11 new_lt22(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs30(x0, x1, ty_Integer) 25.38/9.11 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_lt14(x0, x1, x2, x3) 25.38/9.11 new_esEs19(EQ, EQ) 25.38/9.11 new_lt15(x0, x1) 25.38/9.11 new_lt17(x0, x1) 25.38/9.11 new_esEs30(x0, x1, ty_@0) 25.38/9.11 new_ltEs22(x0, x1, ty_Float) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), ty_Int) 25.38/9.11 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_primPlusNat1(Succ(x0), Zero) 25.38/9.11 new_esEs10(x0, x1, ty_Double) 25.38/9.11 new_esEs10(x0, x1, ty_Ordering) 25.38/9.11 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_lt21(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs12(Just(x0), Just(x1), ty_Bool) 25.38/9.11 new_lt6(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_fsEs(x0) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.38/9.11 new_esEs12(Just(x0), Just(x1), ty_Char) 25.38/9.11 new_compare29(Just(x0), Nothing, x1) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), ty_Char) 25.38/9.11 new_esEs11(x0, x1, ty_Double) 25.38/9.11 new_primMulNat0(Zero, Succ(x0)) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.38/9.11 new_primCompAux00(x0, x1, EQ, ty_Int) 25.38/9.11 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.38/9.11 new_esEs37(x0, x1, ty_Double) 25.38/9.11 new_esEs38(x0, x1, ty_Integer) 25.38/9.11 new_lt21(x0, x1, ty_Float) 25.38/9.11 new_lt5(x0, x1) 25.38/9.11 new_ltEs22(x0, x1, ty_Bool) 25.38/9.11 new_compare15(Right(x0), Right(x1), x2, x3) 25.38/9.11 new_esEs12(Just(x0), Just(x1), ty_Int) 25.38/9.11 new_ltEs12(False, True) 25.38/9.11 new_ltEs12(True, False) 25.38/9.11 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_primCompAux00(x0, x1, EQ, ty_Double) 25.38/9.11 new_compare28(False, True) 25.38/9.11 new_compare28(True, False) 25.38/9.11 new_compare29(Nothing, Just(x0), x1) 25.38/9.11 new_ltEs22(x0, x1, ty_@0) 25.38/9.11 new_esEs37(x0, x1, app(ty_[], x2)) 25.38/9.11 new_primCompAux00(x0, x1, EQ, ty_Char) 25.38/9.11 new_lt20(x0, x1, ty_Integer) 25.38/9.11 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs36(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs4(x0, x1, ty_Float) 25.38/9.11 new_ltEs23(x0, x1, ty_Float) 25.38/9.11 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_ltEs16(LT, GT) 25.38/9.11 new_ltEs16(GT, LT) 25.38/9.11 new_ltEs10(x0, x1) 25.38/9.11 new_esEs8(x0, x1, app(ty_[], x2)) 25.38/9.11 new_compare24(x0, x1, x2, x3, False, x4, x5) 25.38/9.11 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 25.38/9.11 new_esEs35(x0, x1, ty_Float) 25.38/9.11 new_esEs11(x0, x1, ty_Int) 25.38/9.11 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.38/9.11 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.38/9.11 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.38/9.11 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs38(x0, x1, ty_@0) 25.38/9.11 new_lt7(x0, x1, x2) 25.38/9.11 new_ltEs5(x0, x1, x2) 25.38/9.11 new_lt6(x0, x1, app(ty_[], x2)) 25.38/9.11 new_lt6(x0, x1, ty_Integer) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), ty_@0) 25.38/9.11 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_compare15(Left(x0), Left(x1), x2, x3) 25.38/9.11 new_esEs27(x0, x1, ty_Char) 25.38/9.11 new_esEs12(Just(x0), Just(x1), ty_Double) 25.38/9.11 new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_compare26(x0, x1, True, x2, x3) 25.38/9.11 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, ty_Float) 25.38/9.11 new_lt20(x0, x1, ty_@0) 25.38/9.11 new_esEs5(x0, x1, ty_@0) 25.38/9.11 new_primMulInt(Pos(x0), Neg(x1)) 25.38/9.11 new_primMulInt(Neg(x0), Pos(x1)) 25.38/9.11 new_esEs35(x0, x1, ty_Double) 25.38/9.11 new_esEs7(x0, x1, ty_Int) 25.38/9.11 new_lt22(x0, x1, ty_Double) 25.38/9.11 new_ltEs4(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.38/9.11 new_esEs5(x0, x1, ty_Bool) 25.38/9.11 new_lt21(x0, x1, ty_Integer) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, ty_Double) 25.38/9.11 new_compare0(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs30(x0, x1, ty_Float) 25.38/9.11 new_esEs30(x0, x1, app(ty_[], x2)) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 25.38/9.11 new_esEs27(x0, x1, ty_Int) 25.38/9.11 new_lt22(x0, x1, ty_Ordering) 25.38/9.11 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_lt11(x0, x1, x2) 25.38/9.11 new_ltEs19(x0, x1, ty_Ordering) 25.38/9.11 new_esEs30(x0, x1, ty_Char) 25.38/9.11 new_esEs12(Just(x0), Nothing, x1) 25.38/9.11 new_esEs7(x0, x1, ty_Float) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), ty_Integer) 25.38/9.11 new_esEs36(x0, x1, ty_@0) 25.38/9.11 new_compare25(x0, x1, False, x2, x3) 25.38/9.11 new_esEs34(x0, x1, ty_Ordering) 25.38/9.11 new_ltEs24(x0, x1, ty_Bool) 25.38/9.11 new_esEs26(x0, x1, ty_Ordering) 25.38/9.11 new_esEs30(x0, x1, ty_Int) 25.38/9.11 new_compare18(:(x0, x1), [], x2) 25.38/9.11 new_lt23(x0, x1, ty_Ordering) 25.38/9.11 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs27(x0, x1, ty_Float) 25.38/9.11 new_esEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs7(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs5(x0, x1, ty_Integer) 25.38/9.11 new_primEqNat0(Succ(x0), Zero) 25.38/9.11 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs36(x0, x1, app(ty_[], x2)) 25.38/9.11 new_ltEs22(x0, x1, ty_Integer) 25.38/9.11 new_esEs9(x0, x1, ty_@0) 25.38/9.11 new_ltEs12(False, False) 25.38/9.11 new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.38/9.11 new_lt6(x0, x1, ty_Float) 25.38/9.11 new_esEs29(x0, x1, ty_Ordering) 25.38/9.11 new_compare12(x0, x1, x2, x3, True, x4, x5) 25.38/9.11 new_ltEs17(x0, x1) 25.38/9.11 new_lt21(x0, x1, ty_Bool) 25.38/9.11 new_ltEs4(x0, x1, ty_Ordering) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.38/9.11 new_lt6(x0, x1, ty_Bool) 25.38/9.11 new_ltEs4(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs8(x0, x1, ty_Ordering) 25.38/9.11 new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.38/9.11 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.38/9.11 new_esEs37(x0, x1, ty_Ordering) 25.38/9.11 new_esEs7(x0, x1, ty_Bool) 25.38/9.11 new_compare6(Char(x0), Char(x1)) 25.38/9.11 new_compare16(EQ, GT) 25.38/9.11 new_compare16(GT, EQ) 25.38/9.11 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.38/9.11 new_esEs33(x0, x1, ty_@0) 25.38/9.11 new_lt6(x0, x1, ty_Int) 25.38/9.11 new_ltEs24(x0, x1, ty_Integer) 25.38/9.11 new_lt6(x0, x1, ty_Char) 25.38/9.11 new_esEs7(x0, x1, ty_Char) 25.38/9.11 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_primCmpNat0(Zero, Zero) 25.38/9.11 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 25.38/9.11 25.38/9.11 We have to consider all minimal (P,Q,R)-chains. 25.38/9.11 ---------------------------------------- 25.38/9.11 25.38/9.11 (32) QDPSizeChangeProof (EQUIVALENT) 25.38/9.11 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 25.38/9.11 25.38/9.11 From the DPs we obtained the following set of size-change graphs: 25.38/9.11 *new_addToFM_C(Branch(:(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), [], xuu401, bb, bc) -> new_addToFM_C(xuu33, [], xuu401, bb, bc) 25.38/9.11 The graph contains the following edges 1 > 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 25.38/9.11 25.38/9.11 25.38/9.11 ---------------------------------------- 25.38/9.11 25.38/9.11 (33) 25.38/9.11 YES 25.38/9.11 25.38/9.11 ---------------------------------------- 25.38/9.11 25.38/9.11 (34) 25.38/9.11 Obligation: 25.38/9.11 Q DP problem: 25.38/9.11 The TRS P consists of the following rules: 25.38/9.11 25.38/9.11 new_addToFM_C(Branch([], xuu31, xuu32, xuu33, xuu34), :(xuu4000, xuu4001), xuu401, bb, bc) -> new_addToFM_C10(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, GT, bb, bc) 25.38/9.11 new_addToFM_C10(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, GT, bb, bc) -> new_addToFM_C(xuu34, :(xuu4000, xuu4001), xuu401, bb, bc) 25.38/9.11 new_addToFM_C(Branch(:(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), :(xuu4000, xuu4001), xuu401, bb, bc) -> new_addToFM_C2(xuu300, xuu301, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, bb), bb, bc) 25.38/9.11 new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, EQ, h, ba) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_compare18(:(xuu22, xuu23), :(xuu16, xuu17), h), h, ba) 25.38/9.11 new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, GT, h, ba) -> new_addToFM_C(xuu21, :(xuu22, xuu23), xuu24, h, ba) 25.38/9.11 new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, LT, h, ba) -> new_addToFM_C(xuu20, :(xuu22, xuu23), xuu24, h, ba) 25.38/9.11 new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, GT, h, ba) -> new_addToFM_C20(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, h, ba) 25.38/9.11 new_addToFM_C20(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, h, ba) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_compare18(:(xuu22, xuu23), :(xuu16, xuu17), h), h, ba) 25.38/9.11 25.38/9.11 The TRS R consists of the following rules: 25.38/9.11 25.38/9.11 new_esEs11(xuu40000, xuu3000, app(ty_[], ff)) -> new_esEs24(xuu40000, xuu3000, ff) 25.38/9.11 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.38/9.11 new_esEs26(xuu590, xuu600, app(ty_Ratio, baa)) -> new_esEs21(xuu590, xuu600, baa) 25.38/9.11 new_esEs7(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.11 new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, bb) -> new_primCompAux00(xuu4001, xuu301, new_compare0(xuu4000, xuu300, bb), app(ty_[], bb)) 25.38/9.11 new_pePe(True, xuu206) -> True 25.38/9.11 new_ltEs19(xuu591, xuu601, app(app(app(ty_@3, baf), bag), bah)) -> new_ltEs6(xuu591, xuu601, baf, bag, bah) 25.38/9.11 new_esEs10(xuu40001, xuu3001, ty_@0) -> new_esEs22(xuu40001, xuu3001) 25.38/9.11 new_esEs36(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.38/9.11 new_esEs27(xuu400002, xuu30002, ty_Float) -> new_esEs20(xuu400002, xuu30002) 25.38/9.11 new_compare16(GT, LT) -> GT 25.38/9.11 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.38/9.11 new_primCompAux00(xuu34, xuu35, EQ, ty_Char) -> new_compare6(xuu34, xuu35) 25.38/9.11 new_ltEs24(xuu592, xuu602, ty_Bool) -> new_ltEs12(xuu592, xuu602) 25.38/9.11 new_compare24(xuu111, xuu112, xuu113, xuu114, True, bgb, bgc) -> EQ 25.38/9.11 new_compare110(xuu153, xuu154, False, eca) -> GT 25.38/9.11 new_compare26(xuu66, xuu67, True, cah, cba) -> EQ 25.38/9.11 new_ltEs4(xuu59, xuu60, ty_Int) -> new_ltEs7(xuu59, xuu60) 25.38/9.11 new_esEs28(xuu400001, xuu30001, ty_Char) -> new_esEs18(xuu400001, xuu30001) 25.38/9.11 new_lt6(xuu590, xuu600, ty_Bool) -> new_lt12(xuu590, xuu600) 25.38/9.11 new_esEs5(xuu40001, xuu3001, app(ty_Ratio, fhf)) -> new_esEs21(xuu40001, xuu3001, fhf) 25.38/9.11 new_compare0(xuu4000, xuu300, ty_Char) -> new_compare6(xuu4000, xuu300) 25.38/9.11 new_ltEs23(xuu100, xuu103, ty_Double) -> new_ltEs15(xuu100, xuu103) 25.38/9.11 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_Maybe, ce)) -> new_esEs12(xuu400000, xuu30000, ce) 25.38/9.11 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(ty_Ratio, dhh)) -> new_ltEs11(xuu590, xuu600, dhh) 25.38/9.11 new_esEs4(xuu40002, xuu3002, app(app(app(ty_@3, ffg), ffh), fga)) -> new_esEs14(xuu40002, xuu3002, ffg, ffh, fga) 25.38/9.11 new_compare16(EQ, LT) -> GT 25.38/9.11 new_esEs33(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.11 new_lt19(xuu111, xuu113, app(ty_Ratio, cad)) -> new_lt11(xuu111, xuu113, cad) 25.38/9.11 new_esEs26(xuu590, xuu600, ty_Ordering) -> new_esEs19(xuu590, xuu600) 25.38/9.11 new_esEs5(xuu40001, xuu3001, app(ty_[], fhh)) -> new_esEs24(xuu40001, xuu3001, fhh) 25.38/9.11 new_esEs35(xuu98, xuu101, ty_@0) -> new_esEs22(xuu98, xuu101) 25.38/9.11 new_esEs36(xuu400001, xuu30001, app(ty_Ratio, fab)) -> new_esEs21(xuu400001, xuu30001, fab) 25.38/9.11 new_esEs26(xuu590, xuu600, ty_Integer) -> new_esEs23(xuu590, xuu600) 25.38/9.11 new_ltEs21(xuu66, xuu67, ty_Ordering) -> new_ltEs16(xuu66, xuu67) 25.38/9.11 new_esEs12(Nothing, Just(xuu30000), bd) -> False 25.38/9.11 new_esEs12(Just(xuu400000), Nothing, bd) -> False 25.38/9.11 new_esEs6(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.11 new_ltEs8(Left(xuu590), Left(xuu600), ty_Double, gf) -> new_ltEs15(xuu590, xuu600) 25.38/9.11 new_esEs17(Left(xuu400000), Left(xuu30000), ty_@0, ccf) -> new_esEs22(xuu400000, xuu30000) 25.38/9.11 new_esEs5(xuu40001, xuu3001, ty_Ordering) -> new_esEs19(xuu40001, xuu3001) 25.38/9.11 new_esEs12(Nothing, Nothing, bd) -> True 25.38/9.11 new_esEs26(xuu590, xuu600, app(ty_[], hc)) -> new_esEs24(xuu590, xuu600, hc) 25.38/9.11 new_primEqNat0(Succ(xuu4000000), Succ(xuu300000)) -> new_primEqNat0(xuu4000000, xuu300000) 25.38/9.11 new_esEs33(xuu400000, xuu30000, app(ty_Maybe, ebe)) -> new_esEs12(xuu400000, xuu30000, ebe) 25.38/9.11 new_compare27(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Int) -> new_compare17(new_sr(xuu40000, xuu3001), new_sr(xuu3000, xuu40001)) 25.38/9.11 new_esEs24([], [], ead) -> True 25.38/9.11 new_not(True) -> False 25.38/9.11 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(app(ty_@3, ccg), cch), cda), ccf) -> new_esEs14(xuu400000, xuu30000, ccg, cch, cda) 25.38/9.11 new_lt22(xuu590, xuu600, app(ty_[], fbg)) -> new_lt7(xuu590, xuu600, fbg) 25.38/9.11 new_lt21(xuu99, xuu102, app(app(ty_@2, eec), eed)) -> new_lt14(xuu99, xuu102, eec, eed) 25.38/9.11 new_lt23(xuu591, xuu601, ty_Int) -> new_lt9(xuu591, xuu601) 25.38/9.11 new_esEs36(xuu400001, xuu30001, app(app(ty_@2, ehc), ehd)) -> new_esEs13(xuu400001, xuu30001, ehc, ehd) 25.38/9.11 new_esEs5(xuu40001, xuu3001, app(ty_Maybe, fhg)) -> new_esEs12(xuu40001, xuu3001, fhg) 25.38/9.11 new_esEs11(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.11 new_esEs5(xuu40001, xuu3001, ty_Integer) -> new_esEs23(xuu40001, xuu3001) 25.38/9.11 new_ltEs24(xuu592, xuu602, ty_Integer) -> new_ltEs18(xuu592, xuu602) 25.38/9.11 new_ltEs22(xuu73, xuu74, ty_Float) -> new_ltEs17(xuu73, xuu74) 25.38/9.11 new_ltEs8(Left(xuu590), Left(xuu600), app(app(ty_Either, dgd), dge), gf) -> new_ltEs8(xuu590, xuu600, dgd, dge) 25.38/9.11 new_esEs8(xuu40000, xuu3000, app(app(ty_Either, dcg), dch)) -> new_esEs17(xuu40000, xuu3000, dcg, dch) 25.38/9.11 new_esEs35(xuu98, xuu101, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_esEs14(xuu98, xuu101, ecb, ecc, ecd) 25.38/9.11 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.11 new_esEs11(xuu40000, xuu3000, app(app(ty_Either, fa), fb)) -> new_esEs17(xuu40000, xuu3000, fa, fb) 25.38/9.11 new_ltEs19(xuu591, xuu601, ty_Bool) -> new_ltEs12(xuu591, xuu601) 25.38/9.11 new_primEqNat0(Succ(xuu4000000), Zero) -> False 25.38/9.11 new_primEqNat0(Zero, Succ(xuu300000)) -> False 25.38/9.11 new_esEs18(Char(xuu400000), Char(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 25.38/9.11 new_esEs38(xuu591, xuu601, ty_Char) -> new_esEs18(xuu591, xuu601) 25.38/9.11 new_compare10(xuu137, xuu138, True, ebg, ebh) -> LT 25.38/9.11 new_ltEs8(Left(xuu590), Left(xuu600), ty_Char, gf) -> new_ltEs10(xuu590, xuu600) 25.38/9.11 new_esEs8(xuu40000, xuu3000, app(app(ty_@2, dcb), dcc)) -> new_esEs13(xuu40000, xuu3000, dcb, dcc) 25.38/9.11 new_ltEs4(xuu59, xuu60, app(ty_Ratio, gg)) -> new_ltEs11(xuu59, xuu60, gg) 25.38/9.11 new_esEs33(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.11 new_esEs11(xuu40000, xuu3000, app(ty_Maybe, fd)) -> new_esEs12(xuu40000, xuu3000, fd) 25.38/9.11 new_ltEs4(xuu59, xuu60, app(app(ty_@2, ha), hb)) -> new_ltEs14(xuu59, xuu60, ha, hb) 25.38/9.11 new_compare13(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.11 new_esEs4(xuu40002, xuu3002, ty_@0) -> new_esEs22(xuu40002, xuu3002) 25.38/9.11 new_esEs36(xuu400001, xuu30001, ty_Bool) -> new_esEs15(xuu400001, xuu30001) 25.38/9.11 new_esEs9(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.11 new_primCmpInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> GT 25.38/9.11 new_compare18(:(xuu40000, xuu40001), :(xuu3000, xuu3001), ddd) -> new_primCompAux1(xuu40000, xuu3000, xuu40001, xuu3001, ddd) 25.38/9.11 new_lt6(xuu590, xuu600, ty_Ordering) -> new_lt16(xuu590, xuu600) 25.38/9.11 new_esEs11(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.11 new_ltEs11(xuu59, xuu60, gg) -> new_fsEs(new_compare27(xuu59, xuu60, gg)) 25.38/9.11 new_esEs26(xuu590, xuu600, app(app(ty_@2, bac), bad)) -> new_esEs13(xuu590, xuu600, bac, bad) 25.38/9.11 new_ltEs21(xuu66, xuu67, ty_Int) -> new_ltEs7(xuu66, xuu67) 25.38/9.11 new_esEs33(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.11 new_ltEs8(Left(xuu590), Left(xuu600), ty_@0, gf) -> new_ltEs9(xuu590, xuu600) 25.38/9.11 new_ltEs19(xuu591, xuu601, ty_Integer) -> new_ltEs18(xuu591, xuu601) 25.38/9.11 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.11 new_ltEs9(xuu59, xuu60) -> new_fsEs(new_compare8(xuu59, xuu60)) 25.38/9.11 new_primPlusNat1(Succ(xuu20900), Succ(xuu20800)) -> Succ(Succ(new_primPlusNat1(xuu20900, xuu20800))) 25.38/9.11 new_primCompAux00(xuu34, xuu35, GT, cfd) -> GT 25.38/9.11 new_compare0(xuu4000, xuu300, app(app(ty_@2, cg), da)) -> new_compare7(xuu4000, xuu300, cg, da) 25.38/9.11 new_primCmpNat0(Zero, Succ(xuu30000)) -> LT 25.38/9.11 new_ltEs23(xuu100, xuu103, ty_@0) -> new_ltEs9(xuu100, xuu103) 25.38/9.11 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.11 new_esEs29(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.11 new_compare15(Right(xuu40000), Right(xuu3000), daf, dag) -> new_compare26(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, dag), daf, dag) 25.38/9.11 new_ltEs21(xuu66, xuu67, app(app(ty_Either, cbf), cbg)) -> new_ltEs8(xuu66, xuu67, cbf, cbg) 25.38/9.11 new_ltEs20(xuu112, xuu114, app(ty_Maybe, bhc)) -> new_ltEs13(xuu112, xuu114, bhc) 25.38/9.11 new_esEs33(xuu400000, xuu30000, app(ty_Ratio, ebd)) -> new_esEs21(xuu400000, xuu30000, ebd) 25.38/9.11 new_ltEs23(xuu100, xuu103, app(ty_Ratio, efc)) -> new_ltEs11(xuu100, xuu103, efc) 25.38/9.11 new_lt20(xuu98, xuu101, ty_Float) -> new_lt17(xuu98, xuu101) 25.38/9.11 new_compare15(Left(xuu40000), Right(xuu3000), daf, dag) -> LT 25.38/9.11 new_ltEs4(xuu59, xuu60, app(app(app(ty_@3, gb), gc), gd)) -> new_ltEs6(xuu59, xuu60, gb, gc, gd) 25.38/9.11 new_esEs5(xuu40001, xuu3001, app(app(ty_@2, fgg), fgh)) -> new_esEs13(xuu40001, xuu3001, fgg, fgh) 25.38/9.11 new_lt22(xuu590, xuu600, ty_Char) -> new_lt4(xuu590, xuu600) 25.38/9.11 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_[], cf)) -> new_esEs24(xuu400000, xuu30000, cf) 25.38/9.11 new_primCompAux00(xuu34, xuu35, EQ, ty_@0) -> new_compare8(xuu34, xuu35) 25.38/9.11 new_esEs39(xuu590, xuu600, app(app(ty_Either, fcc), fcd)) -> new_esEs17(xuu590, xuu600, fcc, fcd) 25.38/9.11 new_esEs19(LT, EQ) -> False 25.38/9.11 new_esEs19(EQ, LT) -> False 25.38/9.11 new_esEs39(xuu590, xuu600, ty_Bool) -> new_esEs15(xuu590, xuu600) 25.38/9.11 new_esEs30(xuu111, xuu113, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs14(xuu111, xuu113, bhg, bhh, caa) 25.38/9.11 new_esEs7(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.11 new_esEs33(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.11 new_ltEs4(xuu59, xuu60, ty_@0) -> new_ltEs9(xuu59, xuu60) 25.38/9.11 new_lt23(xuu591, xuu601, app(ty_Maybe, fdh)) -> new_lt13(xuu591, xuu601, fdh) 25.38/9.11 new_esEs11(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.11 new_compare17(xuu4000, xuu300) -> new_primCmpInt(xuu4000, xuu300) 25.38/9.11 new_lt23(xuu591, xuu601, ty_Double) -> new_lt15(xuu591, xuu601) 25.38/9.11 new_esEs39(xuu590, xuu600, app(app(ty_@2, fcg), fch)) -> new_esEs13(xuu590, xuu600, fcg, fch) 25.38/9.11 new_compare7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), cg, da) -> new_compare24(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs11(xuu40000, xuu3000, cg), new_esEs10(xuu40001, xuu3001, da)), cg, da) 25.38/9.11 new_esEs8(xuu40000, xuu3000, app(ty_Ratio, dda)) -> new_esEs21(xuu40000, xuu3000, dda) 25.38/9.11 new_esEs36(xuu400001, xuu30001, app(ty_Maybe, fac)) -> new_esEs12(xuu400001, xuu30001, fac) 25.38/9.11 new_ltEs23(xuu100, xuu103, app(app(ty_@2, efe), eff)) -> new_ltEs14(xuu100, xuu103, efe, eff) 25.38/9.11 new_esEs10(xuu40001, xuu3001, ty_Char) -> new_esEs18(xuu40001, xuu3001) 25.38/9.11 new_esEs29(xuu400000, xuu30000, app(ty_[], bfg)) -> new_esEs24(xuu400000, xuu30000, bfg) 25.38/9.11 new_esEs34(xuu99, xuu102, ty_Float) -> new_esEs20(xuu99, xuu102) 25.38/9.11 new_esEs8(xuu40000, xuu3000, app(ty_[], ddc)) -> new_esEs24(xuu40000, xuu3000, ddc) 25.38/9.11 new_esEs29(xuu400000, xuu30000, app(app(ty_Either, bfc), bfd)) -> new_esEs17(xuu400000, xuu30000, bfc, bfd) 25.38/9.11 new_esEs38(xuu591, xuu601, ty_Int) -> new_esEs16(xuu591, xuu601) 25.38/9.11 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Float) -> new_ltEs17(xuu590, xuu600) 25.38/9.11 new_lt22(xuu590, xuu600, ty_Bool) -> new_lt12(xuu590, xuu600) 25.38/9.11 new_esEs15(True, True) -> True 25.38/9.11 new_primCompAux00(xuu34, xuu35, EQ, ty_Bool) -> new_compare28(xuu34, xuu35) 25.38/9.11 new_esEs5(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) 25.38/9.11 new_ltEs19(xuu591, xuu601, app(app(ty_@2, bbe), bbf)) -> new_ltEs14(xuu591, xuu601, bbe, bbf) 25.38/9.11 new_esEs29(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.11 new_primEqInt(Neg(Succ(xuu4000000)), Neg(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) 25.38/9.11 new_ltEs4(xuu59, xuu60, ty_Ordering) -> new_ltEs16(xuu59, xuu60) 25.38/9.11 new_esEs30(xuu111, xuu113, ty_@0) -> new_esEs22(xuu111, xuu113) 25.38/9.11 new_compare0(xuu4000, xuu300, ty_Float) -> new_compare13(xuu4000, xuu300) 25.38/9.11 new_primCmpInt(Neg(Zero), Pos(Succ(xuu30000))) -> LT 25.38/9.11 new_primCompAux00(xuu34, xuu35, EQ, ty_Double) -> new_compare30(xuu34, xuu35) 25.38/9.11 new_primMulInt(Pos(xuu30000), Pos(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.11 new_ltEs20(xuu112, xuu114, ty_Double) -> new_ltEs15(xuu112, xuu114) 25.38/9.11 new_ltEs13(Just(xuu590), Just(xuu600), app(app(ty_Either, egc), egd)) -> new_ltEs8(xuu590, xuu600, egc, egd) 25.38/9.11 new_esEs9(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.11 new_ltEs13(Just(xuu590), Just(xuu600), ty_Bool) -> new_ltEs12(xuu590, xuu600) 25.38/9.11 new_ltEs24(xuu592, xuu602, ty_Float) -> new_ltEs17(xuu592, xuu602) 25.38/9.11 new_lt21(xuu99, xuu102, app(ty_Maybe, eeb)) -> new_lt13(xuu99, xuu102, eeb) 25.38/9.11 new_esEs38(xuu591, xuu601, app(ty_Maybe, fdh)) -> new_esEs12(xuu591, xuu601, fdh) 25.38/9.11 new_ltEs8(Right(xuu590), Left(xuu600), ge, gf) -> False 25.38/9.11 new_primMulNat0(Succ(xuu300000), Zero) -> Zero 25.38/9.11 new_primMulNat0(Zero, Succ(xuu4000100)) -> Zero 25.38/9.11 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(ty_Maybe, eaa)) -> new_ltEs13(xuu590, xuu600, eaa) 25.38/9.11 new_ltEs13(Just(xuu590), Just(xuu600), app(app(app(ty_@3, efh), ega), egb)) -> new_ltEs6(xuu590, xuu600, efh, ega, egb) 25.38/9.11 new_esEs26(xuu590, xuu600, ty_Bool) -> new_esEs15(xuu590, xuu600) 25.38/9.11 new_esEs5(xuu40001, xuu3001, app(app(ty_Either, fhd), fhe)) -> new_esEs17(xuu40001, xuu3001, fhd, fhe) 25.38/9.11 new_esEs37(xuu400000, xuu30000, app(app(app(ty_@3, fag), fah), fba)) -> new_esEs14(xuu400000, xuu30000, fag, fah, fba) 25.38/9.11 new_compare30(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.11 new_esEs26(xuu590, xuu600, ty_Int) -> new_esEs16(xuu590, xuu600) 25.38/9.11 new_ltEs21(xuu66, xuu67, ty_Integer) -> new_ltEs18(xuu66, xuu67) 25.38/9.11 new_esEs8(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.11 new_compare15(Left(xuu40000), Left(xuu3000), daf, dag) -> new_compare25(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, daf), daf, dag) 25.38/9.11 new_ltEs23(xuu100, xuu103, ty_Int) -> new_ltEs7(xuu100, xuu103) 25.38/9.11 new_ltEs12(False, True) -> True 25.38/9.11 new_lt20(xuu98, xuu101, app(app(ty_Either, cfb), cfc)) -> new_lt10(xuu98, xuu101, cfb, cfc) 25.38/9.11 new_ltEs4(xuu59, xuu60, app(app(ty_Either, ge), gf)) -> new_ltEs8(xuu59, xuu60, ge, gf) 25.38/9.11 new_ltEs19(xuu591, xuu601, app(app(ty_Either, bba), bbb)) -> new_ltEs8(xuu591, xuu601, bba, bbb) 25.38/9.11 new_ltEs20(xuu112, xuu114, ty_@0) -> new_ltEs9(xuu112, xuu114) 25.38/9.11 new_esEs28(xuu400001, xuu30001, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs14(xuu400001, xuu30001, bdf, bdg, bdh) 25.38/9.11 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(ty_@2, be), bf)) -> new_esEs13(xuu400000, xuu30000, be, bf) 25.38/9.11 new_esEs26(xuu590, xuu600, app(ty_Maybe, bab)) -> new_esEs12(xuu590, xuu600, bab) 25.38/9.11 new_primPlusNat1(Succ(xuu20900), Zero) -> Succ(xuu20900) 25.38/9.11 new_primPlusNat1(Zero, Succ(xuu20800)) -> Succ(xuu20800) 25.38/9.11 new_esEs7(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.11 new_esEs30(xuu111, xuu113, ty_Char) -> new_esEs18(xuu111, xuu113) 25.38/9.11 new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_@2, cge), cgf)) -> new_compare7(xuu34, xuu35, cge, cgf) 25.38/9.11 new_esEs29(xuu400000, xuu30000, app(app(ty_@2, bef), beg)) -> new_esEs13(xuu400000, xuu30000, bef, beg) 25.38/9.11 new_compare28(False, False) -> EQ 25.38/9.11 new_ltEs21(xuu66, xuu67, ty_@0) -> new_ltEs9(xuu66, xuu67) 25.38/9.11 new_ltEs12(True, True) -> True 25.38/9.11 new_ltEs21(xuu66, xuu67, app(ty_Ratio, cbh)) -> new_ltEs11(xuu66, xuu67, cbh) 25.38/9.11 new_esEs11(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.11 new_compare0(xuu4000, xuu300, app(app(ty_Either, daf), dag)) -> new_compare15(xuu4000, xuu300, daf, dag) 25.38/9.11 new_ltEs21(xuu66, xuu67, app(app(ty_@2, ccb), ccc)) -> new_ltEs14(xuu66, xuu67, ccb, ccc) 25.38/9.11 new_ltEs19(xuu591, xuu601, ty_Ordering) -> new_ltEs16(xuu591, xuu601) 25.38/9.11 new_compare9(Integer(xuu40000), Integer(xuu3000)) -> new_primCmpInt(xuu40000, xuu3000) 25.38/9.11 new_esEs11(xuu40000, xuu3000, app(ty_Ratio, fc)) -> new_esEs21(xuu40000, xuu3000, fc) 25.38/9.11 new_ltEs4(xuu59, xuu60, app(ty_Maybe, gh)) -> new_ltEs13(xuu59, xuu60, gh) 25.38/9.11 new_esEs7(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.11 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.11 new_compare18(:(xuu40000, xuu40001), [], ddd) -> GT 25.38/9.11 new_ltEs21(xuu66, xuu67, ty_Double) -> new_ltEs15(xuu66, xuu67) 25.38/9.11 new_esEs36(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.38/9.11 new_esEs31(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.38/9.11 new_ltEs24(xuu592, xuu602, ty_Int) -> new_ltEs7(xuu592, xuu602) 25.38/9.11 new_compare16(LT, LT) -> EQ 25.38/9.11 new_esEs27(xuu400002, xuu30002, app(app(app(ty_@3, bcd), bce), bcf)) -> new_esEs14(xuu400002, xuu30002, bcd, bce, bcf) 25.38/9.11 new_esEs33(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.11 new_ltEs24(xuu592, xuu602, app(app(ty_@2, ffc), ffd)) -> new_ltEs14(xuu592, xuu602, ffc, ffd) 25.38/9.11 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_Ratio, cdd), ccf) -> new_esEs21(xuu400000, xuu30000, cdd) 25.38/9.11 new_esEs6(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.11 new_esEs7(xuu40000, xuu3000, app(ty_[], dca)) -> new_esEs24(xuu40000, xuu3000, dca) 25.38/9.11 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(ty_Ratio, ceg)) -> new_esEs21(xuu400000, xuu30000, ceg) 25.38/9.11 new_esEs11(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.11 new_esEs38(xuu591, xuu601, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_esEs14(xuu591, xuu601, fdb, fdc, fdd) 25.38/9.11 new_esEs35(xuu98, xuu101, ty_Float) -> new_esEs20(xuu98, xuu101) 25.38/9.11 new_ltEs5(xuu59, xuu60, ga) -> new_fsEs(new_compare18(xuu59, xuu60, ga)) 25.38/9.11 new_esEs29(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.11 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_[], cdf), ccf) -> new_esEs24(xuu400000, xuu30000, cdf) 25.38/9.11 new_esEs35(xuu98, xuu101, ty_Int) -> new_esEs16(xuu98, xuu101) 25.38/9.11 new_lt6(xuu590, xuu600, ty_Char) -> new_lt4(xuu590, xuu600) 25.38/9.11 new_ltEs13(Just(xuu590), Just(xuu600), ty_Int) -> new_ltEs7(xuu590, xuu600) 25.38/9.11 new_ltEs19(xuu591, xuu601, ty_@0) -> new_ltEs9(xuu591, xuu601) 25.38/9.11 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(app(ty_@2, eab), eac)) -> new_ltEs14(xuu590, xuu600, eab, eac) 25.38/9.11 new_esEs28(xuu400001, xuu30001, app(ty_[], bee)) -> new_esEs24(xuu400001, xuu30001, bee) 25.38/9.11 new_esEs10(xuu40001, xuu3001, ty_Float) -> new_esEs20(xuu40001, xuu3001) 25.38/9.11 new_esEs10(xuu40001, xuu3001, ty_Double) -> new_esEs25(xuu40001, xuu3001) 25.38/9.11 new_esEs29(xuu400000, xuu30000, app(ty_Maybe, bff)) -> new_esEs12(xuu400000, xuu30000, bff) 25.38/9.11 new_esEs35(xuu98, xuu101, app(ty_Maybe, dfc)) -> new_esEs12(xuu98, xuu101, dfc) 25.38/9.11 new_esEs38(xuu591, xuu601, ty_Bool) -> new_esEs15(xuu591, xuu601) 25.38/9.11 new_lt20(xuu98, xuu101, app(ty_Maybe, dfc)) -> new_lt13(xuu98, xuu101, dfc) 25.38/9.11 new_esEs38(xuu591, xuu601, app(app(ty_Either, fde), fdf)) -> new_esEs17(xuu591, xuu601, fde, fdf) 25.38/9.11 new_primCompAux00(xuu34, xuu35, EQ, app(app(app(ty_@3, cff), cfg), cfh)) -> new_compare19(xuu34, xuu35, cff, cfg, cfh) 25.38/9.11 new_esEs5(xuu40001, xuu3001, ty_Char) -> new_esEs18(xuu40001, xuu3001) 25.38/9.11 new_compare0(xuu4000, xuu300, app(ty_[], ddd)) -> new_compare18(xuu4000, xuu300, ddd) 25.38/9.11 new_ltEs18(xuu59, xuu60) -> new_fsEs(new_compare9(xuu59, xuu60)) 25.38/9.11 new_esEs30(xuu111, xuu113, app(ty_Maybe, cae)) -> new_esEs12(xuu111, xuu113, cae) 25.38/9.11 new_compare10(xuu137, xuu138, False, ebg, ebh) -> GT 25.38/9.11 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.11 new_ltEs14(@2(xuu590, xuu591), @2(xuu600, xuu601), ha, hb) -> new_pePe(new_lt6(xuu590, xuu600, ha), new_asAs(new_esEs26(xuu590, xuu600, ha), new_ltEs19(xuu591, xuu601, hb))) 25.38/9.11 new_esEs38(xuu591, xuu601, ty_Integer) -> new_esEs23(xuu591, xuu601) 25.38/9.11 new_lt19(xuu111, xuu113, ty_Bool) -> new_lt12(xuu111, xuu113) 25.38/9.11 new_esEs19(LT, LT) -> True 25.38/9.11 new_primCompAux00(xuu34, xuu35, EQ, ty_Float) -> new_compare13(xuu34, xuu35) 25.38/9.11 new_esEs30(xuu111, xuu113, app(ty_Ratio, cad)) -> new_esEs21(xuu111, xuu113, cad) 25.38/9.11 new_lt22(xuu590, xuu600, ty_Ordering) -> new_lt16(xuu590, xuu600) 25.38/9.11 new_esEs27(xuu400002, xuu30002, app(app(ty_@2, bcb), bcc)) -> new_esEs13(xuu400002, xuu30002, bcb, bcc) 25.38/9.11 new_esEs6(xuu40000, xuu3000, app(app(ty_@2, eha), ehb)) -> new_esEs13(xuu40000, xuu3000, eha, ehb) 25.38/9.11 new_primCmpInt(Pos(Succ(xuu400000)), Pos(xuu3000)) -> new_primCmpNat0(Succ(xuu400000), xuu3000) 25.38/9.11 new_esEs38(xuu591, xuu601, ty_@0) -> new_esEs22(xuu591, xuu601) 25.38/9.11 new_lt18(xuu98, xuu101) -> new_esEs19(new_compare9(xuu98, xuu101), LT) 25.38/9.11 new_esEs10(xuu40001, xuu3001, app(ty_Maybe, eb)) -> new_esEs12(xuu40001, xuu3001, eb) 25.38/9.11 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(ty_[], cfa)) -> new_esEs24(xuu400000, xuu30000, cfa) 25.38/9.11 new_esEs29(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.11 new_lt23(xuu591, xuu601, ty_Char) -> new_lt4(xuu591, xuu601) 25.38/9.11 new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_Either, cga), cgb)) -> new_compare15(xuu34, xuu35, cga, cgb) 25.38/9.11 new_lt17(xuu98, xuu101) -> new_esEs19(new_compare13(xuu98, xuu101), LT) 25.38/9.11 new_esEs39(xuu590, xuu600, ty_Float) -> new_esEs20(xuu590, xuu600) 25.38/9.11 new_lt19(xuu111, xuu113, ty_Integer) -> new_lt18(xuu111, xuu113) 25.38/9.11 new_lt21(xuu99, xuu102, ty_Ordering) -> new_lt16(xuu99, xuu102) 25.38/9.11 new_ltEs23(xuu100, xuu103, app(ty_[], eee)) -> new_ltEs5(xuu100, xuu103, eee) 25.38/9.11 new_ltEs13(Nothing, Nothing, gh) -> True 25.38/9.11 new_ltEs13(Just(xuu590), Just(xuu600), app(app(ty_@2, egg), egh)) -> new_ltEs14(xuu590, xuu600, egg, egh) 25.38/9.11 new_ltEs13(Just(xuu590), Nothing, gh) -> False 25.38/9.11 new_lt19(xuu111, xuu113, app(ty_Maybe, cae)) -> new_lt13(xuu111, xuu113, cae) 25.38/9.11 new_ltEs12(True, False) -> False 25.38/9.11 new_esEs4(xuu40002, xuu3002, ty_Float) -> new_esEs20(xuu40002, xuu3002) 25.38/9.11 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Float, ccf) -> new_esEs20(xuu400000, xuu30000) 25.38/9.11 new_esEs33(xuu400000, xuu30000, app(app(ty_Either, ebb), ebc)) -> new_esEs17(xuu400000, xuu30000, ebb, ebc) 25.38/9.11 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_Maybe, cde), ccf) -> new_esEs12(xuu400000, xuu30000, cde) 25.38/9.11 new_esEs34(xuu99, xuu102, ty_Ordering) -> new_esEs19(xuu99, xuu102) 25.38/9.11 new_esEs14(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), bbg, bbh, bca) -> new_asAs(new_esEs29(xuu400000, xuu30000, bbg), new_asAs(new_esEs28(xuu400001, xuu30001, bbh), new_esEs27(xuu400002, xuu30002, bca))) 25.38/9.11 new_lt20(xuu98, xuu101, app(app(app(ty_@3, ecb), ecc), ecd)) -> new_lt8(xuu98, xuu101, ecb, ecc, ecd) 25.38/9.11 new_compare0(xuu4000, xuu300, ty_Int) -> new_compare17(xuu4000, xuu300) 25.38/9.11 new_ltEs22(xuu73, xuu74, app(ty_[], cha)) -> new_ltEs5(xuu73, xuu74, cha) 25.38/9.11 new_esEs10(xuu40001, xuu3001, ty_Ordering) -> new_esEs19(xuu40001, xuu3001) 25.38/9.11 new_ltEs8(Left(xuu590), Left(xuu600), ty_Ordering, gf) -> new_ltEs16(xuu590, xuu600) 25.38/9.11 new_esEs13(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), eha, ehb) -> new_asAs(new_esEs37(xuu400000, xuu30000, eha), new_esEs36(xuu400001, xuu30001, ehb)) 25.38/9.11 new_lt21(xuu99, xuu102, ty_Int) -> new_lt9(xuu99, xuu102) 25.38/9.11 new_esEs33(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.11 new_esEs34(xuu99, xuu102, app(app(ty_Either, edg), edh)) -> new_esEs17(xuu99, xuu102, edg, edh) 25.38/9.11 new_compare28(False, True) -> LT 25.38/9.11 new_esEs10(xuu40001, xuu3001, ty_Int) -> new_esEs16(xuu40001, xuu3001) 25.38/9.11 new_esEs34(xuu99, xuu102, app(ty_Maybe, eeb)) -> new_esEs12(xuu99, xuu102, eeb) 25.38/9.11 new_ltEs12(False, False) -> True 25.38/9.11 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Double) -> new_ltEs15(xuu590, xuu600) 25.38/9.11 new_compare29(Just(xuu40000), Nothing, dde) -> GT 25.38/9.11 new_esEs7(xuu40000, xuu3000, app(app(ty_@2, dah), dba)) -> new_esEs13(xuu40000, xuu3000, dah, dba) 25.38/9.11 new_esEs17(Left(xuu400000), Right(xuu30000), cdg, ccf) -> False 25.38/9.11 new_esEs17(Right(xuu400000), Left(xuu30000), cdg, ccf) -> False 25.38/9.11 new_esEs34(xuu99, xuu102, ty_Integer) -> new_esEs23(xuu99, xuu102) 25.38/9.11 new_ltEs15(xuu59, xuu60) -> new_fsEs(new_compare30(xuu59, xuu60)) 25.38/9.11 new_esEs34(xuu99, xuu102, ty_@0) -> new_esEs22(xuu99, xuu102) 25.38/9.11 new_esEs4(xuu40002, xuu3002, ty_Char) -> new_esEs18(xuu40002, xuu3002) 25.38/9.11 new_compare13(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.11 new_compare13(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.11 new_lt22(xuu590, xuu600, ty_Int) -> new_lt9(xuu590, xuu600) 25.38/9.11 new_ltEs24(xuu592, xuu602, app(ty_Ratio, ffa)) -> new_ltEs11(xuu592, xuu602, ffa) 25.38/9.11 new_esEs39(xuu590, xuu600, ty_Ordering) -> new_esEs19(xuu590, xuu600) 25.38/9.11 new_esEs28(xuu400001, xuu30001, app(ty_Maybe, bed)) -> new_esEs12(xuu400001, xuu30001, bed) 25.38/9.11 new_lt19(xuu111, xuu113, app(app(app(ty_@3, bhg), bhh), caa)) -> new_lt8(xuu111, xuu113, bhg, bhh, caa) 25.38/9.11 new_lt6(xuu590, xuu600, ty_Float) -> new_lt17(xuu590, xuu600) 25.38/9.11 new_esEs39(xuu590, xuu600, ty_Integer) -> new_esEs23(xuu590, xuu600) 25.38/9.11 new_lt19(xuu111, xuu113, ty_@0) -> new_lt5(xuu111, xuu113) 25.38/9.11 new_compare28(True, True) -> EQ 25.38/9.11 new_esEs27(xuu400002, xuu30002, app(ty_[], bdc)) -> new_esEs24(xuu400002, xuu30002, bdc) 25.38/9.11 new_lt22(xuu590, xuu600, ty_Integer) -> new_lt18(xuu590, xuu600) 25.38/9.11 new_lt19(xuu111, xuu113, ty_Ordering) -> new_lt16(xuu111, xuu113) 25.38/9.11 new_esEs27(xuu400002, xuu30002, app(ty_Ratio, bda)) -> new_esEs21(xuu400002, xuu30002, bda) 25.38/9.11 new_esEs26(xuu590, xuu600, ty_Double) -> new_esEs25(xuu590, xuu600) 25.38/9.11 new_ltEs8(Left(xuu590), Left(xuu600), ty_Float, gf) -> new_ltEs17(xuu590, xuu600) 25.38/9.11 new_ltEs8(Left(xuu590), Left(xuu600), ty_Integer, gf) -> new_ltEs18(xuu590, xuu600) 25.38/9.11 new_ltEs8(Left(xuu590), Right(xuu600), ge, gf) -> True 25.38/9.11 new_esEs24(:(xuu400000, xuu400001), :(xuu30000, xuu30001), ead) -> new_asAs(new_esEs33(xuu400000, xuu30000, ead), new_esEs24(xuu400001, xuu30001, ead)) 25.38/9.11 new_esEs28(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.38/9.11 new_lt19(xuu111, xuu113, ty_Int) -> new_lt9(xuu111, xuu113) 25.38/9.11 new_esEs37(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.11 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_Ratio, cd)) -> new_esEs21(xuu400000, xuu30000, cd) 25.38/9.11 new_esEs19(LT, GT) -> False 25.38/9.11 new_esEs19(GT, LT) -> False 25.38/9.11 new_ltEs4(xuu59, xuu60, app(ty_[], ga)) -> new_ltEs5(xuu59, xuu60, ga) 25.38/9.11 new_ltEs10(xuu59, xuu60) -> new_fsEs(new_compare6(xuu59, xuu60)) 25.38/9.11 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_Maybe, dgg), gf) -> new_ltEs13(xuu590, xuu600, dgg) 25.38/9.11 new_esEs29(xuu400000, xuu30000, app(ty_Ratio, bfe)) -> new_esEs21(xuu400000, xuu30000, bfe) 25.38/9.11 new_lt22(xuu590, xuu600, ty_Float) -> new_lt17(xuu590, xuu600) 25.38/9.11 new_ltEs6(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), gb, gc, gd) -> new_pePe(new_lt22(xuu590, xuu600, gb), new_asAs(new_esEs39(xuu590, xuu600, gb), new_pePe(new_lt23(xuu591, xuu601, gc), new_asAs(new_esEs38(xuu591, xuu601, gc), new_ltEs24(xuu592, xuu602, gd))))) 25.38/9.11 new_esEs38(xuu591, xuu601, ty_Ordering) -> new_esEs19(xuu591, xuu601) 25.38/9.11 new_ltEs8(Left(xuu590), Left(xuu600), app(app(ty_@2, dgh), dha), gf) -> new_ltEs14(xuu590, xuu600, dgh, dha) 25.38/9.11 new_ltEs21(xuu66, xuu67, app(ty_[], cbb)) -> new_ltEs5(xuu66, xuu67, cbb) 25.38/9.11 new_lt20(xuu98, xuu101, ty_Integer) -> new_lt18(xuu98, xuu101) 25.38/9.11 new_lt20(xuu98, xuu101, ty_Int) -> new_lt9(xuu98, xuu101) 25.38/9.11 new_primCompAux00(xuu34, xuu35, EQ, ty_Int) -> new_compare17(xuu34, xuu35) 25.38/9.11 new_lt20(xuu98, xuu101, ty_Char) -> new_lt4(xuu98, xuu101) 25.38/9.11 new_compare29(Nothing, Just(xuu3000), dde) -> LT 25.38/9.11 new_esEs37(xuu400000, xuu30000, app(app(ty_Either, fbb), fbc)) -> new_esEs17(xuu400000, xuu30000, fbb, fbc) 25.38/9.11 new_esEs30(xuu111, xuu113, ty_Double) -> new_esEs25(xuu111, xuu113) 25.38/9.11 new_esEs35(xuu98, xuu101, app(app(ty_Either, cfb), cfc)) -> new_esEs17(xuu98, xuu101, cfb, cfc) 25.38/9.11 new_lt23(xuu591, xuu601, ty_@0) -> new_lt5(xuu591, xuu601) 25.38/9.11 new_esEs35(xuu98, xuu101, ty_Integer) -> new_esEs23(xuu98, xuu101) 25.38/9.11 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Ordering, ccf) -> new_esEs19(xuu400000, xuu30000) 25.38/9.11 new_compare27(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Integer) -> new_compare9(new_sr0(xuu40000, xuu3001), new_sr0(xuu3000, xuu40001)) 25.38/9.11 new_esEs36(xuu400001, xuu30001, ty_Float) -> new_esEs20(xuu400001, xuu30001) 25.38/9.11 new_esEs25(Double(xuu400000, xuu400001), Double(xuu30000, xuu30001)) -> new_esEs16(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) 25.38/9.11 new_esEs35(xuu98, xuu101, ty_Char) -> new_esEs18(xuu98, xuu101) 25.38/9.11 new_ltEs4(xuu59, xuu60, ty_Float) -> new_ltEs17(xuu59, xuu60) 25.38/9.11 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_Ratio, ege)) -> new_ltEs11(xuu590, xuu600, ege) 25.38/9.11 new_primPlusNat1(Zero, Zero) -> Zero 25.38/9.11 new_ltEs4(xuu59, xuu60, ty_Integer) -> new_ltEs18(xuu59, xuu60) 25.38/9.11 new_primCompAux00(xuu34, xuu35, EQ, ty_Ordering) -> new_compare16(xuu34, xuu35) 25.38/9.11 new_primCompAux00(xuu34, xuu35, EQ, app(ty_Ratio, cgc)) -> new_compare27(xuu34, xuu35, cgc) 25.38/9.11 new_compare16(GT, GT) -> EQ 25.38/9.11 new_esEs32(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.11 new_compare0(xuu4000, xuu300, ty_Double) -> new_compare30(xuu4000, xuu300) 25.38/9.11 new_ltEs21(xuu66, xuu67, ty_Float) -> new_ltEs17(xuu66, xuu67) 25.38/9.11 new_lt9(xuu98, xuu101) -> new_esEs19(new_compare17(xuu98, xuu101), LT) 25.38/9.11 new_lt20(xuu98, xuu101, ty_@0) -> new_lt5(xuu98, xuu101) 25.38/9.11 new_esEs9(xuu40000, xuu3000, app(app(ty_@2, ddf), ddg)) -> new_esEs13(xuu40000, xuu3000, ddf, ddg) 25.38/9.11 new_esEs34(xuu99, xuu102, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs14(xuu99, xuu102, edd, ede, edf) 25.38/9.11 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Char, ccf) -> new_esEs18(xuu400000, xuu30000) 25.38/9.11 new_lt21(xuu99, xuu102, app(app(app(ty_@3, edd), ede), edf)) -> new_lt8(xuu99, xuu102, edd, ede, edf) 25.38/9.11 new_esEs15(False, True) -> False 25.38/9.11 new_esEs15(True, False) -> False 25.38/9.11 new_esEs31(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.38/9.11 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(app(ty_@2, cdh), cea)) -> new_esEs13(xuu400000, xuu30000, cdh, cea) 25.38/9.11 new_esEs34(xuu99, xuu102, ty_Bool) -> new_esEs15(xuu99, xuu102) 25.38/9.11 new_esEs10(xuu40001, xuu3001, app(app(app(ty_@3, dd), de), df)) -> new_esEs14(xuu40001, xuu3001, dd, de, df) 25.38/9.11 new_esEs35(xuu98, xuu101, ty_Ordering) -> new_esEs19(xuu98, xuu101) 25.38/9.11 new_lt4(xuu98, xuu101) -> new_esEs19(new_compare6(xuu98, xuu101), LT) 25.38/9.11 new_esEs11(xuu40000, xuu3000, app(app(app(ty_@3, ef), eg), eh)) -> new_esEs14(xuu40000, xuu3000, ef, eg, eh) 25.38/9.11 new_esEs37(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.11 new_esEs10(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) 25.38/9.11 new_primCmpNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primCmpNat0(xuu400000, xuu30000) 25.38/9.11 new_lt21(xuu99, xuu102, ty_@0) -> new_lt5(xuu99, xuu102) 25.38/9.11 new_esEs30(xuu111, xuu113, ty_Int) -> new_esEs16(xuu111, xuu113) 25.38/9.11 new_lt19(xuu111, xuu113, ty_Char) -> new_lt4(xuu111, xuu113) 25.38/9.11 new_esEs38(xuu591, xuu601, ty_Float) -> new_esEs20(xuu591, xuu601) 25.38/9.11 new_lt5(xuu98, xuu101) -> new_esEs19(new_compare8(xuu98, xuu101), LT) 25.38/9.11 new_lt23(xuu591, xuu601, ty_Float) -> new_lt17(xuu591, xuu601) 25.38/9.11 new_esEs37(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.11 new_lt22(xuu590, xuu600, ty_@0) -> new_lt5(xuu590, xuu600) 25.38/9.11 new_esEs37(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.11 new_esEs36(xuu400001, xuu30001, ty_@0) -> new_esEs22(xuu400001, xuu30001) 25.38/9.11 new_lt23(xuu591, xuu601, app(app(app(ty_@3, fdb), fdc), fdd)) -> new_lt8(xuu591, xuu601, fdb, fdc, fdd) 25.38/9.11 new_esEs11(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.11 new_esEs36(xuu400001, xuu30001, app(app(ty_Either, ehh), faa)) -> new_esEs17(xuu400001, xuu30001, ehh, faa) 25.38/9.11 new_esEs28(xuu400001, xuu30001, ty_Double) -> new_esEs25(xuu400001, xuu30001) 25.38/9.11 new_esEs37(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.11 new_compare211(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, ece, ecf, ecg) -> new_compare112(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, new_lt20(xuu98, xuu101, ece), new_asAs(new_esEs35(xuu98, xuu101, ece), new_pePe(new_lt21(xuu99, xuu102, ecf), new_asAs(new_esEs34(xuu99, xuu102, ecf), new_ltEs23(xuu100, xuu103, ecg)))), ece, ecf, ecg) 25.38/9.11 new_ltEs20(xuu112, xuu114, app(ty_[], bgd)) -> new_ltEs5(xuu112, xuu114, bgd) 25.38/9.11 new_esEs36(xuu400001, xuu30001, ty_Char) -> new_esEs18(xuu400001, xuu30001) 25.38/9.11 new_compare110(xuu153, xuu154, True, eca) -> LT 25.38/9.11 new_compare14(xuu144, xuu145, False, dfa, dfb) -> GT 25.38/9.11 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.11 new_ltEs20(xuu112, xuu114, ty_Float) -> new_ltEs17(xuu112, xuu114) 25.38/9.11 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(ty_@2, ccd), cce), ccf) -> new_esEs13(xuu400000, xuu30000, ccd, cce) 25.38/9.11 new_compare15(Right(xuu40000), Left(xuu3000), daf, dag) -> GT 25.38/9.11 new_lt22(xuu590, xuu600, app(app(app(ty_@3, fbh), fca), fcb)) -> new_lt8(xuu590, xuu600, fbh, fca, fcb) 25.38/9.11 new_lt6(xuu590, xuu600, ty_@0) -> new_lt5(xuu590, xuu600) 25.38/9.11 new_lt6(xuu590, xuu600, ty_Integer) -> new_lt18(xuu590, xuu600) 25.38/9.11 new_esEs33(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.11 new_ltEs13(Nothing, Just(xuu600), gh) -> True 25.38/9.11 new_lt7(xuu98, xuu101, cgg) -> new_esEs19(new_compare18(xuu98, xuu101, cgg), LT) 25.38/9.11 new_lt21(xuu99, xuu102, ty_Integer) -> new_lt18(xuu99, xuu102) 25.38/9.11 new_esEs36(xuu400001, xuu30001, ty_Ordering) -> new_esEs19(xuu400001, xuu30001) 25.38/9.11 new_esEs28(xuu400001, xuu30001, app(ty_Ratio, bec)) -> new_esEs21(xuu400001, xuu30001, bec) 25.38/9.11 new_compare16(LT, EQ) -> LT 25.38/9.11 new_ltEs19(xuu591, xuu601, ty_Float) -> new_ltEs17(xuu591, xuu601) 25.38/9.11 new_esEs33(xuu400000, xuu30000, app(app(app(ty_@3, eag), eah), eba)) -> new_esEs14(xuu400000, xuu30000, eag, eah, eba) 25.38/9.11 new_esEs6(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.11 new_ltEs24(xuu592, xuu602, ty_Char) -> new_ltEs10(xuu592, xuu602) 25.38/9.11 new_primCmpInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> LT 25.38/9.11 new_lt22(xuu590, xuu600, app(ty_Maybe, fcf)) -> new_lt13(xuu590, xuu600, fcf) 25.38/9.11 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Bool, ccf) -> new_esEs15(xuu400000, xuu30000) 25.38/9.11 new_esEs37(xuu400000, xuu30000, app(ty_Maybe, fbe)) -> new_esEs12(xuu400000, xuu30000, fbe) 25.38/9.11 new_esEs34(xuu99, xuu102, ty_Char) -> new_esEs18(xuu99, xuu102) 25.38/9.11 new_ltEs7(xuu59, xuu60) -> new_fsEs(new_compare17(xuu59, xuu60)) 25.38/9.11 new_compare30(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.11 new_esEs9(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.11 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_Maybe, egf)) -> new_ltEs13(xuu590, xuu600, egf) 25.38/9.11 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_Ratio, dgf), gf) -> new_ltEs11(xuu590, xuu600, dgf) 25.38/9.11 new_ltEs20(xuu112, xuu114, ty_Integer) -> new_ltEs18(xuu112, xuu114) 25.38/9.11 new_compare14(xuu144, xuu145, True, dfa, dfb) -> LT 25.38/9.11 new_esEs37(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.11 new_lt23(xuu591, xuu601, ty_Integer) -> new_lt18(xuu591, xuu601) 25.38/9.11 new_primCmpInt(Pos(Zero), Neg(Succ(xuu30000))) -> GT 25.38/9.11 new_esEs4(xuu40002, xuu3002, ty_Bool) -> new_esEs15(xuu40002, xuu3002) 25.38/9.11 new_lt19(xuu111, xuu113, app(app(ty_Either, cab), cac)) -> new_lt10(xuu111, xuu113, cab, cac) 25.38/9.11 new_compare18([], :(xuu3000, xuu3001), ddd) -> LT 25.38/9.11 new_ltEs19(xuu591, xuu601, app(ty_[], bae)) -> new_ltEs5(xuu591, xuu601, bae) 25.38/9.11 new_ltEs22(xuu73, xuu74, app(ty_Ratio, chg)) -> new_ltEs11(xuu73, xuu74, chg) 25.38/9.11 new_primCmpInt(Neg(Succ(xuu400000)), Neg(xuu3000)) -> new_primCmpNat0(xuu3000, Succ(xuu400000)) 25.38/9.11 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.11 new_lt21(xuu99, xuu102, ty_Char) -> new_lt4(xuu99, xuu102) 25.38/9.11 new_esEs4(xuu40002, xuu3002, app(app(ty_@2, ffe), fff)) -> new_esEs13(xuu40002, xuu3002, ffe, fff) 25.38/9.11 new_esEs27(xuu400002, xuu30002, ty_Double) -> new_esEs25(xuu400002, xuu30002) 25.38/9.11 new_compare12(xuu185, xuu186, xuu187, xuu188, True, bfh, bga) -> LT 25.38/9.11 new_esEs10(xuu40001, xuu3001, app(app(ty_@2, db), dc)) -> new_esEs13(xuu40001, xuu3001, db, dc) 25.38/9.11 new_esEs9(xuu40000, xuu3000, app(ty_Ratio, dee)) -> new_esEs21(xuu40000, xuu3000, dee) 25.38/9.11 new_esEs27(xuu400002, xuu30002, app(ty_Maybe, bdb)) -> new_esEs12(xuu400002, xuu30002, bdb) 25.38/9.11 new_ltEs22(xuu73, xuu74, app(app(ty_@2, daa), dab)) -> new_ltEs14(xuu73, xuu74, daa, dab) 25.38/9.11 new_esEs8(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.11 new_esEs15(False, False) -> True 25.38/9.11 new_ltEs20(xuu112, xuu114, ty_Bool) -> new_ltEs12(xuu112, xuu114) 25.38/9.11 new_esEs33(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.11 new_primEqInt(Pos(Succ(xuu4000000)), Pos(Zero)) -> False 25.38/9.11 new_primEqInt(Pos(Zero), Pos(Succ(xuu300000))) -> False 25.38/9.11 new_lt6(xuu590, xuu600, app(app(app(ty_@3, hd), he), hf)) -> new_lt8(xuu590, xuu600, hd, he, hf) 25.38/9.11 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Ordering) -> new_ltEs16(xuu590, xuu600) 25.38/9.11 new_esEs29(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.11 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Integer, ccf) -> new_esEs23(xuu400000, xuu30000) 25.38/9.11 new_ltEs20(xuu112, xuu114, app(app(ty_Either, bgh), bha)) -> new_ltEs8(xuu112, xuu114, bgh, bha) 25.38/9.11 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.11 new_ltEs23(xuu100, xuu103, ty_Float) -> new_ltEs17(xuu100, xuu103) 25.38/9.11 new_ltEs13(Just(xuu590), Just(xuu600), ty_Char) -> new_ltEs10(xuu590, xuu600) 25.38/9.11 new_esEs39(xuu590, xuu600, ty_Char) -> new_esEs18(xuu590, xuu600) 25.38/9.11 new_primCmpNat0(Zero, Zero) -> EQ 25.38/9.11 new_esEs10(xuu40001, xuu3001, app(app(ty_Either, dg), dh)) -> new_esEs17(xuu40001, xuu3001, dg, dh) 25.38/9.11 new_lt6(xuu590, xuu600, ty_Int) -> new_lt9(xuu590, xuu600) 25.38/9.11 new_ltEs16(GT, EQ) -> False 25.38/9.11 new_primCompAux00(xuu34, xuu35, EQ, app(ty_Maybe, cgd)) -> new_compare29(xuu34, xuu35, cgd) 25.38/9.11 new_lt23(xuu591, xuu601, app(ty_[], fda)) -> new_lt7(xuu591, xuu601, fda) 25.38/9.11 new_lt20(xuu98, xuu101, ty_Ordering) -> new_lt16(xuu98, xuu101) 25.38/9.11 new_esEs4(xuu40002, xuu3002, app(ty_[], fgf)) -> new_esEs24(xuu40002, xuu3002, fgf) 25.38/9.11 new_ltEs20(xuu112, xuu114, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs6(xuu112, xuu114, bge, bgf, bgg) 25.38/9.11 new_esEs35(xuu98, xuu101, ty_Bool) -> new_esEs15(xuu98, xuu101) 25.38/9.11 new_lt11(xuu98, xuu101, ech) -> new_esEs19(new_compare27(xuu98, xuu101, ech), LT) 25.38/9.11 new_esEs27(xuu400002, xuu30002, ty_Ordering) -> new_esEs19(xuu400002, xuu30002) 25.38/9.11 new_ltEs13(Just(xuu590), Just(xuu600), ty_Double) -> new_ltEs15(xuu590, xuu600) 25.38/9.11 new_esEs37(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.11 new_compare13(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.11 new_esEs29(xuu400000, xuu30000, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs14(xuu400000, xuu30000, beh, bfa, bfb) 25.38/9.11 new_ltEs22(xuu73, xuu74, ty_Int) -> new_ltEs7(xuu73, xuu74) 25.38/9.11 new_lt12(xuu98, xuu101) -> new_esEs19(new_compare28(xuu98, xuu101), LT) 25.38/9.11 new_lt22(xuu590, xuu600, ty_Double) -> new_lt15(xuu590, xuu600) 25.38/9.11 new_compare11(xuu185, xuu186, xuu187, xuu188, True, xuu190, bfh, bga) -> new_compare12(xuu185, xuu186, xuu187, xuu188, True, bfh, bga) 25.38/9.11 new_esEs4(xuu40002, xuu3002, app(app(ty_Either, fgb), fgc)) -> new_esEs17(xuu40002, xuu3002, fgb, fgc) 25.38/9.11 new_esEs27(xuu400002, xuu30002, ty_Int) -> new_esEs16(xuu400002, xuu30002) 25.38/9.11 new_ltEs24(xuu592, xuu602, ty_Double) -> new_ltEs15(xuu592, xuu602) 25.38/9.11 new_esEs36(xuu400001, xuu30001, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs14(xuu400001, xuu30001, ehe, ehf, ehg) 25.38/9.11 new_ltEs16(LT, LT) -> True 25.38/9.11 new_lt23(xuu591, xuu601, ty_Bool) -> new_lt12(xuu591, xuu601) 25.38/9.11 new_compare16(LT, GT) -> LT 25.38/9.11 new_esEs23(Integer(xuu400000), Integer(xuu30000)) -> new_primEqInt(xuu400000, xuu30000) 25.38/9.11 new_esEs37(xuu400000, xuu30000, app(ty_Ratio, fbd)) -> new_esEs21(xuu400000, xuu30000, fbd) 25.38/9.11 new_esEs39(xuu590, xuu600, ty_@0) -> new_esEs22(xuu590, xuu600) 25.38/9.11 new_ltEs13(Just(xuu590), Just(xuu600), ty_@0) -> new_ltEs9(xuu590, xuu600) 25.38/9.11 new_esEs9(xuu40000, xuu3000, app(ty_[], deg)) -> new_esEs24(xuu40000, xuu3000, deg) 25.38/9.11 new_lt21(xuu99, xuu102, ty_Float) -> new_lt17(xuu99, xuu102) 25.38/9.11 new_esEs9(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.11 new_compare25(xuu59, xuu60, False, fg, fh) -> new_compare10(xuu59, xuu60, new_ltEs4(xuu59, xuu60, fg), fg, fh) 25.38/9.11 new_esEs4(xuu40002, xuu3002, ty_Integer) -> new_esEs23(xuu40002, xuu3002) 25.38/9.11 new_esEs9(xuu40000, xuu3000, app(app(ty_Either, dec), ded)) -> new_esEs17(xuu40000, xuu3000, dec, ded) 25.38/9.11 new_esEs11(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.11 new_esEs5(xuu40001, xuu3001, ty_Float) -> new_esEs20(xuu40001, xuu3001) 25.38/9.11 new_esEs9(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.11 new_esEs10(xuu40001, xuu3001, app(ty_Ratio, ea)) -> new_esEs21(xuu40001, xuu3001, ea) 25.38/9.11 new_primCmpNat0(Succ(xuu400000), Zero) -> GT 25.38/9.11 new_pePe(False, xuu206) -> xuu206 25.38/9.11 new_esEs39(xuu590, xuu600, app(app(app(ty_@3, fbh), fca), fcb)) -> new_esEs14(xuu590, xuu600, fbh, fca, fcb) 25.38/9.11 new_esEs11(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.11 new_lt13(xuu98, xuu101, dfc) -> new_esEs19(new_compare29(xuu98, xuu101, dfc), LT) 25.38/9.11 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.11 new_esEs8(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.11 new_compare25(xuu59, xuu60, True, fg, fh) -> EQ 25.38/9.11 new_ltEs22(xuu73, xuu74, ty_Double) -> new_ltEs15(xuu73, xuu74) 25.38/9.11 new_esEs10(xuu40001, xuu3001, app(ty_[], ec)) -> new_esEs24(xuu40001, xuu3001, ec) 25.38/9.11 new_compare210(xuu73, xuu74, True, cgh) -> EQ 25.38/9.11 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Integer) -> new_ltEs18(xuu590, xuu600) 25.38/9.11 new_esEs4(xuu40002, xuu3002, ty_Ordering) -> new_esEs19(xuu40002, xuu3002) 25.38/9.11 new_ltEs16(LT, GT) -> True 25.38/9.11 new_esEs30(xuu111, xuu113, app(app(ty_@2, caf), cag)) -> new_esEs13(xuu111, xuu113, caf, cag) 25.38/9.11 new_esEs5(xuu40001, xuu3001, ty_@0) -> new_esEs22(xuu40001, xuu3001) 25.38/9.11 new_compare0(xuu4000, xuu300, ty_Ordering) -> new_compare16(xuu4000, xuu300) 25.38/9.11 new_esEs30(xuu111, xuu113, app(app(ty_Either, cab), cac)) -> new_esEs17(xuu111, xuu113, cab, cac) 25.38/9.11 new_esEs6(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.11 new_ltEs16(LT, EQ) -> True 25.38/9.11 new_ltEs16(EQ, LT) -> False 25.38/9.11 new_lt6(xuu590, xuu600, app(ty_Maybe, bab)) -> new_lt13(xuu590, xuu600, bab) 25.38/9.11 new_esEs35(xuu98, xuu101, app(ty_Ratio, ech)) -> new_esEs21(xuu98, xuu101, ech) 25.38/9.11 new_esEs30(xuu111, xuu113, ty_Bool) -> new_esEs15(xuu111, xuu113) 25.38/9.11 new_lt14(xuu98, xuu101, eda, edb) -> new_esEs19(new_compare7(xuu98, xuu101, eda, edb), LT) 25.38/9.11 new_primEqInt(Pos(Zero), Neg(Succ(xuu300000))) -> False 25.38/9.11 new_primEqInt(Neg(Zero), Pos(Succ(xuu300000))) -> False 25.38/9.11 new_ltEs16(GT, LT) -> False 25.38/9.11 new_esEs7(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.11 new_esEs34(xuu99, xuu102, ty_Int) -> new_esEs16(xuu99, xuu102) 25.38/9.11 new_compare16(EQ, EQ) -> EQ 25.38/9.11 new_esEs10(xuu40001, xuu3001, ty_Integer) -> new_esEs23(xuu40001, xuu3001) 25.38/9.11 new_ltEs17(xuu59, xuu60) -> new_fsEs(new_compare13(xuu59, xuu60)) 25.38/9.11 new_esEs29(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.11 new_ltEs22(xuu73, xuu74, ty_@0) -> new_ltEs9(xuu73, xuu74) 25.38/9.11 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Int, ccf) -> new_esEs16(xuu400000, xuu30000) 25.38/9.11 new_esEs37(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.11 new_esEs30(xuu111, xuu113, ty_Integer) -> new_esEs23(xuu111, xuu113) 25.38/9.11 new_esEs5(xuu40001, xuu3001, app(app(app(ty_@3, fha), fhb), fhc)) -> new_esEs14(xuu40001, xuu3001, fha, fhb, fhc) 25.38/9.11 new_ltEs24(xuu592, xuu602, app(ty_[], fec)) -> new_ltEs5(xuu592, xuu602, fec) 25.38/9.11 new_lt19(xuu111, xuu113, ty_Float) -> new_lt17(xuu111, xuu113) 25.38/9.11 new_esEs24(:(xuu400000, xuu400001), [], ead) -> False 25.38/9.11 new_esEs24([], :(xuu30000, xuu30001), ead) -> False 25.38/9.11 new_compare24(xuu111, xuu112, xuu113, xuu114, False, bgb, bgc) -> new_compare11(xuu111, xuu112, xuu113, xuu114, new_lt19(xuu111, xuu113, bgb), new_asAs(new_esEs30(xuu111, xuu113, bgb), new_ltEs20(xuu112, xuu114, bgc)), bgb, bgc) 25.38/9.11 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(app(app(ty_@3, dhc), dhd), dhe)) -> new_ltEs6(xuu590, xuu600, dhc, dhd, dhe) 25.38/9.11 new_compare26(xuu66, xuu67, False, cah, cba) -> new_compare14(xuu66, xuu67, new_ltEs21(xuu66, xuu67, cba), cah, cba) 25.38/9.11 new_compare0(xuu4000, xuu300, app(ty_Ratio, dfg)) -> new_compare27(xuu4000, xuu300, dfg) 25.38/9.11 new_esEs16(xuu40000, xuu3000) -> new_primEqInt(xuu40000, xuu3000) 25.38/9.11 new_esEs19(EQ, EQ) -> True 25.38/9.11 new_esEs7(xuu40000, xuu3000, app(app(ty_Either, dbe), dbf)) -> new_esEs17(xuu40000, xuu3000, dbe, dbf) 25.38/9.11 new_lt20(xuu98, xuu101, ty_Bool) -> new_lt12(xuu98, xuu101) 25.38/9.11 new_ltEs16(EQ, GT) -> True 25.38/9.11 new_esEs20(Float(xuu400000, xuu400001), Float(xuu30000, xuu30001)) -> new_esEs16(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) 25.38/9.11 new_esEs30(xuu111, xuu113, app(ty_[], bhf)) -> new_esEs24(xuu111, xuu113, bhf) 25.38/9.11 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(app(ty_Either, dhf), dhg)) -> new_ltEs8(xuu590, xuu600, dhf, dhg) 25.38/9.11 new_ltEs16(EQ, EQ) -> True 25.38/9.11 new_esEs27(xuu400002, xuu30002, ty_Bool) -> new_esEs15(xuu400002, xuu30002) 25.38/9.11 new_esEs32(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.11 new_lt21(xuu99, xuu102, app(app(ty_Either, edg), edh)) -> new_lt10(xuu99, xuu102, edg, edh) 25.38/9.11 new_compare28(True, False) -> GT 25.38/9.11 new_esEs6(xuu40000, xuu3000, app(app(ty_Either, cdg), ccf)) -> new_esEs17(xuu40000, xuu3000, cdg, ccf) 25.38/9.11 new_esEs26(xuu590, xuu600, app(app(app(ty_@3, hd), he), hf)) -> new_esEs14(xuu590, xuu600, hd, he, hf) 25.38/9.11 new_ltEs8(Left(xuu590), Left(xuu600), ty_Bool, gf) -> new_ltEs12(xuu590, xuu600) 25.38/9.11 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs14(xuu400000, xuu30000, bg, bh, ca) 25.38/9.11 new_esEs28(xuu400001, xuu30001, app(app(ty_@2, bdd), bde)) -> new_esEs13(xuu400001, xuu30001, bdd, bde) 25.38/9.11 new_lt21(xuu99, xuu102, ty_Bool) -> new_lt12(xuu99, xuu102) 25.38/9.11 new_esEs28(xuu400001, xuu30001, ty_Bool) -> new_esEs15(xuu400001, xuu30001) 25.38/9.11 new_esEs6(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.11 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.11 new_lt8(xuu98, xuu101, ecb, ecc, ecd) -> new_esEs19(new_compare19(xuu98, xuu101, ecb, ecc, ecd), LT) 25.38/9.11 new_ltEs23(xuu100, xuu103, ty_Integer) -> new_ltEs18(xuu100, xuu103) 25.38/9.11 new_primCompAux00(xuu34, xuu35, EQ, ty_Integer) -> new_compare9(xuu34, xuu35) 25.38/9.11 new_ltEs20(xuu112, xuu114, app(app(ty_@2, bhd), bhe)) -> new_ltEs14(xuu112, xuu114, bhd, bhe) 25.38/9.11 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.11 new_ltEs20(xuu112, xuu114, ty_Ordering) -> new_ltEs16(xuu112, xuu114) 25.38/9.11 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Int) -> new_ltEs7(xuu590, xuu600) 25.38/9.11 new_esEs7(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.11 new_esEs6(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.11 new_lt23(xuu591, xuu601, ty_Ordering) -> new_lt16(xuu591, xuu601) 25.38/9.11 new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, dac, dad, dae) -> LT 25.38/9.11 new_primMulInt(Neg(xuu30000), Neg(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.11 new_primCmpInt(Pos(Zero), Pos(Succ(xuu30000))) -> new_primCmpNat0(Zero, Succ(xuu30000)) 25.38/9.11 new_ltEs22(xuu73, xuu74, ty_Integer) -> new_ltEs18(xuu73, xuu74) 25.38/9.11 new_esEs9(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.11 new_esEs34(xuu99, xuu102, ty_Double) -> new_esEs25(xuu99, xuu102) 25.38/9.11 new_fsEs(xuu207) -> new_not(new_esEs19(xuu207, GT)) 25.38/9.11 new_compare210(xuu73, xuu74, False, cgh) -> new_compare110(xuu73, xuu74, new_ltEs22(xuu73, xuu74, cgh), cgh) 25.38/9.11 new_esEs34(xuu99, xuu102, app(ty_Ratio, eea)) -> new_esEs21(xuu99, xuu102, eea) 25.38/9.11 new_esEs6(xuu40000, xuu3000, app(ty_[], ead)) -> new_esEs24(xuu40000, xuu3000, ead) 25.38/9.11 new_compare0(xuu4000, xuu300, ty_Integer) -> new_compare9(xuu4000, xuu300) 25.38/9.11 new_primMulInt(Pos(xuu30000), Neg(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.11 new_primMulInt(Neg(xuu30000), Pos(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.11 new_esEs34(xuu99, xuu102, app(ty_[], edc)) -> new_esEs24(xuu99, xuu102, edc) 25.38/9.11 new_ltEs21(xuu66, xuu67, app(ty_Maybe, cca)) -> new_ltEs13(xuu66, xuu67, cca) 25.38/9.11 new_primCompAux00(xuu34, xuu35, EQ, app(ty_[], cfe)) -> new_compare18(xuu34, xuu35, cfe) 25.38/9.11 new_esEs8(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.11 new_esEs28(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.38/9.11 new_esEs8(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.11 new_lt15(xuu98, xuu101) -> new_esEs19(new_compare30(xuu98, xuu101), LT) 25.38/9.11 new_esEs27(xuu400002, xuu30002, ty_@0) -> new_esEs22(xuu400002, xuu30002) 25.38/9.11 new_ltEs23(xuu100, xuu103, ty_Ordering) -> new_ltEs16(xuu100, xuu103) 25.38/9.11 new_ltEs22(xuu73, xuu74, app(app(ty_Either, che), chf)) -> new_ltEs8(xuu73, xuu74, che, chf) 25.38/9.11 new_sr0(Integer(xuu30000), Integer(xuu400010)) -> Integer(new_primMulInt(xuu30000, xuu400010)) 25.38/9.11 new_lt20(xuu98, xuu101, app(ty_[], cgg)) -> new_lt7(xuu98, xuu101, cgg) 25.38/9.11 new_esEs30(xuu111, xuu113, ty_Ordering) -> new_esEs19(xuu111, xuu113) 25.38/9.11 new_lt6(xuu590, xuu600, app(app(ty_Either, hg), hh)) -> new_lt10(xuu590, xuu600, hg, hh) 25.38/9.11 new_esEs35(xuu98, xuu101, ty_Double) -> new_esEs25(xuu98, xuu101) 25.38/9.11 new_esEs38(xuu591, xuu601, app(app(ty_@2, fea), feb)) -> new_esEs13(xuu591, xuu601, fea, feb) 25.38/9.11 new_esEs8(xuu40000, xuu3000, app(ty_Maybe, ddb)) -> new_esEs12(xuu40000, xuu3000, ddb) 25.38/9.11 new_asAs(True, xuu132) -> xuu132 25.38/9.11 new_ltEs23(xuu100, xuu103, app(app(app(ty_@3, eef), eeg), eeh)) -> new_ltEs6(xuu100, xuu103, eef, eeg, eeh) 25.38/9.11 new_esEs22(@0, @0) -> True 25.38/9.11 new_compare30(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.11 new_compare30(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.11 new_lt6(xuu590, xuu600, app(ty_Ratio, baa)) -> new_lt11(xuu590, xuu600, baa) 25.38/9.11 new_lt19(xuu111, xuu113, app(ty_[], bhf)) -> new_lt7(xuu111, xuu113, bhf) 25.38/9.11 new_lt6(xuu590, xuu600, app(app(ty_@2, bac), bad)) -> new_lt14(xuu590, xuu600, bac, bad) 25.38/9.11 new_esEs26(xuu590, xuu600, ty_Char) -> new_esEs18(xuu590, xuu600) 25.38/9.11 new_ltEs19(xuu591, xuu601, ty_Double) -> new_ltEs15(xuu591, xuu601) 25.38/9.11 new_esEs29(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.11 new_ltEs8(Left(xuu590), Left(xuu600), ty_Int, gf) -> new_ltEs7(xuu590, xuu600) 25.38/9.11 new_ltEs20(xuu112, xuu114, app(ty_Ratio, bhb)) -> new_ltEs11(xuu112, xuu114, bhb) 25.38/9.11 new_compare211(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, True, ece, ecf, ecg) -> EQ 25.38/9.11 new_compare12(xuu185, xuu186, xuu187, xuu188, False, bfh, bga) -> GT 25.38/9.11 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Double, ccf) -> new_esEs25(xuu400000, xuu30000) 25.38/9.11 new_esEs33(xuu400000, xuu30000, app(app(ty_@2, eae), eaf)) -> new_esEs13(xuu400000, xuu30000, eae, eaf) 25.38/9.11 new_esEs8(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.11 new_ltEs22(xuu73, xuu74, ty_Char) -> new_ltEs10(xuu73, xuu74) 25.38/9.11 new_sr(xuu3000, xuu40001) -> new_primMulInt(xuu3000, xuu40001) 25.38/9.11 new_esEs39(xuu590, xuu600, app(ty_[], fbg)) -> new_esEs24(xuu590, xuu600, fbg) 25.38/9.11 new_ltEs16(GT, GT) -> True 25.38/9.11 new_esEs38(xuu591, xuu601, app(ty_Ratio, fdg)) -> new_esEs21(xuu591, xuu601, fdg) 25.38/9.11 new_esEs28(xuu400001, xuu30001, ty_Ordering) -> new_esEs19(xuu400001, xuu30001) 25.38/9.11 new_primMulNat0(Zero, Zero) -> Zero 25.38/9.11 new_esEs4(xuu40002, xuu3002, ty_Int) -> new_esEs16(xuu40002, xuu3002) 25.38/9.11 new_esEs7(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.11 new_esEs8(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.11 new_esEs27(xuu400002, xuu30002, app(app(ty_Either, bcg), bch)) -> new_esEs17(xuu400002, xuu30002, bcg, bch) 25.38/9.11 new_compare0(xuu4000, xuu300, app(app(app(ty_@3, dfd), dfe), dff)) -> new_compare19(xuu4000, xuu300, dfd, dfe, dff) 25.38/9.11 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_@0) -> new_ltEs9(xuu590, xuu600) 25.38/9.11 new_ltEs13(Just(xuu590), Just(xuu600), ty_Ordering) -> new_ltEs16(xuu590, xuu600) 25.38/9.11 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_[], dfh), gf) -> new_ltEs5(xuu590, xuu600, dfh) 25.38/9.11 new_esEs7(xuu40000, xuu3000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs14(xuu40000, xuu3000, dbb, dbc, dbd) 25.38/9.11 new_esEs38(xuu591, xuu601, app(ty_[], fda)) -> new_esEs24(xuu591, xuu601, fda) 25.38/9.11 new_esEs4(xuu40002, xuu3002, app(ty_Maybe, fge)) -> new_esEs12(xuu40002, xuu3002, fge) 25.38/9.11 new_ltEs19(xuu591, xuu601, app(ty_Maybe, bbd)) -> new_ltEs13(xuu591, xuu601, bbd) 25.38/9.11 new_ltEs4(xuu59, xuu60, ty_Bool) -> new_ltEs12(xuu59, xuu60) 25.38/9.11 new_esEs36(xuu400001, xuu30001, ty_Double) -> new_esEs25(xuu400001, xuu30001) 25.38/9.11 new_ltEs8(Right(xuu590), Right(xuu600), ge, app(ty_[], dhb)) -> new_ltEs5(xuu590, xuu600, dhb) 25.38/9.11 new_lt22(xuu590, xuu600, app(app(ty_Either, fcc), fcd)) -> new_lt10(xuu590, xuu600, fcc, fcd) 25.38/9.11 new_ltEs19(xuu591, xuu601, app(ty_Ratio, bbc)) -> new_ltEs11(xuu591, xuu601, bbc) 25.38/9.11 new_lt23(xuu591, xuu601, app(app(ty_@2, fea), feb)) -> new_lt14(xuu591, xuu601, fea, feb) 25.38/9.11 new_esEs28(xuu400001, xuu30001, app(app(ty_Either, bea), beb)) -> new_esEs17(xuu400001, xuu30001, bea, beb) 25.38/9.11 new_esEs30(xuu111, xuu113, ty_Float) -> new_esEs20(xuu111, xuu113) 25.38/9.11 new_lt16(xuu98, xuu101) -> new_esEs19(new_compare16(xuu98, xuu101), LT) 25.38/9.11 new_compare16(EQ, GT) -> LT 25.38/9.11 new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, False, dac, dad, dae) -> GT 25.38/9.11 new_esEs39(xuu590, xuu600, app(ty_Maybe, fcf)) -> new_esEs12(xuu590, xuu600, fcf) 25.38/9.11 new_lt23(xuu591, xuu601, app(app(ty_Either, fde), fdf)) -> new_lt10(xuu591, xuu601, fde, fdf) 25.38/9.11 new_ltEs4(xuu59, xuu60, ty_Char) -> new_ltEs10(xuu59, xuu60) 25.38/9.11 new_esEs28(xuu400001, xuu30001, ty_@0) -> new_esEs22(xuu400001, xuu30001) 25.38/9.11 new_primEqInt(Neg(Succ(xuu4000000)), Neg(Zero)) -> False 25.38/9.11 new_primEqInt(Neg(Zero), Neg(Succ(xuu300000))) -> False 25.38/9.11 new_esEs12(Just(xuu400000), Just(xuu30000), ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.11 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.11 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(ty_Maybe, ceh)) -> new_esEs12(xuu400000, xuu30000, ceh) 25.38/9.11 new_esEs29(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.11 new_primEqInt(Pos(Succ(xuu4000000)), Pos(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) 25.38/9.11 new_esEs21(:%(xuu400000, xuu400001), :%(xuu30000, xuu30001), deh) -> new_asAs(new_esEs32(xuu400000, xuu30000, deh), new_esEs31(xuu400001, xuu30001, deh)) 25.38/9.11 new_esEs39(xuu590, xuu600, ty_Int) -> new_esEs16(xuu590, xuu600) 25.38/9.11 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(ty_Either, cb), cc)) -> new_esEs17(xuu400000, xuu30000, cb, cc) 25.38/9.11 new_esEs6(xuu40000, xuu3000, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs14(xuu40000, xuu3000, bbg, bbh, bca) 25.38/9.11 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_[], efg)) -> new_ltEs5(xuu590, xuu600, efg) 25.38/9.11 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.11 new_lt22(xuu590, xuu600, app(app(ty_@2, fcg), fch)) -> new_lt14(xuu590, xuu600, fcg, fch) 25.38/9.11 new_esEs37(xuu400000, xuu30000, app(app(ty_@2, fae), faf)) -> new_esEs13(xuu400000, xuu30000, fae, faf) 25.38/9.11 new_ltEs4(xuu59, xuu60, ty_Double) -> new_ltEs15(xuu59, xuu60) 25.38/9.11 new_esEs33(xuu400000, xuu30000, app(ty_[], ebf)) -> new_esEs24(xuu400000, xuu30000, ebf) 25.38/9.11 new_primEqInt(Pos(Succ(xuu4000000)), Neg(xuu30000)) -> False 25.38/9.11 new_primEqInt(Neg(Succ(xuu4000000)), Pos(xuu30000)) -> False 25.38/9.11 new_esEs6(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.11 new_esEs9(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.11 new_primCmpInt(Neg(Zero), Neg(Succ(xuu30000))) -> new_primCmpNat0(Succ(xuu30000), Zero) 25.38/9.11 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.11 new_esEs7(xuu40000, xuu3000, app(ty_Ratio, dbg)) -> new_esEs21(xuu40000, xuu3000, dbg) 25.38/9.11 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Char) -> new_ltEs10(xuu590, xuu600) 25.38/9.11 new_compare0(xuu4000, xuu300, ty_@0) -> new_compare8(xuu4000, xuu300) 25.38/9.11 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.38/9.11 new_ltEs22(xuu73, xuu74, ty_Ordering) -> new_ltEs16(xuu73, xuu74) 25.38/9.11 new_lt23(xuu591, xuu601, app(ty_Ratio, fdg)) -> new_lt11(xuu591, xuu601, fdg) 25.38/9.11 new_compare19(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), dfd, dfe, dff) -> new_compare211(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs6(xuu40000, xuu3000, dfd), new_asAs(new_esEs5(xuu40001, xuu3001, dfe), new_esEs4(xuu40002, xuu3002, dff))), dfd, dfe, dff) 25.38/9.11 new_esEs27(xuu400002, xuu30002, ty_Char) -> new_esEs18(xuu400002, xuu30002) 25.38/9.11 new_ltEs23(xuu100, xuu103, ty_Bool) -> new_ltEs12(xuu100, xuu103) 25.38/9.11 new_primCompAux00(xuu34, xuu35, LT, cfd) -> LT 25.38/9.11 new_esEs26(xuu590, xuu600, ty_@0) -> new_esEs22(xuu590, xuu600) 25.38/9.11 new_esEs6(xuu40000, xuu3000, app(ty_Ratio, deh)) -> new_esEs21(xuu40000, xuu3000, deh) 25.38/9.11 new_esEs5(xuu40001, xuu3001, ty_Double) -> new_esEs25(xuu40001, xuu3001) 25.38/9.11 new_ltEs23(xuu100, xuu103, ty_Char) -> new_ltEs10(xuu100, xuu103) 25.38/9.11 new_primPlusNat0(xuu219, xuu4000100) -> new_primPlusNat1(xuu219, Succ(xuu4000100)) 25.38/9.11 new_not(False) -> True 25.38/9.11 new_ltEs13(Just(xuu590), Just(xuu600), ty_Float) -> new_ltEs17(xuu590, xuu600) 25.38/9.11 new_ltEs24(xuu592, xuu602, ty_@0) -> new_ltEs9(xuu592, xuu602) 25.38/9.11 new_esEs9(xuu40000, xuu3000, app(ty_Maybe, def)) -> new_esEs12(xuu40000, xuu3000, def) 25.38/9.11 new_esEs35(xuu98, xuu101, app(ty_[], cgg)) -> new_esEs24(xuu98, xuu101, cgg) 25.38/9.11 new_ltEs24(xuu592, xuu602, app(app(app(ty_@3, fed), fee), fef)) -> new_ltEs6(xuu592, xuu602, fed, fee, fef) 25.38/9.11 new_ltEs21(xuu66, xuu67, ty_Bool) -> new_ltEs12(xuu66, xuu67) 25.38/9.11 new_compare0(xuu4000, xuu300, app(ty_Maybe, dde)) -> new_compare29(xuu4000, xuu300, dde) 25.38/9.11 new_ltEs13(Just(xuu590), Just(xuu600), ty_Integer) -> new_ltEs18(xuu590, xuu600) 25.38/9.11 new_esEs27(xuu400002, xuu30002, ty_Integer) -> new_esEs23(xuu400002, xuu30002) 25.38/9.11 new_esEs7(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.11 new_ltEs24(xuu592, xuu602, ty_Ordering) -> new_ltEs16(xuu592, xuu602) 25.38/9.11 new_esEs28(xuu400001, xuu30001, ty_Float) -> new_esEs20(xuu400001, xuu30001) 25.38/9.11 new_compare112(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, False, xuu177, dac, dad, dae) -> new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, xuu177, dac, dad, dae) 25.38/9.11 new_ltEs8(Right(xuu590), Right(xuu600), ge, ty_Bool) -> new_ltEs12(xuu590, xuu600) 25.38/9.11 new_esEs37(xuu400000, xuu30000, app(ty_[], fbf)) -> new_esEs24(xuu400000, xuu30000, fbf) 25.38/9.11 new_compare29(Nothing, Nothing, dde) -> EQ 25.38/9.11 new_ltEs23(xuu100, xuu103, app(app(ty_Either, efa), efb)) -> new_ltEs8(xuu100, xuu103, efa, efb) 25.38/9.11 new_ltEs19(xuu591, xuu601, ty_Int) -> new_ltEs7(xuu591, xuu601) 25.38/9.11 new_lt22(xuu590, xuu600, app(ty_Ratio, fce)) -> new_lt11(xuu590, xuu600, fce) 25.38/9.11 new_ltEs19(xuu591, xuu601, ty_Char) -> new_ltEs10(xuu591, xuu601) 25.38/9.11 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(ty_Either, cdb), cdc), ccf) -> new_esEs17(xuu400000, xuu30000, cdb, cdc) 25.38/9.11 new_lt6(xuu590, xuu600, ty_Double) -> new_lt15(xuu590, xuu600) 25.38/9.11 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.38/9.11 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.38/9.11 new_lt21(xuu99, xuu102, ty_Double) -> new_lt15(xuu99, xuu102) 25.38/9.11 new_esEs26(xuu590, xuu600, app(app(ty_Either, hg), hh)) -> new_esEs17(xuu590, xuu600, hg, hh) 25.38/9.11 new_ltEs20(xuu112, xuu114, ty_Int) -> new_ltEs7(xuu112, xuu114) 25.38/9.11 new_ltEs22(xuu73, xuu74, app(ty_Maybe, chh)) -> new_ltEs13(xuu73, xuu74, chh) 25.38/9.11 new_esEs5(xuu40001, xuu3001, ty_Int) -> new_esEs16(xuu40001, xuu3001) 25.38/9.11 new_lt6(xuu590, xuu600, app(ty_[], hc)) -> new_lt7(xuu590, xuu600, hc) 25.38/9.11 new_ltEs21(xuu66, xuu67, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs6(xuu66, xuu67, cbc, cbd, cbe) 25.38/9.11 new_lt20(xuu98, xuu101, app(ty_Ratio, ech)) -> new_lt11(xuu98, xuu101, ech) 25.38/9.11 new_ltEs8(Left(xuu590), Left(xuu600), app(app(app(ty_@3, dga), dgb), dgc), gf) -> new_ltEs6(xuu590, xuu600, dga, dgb, dgc) 25.38/9.11 new_compare0(xuu4000, xuu300, ty_Bool) -> new_compare28(xuu4000, xuu300) 25.38/9.11 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.38/9.11 new_primMulNat0(Succ(xuu300000), Succ(xuu4000100)) -> new_primPlusNat0(new_primMulNat0(xuu300000, Succ(xuu4000100)), xuu4000100) 25.38/9.11 new_compare112(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, xuu177, dac, dad, dae) -> new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, dac, dad, dae) 25.38/9.11 new_esEs38(xuu591, xuu601, ty_Double) -> new_esEs25(xuu591, xuu601) 25.38/9.11 new_esEs6(xuu40000, xuu3000, app(ty_Maybe, bd)) -> new_esEs12(xuu40000, xuu3000, bd) 25.38/9.11 new_esEs19(EQ, GT) -> False 25.38/9.11 new_esEs19(GT, EQ) -> False 25.38/9.11 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.11 new_esEs19(GT, GT) -> True 25.38/9.11 new_esEs11(xuu40000, xuu3000, app(app(ty_@2, ed), ee)) -> new_esEs13(xuu40000, xuu3000, ed, ee) 25.38/9.11 new_lt20(xuu98, xuu101, app(app(ty_@2, eda), edb)) -> new_lt14(xuu98, xuu101, eda, edb) 25.38/9.11 new_esEs8(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.11 new_esEs39(xuu590, xuu600, app(ty_Ratio, fce)) -> new_esEs21(xuu590, xuu600, fce) 25.38/9.11 new_compare6(Char(xuu40000), Char(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) 25.38/9.11 new_ltEs20(xuu112, xuu114, ty_Char) -> new_ltEs10(xuu112, xuu114) 25.38/9.11 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(app(ty_Either, cee), cef)) -> new_esEs17(xuu400000, xuu30000, cee, cef) 25.38/9.11 new_lt10(xuu98, xuu101, cfb, cfc) -> new_esEs19(new_compare15(xuu98, xuu101, cfb, cfc), LT) 25.38/9.11 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.38/9.11 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.38/9.11 new_compare8(@0, @0) -> EQ 25.38/9.11 new_esEs35(xuu98, xuu101, app(app(ty_@2, eda), edb)) -> new_esEs13(xuu98, xuu101, eda, edb) 25.38/9.11 new_ltEs24(xuu592, xuu602, app(ty_Maybe, ffb)) -> new_ltEs13(xuu592, xuu602, ffb) 25.38/9.11 new_lt21(xuu99, xuu102, app(ty_Ratio, eea)) -> new_lt11(xuu99, xuu102, eea) 25.38/9.11 new_esEs8(xuu40000, xuu3000, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs14(xuu40000, xuu3000, dcd, dce, dcf) 25.38/9.11 new_compare18([], [], ddd) -> EQ 25.38/9.11 new_primEqNat0(Zero, Zero) -> True 25.38/9.11 new_lt19(xuu111, xuu113, ty_Double) -> new_lt15(xuu111, xuu113) 25.38/9.11 new_esEs17(Right(xuu400000), Right(xuu30000), cdg, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs14(xuu400000, xuu30000, ceb, cec, ced) 25.38/9.11 new_esEs9(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.11 new_esEs9(xuu40000, xuu3000, app(app(app(ty_@3, ddh), dea), deb)) -> new_esEs14(xuu40000, xuu3000, ddh, dea, deb) 25.38/9.11 new_lt21(xuu99, xuu102, app(ty_[], edc)) -> new_lt7(xuu99, xuu102, edc) 25.38/9.11 new_esEs34(xuu99, xuu102, app(app(ty_@2, eec), eed)) -> new_esEs13(xuu99, xuu102, eec, eed) 25.38/9.11 new_esEs6(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.11 new_esEs4(xuu40002, xuu3002, app(ty_Ratio, fgd)) -> new_esEs21(xuu40002, xuu3002, fgd) 25.38/9.11 new_ltEs23(xuu100, xuu103, app(ty_Maybe, efd)) -> new_ltEs13(xuu100, xuu103, efd) 25.38/9.11 new_asAs(False, xuu132) -> False 25.38/9.11 new_ltEs21(xuu66, xuu67, ty_Char) -> new_ltEs10(xuu66, xuu67) 25.38/9.11 new_compare29(Just(xuu40000), Just(xuu3000), dde) -> new_compare210(xuu40000, xuu3000, new_esEs9(xuu40000, xuu3000, dde), dde) 25.38/9.11 new_ltEs22(xuu73, xuu74, ty_Bool) -> new_ltEs12(xuu73, xuu74) 25.38/9.11 new_esEs39(xuu590, xuu600, ty_Double) -> new_esEs25(xuu590, xuu600) 25.38/9.11 new_ltEs22(xuu73, xuu74, app(app(app(ty_@3, chb), chc), chd)) -> new_ltEs6(xuu73, xuu74, chb, chc, chd) 25.38/9.11 new_esEs36(xuu400001, xuu30001, app(ty_[], fad)) -> new_esEs24(xuu400001, xuu30001, fad) 25.38/9.11 new_compare11(xuu185, xuu186, xuu187, xuu188, False, xuu190, bfh, bga) -> new_compare12(xuu185, xuu186, xuu187, xuu188, xuu190, bfh, bga) 25.38/9.11 new_lt20(xuu98, xuu101, ty_Double) -> new_lt15(xuu98, xuu101) 25.38/9.11 new_esEs7(xuu40000, xuu3000, app(ty_Maybe, dbh)) -> new_esEs12(xuu40000, xuu3000, dbh) 25.38/9.11 new_lt19(xuu111, xuu113, app(app(ty_@2, caf), cag)) -> new_lt14(xuu111, xuu113, caf, cag) 25.38/9.11 new_compare16(GT, EQ) -> GT 25.38/9.11 new_esEs4(xuu40002, xuu3002, ty_Double) -> new_esEs25(xuu40002, xuu3002) 25.38/9.11 new_ltEs24(xuu592, xuu602, app(app(ty_Either, feg), feh)) -> new_ltEs8(xuu592, xuu602, feg, feh) 25.38/9.11 new_esEs26(xuu590, xuu600, ty_Float) -> new_esEs20(xuu590, xuu600) 25.38/9.11 25.38/9.11 The set Q consists of the following terms: 25.38/9.11 25.38/9.11 new_lt20(x0, x1, ty_Ordering) 25.38/9.11 new_esEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.38/9.11 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs9(x0, x1, ty_Integer) 25.38/9.11 new_ltEs21(x0, x1, ty_Ordering) 25.38/9.11 new_compare0(x0, x1, ty_Integer) 25.38/9.11 new_esEs17(Left(x0), Left(x1), ty_@0, x2) 25.38/9.11 new_asAs(True, x0) 25.38/9.11 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_compare26(x0, x1, False, x2, x3) 25.38/9.11 new_esEs28(x0, x1, ty_Bool) 25.38/9.11 new_esEs4(x0, x1, ty_Ordering) 25.38/9.11 new_lt23(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_primPlusNat1(Zero, Zero) 25.38/9.11 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_ltEs21(x0, x1, ty_Double) 25.38/9.11 new_esEs29(x0, x1, ty_@0) 25.38/9.11 new_compare0(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_lt20(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs26(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs16(x0, x1) 25.38/9.11 new_ltEs4(x0, x1, ty_@0) 25.38/9.11 new_esEs28(x0, x1, ty_@0) 25.38/9.11 new_esEs9(x0, x1, ty_Bool) 25.38/9.11 new_esEs36(x0, x1, ty_Float) 25.38/9.11 new_esEs4(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_primEqInt(Pos(Zero), Pos(Zero)) 25.38/9.11 new_primCompAux00(x0, x1, EQ, ty_Float) 25.38/9.11 new_compare28(True, True) 25.38/9.11 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs28(x0, x1, ty_Integer) 25.38/9.11 new_lt18(x0, x1) 25.38/9.11 new_compare10(x0, x1, True, x2, x3) 25.38/9.11 new_ltEs23(x0, x1, ty_Bool) 25.38/9.11 new_lt20(x0, x1, ty_Char) 25.38/9.11 new_compare210(x0, x1, True, x2) 25.38/9.11 new_compare0(x0, x1, ty_Bool) 25.38/9.11 new_lt20(x0, x1, ty_Double) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 25.38/9.11 new_lt21(x0, x1, ty_Int) 25.38/9.11 new_primCompAux00(x0, x1, EQ, ty_Integer) 25.38/9.11 new_esEs37(x0, x1, ty_Bool) 25.38/9.11 new_primEqInt(Neg(Zero), Neg(Zero)) 25.38/9.11 new_ltEs7(x0, x1) 25.38/9.11 new_esEs37(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs4(x0, x1, ty_Double) 25.38/9.11 new_ltEs16(GT, EQ) 25.38/9.11 new_ltEs16(EQ, GT) 25.38/9.11 new_esEs17(Left(x0), Left(x1), ty_Integer, x2) 25.38/9.11 new_esEs4(x0, x1, ty_Char) 25.38/9.11 new_esEs27(x0, x1, ty_Bool) 25.38/9.11 new_ltEs19(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs29(x0, x1, ty_Int) 25.38/9.11 new_esEs37(x0, x1, ty_@0) 25.38/9.11 new_esEs35(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs9(x0, x1, app(ty_[], x2)) 25.38/9.11 new_ltEs16(LT, LT) 25.38/9.11 new_lt21(x0, x1, ty_@0) 25.38/9.11 new_ltEs22(x0, x1, ty_Int) 25.38/9.11 new_compare29(Just(x0), Just(x1), x2) 25.38/9.11 new_compare16(LT, LT) 25.38/9.11 new_ltEs4(x0, x1, ty_Int) 25.38/9.11 new_esEs6(x0, x1, ty_Double) 25.38/9.11 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 25.38/9.11 new_esEs6(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.38/9.11 new_compare11(x0, x1, x2, x3, False, x4, x5, x6) 25.38/9.11 new_compare0(x0, x1, ty_Float) 25.38/9.11 new_esEs32(x0, x1, ty_Int) 25.38/9.11 new_lt19(x0, x1, ty_Char) 25.38/9.11 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs35(x0, x1, ty_Char) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, ty_Char) 25.38/9.11 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_lt8(x0, x1, x2, x3, x4) 25.38/9.11 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs31(x0, x1, ty_Int) 25.38/9.11 new_esEs12(Nothing, Nothing, x0) 25.38/9.11 new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.38/9.11 new_esEs33(x0, x1, ty_Integer) 25.38/9.11 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_primEqInt(Pos(Zero), Neg(Zero)) 25.38/9.11 new_primEqInt(Neg(Zero), Pos(Zero)) 25.38/9.11 new_ltEs23(x0, x1, ty_@0) 25.38/9.11 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_ltEs21(x0, x1, ty_Char) 25.38/9.11 new_esEs5(x0, x1, ty_Double) 25.38/9.11 new_esEs24(:(x0, x1), :(x2, x3), x4) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 25.38/9.11 new_compare29(Nothing, Nothing, x0) 25.38/9.11 new_ltEs24(x0, x1, ty_Int) 25.38/9.11 new_primCompAux00(x0, x1, EQ, ty_Bool) 25.38/9.11 new_esEs25(Double(x0, x1), Double(x2, x3)) 25.38/9.11 new_esEs35(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs5(x0, x1, ty_Char) 25.38/9.11 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs37(x0, x1, ty_Float) 25.38/9.11 new_esEs15(False, False) 25.38/9.11 new_primMulInt(Neg(x0), Neg(x1)) 25.38/9.11 new_ltEs23(x0, x1, ty_Int) 25.38/9.11 new_ltEs24(x0, x1, ty_@0) 25.38/9.11 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs27(x0, x1, ty_Integer) 25.38/9.11 new_lt22(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs11(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.38/9.11 new_compare0(x0, x1, ty_@0) 25.38/9.11 new_esEs11(x0, x1, ty_Char) 25.38/9.11 new_esEs9(x0, x1, ty_Int) 25.38/9.11 new_lt19(x0, x1, ty_Ordering) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.38/9.11 new_lt19(x0, x1, app(ty_[], x2)) 25.38/9.11 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 25.38/9.11 new_ltEs19(x0, x1, ty_Double) 25.38/9.11 new_esEs28(x0, x1, ty_Int) 25.38/9.11 new_lt19(x0, x1, ty_Double) 25.38/9.11 new_esEs26(x0, x1, ty_Double) 25.38/9.11 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs34(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs38(x0, x1, ty_Bool) 25.38/9.11 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs36(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_primCompAux00(x0, x1, EQ, ty_@0) 25.38/9.11 new_esEs39(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.38/9.11 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_ltEs16(LT, EQ) 25.38/9.11 new_ltEs16(EQ, LT) 25.38/9.11 new_lt22(x0, x1, ty_Float) 25.38/9.11 new_esEs8(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_primCmpNat0(Succ(x0), Succ(x1)) 25.38/9.11 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.38/9.11 new_esEs28(x0, x1, ty_Float) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 25.38/9.11 new_esEs6(x0, x1, ty_Ordering) 25.38/9.11 new_ltEs20(x0, x1, ty_Int) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.38/9.11 new_esEs17(Left(x0), Left(x1), ty_Float, x2) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.38/9.11 new_esEs5(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs36(x0, x1, ty_Int) 25.38/9.11 new_esEs36(x0, x1, ty_Integer) 25.38/9.11 new_lt6(x0, x1, ty_@0) 25.38/9.11 new_esEs33(x0, x1, ty_Bool) 25.38/9.11 new_esEs19(GT, GT) 25.38/9.11 new_ltEs15(x0, x1) 25.38/9.11 new_primPlusNat1(Succ(x0), Succ(x1)) 25.38/9.11 new_esEs4(x0, x1, app(ty_[], x2)) 25.38/9.11 new_ltEs23(x0, x1, ty_Integer) 25.38/9.11 new_compare16(EQ, LT) 25.38/9.11 new_compare16(LT, EQ) 25.38/9.11 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.38/9.11 new_esEs39(x0, x1, ty_@0) 25.38/9.11 new_esEs38(x0, x1, ty_Int) 25.38/9.11 new_esEs17(Left(x0), Left(x1), ty_Int, x2) 25.38/9.11 new_lt10(x0, x1, x2, x3) 25.38/9.11 new_esEs27(x0, x1, ty_@0) 25.38/9.11 new_esEs33(x0, x1, ty_Float) 25.38/9.11 new_esEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs34(x0, x1, ty_Double) 25.38/9.11 new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 25.38/9.11 new_esEs9(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs9(x0, x1, ty_Float) 25.38/9.11 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 25.38/9.11 new_compare110(x0, x1, False, x2) 25.38/9.11 new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) 25.38/9.11 new_esEs20(Float(x0, x1), Float(x2, x3)) 25.38/9.11 new_esEs31(x0, x1, ty_Integer) 25.38/9.11 new_primMulNat0(Succ(x0), Succ(x1)) 25.38/9.11 new_esEs35(x0, x1, ty_Ordering) 25.38/9.11 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.38/9.11 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.38/9.11 new_esEs11(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs10(x0, x1, app(ty_[], x2)) 25.38/9.11 new_compare18(:(x0, x1), :(x2, x3), x4) 25.38/9.11 new_esEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.38/9.11 new_esEs11(x0, x1, ty_Ordering) 25.38/9.11 new_esEs17(Left(x0), Left(x1), ty_Bool, x2) 25.38/9.11 new_compare16(EQ, EQ) 25.38/9.11 new_lt6(x0, x1, ty_Double) 25.38/9.11 new_esEs7(x0, x1, ty_Double) 25.38/9.11 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.38/9.11 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.38/9.11 new_esEs33(x0, x1, ty_Int) 25.38/9.11 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs7(x0, x1, app(ty_[], x2)) 25.38/9.11 new_lt19(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) 25.38/9.11 new_esEs27(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs36(x0, x1, ty_Bool) 25.38/9.11 new_esEs8(x0, x1, ty_Integer) 25.38/9.11 new_esEs12(Just(x0), Just(x1), ty_@0) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), ty_Double) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.38/9.11 new_ltEs20(x0, x1, ty_Bool) 25.38/9.11 new_ltEs19(x0, x1, ty_@0) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.38/9.11 new_compare9(Integer(x0), Integer(x1)) 25.38/9.11 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs33(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_primCmpNat0(Zero, Succ(x0)) 25.38/9.11 new_ltEs21(x0, x1, ty_Float) 25.38/9.11 new_compare0(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_compare17(x0, x1) 25.38/9.11 new_ltEs19(x0, x1, ty_Bool) 25.38/9.11 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 25.38/9.11 new_esEs6(x0, x1, ty_Integer) 25.38/9.11 new_compare28(False, False) 25.38/9.11 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.38/9.11 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.38/9.11 new_sr(x0, x1) 25.38/9.11 new_esEs10(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs39(x0, x1, ty_Integer) 25.38/9.11 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs8(x0, x1, ty_Bool) 25.38/9.11 new_esEs36(x0, x1, ty_Ordering) 25.38/9.11 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.38/9.11 new_lt23(x0, x1, ty_Integer) 25.38/9.11 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.38/9.11 new_lt22(x0, x1, ty_@0) 25.38/9.11 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs29(x0, x1, app(ty_[], x2)) 25.38/9.11 new_compare0(x0, x1, app(ty_[], x2)) 25.38/9.11 new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 25.38/9.11 new_esEs12(Just(x0), Just(x1), app(ty_[], x2)) 25.38/9.11 new_esEs10(x0, x1, ty_Int) 25.38/9.11 new_lt23(x0, x1, ty_@0) 25.38/9.11 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.38/9.11 new_compare15(Left(x0), Right(x1), x2, x3) 25.38/9.11 new_compare15(Right(x0), Left(x1), x2, x3) 25.38/9.11 new_lt9(x0, x1) 25.38/9.11 new_compare16(GT, LT) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.38/9.11 new_compare16(LT, GT) 25.38/9.11 new_esEs32(x0, x1, ty_Integer) 25.38/9.11 new_esEs24([], :(x0, x1), x2) 25.38/9.11 new_esEs33(x0, x1, ty_Ordering) 25.38/9.11 new_lt22(x0, x1, ty_Integer) 25.38/9.11 new_not(True) 25.38/9.11 new_esEs39(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs10(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs27(x0, x1, ty_Ordering) 25.38/9.11 new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.38/9.11 new_lt22(x0, x1, ty_Int) 25.38/9.11 new_ltEs12(True, True) 25.38/9.11 new_ltEs13(Nothing, Nothing, x0) 25.38/9.11 new_lt22(x0, x1, ty_Char) 25.38/9.11 new_esEs6(x0, x1, ty_Bool) 25.38/9.11 new_esEs28(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs33(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 25.38/9.11 new_esEs7(x0, x1, ty_Ordering) 25.38/9.11 new_compare18([], [], x0) 25.38/9.11 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_ltEs23(x0, x1, app(ty_[], x2)) 25.38/9.11 new_compare0(x0, x1, ty_Double) 25.38/9.11 new_esEs29(x0, x1, ty_Float) 25.38/9.11 new_esEs9(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_ltEs4(x0, x1, ty_Float) 25.38/9.11 new_esEs8(x0, x1, ty_Float) 25.38/9.11 new_esEs5(x0, x1, app(ty_[], x2)) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 25.38/9.11 new_lt6(x0, x1, ty_Ordering) 25.38/9.11 new_lt22(x0, x1, ty_Bool) 25.38/9.11 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_compare0(x0, x1, ty_Int) 25.38/9.11 new_esEs8(x0, x1, ty_@0) 25.38/9.11 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs11(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_pePe(True, x0) 25.38/9.11 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs23(Integer(x0), Integer(x1)) 25.38/9.11 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_ltEs20(x0, x1, ty_Double) 25.38/9.11 new_esEs34(x0, x1, ty_Int) 25.38/9.11 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_primMulInt(Pos(x0), Pos(x1)) 25.38/9.11 new_esEs19(LT, GT) 25.38/9.11 new_esEs19(GT, LT) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 25.38/9.11 new_esEs8(x0, x1, ty_Int) 25.38/9.11 new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs30(x0, x1, ty_Ordering) 25.38/9.11 new_esEs6(x0, x1, ty_Char) 25.38/9.11 new_lt23(x0, x1, ty_Float) 25.38/9.11 new_sr0(Integer(x0), Integer(x1)) 25.38/9.11 new_esEs37(x0, x1, ty_Char) 25.38/9.11 new_esEs17(Left(x0), Left(x1), ty_Double, x2) 25.38/9.11 new_esEs27(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs37(x0, x1, ty_Int) 25.38/9.11 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.38/9.11 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.38/9.11 new_ltEs21(x0, x1, ty_Bool) 25.38/9.11 new_compare30(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.38/9.11 new_lt19(x0, x1, ty_Float) 25.38/9.11 new_esEs26(x0, x1, ty_Float) 25.38/9.11 new_ltEs13(Nothing, Just(x0), x1) 25.38/9.11 new_esEs24(:(x0, x1), [], x2) 25.38/9.11 new_esEs34(x0, x1, ty_Char) 25.38/9.11 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_ltEs21(x0, x1, ty_Integer) 25.38/9.11 new_compare30(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.38/9.11 new_compare30(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.38/9.11 new_esEs10(x0, x1, ty_Bool) 25.38/9.11 new_ltEs19(x0, x1, ty_Float) 25.38/9.11 new_esEs8(x0, x1, ty_Char) 25.38/9.11 new_esEs4(x0, x1, ty_@0) 25.38/9.11 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs34(x0, x1, app(ty_[], x2)) 25.38/9.11 new_ltEs18(x0, x1) 25.38/9.11 new_esEs9(x0, x1, ty_Double) 25.38/9.11 new_esEs9(x0, x1, ty_Ordering) 25.38/9.11 new_lt23(x0, x1, ty_Int) 25.38/9.11 new_esEs34(x0, x1, ty_Float) 25.38/9.11 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 25.38/9.11 new_esEs10(x0, x1, ty_Char) 25.38/9.11 new_esEs26(x0, x1, ty_Int) 25.38/9.11 new_primEqNat0(Succ(x0), Succ(x1)) 25.38/9.11 new_esEs38(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_asAs(False, x0) 25.38/9.11 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs15(False, True) 25.38/9.11 new_esEs15(True, False) 25.38/9.11 new_lt19(x0, x1, ty_Int) 25.38/9.11 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_ltEs19(x0, x1, ty_Int) 25.38/9.11 new_esEs4(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_esEs6(x0, x1, ty_Int) 25.38/9.11 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_esEs39(x0, x1, ty_Bool) 25.38/9.11 new_esEs10(x0, x1, ty_Integer) 25.38/9.11 new_primEqNat0(Zero, Zero) 25.38/9.11 new_esEs39(x0, x1, ty_Float) 25.38/9.11 new_esEs6(x0, x1, app(ty_[], x2)) 25.38/9.11 new_ltEs9(x0, x1) 25.38/9.11 new_not(False) 25.38/9.11 new_ltEs19(x0, x1, ty_Char) 25.38/9.11 new_esEs27(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_ltEs22(x0, x1, ty_Ordering) 25.38/9.11 new_ltEs8(Right(x0), Left(x1), x2, x3) 25.38/9.11 new_ltEs8(Left(x0), Right(x1), x2, x3) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_ltEs4(x0, x1, ty_Bool) 25.38/9.11 new_esEs29(x0, x1, ty_Integer) 25.38/9.11 new_esEs33(x0, x1, ty_Double) 25.38/9.11 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.38/9.11 new_esEs8(x0, x1, app(ty_Ratio, x2)) 25.38/9.11 new_esEs26(x0, x1, ty_Char) 25.38/9.11 new_primPlusNat0(x0, x1) 25.38/9.11 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 25.38/9.11 new_esEs6(x0, x1, ty_Float) 25.38/9.11 new_compare14(x0, x1, True, x2, x3) 25.38/9.11 new_esEs29(x0, x1, ty_Bool) 25.38/9.11 new_lt23(x0, x1, ty_Char) 25.38/9.11 new_ltEs19(x0, x1, ty_Integer) 25.38/9.11 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_esEs39(x0, x1, ty_Int) 25.38/9.11 new_esEs5(x0, x1, ty_Ordering) 25.38/9.11 new_esEs26(x0, x1, app(ty_[], x2)) 25.38/9.11 new_esEs34(x0, x1, ty_Bool) 25.38/9.11 new_lt22(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs36(x0, x1, ty_Double) 25.38/9.11 new_compare210(x0, x1, False, x2) 25.38/9.11 new_ltEs4(x0, x1, ty_Integer) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 25.38/9.11 new_lt4(x0, x1) 25.38/9.11 new_ltEs21(x0, x1, app(ty_[], x2)) 25.38/9.11 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 25.38/9.11 new_esEs39(x0, x1, ty_Char) 25.38/9.11 new_compare0(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.11 new_lt23(x0, x1, ty_Bool) 25.38/9.11 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.11 new_ltEs24(x0, x1, ty_Ordering) 25.38/9.11 new_esEs12(Nothing, Just(x0), x1) 25.38/9.11 new_esEs37(x0, x1, ty_Integer) 25.38/9.11 new_esEs28(x0, x1, ty_Double) 25.38/9.11 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_lt16(x0, x1) 25.38/9.11 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_ltEs24(x0, x1, ty_Double) 25.38/9.11 new_esEs24([], [], x0) 25.38/9.11 new_esEs5(x0, x1, app(ty_Maybe, x2)) 25.38/9.11 new_esEs7(x0, x1, ty_Integer) 25.38/9.11 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.11 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 25.38/9.11 new_lt19(x0, x1, ty_Bool) 25.38/9.11 new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) 25.38/9.11 new_esEs34(x0, x1, ty_Integer) 25.38/9.11 new_esEs4(x0, x1, ty_Int) 25.38/9.11 new_esEs35(x0, x1, ty_@0) 25.38/9.11 new_lt21(x0, x1, ty_Char) 25.38/9.11 new_ltEs13(Just(x0), Just(x1), ty_Float) 25.38/9.11 new_esEs7(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs26(x0, x1, ty_Bool) 25.38/9.12 new_esEs35(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.38/9.12 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.38/9.12 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.38/9.12 new_esEs19(EQ, GT) 25.38/9.12 new_esEs19(GT, EQ) 25.38/9.12 new_esEs11(x0, x1, ty_Integer) 25.38/9.12 new_primEqNat0(Zero, Succ(x0)) 25.38/9.12 new_compare110(x0, x1, True, x2) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 25.38/9.12 new_esEs10(x0, x1, ty_Float) 25.38/9.12 new_esEs38(x0, x1, ty_Ordering) 25.38/9.12 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_ltEs4(x0, x1, ty_Char) 25.38/9.12 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs26(x0, x1, ty_Integer) 25.38/9.12 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_lt19(x0, x1, ty_Integer) 25.38/9.12 new_lt13(x0, x1, x2) 25.38/9.12 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_compare16(GT, GT) 25.38/9.12 new_lt20(x0, x1, ty_Int) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, ty_Bool) 25.38/9.12 new_pePe(False, x0) 25.38/9.12 new_primCompAux1(x0, x1, x2, x3, x4) 25.38/9.12 new_lt21(x0, x1, ty_Ordering) 25.38/9.12 new_lt21(x0, x1, ty_Double) 25.38/9.12 new_esEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.38/9.12 new_lt19(x0, x1, ty_@0) 25.38/9.12 new_esEs33(x0, x1, app(ty_[], x2)) 25.38/9.12 new_lt23(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs29(x0, x1, ty_Char) 25.38/9.12 new_esEs26(x0, x1, ty_@0) 25.38/9.12 new_esEs35(x0, x1, ty_Bool) 25.38/9.12 new_esEs34(x0, x1, ty_@0) 25.38/9.12 new_esEs38(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_primCompAux00(x0, x1, LT, x2) 25.38/9.12 new_esEs38(x0, x1, ty_Double) 25.38/9.12 new_primPlusNat1(Zero, Succ(x0)) 25.38/9.12 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs11(x0, x1, ty_@0) 25.38/9.12 new_esEs5(x0, x1, ty_Int) 25.38/9.12 new_esEs26(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs39(x0, x1, ty_Ordering) 25.38/9.12 new_esEs11(x0, x1, ty_Bool) 25.38/9.12 new_compare11(x0, x1, x2, x3, True, x4, x5, x6) 25.38/9.12 new_compare18([], :(x0, x1), x2) 25.38/9.12 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs35(x0, x1, ty_Int) 25.38/9.12 new_compare25(x0, x1, True, x2, x3) 25.38/9.12 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs11(x0, x1, ty_Float) 25.38/9.12 new_ltEs24(x0, x1, ty_Char) 25.38/9.12 new_lt12(x0, x1) 25.38/9.12 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs8(x0, x1, ty_Double) 25.38/9.12 new_primMulNat0(Succ(x0), Zero) 25.38/9.12 new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_ltEs23(x0, x1, ty_Double) 25.38/9.12 new_ltEs21(x0, x1, ty_@0) 25.38/9.12 new_esEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.38/9.12 new_compare12(x0, x1, x2, x3, False, x4, x5) 25.38/9.12 new_lt19(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_ltEs23(x0, x1, ty_Char) 25.38/9.12 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_compare7(@2(x0, x1), @2(x2, x3), x4, x5) 25.38/9.12 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs22(@0, @0) 25.38/9.12 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.38/9.12 new_compare8(@0, @0) 25.38/9.12 new_ltEs21(x0, x1, ty_Int) 25.38/9.12 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, ty_Int) 25.38/9.12 new_ltEs13(Just(x0), Nothing, x1) 25.38/9.12 new_esEs12(Just(x0), Just(x1), ty_Float) 25.38/9.12 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 25.38/9.12 new_ltEs13(Just(x0), Just(x1), ty_Bool) 25.38/9.12 new_ltEs22(x0, x1, ty_Double) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, ty_@0) 25.38/9.12 new_ltEs22(x0, x1, ty_Char) 25.38/9.12 new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) 25.38/9.12 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_ltEs20(x0, x1, ty_Float) 25.38/9.12 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_compare30(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.38/9.12 new_ltEs20(x0, x1, ty_Ordering) 25.38/9.12 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.38/9.12 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs10(x0, x1, ty_@0) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.38/9.12 new_esEs4(x0, x1, ty_Integer) 25.38/9.12 new_esEs33(x0, x1, ty_Char) 25.38/9.12 new_esEs12(Just(x0), Just(x1), ty_Ordering) 25.38/9.12 new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.38/9.12 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_ltEs24(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs4(x0, x1, ty_Bool) 25.38/9.12 new_compare19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.38/9.12 new_compare0(x0, x1, ty_Char) 25.38/9.12 new_ltEs16(GT, GT) 25.38/9.12 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_lt20(x0, x1, ty_Bool) 25.38/9.12 new_lt23(x0, x1, ty_Double) 25.38/9.12 new_esEs28(x0, x1, ty_Ordering) 25.38/9.12 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 25.38/9.12 new_ltEs20(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs38(x0, x1, app(ty_[], x2)) 25.38/9.12 new_primCmpNat0(Succ(x0), Zero) 25.38/9.12 new_esEs21(:%(x0, x1), :%(x2, x3), x4) 25.38/9.12 new_esEs17(Left(x0), Right(x1), x2, x3) 25.38/9.12 new_esEs17(Right(x0), Left(x1), x2, x3) 25.38/9.12 new_esEs29(x0, x1, ty_Double) 25.38/9.12 new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) 25.38/9.12 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.38/9.12 new_lt6(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs30(x0, x1, ty_Double) 25.38/9.12 new_esEs37(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs9(x0, x1, ty_Char) 25.38/9.12 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.38/9.12 new_esEs38(x0, x1, ty_Char) 25.38/9.12 new_ltEs4(x0, x1, ty_Double) 25.38/9.12 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.38/9.12 new_esEs6(x0, x1, ty_@0) 25.38/9.12 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.38/9.12 new_esEs35(x0, x1, ty_Integer) 25.38/9.12 new_esEs39(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs39(x0, x1, ty_Double) 25.38/9.12 new_esEs27(x0, x1, ty_Double) 25.38/9.12 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.38/9.12 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.38/9.12 new_esEs19(LT, EQ) 25.38/9.12 new_esEs19(EQ, LT) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, ty_Integer) 25.38/9.12 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs17(Left(x0), Left(x1), ty_Char, x2) 25.38/9.12 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_ltEs20(x0, x1, ty_Char) 25.38/9.12 new_compare14(x0, x1, False, x2, x3) 25.38/9.12 new_esEs15(True, True) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 25.38/9.12 new_ltEs4(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs36(x0, x1, ty_Char) 25.38/9.12 new_esEs6(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs19(LT, LT) 25.38/9.12 new_esEs7(x0, x1, ty_@0) 25.38/9.12 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_compare10(x0, x1, False, x2, x3) 25.38/9.12 new_esEs34(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_primCompAux00(x0, x1, EQ, ty_Ordering) 25.38/9.12 new_lt23(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_ltEs20(x0, x1, ty_Integer) 25.38/9.12 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.38/9.12 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_ltEs22(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_ltEs23(x0, x1, ty_Ordering) 25.38/9.12 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 25.38/9.12 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs28(x0, x1, ty_Char) 25.38/9.12 new_esEs18(Char(x0), Char(x1)) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.38/9.12 new_compare0(x0, x1, ty_Ordering) 25.38/9.12 new_esEs12(Just(x0), Just(x1), ty_Integer) 25.38/9.12 new_ltEs24(x0, x1, ty_Float) 25.38/9.12 new_ltEs11(x0, x1, x2) 25.38/9.12 new_ltEs16(EQ, EQ) 25.38/9.12 new_ltEs20(x0, x1, ty_@0) 25.38/9.12 new_esEs38(x0, x1, ty_Float) 25.38/9.12 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.38/9.12 new_primMulNat0(Zero, Zero) 25.38/9.12 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_primCompAux00(x0, x1, GT, x2) 25.38/9.12 new_compare24(x0, x1, x2, x3, True, x4, x5) 25.38/9.12 new_esEs30(x0, x1, ty_Bool) 25.38/9.12 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_lt20(x0, x1, ty_Float) 25.38/9.12 new_esEs5(x0, x1, ty_Float) 25.38/9.12 new_lt22(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs30(x0, x1, ty_Integer) 25.38/9.12 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_lt14(x0, x1, x2, x3) 25.38/9.12 new_esEs19(EQ, EQ) 25.38/9.12 new_lt15(x0, x1) 25.38/9.12 new_lt17(x0, x1) 25.38/9.12 new_esEs30(x0, x1, ty_@0) 25.38/9.12 new_ltEs22(x0, x1, ty_Float) 25.38/9.12 new_ltEs13(Just(x0), Just(x1), ty_Int) 25.38/9.12 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_primPlusNat1(Succ(x0), Zero) 25.38/9.12 new_esEs10(x0, x1, ty_Double) 25.38/9.12 new_esEs10(x0, x1, ty_Ordering) 25.38/9.12 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_lt21(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs12(Just(x0), Just(x1), ty_Bool) 25.38/9.12 new_lt6(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_fsEs(x0) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.38/9.12 new_esEs12(Just(x0), Just(x1), ty_Char) 25.38/9.12 new_compare29(Just(x0), Nothing, x1) 25.38/9.12 new_ltEs13(Just(x0), Just(x1), ty_Char) 25.38/9.12 new_esEs11(x0, x1, ty_Double) 25.38/9.12 new_primMulNat0(Zero, Succ(x0)) 25.38/9.12 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.38/9.12 new_primCompAux00(x0, x1, EQ, ty_Int) 25.38/9.12 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.38/9.12 new_esEs37(x0, x1, ty_Double) 25.38/9.12 new_esEs38(x0, x1, ty_Integer) 25.38/9.12 new_lt21(x0, x1, ty_Float) 25.38/9.12 new_lt5(x0, x1) 25.38/9.12 new_ltEs22(x0, x1, ty_Bool) 25.38/9.12 new_compare15(Right(x0), Right(x1), x2, x3) 25.38/9.12 new_esEs12(Just(x0), Just(x1), ty_Int) 25.38/9.12 new_ltEs12(False, True) 25.38/9.12 new_ltEs12(True, False) 25.38/9.12 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_primCompAux00(x0, x1, EQ, ty_Double) 25.38/9.12 new_compare28(False, True) 25.38/9.12 new_compare28(True, False) 25.38/9.12 new_compare29(Nothing, Just(x0), x1) 25.38/9.12 new_ltEs22(x0, x1, ty_@0) 25.38/9.12 new_esEs37(x0, x1, app(ty_[], x2)) 25.38/9.12 new_primCompAux00(x0, x1, EQ, ty_Char) 25.38/9.12 new_lt20(x0, x1, ty_Integer) 25.38/9.12 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs36(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs4(x0, x1, ty_Float) 25.38/9.12 new_ltEs23(x0, x1, ty_Float) 25.38/9.12 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_ltEs16(LT, GT) 25.38/9.12 new_ltEs16(GT, LT) 25.38/9.12 new_ltEs10(x0, x1) 25.38/9.12 new_esEs8(x0, x1, app(ty_[], x2)) 25.38/9.12 new_compare24(x0, x1, x2, x3, False, x4, x5) 25.38/9.12 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 25.38/9.12 new_esEs35(x0, x1, ty_Float) 25.38/9.12 new_esEs11(x0, x1, ty_Int) 25.38/9.12 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.38/9.12 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.38/9.12 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.38/9.12 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs38(x0, x1, ty_@0) 25.38/9.12 new_lt7(x0, x1, x2) 25.38/9.12 new_ltEs5(x0, x1, x2) 25.38/9.12 new_lt6(x0, x1, app(ty_[], x2)) 25.38/9.12 new_lt6(x0, x1, ty_Integer) 25.38/9.12 new_ltEs13(Just(x0), Just(x1), ty_@0) 25.38/9.12 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_compare15(Left(x0), Left(x1), x2, x3) 25.38/9.12 new_esEs27(x0, x1, ty_Char) 25.38/9.12 new_esEs12(Just(x0), Just(x1), ty_Double) 25.38/9.12 new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_compare26(x0, x1, True, x2, x3) 25.38/9.12 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, ty_Float) 25.38/9.12 new_lt20(x0, x1, ty_@0) 25.38/9.12 new_esEs5(x0, x1, ty_@0) 25.38/9.12 new_primMulInt(Pos(x0), Neg(x1)) 25.38/9.12 new_primMulInt(Neg(x0), Pos(x1)) 25.38/9.12 new_esEs35(x0, x1, ty_Double) 25.38/9.12 new_esEs7(x0, x1, ty_Int) 25.38/9.12 new_lt22(x0, x1, ty_Double) 25.38/9.12 new_ltEs4(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.38/9.12 new_esEs5(x0, x1, ty_Bool) 25.38/9.12 new_lt21(x0, x1, ty_Integer) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, ty_Double) 25.38/9.12 new_compare0(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs30(x0, x1, ty_Float) 25.38/9.12 new_esEs30(x0, x1, app(ty_[], x2)) 25.38/9.12 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 25.38/9.12 new_esEs27(x0, x1, ty_Int) 25.38/9.12 new_lt22(x0, x1, ty_Ordering) 25.38/9.12 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_lt11(x0, x1, x2) 25.38/9.12 new_ltEs19(x0, x1, ty_Ordering) 25.38/9.12 new_esEs30(x0, x1, ty_Char) 25.38/9.12 new_esEs12(Just(x0), Nothing, x1) 25.38/9.12 new_esEs7(x0, x1, ty_Float) 25.38/9.12 new_ltEs13(Just(x0), Just(x1), ty_Integer) 25.38/9.12 new_esEs36(x0, x1, ty_@0) 25.38/9.12 new_compare25(x0, x1, False, x2, x3) 25.38/9.12 new_esEs34(x0, x1, ty_Ordering) 25.38/9.12 new_ltEs24(x0, x1, ty_Bool) 25.38/9.12 new_esEs26(x0, x1, ty_Ordering) 25.38/9.12 new_esEs30(x0, x1, ty_Int) 25.38/9.12 new_compare18(:(x0, x1), [], x2) 25.38/9.12 new_lt23(x0, x1, ty_Ordering) 25.38/9.12 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs27(x0, x1, ty_Float) 25.38/9.12 new_esEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs7(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs5(x0, x1, ty_Integer) 25.38/9.12 new_primEqNat0(Succ(x0), Zero) 25.38/9.12 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs36(x0, x1, app(ty_[], x2)) 25.38/9.12 new_ltEs22(x0, x1, ty_Integer) 25.38/9.12 new_esEs9(x0, x1, ty_@0) 25.38/9.12 new_ltEs12(False, False) 25.38/9.12 new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.38/9.12 new_lt6(x0, x1, ty_Float) 25.38/9.12 new_esEs29(x0, x1, ty_Ordering) 25.38/9.12 new_compare12(x0, x1, x2, x3, True, x4, x5) 25.38/9.12 new_ltEs17(x0, x1) 25.38/9.12 new_lt21(x0, x1, ty_Bool) 25.38/9.12 new_ltEs4(x0, x1, ty_Ordering) 25.38/9.12 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.38/9.12 new_lt6(x0, x1, ty_Bool) 25.38/9.12 new_ltEs4(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs8(x0, x1, ty_Ordering) 25.38/9.12 new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.38/9.12 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.38/9.12 new_esEs37(x0, x1, ty_Ordering) 25.38/9.12 new_esEs7(x0, x1, ty_Bool) 25.38/9.12 new_compare6(Char(x0), Char(x1)) 25.38/9.12 new_compare16(EQ, GT) 25.38/9.12 new_compare16(GT, EQ) 25.38/9.12 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.38/9.12 new_esEs33(x0, x1, ty_@0) 25.38/9.12 new_lt6(x0, x1, ty_Int) 25.38/9.12 new_ltEs24(x0, x1, ty_Integer) 25.38/9.12 new_lt6(x0, x1, ty_Char) 25.38/9.12 new_esEs7(x0, x1, ty_Char) 25.38/9.12 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_primCmpNat0(Zero, Zero) 25.38/9.12 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 25.38/9.12 25.38/9.12 We have to consider all minimal (P,Q,R)-chains. 25.38/9.12 ---------------------------------------- 25.38/9.12 25.38/9.12 (35) QDPSizeChangeProof (EQUIVALENT) 25.38/9.12 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 25.38/9.12 25.38/9.12 From the DPs we obtained the following set of size-change graphs: 25.38/9.12 *new_addToFM_C10(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, GT, bb, bc) -> new_addToFM_C(xuu34, :(xuu4000, xuu4001), xuu401, bb, bc) 25.38/9.12 The graph contains the following edges 4 >= 1, 7 >= 3, 9 >= 4, 10 >= 5 25.38/9.12 25.38/9.12 25.38/9.12 *new_addToFM_C(Branch([], xuu31, xuu32, xuu33, xuu34), :(xuu4000, xuu4001), xuu401, bb, bc) -> new_addToFM_C10(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, GT, bb, bc) 25.38/9.12 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 2 > 5, 2 > 6, 3 >= 7, 4 >= 9, 5 >= 10 25.38/9.12 25.38/9.12 25.38/9.12 *new_addToFM_C(Branch(:(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), :(xuu4000, xuu4001), xuu401, bb, bc) -> new_addToFM_C2(xuu300, xuu301, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, bb), bb, bc) 25.38/9.12 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 1 > 6, 2 > 7, 2 > 8, 3 >= 9, 4 >= 11, 5 >= 12 25.38/9.12 25.38/9.12 25.38/9.12 *new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, LT, h, ba) -> new_addToFM_C(xuu20, :(xuu22, xuu23), xuu24, h, ba) 25.38/9.12 The graph contains the following edges 5 >= 1, 9 >= 3, 11 >= 4, 12 >= 5 25.38/9.12 25.38/9.12 25.38/9.12 *new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, GT, h, ba) -> new_addToFM_C(xuu21, :(xuu22, xuu23), xuu24, h, ba) 25.38/9.12 The graph contains the following edges 6 >= 1, 9 >= 3, 11 >= 4, 12 >= 5 25.38/9.12 25.38/9.12 25.38/9.12 *new_addToFM_C20(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, h, ba) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_compare18(:(xuu22, xuu23), :(xuu16, xuu17), h), h, ba) 25.38/9.12 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 10 >= 11, 11 >= 12 25.38/9.12 25.38/9.12 25.38/9.12 *new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, EQ, h, ba) -> new_addToFM_C1(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_compare18(:(xuu22, xuu23), :(xuu16, xuu17), h), h, ba) 25.38/9.12 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 11 >= 11, 12 >= 12 25.38/9.12 25.38/9.12 25.38/9.12 *new_addToFM_C2(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, GT, h, ba) -> new_addToFM_C20(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, h, ba) 25.38/9.12 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 9 >= 9, 11 >= 10, 12 >= 11 25.38/9.12 25.38/9.12 25.38/9.12 ---------------------------------------- 25.38/9.12 25.38/9.12 (36) 25.38/9.12 YES 25.38/9.12 25.38/9.12 ---------------------------------------- 25.38/9.12 25.38/9.12 (37) 25.38/9.12 Obligation: 25.38/9.12 Q DP problem: 25.38/9.12 The TRS P consists of the following rules: 25.38/9.12 25.38/9.12 new_foldl(xuu3, :(xuu40, xuu41), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu3, xuu40, h, ba), xuu41, h, ba) 25.38/9.12 25.38/9.12 The TRS R consists of the following rules: 25.38/9.12 25.38/9.12 new_esEs11(xuu40000, xuu3000, app(ty_[], eaf)) -> new_esEs24(xuu40000, xuu3000, eaf) 25.38/9.12 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.38/9.12 new_esEs26(xuu590, xuu600, app(ty_Ratio, df)) -> new_esEs21(xuu590, xuu600, df) 25.38/9.12 new_esEs7(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.12 new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, h) -> new_primCompAux00(xuu4001, xuu301, new_compare0(xuu4000, xuu300, h), app(ty_[], h)) 25.38/9.12 new_pePe(True, xuu206) -> True 25.38/9.12 new_ltEs19(xuu591, xuu601, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs6(xuu591, xuu601, ec, ed, ee) 25.38/9.12 new_esEs10(xuu40001, xuu3001, ty_@0) -> new_esEs22(xuu40001, xuu3001) 25.38/9.12 new_esEs36(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.38/9.12 new_esEs27(xuu400002, xuu30002, ty_Float) -> new_esEs20(xuu400002, xuu30002) 25.38/9.12 new_compare16(GT, LT) -> GT 25.38/9.12 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.38/9.12 new_primCompAux00(xuu34, xuu35, EQ, ty_Char) -> new_compare6(xuu34, xuu35) 25.38/9.12 new_ltEs24(xuu592, xuu602, ty_Bool) -> new_ltEs12(xuu592, xuu602) 25.38/9.12 new_compare24(xuu111, xuu112, xuu113, xuu114, True, fg, fh) -> EQ 25.38/9.12 new_compare110(xuu153, xuu154, False, fdb) -> GT 25.38/9.12 new_compare26(xuu66, xuu67, True, efe, eff) -> EQ 25.38/9.12 new_ltEs4(xuu59, xuu60, ty_Int) -> new_ltEs7(xuu59, xuu60) 25.38/9.12 new_esEs28(xuu400001, xuu30001, ty_Char) -> new_esEs18(xuu400001, xuu30001) 25.38/9.12 new_emptyFM(h, ba) -> EmptyFM 25.38/9.12 new_lt6(xuu590, xuu600, ty_Bool) -> new_lt12(xuu590, xuu600) 25.38/9.12 new_esEs5(xuu40001, xuu3001, app(ty_Ratio, dfd)) -> new_esEs21(xuu40001, xuu3001, dfd) 25.38/9.12 new_compare0(xuu4000, xuu300, ty_Char) -> new_compare6(xuu4000, xuu300) 25.38/9.12 new_ltEs23(xuu100, xuu103, ty_Double) -> new_ltEs15(xuu100, xuu103) 25.38/9.12 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_Maybe, cc)) -> new_esEs12(xuu400000, xuu30000, cc) 25.38/9.12 new_ltEs8(Right(xuu590), Right(xuu600), cba, app(ty_Ratio, cbh)) -> new_ltEs11(xuu590, xuu600, cbh) 25.38/9.12 new_esEs4(xuu40002, xuu3002, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs14(xuu40002, xuu3002, dde, ddf, ddg) 25.38/9.12 new_esEs33(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.12 new_compare16(EQ, LT) -> GT 25.38/9.12 new_lt19(xuu111, xuu113, app(ty_Ratio, baa)) -> new_lt11(xuu111, xuu113, baa) 25.38/9.12 new_mkBalBranch6MkBalBranch11(xuu330, xuu331, xuu332, xuu333, xuu334, xuu31, xuu38, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu330, xuu331, xuu333, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), [], xuu31, xuu334, xuu38, app(ty_[], h), ba), app(ty_[], h), ba) 25.38/9.12 new_esEs26(xuu590, xuu600, ty_Ordering) -> new_esEs19(xuu590, xuu600) 25.38/9.12 new_esEs5(xuu40001, xuu3001, app(ty_[], dff)) -> new_esEs24(xuu40001, xuu3001, dff) 25.38/9.12 new_esEs35(xuu98, xuu101, ty_@0) -> new_esEs22(xuu98, xuu101) 25.38/9.12 new_esEs36(xuu400001, xuu30001, app(ty_Ratio, dbd)) -> new_esEs21(xuu400001, xuu30001, dbd) 25.38/9.12 new_mkBalBranch6MkBalBranch01(xuu26, xuu300, xuu301, xuu31, xuu340, xuu341, xuu342, Branch(xuu3430, xuu3431, xuu3432, xuu3433, xuu3434), xuu344, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu3430, xuu3431, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), :(xuu300, xuu301), xuu31, xuu26, xuu3433, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu340, xuu341, xuu3434, xuu344, app(ty_[], h), ba), app(ty_[], h), ba) 25.38/9.12 new_addToFM_C17(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, dda, ddb) -> Branch(:(xuu22, xuu23), new_addListToFM0(xuu18, xuu24, ddb), xuu19, xuu20, xuu21) 25.38/9.12 new_esEs26(xuu590, xuu600, ty_Integer) -> new_esEs23(xuu590, xuu600) 25.38/9.12 new_ltEs21(xuu66, xuu67, ty_Ordering) -> new_ltEs16(xuu66, xuu67) 25.38/9.12 new_esEs12(Nothing, Just(xuu30000), bb) -> False 25.38/9.12 new_esEs12(Just(xuu400000), Nothing, bb) -> False 25.38/9.12 new_esEs6(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.12 new_ltEs8(Left(xuu590), Left(xuu600), ty_Double, bhg) -> new_ltEs15(xuu590, xuu600) 25.38/9.12 new_esEs17(Left(xuu400000), Left(xuu30000), ty_@0, bag) -> new_esEs22(xuu400000, xuu30000) 25.38/9.12 new_esEs5(xuu40001, xuu3001, ty_Ordering) -> new_esEs19(xuu40001, xuu3001) 25.38/9.12 new_esEs12(Nothing, Nothing, bb) -> True 25.38/9.12 new_esEs26(xuu590, xuu600, app(ty_[], cg)) -> new_esEs24(xuu590, xuu600, cg) 25.38/9.12 new_addToFM_C13(xuu31, xuu32, xuu33, xuu34, xuu401, h, ba) -> Branch([], new_addListToFM0(xuu31, xuu401, ba), xuu32, xuu33, xuu34) 25.38/9.12 new_primEqNat0(Succ(xuu4000000), Succ(xuu300000)) -> new_primEqNat0(xuu4000000, xuu300000) 25.38/9.12 new_esEs33(xuu400000, xuu30000, app(ty_Maybe, cdg)) -> new_esEs12(xuu400000, xuu30000, cdg) 25.38/9.12 new_compare27(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Int) -> new_compare17(new_sr(xuu40000, xuu3001), new_sr(xuu3000, xuu40001)) 25.38/9.12 new_esEs24([], [], ccf) -> True 25.38/9.12 new_not(True) -> False 25.38/9.12 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(app(ty_@3, bah), bba), bbb), bag) -> new_esEs14(xuu400000, xuu30000, bah, bba, bbb) 25.38/9.12 new_lt22(xuu590, xuu600, app(ty_[], fee)) -> new_lt7(xuu590, xuu600, fee) 25.38/9.12 new_lt21(xuu99, xuu102, app(app(ty_@2, cgg), cgh)) -> new_lt14(xuu99, xuu102, cgg, cgh) 25.38/9.12 new_lt23(xuu591, xuu601, ty_Int) -> new_lt9(xuu591, xuu601) 25.38/9.12 new_esEs36(xuu400001, xuu30001, app(app(ty_@2, dae), daf)) -> new_esEs13(xuu400001, xuu30001, dae, daf) 25.38/9.12 new_esEs5(xuu40001, xuu3001, app(ty_Maybe, dfe)) -> new_esEs12(xuu40001, xuu3001, dfe) 25.38/9.12 new_esEs11(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.12 new_esEs5(xuu40001, xuu3001, ty_Integer) -> new_esEs23(xuu40001, xuu3001) 25.38/9.12 new_ltEs24(xuu592, xuu602, ty_Integer) -> new_ltEs18(xuu592, xuu602) 25.38/9.12 new_ltEs22(xuu73, xuu74, ty_Float) -> new_ltEs17(xuu73, xuu74) 25.38/9.12 new_ltEs8(Left(xuu590), Left(xuu600), app(app(ty_Either, cac), cad), bhg) -> new_ltEs8(xuu590, xuu600, cac, cad) 25.38/9.12 new_esEs8(xuu40000, xuu3000, app(app(ty_Either, fcc), fcd)) -> new_esEs17(xuu40000, xuu3000, fcc, fcd) 25.38/9.12 new_esEs35(xuu98, xuu101, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs14(xuu98, xuu101, ceg, ceh, cfa) 25.38/9.12 new_esEs17(Right(xuu400000), Right(xuu30000), bbh, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.12 new_ltEs19(xuu591, xuu601, ty_Bool) -> new_ltEs12(xuu591, xuu601) 25.38/9.12 new_esEs11(xuu40000, xuu3000, app(app(ty_Either, eab), eac)) -> new_esEs17(xuu40000, xuu3000, eab, eac) 25.38/9.12 new_primEqNat0(Succ(xuu4000000), Zero) -> False 25.38/9.12 new_primEqNat0(Zero, Succ(xuu300000)) -> False 25.38/9.12 new_esEs18(Char(xuu400000), Char(xuu30000)) -> new_primEqNat0(xuu400000, xuu30000) 25.38/9.12 new_esEs38(xuu591, xuu601, ty_Char) -> new_esEs18(xuu591, xuu601) 25.38/9.12 new_mkBalBranch6MkBalBranch50(xuu33, xuu31, xuu38, False, h, ba) -> new_mkBalBranch6MkBalBranch40(xuu33, xuu31, xuu38, new_gt(new_mkBalBranch6Size_r0(xuu33, xuu31, xuu38, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l0(xuu33, xuu31, xuu38, h, ba))), h, ba) 25.38/9.12 new_compare10(xuu137, xuu138, True, cea, ceb) -> LT 25.38/9.12 new_ltEs8(Left(xuu590), Left(xuu600), ty_Char, bhg) -> new_ltEs10(xuu590, xuu600) 25.38/9.12 new_esEs8(xuu40000, xuu3000, app(app(ty_@2, fbf), fbg)) -> new_esEs13(xuu40000, xuu3000, fbf, fbg) 25.38/9.12 new_ltEs4(xuu59, xuu60, app(ty_Ratio, ebe)) -> new_ltEs11(xuu59, xuu60, ebe) 25.38/9.12 new_esEs33(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.12 new_compare13(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.12 new_esEs4(xuu40002, xuu3002, ty_@0) -> new_esEs22(xuu40002, xuu3002) 25.38/9.12 new_esEs11(xuu40000, xuu3000, app(ty_Maybe, eae)) -> new_esEs12(xuu40000, xuu3000, eae) 25.38/9.12 new_ltEs4(xuu59, xuu60, app(app(ty_@2, ce), cf)) -> new_ltEs14(xuu59, xuu60, ce, cf) 25.38/9.12 new_esEs36(xuu400001, xuu30001, ty_Bool) -> new_esEs15(xuu400001, xuu30001) 25.38/9.12 new_esEs9(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.12 new_primCmpInt(Pos(Succ(xuu400000)), Neg(xuu3000)) -> GT 25.38/9.12 new_compare18(:(xuu40000, xuu40001), :(xuu3000, xuu3001), bge) -> new_primCompAux1(xuu40000, xuu3000, xuu40001, xuu3001, bge) 25.38/9.12 new_lt6(xuu590, xuu600, ty_Ordering) -> new_lt16(xuu590, xuu600) 25.38/9.12 new_esEs11(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.12 new_ltEs11(xuu59, xuu60, ebe) -> new_fsEs(new_compare27(xuu59, xuu60, ebe)) 25.38/9.12 new_esEs26(xuu590, xuu600, app(app(ty_@2, dh), ea)) -> new_esEs13(xuu590, xuu600, dh, ea) 25.38/9.12 new_ltEs21(xuu66, xuu67, ty_Int) -> new_ltEs7(xuu66, xuu67) 25.38/9.12 new_esEs33(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.12 new_mkBalBranch6MkBalBranch30(EmptyFM, xuu300, xuu301, xuu31, xuu34, True, h, ba) -> error([]) 25.38/9.12 new_ltEs8(Left(xuu590), Left(xuu600), ty_@0, bhg) -> new_ltEs9(xuu590, xuu600) 25.38/9.12 new_ltEs19(xuu591, xuu601, ty_Integer) -> new_ltEs18(xuu591, xuu601) 25.38/9.12 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.12 new_ltEs9(xuu59, xuu60) -> new_fsEs(new_compare8(xuu59, xuu60)) 25.38/9.12 new_primPlusNat1(Succ(xuu20900), Succ(xuu20800)) -> Succ(Succ(new_primPlusNat1(xuu20900, xuu20800))) 25.38/9.12 new_primCompAux00(xuu34, xuu35, GT, eha) -> GT 25.38/9.12 new_compare0(xuu4000, xuu300, app(app(ty_@2, bhd), bhe)) -> new_compare7(xuu4000, xuu300, bhd, bhe) 25.38/9.12 new_primCmpNat0(Zero, Succ(xuu30000)) -> LT 25.38/9.12 new_ltEs23(xuu100, xuu103, ty_@0) -> new_ltEs9(xuu100, xuu103) 25.38/9.12 new_sizeFM(EmptyFM, h, ba) -> Pos(Zero) 25.38/9.12 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.12 new_addToFM_C22(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, GT, dda, ddb) -> new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, dda, ddb) 25.38/9.12 new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) 25.38/9.12 new_esEs29(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.12 new_compare15(Right(xuu40000), Right(xuu3000), bha, bhb) -> new_compare26(xuu40000, xuu3000, new_esEs8(xuu40000, xuu3000, bhb), bha, bhb) 25.38/9.12 new_ltEs21(xuu66, xuu67, app(app(ty_Either, egc), egd)) -> new_ltEs8(xuu66, xuu67, egc, egd) 25.38/9.12 new_ltEs20(xuu112, xuu114, app(ty_Maybe, gh)) -> new_ltEs13(xuu112, xuu114, gh) 25.38/9.12 new_esEs33(xuu400000, xuu30000, app(ty_Ratio, cdf)) -> new_esEs21(xuu400000, xuu30000, cdf) 25.38/9.12 new_ltEs23(xuu100, xuu103, app(ty_Ratio, chg)) -> new_ltEs11(xuu100, xuu103, chg) 25.38/9.12 new_lt20(xuu98, xuu101, ty_Float) -> new_lt17(xuu98, xuu101) 25.38/9.12 new_compare15(Left(xuu40000), Right(xuu3000), bha, bhb) -> LT 25.38/9.12 new_esEs5(xuu40001, xuu3001, app(app(ty_@2, dee), def)) -> new_esEs13(xuu40001, xuu3001, dee, def) 25.38/9.12 new_ltEs4(xuu59, xuu60, app(app(app(ty_@3, ebb), ebc), ebd)) -> new_ltEs6(xuu59, xuu60, ebb, ebc, ebd) 25.38/9.12 new_lt22(xuu590, xuu600, ty_Char) -> new_lt4(xuu590, xuu600) 25.38/9.12 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_[], cd)) -> new_esEs24(xuu400000, xuu30000, cd) 25.38/9.12 new_primCompAux00(xuu34, xuu35, EQ, ty_@0) -> new_compare8(xuu34, xuu35) 25.38/9.12 new_esEs39(xuu590, xuu600, app(app(ty_Either, ffa), ffb)) -> new_esEs17(xuu590, xuu600, ffa, ffb) 25.38/9.12 new_esEs19(LT, EQ) -> False 25.38/9.12 new_esEs19(EQ, LT) -> False 25.38/9.12 new_esEs39(xuu590, xuu600, ty_Bool) -> new_esEs15(xuu590, xuu600) 25.38/9.12 new_esEs30(xuu111, xuu113, app(app(app(ty_@3, hd), he), hf)) -> new_esEs14(xuu111, xuu113, hd, he, hf) 25.38/9.12 new_esEs7(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.12 new_esEs33(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.12 new_ltEs4(xuu59, xuu60, ty_@0) -> new_ltEs9(xuu59, xuu60) 25.38/9.12 new_lt23(xuu591, xuu601, app(ty_Maybe, fgf)) -> new_lt13(xuu591, xuu601, fgf) 25.38/9.12 new_esEs11(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.12 new_compare17(xuu4000, xuu300) -> new_primCmpInt(xuu4000, xuu300) 25.38/9.12 new_lt23(xuu591, xuu601, ty_Double) -> new_lt15(xuu591, xuu601) 25.38/9.12 new_esEs39(xuu590, xuu600, app(app(ty_@2, ffe), fff)) -> new_esEs13(xuu590, xuu600, ffe, fff) 25.38/9.12 new_compare7(@2(xuu40000, xuu40001), @2(xuu3000, xuu3001), bhd, bhe) -> new_compare24(xuu40000, xuu40001, xuu3000, xuu3001, new_asAs(new_esEs11(xuu40000, xuu3000, bhd), new_esEs10(xuu40001, xuu3001, bhe)), bhd, bhe) 25.38/9.12 new_esEs8(xuu40000, xuu3000, app(ty_Ratio, fce)) -> new_esEs21(xuu40000, xuu3000, fce) 25.38/9.12 new_esEs36(xuu400001, xuu30001, app(ty_Maybe, dbe)) -> new_esEs12(xuu400001, xuu30001, dbe) 25.38/9.12 new_ltEs23(xuu100, xuu103, app(app(ty_@2, daa), dab)) -> new_ltEs14(xuu100, xuu103, daa, dab) 25.38/9.12 new_esEs10(xuu40001, xuu3001, ty_Char) -> new_esEs18(xuu40001, xuu3001) 25.38/9.12 new_esEs29(xuu400000, xuu30000, app(ty_[], efd)) -> new_esEs24(xuu400000, xuu30000, efd) 25.38/9.12 new_esEs34(xuu99, xuu102, ty_Float) -> new_esEs20(xuu99, xuu102) 25.38/9.12 new_esEs8(xuu40000, xuu3000, app(ty_[], fcg)) -> new_esEs24(xuu40000, xuu3000, fcg) 25.38/9.12 new_mkBalBranch6MkBalBranch110(xuu260, xuu261, xuu262, xuu263, Branch(xuu2640, xuu2641, xuu2642, xuu2643, xuu2644), xuu300, xuu301, xuu31, xuu34, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu2640, xuu2641, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu260, xuu261, xuu263, xuu2643, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), :(xuu300, xuu301), xuu31, xuu2644, xuu34, app(ty_[], h), ba), app(ty_[], h), ba) 25.38/9.12 new_mkBalBranch6MkBalBranch40(xuu33, xuu31, Branch(xuu380, xuu381, xuu382, xuu383, xuu384), True, h, ba) -> new_mkBalBranch6MkBalBranch010(xuu33, xuu31, xuu380, xuu381, xuu382, xuu383, xuu384, new_lt9(new_sizeFM(xuu383, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu384, h, ba))), h, ba) 25.38/9.12 new_esEs29(xuu400000, xuu30000, app(app(ty_Either, eeh), efa)) -> new_esEs17(xuu400000, xuu30000, eeh, efa) 25.38/9.12 new_esEs38(xuu591, xuu601, ty_Int) -> new_esEs16(xuu591, xuu601) 25.38/9.12 new_ltEs8(Right(xuu590), Right(xuu600), cba, ty_Float) -> new_ltEs17(xuu590, xuu600) 25.38/9.12 new_lt22(xuu590, xuu600, ty_Bool) -> new_lt12(xuu590, xuu600) 25.38/9.12 new_esEs15(True, True) -> True 25.38/9.12 new_primCompAux00(xuu34, xuu35, EQ, ty_Bool) -> new_compare28(xuu34, xuu35) 25.38/9.12 new_esEs5(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) 25.38/9.12 new_ltEs19(xuu591, xuu601, app(app(ty_@2, fb), fc)) -> new_ltEs14(xuu591, xuu601, fb, fc) 25.38/9.12 new_esEs29(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.12 new_primEqInt(Neg(Succ(xuu4000000)), Neg(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) 25.38/9.12 new_ltEs4(xuu59, xuu60, ty_Ordering) -> new_ltEs16(xuu59, xuu60) 25.38/9.12 new_esEs30(xuu111, xuu113, ty_@0) -> new_esEs22(xuu111, xuu113) 25.38/9.12 new_compare0(xuu4000, xuu300, ty_Float) -> new_compare13(xuu4000, xuu300) 25.38/9.12 new_primCmpInt(Neg(Zero), Pos(Succ(xuu30000))) -> LT 25.38/9.12 new_primMulInt(Pos(xuu30000), Pos(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.12 new_primCompAux00(xuu34, xuu35, EQ, ty_Double) -> new_compare30(xuu34, xuu35) 25.38/9.12 new_ltEs20(xuu112, xuu114, ty_Double) -> new_ltEs15(xuu112, xuu114) 25.38/9.12 new_ltEs13(Just(xuu590), Just(xuu600), app(app(ty_Either, fdg), fdh)) -> new_ltEs8(xuu590, xuu600, fdg, fdh) 25.38/9.12 new_esEs9(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.12 new_ltEs13(Just(xuu590), Just(xuu600), ty_Bool) -> new_ltEs12(xuu590, xuu600) 25.38/9.12 new_mkBalBranch6MkBalBranch010(xuu33, xuu31, xuu380, xuu381, xuu382, xuu383, xuu384, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu380, xuu381, new_mkBranch(Succ(Succ(Succ(Zero))), [], xuu31, xuu33, xuu383, app(ty_[], h), ba), xuu384, app(ty_[], h), ba) 25.38/9.12 new_ltEs24(xuu592, xuu602, ty_Float) -> new_ltEs17(xuu592, xuu602) 25.38/9.12 new_lt21(xuu99, xuu102, app(ty_Maybe, cgf)) -> new_lt13(xuu99, xuu102, cgf) 25.38/9.12 new_esEs38(xuu591, xuu601, app(ty_Maybe, fgf)) -> new_esEs12(xuu591, xuu601, fgf) 25.38/9.12 new_ltEs8(Right(xuu590), Left(xuu600), cba, bhg) -> False 25.38/9.12 new_primMulNat0(Succ(xuu300000), Zero) -> Zero 25.38/9.12 new_primMulNat0(Zero, Succ(xuu4000100)) -> Zero 25.38/9.12 new_ltEs8(Right(xuu590), Right(xuu600), cba, app(ty_Maybe, cca)) -> new_ltEs13(xuu590, xuu600, cca) 25.38/9.12 new_ltEs13(Just(xuu590), Just(xuu600), app(app(app(ty_@3, fdd), fde), fdf)) -> new_ltEs6(xuu590, xuu600, fdd, fde, fdf) 25.38/9.12 new_esEs26(xuu590, xuu600, ty_Bool) -> new_esEs15(xuu590, xuu600) 25.38/9.12 new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu401, LT, h, ba) -> new_addToFM_C13(xuu31, xuu32, xuu33, xuu34, xuu401, h, ba) 25.38/9.12 new_esEs5(xuu40001, xuu3001, app(app(ty_Either, dfb), dfc)) -> new_esEs17(xuu40001, xuu3001, dfb, dfc) 25.38/9.12 new_esEs37(xuu400000, xuu30000, app(app(app(ty_@3, dca), dcb), dcc)) -> new_esEs14(xuu400000, xuu30000, dca, dcb, dcc) 25.38/9.12 new_compare30(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.12 new_esEs26(xuu590, xuu600, ty_Int) -> new_esEs16(xuu590, xuu600) 25.38/9.12 new_ltEs21(xuu66, xuu67, ty_Integer) -> new_ltEs18(xuu66, xuu67) 25.38/9.12 new_addListToFM_CAdd(xuu3, @2(xuu400, xuu401), h, ba) -> new_addToFM_C0(xuu3, xuu400, xuu401, h, ba) 25.38/9.12 new_esEs8(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.12 new_compare15(Left(xuu40000), Left(xuu3000), bha, bhb) -> new_compare25(xuu40000, xuu3000, new_esEs7(xuu40000, xuu3000, bha), bha, bhb) 25.38/9.12 new_ltEs23(xuu100, xuu103, ty_Int) -> new_ltEs7(xuu100, xuu103) 25.38/9.12 new_ltEs12(False, True) -> True 25.38/9.12 new_lt20(xuu98, xuu101, app(app(ty_Either, cfb), cfc)) -> new_lt10(xuu98, xuu101, cfb, cfc) 25.38/9.12 new_ltEs4(xuu59, xuu60, app(app(ty_Either, cba), bhg)) -> new_ltEs8(xuu59, xuu60, cba, bhg) 25.38/9.12 new_ltEs19(xuu591, xuu601, app(app(ty_Either, ef), eg)) -> new_ltEs8(xuu591, xuu601, ef, eg) 25.38/9.12 new_ltEs20(xuu112, xuu114, ty_@0) -> new_ltEs9(xuu112, xuu114) 25.38/9.12 new_esEs28(xuu400001, xuu30001, app(app(app(ty_@3, edc), edd), ede)) -> new_esEs14(xuu400001, xuu30001, edc, edd, ede) 25.38/9.12 new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu401, EQ, h, ba) -> new_addToFM_C13(xuu31, xuu32, xuu33, xuu34, xuu401, h, ba) 25.38/9.12 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(ty_@2, bc), bd)) -> new_esEs13(xuu400000, xuu30000, bc, bd) 25.38/9.12 new_esEs26(xuu590, xuu600, app(ty_Maybe, dg)) -> new_esEs12(xuu590, xuu600, dg) 25.38/9.12 new_primPlusNat1(Succ(xuu20900), Zero) -> Succ(xuu20900) 25.38/9.12 new_primPlusNat1(Zero, Succ(xuu20800)) -> Succ(xuu20800) 25.38/9.12 new_esEs7(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.12 new_addToFM_C0(Branch([], xuu31, xuu32, xuu33, xuu34), :(xuu4000, xuu4001), xuu401, h, ba) -> new_addToFM_C14(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, GT, h, ba) 25.38/9.12 new_esEs30(xuu111, xuu113, ty_Char) -> new_esEs18(xuu111, xuu113) 25.38/9.12 new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_@2, fab), fac)) -> new_compare7(xuu34, xuu35, fab, fac) 25.38/9.12 new_esEs29(xuu400000, xuu30000, app(app(ty_@2, eec), eed)) -> new_esEs13(xuu400000, xuu30000, eec, eed) 25.38/9.12 new_compare28(False, False) -> EQ 25.38/9.12 new_ltEs21(xuu66, xuu67, ty_@0) -> new_ltEs9(xuu66, xuu67) 25.38/9.12 new_ltEs12(True, True) -> True 25.38/9.12 new_ltEs21(xuu66, xuu67, app(ty_Ratio, ege)) -> new_ltEs11(xuu66, xuu67, ege) 25.38/9.12 new_mkBalBranch6Size_r(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba) -> new_sizeFM(xuu34, h, ba) 25.38/9.12 new_esEs11(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.12 new_compare0(xuu4000, xuu300, app(app(ty_Either, bha), bhb)) -> new_compare15(xuu4000, xuu300, bha, bhb) 25.38/9.12 new_ltEs21(xuu66, xuu67, app(app(ty_@2, egg), egh)) -> new_ltEs14(xuu66, xuu67, egg, egh) 25.38/9.12 new_addListToFM0(xuu31, xuu401, ba) -> xuu401 25.38/9.12 new_ltEs19(xuu591, xuu601, ty_Ordering) -> new_ltEs16(xuu591, xuu601) 25.38/9.12 new_compare9(Integer(xuu40000), Integer(xuu3000)) -> new_primCmpInt(xuu40000, xuu3000) 25.38/9.12 new_addToFM_C22(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, EQ, dda, ddb) -> new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, dda, ddb) 25.38/9.12 new_esEs11(xuu40000, xuu3000, app(ty_Ratio, ead)) -> new_esEs21(xuu40000, xuu3000, ead) 25.38/9.12 new_ltEs4(xuu59, xuu60, app(ty_Maybe, ebf)) -> new_ltEs13(xuu59, xuu60, ebf) 25.38/9.12 new_esEs7(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.12 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.12 new_compare18(:(xuu40000, xuu40001), [], bge) -> GT 25.38/9.12 new_ltEs21(xuu66, xuu67, ty_Double) -> new_ltEs15(xuu66, xuu67) 25.38/9.12 new_esEs36(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.38/9.12 new_mkBalBranch6MkBalBranch40(xuu33, xuu31, xuu38, False, h, ba) -> new_mkBalBranch6MkBalBranch3(xuu33, xuu31, xuu38, new_gt(new_mkBalBranch6Size_l0(xuu33, xuu31, xuu38, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r0(xuu33, xuu31, xuu38, h, ba))), h, ba) 25.38/9.12 new_esEs31(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.38/9.12 new_ltEs24(xuu592, xuu602, ty_Int) -> new_ltEs7(xuu592, xuu602) 25.38/9.12 new_compare16(LT, LT) -> EQ 25.38/9.12 new_esEs27(xuu400002, xuu30002, app(app(app(ty_@3, eca), ecb), ecc)) -> new_esEs14(xuu400002, xuu30002, eca, ecb, ecc) 25.38/9.12 new_esEs33(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.12 new_ltEs24(xuu592, xuu602, app(app(ty_@2, gaa), gab)) -> new_ltEs14(xuu592, xuu602, gaa, gab) 25.38/9.12 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_Ratio, bbe), bag) -> new_esEs21(xuu400000, xuu30000, bbe) 25.38/9.12 new_mkBalBranch6MkBalBranch30(xuu26, xuu300, xuu301, xuu31, xuu34, False, h, ba) -> new_mkBranch(Succ(Zero), :(xuu300, xuu301), xuu31, xuu26, xuu34, app(ty_[], h), ba) 25.38/9.12 new_esEs6(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.12 new_esEs7(xuu40000, xuu3000, app(ty_[], fbe)) -> new_esEs24(xuu40000, xuu3000, fbe) 25.38/9.12 new_esEs17(Right(xuu400000), Right(xuu30000), bbh, app(ty_Ratio, bch)) -> new_esEs21(xuu400000, xuu30000, bch) 25.38/9.12 new_esEs11(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.12 new_esEs38(xuu591, xuu601, app(app(app(ty_@3, ffh), fga), fgb)) -> new_esEs14(xuu591, xuu601, ffh, fga, fgb) 25.38/9.12 new_esEs35(xuu98, xuu101, ty_Float) -> new_esEs20(xuu98, xuu101) 25.38/9.12 new_ltEs5(xuu59, xuu60, eba) -> new_fsEs(new_compare18(xuu59, xuu60, eba)) 25.38/9.12 new_esEs29(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.12 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_[], bbg), bag) -> new_esEs24(xuu400000, xuu30000, bbg) 25.38/9.12 new_esEs35(xuu98, xuu101, ty_Int) -> new_esEs16(xuu98, xuu101) 25.38/9.12 new_mkBalBranch6MkBalBranch50(xuu33, xuu31, xuu38, True, h, ba) -> new_mkBranch(Zero, [], xuu31, xuu33, xuu38, app(ty_[], h), ba) 25.38/9.12 new_lt6(xuu590, xuu600, ty_Char) -> new_lt4(xuu590, xuu600) 25.38/9.12 new_ltEs13(Just(xuu590), Just(xuu600), ty_Int) -> new_ltEs7(xuu590, xuu600) 25.38/9.12 new_ltEs19(xuu591, xuu601, ty_@0) -> new_ltEs9(xuu591, xuu601) 25.38/9.12 new_ltEs8(Right(xuu590), Right(xuu600), cba, app(app(ty_@2, ccb), ccc)) -> new_ltEs14(xuu590, xuu600, ccb, ccc) 25.38/9.12 new_primPlusInt(Neg(xuu2090), Neg(xuu2080)) -> Neg(new_primPlusNat1(xuu2090, xuu2080)) 25.38/9.12 new_esEs28(xuu400001, xuu30001, app(ty_[], eeb)) -> new_esEs24(xuu400001, xuu30001, eeb) 25.38/9.12 new_esEs10(xuu40001, xuu3001, ty_Float) -> new_esEs20(xuu40001, xuu3001) 25.38/9.12 new_esEs10(xuu40001, xuu3001, ty_Double) -> new_esEs25(xuu40001, xuu3001) 25.38/9.12 new_esEs29(xuu400000, xuu30000, app(ty_Maybe, efc)) -> new_esEs12(xuu400000, xuu30000, efc) 25.38/9.12 new_esEs35(xuu98, xuu101, app(ty_Maybe, bgd)) -> new_esEs12(xuu98, xuu101, bgd) 25.38/9.12 new_esEs38(xuu591, xuu601, ty_Bool) -> new_esEs15(xuu591, xuu601) 25.38/9.12 new_mkBalBranch6MkBalBranch110(xuu260, xuu261, xuu262, xuu263, xuu264, xuu300, xuu301, xuu31, xuu34, True, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu260, xuu261, xuu263, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), :(xuu300, xuu301), xuu31, xuu264, xuu34, app(ty_[], h), ba), app(ty_[], h), ba) 25.38/9.12 new_lt20(xuu98, xuu101, app(ty_Maybe, bgd)) -> new_lt13(xuu98, xuu101, bgd) 25.38/9.12 new_esEs38(xuu591, xuu601, app(app(ty_Either, fgc), fgd)) -> new_esEs17(xuu591, xuu601, fgc, fgd) 25.38/9.12 new_primCompAux00(xuu34, xuu35, EQ, app(app(app(ty_@3, ehc), ehd), ehe)) -> new_compare19(xuu34, xuu35, ehc, ehd, ehe) 25.38/9.12 new_esEs5(xuu40001, xuu3001, ty_Char) -> new_esEs18(xuu40001, xuu3001) 25.38/9.12 new_addToFM_C16(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, EQ, dda, ddb) -> new_addToFM_C17(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, dda, ddb) 25.38/9.12 new_compare0(xuu4000, xuu300, app(ty_[], bge)) -> new_compare18(xuu4000, xuu300, bge) 25.38/9.12 new_ltEs18(xuu59, xuu60) -> new_fsEs(new_compare9(xuu59, xuu60)) 25.38/9.12 new_esEs30(xuu111, xuu113, app(ty_Maybe, bab)) -> new_esEs12(xuu111, xuu113, bab) 25.38/9.12 new_compare10(xuu137, xuu138, False, cea, ceb) -> GT 25.38/9.12 new_esEs17(Right(xuu400000), Right(xuu30000), bbh, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.12 new_ltEs14(@2(xuu590, xuu591), @2(xuu600, xuu601), ce, cf) -> new_pePe(new_lt6(xuu590, xuu600, ce), new_asAs(new_esEs26(xuu590, xuu600, ce), new_ltEs19(xuu591, xuu601, cf))) 25.38/9.12 new_esEs38(xuu591, xuu601, ty_Integer) -> new_esEs23(xuu591, xuu601) 25.38/9.12 new_lt19(xuu111, xuu113, ty_Bool) -> new_lt12(xuu111, xuu113) 25.38/9.12 new_esEs19(LT, LT) -> True 25.38/9.12 new_primCompAux00(xuu34, xuu35, EQ, ty_Float) -> new_compare13(xuu34, xuu35) 25.38/9.12 new_esEs30(xuu111, xuu113, app(ty_Ratio, baa)) -> new_esEs21(xuu111, xuu113, baa) 25.38/9.12 new_primMinusNat0(Zero, Zero) -> Pos(Zero) 25.38/9.12 new_addToFM_C16(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, GT, dda, ddb) -> new_mkBalBranch(xuu16, xuu17, xuu18, xuu20, new_addToFM_C0(xuu21, :(xuu22, xuu23), xuu24, dda, ddb), dda, ddb) 25.38/9.12 new_lt22(xuu590, xuu600, ty_Ordering) -> new_lt16(xuu590, xuu600) 25.38/9.12 new_esEs27(xuu400002, xuu30002, app(app(ty_@2, ebg), ebh)) -> new_esEs13(xuu400002, xuu30002, ebg, ebh) 25.38/9.12 new_esEs6(xuu40000, xuu3000, app(app(ty_@2, dac), dad)) -> new_esEs13(xuu40000, xuu3000, dac, dad) 25.38/9.12 new_mkBalBranch6MkBalBranch11(xuu330, xuu331, xuu332, xuu333, Branch(xuu3340, xuu3341, xuu3342, xuu3343, xuu3344), xuu31, xuu38, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu3340, xuu3341, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu330, xuu331, xuu333, xuu3343, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), [], xuu31, xuu3344, xuu38, app(ty_[], h), ba), app(ty_[], h), ba) 25.38/9.12 new_primCmpInt(Pos(Succ(xuu400000)), Pos(xuu3000)) -> new_primCmpNat0(Succ(xuu400000), xuu3000) 25.38/9.12 new_esEs38(xuu591, xuu601, ty_@0) -> new_esEs22(xuu591, xuu601) 25.38/9.12 new_lt18(xuu98, xuu101) -> new_esEs19(new_compare9(xuu98, xuu101), LT) 25.38/9.12 new_esEs10(xuu40001, xuu3001, app(ty_Maybe, dhc)) -> new_esEs12(xuu40001, xuu3001, dhc) 25.38/9.12 new_esEs17(Right(xuu400000), Right(xuu30000), bbh, app(ty_[], bdb)) -> new_esEs24(xuu400000, xuu30000, bdb) 25.38/9.12 new_esEs29(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.12 new_lt23(xuu591, xuu601, ty_Char) -> new_lt4(xuu591, xuu601) 25.38/9.12 new_primCompAux00(xuu34, xuu35, EQ, app(app(ty_Either, ehf), ehg)) -> new_compare15(xuu34, xuu35, ehf, ehg) 25.38/9.12 new_lt17(xuu98, xuu101) -> new_esEs19(new_compare13(xuu98, xuu101), LT) 25.38/9.12 new_esEs39(xuu590, xuu600, ty_Float) -> new_esEs20(xuu590, xuu600) 25.38/9.12 new_lt19(xuu111, xuu113, ty_Integer) -> new_lt18(xuu111, xuu113) 25.38/9.12 new_lt21(xuu99, xuu102, ty_Ordering) -> new_lt16(xuu99, xuu102) 25.38/9.12 new_ltEs23(xuu100, xuu103, app(ty_[], cha)) -> new_ltEs5(xuu100, xuu103, cha) 25.38/9.12 new_ltEs13(Nothing, Nothing, ebf) -> True 25.38/9.12 new_ltEs13(Just(xuu590), Just(xuu600), app(app(ty_@2, fec), fed)) -> new_ltEs14(xuu590, xuu600, fec, fed) 25.38/9.12 new_ltEs13(Just(xuu590), Nothing, ebf) -> False 25.38/9.12 new_lt19(xuu111, xuu113, app(ty_Maybe, bab)) -> new_lt13(xuu111, xuu113, bab) 25.38/9.12 new_ltEs12(True, False) -> False 25.38/9.12 new_esEs4(xuu40002, xuu3002, ty_Float) -> new_esEs20(xuu40002, xuu3002) 25.38/9.12 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Float, bag) -> new_esEs20(xuu400000, xuu30000) 25.38/9.12 new_esEs33(xuu400000, xuu30000, app(app(ty_Either, cdd), cde)) -> new_esEs17(xuu400000, xuu30000, cdd, cde) 25.38/9.12 new_esEs17(Left(xuu400000), Left(xuu30000), app(ty_Maybe, bbf), bag) -> new_esEs12(xuu400000, xuu30000, bbf) 25.38/9.12 new_esEs34(xuu99, xuu102, ty_Ordering) -> new_esEs19(xuu99, xuu102) 25.38/9.12 new_esEs14(@3(xuu400000, xuu400001, xuu400002), @3(xuu30000, xuu30001, xuu30002), dfg, dfh, dga) -> new_asAs(new_esEs29(xuu400000, xuu30000, dfg), new_asAs(new_esEs28(xuu400001, xuu30001, dfh), new_esEs27(xuu400002, xuu30002, dga))) 25.38/9.12 new_lt20(xuu98, xuu101, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_lt8(xuu98, xuu101, ceg, ceh, cfa) 25.38/9.12 new_mkBalBranch6MkBalBranch010(xuu33, xuu31, xuu380, xuu381, xuu382, EmptyFM, xuu384, False, h, ba) -> error([]) 25.38/9.12 new_compare0(xuu4000, xuu300, ty_Int) -> new_compare17(xuu4000, xuu300) 25.38/9.12 new_ltEs22(xuu73, xuu74, app(ty_[], bdd)) -> new_ltEs5(xuu73, xuu74, bdd) 25.38/9.12 new_mkBalBranch6MkBalBranch5(xuu26, xuu300, xuu301, xuu31, xuu34, GT, h, ba) -> new_mkBalBranch6MkBalBranch51(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba) 25.38/9.12 new_esEs10(xuu40001, xuu3001, ty_Ordering) -> new_esEs19(xuu40001, xuu3001) 25.38/9.12 new_ltEs8(Left(xuu590), Left(xuu600), ty_Ordering, bhg) -> new_ltEs16(xuu590, xuu600) 25.38/9.12 new_esEs13(@2(xuu400000, xuu400001), @2(xuu30000, xuu30001), dac, dad) -> new_asAs(new_esEs37(xuu400000, xuu30000, dac), new_esEs36(xuu400001, xuu30001, dad)) 25.38/9.12 new_lt21(xuu99, xuu102, ty_Int) -> new_lt9(xuu99, xuu102) 25.38/9.12 new_esEs33(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.12 new_esEs34(xuu99, xuu102, app(app(ty_Either, cgc), cgd)) -> new_esEs17(xuu99, xuu102, cgc, cgd) 25.38/9.12 new_mkBalBranch6MkBalBranch5(xuu26, xuu300, xuu301, xuu31, xuu34, LT, h, ba) -> new_mkBranch(Zero, :(xuu300, xuu301), xuu31, xuu26, xuu34, app(ty_[], h), ba) 25.38/9.12 new_addToFM_C14(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, EQ, h, ba) -> new_addToFM_C15(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, h, ba) 25.38/9.12 new_compare28(False, True) -> LT 25.38/9.12 new_esEs10(xuu40001, xuu3001, ty_Int) -> new_esEs16(xuu40001, xuu3001) 25.38/9.12 new_esEs34(xuu99, xuu102, app(ty_Maybe, cgf)) -> new_esEs12(xuu99, xuu102, cgf) 25.38/9.12 new_ltEs12(False, False) -> True 25.38/9.12 new_mkBalBranch6MkBalBranch40(xuu33, xuu31, EmptyFM, True, h, ba) -> error([]) 25.38/9.12 new_ltEs8(Right(xuu590), Right(xuu600), cba, ty_Double) -> new_ltEs15(xuu590, xuu600) 25.38/9.12 new_compare29(Just(xuu40000), Nothing, bfa) -> GT 25.38/9.12 new_esEs7(xuu40000, xuu3000, app(app(ty_@2, fad), fae)) -> new_esEs13(xuu40000, xuu3000, fad, fae) 25.38/9.12 new_esEs17(Left(xuu400000), Right(xuu30000), bbh, bag) -> False 25.38/9.12 new_esEs17(Right(xuu400000), Left(xuu30000), bbh, bag) -> False 25.38/9.12 new_esEs34(xuu99, xuu102, ty_Integer) -> new_esEs23(xuu99, xuu102) 25.38/9.12 new_ltEs15(xuu59, xuu60) -> new_fsEs(new_compare30(xuu59, xuu60)) 25.38/9.12 new_esEs34(xuu99, xuu102, ty_@0) -> new_esEs22(xuu99, xuu102) 25.38/9.12 new_mkBalBranch6MkBalBranch51(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba) -> new_mkBalBranch6MkBalBranch4(xuu26, xuu300, xuu301, xuu31, xuu34, new_gt(new_mkBalBranch6Size_r(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba))), h, ba) 25.38/9.12 new_esEs4(xuu40002, xuu3002, ty_Char) -> new_esEs18(xuu40002, xuu3002) 25.38/9.12 new_compare13(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.12 new_compare13(Float(xuu40000, Neg(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.12 new_lt22(xuu590, xuu600, ty_Int) -> new_lt9(xuu590, xuu600) 25.38/9.12 new_ltEs24(xuu592, xuu602, app(ty_Ratio, fhg)) -> new_ltEs11(xuu592, xuu602, fhg) 25.38/9.12 new_esEs39(xuu590, xuu600, ty_Ordering) -> new_esEs19(xuu590, xuu600) 25.38/9.12 new_esEs28(xuu400001, xuu30001, app(ty_Maybe, eea)) -> new_esEs12(xuu400001, xuu30001, eea) 25.38/9.12 new_lt19(xuu111, xuu113, app(app(app(ty_@3, hd), he), hf)) -> new_lt8(xuu111, xuu113, hd, he, hf) 25.38/9.12 new_lt6(xuu590, xuu600, ty_Float) -> new_lt17(xuu590, xuu600) 25.38/9.12 new_esEs39(xuu590, xuu600, ty_Integer) -> new_esEs23(xuu590, xuu600) 25.38/9.12 new_lt19(xuu111, xuu113, ty_@0) -> new_lt5(xuu111, xuu113) 25.38/9.12 new_compare28(True, True) -> EQ 25.38/9.12 new_esEs27(xuu400002, xuu30002, app(ty_[], ech)) -> new_esEs24(xuu400002, xuu30002, ech) 25.38/9.12 new_lt22(xuu590, xuu600, ty_Integer) -> new_lt18(xuu590, xuu600) 25.38/9.12 new_sizeFM0(Branch(xuu3080, xuu3081, xuu3082, xuu3083, xuu3084), ccd, cce) -> xuu3082 25.38/9.12 new_lt19(xuu111, xuu113, ty_Ordering) -> new_lt16(xuu111, xuu113) 25.38/9.12 new_addToFM_C22(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, LT, dda, ddb) -> new_mkBalBranch(xuu16, xuu17, xuu18, new_addToFM_C0(xuu20, :(xuu22, xuu23), xuu24, dda, ddb), xuu21, dda, ddb) 25.38/9.12 new_sizeFM(Branch(xuu340, xuu341, xuu342, xuu343, xuu344), h, ba) -> xuu342 25.38/9.12 new_esEs27(xuu400002, xuu30002, app(ty_Ratio, ecf)) -> new_esEs21(xuu400002, xuu30002, ecf) 25.38/9.12 new_esEs26(xuu590, xuu600, ty_Double) -> new_esEs25(xuu590, xuu600) 25.38/9.12 new_ltEs8(Left(xuu590), Left(xuu600), ty_Float, bhg) -> new_ltEs17(xuu590, xuu600) 25.38/9.12 new_ltEs8(Left(xuu590), Left(xuu600), ty_Integer, bhg) -> new_ltEs18(xuu590, xuu600) 25.38/9.12 new_mkBalBranch6MkBalBranch4(xuu26, xuu300, xuu301, xuu31, xuu34, False, h, ba) -> new_mkBalBranch6MkBalBranch30(xuu26, xuu300, xuu301, xuu31, xuu34, new_gt(new_mkBalBranch6Size_l(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba), new_sr(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba))), h, ba) 25.38/9.12 new_ltEs8(Left(xuu590), Right(xuu600), cba, bhg) -> True 25.38/9.12 new_esEs24(:(xuu400000, xuu400001), :(xuu30000, xuu30001), ccf) -> new_asAs(new_esEs33(xuu400000, xuu30000, ccf), new_esEs24(xuu400001, xuu30001, ccf)) 25.38/9.12 new_mkBalBranch6MkBalBranch110(xuu260, xuu261, xuu262, xuu263, EmptyFM, xuu300, xuu301, xuu31, xuu34, False, h, ba) -> error([]) 25.38/9.12 new_esEs28(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.38/9.12 new_lt19(xuu111, xuu113, ty_Int) -> new_lt9(xuu111, xuu113) 25.38/9.12 new_mkBalBranch6MkBalBranch3(Branch(xuu330, xuu331, xuu332, xuu333, xuu334), xuu31, xuu38, True, h, ba) -> new_mkBalBranch6MkBalBranch11(xuu330, xuu331, xuu332, xuu333, xuu334, xuu31, xuu38, new_lt9(new_sizeFM(xuu334, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu333, h, ba))), h, ba) 25.38/9.12 new_esEs37(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.12 new_esEs12(Just(xuu400000), Just(xuu30000), app(ty_Ratio, cb)) -> new_esEs21(xuu400000, xuu30000, cb) 25.38/9.12 new_esEs19(LT, GT) -> False 25.38/9.12 new_esEs19(GT, LT) -> False 25.38/9.12 new_ltEs4(xuu59, xuu60, app(ty_[], eba)) -> new_ltEs5(xuu59, xuu60, eba) 25.38/9.12 new_ltEs10(xuu59, xuu60) -> new_fsEs(new_compare6(xuu59, xuu60)) 25.38/9.12 new_mkBalBranch6Size_r0(xuu33, xuu31, xuu38, h, ba) -> new_sizeFM(xuu38, h, ba) 25.38/9.12 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_Maybe, caf), bhg) -> new_ltEs13(xuu590, xuu600, caf) 25.38/9.12 new_esEs29(xuu400000, xuu30000, app(ty_Ratio, efb)) -> new_esEs21(xuu400000, xuu30000, efb) 25.38/9.12 new_lt22(xuu590, xuu600, ty_Float) -> new_lt17(xuu590, xuu600) 25.38/9.12 new_ltEs6(@3(xuu590, xuu591, xuu592), @3(xuu600, xuu601, xuu602), ebb, ebc, ebd) -> new_pePe(new_lt22(xuu590, xuu600, ebb), new_asAs(new_esEs39(xuu590, xuu600, ebb), new_pePe(new_lt23(xuu591, xuu601, ebc), new_asAs(new_esEs38(xuu591, xuu601, ebc), new_ltEs24(xuu592, xuu602, ebd))))) 25.38/9.12 new_esEs38(xuu591, xuu601, ty_Ordering) -> new_esEs19(xuu591, xuu601) 25.38/9.12 new_ltEs8(Left(xuu590), Left(xuu600), app(app(ty_@2, cag), cah), bhg) -> new_ltEs14(xuu590, xuu600, cag, cah) 25.38/9.12 new_lt20(xuu98, xuu101, ty_Integer) -> new_lt18(xuu98, xuu101) 25.38/9.12 new_ltEs21(xuu66, xuu67, app(ty_[], efg)) -> new_ltEs5(xuu66, xuu67, efg) 25.38/9.12 new_lt20(xuu98, xuu101, ty_Int) -> new_lt9(xuu98, xuu101) 25.38/9.12 new_primCompAux00(xuu34, xuu35, EQ, ty_Int) -> new_compare17(xuu34, xuu35) 25.38/9.12 new_lt20(xuu98, xuu101, ty_Char) -> new_lt4(xuu98, xuu101) 25.38/9.12 new_compare29(Nothing, Just(xuu3000), bfa) -> LT 25.38/9.12 new_esEs37(xuu400000, xuu30000, app(app(ty_Either, dcd), dce)) -> new_esEs17(xuu400000, xuu30000, dcd, dce) 25.38/9.12 new_esEs30(xuu111, xuu113, ty_Double) -> new_esEs25(xuu111, xuu113) 25.38/9.12 new_esEs35(xuu98, xuu101, app(app(ty_Either, cfb), cfc)) -> new_esEs17(xuu98, xuu101, cfb, cfc) 25.38/9.12 new_lt23(xuu591, xuu601, ty_@0) -> new_lt5(xuu591, xuu601) 25.38/9.12 new_esEs35(xuu98, xuu101, ty_Integer) -> new_esEs23(xuu98, xuu101) 25.38/9.12 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Ordering, bag) -> new_esEs19(xuu400000, xuu30000) 25.38/9.12 new_compare27(:%(xuu40000, xuu40001), :%(xuu3000, xuu3001), ty_Integer) -> new_compare9(new_sr0(xuu40000, xuu3001), new_sr0(xuu3000, xuu40001)) 25.38/9.12 new_mkBalBranch(xuu300, xuu301, xuu31, xuu26, xuu34, h, ba) -> new_mkBalBranch6MkBalBranch5(xuu26, xuu300, xuu301, xuu31, xuu34, new_compare17(new_primPlusInt(new_mkBalBranch6Size_l(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba), new_mkBalBranch6Size_r(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba)), Pos(Succ(Succ(Zero)))), h, ba) 25.38/9.12 new_esEs36(xuu400001, xuu30001, ty_Float) -> new_esEs20(xuu400001, xuu30001) 25.38/9.12 new_esEs25(Double(xuu400000, xuu400001), Double(xuu30000, xuu30001)) -> new_esEs16(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) 25.38/9.12 new_esEs35(xuu98, xuu101, ty_Char) -> new_esEs18(xuu98, xuu101) 25.38/9.12 new_ltEs4(xuu59, xuu60, ty_Float) -> new_ltEs17(xuu59, xuu60) 25.38/9.12 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_Ratio, fea)) -> new_ltEs11(xuu590, xuu600, fea) 25.38/9.12 new_primPlusNat1(Zero, Zero) -> Zero 25.38/9.12 new_ltEs4(xuu59, xuu60, ty_Integer) -> new_ltEs18(xuu59, xuu60) 25.38/9.12 new_primCompAux00(xuu34, xuu35, EQ, ty_Ordering) -> new_compare16(xuu34, xuu35) 25.38/9.12 new_primCompAux00(xuu34, xuu35, EQ, app(ty_Ratio, ehh)) -> new_compare27(xuu34, xuu35, ehh) 25.38/9.12 new_compare16(GT, GT) -> EQ 25.38/9.12 new_esEs32(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.12 new_compare0(xuu4000, xuu300, ty_Double) -> new_compare30(xuu4000, xuu300) 25.38/9.12 new_lt9(xuu98, xuu101) -> new_esEs19(new_compare17(xuu98, xuu101), LT) 25.38/9.12 new_lt20(xuu98, xuu101, ty_@0) -> new_lt5(xuu98, xuu101) 25.38/9.12 new_ltEs21(xuu66, xuu67, ty_Float) -> new_ltEs17(xuu66, xuu67) 25.38/9.12 new_esEs9(xuu40000, xuu3000, app(app(ty_@2, bfb), bfc)) -> new_esEs13(xuu40000, xuu3000, bfb, bfc) 25.38/9.12 new_esEs34(xuu99, xuu102, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs14(xuu99, xuu102, cfh, cga, cgb) 25.38/9.12 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Char, bag) -> new_esEs18(xuu400000, xuu30000) 25.38/9.12 new_lt21(xuu99, xuu102, app(app(app(ty_@3, cfh), cga), cgb)) -> new_lt8(xuu99, xuu102, cfh, cga, cgb) 25.38/9.12 new_esEs15(False, True) -> False 25.38/9.12 new_esEs15(True, False) -> False 25.38/9.12 new_esEs31(xuu400001, xuu30001, ty_Int) -> new_esEs16(xuu400001, xuu30001) 25.38/9.12 new_esEs17(Right(xuu400000), Right(xuu30000), bbh, app(app(ty_@2, bca), bcb)) -> new_esEs13(xuu400000, xuu30000, bca, bcb) 25.38/9.12 new_esEs34(xuu99, xuu102, ty_Bool) -> new_esEs15(xuu99, xuu102) 25.38/9.12 new_esEs10(xuu40001, xuu3001, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs14(xuu40001, xuu3001, dge, dgf, dgg) 25.38/9.12 new_esEs35(xuu98, xuu101, ty_Ordering) -> new_esEs19(xuu98, xuu101) 25.38/9.12 new_lt4(xuu98, xuu101) -> new_esEs19(new_compare6(xuu98, xuu101), LT) 25.38/9.12 new_esEs11(xuu40000, xuu3000, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs14(xuu40000, xuu3000, dhg, dhh, eaa) 25.38/9.12 new_esEs37(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.12 new_mkBalBranch6MkBalBranch4(xuu26, xuu300, xuu301, xuu31, EmptyFM, True, h, ba) -> error([]) 25.38/9.12 new_esEs10(xuu40001, xuu3001, ty_Bool) -> new_esEs15(xuu40001, xuu3001) 25.38/9.12 new_primCmpNat0(Succ(xuu400000), Succ(xuu30000)) -> new_primCmpNat0(xuu400000, xuu30000) 25.38/9.12 new_lt21(xuu99, xuu102, ty_@0) -> new_lt5(xuu99, xuu102) 25.38/9.12 new_esEs30(xuu111, xuu113, ty_Int) -> new_esEs16(xuu111, xuu113) 25.38/9.12 new_lt19(xuu111, xuu113, ty_Char) -> new_lt4(xuu111, xuu113) 25.38/9.12 new_esEs38(xuu591, xuu601, ty_Float) -> new_esEs20(xuu591, xuu601) 25.38/9.12 new_lt5(xuu98, xuu101) -> new_esEs19(new_compare8(xuu98, xuu101), LT) 25.38/9.12 new_lt23(xuu591, xuu601, ty_Float) -> new_lt17(xuu591, xuu601) 25.38/9.12 new_primMinusNat0(Zero, Succ(xuu20800)) -> Neg(Succ(xuu20800)) 25.38/9.12 new_mkBalBranch6MkBalBranch5(xuu26, xuu300, xuu301, xuu31, xuu34, EQ, h, ba) -> new_mkBalBranch6MkBalBranch51(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba) 25.38/9.12 new_esEs37(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.12 new_lt22(xuu590, xuu600, ty_@0) -> new_lt5(xuu590, xuu600) 25.38/9.12 new_esEs37(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.12 new_esEs36(xuu400001, xuu30001, ty_@0) -> new_esEs22(xuu400001, xuu30001) 25.38/9.12 new_lt23(xuu591, xuu601, app(app(app(ty_@3, ffh), fga), fgb)) -> new_lt8(xuu591, xuu601, ffh, fga, fgb) 25.38/9.12 new_mkBalBranch6MkBalBranch30(Branch(xuu260, xuu261, xuu262, xuu263, xuu264), xuu300, xuu301, xuu31, xuu34, True, h, ba) -> new_mkBalBranch6MkBalBranch110(xuu260, xuu261, xuu262, xuu263, xuu264, xuu300, xuu301, xuu31, xuu34, new_lt9(new_sizeFM(xuu264, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu263, h, ba))), h, ba) 25.38/9.12 new_esEs11(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.12 new_esEs36(xuu400001, xuu30001, app(app(ty_Either, dbb), dbc)) -> new_esEs17(xuu400001, xuu30001, dbb, dbc) 25.38/9.12 new_esEs37(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.12 new_esEs28(xuu400001, xuu30001, ty_Double) -> new_esEs25(xuu400001, xuu30001) 25.38/9.12 new_compare211(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, False, cec, ced, cee) -> new_compare112(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, new_lt20(xuu98, xuu101, cec), new_asAs(new_esEs35(xuu98, xuu101, cec), new_pePe(new_lt21(xuu99, xuu102, ced), new_asAs(new_esEs34(xuu99, xuu102, ced), new_ltEs23(xuu100, xuu103, cee)))), cec, ced, cee) 25.38/9.12 new_ltEs20(xuu112, xuu114, app(ty_[], ga)) -> new_ltEs5(xuu112, xuu114, ga) 25.38/9.12 new_esEs36(xuu400001, xuu30001, ty_Char) -> new_esEs18(xuu400001, xuu30001) 25.38/9.12 new_compare110(xuu153, xuu154, True, fdb) -> LT 25.38/9.12 new_compare14(xuu144, xuu145, False, fch, fda) -> GT 25.38/9.12 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.12 new_ltEs20(xuu112, xuu114, ty_Float) -> new_ltEs17(xuu112, xuu114) 25.38/9.12 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(ty_@2, bae), baf), bag) -> new_esEs13(xuu400000, xuu30000, bae, baf) 25.38/9.12 new_compare15(Right(xuu40000), Left(xuu3000), bha, bhb) -> GT 25.38/9.12 new_lt22(xuu590, xuu600, app(app(app(ty_@3, fef), feg), feh)) -> new_lt8(xuu590, xuu600, fef, feg, feh) 25.38/9.12 new_lt6(xuu590, xuu600, ty_@0) -> new_lt5(xuu590, xuu600) 25.38/9.12 new_lt6(xuu590, xuu600, ty_Integer) -> new_lt18(xuu590, xuu600) 25.38/9.12 new_esEs33(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.12 new_ltEs13(Nothing, Just(xuu600), ebf) -> True 25.38/9.12 new_lt21(xuu99, xuu102, ty_Integer) -> new_lt18(xuu99, xuu102) 25.38/9.12 new_lt7(xuu98, xuu101, cef) -> new_esEs19(new_compare18(xuu98, xuu101, cef), LT) 25.38/9.12 new_sizeFM0(EmptyFM, ccd, cce) -> Pos(Zero) 25.38/9.12 new_esEs36(xuu400001, xuu30001, ty_Ordering) -> new_esEs19(xuu400001, xuu30001) 25.38/9.12 new_addToFM_C14(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, GT, h, ba) -> new_mkBalBranch0(xuu31, xuu33, new_addToFM_C0(xuu34, :(xuu4000, xuu4001), xuu401, h, ba), h, ba) 25.38/9.12 new_esEs28(xuu400001, xuu30001, app(ty_Ratio, edh)) -> new_esEs21(xuu400001, xuu30001, edh) 25.38/9.12 new_compare16(LT, EQ) -> LT 25.38/9.12 new_ltEs19(xuu591, xuu601, ty_Float) -> new_ltEs17(xuu591, xuu601) 25.38/9.12 new_esEs33(xuu400000, xuu30000, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs14(xuu400000, xuu30000, cda, cdb, cdc) 25.38/9.12 new_esEs6(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.12 new_ltEs24(xuu592, xuu602, ty_Char) -> new_ltEs10(xuu592, xuu602) 25.38/9.12 new_primCmpInt(Neg(Succ(xuu400000)), Pos(xuu3000)) -> LT 25.38/9.12 new_lt22(xuu590, xuu600, app(ty_Maybe, ffd)) -> new_lt13(xuu590, xuu600, ffd) 25.38/9.12 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Bool, bag) -> new_esEs15(xuu400000, xuu30000) 25.38/9.12 new_esEs37(xuu400000, xuu30000, app(ty_Maybe, dcg)) -> new_esEs12(xuu400000, xuu30000, dcg) 25.38/9.12 new_esEs34(xuu99, xuu102, ty_Char) -> new_esEs18(xuu99, xuu102) 25.38/9.12 new_ltEs7(xuu59, xuu60) -> new_fsEs(new_compare17(xuu59, xuu60)) 25.38/9.12 new_compare30(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.12 new_esEs9(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.12 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_Maybe, feb)) -> new_ltEs13(xuu590, xuu600, feb) 25.38/9.12 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_Ratio, cae), bhg) -> new_ltEs11(xuu590, xuu600, cae) 25.38/9.12 new_mkBalBranch6MkBalBranch3(xuu33, xuu31, xuu38, False, h, ba) -> new_mkBranch(Succ(Zero), [], xuu31, xuu33, xuu38, app(ty_[], h), ba) 25.38/9.12 new_ltEs20(xuu112, xuu114, ty_Integer) -> new_ltEs18(xuu112, xuu114) 25.38/9.12 new_esEs37(xuu400000, xuu30000, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.12 new_compare14(xuu144, xuu145, True, fch, fda) -> LT 25.38/9.12 new_lt23(xuu591, xuu601, ty_Integer) -> new_lt18(xuu591, xuu601) 25.38/9.12 new_primCmpInt(Pos(Zero), Neg(Succ(xuu30000))) -> GT 25.38/9.12 new_esEs4(xuu40002, xuu3002, ty_Bool) -> new_esEs15(xuu40002, xuu3002) 25.38/9.12 new_lt19(xuu111, xuu113, app(app(ty_Either, hg), hh)) -> new_lt10(xuu111, xuu113, hg, hh) 25.38/9.12 new_compare18([], :(xuu3000, xuu3001), bge) -> LT 25.38/9.12 new_ltEs19(xuu591, xuu601, app(ty_[], eb)) -> new_ltEs5(xuu591, xuu601, eb) 25.38/9.12 new_ltEs22(xuu73, xuu74, app(ty_Ratio, beb)) -> new_ltEs11(xuu73, xuu74, beb) 25.38/9.12 new_primCmpInt(Neg(Succ(xuu400000)), Neg(xuu3000)) -> new_primCmpNat0(xuu3000, Succ(xuu400000)) 25.38/9.12 new_esEs17(Right(xuu400000), Right(xuu30000), bbh, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.12 new_lt21(xuu99, xuu102, ty_Char) -> new_lt4(xuu99, xuu102) 25.38/9.12 new_esEs4(xuu40002, xuu3002, app(app(ty_@2, ddc), ddd)) -> new_esEs13(xuu40002, xuu3002, ddc, ddd) 25.38/9.12 new_esEs27(xuu400002, xuu30002, ty_Double) -> new_esEs25(xuu400002, xuu30002) 25.38/9.12 new_compare12(xuu185, xuu186, xuu187, xuu188, True, fd, ff) -> LT 25.38/9.12 new_esEs9(xuu40000, xuu3000, app(ty_Ratio, bga)) -> new_esEs21(xuu40000, xuu3000, bga) 25.38/9.12 new_esEs10(xuu40001, xuu3001, app(app(ty_@2, dgc), dgd)) -> new_esEs13(xuu40001, xuu3001, dgc, dgd) 25.38/9.12 new_ltEs22(xuu73, xuu74, app(app(ty_@2, bed), bee)) -> new_ltEs14(xuu73, xuu74, bed, bee) 25.38/9.12 new_esEs27(xuu400002, xuu30002, app(ty_Maybe, ecg)) -> new_esEs12(xuu400002, xuu30002, ecg) 25.38/9.12 new_esEs8(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.12 new_esEs15(False, False) -> True 25.38/9.12 new_ltEs20(xuu112, xuu114, ty_Bool) -> new_ltEs12(xuu112, xuu114) 25.38/9.12 new_esEs33(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.12 new_primEqInt(Pos(Succ(xuu4000000)), Pos(Zero)) -> False 25.38/9.12 new_primEqInt(Pos(Zero), Pos(Succ(xuu300000))) -> False 25.38/9.12 new_lt6(xuu590, xuu600, app(app(app(ty_@3, da), db), dc)) -> new_lt8(xuu590, xuu600, da, db, dc) 25.38/9.12 new_ltEs8(Right(xuu590), Right(xuu600), cba, ty_Ordering) -> new_ltEs16(xuu590, xuu600) 25.38/9.12 new_mkBalBranch6MkBalBranch01(xuu26, xuu300, xuu301, xuu31, xuu340, xuu341, xuu342, xuu343, xuu344, True, h, ba) -> new_mkBranch(Succ(Succ(Zero)), xuu340, xuu341, new_mkBranch(Succ(Succ(Succ(Zero))), :(xuu300, xuu301), xuu31, xuu26, xuu343, app(ty_[], h), ba), xuu344, app(ty_[], h), ba) 25.38/9.12 new_esEs29(xuu400000, xuu30000, ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.12 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Integer, bag) -> new_esEs23(xuu400000, xuu30000) 25.38/9.12 new_ltEs20(xuu112, xuu114, app(app(ty_Either, ge), gf)) -> new_ltEs8(xuu112, xuu114, ge, gf) 25.38/9.12 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.12 new_ltEs23(xuu100, xuu103, ty_Float) -> new_ltEs17(xuu100, xuu103) 25.38/9.12 new_ltEs13(Just(xuu590), Just(xuu600), ty_Char) -> new_ltEs10(xuu590, xuu600) 25.38/9.12 new_esEs39(xuu590, xuu600, ty_Char) -> new_esEs18(xuu590, xuu600) 25.38/9.12 new_primCmpNat0(Zero, Zero) -> EQ 25.38/9.12 new_esEs10(xuu40001, xuu3001, app(app(ty_Either, dgh), dha)) -> new_esEs17(xuu40001, xuu3001, dgh, dha) 25.38/9.12 new_lt6(xuu590, xuu600, ty_Int) -> new_lt9(xuu590, xuu600) 25.38/9.12 new_ltEs16(GT, EQ) -> False 25.38/9.12 new_primCompAux00(xuu34, xuu35, EQ, app(ty_Maybe, faa)) -> new_compare29(xuu34, xuu35, faa) 25.38/9.12 new_lt23(xuu591, xuu601, app(ty_[], ffg)) -> new_lt7(xuu591, xuu601, ffg) 25.38/9.12 new_lt20(xuu98, xuu101, ty_Ordering) -> new_lt16(xuu98, xuu101) 25.38/9.12 new_esEs4(xuu40002, xuu3002, app(ty_[], ded)) -> new_esEs24(xuu40002, xuu3002, ded) 25.38/9.12 new_ltEs20(xuu112, xuu114, app(app(app(ty_@3, gb), gc), gd)) -> new_ltEs6(xuu112, xuu114, gb, gc, gd) 25.38/9.12 new_esEs35(xuu98, xuu101, ty_Bool) -> new_esEs15(xuu98, xuu101) 25.38/9.12 new_lt11(xuu98, xuu101, cfd) -> new_esEs19(new_compare27(xuu98, xuu101, cfd), LT) 25.38/9.12 new_esEs27(xuu400002, xuu30002, ty_Ordering) -> new_esEs19(xuu400002, xuu30002) 25.38/9.12 new_esEs37(xuu400000, xuu30000, ty_Double) -> new_esEs25(xuu400000, xuu30000) 25.38/9.12 new_ltEs13(Just(xuu590), Just(xuu600), ty_Double) -> new_ltEs15(xuu590, xuu600) 25.38/9.12 new_compare13(Float(xuu40000, Pos(xuu400010)), Float(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.12 new_esEs29(xuu400000, xuu30000, app(app(app(ty_@3, eee), eef), eeg)) -> new_esEs14(xuu400000, xuu30000, eee, eef, eeg) 25.38/9.12 new_ltEs22(xuu73, xuu74, ty_Int) -> new_ltEs7(xuu73, xuu74) 25.38/9.12 new_lt12(xuu98, xuu101) -> new_esEs19(new_compare28(xuu98, xuu101), LT) 25.38/9.12 new_primMinusNat0(Succ(xuu20900), Zero) -> Pos(Succ(xuu20900)) 25.38/9.12 new_lt22(xuu590, xuu600, ty_Double) -> new_lt15(xuu590, xuu600) 25.38/9.12 new_compare11(xuu185, xuu186, xuu187, xuu188, True, xuu190, fd, ff) -> new_compare12(xuu185, xuu186, xuu187, xuu188, True, fd, ff) 25.38/9.12 new_esEs4(xuu40002, xuu3002, app(app(ty_Either, ddh), dea)) -> new_esEs17(xuu40002, xuu3002, ddh, dea) 25.38/9.12 new_esEs27(xuu400002, xuu30002, ty_Int) -> new_esEs16(xuu400002, xuu30002) 25.38/9.12 new_ltEs24(xuu592, xuu602, ty_Double) -> new_ltEs15(xuu592, xuu602) 25.38/9.12 new_esEs36(xuu400001, xuu30001, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs14(xuu400001, xuu30001, dag, dah, dba) 25.38/9.12 new_ltEs16(LT, LT) -> True 25.38/9.12 new_lt23(xuu591, xuu601, ty_Bool) -> new_lt12(xuu591, xuu601) 25.38/9.12 new_compare16(LT, GT) -> LT 25.38/9.12 new_esEs23(Integer(xuu400000), Integer(xuu30000)) -> new_primEqInt(xuu400000, xuu30000) 25.38/9.12 new_esEs37(xuu400000, xuu30000, app(ty_Ratio, dcf)) -> new_esEs21(xuu400000, xuu30000, dcf) 25.38/9.12 new_esEs39(xuu590, xuu600, ty_@0) -> new_esEs22(xuu590, xuu600) 25.38/9.12 new_ltEs13(Just(xuu590), Just(xuu600), ty_@0) -> new_ltEs9(xuu590, xuu600) 25.38/9.12 new_esEs9(xuu40000, xuu3000, app(ty_[], bgc)) -> new_esEs24(xuu40000, xuu3000, bgc) 25.38/9.12 new_lt21(xuu99, xuu102, ty_Float) -> new_lt17(xuu99, xuu102) 25.38/9.12 new_esEs9(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.12 new_esEs4(xuu40002, xuu3002, ty_Integer) -> new_esEs23(xuu40002, xuu3002) 25.38/9.12 new_compare25(xuu59, xuu60, False, eag, eah) -> new_compare10(xuu59, xuu60, new_ltEs4(xuu59, xuu60, eag), eag, eah) 25.38/9.12 new_esEs9(xuu40000, xuu3000, app(app(ty_Either, bfg), bfh)) -> new_esEs17(xuu40000, xuu3000, bfg, bfh) 25.38/9.12 new_esEs11(xuu40000, xuu3000, ty_@0) -> new_esEs22(xuu40000, xuu3000) 25.38/9.12 new_esEs5(xuu40001, xuu3001, ty_Float) -> new_esEs20(xuu40001, xuu3001) 25.38/9.12 new_esEs9(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.12 new_esEs10(xuu40001, xuu3001, app(ty_Ratio, dhb)) -> new_esEs21(xuu40001, xuu3001, dhb) 25.38/9.12 new_primCmpNat0(Succ(xuu400000), Zero) -> GT 25.38/9.12 new_pePe(False, xuu206) -> xuu206 25.38/9.12 new_esEs39(xuu590, xuu600, app(app(app(ty_@3, fef), feg), feh)) -> new_esEs14(xuu590, xuu600, fef, feg, feh) 25.38/9.12 new_esEs11(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.12 new_lt13(xuu98, xuu101, bgd) -> new_esEs19(new_compare29(xuu98, xuu101, bgd), LT) 25.38/9.12 new_esEs17(Right(xuu400000), Right(xuu30000), bbh, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.12 new_esEs8(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.12 new_ltEs22(xuu73, xuu74, ty_Double) -> new_ltEs15(xuu73, xuu74) 25.38/9.12 new_compare25(xuu59, xuu60, True, eag, eah) -> EQ 25.38/9.12 new_compare210(xuu73, xuu74, True, bdc) -> EQ 25.38/9.12 new_ltEs8(Right(xuu590), Right(xuu600), cba, ty_Integer) -> new_ltEs18(xuu590, xuu600) 25.38/9.12 new_addToFM_C21(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, dda, ddb) -> new_addToFM_C16(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, new_compare18(:(xuu22, xuu23), :(xuu16, xuu17), dda), dda, ddb) 25.38/9.12 new_esEs10(xuu40001, xuu3001, app(ty_[], dhd)) -> new_esEs24(xuu40001, xuu3001, dhd) 25.38/9.12 new_esEs4(xuu40002, xuu3002, ty_Ordering) -> new_esEs19(xuu40002, xuu3002) 25.38/9.12 new_ltEs16(LT, GT) -> True 25.38/9.12 new_esEs30(xuu111, xuu113, app(app(ty_@2, bac), bad)) -> new_esEs13(xuu111, xuu113, bac, bad) 25.38/9.12 new_primMinusNat0(Succ(xuu20900), Succ(xuu20800)) -> new_primMinusNat0(xuu20900, xuu20800) 25.38/9.12 new_esEs5(xuu40001, xuu3001, ty_@0) -> new_esEs22(xuu40001, xuu3001) 25.38/9.12 new_compare0(xuu4000, xuu300, ty_Ordering) -> new_compare16(xuu4000, xuu300) 25.38/9.12 new_esEs30(xuu111, xuu113, app(app(ty_Either, hg), hh)) -> new_esEs17(xuu111, xuu113, hg, hh) 25.38/9.12 new_esEs6(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.12 new_ltEs16(LT, EQ) -> True 25.38/9.12 new_ltEs16(EQ, LT) -> False 25.38/9.12 new_lt6(xuu590, xuu600, app(ty_Maybe, dg)) -> new_lt13(xuu590, xuu600, dg) 25.38/9.12 new_esEs35(xuu98, xuu101, app(ty_Ratio, cfd)) -> new_esEs21(xuu98, xuu101, cfd) 25.38/9.12 new_esEs30(xuu111, xuu113, ty_Bool) -> new_esEs15(xuu111, xuu113) 25.38/9.12 new_lt14(xuu98, xuu101, cfe, cff) -> new_esEs19(new_compare7(xuu98, xuu101, cfe, cff), LT) 25.38/9.12 new_primEqInt(Pos(Zero), Neg(Succ(xuu300000))) -> False 25.38/9.12 new_primEqInt(Neg(Zero), Pos(Succ(xuu300000))) -> False 25.38/9.12 new_ltEs16(GT, LT) -> False 25.38/9.12 new_esEs34(xuu99, xuu102, ty_Int) -> new_esEs16(xuu99, xuu102) 25.38/9.12 new_esEs7(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.12 new_compare16(EQ, EQ) -> EQ 25.38/9.12 new_ltEs17(xuu59, xuu60) -> new_fsEs(new_compare13(xuu59, xuu60)) 25.38/9.12 new_esEs10(xuu40001, xuu3001, ty_Integer) -> new_esEs23(xuu40001, xuu3001) 25.38/9.12 new_esEs29(xuu400000, xuu30000, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.12 new_ltEs22(xuu73, xuu74, ty_@0) -> new_ltEs9(xuu73, xuu74) 25.38/9.12 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Int, bag) -> new_esEs16(xuu400000, xuu30000) 25.38/9.12 new_addToFM_C15(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, h, ba) -> Branch(:(xuu4000, xuu4001), new_addListToFM0(xuu31, xuu401, ba), xuu32, xuu33, xuu34) 25.38/9.12 new_esEs37(xuu400000, xuu30000, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.12 new_esEs30(xuu111, xuu113, ty_Integer) -> new_esEs23(xuu111, xuu113) 25.38/9.12 new_esEs5(xuu40001, xuu3001, app(app(app(ty_@3, deg), deh), dfa)) -> new_esEs14(xuu40001, xuu3001, deg, deh, dfa) 25.38/9.12 new_ltEs24(xuu592, xuu602, app(ty_[], fha)) -> new_ltEs5(xuu592, xuu602, fha) 25.38/9.12 new_lt19(xuu111, xuu113, ty_Float) -> new_lt17(xuu111, xuu113) 25.38/9.12 new_esEs24(:(xuu400000, xuu400001), [], ccf) -> False 25.38/9.12 new_esEs24([], :(xuu30000, xuu30001), ccf) -> False 25.38/9.12 new_compare24(xuu111, xuu112, xuu113, xuu114, False, fg, fh) -> new_compare11(xuu111, xuu112, xuu113, xuu114, new_lt19(xuu111, xuu113, fg), new_asAs(new_esEs30(xuu111, xuu113, fg), new_ltEs20(xuu112, xuu114, fh)), fg, fh) 25.38/9.12 new_primPlusInt(Pos(xuu2090), Pos(xuu2080)) -> Pos(new_primPlusNat1(xuu2090, xuu2080)) 25.38/9.12 new_ltEs8(Right(xuu590), Right(xuu600), cba, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs6(xuu590, xuu600, cbc, cbd, cbe) 25.38/9.12 new_compare0(xuu4000, xuu300, app(ty_Ratio, bhc)) -> new_compare27(xuu4000, xuu300, bhc) 25.38/9.12 new_compare26(xuu66, xuu67, False, efe, eff) -> new_compare14(xuu66, xuu67, new_ltEs21(xuu66, xuu67, eff), efe, eff) 25.38/9.12 new_esEs16(xuu40000, xuu3000) -> new_primEqInt(xuu40000, xuu3000) 25.38/9.12 new_esEs19(EQ, EQ) -> True 25.38/9.12 new_lt20(xuu98, xuu101, ty_Bool) -> new_lt12(xuu98, xuu101) 25.38/9.12 new_esEs7(xuu40000, xuu3000, app(app(ty_Either, fba), fbb)) -> new_esEs17(xuu40000, xuu3000, fba, fbb) 25.38/9.12 new_ltEs16(EQ, GT) -> True 25.38/9.12 new_esEs20(Float(xuu400000, xuu400001), Float(xuu30000, xuu30001)) -> new_esEs16(new_sr(xuu400000, xuu30001), new_sr(xuu400001, xuu30000)) 25.38/9.12 new_esEs30(xuu111, xuu113, app(ty_[], hc)) -> new_esEs24(xuu111, xuu113, hc) 25.38/9.12 new_ltEs8(Right(xuu590), Right(xuu600), cba, app(app(ty_Either, cbf), cbg)) -> new_ltEs8(xuu590, xuu600, cbf, cbg) 25.38/9.12 new_ltEs16(EQ, EQ) -> True 25.38/9.12 new_esEs27(xuu400002, xuu30002, ty_Bool) -> new_esEs15(xuu400002, xuu30002) 25.38/9.12 new_esEs32(xuu400000, xuu30000, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.12 new_lt21(xuu99, xuu102, app(app(ty_Either, cgc), cgd)) -> new_lt10(xuu99, xuu102, cgc, cgd) 25.38/9.12 new_compare28(True, False) -> GT 25.38/9.12 new_esEs6(xuu40000, xuu3000, app(app(ty_Either, bbh), bag)) -> new_esEs17(xuu40000, xuu3000, bbh, bag) 25.38/9.12 new_esEs26(xuu590, xuu600, app(app(app(ty_@3, da), db), dc)) -> new_esEs14(xuu590, xuu600, da, db, dc) 25.38/9.12 new_ltEs8(Left(xuu590), Left(xuu600), ty_Bool, bhg) -> new_ltEs12(xuu590, xuu600) 25.38/9.12 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(app(ty_@3, be), bf), bg)) -> new_esEs14(xuu400000, xuu30000, be, bf, bg) 25.38/9.12 new_esEs28(xuu400001, xuu30001, app(app(ty_@2, eda), edb)) -> new_esEs13(xuu400001, xuu30001, eda, edb) 25.38/9.12 new_lt21(xuu99, xuu102, ty_Bool) -> new_lt12(xuu99, xuu102) 25.38/9.12 new_esEs28(xuu400001, xuu30001, ty_Bool) -> new_esEs15(xuu400001, xuu30001) 25.38/9.12 new_esEs6(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.12 new_esEs17(Right(xuu400000), Right(xuu30000), bbh, ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.12 new_lt8(xuu98, xuu101, ceg, ceh, cfa) -> new_esEs19(new_compare19(xuu98, xuu101, ceg, ceh, cfa), LT) 25.38/9.12 new_ltEs23(xuu100, xuu103, ty_Integer) -> new_ltEs18(xuu100, xuu103) 25.38/9.12 new_primCompAux00(xuu34, xuu35, EQ, ty_Integer) -> new_compare9(xuu34, xuu35) 25.38/9.12 new_ltEs20(xuu112, xuu114, app(app(ty_@2, ha), hb)) -> new_ltEs14(xuu112, xuu114, ha, hb) 25.38/9.12 new_esEs17(Right(xuu400000), Right(xuu30000), bbh, ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.12 new_ltEs20(xuu112, xuu114, ty_Ordering) -> new_ltEs16(xuu112, xuu114) 25.38/9.12 new_ltEs8(Right(xuu590), Right(xuu600), cba, ty_Int) -> new_ltEs7(xuu590, xuu600) 25.38/9.12 new_esEs7(xuu40000, xuu3000, ty_Integer) -> new_esEs23(xuu40000, xuu3000) 25.38/9.12 new_esEs6(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.12 new_lt23(xuu591, xuu601, ty_Ordering) -> new_lt16(xuu591, xuu601) 25.38/9.12 new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, bef, beg, beh) -> LT 25.38/9.12 new_primMulInt(Neg(xuu30000), Neg(xuu400010)) -> Pos(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.12 new_primCmpInt(Pos(Zero), Pos(Succ(xuu30000))) -> new_primCmpNat0(Zero, Succ(xuu30000)) 25.38/9.12 new_ltEs22(xuu73, xuu74, ty_Integer) -> new_ltEs18(xuu73, xuu74) 25.38/9.12 new_esEs9(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.12 new_esEs34(xuu99, xuu102, ty_Double) -> new_esEs25(xuu99, xuu102) 25.38/9.12 new_fsEs(xuu207) -> new_not(new_esEs19(xuu207, GT)) 25.38/9.12 new_compare210(xuu73, xuu74, False, bdc) -> new_compare110(xuu73, xuu74, new_ltEs22(xuu73, xuu74, bdc), bdc) 25.38/9.12 new_esEs34(xuu99, xuu102, app(ty_Ratio, cge)) -> new_esEs21(xuu99, xuu102, cge) 25.38/9.12 new_esEs6(xuu40000, xuu3000, app(ty_[], ccf)) -> new_esEs24(xuu40000, xuu3000, ccf) 25.38/9.12 new_compare0(xuu4000, xuu300, ty_Integer) -> new_compare9(xuu4000, xuu300) 25.38/9.12 new_primMulInt(Pos(xuu30000), Neg(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.12 new_primMulInt(Neg(xuu30000), Pos(xuu400010)) -> Neg(new_primMulNat0(xuu30000, xuu400010)) 25.38/9.12 new_esEs34(xuu99, xuu102, app(ty_[], cfg)) -> new_esEs24(xuu99, xuu102, cfg) 25.38/9.12 new_mkBalBranch6MkBalBranch01(xuu26, xuu300, xuu301, xuu31, xuu340, xuu341, xuu342, EmptyFM, xuu344, False, h, ba) -> error([]) 25.38/9.12 new_ltEs21(xuu66, xuu67, app(ty_Maybe, egf)) -> new_ltEs13(xuu66, xuu67, egf) 25.38/9.12 new_primCompAux00(xuu34, xuu35, EQ, app(ty_[], ehb)) -> new_compare18(xuu34, xuu35, ehb) 25.38/9.12 new_esEs8(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.12 new_esEs28(xuu400001, xuu30001, ty_Integer) -> new_esEs23(xuu400001, xuu30001) 25.38/9.12 new_esEs8(xuu40000, xuu3000, ty_Float) -> new_esEs20(xuu40000, xuu3000) 25.38/9.12 new_lt15(xuu98, xuu101) -> new_esEs19(new_compare30(xuu98, xuu101), LT) 25.38/9.12 new_ltEs23(xuu100, xuu103, ty_Ordering) -> new_ltEs16(xuu100, xuu103) 25.38/9.12 new_esEs27(xuu400002, xuu30002, ty_@0) -> new_esEs22(xuu400002, xuu30002) 25.38/9.12 new_ltEs22(xuu73, xuu74, app(app(ty_Either, bdh), bea)) -> new_ltEs8(xuu73, xuu74, bdh, bea) 25.38/9.12 new_mkBalBranch6MkBalBranch010(xuu33, xuu31, xuu380, xuu381, xuu382, Branch(xuu3830, xuu3831, xuu3832, xuu3833, xuu3834), xuu384, False, h, ba) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu3830, xuu3831, new_mkBranch(Succ(Succ(Succ(Succ(Succ(Zero))))), [], xuu31, xuu33, xuu3833, app(ty_[], h), ba), new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu380, xuu381, xuu3834, xuu384, app(ty_[], h), ba), app(ty_[], h), ba) 25.38/9.12 new_sr0(Integer(xuu30000), Integer(xuu400010)) -> Integer(new_primMulInt(xuu30000, xuu400010)) 25.38/9.12 new_lt20(xuu98, xuu101, app(ty_[], cef)) -> new_lt7(xuu98, xuu101, cef) 25.38/9.12 new_esEs30(xuu111, xuu113, ty_Ordering) -> new_esEs19(xuu111, xuu113) 25.38/9.12 new_lt6(xuu590, xuu600, app(app(ty_Either, dd), de)) -> new_lt10(xuu590, xuu600, dd, de) 25.38/9.12 new_esEs35(xuu98, xuu101, ty_Double) -> new_esEs25(xuu98, xuu101) 25.38/9.12 new_esEs38(xuu591, xuu601, app(app(ty_@2, fgg), fgh)) -> new_esEs13(xuu591, xuu601, fgg, fgh) 25.38/9.12 new_esEs8(xuu40000, xuu3000, app(ty_Maybe, fcf)) -> new_esEs12(xuu40000, xuu3000, fcf) 25.38/9.12 new_asAs(True, xuu132) -> xuu132 25.38/9.12 new_gt(xuu199, xuu198) -> new_esEs19(new_compare17(xuu199, xuu198), GT) 25.38/9.12 new_ltEs23(xuu100, xuu103, app(app(app(ty_@3, chb), chc), chd)) -> new_ltEs6(xuu100, xuu103, chb, chc, chd) 25.38/9.12 new_esEs22(@0, @0) -> True 25.38/9.12 new_addToFM_C16(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, LT, dda, ddb) -> new_addToFM_C17(xuu16, xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, xuu24, dda, ddb) 25.38/9.12 new_compare30(Double(xuu40000, Pos(xuu400010)), Double(xuu3000, Neg(xuu30010))) -> new_compare17(new_sr(xuu40000, Pos(xuu30010)), new_sr(Neg(xuu400010), xuu3000)) 25.38/9.12 new_compare30(Double(xuu40000, Neg(xuu400010)), Double(xuu3000, Pos(xuu30010))) -> new_compare17(new_sr(xuu40000, Neg(xuu30010)), new_sr(Pos(xuu400010), xuu3000)) 25.38/9.12 new_lt6(xuu590, xuu600, app(ty_Ratio, df)) -> new_lt11(xuu590, xuu600, df) 25.38/9.12 new_lt19(xuu111, xuu113, app(ty_[], hc)) -> new_lt7(xuu111, xuu113, hc) 25.38/9.12 new_lt6(xuu590, xuu600, app(app(ty_@2, dh), ea)) -> new_lt14(xuu590, xuu600, dh, ea) 25.38/9.12 new_esEs26(xuu590, xuu600, ty_Char) -> new_esEs18(xuu590, xuu600) 25.38/9.12 new_ltEs19(xuu591, xuu601, ty_Double) -> new_ltEs15(xuu591, xuu601) 25.38/9.12 new_esEs29(xuu400000, xuu30000, ty_Ordering) -> new_esEs19(xuu400000, xuu30000) 25.38/9.12 new_ltEs8(Left(xuu590), Left(xuu600), ty_Int, bhg) -> new_ltEs7(xuu590, xuu600) 25.38/9.12 new_ltEs20(xuu112, xuu114, app(ty_Ratio, gg)) -> new_ltEs11(xuu112, xuu114, gg) 25.38/9.12 new_primPlusInt(Pos(xuu2090), Neg(xuu2080)) -> new_primMinusNat0(xuu2090, xuu2080) 25.38/9.12 new_primPlusInt(Neg(xuu2090), Pos(xuu2080)) -> new_primMinusNat0(xuu2080, xuu2090) 25.38/9.12 new_mkBalBranch6MkBalBranch3(EmptyFM, xuu31, xuu38, True, h, ba) -> error([]) 25.38/9.12 new_compare211(xuu98, xuu99, xuu100, xuu101, xuu102, xuu103, True, cec, ced, cee) -> EQ 25.38/9.12 new_compare12(xuu185, xuu186, xuu187, xuu188, False, fd, ff) -> GT 25.38/9.12 new_esEs17(Left(xuu400000), Left(xuu30000), ty_Double, bag) -> new_esEs25(xuu400000, xuu30000) 25.38/9.12 new_esEs33(xuu400000, xuu30000, app(app(ty_@2, ccg), cch)) -> new_esEs13(xuu400000, xuu30000, ccg, cch) 25.38/9.12 new_mkBalBranch6Size_l(xuu26, xuu300, xuu301, xuu31, xuu34, h, ba) -> new_sizeFM(xuu26, h, ba) 25.38/9.12 new_esEs8(xuu40000, xuu3000, ty_Double) -> new_esEs25(xuu40000, xuu3000) 25.38/9.12 new_ltEs22(xuu73, xuu74, ty_Char) -> new_ltEs10(xuu73, xuu74) 25.38/9.12 new_sr(xuu3000, xuu40001) -> new_primMulInt(xuu3000, xuu40001) 25.38/9.12 new_esEs39(xuu590, xuu600, app(ty_[], fee)) -> new_esEs24(xuu590, xuu600, fee) 25.38/9.12 new_ltEs16(GT, GT) -> True 25.38/9.12 new_esEs38(xuu591, xuu601, app(ty_Ratio, fge)) -> new_esEs21(xuu591, xuu601, fge) 25.38/9.12 new_esEs28(xuu400001, xuu30001, ty_Ordering) -> new_esEs19(xuu400001, xuu30001) 25.38/9.12 new_primMulNat0(Zero, Zero) -> Zero 25.38/9.12 new_esEs4(xuu40002, xuu3002, ty_Int) -> new_esEs16(xuu40002, xuu3002) 25.38/9.12 new_esEs7(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.12 new_esEs8(xuu40000, xuu3000, ty_Ordering) -> new_esEs19(xuu40000, xuu3000) 25.38/9.12 new_compare0(xuu4000, xuu300, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_compare19(xuu4000, xuu300, bgf, bgg, bgh) 25.38/9.12 new_esEs27(xuu400002, xuu30002, app(app(ty_Either, ecd), ece)) -> new_esEs17(xuu400002, xuu30002, ecd, ece) 25.38/9.12 new_mkBalBranch0(xuu31, xuu33, xuu38, h, ba) -> new_mkBalBranch6MkBalBranch50(xuu33, xuu31, xuu38, new_esEs19(new_compare17(new_primPlusInt(new_mkBalBranch6Size_l0(xuu33, xuu31, xuu38, h, ba), new_mkBalBranch6Size_r0(xuu33, xuu31, xuu38, h, ba)), Pos(Succ(Succ(Zero)))), LT), h, ba) 25.38/9.12 new_ltEs8(Right(xuu590), Right(xuu600), cba, ty_@0) -> new_ltEs9(xuu590, xuu600) 25.38/9.12 new_ltEs13(Just(xuu590), Just(xuu600), ty_Ordering) -> new_ltEs16(xuu590, xuu600) 25.38/9.12 new_ltEs8(Left(xuu590), Left(xuu600), app(ty_[], bhf), bhg) -> new_ltEs5(xuu590, xuu600, bhf) 25.38/9.12 new_esEs7(xuu40000, xuu3000, app(app(app(ty_@3, faf), fag), fah)) -> new_esEs14(xuu40000, xuu3000, faf, fag, fah) 25.38/9.12 new_esEs4(xuu40002, xuu3002, app(ty_Maybe, dec)) -> new_esEs12(xuu40002, xuu3002, dec) 25.38/9.12 new_esEs38(xuu591, xuu601, app(ty_[], ffg)) -> new_esEs24(xuu591, xuu601, ffg) 25.38/9.12 new_ltEs19(xuu591, xuu601, app(ty_Maybe, fa)) -> new_ltEs13(xuu591, xuu601, fa) 25.38/9.12 new_ltEs4(xuu59, xuu60, ty_Bool) -> new_ltEs12(xuu59, xuu60) 25.38/9.12 new_esEs36(xuu400001, xuu30001, ty_Double) -> new_esEs25(xuu400001, xuu30001) 25.38/9.12 new_ltEs8(Right(xuu590), Right(xuu600), cba, app(ty_[], cbb)) -> new_ltEs5(xuu590, xuu600, cbb) 25.38/9.12 new_lt22(xuu590, xuu600, app(app(ty_Either, ffa), ffb)) -> new_lt10(xuu590, xuu600, ffa, ffb) 25.38/9.12 new_ltEs19(xuu591, xuu601, app(ty_Ratio, eh)) -> new_ltEs11(xuu591, xuu601, eh) 25.38/9.12 new_lt23(xuu591, xuu601, app(app(ty_@2, fgg), fgh)) -> new_lt14(xuu591, xuu601, fgg, fgh) 25.38/9.12 new_esEs28(xuu400001, xuu30001, app(app(ty_Either, edf), edg)) -> new_esEs17(xuu400001, xuu30001, edf, edg) 25.38/9.12 new_esEs30(xuu111, xuu113, ty_Float) -> new_esEs20(xuu111, xuu113) 25.38/9.12 new_lt16(xuu98, xuu101) -> new_esEs19(new_compare16(xuu98, xuu101), LT) 25.38/9.12 new_mkBalBranch6MkBalBranch4(xuu26, xuu300, xuu301, xuu31, Branch(xuu340, xuu341, xuu342, xuu343, xuu344), True, h, ba) -> new_mkBalBranch6MkBalBranch01(xuu26, xuu300, xuu301, xuu31, xuu340, xuu341, xuu342, xuu343, xuu344, new_lt9(new_sizeFM(xuu343, h, ba), new_sr(Pos(Succ(Succ(Zero))), new_sizeFM(xuu344, h, ba))), h, ba) 25.38/9.12 new_compare16(EQ, GT) -> LT 25.38/9.12 new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, False, bef, beg, beh) -> GT 25.38/9.12 new_esEs39(xuu590, xuu600, app(ty_Maybe, ffd)) -> new_esEs12(xuu590, xuu600, ffd) 25.38/9.12 new_lt23(xuu591, xuu601, app(app(ty_Either, fgc), fgd)) -> new_lt10(xuu591, xuu601, fgc, fgd) 25.38/9.12 new_ltEs4(xuu59, xuu60, ty_Char) -> new_ltEs10(xuu59, xuu60) 25.38/9.12 new_esEs28(xuu400001, xuu30001, ty_@0) -> new_esEs22(xuu400001, xuu30001) 25.38/9.12 new_primEqInt(Neg(Succ(xuu4000000)), Neg(Zero)) -> False 25.38/9.12 new_primEqInt(Neg(Zero), Neg(Succ(xuu300000))) -> False 25.38/9.12 new_esEs12(Just(xuu400000), Just(xuu30000), ty_@0) -> new_esEs22(xuu400000, xuu30000) 25.38/9.12 new_esEs17(Right(xuu400000), Right(xuu30000), bbh, ty_Bool) -> new_esEs15(xuu400000, xuu30000) 25.38/9.12 new_esEs17(Right(xuu400000), Right(xuu30000), bbh, app(ty_Maybe, bda)) -> new_esEs12(xuu400000, xuu30000, bda) 25.38/9.12 new_addToFM_C14(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, LT, h, ba) -> new_addToFM_C15(xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, h, ba) 25.38/9.12 new_esEs29(xuu400000, xuu30000, ty_Float) -> new_esEs20(xuu400000, xuu30000) 25.38/9.12 new_primEqInt(Pos(Succ(xuu4000000)), Pos(Succ(xuu300000))) -> new_primEqNat0(xuu4000000, xuu300000) 25.38/9.12 new_esEs21(:%(xuu400000, xuu400001), :%(xuu30000, xuu30001), dgb) -> new_asAs(new_esEs32(xuu400000, xuu30000, dgb), new_esEs31(xuu400001, xuu30001, dgb)) 25.38/9.12 new_esEs39(xuu590, xuu600, ty_Int) -> new_esEs16(xuu590, xuu600) 25.38/9.12 new_esEs12(Just(xuu400000), Just(xuu30000), app(app(ty_Either, bh), ca)) -> new_esEs17(xuu400000, xuu30000, bh, ca) 25.38/9.12 new_esEs6(xuu40000, xuu3000, app(app(app(ty_@3, dfg), dfh), dga)) -> new_esEs14(xuu40000, xuu3000, dfg, dfh, dga) 25.38/9.12 new_ltEs13(Just(xuu590), Just(xuu600), app(ty_[], fdc)) -> new_ltEs5(xuu590, xuu600, fdc) 25.38/9.12 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Integer) -> new_esEs23(xuu400000, xuu30000) 25.38/9.12 new_lt22(xuu590, xuu600, app(app(ty_@2, ffe), fff)) -> new_lt14(xuu590, xuu600, ffe, fff) 25.38/9.12 new_esEs37(xuu400000, xuu30000, app(app(ty_@2, dbg), dbh)) -> new_esEs13(xuu400000, xuu30000, dbg, dbh) 25.38/9.12 new_ltEs4(xuu59, xuu60, ty_Double) -> new_ltEs15(xuu59, xuu60) 25.38/9.12 new_esEs33(xuu400000, xuu30000, app(ty_[], cdh)) -> new_esEs24(xuu400000, xuu30000, cdh) 25.38/9.12 new_esEs6(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.12 new_primEqInt(Pos(Succ(xuu4000000)), Neg(xuu30000)) -> False 25.38/9.12 new_primEqInt(Neg(Succ(xuu4000000)), Pos(xuu30000)) -> False 25.38/9.12 new_esEs9(xuu40000, xuu3000, ty_Char) -> new_esEs18(xuu40000, xuu3000) 25.38/9.12 new_primCmpInt(Neg(Zero), Neg(Succ(xuu30000))) -> new_primCmpNat0(Succ(xuu30000), Zero) 25.38/9.12 new_esEs12(Just(xuu400000), Just(xuu30000), ty_Char) -> new_esEs18(xuu400000, xuu30000) 25.38/9.12 new_esEs7(xuu40000, xuu3000, app(ty_Ratio, fbc)) -> new_esEs21(xuu40000, xuu3000, fbc) 25.38/9.12 new_ltEs8(Right(xuu590), Right(xuu600), cba, ty_Char) -> new_ltEs10(xuu590, xuu600) 25.38/9.12 new_compare0(xuu4000, xuu300, ty_@0) -> new_compare8(xuu4000, xuu300) 25.38/9.12 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.38/9.12 new_ltEs22(xuu73, xuu74, ty_Ordering) -> new_ltEs16(xuu73, xuu74) 25.38/9.12 new_lt23(xuu591, xuu601, app(ty_Ratio, fge)) -> new_lt11(xuu591, xuu601, fge) 25.38/9.12 new_compare19(@3(xuu40000, xuu40001, xuu40002), @3(xuu3000, xuu3001, xuu3002), bgf, bgg, bgh) -> new_compare211(xuu40000, xuu40001, xuu40002, xuu3000, xuu3001, xuu3002, new_asAs(new_esEs6(xuu40000, xuu3000, bgf), new_asAs(new_esEs5(xuu40001, xuu3001, bgg), new_esEs4(xuu40002, xuu3002, bgh))), bgf, bgg, bgh) 25.38/9.12 new_esEs27(xuu400002, xuu30002, ty_Char) -> new_esEs18(xuu400002, xuu30002) 25.38/9.12 new_ltEs23(xuu100, xuu103, ty_Bool) -> new_ltEs12(xuu100, xuu103) 25.38/9.12 new_primCompAux00(xuu34, xuu35, LT, eha) -> LT 25.38/9.12 new_esEs26(xuu590, xuu600, ty_@0) -> new_esEs22(xuu590, xuu600) 25.38/9.12 new_esEs6(xuu40000, xuu3000, app(ty_Ratio, dgb)) -> new_esEs21(xuu40000, xuu3000, dgb) 25.38/9.12 new_esEs5(xuu40001, xuu3001, ty_Double) -> new_esEs25(xuu40001, xuu3001) 25.38/9.12 new_ltEs23(xuu100, xuu103, ty_Char) -> new_ltEs10(xuu100, xuu103) 25.38/9.12 new_primPlusNat0(xuu219, xuu4000100) -> new_primPlusNat1(xuu219, Succ(xuu4000100)) 25.38/9.12 new_not(False) -> True 25.38/9.12 new_ltEs13(Just(xuu590), Just(xuu600), ty_Float) -> new_ltEs17(xuu590, xuu600) 25.38/9.12 new_ltEs24(xuu592, xuu602, ty_@0) -> new_ltEs9(xuu592, xuu602) 25.38/9.12 new_addToFM_C0(Branch(:(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), [], xuu401, h, ba) -> new_mkBalBranch(xuu300, xuu301, xuu31, new_addToFM_C0(xuu33, [], xuu401, h, ba), xuu34, h, ba) 25.38/9.12 new_esEs9(xuu40000, xuu3000, app(ty_Maybe, bgb)) -> new_esEs12(xuu40000, xuu3000, bgb) 25.38/9.12 new_esEs35(xuu98, xuu101, app(ty_[], cef)) -> new_esEs24(xuu98, xuu101, cef) 25.38/9.12 new_ltEs24(xuu592, xuu602, app(app(app(ty_@3, fhb), fhc), fhd)) -> new_ltEs6(xuu592, xuu602, fhb, fhc, fhd) 25.38/9.12 new_addToFM_C0(Branch([], xuu31, xuu32, xuu33, xuu34), [], xuu401, h, ba) -> new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu401, EQ, h, ba) 25.38/9.12 new_ltEs21(xuu66, xuu67, ty_Bool) -> new_ltEs12(xuu66, xuu67) 25.38/9.12 new_mkBalBranch6MkBalBranch11(xuu330, xuu331, xuu332, xuu333, EmptyFM, xuu31, xuu38, False, h, ba) -> error([]) 25.38/9.12 new_compare0(xuu4000, xuu300, app(ty_Maybe, bfa)) -> new_compare29(xuu4000, xuu300, bfa) 25.38/9.12 new_ltEs13(Just(xuu590), Just(xuu600), ty_Integer) -> new_ltEs18(xuu590, xuu600) 25.38/9.12 new_esEs27(xuu400002, xuu30002, ty_Integer) -> new_esEs23(xuu400002, xuu30002) 25.38/9.12 new_esEs7(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.12 new_ltEs24(xuu592, xuu602, ty_Ordering) -> new_ltEs16(xuu592, xuu602) 25.38/9.12 new_esEs28(xuu400001, xuu30001, ty_Float) -> new_esEs20(xuu400001, xuu30001) 25.38/9.12 new_mkBranch(xuu304, xuu305, xuu306, xuu307, xuu308, ccd, cce) -> Branch(xuu305, xuu306, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM0(xuu307, ccd, cce)), new_sizeFM0(xuu308, ccd, cce)), xuu307, xuu308) 25.38/9.12 new_compare112(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, False, xuu177, bef, beg, beh) -> new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, xuu177, bef, beg, beh) 25.38/9.12 new_ltEs8(Right(xuu590), Right(xuu600), cba, ty_Bool) -> new_ltEs12(xuu590, xuu600) 25.38/9.12 new_esEs37(xuu400000, xuu30000, app(ty_[], dch)) -> new_esEs24(xuu400000, xuu30000, dch) 25.38/9.12 new_mkBalBranch6Size_l0(xuu33, xuu31, xuu38, h, ba) -> new_sizeFM(xuu33, h, ba) 25.38/9.12 new_addToFM_C12(xuu31, xuu32, xuu33, xuu34, xuu401, GT, h, ba) -> new_mkBalBranch0(xuu31, xuu33, new_addToFM_C0(xuu34, [], xuu401, h, ba), h, ba) 25.38/9.12 new_compare29(Nothing, Nothing, bfa) -> EQ 25.38/9.12 new_ltEs23(xuu100, xuu103, app(app(ty_Either, che), chf)) -> new_ltEs8(xuu100, xuu103, che, chf) 25.38/9.12 new_ltEs19(xuu591, xuu601, ty_Int) -> new_ltEs7(xuu591, xuu601) 25.38/9.12 new_lt22(xuu590, xuu600, app(ty_Ratio, ffc)) -> new_lt11(xuu590, xuu600, ffc) 25.38/9.12 new_ltEs19(xuu591, xuu601, ty_Char) -> new_ltEs10(xuu591, xuu601) 25.38/9.12 new_esEs17(Left(xuu400000), Left(xuu30000), app(app(ty_Either, bbc), bbd), bag) -> new_esEs17(xuu400000, xuu30000, bbc, bbd) 25.38/9.12 new_lt6(xuu590, xuu600, ty_Double) -> new_lt15(xuu590, xuu600) 25.38/9.12 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.38/9.12 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.38/9.12 new_lt21(xuu99, xuu102, ty_Double) -> new_lt15(xuu99, xuu102) 25.38/9.12 new_addToFM_C0(Branch(:(xuu300, xuu301), xuu31, xuu32, xuu33, xuu34), :(xuu4000, xuu4001), xuu401, h, ba) -> new_addToFM_C22(xuu300, xuu301, xuu31, xuu32, xuu33, xuu34, xuu4000, xuu4001, xuu401, new_primCompAux1(xuu4000, xuu300, xuu4001, xuu301, h), h, ba) 25.38/9.12 new_esEs26(xuu590, xuu600, app(app(ty_Either, dd), de)) -> new_esEs17(xuu590, xuu600, dd, de) 25.38/9.12 new_ltEs20(xuu112, xuu114, ty_Int) -> new_ltEs7(xuu112, xuu114) 25.38/9.12 new_ltEs22(xuu73, xuu74, app(ty_Maybe, bec)) -> new_ltEs13(xuu73, xuu74, bec) 25.38/9.12 new_esEs5(xuu40001, xuu3001, ty_Int) -> new_esEs16(xuu40001, xuu3001) 25.38/9.12 new_lt6(xuu590, xuu600, app(ty_[], cg)) -> new_lt7(xuu590, xuu600, cg) 25.38/9.12 new_ltEs21(xuu66, xuu67, app(app(app(ty_@3, efh), ega), egb)) -> new_ltEs6(xuu66, xuu67, efh, ega, egb) 25.38/9.12 new_lt20(xuu98, xuu101, app(ty_Ratio, cfd)) -> new_lt11(xuu98, xuu101, cfd) 25.38/9.12 new_ltEs8(Left(xuu590), Left(xuu600), app(app(app(ty_@3, bhh), caa), cab), bhg) -> new_ltEs6(xuu590, xuu600, bhh, caa, cab) 25.38/9.12 new_compare0(xuu4000, xuu300, ty_Bool) -> new_compare28(xuu4000, xuu300) 25.38/9.12 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.38/9.12 new_primMulNat0(Succ(xuu300000), Succ(xuu4000100)) -> new_primPlusNat0(new_primMulNat0(xuu300000, Succ(xuu4000100)), xuu4000100) 25.38/9.12 new_compare112(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, xuu177, bef, beg, beh) -> new_compare111(xuu170, xuu171, xuu172, xuu173, xuu174, xuu175, True, bef, beg, beh) 25.38/9.12 new_esEs38(xuu591, xuu601, ty_Double) -> new_esEs25(xuu591, xuu601) 25.38/9.12 new_esEs6(xuu40000, xuu3000, app(ty_Maybe, bb)) -> new_esEs12(xuu40000, xuu3000, bb) 25.38/9.12 new_esEs19(EQ, GT) -> False 25.38/9.12 new_esEs19(GT, EQ) -> False 25.38/9.12 new_esEs17(Right(xuu400000), Right(xuu30000), bbh, ty_Int) -> new_esEs16(xuu400000, xuu30000) 25.38/9.12 new_esEs19(GT, GT) -> True 25.38/9.12 new_esEs11(xuu40000, xuu3000, app(app(ty_@2, dhe), dhf)) -> new_esEs13(xuu40000, xuu3000, dhe, dhf) 25.38/9.12 new_lt20(xuu98, xuu101, app(app(ty_@2, cfe), cff)) -> new_lt14(xuu98, xuu101, cfe, cff) 25.38/9.12 new_esEs8(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.12 new_esEs39(xuu590, xuu600, app(ty_Ratio, ffc)) -> new_esEs21(xuu590, xuu600, ffc) 25.38/9.12 new_addToFM_C0(EmptyFM, xuu400, xuu401, h, ba) -> Branch(xuu400, xuu401, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) 25.38/9.12 new_compare6(Char(xuu40000), Char(xuu3000)) -> new_primCmpNat0(xuu40000, xuu3000) 25.38/9.12 new_ltEs20(xuu112, xuu114, ty_Char) -> new_ltEs10(xuu112, xuu114) 25.38/9.12 new_esEs17(Right(xuu400000), Right(xuu30000), bbh, app(app(ty_Either, bcf), bcg)) -> new_esEs17(xuu400000, xuu30000, bcf, bcg) 25.38/9.12 new_lt10(xuu98, xuu101, cfb, cfc) -> new_esEs19(new_compare15(xuu98, xuu101, cfb, cfc), LT) 25.38/9.12 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.38/9.12 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.38/9.12 new_compare8(@0, @0) -> EQ 25.38/9.12 new_esEs35(xuu98, xuu101, app(app(ty_@2, cfe), cff)) -> new_esEs13(xuu98, xuu101, cfe, cff) 25.38/9.12 new_ltEs24(xuu592, xuu602, app(ty_Maybe, fhh)) -> new_ltEs13(xuu592, xuu602, fhh) 25.38/9.12 new_lt21(xuu99, xuu102, app(ty_Ratio, cge)) -> new_lt11(xuu99, xuu102, cge) 25.38/9.12 new_esEs8(xuu40000, xuu3000, app(app(app(ty_@3, fbh), fca), fcb)) -> new_esEs14(xuu40000, xuu3000, fbh, fca, fcb) 25.38/9.12 new_compare18([], [], bge) -> EQ 25.38/9.12 new_primEqNat0(Zero, Zero) -> True 25.38/9.12 new_lt19(xuu111, xuu113, ty_Double) -> new_lt15(xuu111, xuu113) 25.38/9.12 new_esEs17(Right(xuu400000), Right(xuu30000), bbh, app(app(app(ty_@3, bcc), bcd), bce)) -> new_esEs14(xuu400000, xuu30000, bcc, bcd, bce) 25.38/9.12 new_esEs9(xuu40000, xuu3000, ty_Bool) -> new_esEs15(xuu40000, xuu3000) 25.38/9.12 new_esEs9(xuu40000, xuu3000, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs14(xuu40000, xuu3000, bfd, bfe, bff) 25.38/9.12 new_lt21(xuu99, xuu102, app(ty_[], cfg)) -> new_lt7(xuu99, xuu102, cfg) 25.38/9.12 new_esEs34(xuu99, xuu102, app(app(ty_@2, cgg), cgh)) -> new_esEs13(xuu99, xuu102, cgg, cgh) 25.38/9.12 new_esEs6(xuu40000, xuu3000, ty_Int) -> new_esEs16(xuu40000, xuu3000) 25.38/9.12 new_esEs4(xuu40002, xuu3002, app(ty_Ratio, deb)) -> new_esEs21(xuu40002, xuu3002, deb) 25.38/9.12 new_ltEs23(xuu100, xuu103, app(ty_Maybe, chh)) -> new_ltEs13(xuu100, xuu103, chh) 25.38/9.12 new_asAs(False, xuu132) -> False 25.38/9.12 new_ltEs21(xuu66, xuu67, ty_Char) -> new_ltEs10(xuu66, xuu67) 25.38/9.12 new_compare29(Just(xuu40000), Just(xuu3000), bfa) -> new_compare210(xuu40000, xuu3000, new_esEs9(xuu40000, xuu3000, bfa), bfa) 25.38/9.12 new_ltEs22(xuu73, xuu74, ty_Bool) -> new_ltEs12(xuu73, xuu74) 25.38/9.12 new_esEs39(xuu590, xuu600, ty_Double) -> new_esEs25(xuu590, xuu600) 25.38/9.12 new_ltEs22(xuu73, xuu74, app(app(app(ty_@3, bde), bdf), bdg)) -> new_ltEs6(xuu73, xuu74, bde, bdf, bdg) 25.38/9.12 new_esEs36(xuu400001, xuu30001, app(ty_[], dbf)) -> new_esEs24(xuu400001, xuu30001, dbf) 25.38/9.12 new_compare11(xuu185, xuu186, xuu187, xuu188, False, xuu190, fd, ff) -> new_compare12(xuu185, xuu186, xuu187, xuu188, xuu190, fd, ff) 25.38/9.12 new_lt20(xuu98, xuu101, ty_Double) -> new_lt15(xuu98, xuu101) 25.38/9.12 new_esEs7(xuu40000, xuu3000, app(ty_Maybe, fbd)) -> new_esEs12(xuu40000, xuu3000, fbd) 25.38/9.12 new_lt19(xuu111, xuu113, app(app(ty_@2, bac), bad)) -> new_lt14(xuu111, xuu113, bac, bad) 25.38/9.12 new_compare16(GT, EQ) -> GT 25.38/9.12 new_esEs4(xuu40002, xuu3002, ty_Double) -> new_esEs25(xuu40002, xuu3002) 25.38/9.12 new_ltEs24(xuu592, xuu602, app(app(ty_Either, fhe), fhf)) -> new_ltEs8(xuu592, xuu602, fhe, fhf) 25.38/9.12 new_esEs26(xuu590, xuu600, ty_Float) -> new_esEs20(xuu590, xuu600) 25.38/9.12 25.38/9.12 The set Q consists of the following terms: 25.38/9.12 25.38/9.12 new_compare15(Left(x0), Left(x1), x2, x3) 25.38/9.12 new_lt20(x0, x1, ty_Ordering) 25.38/9.12 new_mkBalBranch6MkBalBranch30(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8, True, x9, x10) 25.38/9.12 new_esEs9(x0, x1, ty_Integer) 25.38/9.12 new_ltEs21(x0, x1, ty_Ordering) 25.38/9.12 new_compare0(x0, x1, ty_Integer) 25.38/9.12 new_asAs(True, x0) 25.38/9.12 new_addToFM_C0(Branch(:(x0, x1), x2, x3, x4, x5), [], x6, x7, x8) 25.38/9.12 new_esEs36(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs28(x0, x1, ty_Bool) 25.38/9.12 new_lt21(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs4(x0, x1, ty_Ordering) 25.38/9.12 new_primPlusNat1(Zero, Zero) 25.38/9.12 new_ltEs21(x0, x1, ty_Double) 25.38/9.12 new_esEs29(x0, x1, ty_@0) 25.38/9.12 new_esEs39(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_lt19(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs16(x0, x1) 25.38/9.12 new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_ltEs4(x0, x1, ty_@0) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 25.38/9.12 new_esEs28(x0, x1, ty_@0) 25.38/9.12 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs9(x0, x1, ty_Bool) 25.38/9.12 new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) 25.38/9.12 new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs36(x0, x1, ty_Float) 25.38/9.12 new_primEqInt(Pos(Zero), Pos(Zero)) 25.38/9.12 new_primCompAux00(x0, x1, EQ, ty_Float) 25.38/9.12 new_compare28(True, True) 25.38/9.12 new_mkBalBranch(x0, x1, x2, x3, x4, x5, x6) 25.38/9.12 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs28(x0, x1, ty_Integer) 25.38/9.12 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_lt18(x0, x1) 25.38/9.12 new_ltEs23(x0, x1, ty_Bool) 25.38/9.12 new_lt20(x0, x1, ty_Char) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.38/9.12 new_addToFM_C12(x0, x1, x2, x3, x4, GT, x5, x6) 25.38/9.12 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_compare0(x0, x1, ty_Bool) 25.38/9.12 new_lt20(x0, x1, ty_Double) 25.38/9.12 new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_lt21(x0, x1, ty_Int) 25.38/9.12 new_primCompAux00(x0, x1, EQ, ty_Integer) 25.38/9.12 new_esEs37(x0, x1, ty_Bool) 25.38/9.12 new_primEqInt(Neg(Zero), Neg(Zero)) 25.38/9.12 new_ltEs7(x0, x1) 25.38/9.12 new_primCompAux00(x0, x1, EQ, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs4(x0, x1, ty_Double) 25.38/9.12 new_ltEs16(GT, EQ) 25.38/9.12 new_ltEs16(EQ, GT) 25.38/9.12 new_esEs4(x0, x1, ty_Char) 25.38/9.12 new_esEs27(x0, x1, ty_Bool) 25.38/9.12 new_esEs29(x0, x1, ty_Int) 25.38/9.12 new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs37(x0, x1, ty_@0) 25.38/9.12 new_ltEs16(LT, LT) 25.38/9.12 new_lt21(x0, x1, ty_@0) 25.38/9.12 new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 25.38/9.12 new_ltEs22(x0, x1, ty_Int) 25.38/9.12 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 25.38/9.12 new_compare16(LT, LT) 25.38/9.12 new_ltEs4(x0, x1, ty_Int) 25.38/9.12 new_esEs6(x0, x1, ty_Double) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 25.38/9.12 new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5, x6) 25.38/9.12 new_compare29(Nothing, Nothing, x0) 25.38/9.12 new_compare10(x0, x1, False, x2, x3) 25.38/9.12 new_compare18(:(x0, x1), :(x2, x3), x4) 25.38/9.12 new_compare0(x0, x1, ty_Float) 25.38/9.12 new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) 25.38/9.12 new_esEs32(x0, x1, ty_Int) 25.38/9.12 new_lt19(x0, x1, ty_Char) 25.38/9.12 new_esEs35(x0, x1, ty_Char) 25.38/9.12 new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, x7, x8, EQ, x9, x10) 25.38/9.12 new_esEs31(x0, x1, ty_Int) 25.38/9.12 new_esEs33(x0, x1, ty_Integer) 25.38/9.12 new_primEqInt(Pos(Zero), Neg(Zero)) 25.38/9.12 new_primEqInt(Neg(Zero), Pos(Zero)) 25.38/9.12 new_ltEs23(x0, x1, ty_@0) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, ty_Int) 25.38/9.12 new_ltEs21(x0, x1, ty_Char) 25.38/9.12 new_esEs5(x0, x1, ty_Double) 25.38/9.12 new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_ltEs24(x0, x1, ty_Int) 25.38/9.12 new_primCompAux00(x0, x1, EQ, ty_Bool) 25.38/9.12 new_esEs25(Double(x0, x1), Double(x2, x3)) 25.38/9.12 new_esEs5(x0, x1, ty_Char) 25.38/9.12 new_esEs37(x0, x1, ty_Float) 25.38/9.12 new_esEs15(False, False) 25.38/9.12 new_primMulInt(Neg(x0), Neg(x1)) 25.38/9.12 new_mkBalBranch6MkBalBranch30(EmptyFM, x0, x1, x2, x3, True, x4, x5) 25.38/9.12 new_ltEs23(x0, x1, ty_Int) 25.38/9.12 new_ltEs24(x0, x1, ty_@0) 25.38/9.12 new_esEs34(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_compare29(Just(x0), Just(x1), x2) 25.38/9.12 new_compare26(x0, x1, False, x2, x3) 25.38/9.12 new_esEs27(x0, x1, ty_Integer) 25.38/9.12 new_addToFM_C0(Branch([], x0, x1, x2, x3), :(x4, x5), x6, x7, x8) 25.38/9.12 new_compare0(x0, x1, ty_@0) 25.38/9.12 new_esEs11(x0, x1, ty_Char) 25.38/9.12 new_esEs9(x0, x1, ty_Int) 25.38/9.12 new_esEs35(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_lt23(x0, x1, app(ty_[], x2)) 25.38/9.12 new_lt19(x0, x1, ty_Ordering) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.38/9.12 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 25.38/9.12 new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_ltEs13(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.38/9.12 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 25.38/9.12 new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.38/9.12 new_ltEs19(x0, x1, ty_Double) 25.38/9.12 new_esEs28(x0, x1, ty_Int) 25.38/9.12 new_lt19(x0, x1, ty_Double) 25.38/9.12 new_esEs26(x0, x1, ty_Double) 25.38/9.12 new_addToFM_C22(x0, x1, x2, x3, x4, x5, x6, x7, x8, GT, x9, x10) 25.38/9.12 new_esEs38(x0, x1, ty_Bool) 25.38/9.12 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_primCompAux00(x0, x1, EQ, ty_@0) 25.38/9.12 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.38/9.12 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 25.38/9.12 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, EmptyFM, x4, x5, x6, x7, False, x8, x9) 25.38/9.12 new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, GT, x7, x8) 25.38/9.12 new_esEs35(x0, x1, app(ty_[], x2)) 25.38/9.12 new_compare15(Left(x0), Right(x1), x2, x3) 25.38/9.12 new_compare15(Right(x0), Left(x1), x2, x3) 25.38/9.12 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, EmptyFM, x5, False, x6, x7) 25.38/9.12 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_ltEs16(LT, EQ) 25.38/9.12 new_ltEs16(EQ, LT) 25.38/9.12 new_lt22(x0, x1, ty_Float) 25.38/9.12 new_ltEs21(x0, x1, app(ty_[], x2)) 25.38/9.12 new_compare18([], :(x0, x1), x2) 25.38/9.12 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, x4, LT, x5, x6) 25.38/9.12 new_primCmpNat0(Succ(x0), Succ(x1)) 25.38/9.12 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.38/9.12 new_esEs28(x0, x1, ty_Float) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 25.38/9.12 new_esEs6(x0, x1, ty_Ordering) 25.38/9.12 new_primCompAux00(x0, x1, EQ, app(ty_[], x2)) 25.38/9.12 new_esEs7(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_ltEs20(x0, x1, ty_Int) 25.38/9.12 new_ltEs8(Right(x0), Left(x1), x2, x3) 25.38/9.12 new_ltEs8(Left(x0), Right(x1), x2, x3) 25.38/9.12 new_lt23(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_compare210(x0, x1, True, x2) 25.38/9.12 new_compare15(Right(x0), Right(x1), x2, x3) 25.38/9.12 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), True, x9, x10) 25.38/9.12 new_mkBalBranch6Size_l0(x0, x1, x2, x3, x4) 25.38/9.12 new_esEs36(x0, x1, ty_Int) 25.38/9.12 new_esEs36(x0, x1, ty_Integer) 25.38/9.12 new_lt6(x0, x1, ty_@0) 25.38/9.12 new_esEs33(x0, x1, ty_Bool) 25.38/9.12 new_esEs19(GT, GT) 25.38/9.12 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_ltEs15(x0, x1) 25.38/9.12 new_esEs17(Left(x0), Left(x1), ty_Double, x2) 25.38/9.12 new_primPlusNat1(Succ(x0), Succ(x1)) 25.38/9.12 new_ltEs23(x0, x1, ty_Integer) 25.38/9.12 new_compare16(EQ, LT) 25.38/9.12 new_compare16(LT, EQ) 25.38/9.12 new_lt22(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.38/9.12 new_esEs39(x0, x1, ty_@0) 25.38/9.12 new_esEs38(x0, x1, ty_Int) 25.38/9.12 new_lt10(x0, x1, x2, x3) 25.38/9.12 new_esEs27(x0, x1, ty_@0) 25.38/9.12 new_esEs33(x0, x1, ty_Float) 25.38/9.12 new_lt22(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, x4, EQ, x5, x6) 25.38/9.12 new_esEs34(x0, x1, ty_Double) 25.38/9.12 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs9(x0, x1, ty_Float) 25.38/9.12 new_addToFM_C0(Branch([], x0, x1, x2, x3), [], x4, x5, x6) 25.38/9.12 new_ltEs22(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs20(Float(x0, x1), Float(x2, x3)) 25.38/9.12 new_esEs31(x0, x1, ty_Integer) 25.38/9.12 new_primMulNat0(Succ(x0), Succ(x1)) 25.38/9.12 new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs35(x0, x1, ty_Ordering) 25.38/9.12 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.38/9.12 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.38/9.12 new_esEs24(:(x0, x1), :(x2, x3), x4) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.38/9.12 new_esEs24([], :(x0, x1), x2) 25.38/9.12 new_compare12(x0, x1, x2, x3, False, x4, x5) 25.38/9.12 new_esEs11(x0, x1, ty_Ordering) 25.38/9.12 new_esEs29(x0, x1, app(ty_[], x2)) 25.38/9.12 new_primMinusNat0(Zero, Succ(x0)) 25.38/9.12 new_compare16(EQ, EQ) 25.38/9.12 new_lt6(x0, x1, ty_Double) 25.38/9.12 new_compare110(x0, x1, True, x2) 25.38/9.12 new_esEs7(x0, x1, ty_Double) 25.38/9.12 new_esEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.38/9.12 new_compare13(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.38/9.12 new_compare13(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.38/9.12 new_esEs12(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.38/9.12 new_esEs33(x0, x1, ty_Int) 25.38/9.12 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, Branch(x5, x6, x7, x8, x9), x10, False, x11, x12) 25.38/9.12 new_esEs37(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_mkBalBranch6MkBalBranch50(x0, x1, x2, False, x3, x4) 25.38/9.12 new_esEs36(x0, x1, ty_Bool) 25.38/9.12 new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs8(x0, x1, ty_Integer) 25.38/9.12 new_sizeFM(EmptyFM, x0, x1) 25.38/9.12 new_esEs12(Just(x0), Just(x1), ty_@0) 25.38/9.12 new_esEs9(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_ltEs23(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs11(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_ltEs13(Just(x0), Just(x1), ty_Double) 25.38/9.12 new_ltEs20(x0, x1, ty_Bool) 25.38/9.12 new_esEs30(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_ltEs19(x0, x1, ty_@0) 25.38/9.12 new_compare9(Integer(x0), Integer(x1)) 25.38/9.12 new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, EmptyFM, True, x4, x5) 25.38/9.12 new_primCmpNat0(Zero, Succ(x0)) 25.38/9.12 new_ltEs21(x0, x1, ty_Float) 25.38/9.12 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_compare17(x0, x1) 25.38/9.12 new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.38/9.12 new_ltEs19(x0, x1, ty_Bool) 25.38/9.12 new_ltEs20(x0, x1, app(ty_[], x2)) 25.38/9.12 new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs6(x0, x1, ty_Integer) 25.38/9.12 new_compare112(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) 25.38/9.12 new_compare28(False, False) 25.38/9.12 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.38/9.12 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.38/9.12 new_sr(x0, x1) 25.38/9.12 new_esEs12(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_sizeFM0(EmptyFM, x0, x1) 25.38/9.12 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs39(x0, x1, ty_Integer) 25.38/9.12 new_esEs8(x0, x1, ty_Bool) 25.38/9.12 new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.38/9.12 new_esEs36(x0, x1, ty_Ordering) 25.38/9.12 new_primPlusInt(Pos(x0), Neg(x1)) 25.38/9.12 new_primPlusInt(Neg(x0), Pos(x1)) 25.38/9.12 new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_ltEs22(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs5(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_lt23(x0, x1, ty_Integer) 25.38/9.12 new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_lt22(x0, x1, ty_@0) 25.38/9.12 new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, x7, x8, GT, x9, x10) 25.38/9.12 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.38/9.12 new_esEs24(:(x0, x1), [], x2) 25.38/9.12 new_ltEs13(Just(x0), Just(x1), ty_Ordering) 25.38/9.12 new_esEs10(x0, x1, ty_Int) 25.38/9.12 new_lt23(x0, x1, ty_@0) 25.38/9.12 new_mkBalBranch6MkBalBranch40(x0, x1, x2, False, x3, x4) 25.38/9.12 new_compare13(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.38/9.12 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_lt9(x0, x1) 25.38/9.12 new_compare16(GT, LT) 25.38/9.12 new_compare16(LT, GT) 25.38/9.12 new_esEs32(x0, x1, ty_Integer) 25.38/9.12 new_esEs17(Left(x0), Left(x1), ty_Float, x2) 25.38/9.12 new_esEs17(Left(x0), Left(x1), ty_Integer, x2) 25.38/9.12 new_esEs33(x0, x1, ty_Ordering) 25.38/9.12 new_esEs26(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_mkBalBranch0(x0, x1, x2, x3, x4) 25.38/9.12 new_lt22(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_compare211(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.38/9.12 new_lt22(x0, x1, ty_Integer) 25.38/9.12 new_not(True) 25.38/9.12 new_esEs9(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs27(x0, x1, ty_Ordering) 25.38/9.12 new_lt22(x0, x1, ty_Int) 25.38/9.12 new_esEs8(x0, x1, app(ty_[], x2)) 25.38/9.12 new_ltEs12(True, True) 25.38/9.12 new_compare110(x0, x1, False, x2) 25.38/9.12 new_lt22(x0, x1, ty_Char) 25.38/9.12 new_esEs6(x0, x1, ty_Bool) 25.38/9.12 new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs28(x0, x1, app(ty_[], x2)) 25.38/9.12 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs7(x0, x1, ty_Ordering) 25.38/9.12 new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.38/9.12 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_compare0(x0, x1, ty_Double) 25.38/9.12 new_addToFM_C12(x0, x1, x2, x3, x4, LT, x5, x6) 25.38/9.12 new_esEs29(x0, x1, ty_Float) 25.38/9.12 new_addToFM_C22(x0, x1, x2, x3, x4, x5, x6, x7, x8, LT, x9, x10) 25.38/9.12 new_esEs39(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs38(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_ltEs4(x0, x1, ty_Float) 25.38/9.12 new_esEs8(x0, x1, ty_Float) 25.38/9.12 new_lt6(x0, x1, ty_Ordering) 25.38/9.12 new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_ltEs4(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_lt22(x0, x1, ty_Bool) 25.38/9.12 new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_compare0(x0, x1, ty_Int) 25.38/9.12 new_esEs8(x0, x1, ty_@0) 25.38/9.12 new_esEs37(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_pePe(True, x0) 25.38/9.12 new_esEs23(Integer(x0), Integer(x1)) 25.38/9.12 new_lt22(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_ltEs20(x0, x1, ty_Double) 25.38/9.12 new_esEs7(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs34(x0, x1, ty_Int) 25.38/9.12 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs26(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10, False, x11, x12) 25.38/9.12 new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_compare0(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs6(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_primMulInt(Pos(x0), Pos(x1)) 25.38/9.12 new_esEs19(LT, GT) 25.38/9.12 new_esEs19(GT, LT) 25.38/9.12 new_esEs8(x0, x1, ty_Int) 25.38/9.12 new_ltEs13(Nothing, Just(x0), x1) 25.38/9.12 new_esEs30(x0, x1, ty_Ordering) 25.38/9.12 new_esEs21(:%(x0, x1), :%(x2, x3), x4) 25.38/9.12 new_esEs6(x0, x1, ty_Char) 25.38/9.12 new_esEs17(Left(x0), Left(x1), ty_Char, x2) 25.38/9.12 new_lt23(x0, x1, ty_Float) 25.38/9.12 new_sr0(Integer(x0), Integer(x1)) 25.38/9.12 new_esEs37(x0, x1, ty_Char) 25.38/9.12 new_esEs37(x0, x1, ty_Int) 25.38/9.12 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.38/9.12 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.38/9.12 new_ltEs21(x0, x1, ty_Bool) 25.38/9.12 new_compare30(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.38/9.12 new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_lt19(x0, x1, ty_Float) 25.38/9.12 new_esEs26(x0, x1, ty_Float) 25.38/9.12 new_lt14(x0, x1, x2, x3) 25.38/9.12 new_primCompAux00(x0, x1, EQ, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs34(x0, x1, ty_Char) 25.38/9.12 new_ltEs21(x0, x1, ty_Integer) 25.38/9.12 new_compare30(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.38/9.12 new_compare30(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.38/9.12 new_esEs10(x0, x1, ty_Bool) 25.38/9.12 new_ltEs19(x0, x1, ty_Float) 25.38/9.12 new_esEs8(x0, x1, ty_Char) 25.38/9.12 new_esEs17(Left(x0), Left(x1), ty_Int, x2) 25.38/9.12 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs4(x0, x1, ty_@0) 25.38/9.12 new_esEs5(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_primCompAux00(x0, x1, GT, x2) 25.38/9.12 new_esEs33(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_ltEs18(x0, x1) 25.38/9.12 new_mkBalBranch6MkBalBranch3(Branch(x0, x1, x2, x3, x4), x5, x6, True, x7, x8) 25.38/9.12 new_esEs9(x0, x1, ty_Double) 25.38/9.12 new_esEs9(x0, x1, ty_Ordering) 25.38/9.12 new_lt23(x0, x1, ty_Int) 25.38/9.12 new_compare0(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs34(x0, x1, ty_Float) 25.38/9.12 new_esEs6(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_mkBalBranch6MkBalBranch30(x0, x1, x2, x3, x4, False, x5, x6) 25.38/9.12 new_esEs10(x0, x1, ty_Char) 25.38/9.12 new_mkBalBranch6MkBalBranch50(x0, x1, x2, True, x3, x4) 25.38/9.12 new_esEs26(x0, x1, ty_Int) 25.38/9.12 new_primEqNat0(Succ(x0), Succ(x1)) 25.38/9.12 new_lt11(x0, x1, x2) 25.38/9.12 new_asAs(False, x0) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.38/9.12 new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) 25.38/9.12 new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs15(False, True) 25.38/9.12 new_esEs15(True, False) 25.38/9.12 new_ltEs13(Nothing, Nothing, x0) 25.38/9.12 new_lt19(x0, x1, ty_Int) 25.38/9.12 new_ltEs19(x0, x1, ty_Int) 25.38/9.12 new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.38/9.12 new_esEs8(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs6(x0, x1, ty_Int) 25.38/9.12 new_esEs39(x0, x1, ty_Bool) 25.38/9.12 new_esEs10(x0, x1, ty_Integer) 25.38/9.12 new_compare211(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.38/9.12 new_primEqNat0(Zero, Zero) 25.38/9.12 new_esEs39(x0, x1, ty_Float) 25.38/9.12 new_ltEs9(x0, x1) 25.38/9.12 new_esEs17(Left(x0), Left(x1), ty_Bool, x2) 25.38/9.12 new_mkBalBranch6MkBalBranch3(x0, x1, x2, False, x3, x4) 25.38/9.12 new_not(False) 25.38/9.12 new_compare210(x0, x1, False, x2) 25.38/9.12 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, EmptyFM, x4, x5, False, x6, x7) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.38/9.12 new_addToFM_C16(x0, x1, x2, x3, x4, x5, x6, x7, x8, LT, x9, x10) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.38/9.12 new_ltEs19(x0, x1, ty_Char) 25.38/9.12 new_ltEs22(x0, x1, ty_Ordering) 25.38/9.12 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10) 25.38/9.12 new_ltEs4(x0, x1, ty_Bool) 25.38/9.12 new_esEs29(x0, x1, ty_Integer) 25.38/9.12 new_esEs33(x0, x1, ty_Double) 25.38/9.12 new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, LT, x7, x8) 25.38/9.12 new_esEs26(x0, x1, ty_Char) 25.38/9.12 new_primPlusNat0(x0, x1) 25.38/9.12 new_lt6(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs6(x0, x1, ty_Float) 25.38/9.12 new_compare0(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs29(x0, x1, ty_Bool) 25.38/9.12 new_lt23(x0, x1, ty_Char) 25.38/9.12 new_ltEs19(x0, x1, ty_Integer) 25.38/9.12 new_esEs39(x0, x1, ty_Int) 25.38/9.12 new_esEs5(x0, x1, ty_Ordering) 25.38/9.12 new_esEs34(x0, x1, ty_Bool) 25.38/9.12 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs36(x0, x1, ty_Double) 25.38/9.12 new_ltEs23(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs39(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_ltEs4(x0, x1, ty_Integer) 25.38/9.12 new_lt4(x0, x1) 25.38/9.12 new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.38/9.12 new_esEs11(x0, x1, app(ty_[], x2)) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.38/9.12 new_esEs39(x0, x1, ty_Char) 25.38/9.12 new_esEs4(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_lt23(x0, x1, ty_Bool) 25.38/9.12 new_ltEs24(x0, x1, ty_Ordering) 25.38/9.12 new_esEs37(x0, x1, ty_Integer) 25.38/9.12 new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_compare11(x0, x1, x2, x3, True, x4, x5, x6) 25.38/9.12 new_ltEs13(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.38/9.12 new_compare25(x0, x1, False, x2, x3) 25.38/9.12 new_compare18([], [], x0) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) 25.38/9.12 new_esEs28(x0, x1, ty_Double) 25.38/9.12 new_mkBalBranch6MkBalBranch010(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 25.38/9.12 new_lt16(x0, x1) 25.38/9.12 new_ltEs24(x0, x1, ty_Double) 25.38/9.12 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 25.38/9.12 new_esEs7(x0, x1, ty_Integer) 25.38/9.12 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, x4, x5, x6, x7, x8, True, x9, x10) 25.38/9.12 new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_lt19(x0, x1, ty_Bool) 25.38/9.12 new_compare27(:%(x0, x1), :%(x2, x3), ty_Int) 25.38/9.12 new_esEs34(x0, x1, ty_Integer) 25.38/9.12 new_esEs4(x0, x1, ty_Int) 25.38/9.12 new_esEs35(x0, x1, ty_@0) 25.38/9.12 new_lt21(x0, x1, ty_Char) 25.38/9.12 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_ltEs13(Just(x0), Just(x1), ty_Float) 25.38/9.12 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 25.38/9.12 new_ltEs11(x0, x1, x2) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 25.38/9.12 new_esEs26(x0, x1, ty_Bool) 25.38/9.12 new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.38/9.12 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.38/9.12 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.38/9.12 new_esEs19(EQ, GT) 25.38/9.12 new_esEs19(GT, EQ) 25.38/9.12 new_esEs11(x0, x1, ty_Integer) 25.38/9.12 new_primEqNat0(Zero, Succ(x0)) 25.38/9.12 new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, x4, False, x5, x6) 25.38/9.12 new_esEs10(x0, x1, ty_Float) 25.38/9.12 new_esEs38(x0, x1, ty_Ordering) 25.38/9.12 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_ltEs4(x0, x1, ty_Char) 25.38/9.12 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs8(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs26(x0, x1, ty_Integer) 25.38/9.12 new_primMinusNat0(Zero, Zero) 25.38/9.12 new_lt19(x0, x1, ty_Integer) 25.38/9.12 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_compare25(x0, x1, True, x2, x3) 25.38/9.12 new_primCompAux00(x0, x1, EQ, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_compare16(GT, GT) 25.38/9.12 new_esEs33(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_lt20(x0, x1, ty_Int) 25.38/9.12 new_pePe(False, x0) 25.38/9.12 new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_emptyFM(x0, x1) 25.38/9.12 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_lt21(x0, x1, ty_Ordering) 25.38/9.12 new_lt21(x0, x1, ty_Double) 25.38/9.12 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.38/9.12 new_compare11(x0, x1, x2, x3, False, x4, x5, x6) 25.38/9.12 new_lt19(x0, x1, ty_@0) 25.38/9.12 new_esEs29(x0, x1, ty_Char) 25.38/9.12 new_esEs26(x0, x1, ty_@0) 25.38/9.12 new_esEs35(x0, x1, ty_Bool) 25.38/9.12 new_esEs34(x0, x1, ty_@0) 25.38/9.12 new_compare7(@2(x0, x1), @2(x2, x3), x4, x5) 25.38/9.12 new_esEs27(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs38(x0, x1, ty_Double) 25.38/9.12 new_primPlusNat1(Zero, Succ(x0)) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, ty_Double) 25.38/9.12 new_sIZE_RATIO 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 25.38/9.12 new_primCompAux1(x0, x1, x2, x3, x4) 25.38/9.12 new_compare14(x0, x1, True, x2, x3) 25.38/9.12 new_esEs11(x0, x1, ty_@0) 25.38/9.12 new_esEs5(x0, x1, ty_Int) 25.38/9.12 new_compare19(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.38/9.12 new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs39(x0, x1, ty_Ordering) 25.38/9.12 new_esEs13(@2(x0, x1), @2(x2, x3), x4, x5) 25.38/9.12 new_esEs11(x0, x1, ty_Bool) 25.38/9.12 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs35(x0, x1, ty_Int) 25.38/9.12 new_esEs5(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs11(x0, x1, ty_Float) 25.38/9.12 new_esEs10(x0, x1, app(ty_[], x2)) 25.38/9.12 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 25.38/9.12 new_ltEs24(x0, x1, ty_Char) 25.38/9.12 new_lt12(x0, x1) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.38/9.12 new_esEs8(x0, x1, ty_Double) 25.38/9.12 new_primMulNat0(Succ(x0), Zero) 25.38/9.12 new_lt19(x0, x1, app(ty_[], x2)) 25.38/9.12 new_compare24(x0, x1, x2, x3, False, x4, x5) 25.38/9.12 new_ltEs23(x0, x1, ty_Double) 25.38/9.12 new_ltEs21(x0, x1, ty_@0) 25.38/9.12 new_ltEs23(x0, x1, ty_Char) 25.38/9.12 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs22(@0, @0) 25.38/9.12 new_compare8(@0, @0) 25.38/9.12 new_esEs12(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.38/9.12 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_ltEs21(x0, x1, ty_Int) 25.38/9.12 new_esEs12(Just(x0), Just(x1), ty_Float) 25.38/9.12 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.38/9.12 new_ltEs13(Just(x0), Just(x1), ty_Bool) 25.38/9.12 new_esEs4(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_ltEs22(x0, x1, ty_Double) 25.38/9.12 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_ltEs22(x0, x1, ty_Char) 25.38/9.12 new_compare27(:%(x0, x1), :%(x2, x3), ty_Integer) 25.38/9.12 new_ltEs20(x0, x1, ty_Float) 25.38/9.12 new_compare112(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) 25.38/9.12 new_esEs34(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs12(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.38/9.12 new_compare30(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.38/9.12 new_esEs34(x0, x1, app(ty_[], x2)) 25.38/9.12 new_ltEs20(x0, x1, ty_Ordering) 25.38/9.12 new_esEs10(x0, x1, ty_@0) 25.38/9.12 new_esEs4(x0, x1, ty_Integer) 25.38/9.12 new_esEs33(x0, x1, ty_Char) 25.38/9.12 new_ltEs13(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.38/9.12 new_esEs12(Just(x0), Just(x1), ty_Ordering) 25.38/9.12 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs4(x0, x1, ty_Bool) 25.38/9.12 new_compare0(x0, x1, ty_Char) 25.38/9.12 new_mkBalBranch6Size_r0(x0, x1, x2, x3, x4) 25.38/9.12 new_ltEs16(GT, GT) 25.38/9.12 new_mkBalBranch6MkBalBranch51(x0, x1, x2, x3, x4, x5, x6) 25.38/9.12 new_lt20(x0, x1, ty_Bool) 25.38/9.12 new_lt23(x0, x1, ty_Double) 25.38/9.12 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_esEs28(x0, x1, ty_Ordering) 25.38/9.12 new_primCmpNat0(Succ(x0), Zero) 25.38/9.12 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_ltEs22(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs29(x0, x1, ty_Double) 25.38/9.12 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs30(x0, x1, ty_Double) 25.38/9.12 new_esEs24([], [], x0) 25.38/9.12 new_esEs4(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs9(x0, x1, ty_Char) 25.38/9.12 new_ltEs13(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs7(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs35(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs38(x0, x1, ty_Char) 25.38/9.12 new_ltEs4(x0, x1, ty_Double) 25.38/9.12 new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.12 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.38/9.12 new_lt8(x0, x1, x2, x3, x4) 25.38/9.12 new_esEs6(x0, x1, ty_@0) 25.38/9.12 new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4) 25.38/9.12 new_compare111(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) 25.38/9.12 new_esEs35(x0, x1, ty_Integer) 25.38/9.12 new_esEs39(x0, x1, ty_Double) 25.38/9.12 new_lt19(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs27(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs27(x0, x1, ty_Double) 25.38/9.12 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.38/9.12 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.38/9.12 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.38/9.12 new_esEs19(LT, EQ) 25.38/9.12 new_esEs19(EQ, LT) 25.38/9.12 new_esEs17(Left(x0), Left(x1), ty_@0, x2) 25.38/9.12 new_ltEs20(x0, x1, ty_Char) 25.38/9.12 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 25.38/9.12 new_esEs36(x0, x1, app(ty_Ratio, x2)) 25.38/9.12 new_esEs15(True, True) 25.38/9.12 new_esEs33(x0, x1, app(ty_[], x2)) 25.38/9.12 new_esEs36(x0, x1, ty_Char) 25.38/9.12 new_esEs19(LT, LT) 25.38/9.12 new_addToFM_C21(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) 25.38/9.12 new_esEs7(x0, x1, ty_@0) 25.38/9.12 new_primCompAux00(x0, x1, EQ, ty_Ordering) 25.38/9.12 new_ltEs20(x0, x1, ty_Integer) 25.38/9.12 new_ltEs23(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.38/9.12 new_mkBalBranch6MkBalBranch3(EmptyFM, x0, x1, True, x2, x3) 25.38/9.12 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_esEs12(Just(x0), Nothing, x1) 25.38/9.12 new_primCompAux00(x0, x1, LT, x2) 25.38/9.12 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.38/9.12 new_ltEs23(x0, x1, ty_Ordering) 25.38/9.12 new_mkBranch(x0, x1, x2, x3, x4, x5, x6) 25.38/9.12 new_ltEs5(x0, x1, x2) 25.38/9.12 new_esEs9(x0, x1, app(ty_[], x2)) 25.38/9.12 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_compare10(x0, x1, True, x2, x3) 25.38/9.12 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.12 new_esEs38(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_ltEs4(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs28(x0, x1, ty_Char) 25.38/9.12 new_esEs18(Char(x0), Char(x1)) 25.38/9.12 new_compare0(x0, x1, ty_Ordering) 25.38/9.12 new_esEs12(Just(x0), Just(x1), ty_Integer) 25.38/9.12 new_ltEs24(x0, x1, ty_Float) 25.38/9.12 new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.12 new_ltEs16(EQ, EQ) 25.38/9.12 new_ltEs20(x0, x1, ty_@0) 25.38/9.12 new_esEs27(x0, x1, app(ty_Maybe, x2)) 25.38/9.12 new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.38/9.12 new_addToFM_C12(x0, x1, x2, x3, x4, EQ, x5, x6) 25.38/9.12 new_esEs38(x0, x1, ty_Float) 25.38/9.12 new_compare13(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.38/9.12 new_primMulNat0(Zero, Zero) 25.38/9.12 new_esEs30(x0, x1, ty_Bool) 25.38/9.13 new_lt20(x0, x1, ty_Float) 25.38/9.13 new_primCompAux00(x0, x1, EQ, app(ty_Ratio, x2)) 25.38/9.13 new_esEs5(x0, x1, ty_Float) 25.38/9.13 new_esEs17(Left(x0), Right(x1), x2, x3) 25.38/9.13 new_esEs17(Right(x0), Left(x1), x2, x3) 25.38/9.13 new_esEs12(Nothing, Just(x0), x1) 25.38/9.13 new_mkBalBranch6MkBalBranch40(x0, x1, Branch(x2, x3, x4, x5, x6), True, x7, x8) 25.38/9.13 new_esEs30(x0, x1, ty_Integer) 25.38/9.13 new_esEs12(Nothing, Nothing, x0) 25.38/9.13 new_esEs19(EQ, EQ) 25.38/9.13 new_mkBalBranch6MkBalBranch110(x0, x1, x2, x3, Branch(x4, x5, x6, x7, x8), x9, x10, x11, x12, False, x13, x14) 25.38/9.13 new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.13 new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.13 new_lt6(x0, x1, app(ty_Ratio, x2)) 25.38/9.13 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.13 new_lt15(x0, x1) 25.38/9.13 new_esEs12(Just(x0), Just(x1), app(ty_[], x2)) 25.38/9.13 new_lt17(x0, x1) 25.38/9.13 new_addToFM_C0(Branch(:(x0, x1), x2, x3, x4, x5), :(x6, x7), x8, x9, x10) 25.38/9.13 new_esEs30(x0, x1, ty_@0) 25.38/9.13 new_ltEs24(x0, x1, app(ty_[], x2)) 25.38/9.13 new_primMinusNat0(Succ(x0), Succ(x1)) 25.38/9.13 new_ltEs22(x0, x1, ty_Float) 25.38/9.13 new_ltEs13(Just(x0), Just(x1), ty_Int) 25.38/9.13 new_compare26(x0, x1, True, x2, x3) 25.38/9.13 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.38/9.13 new_primPlusNat1(Succ(x0), Zero) 25.38/9.13 new_esEs10(x0, x1, ty_Double) 25.38/9.13 new_esEs10(x0, x1, ty_Ordering) 25.38/9.13 new_compare12(x0, x1, x2, x3, True, x4, x5) 25.38/9.13 new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.13 new_ltEs24(x0, x1, app(ty_Maybe, x2)) 25.38/9.13 new_esEs12(Just(x0), Just(x1), ty_Bool) 25.38/9.13 new_ltEs13(Just(x0), Nothing, x1) 25.38/9.13 new_lt20(x0, x1, app(ty_[], x2)) 25.38/9.13 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.13 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 25.38/9.13 new_fsEs(x0) 25.38/9.13 new_esEs12(Just(x0), Just(x1), ty_Char) 25.38/9.13 new_ltEs13(Just(x0), Just(x1), ty_Char) 25.38/9.13 new_esEs11(x0, x1, ty_Double) 25.38/9.13 new_primMulNat0(Zero, Succ(x0)) 25.38/9.13 new_lt13(x0, x1, x2) 25.38/9.13 new_primCompAux00(x0, x1, EQ, ty_Int) 25.38/9.13 new_compare0(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.13 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.13 new_esEs26(x0, x1, app(ty_[], x2)) 25.38/9.13 new_esEs37(x0, x1, ty_Double) 25.38/9.13 new_esEs17(Right(x0), Right(x1), x2, ty_Bool) 25.38/9.13 new_esEs30(x0, x1, app(ty_Maybe, x2)) 25.38/9.13 new_esEs11(x0, x1, app(ty_Ratio, x2)) 25.38/9.13 new_addToFM_C0(EmptyFM, x0, x1, x2, x3) 25.38/9.13 new_esEs17(Right(x0), Right(x1), x2, ty_Float) 25.38/9.13 new_compare29(Just(x0), Nothing, x1) 25.38/9.13 new_esEs38(x0, x1, ty_Integer) 25.38/9.13 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, EmptyFM, x7, False, x8, x9) 25.38/9.13 new_lt23(x0, x1, app(ty_Maybe, x2)) 25.38/9.13 new_lt21(x0, x1, ty_Float) 25.38/9.13 new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) 25.38/9.13 new_ltEs13(Just(x0), Just(x1), app(ty_[], x2)) 25.38/9.13 new_lt5(x0, x1) 25.38/9.13 new_ltEs22(x0, x1, ty_Bool) 25.38/9.13 new_addToFM_C13(x0, x1, x2, x3, x4, x5, x6) 25.38/9.13 new_compare18(:(x0, x1), [], x2) 25.38/9.13 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.38/9.13 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.13 new_esEs12(Just(x0), Just(x1), ty_Int) 25.38/9.13 new_ltEs12(False, True) 25.38/9.13 new_ltEs12(True, False) 25.38/9.13 new_primCompAux00(x0, x1, EQ, ty_Double) 25.38/9.13 new_compare28(False, True) 25.38/9.13 new_compare28(True, False) 25.38/9.13 new_primCompAux00(x0, x1, EQ, app(ty_Maybe, x2)) 25.38/9.13 new_primPlusInt(Pos(x0), Pos(x1)) 25.38/9.13 new_ltEs22(x0, x1, ty_@0) 25.38/9.13 new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.13 new_primCompAux00(x0, x1, EQ, ty_Char) 25.38/9.13 new_lt20(x0, x1, ty_Integer) 25.38/9.13 new_lt23(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.13 new_esEs4(x0, x1, ty_Float) 25.38/9.13 new_ltEs23(x0, x1, ty_Float) 25.38/9.13 new_esEs36(x0, x1, app(ty_[], x2)) 25.38/9.13 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.13 new_ltEs16(LT, GT) 25.38/9.13 new_ltEs16(GT, LT) 25.38/9.13 new_esEs10(x0, x1, app(ty_Maybe, x2)) 25.38/9.13 new_ltEs10(x0, x1) 25.38/9.13 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.38/9.13 new_ltEs4(x0, x1, app(ty_[], x2)) 25.38/9.13 new_compare29(Nothing, Just(x0), x1) 25.38/9.13 new_esEs35(x0, x1, ty_Float) 25.38/9.13 new_esEs11(x0, x1, ty_Int) 25.38/9.13 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.38/9.13 new_compare0(x0, x1, app(ty_Ratio, x2)) 25.38/9.13 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.38/9.13 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.38/9.13 new_esEs17(Right(x0), Right(x1), x2, ty_@0) 25.38/9.13 new_esEs38(x0, x1, ty_@0) 25.38/9.13 new_lt6(x0, x1, ty_Integer) 25.38/9.13 new_ltEs13(Just(x0), Just(x1), ty_@0) 25.38/9.13 new_esEs12(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.38/9.13 new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, x4, GT, x5, x6) 25.38/9.13 new_esEs37(x0, x1, app(ty_[], x2)) 25.38/9.13 new_esEs27(x0, x1, ty_Char) 25.38/9.13 new_esEs12(Just(x0), Just(x1), ty_Double) 25.38/9.13 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.13 new_gt(x0, x1) 25.38/9.13 new_lt23(x0, x1, app(ty_Ratio, x2)) 25.38/9.13 new_lt20(x0, x1, ty_@0) 25.38/9.13 new_lt22(x0, x1, app(ty_[], x2)) 25.38/9.13 new_esEs5(x0, x1, ty_@0) 25.38/9.13 new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.13 new_primMulInt(Pos(x0), Neg(x1)) 25.38/9.13 new_primMulInt(Neg(x0), Pos(x1)) 25.38/9.13 new_esEs35(x0, x1, ty_Double) 25.38/9.13 new_esEs7(x0, x1, ty_Int) 25.38/9.13 new_lt22(x0, x1, ty_Double) 25.38/9.13 new_esEs17(Right(x0), Right(x1), x2, ty_Char) 25.38/9.13 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.38/9.13 new_esEs5(x0, x1, ty_Bool) 25.38/9.13 new_lt21(x0, x1, ty_Integer) 25.38/9.13 new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.13 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.38/9.13 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 25.38/9.13 new_esEs30(x0, x1, ty_Float) 25.38/9.13 new_esEs27(x0, x1, ty_Int) 25.38/9.13 new_lt6(x0, x1, app(ty_Maybe, x2)) 25.38/9.13 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 25.38/9.13 new_esEs6(x0, x1, app(ty_Ratio, x2)) 25.38/9.13 new_lt22(x0, x1, ty_Ordering) 25.38/9.13 new_compare24(x0, x1, x2, x3, True, x4, x5) 25.38/9.13 new_ltEs19(x0, x1, app(ty_[], x2)) 25.38/9.13 new_ltEs19(x0, x1, ty_Ordering) 25.38/9.13 new_ltEs24(x0, x1, app(ty_Ratio, x2)) 25.38/9.13 new_esEs30(x0, x1, ty_Char) 25.38/9.13 new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.13 new_sizeFM0(Branch(x0, x1, x2, x3, x4), x5, x6) 25.38/9.13 new_esEs7(x0, x1, ty_Float) 25.38/9.13 new_ltEs13(Just(x0), Just(x1), ty_Integer) 25.38/9.13 new_esEs36(x0, x1, ty_@0) 25.38/9.13 new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.13 new_addToFM_C14(x0, x1, x2, x3, x4, x5, x6, EQ, x7, x8) 25.38/9.13 new_esEs34(x0, x1, ty_Ordering) 25.38/9.13 new_ltEs24(x0, x1, ty_Bool) 25.38/9.13 new_esEs26(x0, x1, ty_Ordering) 25.38/9.13 new_esEs30(x0, x1, ty_Int) 25.38/9.13 new_lt23(x0, x1, ty_Ordering) 25.38/9.13 new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5, x6) 25.38/9.13 new_compare111(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) 25.38/9.13 new_mkBalBranch6MkBalBranch40(x0, x1, EmptyFM, True, x2, x3) 25.38/9.13 new_addToFM_C22(x0, x1, x2, x3, x4, x5, x6, x7, x8, EQ, x9, x10) 25.38/9.13 new_esEs27(x0, x1, ty_Float) 25.38/9.13 new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), x12, False, x13, x14) 25.38/9.13 new_esEs5(x0, x1, ty_Integer) 25.38/9.13 new_primEqNat0(Succ(x0), Zero) 25.38/9.13 new_addToFM_C17(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) 25.38/9.13 new_compare14(x0, x1, False, x2, x3) 25.38/9.13 new_ltEs22(x0, x1, ty_Integer) 25.38/9.13 new_esEs9(x0, x1, ty_@0) 25.38/9.13 new_ltEs12(False, False) 25.38/9.13 new_lt6(x0, x1, ty_Float) 25.38/9.13 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.38/9.13 new_esEs29(x0, x1, ty_Ordering) 25.38/9.13 new_ltEs17(x0, x1) 25.38/9.13 new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.13 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 25.38/9.13 new_lt21(x0, x1, ty_Bool) 25.38/9.13 new_addToFM_C15(x0, x1, x2, x3, x4, x5, x6, x7, x8) 25.38/9.13 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.13 new_ltEs4(x0, x1, ty_Ordering) 25.38/9.13 new_addListToFM0(x0, x1, x2) 25.38/9.13 new_lt6(x0, x1, ty_Bool) 25.38/9.13 new_esEs8(x0, x1, ty_Ordering) 25.38/9.13 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 25.38/9.13 new_esEs30(x0, x1, app(ty_[], x2)) 25.38/9.13 new_compare0(x0, x1, app(ty_Maybe, x2)) 25.38/9.13 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.38/9.13 new_lt7(x0, x1, x2) 25.38/9.13 new_esEs37(x0, x1, ty_Ordering) 25.38/9.13 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.38/9.13 new_esEs38(x0, x1, app(ty_[], x2)) 25.38/9.13 new_esEs7(x0, x1, ty_Bool) 25.38/9.13 new_esEs17(Right(x0), Right(x1), x2, ty_Integer) 25.38/9.13 new_compare6(Char(x0), Char(x1)) 25.38/9.13 new_primMinusNat0(Succ(x0), Zero) 25.38/9.13 new_compare16(EQ, GT) 25.38/9.13 new_compare16(GT, EQ) 25.38/9.13 new_esEs10(x0, x1, app(ty_Ratio, x2)) 25.38/9.13 new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.38/9.13 new_esEs33(x0, x1, ty_@0) 25.38/9.13 new_lt6(x0, x1, ty_Int) 25.38/9.13 new_ltEs24(x0, x1, ty_Integer) 25.38/9.13 new_ltEs13(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.38/9.13 new_lt6(x0, x1, ty_Char) 25.38/9.13 new_esEs7(x0, x1, ty_Char) 25.38/9.13 new_primCmpNat0(Zero, Zero) 25.38/9.13 new_primPlusInt(Neg(x0), Neg(x1)) 25.38/9.13 25.38/9.13 We have to consider all minimal (P,Q,R)-chains. 25.38/9.13 ---------------------------------------- 25.38/9.13 25.38/9.13 (38) QDPSizeChangeProof (EQUIVALENT) 25.38/9.13 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 25.38/9.13 25.38/9.13 From the DPs we obtained the following set of size-change graphs: 25.38/9.13 *new_foldl(xuu3, :(xuu40, xuu41), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu3, xuu40, h, ba), xuu41, h, ba) 25.38/9.13 The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 25.38/9.13 25.38/9.13 25.38/9.13 ---------------------------------------- 25.38/9.13 25.38/9.13 (39) 25.38/9.13 YES 25.38/9.13 25.38/9.13 ---------------------------------------- 25.38/9.13 25.38/9.13 (40) 25.38/9.13 Obligation: 25.38/9.13 Q DP problem: 25.38/9.13 The TRS P consists of the following rules: 25.38/9.13 25.38/9.13 new_primMulNat(Succ(xuu300000), Succ(xuu4000100)) -> new_primMulNat(xuu300000, Succ(xuu4000100)) 25.38/9.13 25.38/9.13 R is empty. 25.38/9.13 Q is empty. 25.38/9.13 We have to consider all minimal (P,Q,R)-chains. 25.38/9.13 ---------------------------------------- 25.38/9.13 25.38/9.13 (41) QDPSizeChangeProof (EQUIVALENT) 25.38/9.13 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 25.38/9.13 25.38/9.13 From the DPs we obtained the following set of size-change graphs: 25.38/9.13 *new_primMulNat(Succ(xuu300000), Succ(xuu4000100)) -> new_primMulNat(xuu300000, Succ(xuu4000100)) 25.38/9.13 The graph contains the following edges 1 > 1, 2 >= 2 25.38/9.13 25.38/9.13 25.38/9.13 ---------------------------------------- 25.38/9.13 25.38/9.13 (42) 25.38/9.13 YES 25.38/9.13 25.38/9.13 ---------------------------------------- 25.38/9.13 25.38/9.13 (43) 25.38/9.13 Obligation: 25.38/9.13 Q DP problem: 25.38/9.13 The TRS P consists of the following rules: 25.38/9.13 25.38/9.13 new_primEqNat(Succ(xuu4000000), Succ(xuu300000)) -> new_primEqNat(xuu4000000, xuu300000) 25.38/9.13 25.38/9.13 R is empty. 25.38/9.13 Q is empty. 25.38/9.13 We have to consider all minimal (P,Q,R)-chains. 25.38/9.13 ---------------------------------------- 25.38/9.13 25.38/9.13 (44) QDPSizeChangeProof (EQUIVALENT) 25.38/9.13 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 25.38/9.13 25.38/9.13 From the DPs we obtained the following set of size-change graphs: 25.38/9.13 *new_primEqNat(Succ(xuu4000000), Succ(xuu300000)) -> new_primEqNat(xuu4000000, xuu300000) 25.38/9.13 The graph contains the following edges 1 > 1, 2 > 2 25.38/9.13 25.38/9.13 25.38/9.13 ---------------------------------------- 25.38/9.13 25.38/9.13 (45) 25.38/9.13 YES 25.38/9.13 25.38/9.13 ---------------------------------------- 25.38/9.13 25.38/9.13 (46) 25.38/9.13 Obligation: 25.38/9.13 Q DP problem: 25.38/9.13 The TRS P consists of the following rules: 25.38/9.13 25.38/9.13 new_primMinusNat(Succ(xuu20900), Succ(xuu20800)) -> new_primMinusNat(xuu20900, xuu20800) 25.38/9.13 25.38/9.13 R is empty. 25.38/9.13 Q is empty. 25.38/9.13 We have to consider all minimal (P,Q,R)-chains. 25.38/9.13 ---------------------------------------- 25.38/9.13 25.38/9.13 (47) QDPSizeChangeProof (EQUIVALENT) 25.38/9.13 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 25.38/9.13 25.38/9.13 From the DPs we obtained the following set of size-change graphs: 25.38/9.13 *new_primMinusNat(Succ(xuu20900), Succ(xuu20800)) -> new_primMinusNat(xuu20900, xuu20800) 25.38/9.13 The graph contains the following edges 1 > 1, 2 > 2 25.38/9.13 25.38/9.13 25.38/9.13 ---------------------------------------- 25.38/9.13 25.38/9.13 (48) 25.38/9.13 YES 25.38/9.13 25.38/9.13 ---------------------------------------- 25.38/9.13 25.38/9.13 (49) 25.38/9.13 Obligation: 25.38/9.13 Q DP problem: 25.38/9.13 The TRS P consists of the following rules: 25.38/9.13 25.38/9.13 new_primPlusNat(Succ(xuu20900), Succ(xuu20800)) -> new_primPlusNat(xuu20900, xuu20800) 25.38/9.13 25.38/9.13 R is empty. 25.38/9.13 Q is empty. 25.38/9.13 We have to consider all minimal (P,Q,R)-chains. 25.38/9.13 ---------------------------------------- 25.38/9.13 25.38/9.13 (50) QDPSizeChangeProof (EQUIVALENT) 25.38/9.13 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 25.38/9.13 25.38/9.13 From the DPs we obtained the following set of size-change graphs: 25.38/9.13 *new_primPlusNat(Succ(xuu20900), Succ(xuu20800)) -> new_primPlusNat(xuu20900, xuu20800) 25.38/9.13 The graph contains the following edges 1 > 1, 2 > 2 25.38/9.13 25.38/9.13 25.38/9.13 ---------------------------------------- 25.38/9.13 25.38/9.13 (51) 25.38/9.13 YES 25.48/9.17 EOF