/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 4 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] (22) YES (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] (25) YES (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] (31) YES (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES (38) QDP (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] (40) YES (41) QDP (42) QDPSizeChangeProof [EQUIVALENT, 88 ms] (43) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C (\old new ->new) fm key_elt_pairs; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; 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 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { 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); 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); 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; 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); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\oldnew->new" is transformed to "addListToFM0 old new = new; " The following Lambda expression "\keyeltrest->(key,elt) : rest" is transformed to "fmToList0 key elt rest = (key,elt) : rest; " ---------------------------------------- (2) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; 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 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = case fm_R of { Branch _ _ _ fm_rl fm_rr | sizeFM fm_rl < 2 * sizeFM fm_rr -> single_L fm_L fm_R | otherwise -> double_L fm_L fm_R; } | size_l > sIZE_RATIO * size_r = case fm_L of { Branch _ _ _ fm_ll fm_lr | sizeFM fm_lr < 2 * sizeFM fm_ll -> single_R fm_L fm_R | otherwise -> double_R fm_L fm_R; } | otherwise = mkBranch 2 key elt fm_L fm_R where { 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); 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); 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; 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); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = case fm_l of { EmptyFM-> True; Branch left_key _ _ _ _-> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; } ; left_size = sizeFM fm_l; right_ok = case fm_r of { EmptyFM-> True; Branch right_key _ _ _ _-> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; } ; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case fm_r of { EmptyFM -> True; Branch right_key _ _ _ _ -> let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key} " is transformed to "right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; " The following Case expression "case fm_l of { EmptyFM -> True; Branch left_key _ _ _ _ -> let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key} " is transformed to "left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; " The following Case expression "case fm_R of { Branch _ _ _ fm_rl fm_rr |sizeFM fm_rl < 2 * sizeFM fm_rrsingle_L fm_L fm_R|otherwisedouble_L fm_L fm_R} " is transformed to "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; " The following Case expression "case fm_L of { Branch _ _ _ fm_ll fm_lr |sizeFM fm_lr < 2 * sizeFM fm_llsingle_R fm_L fm_R|otherwisedouble_R fm_L fm_R} " is transformed to "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; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; 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 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { 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); 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); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; 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; 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); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = unitFM key elt; 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 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt _ _ EmptyFM) = (key,elt); findMax (Branch key elt _ _ fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt _ EmptyFM _) = (key,elt); findMin (Branch key elt _ fm_l _) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { 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); 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); mkBalBranch0 fm_L fm_R (Branch _ _ _ fm_rl fm_rr) | sizeFM fm_rl < 2 * sizeFM fm_rr = single_L fm_L fm_R | otherwise = double_L fm_L fm_R; mkBalBranch1 fm_L fm_R (Branch _ _ _ fm_ll fm_lr) | sizeFM fm_lr < 2 * sizeFM fm_ll = single_R fm_L fm_R | otherwise = double_R fm_L fm_R; 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; 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); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key _ _ _ _) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key _ _ _ _) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = unitFM key elt; 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 | new_key > key = mkBalBranch key elt fm_l (addToFM_C combiner fm_r new_key new_elt) | otherwise = Branch new_key (combiner elt new_elt) size fm_l fm_r; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R | size_l + size_r < 2 = mkBranch 1 key elt fm_L fm_R | size_r > sIZE_RATIO * size_l = mkBalBranch0 fm_L fm_R fm_R | size_l > sIZE_RATIO * size_r = mkBalBranch1 fm_L fm_R fm_L | otherwise = mkBranch 2 key elt fm_L fm_R where { 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); 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); 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 | otherwise = double_L fm_L fm_R; 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 | otherwise = double_R fm_L fm_R; 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; 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); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal0 x True = `negate` x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; " "gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd wuw wux = gcd3 wuw wux; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; ; gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; } ; " "gcd1 True wuw wux = error []; gcd1 wuy wuz wvu = gcd0 wuz wvu; " "gcd2 True wuw wux = gcd1 (wux == 0) wuw wux; gcd2 wvv wvw wvx = gcd0 wvw wvx; " "gcd3 wuw wux = gcd2 (wuw == 0) wuw wux; gcd3 wvy wvz = gcd0 wvy wvz; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "addToFM_C combiner EmptyFM key elt = unitFM key elt; 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; " is transformed to "addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 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; " "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; 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); " "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); 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; " "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; " "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); " "addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; " The following Function with conditions "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; " is transformed to "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); " "mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; " "mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 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; " "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); " The following Function with conditions "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; " is transformed to "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); " "mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; " "mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 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; " "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); " The following Function with conditions "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 { 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); ; 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); ; 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; ; 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; ; 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; ; 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); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " is transformed to "mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; " "mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 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); ; 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); ; 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); ; mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 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; ; 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); ; 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); ; mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 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; ; 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); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; 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; ; 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); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } ; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord b => FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; }; addToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> a -> b -> FiniteMap a b; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 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; 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; 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); 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; 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; 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); 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); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap b a; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap a b -> (a,b); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord b => [(b,a)] -> FiniteMap b a; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 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); 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); 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); mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 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; 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); 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); mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 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; 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); mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); 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; 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); size_l = sizeFM fm_L; size_r = sizeFM fm_R; }; mkBranch :: Ord b => Int -> b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBranch which key elt fm_l fm_r = let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; left_ok = left_ok0 fm_l key fm_l; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; left_size = sizeFM fm_l; right_ok = right_ok0 fm_r key fm_r; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; right_size = sizeFM fm_r; unbox :: Int -> Int; unbox x = x; }; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vzw = gcd'2 x vzw; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vzw = x; gcd'1 vzx vzy vzz = gcd'0 vzy vzz; ; gcd'2 x vzw = gcd'1 (vzw == 0) x vzw; gcd'2 wuu wuv = gcd'0 wuu wuv; } " are unpacked to the following functions on top level "gcd0Gcd'2 x vzw = gcd0Gcd'1 (vzw == 0) x vzw; gcd0Gcd'2 wuu wuv = gcd0Gcd'0 wuu wuv; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'1 True x vzw = x; gcd0Gcd'1 vzx vzy vzz = gcd0Gcd'0 vzy vzz; " "gcd0Gcd' x vzw = gcd0Gcd'2 x vzw; gcd0Gcd' x y = gcd0Gcd'0 x y; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce0 wxw wxx x y True = x `quot` reduce2D wxw wxx :% (y `quot` reduce2D wxw wxx); " "reduce2Reduce1 wxw wxx x y True = error []; reduce2Reduce1 wxw wxx x y False = reduce2Reduce0 wxw wxx x y otherwise; " "reduce2D wxw wxx = gcd wxw wxx; " The bindings of the following Let/Where expression "mkBalBranch5 key elt fm_L fm_R (size_l + size_r < 2) where { 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); ; 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); ; 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); ; mkBalBranch00 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = double_L fm_L fm_R; ; mkBalBranch01 fm_L fm_R vxv vxw vxx fm_rl fm_rr True = single_L fm_L fm_R; 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; ; 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); ; 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); ; mkBalBranch10 fm_L fm_R vww vwx vwy fm_ll fm_lr True = double_R fm_L fm_R; ; mkBalBranch11 fm_L fm_R vww vwx vwy fm_ll fm_lr True = single_R fm_L fm_R; 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; ; 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); ; mkBalBranch2 key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; ; mkBalBranch3 key elt fm_L fm_R True = mkBalBranch1 fm_L fm_R fm_L; mkBalBranch3 key elt fm_L fm_R False = mkBalBranch2 key elt fm_L fm_R otherwise; ; mkBalBranch4 key elt fm_L fm_R True = mkBalBranch0 fm_L fm_R fm_R; mkBalBranch4 key elt fm_L fm_R False = mkBalBranch3 key elt fm_L fm_R (size_l > sIZE_RATIO * size_r); ; mkBalBranch5 key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; mkBalBranch5 key elt fm_L fm_R False = mkBalBranch4 key elt fm_L fm_R (size_r > sIZE_RATIO * size_l); ; 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; ; 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); ; size_l = sizeFM fm_L; ; size_r = sizeFM fm_R; } " are unpacked to the following functions on top level "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); " "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); " "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; " "mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; " "mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; " "mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wxy; " "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; " "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; 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; " "mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 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); " "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); " "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; " "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; 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; " "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); " "mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; " "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); " "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); " "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); " "mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 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); " The bindings of the following Let/Where expression "foldl add fm key_elt_pairs where { add fmap (key,elt) = addToFM_C combiner fmap key elt; } " are unpacked to the following functions on top level "addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result where { balance_ok = True; ; left_ok = left_ok0 fm_l key fm_l; ; left_ok0 fm_l key EmptyFM = True; left_ok0 fm_l key (Branch left_key zz vuu vuv vuw) = let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key; ; left_size = sizeFM fm_l; ; right_ok = right_ok0 fm_r key fm_r; ; right_ok0 fm_r key EmptyFM = True; right_ok0 fm_r key (Branch right_key vux vuy vuz vvu) = let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key; ; right_size = sizeFM fm_r; ; unbox x = x; } " are unpacked to the following functions on top level "mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; " "mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; " "mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; " "mkBranchLeft_size wyx wyy wyz = sizeFM wyz; " "mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; " "mkBranchBalance_ok wyx wyy wyz = True; " "mkBranchRight_size wyx wyy wyz = sizeFM wyx; " "mkBranchUnbox wyx wyy wyz x = x; " The bindings of the following Let/Where expression "let { result = Branch key elt (unbox (1 + left_size + right_size)) fm_l fm_r; } in result" are unpacked to the following functions on top level "mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; " The bindings of the following Let/Where expression "let { smallest_right_key = fst (findMin fm_r); } in key < smallest_right_key" are unpacked to the following functions on top level "mkBranchRight_ok0Smallest_right_key wzy = fst (findMin wzy); " The bindings of the following Let/Where expression "let { biggest_left_key = fst (findMax fm_l); } in biggest_left_key < key" are unpacked to the following functions on top level "mkBranchLeft_ok0Biggest_left_key wzz = fst (findMax wzz); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord a => (b -> b -> b) -> FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 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; 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; 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); 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; 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; 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); 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); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap b a -> (b,a); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord b => b -> a -> FiniteMap b a -> FiniteMap b a -> FiniteMap b a; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 fm_R key elt fm_L key elt fm_L fm_R (mkBalBranch6Size_l fm_R key elt fm_L + mkBalBranch6Size_r fm_R key elt fm_L < 2); 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); 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); 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); 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; 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; 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; 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); 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); 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; 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; 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; 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); mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 2 key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 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); mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch 1 key elt fm_L fm_R; 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); 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; 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); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wxy; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key wzz = fst (findMax wzz); mkBranchLeft_size wyx wyy wyz = sizeFM wyz; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (1 + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key wzy = fst (findMin wzy); mkBranchRight_size wyx wyy wyz = sizeFM wyx; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = 5; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt 1 emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } addListToFM :: Ord a => FiniteMap a b -> [(a,b)] -> FiniteMap a b; addListToFM fm key_elt_pairs = addListToFM_C addListToFM0 fm key_elt_pairs; addListToFM0 old new = new; addListToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> [(b,a)] -> FiniteMap b a; addListToFM_C combiner fm key_elt_pairs = foldl (addListToFM_CAdd combiner) fm key_elt_pairs; addListToFM_CAdd wyw fmap (key,elt) = addToFM_C wyw fmap key elt; addToFM_C :: Ord b => (a -> a -> a) -> FiniteMap b a -> b -> a -> FiniteMap b a; addToFM_C combiner EmptyFM key elt = addToFM_C4 combiner EmptyFM key elt; 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; 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; 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); 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; 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; 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); 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); addToFM_C4 combiner EmptyFM key elt = unitFM key elt; addToFM_C4 www wwx wwy wwz = addToFM_C3 www wwx wwy wwz; emptyFM :: FiniteMap a b; emptyFM = EmptyFM; findMax :: FiniteMap a b -> (a,b); findMax (Branch key elt vvv vvw EmptyFM) = (key,elt); findMax (Branch key elt vvx vvy fm_r) = findMax fm_r; findMin :: FiniteMap b a -> (b,a); findMin (Branch key elt vyy EmptyFM vyz) = (key,elt); findMin (Branch key elt vzu fm_l vzv) = findMin fm_l; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt vxz fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; listToFM :: Ord a => [(a,b)] -> FiniteMap a b; listToFM = addListToFM emptyFM; mkBalBranch :: Ord a => a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBalBranch key elt fm_L fm_R = mkBalBranch6 key elt fm_L fm_R; mkBalBranch6 key elt fm_L fm_R = mkBalBranch6MkBalBranch5 fm_R key elt fm_L key elt fm_L fm_R (mkBalBranch6Size_l fm_R key elt fm_L + mkBalBranch6Size_r fm_R key elt fm_L < Pos (Succ (Succ Zero))); 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); 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); 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); 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; 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; 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; 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); 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); 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; 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; 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; 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); mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ (Succ Zero))) key elt fm_L fm_R; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch1 wxy wxz wyu wyv fm_L fm_R fm_L; mkBalBranch6MkBalBranch3 wxy wxz wyu wyv key elt fm_L fm_R False = mkBalBranch6MkBalBranch2 wxy wxz wyu wyv key elt fm_L fm_R otherwise; mkBalBranch6MkBalBranch4 wxy wxz wyu wyv key elt fm_L fm_R True = mkBalBranch6MkBalBranch0 wxy wxz wyu wyv fm_L fm_R fm_R; 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); mkBalBranch6MkBalBranch5 wxy wxz wyu wyv key elt fm_L fm_R True = mkBranch (Pos (Succ Zero)) key elt fm_L fm_R; 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); 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; 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); mkBalBranch6Size_l wxy wxz wyu wyv = sizeFM wyv; mkBalBranch6Size_r wxy wxz wyu wyv = sizeFM wxy; mkBranch :: Ord a => Int -> a -> b -> FiniteMap a b -> FiniteMap a b -> FiniteMap a b; mkBranch which key elt fm_l fm_r = mkBranchResult key elt fm_r fm_l; mkBranchBalance_ok wyx wyy wyz = True; mkBranchLeft_ok wyx wyy wyz = mkBranchLeft_ok0 wyx wyy wyz wyz wyy wyz; mkBranchLeft_ok0 wyx wyy wyz fm_l key EmptyFM = True; mkBranchLeft_ok0 wyx wyy wyz fm_l key (Branch left_key zz vuu vuv vuw) = mkBranchLeft_ok0Biggest_left_key fm_l < key; mkBranchLeft_ok0Biggest_left_key wzz = fst (findMax wzz); mkBranchLeft_size wyx wyy wyz = sizeFM wyz; mkBranchResult wzu wzv wzw wzx = Branch wzu wzv (mkBranchUnbox wzw wzu wzx (Pos (Succ Zero) + mkBranchLeft_size wzw wzu wzx + mkBranchRight_size wzw wzu wzx)) wzx wzw; mkBranchRight_ok wyx wyy wyz = mkBranchRight_ok0 wyx wyy wyz wyx wyy wyx; mkBranchRight_ok0 wyx wyy wyz fm_r key EmptyFM = True; mkBranchRight_ok0 wyx wyy wyz fm_r key (Branch right_key vux vuy vuz vvu) = key < mkBranchRight_ok0Smallest_right_key fm_r; mkBranchRight_ok0Smallest_right_key wzy = fst (findMin wzy); mkBranchRight_size wyx wyy wyz = sizeFM wyx; mkBranchUnbox :: Ord a => -> (FiniteMap a b) ( -> a ( -> (FiniteMap a b) (Int -> Int))); mkBranchUnbox wyx wyy wyz x = x; sIZE_RATIO :: Int; sIZE_RATIO = Pos (Succ (Succ (Succ (Succ (Succ Zero))))); sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch vyu vyv size vyw vyx) = size; unitFM :: a -> b -> FiniteMap a b; unitFM key elt = Branch key elt (Pos (Succ Zero)) emptyFM emptyFM; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (15) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="FiniteMap.listToFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.listToFM xuu3",fontsize=16,color="black",shape="triangle"];3 -> 4[label="",style="solid", color="black", weight=3]; 4[label="FiniteMap.addListToFM FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="FiniteMap.addListToFM_C FiniteMap.addListToFM0 FiniteMap.emptyFM xuu3",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6 -> 20[label="",style="dashed", color="red", weight=0]; 6[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) FiniteMap.emptyFM xuu3",fontsize=16,color="magenta"];6 -> 21[label="",style="dashed", color="magenta", weight=3]; 6 -> 22[label="",style="dashed", color="magenta", weight=3]; 21[label="xuu3",fontsize=16,color="green",shape="box"];22[label="FiniteMap.emptyFM",fontsize=16,color="black",shape="triangle"];22 -> 27[label="",style="solid", color="black", weight=3]; 20[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 xuu311",fontsize=16,color="burlywood",shape="triangle"];3176[label="xuu311/xuu3110 : xuu3111",fontsize=10,color="white",style="solid",shape="box"];20 -> 3176[label="",style="solid", color="burlywood", weight=9]; 3176 -> 28[label="",style="solid", color="burlywood", weight=3]; 3177[label="xuu311/[]",fontsize=10,color="white",style="solid",shape="box"];20 -> 3177[label="",style="solid", color="burlywood", weight=9]; 3177 -> 29[label="",style="solid", color="burlywood", weight=3]; 27[label="FiniteMap.EmptyFM",fontsize=16,color="green",shape="box"];28[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 (xuu3110 : xuu3111)",fontsize=16,color="black",shape="box"];28 -> 30[label="",style="solid", color="black", weight=3]; 29[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) xuu6 []",fontsize=16,color="black",shape="box"];29 -> 31[label="",style="solid", color="black", weight=3]; 30 -> 20[label="",style="dashed", color="red", weight=0]; 30[label="foldl (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0) (FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110) xuu3111",fontsize=16,color="magenta"];30 -> 32[label="",style="dashed", color="magenta", weight=3]; 30 -> 33[label="",style="dashed", color="magenta", weight=3]; 31[label="xuu6",fontsize=16,color="green",shape="box"];32[label="xuu3111",fontsize=16,color="green",shape="box"];33[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 xuu3110",fontsize=16,color="burlywood",shape="box"];3178[label="xuu3110/(xuu31100,xuu31101)",fontsize=10,color="white",style="solid",shape="box"];33 -> 3178[label="",style="solid", color="burlywood", weight=9]; 3178 -> 34[label="",style="solid", color="burlywood", weight=3]; 34[label="FiniteMap.addListToFM_CAdd FiniteMap.addListToFM0 xuu6 (xuu31100,xuu31101)",fontsize=16,color="black",shape="box"];34 -> 35[label="",style="solid", color="black", weight=3]; 35[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu6 xuu31100 xuu31101",fontsize=16,color="burlywood",shape="triangle"];3179[label="xuu6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];35 -> 3179[label="",style="solid", color="burlywood", weight=9]; 3179 -> 36[label="",style="solid", color="burlywood", weight=3]; 3180[label="xuu6/FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64",fontsize=10,color="white",style="solid",shape="box"];35 -> 3180[label="",style="solid", color="burlywood", weight=9]; 3180 -> 37[label="",style="solid", color="burlywood", weight=3]; 36[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];36 -> 38[label="",style="solid", color="black", weight=3]; 37[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];37 -> 39[label="",style="solid", color="black", weight=3]; 38[label="FiniteMap.addToFM_C4 FiniteMap.addListToFM0 FiniteMap.EmptyFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];38 -> 40[label="",style="solid", color="black", weight=3]; 39[label="FiniteMap.addToFM_C3 FiniteMap.addListToFM0 (FiniteMap.Branch xuu60 xuu61 xuu62 xuu63 xuu64) xuu31100 xuu31101",fontsize=16,color="black",shape="box"];39 -> 41[label="",style="solid", color="black", weight=3]; 40[label="FiniteMap.unitFM xuu31100 xuu31101",fontsize=16,color="black",shape="box"];40 -> 42[label="",style="solid", color="black", weight=3]; 41 -> 43[label="",style="dashed", color="red", weight=0]; 41[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu60 xuu61 xuu62 xuu63 xuu64 xuu31100 xuu31101 (xuu31100 < xuu60)",fontsize=16,color="magenta"];41 -> 44[label="",style="dashed", color="magenta", weight=3]; 41 -> 45[label="",style="dashed", color="magenta", weight=3]; 41 -> 46[label="",style="dashed", color="magenta", weight=3]; 41 -> 47[label="",style="dashed", color="magenta", weight=3]; 41 -> 48[label="",style="dashed", color="magenta", weight=3]; 41 -> 49[label="",style="dashed", color="magenta", weight=3]; 41 -> 50[label="",style="dashed", color="magenta", weight=3]; 41 -> 51[label="",style="dashed", color="magenta", weight=3]; 42[label="FiniteMap.Branch xuu31100 xuu31101 (Pos (Succ Zero)) FiniteMap.emptyFM FiniteMap.emptyFM",fontsize=16,color="green",shape="box"];42 -> 52[label="",style="dashed", color="green", weight=3]; 42 -> 53[label="",style="dashed", color="green", weight=3]; 44[label="xuu31100 < xuu60",fontsize=16,color="blue",shape="box"];3181[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3181[label="",style="solid", color="blue", weight=9]; 3181 -> 54[label="",style="solid", color="blue", weight=3]; 3182[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3182[label="",style="solid", color="blue", weight=9]; 3182 -> 55[label="",style="solid", color="blue", weight=3]; 3183[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3183[label="",style="solid", color="blue", weight=9]; 3183 -> 56[label="",style="solid", color="blue", weight=3]; 3184[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3184[label="",style="solid", color="blue", weight=9]; 3184 -> 57[label="",style="solid", color="blue", weight=3]; 3185[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3185[label="",style="solid", color="blue", weight=9]; 3185 -> 58[label="",style="solid", color="blue", weight=3]; 3186[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3186[label="",style="solid", color="blue", weight=9]; 3186 -> 59[label="",style="solid", color="blue", weight=3]; 3187[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3187[label="",style="solid", color="blue", weight=9]; 3187 -> 60[label="",style="solid", color="blue", weight=3]; 3188[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3188[label="",style="solid", color="blue", weight=9]; 3188 -> 61[label="",style="solid", color="blue", weight=3]; 3189[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3189[label="",style="solid", color="blue", weight=9]; 3189 -> 62[label="",style="solid", color="blue", weight=3]; 3190[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3190[label="",style="solid", color="blue", weight=9]; 3190 -> 63[label="",style="solid", color="blue", weight=3]; 3191[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3191[label="",style="solid", color="blue", weight=9]; 3191 -> 64[label="",style="solid", color="blue", weight=3]; 3192[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3192[label="",style="solid", color="blue", weight=9]; 3192 -> 65[label="",style="solid", color="blue", weight=3]; 3193[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3193[label="",style="solid", color="blue", weight=9]; 3193 -> 66[label="",style="solid", color="blue", weight=3]; 3194[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];44 -> 3194[label="",style="solid", color="blue", weight=9]; 3194 -> 67[label="",style="solid", color="blue", weight=3]; 45[label="xuu60",fontsize=16,color="green",shape="box"];46[label="xuu61",fontsize=16,color="green",shape="box"];47[label="xuu31101",fontsize=16,color="green",shape="box"];48[label="xuu64",fontsize=16,color="green",shape="box"];49[label="xuu31100",fontsize=16,color="green",shape="box"];50[label="xuu63",fontsize=16,color="green",shape="box"];51[label="xuu62",fontsize=16,color="green",shape="box"];43[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu17 xuu18 xuu19 xuu20 xuu21 xuu22 xuu23 xuu24",fontsize=16,color="burlywood",shape="triangle"];3195[label="xuu24/False",fontsize=10,color="white",style="solid",shape="box"];43 -> 3195[label="",style="solid", color="burlywood", weight=9]; 3195 -> 68[label="",style="solid", color="burlywood", weight=3]; 3196[label="xuu24/True",fontsize=10,color="white",style="solid",shape="box"];43 -> 3196[label="",style="solid", color="burlywood", weight=9]; 3196 -> 69[label="",style="solid", color="burlywood", weight=3]; 52 -> 22[label="",style="dashed", color="red", weight=0]; 52[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];53 -> 22[label="",style="dashed", color="red", weight=0]; 53[label="FiniteMap.emptyFM",fontsize=16,color="magenta"];54[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];54 -> 70[label="",style="solid", color="black", weight=3]; 55[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];55 -> 71[label="",style="solid", color="black", weight=3]; 56[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];56 -> 72[label="",style="solid", color="black", weight=3]; 57[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];57 -> 73[label="",style="solid", color="black", weight=3]; 58[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];58 -> 74[label="",style="solid", color="black", weight=3]; 59[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];59 -> 75[label="",style="solid", color="black", weight=3]; 60[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];60 -> 76[label="",style="solid", color="black", weight=3]; 61[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];61 -> 77[label="",style="solid", color="black", weight=3]; 62[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];62 -> 78[label="",style="solid", color="black", weight=3]; 63[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];63 -> 79[label="",style="solid", color="black", weight=3]; 64[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];64 -> 80[label="",style="solid", color="black", weight=3]; 65[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];65 -> 81[label="",style="solid", color="black", weight=3]; 66[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];66 -> 82[label="",style="solid", color="black", weight=3]; 67[label="xuu31100 < xuu60",fontsize=16,color="black",shape="triangle"];67 -> 83[label="",style="solid", color="black", weight=3]; 68[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu17 xuu18 xuu19 xuu20 xuu21 xuu22 xuu23 False",fontsize=16,color="black",shape="box"];68 -> 84[label="",style="solid", color="black", weight=3]; 69[label="FiniteMap.addToFM_C2 FiniteMap.addListToFM0 xuu17 xuu18 xuu19 xuu20 xuu21 xuu22 xuu23 True",fontsize=16,color="black",shape="box"];69 -> 85[label="",style="solid", color="black", weight=3]; 70 -> 236[label="",style="dashed", color="red", weight=0]; 70[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];70 -> 237[label="",style="dashed", color="magenta", weight=3]; 71 -> 236[label="",style="dashed", color="red", weight=0]; 71[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];71 -> 238[label="",style="dashed", color="magenta", weight=3]; 72 -> 236[label="",style="dashed", color="red", weight=0]; 72[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];72 -> 239[label="",style="dashed", color="magenta", weight=3]; 73 -> 236[label="",style="dashed", color="red", weight=0]; 73[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];73 -> 240[label="",style="dashed", color="magenta", weight=3]; 74 -> 236[label="",style="dashed", color="red", weight=0]; 74[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];74 -> 241[label="",style="dashed", color="magenta", weight=3]; 75 -> 236[label="",style="dashed", color="red", weight=0]; 75[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];75 -> 242[label="",style="dashed", color="magenta", weight=3]; 76 -> 236[label="",style="dashed", color="red", weight=0]; 76[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];76 -> 243[label="",style="dashed", color="magenta", weight=3]; 77 -> 236[label="",style="dashed", color="red", weight=0]; 77[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];77 -> 244[label="",style="dashed", color="magenta", weight=3]; 78 -> 236[label="",style="dashed", color="red", weight=0]; 78[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];78 -> 245[label="",style="dashed", color="magenta", weight=3]; 79 -> 236[label="",style="dashed", color="red", weight=0]; 79[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];79 -> 246[label="",style="dashed", color="magenta", weight=3]; 80 -> 236[label="",style="dashed", color="red", weight=0]; 80[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];80 -> 247[label="",style="dashed", color="magenta", weight=3]; 81 -> 236[label="",style="dashed", color="red", weight=0]; 81[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];81 -> 248[label="",style="dashed", color="magenta", weight=3]; 82 -> 236[label="",style="dashed", color="red", weight=0]; 82[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];82 -> 249[label="",style="dashed", color="magenta", weight=3]; 83 -> 236[label="",style="dashed", color="red", weight=0]; 83[label="compare xuu31100 xuu60 == LT",fontsize=16,color="magenta"];83 -> 250[label="",style="dashed", color="magenta", weight=3]; 84 -> 101[label="",style="dashed", color="red", weight=0]; 84[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 xuu17 xuu18 xuu19 xuu20 xuu21 xuu22 xuu23 (xuu22 > xuu17)",fontsize=16,color="magenta"];84 -> 102[label="",style="dashed", color="magenta", weight=3]; 84 -> 103[label="",style="dashed", color="magenta", weight=3]; 84 -> 104[label="",style="dashed", color="magenta", weight=3]; 84 -> 105[label="",style="dashed", color="magenta", weight=3]; 84 -> 106[label="",style="dashed", color="magenta", weight=3]; 84 -> 107[label="",style="dashed", color="magenta", weight=3]; 84 -> 108[label="",style="dashed", color="magenta", weight=3]; 84 -> 109[label="",style="dashed", color="magenta", weight=3]; 85 -> 110[label="",style="dashed", color="red", weight=0]; 85[label="FiniteMap.mkBalBranch xuu17 xuu18 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 xuu22 xuu23) xuu21",fontsize=16,color="magenta"];85 -> 111[label="",style="dashed", color="magenta", weight=3]; 237[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];237 -> 276[label="",style="solid", color="black", weight=3]; 236[label="xuu45 == LT",fontsize=16,color="burlywood",shape="triangle"];3197[label="xuu45/LT",fontsize=10,color="white",style="solid",shape="box"];236 -> 3197[label="",style="solid", color="burlywood", weight=9]; 3197 -> 277[label="",style="solid", color="burlywood", weight=3]; 3198[label="xuu45/EQ",fontsize=10,color="white",style="solid",shape="box"];236 -> 3198[label="",style="solid", color="burlywood", weight=9]; 3198 -> 278[label="",style="solid", color="burlywood", weight=3]; 3199[label="xuu45/GT",fontsize=10,color="white",style="solid",shape="box"];236 -> 3199[label="",style="solid", color="burlywood", weight=9]; 3199 -> 279[label="",style="solid", color="burlywood", weight=3]; 238[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];238 -> 280[label="",style="solid", color="black", weight=3]; 239[label="compare xuu31100 xuu60",fontsize=16,color="burlywood",shape="triangle"];3200[label="xuu31100/xuu311000 : xuu311001",fontsize=10,color="white",style="solid",shape="box"];239 -> 3200[label="",style="solid", color="burlywood", weight=9]; 3200 -> 281[label="",style="solid", color="burlywood", weight=3]; 3201[label="xuu31100/[]",fontsize=10,color="white",style="solid",shape="box"];239 -> 3201[label="",style="solid", color="burlywood", weight=9]; 3201 -> 282[label="",style="solid", color="burlywood", weight=3]; 240[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];240 -> 283[label="",style="solid", color="black", weight=3]; 241[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];241 -> 284[label="",style="solid", color="black", weight=3]; 242[label="compare xuu31100 xuu60",fontsize=16,color="burlywood",shape="triangle"];3202[label="xuu31100/Integer xuu311000",fontsize=10,color="white",style="solid",shape="box"];242 -> 3202[label="",style="solid", color="burlywood", weight=9]; 3202 -> 285[label="",style="solid", color="burlywood", weight=3]; 243[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];243 -> 286[label="",style="solid", color="black", weight=3]; 244[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];244 -> 287[label="",style="solid", color="black", weight=3]; 245[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];245 -> 288[label="",style="solid", color="black", weight=3]; 246[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];246 -> 289[label="",style="solid", color="black", weight=3]; 247[label="compare xuu31100 xuu60",fontsize=16,color="burlywood",shape="triangle"];3203[label="xuu31100/()",fontsize=10,color="white",style="solid",shape="box"];247 -> 3203[label="",style="solid", color="burlywood", weight=9]; 3203 -> 290[label="",style="solid", color="burlywood", weight=3]; 248[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];248 -> 291[label="",style="solid", color="black", weight=3]; 249[label="compare xuu31100 xuu60",fontsize=16,color="black",shape="triangle"];249 -> 292[label="",style="solid", color="black", weight=3]; 250[label="compare xuu31100 xuu60",fontsize=16,color="burlywood",shape="triangle"];3204[label="xuu31100/xuu311000 :% xuu311001",fontsize=10,color="white",style="solid",shape="box"];250 -> 3204[label="",style="solid", color="burlywood", weight=9]; 3204 -> 293[label="",style="solid", color="burlywood", weight=3]; 102[label="xuu17",fontsize=16,color="green",shape="box"];103[label="xuu23",fontsize=16,color="green",shape="box"];104[label="xuu20",fontsize=16,color="green",shape="box"];105[label="xuu22",fontsize=16,color="green",shape="box"];106[label="xuu21",fontsize=16,color="green",shape="box"];107[label="xuu18",fontsize=16,color="green",shape="box"];108[label="xuu19",fontsize=16,color="green",shape="box"];109[label="xuu22 > xuu17",fontsize=16,color="blue",shape="box"];3205[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3205[label="",style="solid", color="blue", weight=9]; 3205 -> 130[label="",style="solid", color="blue", weight=3]; 3206[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3206[label="",style="solid", color="blue", weight=9]; 3206 -> 131[label="",style="solid", color="blue", weight=3]; 3207[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3207[label="",style="solid", color="blue", weight=9]; 3207 -> 132[label="",style="solid", color="blue", weight=3]; 3208[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3208[label="",style="solid", color="blue", weight=9]; 3208 -> 133[label="",style="solid", color="blue", weight=3]; 3209[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3209[label="",style="solid", color="blue", weight=9]; 3209 -> 134[label="",style="solid", color="blue", weight=3]; 3210[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3210[label="",style="solid", color="blue", weight=9]; 3210 -> 135[label="",style="solid", color="blue", weight=3]; 3211[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3211[label="",style="solid", color="blue", weight=9]; 3211 -> 136[label="",style="solid", color="blue", weight=3]; 3212[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3212[label="",style="solid", color="blue", weight=9]; 3212 -> 137[label="",style="solid", color="blue", weight=3]; 3213[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3213[label="",style="solid", color="blue", weight=9]; 3213 -> 138[label="",style="solid", color="blue", weight=3]; 3214[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3214[label="",style="solid", color="blue", weight=9]; 3214 -> 139[label="",style="solid", color="blue", weight=3]; 3215[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3215[label="",style="solid", color="blue", weight=9]; 3215 -> 140[label="",style="solid", color="blue", weight=3]; 3216[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3216[label="",style="solid", color="blue", weight=9]; 3216 -> 141[label="",style="solid", color="blue", weight=3]; 3217[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3217[label="",style="solid", color="blue", weight=9]; 3217 -> 142[label="",style="solid", color="blue", weight=3]; 3218[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];109 -> 3218[label="",style="solid", color="blue", weight=9]; 3218 -> 143[label="",style="solid", color="blue", weight=3]; 101[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 xuu34 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 xuu41",fontsize=16,color="burlywood",shape="triangle"];3219[label="xuu41/False",fontsize=10,color="white",style="solid",shape="box"];101 -> 3219[label="",style="solid", color="burlywood", weight=9]; 3219 -> 144[label="",style="solid", color="burlywood", weight=3]; 3220[label="xuu41/True",fontsize=10,color="white",style="solid",shape="box"];101 -> 3220[label="",style="solid", color="burlywood", weight=9]; 3220 -> 145[label="",style="solid", color="burlywood", weight=3]; 111 -> 35[label="",style="dashed", color="red", weight=0]; 111[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu20 xuu22 xuu23",fontsize=16,color="magenta"];111 -> 146[label="",style="dashed", color="magenta", weight=3]; 111 -> 147[label="",style="dashed", color="magenta", weight=3]; 111 -> 148[label="",style="dashed", color="magenta", weight=3]; 110[label="FiniteMap.mkBalBranch xuu17 xuu18 xuu42 xuu21",fontsize=16,color="black",shape="triangle"];110 -> 149[label="",style="solid", color="black", weight=3]; 276[label="compare3 xuu31100 xuu60",fontsize=16,color="black",shape="box"];276 -> 309[label="",style="solid", color="black", weight=3]; 277[label="LT == LT",fontsize=16,color="black",shape="box"];277 -> 310[label="",style="solid", color="black", weight=3]; 278[label="EQ == LT",fontsize=16,color="black",shape="box"];278 -> 311[label="",style="solid", color="black", weight=3]; 279[label="GT == LT",fontsize=16,color="black",shape="box"];279 -> 312[label="",style="solid", color="black", weight=3]; 280[label="compare3 xuu31100 xuu60",fontsize=16,color="black",shape="box"];280 -> 313[label="",style="solid", color="black", weight=3]; 281[label="compare (xuu311000 : xuu311001) xuu60",fontsize=16,color="burlywood",shape="box"];3221[label="xuu60/xuu600 : xuu601",fontsize=10,color="white",style="solid",shape="box"];281 -> 3221[label="",style="solid", color="burlywood", weight=9]; 3221 -> 314[label="",style="solid", color="burlywood", weight=3]; 3222[label="xuu60/[]",fontsize=10,color="white",style="solid",shape="box"];281 -> 3222[label="",style="solid", color="burlywood", weight=9]; 3222 -> 315[label="",style="solid", color="burlywood", weight=3]; 282[label="compare [] xuu60",fontsize=16,color="burlywood",shape="box"];3223[label="xuu60/xuu600 : xuu601",fontsize=10,color="white",style="solid",shape="box"];282 -> 3223[label="",style="solid", color="burlywood", weight=9]; 3223 -> 316[label="",style="solid", color="burlywood", weight=3]; 3224[label="xuu60/[]",fontsize=10,color="white",style="solid",shape="box"];282 -> 3224[label="",style="solid", color="burlywood", weight=9]; 3224 -> 317[label="",style="solid", color="burlywood", weight=3]; 283[label="compare3 xuu31100 xuu60",fontsize=16,color="black",shape="box"];283 -> 318[label="",style="solid", color="black", weight=3]; 284[label="compare3 xuu31100 xuu60",fontsize=16,color="black",shape="box"];284 -> 319[label="",style="solid", color="black", weight=3]; 285[label="compare (Integer xuu311000) xuu60",fontsize=16,color="burlywood",shape="box"];3225[label="xuu60/Integer xuu600",fontsize=10,color="white",style="solid",shape="box"];285 -> 3225[label="",style="solid", color="burlywood", weight=9]; 3225 -> 320[label="",style="solid", color="burlywood", weight=3]; 286[label="primCmpDouble xuu31100 xuu60",fontsize=16,color="burlywood",shape="box"];3226[label="xuu31100/Double xuu311000 xuu311001",fontsize=10,color="white",style="solid",shape="box"];286 -> 3226[label="",style="solid", color="burlywood", weight=9]; 3226 -> 321[label="",style="solid", color="burlywood", weight=3]; 287[label="primCmpInt xuu31100 xuu60",fontsize=16,color="burlywood",shape="triangle"];3227[label="xuu31100/Pos xuu311000",fontsize=10,color="white",style="solid",shape="box"];287 -> 3227[label="",style="solid", color="burlywood", weight=9]; 3227 -> 322[label="",style="solid", color="burlywood", weight=3]; 3228[label="xuu31100/Neg xuu311000",fontsize=10,color="white",style="solid",shape="box"];287 -> 3228[label="",style="solid", color="burlywood", weight=9]; 3228 -> 323[label="",style="solid", color="burlywood", weight=3]; 288[label="compare3 xuu31100 xuu60",fontsize=16,color="black",shape="box"];288 -> 324[label="",style="solid", color="black", weight=3]; 289[label="primCmpFloat xuu31100 xuu60",fontsize=16,color="burlywood",shape="box"];3229[label="xuu31100/Float xuu311000 xuu311001",fontsize=10,color="white",style="solid",shape="box"];289 -> 3229[label="",style="solid", color="burlywood", weight=9]; 3229 -> 325[label="",style="solid", color="burlywood", weight=3]; 290[label="compare () xuu60",fontsize=16,color="burlywood",shape="box"];3230[label="xuu60/()",fontsize=10,color="white",style="solid",shape="box"];290 -> 3230[label="",style="solid", color="burlywood", weight=9]; 3230 -> 326[label="",style="solid", color="burlywood", weight=3]; 291[label="primCmpChar xuu31100 xuu60",fontsize=16,color="burlywood",shape="box"];3231[label="xuu31100/Char xuu311000",fontsize=10,color="white",style="solid",shape="box"];291 -> 3231[label="",style="solid", color="burlywood", weight=9]; 3231 -> 327[label="",style="solid", color="burlywood", weight=3]; 292[label="compare3 xuu31100 xuu60",fontsize=16,color="black",shape="box"];292 -> 328[label="",style="solid", color="black", weight=3]; 293[label="compare (xuu311000 :% xuu311001) xuu60",fontsize=16,color="burlywood",shape="box"];3232[label="xuu60/xuu600 :% xuu601",fontsize=10,color="white",style="solid",shape="box"];293 -> 3232[label="",style="solid", color="burlywood", weight=9]; 3232 -> 329[label="",style="solid", color="burlywood", weight=3]; 130[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];130 -> 177[label="",style="solid", color="black", weight=3]; 131[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];131 -> 178[label="",style="solid", color="black", weight=3]; 132[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];132 -> 179[label="",style="solid", color="black", weight=3]; 133[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];133 -> 180[label="",style="solid", color="black", weight=3]; 134[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];134 -> 181[label="",style="solid", color="black", weight=3]; 135[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];135 -> 182[label="",style="solid", color="black", weight=3]; 136[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];136 -> 183[label="",style="solid", color="black", weight=3]; 137[label="xuu22 > xuu17",fontsize=16,color="black",shape="triangle"];137 -> 184[label="",style="solid", color="black", weight=3]; 138[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];138 -> 185[label="",style="solid", color="black", weight=3]; 139[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];139 -> 186[label="",style="solid", color="black", weight=3]; 140[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];140 -> 187[label="",style="solid", color="black", weight=3]; 141[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];141 -> 188[label="",style="solid", color="black", weight=3]; 142[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];142 -> 189[label="",style="solid", color="black", weight=3]; 143[label="xuu22 > xuu17",fontsize=16,color="black",shape="box"];143 -> 190[label="",style="solid", color="black", weight=3]; 144[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 xuu34 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 False",fontsize=16,color="black",shape="box"];144 -> 191[label="",style="solid", color="black", weight=3]; 145[label="FiniteMap.addToFM_C1 FiniteMap.addListToFM0 xuu34 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 True",fontsize=16,color="black",shape="box"];145 -> 192[label="",style="solid", color="black", weight=3]; 146[label="xuu22",fontsize=16,color="green",shape="box"];147[label="xuu23",fontsize=16,color="green",shape="box"];148[label="xuu20",fontsize=16,color="green",shape="box"];149[label="FiniteMap.mkBalBranch6 xuu17 xuu18 xuu42 xuu21",fontsize=16,color="black",shape="box"];149 -> 193[label="",style="solid", color="black", weight=3]; 309[label="compare2 xuu31100 xuu60 (xuu31100 == xuu60)",fontsize=16,color="burlywood",shape="box"];3233[label="xuu31100/False",fontsize=10,color="white",style="solid",shape="box"];309 -> 3233[label="",style="solid", color="burlywood", weight=9]; 3233 -> 337[label="",style="solid", color="burlywood", weight=3]; 3234[label="xuu31100/True",fontsize=10,color="white",style="solid",shape="box"];309 -> 3234[label="",style="solid", color="burlywood", weight=9]; 3234 -> 338[label="",style="solid", color="burlywood", weight=3]; 310[label="True",fontsize=16,color="green",shape="box"];311[label="False",fontsize=16,color="green",shape="box"];312[label="False",fontsize=16,color="green",shape="box"];313[label="compare2 xuu31100 xuu60 (xuu31100 == xuu60)",fontsize=16,color="burlywood",shape="box"];3235[label="xuu31100/(xuu311000,xuu311001)",fontsize=10,color="white",style="solid",shape="box"];313 -> 3235[label="",style="solid", color="burlywood", weight=9]; 3235 -> 339[label="",style="solid", color="burlywood", weight=3]; 314[label="compare (xuu311000 : xuu311001) (xuu600 : xuu601)",fontsize=16,color="black",shape="box"];314 -> 340[label="",style="solid", color="black", weight=3]; 315[label="compare (xuu311000 : xuu311001) []",fontsize=16,color="black",shape="box"];315 -> 341[label="",style="solid", color="black", weight=3]; 316[label="compare [] (xuu600 : xuu601)",fontsize=16,color="black",shape="box"];316 -> 342[label="",style="solid", color="black", weight=3]; 317[label="compare [] []",fontsize=16,color="black",shape="box"];317 -> 343[label="",style="solid", color="black", weight=3]; 318[label="compare2 xuu31100 xuu60 (xuu31100 == xuu60)",fontsize=16,color="burlywood",shape="box"];3236[label="xuu31100/Nothing",fontsize=10,color="white",style="solid",shape="box"];318 -> 3236[label="",style="solid", color="burlywood", weight=9]; 3236 -> 344[label="",style="solid", color="burlywood", weight=3]; 3237[label="xuu31100/Just xuu311000",fontsize=10,color="white",style="solid",shape="box"];318 -> 3237[label="",style="solid", color="burlywood", weight=9]; 3237 -> 345[label="",style="solid", color="burlywood", weight=3]; 319[label="compare2 xuu31100 xuu60 (xuu31100 == xuu60)",fontsize=16,color="burlywood",shape="box"];3238[label="xuu31100/LT",fontsize=10,color="white",style="solid",shape="box"];319 -> 3238[label="",style="solid", color="burlywood", weight=9]; 3238 -> 346[label="",style="solid", color="burlywood", weight=3]; 3239[label="xuu31100/EQ",fontsize=10,color="white",style="solid",shape="box"];319 -> 3239[label="",style="solid", color="burlywood", weight=9]; 3239 -> 347[label="",style="solid", color="burlywood", weight=3]; 3240[label="xuu31100/GT",fontsize=10,color="white",style="solid",shape="box"];319 -> 3240[label="",style="solid", color="burlywood", weight=9]; 3240 -> 348[label="",style="solid", color="burlywood", weight=3]; 320[label="compare (Integer xuu311000) (Integer xuu600)",fontsize=16,color="black",shape="box"];320 -> 349[label="",style="solid", color="black", weight=3]; 321[label="primCmpDouble (Double xuu311000 xuu311001) xuu60",fontsize=16,color="burlywood",shape="box"];3241[label="xuu311001/Pos xuu3110010",fontsize=10,color="white",style="solid",shape="box"];321 -> 3241[label="",style="solid", color="burlywood", weight=9]; 3241 -> 350[label="",style="solid", color="burlywood", weight=3]; 3242[label="xuu311001/Neg xuu3110010",fontsize=10,color="white",style="solid",shape="box"];321 -> 3242[label="",style="solid", color="burlywood", weight=9]; 3242 -> 351[label="",style="solid", color="burlywood", weight=3]; 322[label="primCmpInt (Pos xuu311000) xuu60",fontsize=16,color="burlywood",shape="box"];3243[label="xuu311000/Succ xuu3110000",fontsize=10,color="white",style="solid",shape="box"];322 -> 3243[label="",style="solid", color="burlywood", weight=9]; 3243 -> 352[label="",style="solid", color="burlywood", weight=3]; 3244[label="xuu311000/Zero",fontsize=10,color="white",style="solid",shape="box"];322 -> 3244[label="",style="solid", color="burlywood", weight=9]; 3244 -> 353[label="",style="solid", color="burlywood", weight=3]; 323[label="primCmpInt (Neg xuu311000) xuu60",fontsize=16,color="burlywood",shape="box"];3245[label="xuu311000/Succ xuu3110000",fontsize=10,color="white",style="solid",shape="box"];323 -> 3245[label="",style="solid", color="burlywood", weight=9]; 3245 -> 354[label="",style="solid", color="burlywood", weight=3]; 3246[label="xuu311000/Zero",fontsize=10,color="white",style="solid",shape="box"];323 -> 3246[label="",style="solid", color="burlywood", weight=9]; 3246 -> 355[label="",style="solid", color="burlywood", weight=3]; 324[label="compare2 xuu31100 xuu60 (xuu31100 == xuu60)",fontsize=16,color="burlywood",shape="box"];3247[label="xuu31100/(xuu311000,xuu311001,xuu311002)",fontsize=10,color="white",style="solid",shape="box"];324 -> 3247[label="",style="solid", color="burlywood", weight=9]; 3247 -> 356[label="",style="solid", color="burlywood", weight=3]; 325[label="primCmpFloat (Float xuu311000 xuu311001) xuu60",fontsize=16,color="burlywood",shape="box"];3248[label="xuu311001/Pos xuu3110010",fontsize=10,color="white",style="solid",shape="box"];325 -> 3248[label="",style="solid", color="burlywood", weight=9]; 3248 -> 357[label="",style="solid", color="burlywood", weight=3]; 3249[label="xuu311001/Neg xuu3110010",fontsize=10,color="white",style="solid",shape="box"];325 -> 3249[label="",style="solid", color="burlywood", weight=9]; 3249 -> 358[label="",style="solid", color="burlywood", weight=3]; 326[label="compare () ()",fontsize=16,color="black",shape="box"];326 -> 359[label="",style="solid", color="black", weight=3]; 327[label="primCmpChar (Char xuu311000) xuu60",fontsize=16,color="burlywood",shape="box"];3250[label="xuu60/Char xuu600",fontsize=10,color="white",style="solid",shape="box"];327 -> 3250[label="",style="solid", color="burlywood", weight=9]; 3250 -> 360[label="",style="solid", color="burlywood", weight=3]; 328[label="compare2 xuu31100 xuu60 (xuu31100 == xuu60)",fontsize=16,color="burlywood",shape="box"];3251[label="xuu31100/Left xuu311000",fontsize=10,color="white",style="solid",shape="box"];328 -> 3251[label="",style="solid", color="burlywood", weight=9]; 3251 -> 361[label="",style="solid", color="burlywood", weight=3]; 3252[label="xuu31100/Right xuu311000",fontsize=10,color="white",style="solid",shape="box"];328 -> 3252[label="",style="solid", color="burlywood", weight=9]; 3252 -> 362[label="",style="solid", color="burlywood", weight=3]; 329[label="compare (xuu311000 :% xuu311001) (xuu600 :% xuu601)",fontsize=16,color="black",shape="box"];329 -> 363[label="",style="solid", color="black", weight=3]; 177 -> 294[label="",style="dashed", color="red", weight=0]; 177[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];177 -> 295[label="",style="dashed", color="magenta", weight=3]; 178 -> 294[label="",style="dashed", color="red", weight=0]; 178[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];178 -> 296[label="",style="dashed", color="magenta", weight=3]; 179 -> 294[label="",style="dashed", color="red", weight=0]; 179[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];179 -> 297[label="",style="dashed", color="magenta", weight=3]; 180 -> 294[label="",style="dashed", color="red", weight=0]; 180[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];180 -> 298[label="",style="dashed", color="magenta", weight=3]; 181 -> 294[label="",style="dashed", color="red", weight=0]; 181[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];181 -> 299[label="",style="dashed", color="magenta", weight=3]; 182 -> 294[label="",style="dashed", color="red", weight=0]; 182[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];182 -> 300[label="",style="dashed", color="magenta", weight=3]; 183 -> 294[label="",style="dashed", color="red", weight=0]; 183[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];183 -> 301[label="",style="dashed", color="magenta", weight=3]; 184 -> 294[label="",style="dashed", color="red", weight=0]; 184[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];184 -> 302[label="",style="dashed", color="magenta", weight=3]; 185 -> 294[label="",style="dashed", color="red", weight=0]; 185[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];185 -> 303[label="",style="dashed", color="magenta", weight=3]; 186 -> 294[label="",style="dashed", color="red", weight=0]; 186[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];186 -> 304[label="",style="dashed", color="magenta", weight=3]; 187 -> 294[label="",style="dashed", color="red", weight=0]; 187[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];187 -> 305[label="",style="dashed", color="magenta", weight=3]; 188 -> 294[label="",style="dashed", color="red", weight=0]; 188[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];188 -> 306[label="",style="dashed", color="magenta", weight=3]; 189 -> 294[label="",style="dashed", color="red", weight=0]; 189[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];189 -> 307[label="",style="dashed", color="magenta", weight=3]; 190 -> 294[label="",style="dashed", color="red", weight=0]; 190[label="compare xuu22 xuu17 == GT",fontsize=16,color="magenta"];190 -> 308[label="",style="dashed", color="magenta", weight=3]; 191[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 xuu34 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 otherwise",fontsize=16,color="black",shape="box"];191 -> 330[label="",style="solid", color="black", weight=3]; 192 -> 110[label="",style="dashed", color="red", weight=0]; 192[label="FiniteMap.mkBalBranch xuu34 xuu35 xuu37 (FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu38 xuu39 xuu40)",fontsize=16,color="magenta"];192 -> 331[label="",style="dashed", color="magenta", weight=3]; 192 -> 332[label="",style="dashed", color="magenta", weight=3]; 192 -> 333[label="",style="dashed", color="magenta", weight=3]; 192 -> 334[label="",style="dashed", color="magenta", weight=3]; 193 -> 335[label="",style="dashed", color="red", weight=0]; 193[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 (FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42 + FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42 < Pos (Succ (Succ Zero)))",fontsize=16,color="magenta"];193 -> 336[label="",style="dashed", color="magenta", weight=3]; 337[label="compare2 False xuu60 (False == xuu60)",fontsize=16,color="burlywood",shape="box"];3253[label="xuu60/False",fontsize=10,color="white",style="solid",shape="box"];337 -> 3253[label="",style="solid", color="burlywood", weight=9]; 3253 -> 403[label="",style="solid", color="burlywood", weight=3]; 3254[label="xuu60/True",fontsize=10,color="white",style="solid",shape="box"];337 -> 3254[label="",style="solid", color="burlywood", weight=9]; 3254 -> 404[label="",style="solid", color="burlywood", weight=3]; 338[label="compare2 True xuu60 (True == xuu60)",fontsize=16,color="burlywood",shape="box"];3255[label="xuu60/False",fontsize=10,color="white",style="solid",shape="box"];338 -> 3255[label="",style="solid", color="burlywood", weight=9]; 3255 -> 405[label="",style="solid", color="burlywood", weight=3]; 3256[label="xuu60/True",fontsize=10,color="white",style="solid",shape="box"];338 -> 3256[label="",style="solid", color="burlywood", weight=9]; 3256 -> 406[label="",style="solid", color="burlywood", weight=3]; 339[label="compare2 (xuu311000,xuu311001) xuu60 ((xuu311000,xuu311001) == xuu60)",fontsize=16,color="burlywood",shape="box"];3257[label="xuu60/(xuu600,xuu601)",fontsize=10,color="white",style="solid",shape="box"];339 -> 3257[label="",style="solid", color="burlywood", weight=9]; 3257 -> 407[label="",style="solid", color="burlywood", weight=3]; 340 -> 408[label="",style="dashed", color="red", weight=0]; 340[label="primCompAux xuu311000 xuu600 (compare xuu311001 xuu601)",fontsize=16,color="magenta"];340 -> 409[label="",style="dashed", color="magenta", weight=3]; 341[label="GT",fontsize=16,color="green",shape="box"];342[label="LT",fontsize=16,color="green",shape="box"];343[label="EQ",fontsize=16,color="green",shape="box"];344[label="compare2 Nothing xuu60 (Nothing == xuu60)",fontsize=16,color="burlywood",shape="box"];3258[label="xuu60/Nothing",fontsize=10,color="white",style="solid",shape="box"];344 -> 3258[label="",style="solid", color="burlywood", weight=9]; 3258 -> 410[label="",style="solid", color="burlywood", weight=3]; 3259[label="xuu60/Just xuu600",fontsize=10,color="white",style="solid",shape="box"];344 -> 3259[label="",style="solid", color="burlywood", weight=9]; 3259 -> 411[label="",style="solid", color="burlywood", weight=3]; 345[label="compare2 (Just xuu311000) xuu60 (Just xuu311000 == xuu60)",fontsize=16,color="burlywood",shape="box"];3260[label="xuu60/Nothing",fontsize=10,color="white",style="solid",shape="box"];345 -> 3260[label="",style="solid", color="burlywood", weight=9]; 3260 -> 412[label="",style="solid", color="burlywood", weight=3]; 3261[label="xuu60/Just xuu600",fontsize=10,color="white",style="solid",shape="box"];345 -> 3261[label="",style="solid", color="burlywood", weight=9]; 3261 -> 413[label="",style="solid", color="burlywood", weight=3]; 346[label="compare2 LT xuu60 (LT == xuu60)",fontsize=16,color="burlywood",shape="box"];3262[label="xuu60/LT",fontsize=10,color="white",style="solid",shape="box"];346 -> 3262[label="",style="solid", color="burlywood", weight=9]; 3262 -> 414[label="",style="solid", color="burlywood", weight=3]; 3263[label="xuu60/EQ",fontsize=10,color="white",style="solid",shape="box"];346 -> 3263[label="",style="solid", color="burlywood", weight=9]; 3263 -> 415[label="",style="solid", color="burlywood", weight=3]; 3264[label="xuu60/GT",fontsize=10,color="white",style="solid",shape="box"];346 -> 3264[label="",style="solid", color="burlywood", weight=9]; 3264 -> 416[label="",style="solid", color="burlywood", weight=3]; 347[label="compare2 EQ xuu60 (EQ == xuu60)",fontsize=16,color="burlywood",shape="box"];3265[label="xuu60/LT",fontsize=10,color="white",style="solid",shape="box"];347 -> 3265[label="",style="solid", color="burlywood", weight=9]; 3265 -> 417[label="",style="solid", color="burlywood", weight=3]; 3266[label="xuu60/EQ",fontsize=10,color="white",style="solid",shape="box"];347 -> 3266[label="",style="solid", color="burlywood", weight=9]; 3266 -> 418[label="",style="solid", color="burlywood", weight=3]; 3267[label="xuu60/GT",fontsize=10,color="white",style="solid",shape="box"];347 -> 3267[label="",style="solid", color="burlywood", weight=9]; 3267 -> 419[label="",style="solid", color="burlywood", weight=3]; 348[label="compare2 GT xuu60 (GT == xuu60)",fontsize=16,color="burlywood",shape="box"];3268[label="xuu60/LT",fontsize=10,color="white",style="solid",shape="box"];348 -> 3268[label="",style="solid", color="burlywood", weight=9]; 3268 -> 420[label="",style="solid", color="burlywood", weight=3]; 3269[label="xuu60/EQ",fontsize=10,color="white",style="solid",shape="box"];348 -> 3269[label="",style="solid", color="burlywood", weight=9]; 3269 -> 421[label="",style="solid", color="burlywood", weight=3]; 3270[label="xuu60/GT",fontsize=10,color="white",style="solid",shape="box"];348 -> 3270[label="",style="solid", color="burlywood", weight=9]; 3270 -> 422[label="",style="solid", color="burlywood", weight=3]; 349 -> 287[label="",style="dashed", color="red", weight=0]; 349[label="primCmpInt xuu311000 xuu600",fontsize=16,color="magenta"];349 -> 423[label="",style="dashed", color="magenta", weight=3]; 349 -> 424[label="",style="dashed", color="magenta", weight=3]; 350[label="primCmpDouble (Double xuu311000 (Pos xuu3110010)) xuu60",fontsize=16,color="burlywood",shape="box"];3271[label="xuu60/Double xuu600 xuu601",fontsize=10,color="white",style="solid",shape="box"];350 -> 3271[label="",style="solid", color="burlywood", weight=9]; 3271 -> 425[label="",style="solid", color="burlywood", weight=3]; 351[label="primCmpDouble (Double xuu311000 (Neg xuu3110010)) xuu60",fontsize=16,color="burlywood",shape="box"];3272[label="xuu60/Double xuu600 xuu601",fontsize=10,color="white",style="solid",shape="box"];351 -> 3272[label="",style="solid", color="burlywood", weight=9]; 3272 -> 426[label="",style="solid", color="burlywood", weight=3]; 352[label="primCmpInt (Pos (Succ xuu3110000)) xuu60",fontsize=16,color="burlywood",shape="box"];3273[label="xuu60/Pos xuu600",fontsize=10,color="white",style="solid",shape="box"];352 -> 3273[label="",style="solid", color="burlywood", weight=9]; 3273 -> 427[label="",style="solid", color="burlywood", weight=3]; 3274[label="xuu60/Neg xuu600",fontsize=10,color="white",style="solid",shape="box"];352 -> 3274[label="",style="solid", color="burlywood", weight=9]; 3274 -> 428[label="",style="solid", color="burlywood", weight=3]; 353[label="primCmpInt (Pos Zero) xuu60",fontsize=16,color="burlywood",shape="box"];3275[label="xuu60/Pos xuu600",fontsize=10,color="white",style="solid",shape="box"];353 -> 3275[label="",style="solid", color="burlywood", weight=9]; 3275 -> 429[label="",style="solid", color="burlywood", weight=3]; 3276[label="xuu60/Neg xuu600",fontsize=10,color="white",style="solid",shape="box"];353 -> 3276[label="",style="solid", color="burlywood", weight=9]; 3276 -> 430[label="",style="solid", color="burlywood", weight=3]; 354[label="primCmpInt (Neg (Succ xuu3110000)) xuu60",fontsize=16,color="burlywood",shape="box"];3277[label="xuu60/Pos xuu600",fontsize=10,color="white",style="solid",shape="box"];354 -> 3277[label="",style="solid", color="burlywood", weight=9]; 3277 -> 431[label="",style="solid", color="burlywood", weight=3]; 3278[label="xuu60/Neg xuu600",fontsize=10,color="white",style="solid",shape="box"];354 -> 3278[label="",style="solid", color="burlywood", weight=9]; 3278 -> 432[label="",style="solid", color="burlywood", weight=3]; 355[label="primCmpInt (Neg Zero) xuu60",fontsize=16,color="burlywood",shape="box"];3279[label="xuu60/Pos xuu600",fontsize=10,color="white",style="solid",shape="box"];355 -> 3279[label="",style="solid", color="burlywood", weight=9]; 3279 -> 433[label="",style="solid", color="burlywood", weight=3]; 3280[label="xuu60/Neg xuu600",fontsize=10,color="white",style="solid",shape="box"];355 -> 3280[label="",style="solid", color="burlywood", weight=9]; 3280 -> 434[label="",style="solid", color="burlywood", weight=3]; 356[label="compare2 (xuu311000,xuu311001,xuu311002) xuu60 ((xuu311000,xuu311001,xuu311002) == xuu60)",fontsize=16,color="burlywood",shape="box"];3281[label="xuu60/(xuu600,xuu601,xuu602)",fontsize=10,color="white",style="solid",shape="box"];356 -> 3281[label="",style="solid", color="burlywood", weight=9]; 3281 -> 435[label="",style="solid", color="burlywood", weight=3]; 357[label="primCmpFloat (Float xuu311000 (Pos xuu3110010)) xuu60",fontsize=16,color="burlywood",shape="box"];3282[label="xuu60/Float xuu600 xuu601",fontsize=10,color="white",style="solid",shape="box"];357 -> 3282[label="",style="solid", color="burlywood", weight=9]; 3282 -> 436[label="",style="solid", color="burlywood", weight=3]; 358[label="primCmpFloat (Float xuu311000 (Neg xuu3110010)) xuu60",fontsize=16,color="burlywood",shape="box"];3283[label="xuu60/Float xuu600 xuu601",fontsize=10,color="white",style="solid",shape="box"];358 -> 3283[label="",style="solid", color="burlywood", weight=9]; 3283 -> 437[label="",style="solid", color="burlywood", weight=3]; 359[label="EQ",fontsize=16,color="green",shape="box"];360[label="primCmpChar (Char xuu311000) (Char xuu600)",fontsize=16,color="black",shape="box"];360 -> 438[label="",style="solid", color="black", weight=3]; 361[label="compare2 (Left xuu311000) xuu60 (Left xuu311000 == xuu60)",fontsize=16,color="burlywood",shape="box"];3284[label="xuu60/Left xuu600",fontsize=10,color="white",style="solid",shape="box"];361 -> 3284[label="",style="solid", color="burlywood", weight=9]; 3284 -> 439[label="",style="solid", color="burlywood", weight=3]; 3285[label="xuu60/Right xuu600",fontsize=10,color="white",style="solid",shape="box"];361 -> 3285[label="",style="solid", color="burlywood", weight=9]; 3285 -> 440[label="",style="solid", color="burlywood", weight=3]; 362[label="compare2 (Right xuu311000) xuu60 (Right xuu311000 == xuu60)",fontsize=16,color="burlywood",shape="box"];3286[label="xuu60/Left xuu600",fontsize=10,color="white",style="solid",shape="box"];362 -> 3286[label="",style="solid", color="burlywood", weight=9]; 3286 -> 441[label="",style="solid", color="burlywood", weight=3]; 3287[label="xuu60/Right xuu600",fontsize=10,color="white",style="solid",shape="box"];362 -> 3287[label="",style="solid", color="burlywood", weight=9]; 3287 -> 442[label="",style="solid", color="burlywood", weight=3]; 363[label="compare (xuu311000 * xuu601) (xuu600 * xuu311001)",fontsize=16,color="blue",shape="box"];3288[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];363 -> 3288[label="",style="solid", color="blue", weight=9]; 3288 -> 443[label="",style="solid", color="blue", weight=3]; 3289[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];363 -> 3289[label="",style="solid", color="blue", weight=9]; 3289 -> 444[label="",style="solid", color="blue", weight=3]; 295 -> 237[label="",style="dashed", color="red", weight=0]; 295[label="compare xuu22 xuu17",fontsize=16,color="magenta"];295 -> 364[label="",style="dashed", color="magenta", weight=3]; 295 -> 365[label="",style="dashed", color="magenta", weight=3]; 294[label="xuu46 == GT",fontsize=16,color="burlywood",shape="triangle"];3290[label="xuu46/LT",fontsize=10,color="white",style="solid",shape="box"];294 -> 3290[label="",style="solid", color="burlywood", weight=9]; 3290 -> 366[label="",style="solid", color="burlywood", weight=3]; 3291[label="xuu46/EQ",fontsize=10,color="white",style="solid",shape="box"];294 -> 3291[label="",style="solid", color="burlywood", weight=9]; 3291 -> 367[label="",style="solid", color="burlywood", weight=3]; 3292[label="xuu46/GT",fontsize=10,color="white",style="solid",shape="box"];294 -> 3292[label="",style="solid", color="burlywood", weight=9]; 3292 -> 368[label="",style="solid", color="burlywood", weight=3]; 296 -> 238[label="",style="dashed", color="red", weight=0]; 296[label="compare xuu22 xuu17",fontsize=16,color="magenta"];296 -> 369[label="",style="dashed", color="magenta", weight=3]; 296 -> 370[label="",style="dashed", color="magenta", weight=3]; 297 -> 239[label="",style="dashed", color="red", weight=0]; 297[label="compare xuu22 xuu17",fontsize=16,color="magenta"];297 -> 371[label="",style="dashed", color="magenta", weight=3]; 297 -> 372[label="",style="dashed", color="magenta", weight=3]; 298 -> 240[label="",style="dashed", color="red", weight=0]; 298[label="compare xuu22 xuu17",fontsize=16,color="magenta"];298 -> 373[label="",style="dashed", color="magenta", weight=3]; 298 -> 374[label="",style="dashed", color="magenta", weight=3]; 299 -> 241[label="",style="dashed", color="red", weight=0]; 299[label="compare xuu22 xuu17",fontsize=16,color="magenta"];299 -> 375[label="",style="dashed", color="magenta", weight=3]; 299 -> 376[label="",style="dashed", color="magenta", weight=3]; 300 -> 242[label="",style="dashed", color="red", weight=0]; 300[label="compare xuu22 xuu17",fontsize=16,color="magenta"];300 -> 377[label="",style="dashed", color="magenta", weight=3]; 300 -> 378[label="",style="dashed", color="magenta", weight=3]; 301 -> 243[label="",style="dashed", color="red", weight=0]; 301[label="compare xuu22 xuu17",fontsize=16,color="magenta"];301 -> 379[label="",style="dashed", color="magenta", weight=3]; 301 -> 380[label="",style="dashed", color="magenta", weight=3]; 302 -> 244[label="",style="dashed", color="red", weight=0]; 302[label="compare xuu22 xuu17",fontsize=16,color="magenta"];302 -> 381[label="",style="dashed", color="magenta", weight=3]; 302 -> 382[label="",style="dashed", color="magenta", weight=3]; 303 -> 245[label="",style="dashed", color="red", weight=0]; 303[label="compare xuu22 xuu17",fontsize=16,color="magenta"];303 -> 383[label="",style="dashed", color="magenta", weight=3]; 303 -> 384[label="",style="dashed", color="magenta", weight=3]; 304 -> 246[label="",style="dashed", color="red", weight=0]; 304[label="compare xuu22 xuu17",fontsize=16,color="magenta"];304 -> 385[label="",style="dashed", color="magenta", weight=3]; 304 -> 386[label="",style="dashed", color="magenta", weight=3]; 305 -> 247[label="",style="dashed", color="red", weight=0]; 305[label="compare xuu22 xuu17",fontsize=16,color="magenta"];305 -> 387[label="",style="dashed", color="magenta", weight=3]; 305 -> 388[label="",style="dashed", color="magenta", weight=3]; 306 -> 248[label="",style="dashed", color="red", weight=0]; 306[label="compare xuu22 xuu17",fontsize=16,color="magenta"];306 -> 389[label="",style="dashed", color="magenta", weight=3]; 306 -> 390[label="",style="dashed", color="magenta", weight=3]; 307 -> 249[label="",style="dashed", color="red", weight=0]; 307[label="compare xuu22 xuu17",fontsize=16,color="magenta"];307 -> 391[label="",style="dashed", color="magenta", weight=3]; 307 -> 392[label="",style="dashed", color="magenta", weight=3]; 308 -> 250[label="",style="dashed", color="red", weight=0]; 308[label="compare xuu22 xuu17",fontsize=16,color="magenta"];308 -> 393[label="",style="dashed", color="magenta", weight=3]; 308 -> 394[label="",style="dashed", color="magenta", weight=3]; 330[label="FiniteMap.addToFM_C0 FiniteMap.addListToFM0 xuu34 xuu35 xuu36 xuu37 xuu38 xuu39 xuu40 True",fontsize=16,color="black",shape="box"];330 -> 395[label="",style="solid", color="black", weight=3]; 331[label="xuu34",fontsize=16,color="green",shape="box"];332[label="xuu35",fontsize=16,color="green",shape="box"];333 -> 35[label="",style="dashed", color="red", weight=0]; 333[label="FiniteMap.addToFM_C FiniteMap.addListToFM0 xuu38 xuu39 xuu40",fontsize=16,color="magenta"];333 -> 396[label="",style="dashed", color="magenta", weight=3]; 333 -> 397[label="",style="dashed", color="magenta", weight=3]; 333 -> 398[label="",style="dashed", color="magenta", weight=3]; 334[label="xuu37",fontsize=16,color="green",shape="box"];336 -> 61[label="",style="dashed", color="red", weight=0]; 336[label="FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42 + FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42 < Pos (Succ (Succ Zero))",fontsize=16,color="magenta"];336 -> 399[label="",style="dashed", color="magenta", weight=3]; 336 -> 400[label="",style="dashed", color="magenta", weight=3]; 335[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 xuu47",fontsize=16,color="burlywood",shape="triangle"];3293[label="xuu47/False",fontsize=10,color="white",style="solid",shape="box"];335 -> 3293[label="",style="solid", color="burlywood", weight=9]; 3293 -> 401[label="",style="solid", color="burlywood", weight=3]; 3294[label="xuu47/True",fontsize=10,color="white",style="solid",shape="box"];335 -> 3294[label="",style="solid", color="burlywood", weight=9]; 3294 -> 402[label="",style="solid", color="burlywood", weight=3]; 403[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];403 -> 445[label="",style="solid", color="black", weight=3]; 404[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];404 -> 446[label="",style="solid", color="black", weight=3]; 405[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];405 -> 447[label="",style="solid", color="black", weight=3]; 406[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];406 -> 448[label="",style="solid", color="black", weight=3]; 407[label="compare2 (xuu311000,xuu311001) (xuu600,xuu601) ((xuu311000,xuu311001) == (xuu600,xuu601))",fontsize=16,color="black",shape="box"];407 -> 449[label="",style="solid", color="black", weight=3]; 409 -> 239[label="",style="dashed", color="red", weight=0]; 409[label="compare xuu311001 xuu601",fontsize=16,color="magenta"];409 -> 450[label="",style="dashed", color="magenta", weight=3]; 409 -> 451[label="",style="dashed", color="magenta", weight=3]; 408[label="primCompAux xuu311000 xuu600 xuu48",fontsize=16,color="black",shape="triangle"];408 -> 452[label="",style="solid", color="black", weight=3]; 410[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];410 -> 460[label="",style="solid", color="black", weight=3]; 411[label="compare2 Nothing (Just xuu600) (Nothing == Just xuu600)",fontsize=16,color="black",shape="box"];411 -> 461[label="",style="solid", color="black", weight=3]; 412[label="compare2 (Just xuu311000) Nothing (Just xuu311000 == Nothing)",fontsize=16,color="black",shape="box"];412 -> 462[label="",style="solid", color="black", weight=3]; 413[label="compare2 (Just xuu311000) (Just xuu600) (Just xuu311000 == Just xuu600)",fontsize=16,color="black",shape="box"];413 -> 463[label="",style="solid", color="black", weight=3]; 414[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];414 -> 464[label="",style="solid", color="black", weight=3]; 415[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];415 -> 465[label="",style="solid", color="black", weight=3]; 416[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];416 -> 466[label="",style="solid", color="black", weight=3]; 417[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];417 -> 467[label="",style="solid", color="black", weight=3]; 418[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];418 -> 468[label="",style="solid", color="black", weight=3]; 419[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];419 -> 469[label="",style="solid", color="black", weight=3]; 420[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];420 -> 470[label="",style="solid", color="black", weight=3]; 421[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];421 -> 471[label="",style="solid", color="black", weight=3]; 422[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];422 -> 472[label="",style="solid", color="black", weight=3]; 423[label="xuu311000",fontsize=16,color="green",shape="box"];424[label="xuu600",fontsize=16,color="green",shape="box"];425[label="primCmpDouble (Double xuu311000 (Pos xuu3110010)) (Double xuu600 xuu601)",fontsize=16,color="burlywood",shape="box"];3295[label="xuu601/Pos xuu6010",fontsize=10,color="white",style="solid",shape="box"];425 -> 3295[label="",style="solid", color="burlywood", weight=9]; 3295 -> 473[label="",style="solid", color="burlywood", weight=3]; 3296[label="xuu601/Neg xuu6010",fontsize=10,color="white",style="solid",shape="box"];425 -> 3296[label="",style="solid", color="burlywood", weight=9]; 3296 -> 474[label="",style="solid", color="burlywood", weight=3]; 426[label="primCmpDouble (Double xuu311000 (Neg xuu3110010)) (Double xuu600 xuu601)",fontsize=16,color="burlywood",shape="box"];3297[label="xuu601/Pos xuu6010",fontsize=10,color="white",style="solid",shape="box"];426 -> 3297[label="",style="solid", color="burlywood", weight=9]; 3297 -> 475[label="",style="solid", color="burlywood", weight=3]; 3298[label="xuu601/Neg xuu6010",fontsize=10,color="white",style="solid",shape="box"];426 -> 3298[label="",style="solid", color="burlywood", weight=9]; 3298 -> 476[label="",style="solid", color="burlywood", weight=3]; 427[label="primCmpInt (Pos (Succ xuu3110000)) (Pos xuu600)",fontsize=16,color="black",shape="box"];427 -> 477[label="",style="solid", color="black", weight=3]; 428[label="primCmpInt (Pos (Succ xuu3110000)) (Neg xuu600)",fontsize=16,color="black",shape="box"];428 -> 478[label="",style="solid", color="black", weight=3]; 429[label="primCmpInt (Pos Zero) (Pos xuu600)",fontsize=16,color="burlywood",shape="box"];3299[label="xuu600/Succ xuu6000",fontsize=10,color="white",style="solid",shape="box"];429 -> 3299[label="",style="solid", color="burlywood", weight=9]; 3299 -> 479[label="",style="solid", color="burlywood", weight=3]; 3300[label="xuu600/Zero",fontsize=10,color="white",style="solid",shape="box"];429 -> 3300[label="",style="solid", color="burlywood", weight=9]; 3300 -> 480[label="",style="solid", color="burlywood", weight=3]; 430[label="primCmpInt (Pos Zero) (Neg xuu600)",fontsize=16,color="burlywood",shape="box"];3301[label="xuu600/Succ xuu6000",fontsize=10,color="white",style="solid",shape="box"];430 -> 3301[label="",style="solid", color="burlywood", weight=9]; 3301 -> 481[label="",style="solid", color="burlywood", weight=3]; 3302[label="xuu600/Zero",fontsize=10,color="white",style="solid",shape="box"];430 -> 3302[label="",style="solid", color="burlywood", weight=9]; 3302 -> 482[label="",style="solid", color="burlywood", weight=3]; 431[label="primCmpInt (Neg (Succ xuu3110000)) (Pos xuu600)",fontsize=16,color="black",shape="box"];431 -> 483[label="",style="solid", color="black", weight=3]; 432[label="primCmpInt (Neg (Succ xuu3110000)) (Neg xuu600)",fontsize=16,color="black",shape="box"];432 -> 484[label="",style="solid", color="black", weight=3]; 433[label="primCmpInt (Neg Zero) (Pos xuu600)",fontsize=16,color="burlywood",shape="box"];3303[label="xuu600/Succ xuu6000",fontsize=10,color="white",style="solid",shape="box"];433 -> 3303[label="",style="solid", color="burlywood", weight=9]; 3303 -> 485[label="",style="solid", color="burlywood", weight=3]; 3304[label="xuu600/Zero",fontsize=10,color="white",style="solid",shape="box"];433 -> 3304[label="",style="solid", color="burlywood", weight=9]; 3304 -> 486[label="",style="solid", color="burlywood", weight=3]; 434[label="primCmpInt (Neg Zero) (Neg xuu600)",fontsize=16,color="burlywood",shape="box"];3305[label="xuu600/Succ xuu6000",fontsize=10,color="white",style="solid",shape="box"];434 -> 3305[label="",style="solid", color="burlywood", weight=9]; 3305 -> 487[label="",style="solid", color="burlywood", weight=3]; 3306[label="xuu600/Zero",fontsize=10,color="white",style="solid",shape="box"];434 -> 3306[label="",style="solid", color="burlywood", weight=9]; 3306 -> 488[label="",style="solid", color="burlywood", weight=3]; 435[label="compare2 (xuu311000,xuu311001,xuu311002) (xuu600,xuu601,xuu602) ((xuu311000,xuu311001,xuu311002) == (xuu600,xuu601,xuu602))",fontsize=16,color="black",shape="box"];435 -> 489[label="",style="solid", color="black", weight=3]; 436[label="primCmpFloat (Float xuu311000 (Pos xuu3110010)) (Float xuu600 xuu601)",fontsize=16,color="burlywood",shape="box"];3307[label="xuu601/Pos xuu6010",fontsize=10,color="white",style="solid",shape="box"];436 -> 3307[label="",style="solid", color="burlywood", weight=9]; 3307 -> 490[label="",style="solid", color="burlywood", weight=3]; 3308[label="xuu601/Neg xuu6010",fontsize=10,color="white",style="solid",shape="box"];436 -> 3308[label="",style="solid", color="burlywood", weight=9]; 3308 -> 491[label="",style="solid", color="burlywood", weight=3]; 437[label="primCmpFloat (Float xuu311000 (Neg xuu3110010)) (Float xuu600 xuu601)",fontsize=16,color="burlywood",shape="box"];3309[label="xuu601/Pos xuu6010",fontsize=10,color="white",style="solid",shape="box"];437 -> 3309[label="",style="solid", color="burlywood", weight=9]; 3309 -> 492[label="",style="solid", color="burlywood", weight=3]; 3310[label="xuu601/Neg xuu6010",fontsize=10,color="white",style="solid",shape="box"];437 -> 3310[label="",style="solid", color="burlywood", weight=9]; 3310 -> 493[label="",style="solid", color="burlywood", weight=3]; 438[label="primCmpNat xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];3311[label="xuu311000/Succ xuu3110000",fontsize=10,color="white",style="solid",shape="box"];438 -> 3311[label="",style="solid", color="burlywood", weight=9]; 3311 -> 494[label="",style="solid", color="burlywood", weight=3]; 3312[label="xuu311000/Zero",fontsize=10,color="white",style="solid",shape="box"];438 -> 3312[label="",style="solid", color="burlywood", weight=9]; 3312 -> 495[label="",style="solid", color="burlywood", weight=3]; 439[label="compare2 (Left xuu311000) (Left xuu600) (Left xuu311000 == Left xuu600)",fontsize=16,color="black",shape="box"];439 -> 496[label="",style="solid", color="black", weight=3]; 440[label="compare2 (Left xuu311000) (Right xuu600) (Left xuu311000 == Right xuu600)",fontsize=16,color="black",shape="box"];440 -> 497[label="",style="solid", color="black", weight=3]; 441[label="compare2 (Right xuu311000) (Left xuu600) (Right xuu311000 == Left xuu600)",fontsize=16,color="black",shape="box"];441 -> 498[label="",style="solid", color="black", weight=3]; 442[label="compare2 (Right xuu311000) (Right xuu600) (Right xuu311000 == Right xuu600)",fontsize=16,color="black",shape="box"];442 -> 499[label="",style="solid", color="black", weight=3]; 443 -> 242[label="",style="dashed", color="red", weight=0]; 443[label="compare (xuu311000 * xuu601) (xuu600 * xuu311001)",fontsize=16,color="magenta"];443 -> 500[label="",style="dashed", color="magenta", weight=3]; 443 -> 501[label="",style="dashed", color="magenta", weight=3]; 444 -> 244[label="",style="dashed", color="red", weight=0]; 444[label="compare (xuu311000 * xuu601) (xuu600 * xuu311001)",fontsize=16,color="magenta"];444 -> 502[label="",style="dashed", color="magenta", weight=3]; 444 -> 503[label="",style="dashed", color="magenta", weight=3]; 364[label="xuu22",fontsize=16,color="green",shape="box"];365[label="xuu17",fontsize=16,color="green",shape="box"];366[label="LT == GT",fontsize=16,color="black",shape="box"];366 -> 453[label="",style="solid", color="black", weight=3]; 367[label="EQ == GT",fontsize=16,color="black",shape="box"];367 -> 454[label="",style="solid", color="black", weight=3]; 368[label="GT == GT",fontsize=16,color="black",shape="box"];368 -> 455[label="",style="solid", color="black", weight=3]; 369[label="xuu22",fontsize=16,color="green",shape="box"];370[label="xuu17",fontsize=16,color="green",shape="box"];371[label="xuu22",fontsize=16,color="green",shape="box"];372[label="xuu17",fontsize=16,color="green",shape="box"];373[label="xuu22",fontsize=16,color="green",shape="box"];374[label="xuu17",fontsize=16,color="green",shape="box"];375[label="xuu22",fontsize=16,color="green",shape="box"];376[label="xuu17",fontsize=16,color="green",shape="box"];377[label="xuu22",fontsize=16,color="green",shape="box"];378[label="xuu17",fontsize=16,color="green",shape="box"];379[label="xuu22",fontsize=16,color="green",shape="box"];380[label="xuu17",fontsize=16,color="green",shape="box"];381[label="xuu22",fontsize=16,color="green",shape="box"];382[label="xuu17",fontsize=16,color="green",shape="box"];383[label="xuu22",fontsize=16,color="green",shape="box"];384[label="xuu17",fontsize=16,color="green",shape="box"];385[label="xuu22",fontsize=16,color="green",shape="box"];386[label="xuu17",fontsize=16,color="green",shape="box"];387[label="xuu22",fontsize=16,color="green",shape="box"];388[label="xuu17",fontsize=16,color="green",shape="box"];389[label="xuu22",fontsize=16,color="green",shape="box"];390[label="xuu17",fontsize=16,color="green",shape="box"];391[label="xuu22",fontsize=16,color="green",shape="box"];392[label="xuu17",fontsize=16,color="green",shape="box"];393[label="xuu22",fontsize=16,color="green",shape="box"];394[label="xuu17",fontsize=16,color="green",shape="box"];395[label="FiniteMap.Branch xuu39 (FiniteMap.addListToFM0 xuu35 xuu40) xuu36 xuu37 xuu38",fontsize=16,color="green",shape="box"];395 -> 456[label="",style="dashed", color="green", weight=3]; 396[label="xuu39",fontsize=16,color="green",shape="box"];397[label="xuu40",fontsize=16,color="green",shape="box"];398[label="xuu38",fontsize=16,color="green",shape="box"];399[label="FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42 + FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42",fontsize=16,color="black",shape="box"];399 -> 457[label="",style="solid", color="black", weight=3]; 400[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];401[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 False",fontsize=16,color="black",shape="box"];401 -> 458[label="",style="solid", color="black", weight=3]; 402[label="FiniteMap.mkBalBranch6MkBalBranch5 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 True",fontsize=16,color="black",shape="box"];402 -> 459[label="",style="solid", color="black", weight=3]; 445[label="compare2 False False True",fontsize=16,color="black",shape="box"];445 -> 504[label="",style="solid", color="black", weight=3]; 446[label="compare2 False True False",fontsize=16,color="black",shape="box"];446 -> 505[label="",style="solid", color="black", weight=3]; 447[label="compare2 True False False",fontsize=16,color="black",shape="box"];447 -> 506[label="",style="solid", color="black", weight=3]; 448[label="compare2 True True True",fontsize=16,color="black",shape="box"];448 -> 507[label="",style="solid", color="black", weight=3]; 449 -> 998[label="",style="dashed", color="red", weight=0]; 449[label="compare2 (xuu311000,xuu311001) (xuu600,xuu601) (xuu311000 == xuu600 && xuu311001 == xuu601)",fontsize=16,color="magenta"];449 -> 999[label="",style="dashed", color="magenta", weight=3]; 449 -> 1000[label="",style="dashed", color="magenta", weight=3]; 449 -> 1001[label="",style="dashed", color="magenta", weight=3]; 449 -> 1002[label="",style="dashed", color="magenta", weight=3]; 449 -> 1003[label="",style="dashed", color="magenta", weight=3]; 450[label="xuu311001",fontsize=16,color="green",shape="box"];451[label="xuu601",fontsize=16,color="green",shape="box"];452 -> 514[label="",style="dashed", color="red", weight=0]; 452[label="primCompAux0 xuu48 (compare xuu311000 xuu600)",fontsize=16,color="magenta"];452 -> 515[label="",style="dashed", color="magenta", weight=3]; 452 -> 516[label="",style="dashed", color="magenta", weight=3]; 460[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];460 -> 517[label="",style="solid", color="black", weight=3]; 461[label="compare2 Nothing (Just xuu600) False",fontsize=16,color="black",shape="box"];461 -> 518[label="",style="solid", color="black", weight=3]; 462[label="compare2 (Just xuu311000) Nothing False",fontsize=16,color="black",shape="box"];462 -> 519[label="",style="solid", color="black", weight=3]; 463 -> 520[label="",style="dashed", color="red", weight=0]; 463[label="compare2 (Just xuu311000) (Just xuu600) (xuu311000 == xuu600)",fontsize=16,color="magenta"];463 -> 521[label="",style="dashed", color="magenta", weight=3]; 463 -> 522[label="",style="dashed", color="magenta", weight=3]; 463 -> 523[label="",style="dashed", color="magenta", weight=3]; 464[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];464 -> 524[label="",style="solid", color="black", weight=3]; 465[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];465 -> 525[label="",style="solid", color="black", weight=3]; 466[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];466 -> 526[label="",style="solid", color="black", weight=3]; 467[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];467 -> 527[label="",style="solid", color="black", weight=3]; 468[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];468 -> 528[label="",style="solid", color="black", weight=3]; 469[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];469 -> 529[label="",style="solid", color="black", weight=3]; 470[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];470 -> 530[label="",style="solid", color="black", weight=3]; 471[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];471 -> 531[label="",style="solid", color="black", weight=3]; 472[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];472 -> 532[label="",style="solid", color="black", weight=3]; 473[label="primCmpDouble (Double xuu311000 (Pos xuu3110010)) (Double xuu600 (Pos xuu6010))",fontsize=16,color="black",shape="box"];473 -> 533[label="",style="solid", color="black", weight=3]; 474[label="primCmpDouble (Double xuu311000 (Pos xuu3110010)) (Double xuu600 (Neg xuu6010))",fontsize=16,color="black",shape="box"];474 -> 534[label="",style="solid", color="black", weight=3]; 475[label="primCmpDouble (Double xuu311000 (Neg xuu3110010)) (Double xuu600 (Pos xuu6010))",fontsize=16,color="black",shape="box"];475 -> 535[label="",style="solid", color="black", weight=3]; 476[label="primCmpDouble (Double xuu311000 (Neg xuu3110010)) (Double xuu600 (Neg xuu6010))",fontsize=16,color="black",shape="box"];476 -> 536[label="",style="solid", color="black", weight=3]; 477 -> 438[label="",style="dashed", color="red", weight=0]; 477[label="primCmpNat (Succ xuu3110000) xuu600",fontsize=16,color="magenta"];477 -> 537[label="",style="dashed", color="magenta", weight=3]; 477 -> 538[label="",style="dashed", color="magenta", weight=3]; 478[label="GT",fontsize=16,color="green",shape="box"];479[label="primCmpInt (Pos Zero) (Pos (Succ xuu6000))",fontsize=16,color="black",shape="box"];479 -> 539[label="",style="solid", color="black", weight=3]; 480[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];480 -> 540[label="",style="solid", color="black", weight=3]; 481[label="primCmpInt (Pos Zero) (Neg (Succ xuu6000))",fontsize=16,color="black",shape="box"];481 -> 541[label="",style="solid", color="black", weight=3]; 482[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];482 -> 542[label="",style="solid", color="black", weight=3]; 483[label="LT",fontsize=16,color="green",shape="box"];484 -> 438[label="",style="dashed", color="red", weight=0]; 484[label="primCmpNat xuu600 (Succ xuu3110000)",fontsize=16,color="magenta"];484 -> 543[label="",style="dashed", color="magenta", weight=3]; 484 -> 544[label="",style="dashed", color="magenta", weight=3]; 485[label="primCmpInt (Neg Zero) (Pos (Succ xuu6000))",fontsize=16,color="black",shape="box"];485 -> 545[label="",style="solid", color="black", weight=3]; 486[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];486 -> 546[label="",style="solid", color="black", weight=3]; 487[label="primCmpInt (Neg Zero) (Neg (Succ xuu6000))",fontsize=16,color="black",shape="box"];487 -> 547[label="",style="solid", color="black", weight=3]; 488[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];488 -> 548[label="",style="solid", color="black", weight=3]; 489 -> 1047[label="",style="dashed", color="red", weight=0]; 489[label="compare2 (xuu311000,xuu311001,xuu311002) (xuu600,xuu601,xuu602) (xuu311000 == xuu600 && xuu311001 == xuu601 && xuu311002 == xuu602)",fontsize=16,color="magenta"];489 -> 1048[label="",style="dashed", color="magenta", weight=3]; 489 -> 1049[label="",style="dashed", color="magenta", weight=3]; 489 -> 1050[label="",style="dashed", color="magenta", weight=3]; 489 -> 1051[label="",style="dashed", color="magenta", weight=3]; 489 -> 1052[label="",style="dashed", color="magenta", weight=3]; 489 -> 1053[label="",style="dashed", color="magenta", weight=3]; 489 -> 1054[label="",style="dashed", color="magenta", weight=3]; 490[label="primCmpFloat (Float xuu311000 (Pos xuu3110010)) (Float xuu600 (Pos xuu6010))",fontsize=16,color="black",shape="box"];490 -> 557[label="",style="solid", color="black", weight=3]; 491[label="primCmpFloat (Float xuu311000 (Pos xuu3110010)) (Float xuu600 (Neg xuu6010))",fontsize=16,color="black",shape="box"];491 -> 558[label="",style="solid", color="black", weight=3]; 492[label="primCmpFloat (Float xuu311000 (Neg xuu3110010)) (Float xuu600 (Pos xuu6010))",fontsize=16,color="black",shape="box"];492 -> 559[label="",style="solid", color="black", weight=3]; 493[label="primCmpFloat (Float xuu311000 (Neg xuu3110010)) (Float xuu600 (Neg xuu6010))",fontsize=16,color="black",shape="box"];493 -> 560[label="",style="solid", color="black", weight=3]; 494[label="primCmpNat (Succ xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];3313[label="xuu600/Succ xuu6000",fontsize=10,color="white",style="solid",shape="box"];494 -> 3313[label="",style="solid", color="burlywood", weight=9]; 3313 -> 561[label="",style="solid", color="burlywood", weight=3]; 3314[label="xuu600/Zero",fontsize=10,color="white",style="solid",shape="box"];494 -> 3314[label="",style="solid", color="burlywood", weight=9]; 3314 -> 562[label="",style="solid", color="burlywood", weight=3]; 495[label="primCmpNat Zero xuu600",fontsize=16,color="burlywood",shape="box"];3315[label="xuu600/Succ xuu6000",fontsize=10,color="white",style="solid",shape="box"];495 -> 3315[label="",style="solid", color="burlywood", weight=9]; 3315 -> 563[label="",style="solid", color="burlywood", weight=3]; 3316[label="xuu600/Zero",fontsize=10,color="white",style="solid",shape="box"];495 -> 3316[label="",style="solid", color="burlywood", weight=9]; 3316 -> 564[label="",style="solid", color="burlywood", weight=3]; 496 -> 565[label="",style="dashed", color="red", weight=0]; 496[label="compare2 (Left xuu311000) (Left xuu600) (xuu311000 == xuu600)",fontsize=16,color="magenta"];496 -> 566[label="",style="dashed", color="magenta", weight=3]; 496 -> 567[label="",style="dashed", color="magenta", weight=3]; 496 -> 568[label="",style="dashed", color="magenta", weight=3]; 497[label="compare2 (Left xuu311000) (Right xuu600) False",fontsize=16,color="black",shape="box"];497 -> 569[label="",style="solid", color="black", weight=3]; 498[label="compare2 (Right xuu311000) (Left xuu600) False",fontsize=16,color="black",shape="box"];498 -> 570[label="",style="solid", color="black", weight=3]; 499 -> 571[label="",style="dashed", color="red", weight=0]; 499[label="compare2 (Right xuu311000) (Right xuu600) (xuu311000 == xuu600)",fontsize=16,color="magenta"];499 -> 572[label="",style="dashed", color="magenta", weight=3]; 499 -> 573[label="",style="dashed", color="magenta", weight=3]; 499 -> 574[label="",style="dashed", color="magenta", weight=3]; 500[label="xuu311000 * xuu601",fontsize=16,color="burlywood",shape="triangle"];3317[label="xuu311000/Integer xuu3110000",fontsize=10,color="white",style="solid",shape="box"];500 -> 3317[label="",style="solid", color="burlywood", weight=9]; 3317 -> 575[label="",style="solid", color="burlywood", weight=3]; 501 -> 500[label="",style="dashed", color="red", weight=0]; 501[label="xuu600 * xuu311001",fontsize=16,color="magenta"];501 -> 576[label="",style="dashed", color="magenta", weight=3]; 501 -> 577[label="",style="dashed", color="magenta", weight=3]; 502[label="xuu311000 * xuu601",fontsize=16,color="black",shape="triangle"];502 -> 578[label="",style="solid", color="black", weight=3]; 503 -> 502[label="",style="dashed", color="red", weight=0]; 503[label="xuu600 * xuu311001",fontsize=16,color="magenta"];503 -> 579[label="",style="dashed", color="magenta", weight=3]; 503 -> 580[label="",style="dashed", color="magenta", weight=3]; 453[label="False",fontsize=16,color="green",shape="box"];454[label="False",fontsize=16,color="green",shape="box"];455[label="True",fontsize=16,color="green",shape="box"];456[label="FiniteMap.addListToFM0 xuu35 xuu40",fontsize=16,color="black",shape="box"];456 -> 581[label="",style="solid", color="black", weight=3]; 457 -> 1236[label="",style="dashed", color="red", weight=0]; 457[label="primPlusInt (FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42) (FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42)",fontsize=16,color="magenta"];457 -> 1237[label="",style="dashed", color="magenta", weight=3]; 457 -> 1238[label="",style="dashed", color="magenta", weight=3]; 458 -> 583[label="",style="dashed", color="red", weight=0]; 458[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 (FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42)",fontsize=16,color="magenta"];458 -> 584[label="",style="dashed", color="magenta", weight=3]; 459[label="FiniteMap.mkBranch (Pos (Succ Zero)) xuu17 xuu18 xuu42 xuu21",fontsize=16,color="black",shape="box"];459 -> 585[label="",style="solid", color="black", weight=3]; 504[label="EQ",fontsize=16,color="green",shape="box"];505[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];505 -> 586[label="",style="solid", color="black", weight=3]; 506[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];506 -> 587[label="",style="solid", color="black", weight=3]; 507[label="EQ",fontsize=16,color="green",shape="box"];999 -> 1079[label="",style="dashed", color="red", weight=0]; 999[label="xuu311000 == xuu600 && xuu311001 == xuu601",fontsize=16,color="magenta"];999 -> 1080[label="",style="dashed", color="magenta", weight=3]; 999 -> 1081[label="",style="dashed", color="magenta", weight=3]; 1000[label="xuu311000",fontsize=16,color="green",shape="box"];1001[label="xuu600",fontsize=16,color="green",shape="box"];1002[label="xuu311001",fontsize=16,color="green",shape="box"];1003[label="xuu601",fontsize=16,color="green",shape="box"];998[label="compare2 (xuu109,xuu110) (xuu111,xuu112) xuu113",fontsize=16,color="burlywood",shape="triangle"];3318[label="xuu113/False",fontsize=10,color="white",style="solid",shape="box"];998 -> 3318[label="",style="solid", color="burlywood", weight=9]; 3318 -> 1023[label="",style="solid", color="burlywood", weight=3]; 3319[label="xuu113/True",fontsize=10,color="white",style="solid",shape="box"];998 -> 3319[label="",style="solid", color="burlywood", weight=9]; 3319 -> 1024[label="",style="solid", color="burlywood", weight=3]; 515[label="compare xuu311000 xuu600",fontsize=16,color="blue",shape="box"];3320[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];515 -> 3320[label="",style="solid", color="blue", weight=9]; 3320 -> 604[label="",style="solid", color="blue", weight=3]; 3321[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];515 -> 3321[label="",style="solid", color="blue", weight=9]; 3321 -> 605[label="",style="solid", color="blue", weight=3]; 3322[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];515 -> 3322[label="",style="solid", color="blue", weight=9]; 3322 -> 606[label="",style="solid", color="blue", weight=3]; 3323[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];515 -> 3323[label="",style="solid", color="blue", weight=9]; 3323 -> 607[label="",style="solid", color="blue", weight=3]; 3324[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];515 -> 3324[label="",style="solid", color="blue", weight=9]; 3324 -> 608[label="",style="solid", color="blue", weight=3]; 3325[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];515 -> 3325[label="",style="solid", color="blue", weight=9]; 3325 -> 609[label="",style="solid", color="blue", weight=3]; 3326[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];515 -> 3326[label="",style="solid", color="blue", weight=9]; 3326 -> 610[label="",style="solid", color="blue", weight=3]; 3327[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];515 -> 3327[label="",style="solid", color="blue", weight=9]; 3327 -> 611[label="",style="solid", color="blue", weight=3]; 3328[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];515 -> 3328[label="",style="solid", color="blue", weight=9]; 3328 -> 612[label="",style="solid", color="blue", weight=3]; 3329[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];515 -> 3329[label="",style="solid", color="blue", weight=9]; 3329 -> 613[label="",style="solid", color="blue", weight=3]; 3330[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];515 -> 3330[label="",style="solid", color="blue", weight=9]; 3330 -> 614[label="",style="solid", color="blue", weight=3]; 3331[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];515 -> 3331[label="",style="solid", color="blue", weight=9]; 3331 -> 615[label="",style="solid", color="blue", weight=3]; 3332[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];515 -> 3332[label="",style="solid", color="blue", weight=9]; 3332 -> 616[label="",style="solid", color="blue", weight=3]; 3333[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];515 -> 3333[label="",style="solid", color="blue", weight=9]; 3333 -> 617[label="",style="solid", color="blue", weight=3]; 516[label="xuu48",fontsize=16,color="green",shape="box"];514[label="primCompAux0 xuu63 xuu64",fontsize=16,color="burlywood",shape="triangle"];3334[label="xuu64/LT",fontsize=10,color="white",style="solid",shape="box"];514 -> 3334[label="",style="solid", color="burlywood", weight=9]; 3334 -> 618[label="",style="solid", color="burlywood", weight=3]; 3335[label="xuu64/EQ",fontsize=10,color="white",style="solid",shape="box"];514 -> 3335[label="",style="solid", color="burlywood", weight=9]; 3335 -> 619[label="",style="solid", color="burlywood", weight=3]; 3336[label="xuu64/GT",fontsize=10,color="white",style="solid",shape="box"];514 -> 3336[label="",style="solid", color="burlywood", weight=9]; 3336 -> 620[label="",style="solid", color="burlywood", weight=3]; 517[label="EQ",fontsize=16,color="green",shape="box"];518[label="compare1 Nothing (Just xuu600) (Nothing <= Just xuu600)",fontsize=16,color="black",shape="box"];518 -> 621[label="",style="solid", color="black", weight=3]; 519[label="compare1 (Just xuu311000) Nothing (Just xuu311000 <= Nothing)",fontsize=16,color="black",shape="box"];519 -> 622[label="",style="solid", color="black", weight=3]; 521[label="xuu311000",fontsize=16,color="green",shape="box"];522[label="xuu600",fontsize=16,color="green",shape="box"];523[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];3337[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];523 -> 3337[label="",style="solid", color="blue", weight=9]; 3337 -> 623[label="",style="solid", color="blue", weight=3]; 3338[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];523 -> 3338[label="",style="solid", color="blue", weight=9]; 3338 -> 624[label="",style="solid", color="blue", weight=3]; 3339[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];523 -> 3339[label="",style="solid", color="blue", weight=9]; 3339 -> 625[label="",style="solid", color="blue", weight=3]; 3340[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];523 -> 3340[label="",style="solid", color="blue", weight=9]; 3340 -> 626[label="",style="solid", color="blue", weight=3]; 3341[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];523 -> 3341[label="",style="solid", color="blue", weight=9]; 3341 -> 627[label="",style="solid", color="blue", weight=3]; 3342[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];523 -> 3342[label="",style="solid", color="blue", weight=9]; 3342 -> 628[label="",style="solid", color="blue", weight=3]; 3343[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];523 -> 3343[label="",style="solid", color="blue", weight=9]; 3343 -> 629[label="",style="solid", color="blue", weight=3]; 3344[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];523 -> 3344[label="",style="solid", color="blue", weight=9]; 3344 -> 630[label="",style="solid", color="blue", weight=3]; 3345[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];523 -> 3345[label="",style="solid", color="blue", weight=9]; 3345 -> 631[label="",style="solid", color="blue", weight=3]; 3346[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];523 -> 3346[label="",style="solid", color="blue", weight=9]; 3346 -> 632[label="",style="solid", color="blue", weight=3]; 3347[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];523 -> 3347[label="",style="solid", color="blue", weight=9]; 3347 -> 633[label="",style="solid", color="blue", weight=3]; 3348[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];523 -> 3348[label="",style="solid", color="blue", weight=9]; 3348 -> 634[label="",style="solid", color="blue", weight=3]; 3349[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];523 -> 3349[label="",style="solid", color="blue", weight=9]; 3349 -> 635[label="",style="solid", color="blue", weight=3]; 3350[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];523 -> 3350[label="",style="solid", color="blue", weight=9]; 3350 -> 636[label="",style="solid", color="blue", weight=3]; 520[label="compare2 (Just xuu69) (Just xuu70) xuu71",fontsize=16,color="burlywood",shape="triangle"];3351[label="xuu71/False",fontsize=10,color="white",style="solid",shape="box"];520 -> 3351[label="",style="solid", color="burlywood", weight=9]; 3351 -> 637[label="",style="solid", color="burlywood", weight=3]; 3352[label="xuu71/True",fontsize=10,color="white",style="solid",shape="box"];520 -> 3352[label="",style="solid", color="burlywood", weight=9]; 3352 -> 638[label="",style="solid", color="burlywood", weight=3]; 524[label="EQ",fontsize=16,color="green",shape="box"];525[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];525 -> 639[label="",style="solid", color="black", weight=3]; 526[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];526 -> 640[label="",style="solid", color="black", weight=3]; 527[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];527 -> 641[label="",style="solid", color="black", weight=3]; 528[label="EQ",fontsize=16,color="green",shape="box"];529[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];529 -> 642[label="",style="solid", color="black", weight=3]; 530[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];530 -> 643[label="",style="solid", color="black", weight=3]; 531[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];531 -> 644[label="",style="solid", color="black", weight=3]; 532[label="EQ",fontsize=16,color="green",shape="box"];533 -> 244[label="",style="dashed", color="red", weight=0]; 533[label="compare (xuu311000 * Pos xuu6010) (Pos xuu3110010 * xuu600)",fontsize=16,color="magenta"];533 -> 645[label="",style="dashed", color="magenta", weight=3]; 533 -> 646[label="",style="dashed", color="magenta", weight=3]; 534 -> 244[label="",style="dashed", color="red", weight=0]; 534[label="compare (xuu311000 * Pos xuu6010) (Neg xuu3110010 * xuu600)",fontsize=16,color="magenta"];534 -> 647[label="",style="dashed", color="magenta", weight=3]; 534 -> 648[label="",style="dashed", color="magenta", weight=3]; 535 -> 244[label="",style="dashed", color="red", weight=0]; 535[label="compare (xuu311000 * Neg xuu6010) (Pos xuu3110010 * xuu600)",fontsize=16,color="magenta"];535 -> 649[label="",style="dashed", color="magenta", weight=3]; 535 -> 650[label="",style="dashed", color="magenta", weight=3]; 536 -> 244[label="",style="dashed", color="red", weight=0]; 536[label="compare (xuu311000 * Neg xuu6010) (Neg xuu3110010 * xuu600)",fontsize=16,color="magenta"];536 -> 651[label="",style="dashed", color="magenta", weight=3]; 536 -> 652[label="",style="dashed", color="magenta", weight=3]; 537[label="xuu600",fontsize=16,color="green",shape="box"];538[label="Succ xuu3110000",fontsize=16,color="green",shape="box"];539 -> 438[label="",style="dashed", color="red", weight=0]; 539[label="primCmpNat Zero (Succ xuu6000)",fontsize=16,color="magenta"];539 -> 653[label="",style="dashed", color="magenta", weight=3]; 539 -> 654[label="",style="dashed", color="magenta", weight=3]; 540[label="EQ",fontsize=16,color="green",shape="box"];541[label="GT",fontsize=16,color="green",shape="box"];542[label="EQ",fontsize=16,color="green",shape="box"];543[label="Succ xuu3110000",fontsize=16,color="green",shape="box"];544[label="xuu600",fontsize=16,color="green",shape="box"];545[label="LT",fontsize=16,color="green",shape="box"];546[label="EQ",fontsize=16,color="green",shape="box"];547 -> 438[label="",style="dashed", color="red", weight=0]; 547[label="primCmpNat (Succ xuu6000) Zero",fontsize=16,color="magenta"];547 -> 655[label="",style="dashed", color="magenta", weight=3]; 547 -> 656[label="",style="dashed", color="magenta", weight=3]; 548[label="EQ",fontsize=16,color="green",shape="box"];1048[label="xuu311002",fontsize=16,color="green",shape="box"];1049[label="xuu311000",fontsize=16,color="green",shape="box"];1050[label="xuu602",fontsize=16,color="green",shape="box"];1051[label="xuu601",fontsize=16,color="green",shape="box"];1052 -> 1079[label="",style="dashed", color="red", weight=0]; 1052[label="xuu311000 == xuu600 && xuu311001 == xuu601 && xuu311002 == xuu602",fontsize=16,color="magenta"];1052 -> 1082[label="",style="dashed", color="magenta", weight=3]; 1052 -> 1083[label="",style="dashed", color="magenta", weight=3]; 1053[label="xuu311001",fontsize=16,color="green",shape="box"];1054[label="xuu600",fontsize=16,color="green",shape="box"];1047[label="compare2 (xuu80,xuu81,xuu82) (xuu83,xuu84,xuu85) xuu121",fontsize=16,color="burlywood",shape="triangle"];3353[label="xuu121/False",fontsize=10,color="white",style="solid",shape="box"];1047 -> 3353[label="",style="solid", color="burlywood", weight=9]; 3353 -> 1063[label="",style="solid", color="burlywood", weight=3]; 3354[label="xuu121/True",fontsize=10,color="white",style="solid",shape="box"];1047 -> 3354[label="",style="solid", color="burlywood", weight=9]; 3354 -> 1064[label="",style="solid", color="burlywood", weight=3]; 557 -> 244[label="",style="dashed", color="red", weight=0]; 557[label="compare (xuu311000 * Pos xuu6010) (Pos xuu3110010 * xuu600)",fontsize=16,color="magenta"];557 -> 673[label="",style="dashed", color="magenta", weight=3]; 557 -> 674[label="",style="dashed", color="magenta", weight=3]; 558 -> 244[label="",style="dashed", color="red", weight=0]; 558[label="compare (xuu311000 * Pos xuu6010) (Neg xuu3110010 * xuu600)",fontsize=16,color="magenta"];558 -> 675[label="",style="dashed", color="magenta", weight=3]; 558 -> 676[label="",style="dashed", color="magenta", weight=3]; 559 -> 244[label="",style="dashed", color="red", weight=0]; 559[label="compare (xuu311000 * Neg xuu6010) (Pos xuu3110010 * xuu600)",fontsize=16,color="magenta"];559 -> 677[label="",style="dashed", color="magenta", weight=3]; 559 -> 678[label="",style="dashed", color="magenta", weight=3]; 560 -> 244[label="",style="dashed", color="red", weight=0]; 560[label="compare (xuu311000 * Neg xuu6010) (Neg xuu3110010 * xuu600)",fontsize=16,color="magenta"];560 -> 679[label="",style="dashed", color="magenta", weight=3]; 560 -> 680[label="",style="dashed", color="magenta", weight=3]; 561[label="primCmpNat (Succ xuu3110000) (Succ xuu6000)",fontsize=16,color="black",shape="box"];561 -> 681[label="",style="solid", color="black", weight=3]; 562[label="primCmpNat (Succ xuu3110000) Zero",fontsize=16,color="black",shape="box"];562 -> 682[label="",style="solid", color="black", weight=3]; 563[label="primCmpNat Zero (Succ xuu6000)",fontsize=16,color="black",shape="box"];563 -> 683[label="",style="solid", color="black", weight=3]; 564[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];564 -> 684[label="",style="solid", color="black", weight=3]; 566[label="xuu600",fontsize=16,color="green",shape="box"];567[label="xuu311000",fontsize=16,color="green",shape="box"];568[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];3355[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];568 -> 3355[label="",style="solid", color="blue", weight=9]; 3355 -> 685[label="",style="solid", color="blue", weight=3]; 3356[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];568 -> 3356[label="",style="solid", color="blue", weight=9]; 3356 -> 686[label="",style="solid", color="blue", weight=3]; 3357[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];568 -> 3357[label="",style="solid", color="blue", weight=9]; 3357 -> 687[label="",style="solid", color="blue", weight=3]; 3358[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];568 -> 3358[label="",style="solid", color="blue", weight=9]; 3358 -> 688[label="",style="solid", color="blue", weight=3]; 3359[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];568 -> 3359[label="",style="solid", color="blue", weight=9]; 3359 -> 689[label="",style="solid", color="blue", weight=3]; 3360[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];568 -> 3360[label="",style="solid", color="blue", weight=9]; 3360 -> 690[label="",style="solid", color="blue", weight=3]; 3361[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];568 -> 3361[label="",style="solid", color="blue", weight=9]; 3361 -> 691[label="",style="solid", color="blue", weight=3]; 3362[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];568 -> 3362[label="",style="solid", color="blue", weight=9]; 3362 -> 692[label="",style="solid", color="blue", weight=3]; 3363[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];568 -> 3363[label="",style="solid", color="blue", weight=9]; 3363 -> 693[label="",style="solid", color="blue", weight=3]; 3364[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];568 -> 3364[label="",style="solid", color="blue", weight=9]; 3364 -> 694[label="",style="solid", color="blue", weight=3]; 3365[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];568 -> 3365[label="",style="solid", color="blue", weight=9]; 3365 -> 695[label="",style="solid", color="blue", weight=3]; 3366[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];568 -> 3366[label="",style="solid", color="blue", weight=9]; 3366 -> 696[label="",style="solid", color="blue", weight=3]; 3367[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];568 -> 3367[label="",style="solid", color="blue", weight=9]; 3367 -> 697[label="",style="solid", color="blue", weight=3]; 3368[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];568 -> 3368[label="",style="solid", color="blue", weight=9]; 3368 -> 698[label="",style="solid", color="blue", weight=3]; 565[label="compare2 (Left xuu91) (Left xuu92) xuu93",fontsize=16,color="burlywood",shape="triangle"];3369[label="xuu93/False",fontsize=10,color="white",style="solid",shape="box"];565 -> 3369[label="",style="solid", color="burlywood", weight=9]; 3369 -> 699[label="",style="solid", color="burlywood", weight=3]; 3370[label="xuu93/True",fontsize=10,color="white",style="solid",shape="box"];565 -> 3370[label="",style="solid", color="burlywood", weight=9]; 3370 -> 700[label="",style="solid", color="burlywood", weight=3]; 569[label="compare1 (Left xuu311000) (Right xuu600) (Left xuu311000 <= Right xuu600)",fontsize=16,color="black",shape="box"];569 -> 701[label="",style="solid", color="black", weight=3]; 570[label="compare1 (Right xuu311000) (Left xuu600) (Right xuu311000 <= Left xuu600)",fontsize=16,color="black",shape="box"];570 -> 702[label="",style="solid", color="black", weight=3]; 572[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];3371[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];572 -> 3371[label="",style="solid", color="blue", weight=9]; 3371 -> 703[label="",style="solid", color="blue", weight=3]; 3372[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];572 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 704[label="",style="solid", color="blue", weight=3]; 3373[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];572 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 705[label="",style="solid", color="blue", weight=3]; 3374[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];572 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 706[label="",style="solid", color="blue", weight=3]; 3375[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];572 -> 3375[label="",style="solid", color="blue", weight=9]; 3375 -> 707[label="",style="solid", color="blue", weight=3]; 3376[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];572 -> 3376[label="",style="solid", color="blue", weight=9]; 3376 -> 708[label="",style="solid", color="blue", weight=3]; 3377[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];572 -> 3377[label="",style="solid", color="blue", weight=9]; 3377 -> 709[label="",style="solid", color="blue", weight=3]; 3378[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];572 -> 3378[label="",style="solid", color="blue", weight=9]; 3378 -> 710[label="",style="solid", color="blue", weight=3]; 3379[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];572 -> 3379[label="",style="solid", color="blue", weight=9]; 3379 -> 711[label="",style="solid", color="blue", weight=3]; 3380[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];572 -> 3380[label="",style="solid", color="blue", weight=9]; 3380 -> 712[label="",style="solid", color="blue", weight=3]; 3381[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];572 -> 3381[label="",style="solid", color="blue", weight=9]; 3381 -> 713[label="",style="solid", color="blue", weight=3]; 3382[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];572 -> 3382[label="",style="solid", color="blue", weight=9]; 3382 -> 714[label="",style="solid", color="blue", weight=3]; 3383[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];572 -> 3383[label="",style="solid", color="blue", weight=9]; 3383 -> 715[label="",style="solid", color="blue", weight=3]; 3384[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];572 -> 3384[label="",style="solid", color="blue", weight=9]; 3384 -> 716[label="",style="solid", color="blue", weight=3]; 573[label="xuu311000",fontsize=16,color="green",shape="box"];574[label="xuu600",fontsize=16,color="green",shape="box"];571[label="compare2 (Right xuu98) (Right xuu99) xuu100",fontsize=16,color="burlywood",shape="triangle"];3385[label="xuu100/False",fontsize=10,color="white",style="solid",shape="box"];571 -> 3385[label="",style="solid", color="burlywood", weight=9]; 3385 -> 717[label="",style="solid", color="burlywood", weight=3]; 3386[label="xuu100/True",fontsize=10,color="white",style="solid",shape="box"];571 -> 3386[label="",style="solid", color="burlywood", weight=9]; 3386 -> 718[label="",style="solid", color="burlywood", weight=3]; 575[label="Integer xuu3110000 * xuu601",fontsize=16,color="burlywood",shape="box"];3387[label="xuu601/Integer xuu6010",fontsize=10,color="white",style="solid",shape="box"];575 -> 3387[label="",style="solid", color="burlywood", weight=9]; 3387 -> 719[label="",style="solid", color="burlywood", weight=3]; 576[label="xuu311001",fontsize=16,color="green",shape="box"];577[label="xuu600",fontsize=16,color="green",shape="box"];578[label="primMulInt xuu311000 xuu601",fontsize=16,color="burlywood",shape="triangle"];3388[label="xuu311000/Pos xuu3110000",fontsize=10,color="white",style="solid",shape="box"];578 -> 3388[label="",style="solid", color="burlywood", weight=9]; 3388 -> 720[label="",style="solid", color="burlywood", weight=3]; 3389[label="xuu311000/Neg xuu3110000",fontsize=10,color="white",style="solid",shape="box"];578 -> 3389[label="",style="solid", color="burlywood", weight=9]; 3389 -> 721[label="",style="solid", color="burlywood", weight=3]; 579[label="xuu311001",fontsize=16,color="green",shape="box"];580[label="xuu600",fontsize=16,color="green",shape="box"];581[label="xuu40",fontsize=16,color="green",shape="box"];1237[label="FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42",fontsize=16,color="black",shape="triangle"];1237 -> 1246[label="",style="solid", color="black", weight=3]; 1238 -> 725[label="",style="dashed", color="red", weight=0]; 1238[label="FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42",fontsize=16,color="magenta"];1236[label="primPlusInt xuu422 xuu129",fontsize=16,color="burlywood",shape="triangle"];3390[label="xuu422/Pos xuu4220",fontsize=10,color="white",style="solid",shape="box"];1236 -> 3390[label="",style="solid", color="burlywood", weight=9]; 3390 -> 1247[label="",style="solid", color="burlywood", weight=3]; 3391[label="xuu422/Neg xuu4220",fontsize=10,color="white",style="solid",shape="box"];1236 -> 3391[label="",style="solid", color="burlywood", weight=9]; 3391 -> 1248[label="",style="solid", color="burlywood", weight=3]; 584 -> 137[label="",style="dashed", color="red", weight=0]; 584[label="FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42",fontsize=16,color="magenta"];584 -> 724[label="",style="dashed", color="magenta", weight=3]; 584 -> 725[label="",style="dashed", color="magenta", weight=3]; 583[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 xuu101",fontsize=16,color="burlywood",shape="triangle"];3392[label="xuu101/False",fontsize=10,color="white",style="solid",shape="box"];583 -> 3392[label="",style="solid", color="burlywood", weight=9]; 3392 -> 726[label="",style="solid", color="burlywood", weight=3]; 3393[label="xuu101/True",fontsize=10,color="white",style="solid",shape="box"];583 -> 3393[label="",style="solid", color="burlywood", weight=9]; 3393 -> 727[label="",style="solid", color="burlywood", weight=3]; 585[label="FiniteMap.mkBranchResult xuu17 xuu18 xuu21 xuu42",fontsize=16,color="black",shape="triangle"];585 -> 728[label="",style="solid", color="black", weight=3]; 586[label="compare1 False True True",fontsize=16,color="black",shape="box"];586 -> 729[label="",style="solid", color="black", weight=3]; 587[label="compare1 True False False",fontsize=16,color="black",shape="box"];587 -> 730[label="",style="solid", color="black", weight=3]; 1080[label="xuu311001 == xuu601",fontsize=16,color="blue",shape="box"];3394[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3394[label="",style="solid", color="blue", weight=9]; 3394 -> 1088[label="",style="solid", color="blue", weight=3]; 3395[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3395[label="",style="solid", color="blue", weight=9]; 3395 -> 1089[label="",style="solid", color="blue", weight=3]; 3396[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 1090[label="",style="solid", color="blue", weight=3]; 3397[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3397[label="",style="solid", color="blue", weight=9]; 3397 -> 1091[label="",style="solid", color="blue", weight=3]; 3398[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3398[label="",style="solid", color="blue", weight=9]; 3398 -> 1092[label="",style="solid", color="blue", weight=3]; 3399[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3399[label="",style="solid", color="blue", weight=9]; 3399 -> 1093[label="",style="solid", color="blue", weight=3]; 3400[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3400[label="",style="solid", color="blue", weight=9]; 3400 -> 1094[label="",style="solid", color="blue", weight=3]; 3401[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3401[label="",style="solid", color="blue", weight=9]; 3401 -> 1095[label="",style="solid", color="blue", weight=3]; 3402[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3402[label="",style="solid", color="blue", weight=9]; 3402 -> 1096[label="",style="solid", color="blue", weight=3]; 3403[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3403[label="",style="solid", color="blue", weight=9]; 3403 -> 1097[label="",style="solid", color="blue", weight=3]; 3404[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3404[label="",style="solid", color="blue", weight=9]; 3404 -> 1098[label="",style="solid", color="blue", weight=3]; 3405[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 1099[label="",style="solid", color="blue", weight=3]; 3406[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 1100[label="",style="solid", color="blue", weight=3]; 3407[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1080 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 1101[label="",style="solid", color="blue", weight=3]; 1081[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];3408[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 1102[label="",style="solid", color="blue", weight=3]; 3409[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 1103[label="",style="solid", color="blue", weight=3]; 3410[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 1104[label="",style="solid", color="blue", weight=3]; 3411[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 1105[label="",style="solid", color="blue", weight=3]; 3412[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 1106[label="",style="solid", color="blue", weight=3]; 3413[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 1107[label="",style="solid", color="blue", weight=3]; 3414[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 1108[label="",style="solid", color="blue", weight=3]; 3415[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 1109[label="",style="solid", color="blue", weight=3]; 3416[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 3416[label="",style="solid", color="blue", weight=9]; 3416 -> 1110[label="",style="solid", color="blue", weight=3]; 3417[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 1111[label="",style="solid", color="blue", weight=3]; 3418[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 3418[label="",style="solid", color="blue", weight=9]; 3418 -> 1112[label="",style="solid", color="blue", weight=3]; 3419[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 3419[label="",style="solid", color="blue", weight=9]; 3419 -> 1113[label="",style="solid", color="blue", weight=3]; 3420[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 3420[label="",style="solid", color="blue", weight=9]; 3420 -> 1114[label="",style="solid", color="blue", weight=3]; 3421[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1081 -> 3421[label="",style="solid", color="blue", weight=9]; 3421 -> 1115[label="",style="solid", color="blue", weight=3]; 1079[label="xuu126 && xuu127",fontsize=16,color="burlywood",shape="triangle"];3422[label="xuu126/False",fontsize=10,color="white",style="solid",shape="box"];1079 -> 3422[label="",style="solid", color="burlywood", weight=9]; 3422 -> 1116[label="",style="solid", color="burlywood", weight=3]; 3423[label="xuu126/True",fontsize=10,color="white",style="solid",shape="box"];1079 -> 3423[label="",style="solid", color="burlywood", weight=9]; 3423 -> 1117[label="",style="solid", color="burlywood", weight=3]; 1023[label="compare2 (xuu109,xuu110) (xuu111,xuu112) False",fontsize=16,color="black",shape="box"];1023 -> 1118[label="",style="solid", color="black", weight=3]; 1024[label="compare2 (xuu109,xuu110) (xuu111,xuu112) True",fontsize=16,color="black",shape="box"];1024 -> 1119[label="",style="solid", color="black", weight=3]; 604 -> 237[label="",style="dashed", color="red", weight=0]; 604[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];604 -> 753[label="",style="dashed", color="magenta", weight=3]; 604 -> 754[label="",style="dashed", color="magenta", weight=3]; 605 -> 238[label="",style="dashed", color="red", weight=0]; 605[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];605 -> 755[label="",style="dashed", color="magenta", weight=3]; 605 -> 756[label="",style="dashed", color="magenta", weight=3]; 606 -> 239[label="",style="dashed", color="red", weight=0]; 606[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];606 -> 757[label="",style="dashed", color="magenta", weight=3]; 606 -> 758[label="",style="dashed", color="magenta", weight=3]; 607 -> 240[label="",style="dashed", color="red", weight=0]; 607[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];607 -> 759[label="",style="dashed", color="magenta", weight=3]; 607 -> 760[label="",style="dashed", color="magenta", weight=3]; 608 -> 241[label="",style="dashed", color="red", weight=0]; 608[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];608 -> 761[label="",style="dashed", color="magenta", weight=3]; 608 -> 762[label="",style="dashed", color="magenta", weight=3]; 609 -> 242[label="",style="dashed", color="red", weight=0]; 609[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];609 -> 763[label="",style="dashed", color="magenta", weight=3]; 609 -> 764[label="",style="dashed", color="magenta", weight=3]; 610 -> 243[label="",style="dashed", color="red", weight=0]; 610[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];610 -> 765[label="",style="dashed", color="magenta", weight=3]; 610 -> 766[label="",style="dashed", color="magenta", weight=3]; 611 -> 244[label="",style="dashed", color="red", weight=0]; 611[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];611 -> 767[label="",style="dashed", color="magenta", weight=3]; 611 -> 768[label="",style="dashed", color="magenta", weight=3]; 612 -> 245[label="",style="dashed", color="red", weight=0]; 612[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];612 -> 769[label="",style="dashed", color="magenta", weight=3]; 612 -> 770[label="",style="dashed", color="magenta", weight=3]; 613 -> 246[label="",style="dashed", color="red", weight=0]; 613[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];613 -> 771[label="",style="dashed", color="magenta", weight=3]; 613 -> 772[label="",style="dashed", color="magenta", weight=3]; 614 -> 247[label="",style="dashed", color="red", weight=0]; 614[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];614 -> 773[label="",style="dashed", color="magenta", weight=3]; 614 -> 774[label="",style="dashed", color="magenta", weight=3]; 615 -> 248[label="",style="dashed", color="red", weight=0]; 615[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];615 -> 775[label="",style="dashed", color="magenta", weight=3]; 615 -> 776[label="",style="dashed", color="magenta", weight=3]; 616 -> 249[label="",style="dashed", color="red", weight=0]; 616[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];616 -> 777[label="",style="dashed", color="magenta", weight=3]; 616 -> 778[label="",style="dashed", color="magenta", weight=3]; 617 -> 250[label="",style="dashed", color="red", weight=0]; 617[label="compare xuu311000 xuu600",fontsize=16,color="magenta"];617 -> 779[label="",style="dashed", color="magenta", weight=3]; 617 -> 780[label="",style="dashed", color="magenta", weight=3]; 618[label="primCompAux0 xuu63 LT",fontsize=16,color="black",shape="box"];618 -> 781[label="",style="solid", color="black", weight=3]; 619[label="primCompAux0 xuu63 EQ",fontsize=16,color="black",shape="box"];619 -> 782[label="",style="solid", color="black", weight=3]; 620[label="primCompAux0 xuu63 GT",fontsize=16,color="black",shape="box"];620 -> 783[label="",style="solid", color="black", weight=3]; 621[label="compare1 Nothing (Just xuu600) True",fontsize=16,color="black",shape="box"];621 -> 784[label="",style="solid", color="black", weight=3]; 622[label="compare1 (Just xuu311000) Nothing False",fontsize=16,color="black",shape="box"];622 -> 785[label="",style="solid", color="black", weight=3]; 623 -> 588[label="",style="dashed", color="red", weight=0]; 623[label="xuu311000 == xuu600",fontsize=16,color="magenta"];623 -> 786[label="",style="dashed", color="magenta", weight=3]; 623 -> 787[label="",style="dashed", color="magenta", weight=3]; 624 -> 589[label="",style="dashed", color="red", weight=0]; 624[label="xuu311000 == xuu600",fontsize=16,color="magenta"];624 -> 788[label="",style="dashed", color="magenta", weight=3]; 624 -> 789[label="",style="dashed", color="magenta", weight=3]; 625 -> 590[label="",style="dashed", color="red", weight=0]; 625[label="xuu311000 == xuu600",fontsize=16,color="magenta"];625 -> 790[label="",style="dashed", color="magenta", weight=3]; 625 -> 791[label="",style="dashed", color="magenta", weight=3]; 626 -> 591[label="",style="dashed", color="red", weight=0]; 626[label="xuu311000 == xuu600",fontsize=16,color="magenta"];626 -> 792[label="",style="dashed", color="magenta", weight=3]; 626 -> 793[label="",style="dashed", color="magenta", weight=3]; 627 -> 592[label="",style="dashed", color="red", weight=0]; 627[label="xuu311000 == xuu600",fontsize=16,color="magenta"];627 -> 794[label="",style="dashed", color="magenta", weight=3]; 627 -> 795[label="",style="dashed", color="magenta", weight=3]; 628 -> 593[label="",style="dashed", color="red", weight=0]; 628[label="xuu311000 == xuu600",fontsize=16,color="magenta"];628 -> 796[label="",style="dashed", color="magenta", weight=3]; 628 -> 797[label="",style="dashed", color="magenta", weight=3]; 629 -> 594[label="",style="dashed", color="red", weight=0]; 629[label="xuu311000 == xuu600",fontsize=16,color="magenta"];629 -> 798[label="",style="dashed", color="magenta", weight=3]; 629 -> 799[label="",style="dashed", color="magenta", weight=3]; 630 -> 595[label="",style="dashed", color="red", weight=0]; 630[label="xuu311000 == xuu600",fontsize=16,color="magenta"];630 -> 800[label="",style="dashed", color="magenta", weight=3]; 630 -> 801[label="",style="dashed", color="magenta", weight=3]; 631 -> 596[label="",style="dashed", color="red", weight=0]; 631[label="xuu311000 == xuu600",fontsize=16,color="magenta"];631 -> 802[label="",style="dashed", color="magenta", weight=3]; 631 -> 803[label="",style="dashed", color="magenta", weight=3]; 632 -> 597[label="",style="dashed", color="red", weight=0]; 632[label="xuu311000 == xuu600",fontsize=16,color="magenta"];632 -> 804[label="",style="dashed", color="magenta", weight=3]; 632 -> 805[label="",style="dashed", color="magenta", weight=3]; 633 -> 598[label="",style="dashed", color="red", weight=0]; 633[label="xuu311000 == xuu600",fontsize=16,color="magenta"];633 -> 806[label="",style="dashed", color="magenta", weight=3]; 633 -> 807[label="",style="dashed", color="magenta", weight=3]; 634 -> 599[label="",style="dashed", color="red", weight=0]; 634[label="xuu311000 == xuu600",fontsize=16,color="magenta"];634 -> 808[label="",style="dashed", color="magenta", weight=3]; 634 -> 809[label="",style="dashed", color="magenta", weight=3]; 635 -> 600[label="",style="dashed", color="red", weight=0]; 635[label="xuu311000 == xuu600",fontsize=16,color="magenta"];635 -> 810[label="",style="dashed", color="magenta", weight=3]; 635 -> 811[label="",style="dashed", color="magenta", weight=3]; 636 -> 601[label="",style="dashed", color="red", weight=0]; 636[label="xuu311000 == xuu600",fontsize=16,color="magenta"];636 -> 812[label="",style="dashed", color="magenta", weight=3]; 636 -> 813[label="",style="dashed", color="magenta", weight=3]; 637[label="compare2 (Just xuu69) (Just xuu70) False",fontsize=16,color="black",shape="box"];637 -> 814[label="",style="solid", color="black", weight=3]; 638[label="compare2 (Just xuu69) (Just xuu70) True",fontsize=16,color="black",shape="box"];638 -> 815[label="",style="solid", color="black", weight=3]; 639[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];639 -> 816[label="",style="solid", color="black", weight=3]; 640[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];640 -> 817[label="",style="solid", color="black", weight=3]; 641[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];641 -> 818[label="",style="solid", color="black", weight=3]; 642[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];642 -> 819[label="",style="solid", color="black", weight=3]; 643[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];643 -> 820[label="",style="solid", color="black", weight=3]; 644[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];644 -> 821[label="",style="solid", color="black", weight=3]; 645 -> 502[label="",style="dashed", color="red", weight=0]; 645[label="xuu311000 * Pos xuu6010",fontsize=16,color="magenta"];645 -> 822[label="",style="dashed", color="magenta", weight=3]; 645 -> 823[label="",style="dashed", color="magenta", weight=3]; 646 -> 502[label="",style="dashed", color="red", weight=0]; 646[label="Pos xuu3110010 * xuu600",fontsize=16,color="magenta"];646 -> 824[label="",style="dashed", color="magenta", weight=3]; 646 -> 825[label="",style="dashed", color="magenta", weight=3]; 647 -> 502[label="",style="dashed", color="red", weight=0]; 647[label="xuu311000 * Pos xuu6010",fontsize=16,color="magenta"];647 -> 826[label="",style="dashed", color="magenta", weight=3]; 647 -> 827[label="",style="dashed", color="magenta", weight=3]; 648 -> 502[label="",style="dashed", color="red", weight=0]; 648[label="Neg xuu3110010 * xuu600",fontsize=16,color="magenta"];648 -> 828[label="",style="dashed", color="magenta", weight=3]; 648 -> 829[label="",style="dashed", color="magenta", weight=3]; 649 -> 502[label="",style="dashed", color="red", weight=0]; 649[label="xuu311000 * Neg xuu6010",fontsize=16,color="magenta"];649 -> 830[label="",style="dashed", color="magenta", weight=3]; 649 -> 831[label="",style="dashed", color="magenta", weight=3]; 650 -> 502[label="",style="dashed", color="red", weight=0]; 650[label="Pos xuu3110010 * xuu600",fontsize=16,color="magenta"];650 -> 832[label="",style="dashed", color="magenta", weight=3]; 650 -> 833[label="",style="dashed", color="magenta", weight=3]; 651 -> 502[label="",style="dashed", color="red", weight=0]; 651[label="xuu311000 * Neg xuu6010",fontsize=16,color="magenta"];651 -> 834[label="",style="dashed", color="magenta", weight=3]; 651 -> 835[label="",style="dashed", color="magenta", weight=3]; 652 -> 502[label="",style="dashed", color="red", weight=0]; 652[label="Neg xuu3110010 * xuu600",fontsize=16,color="magenta"];652 -> 836[label="",style="dashed", color="magenta", weight=3]; 652 -> 837[label="",style="dashed", color="magenta", weight=3]; 653[label="Succ xuu6000",fontsize=16,color="green",shape="box"];654[label="Zero",fontsize=16,color="green",shape="box"];655[label="Zero",fontsize=16,color="green",shape="box"];656[label="Succ xuu6000",fontsize=16,color="green",shape="box"];1082 -> 1079[label="",style="dashed", color="red", weight=0]; 1082[label="xuu311001 == xuu601 && xuu311002 == xuu602",fontsize=16,color="magenta"];1082 -> 1120[label="",style="dashed", color="magenta", weight=3]; 1082 -> 1121[label="",style="dashed", color="magenta", weight=3]; 1083[label="xuu311000 == xuu600",fontsize=16,color="blue",shape="box"];3424[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3424[label="",style="solid", color="blue", weight=9]; 3424 -> 1122[label="",style="solid", color="blue", weight=3]; 3425[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3425[label="",style="solid", color="blue", weight=9]; 3425 -> 1123[label="",style="solid", color="blue", weight=3]; 3426[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3426[label="",style="solid", color="blue", weight=9]; 3426 -> 1124[label="",style="solid", color="blue", weight=3]; 3427[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3427[label="",style="solid", color="blue", weight=9]; 3427 -> 1125[label="",style="solid", color="blue", weight=3]; 3428[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3428[label="",style="solid", color="blue", weight=9]; 3428 -> 1126[label="",style="solid", color="blue", weight=3]; 3429[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3429[label="",style="solid", color="blue", weight=9]; 3429 -> 1127[label="",style="solid", color="blue", weight=3]; 3430[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3430[label="",style="solid", color="blue", weight=9]; 3430 -> 1128[label="",style="solid", color="blue", weight=3]; 3431[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3431[label="",style="solid", color="blue", weight=9]; 3431 -> 1129[label="",style="solid", color="blue", weight=3]; 3432[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3432[label="",style="solid", color="blue", weight=9]; 3432 -> 1130[label="",style="solid", color="blue", weight=3]; 3433[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3433[label="",style="solid", color="blue", weight=9]; 3433 -> 1131[label="",style="solid", color="blue", weight=3]; 3434[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3434[label="",style="solid", color="blue", weight=9]; 3434 -> 1132[label="",style="solid", color="blue", weight=3]; 3435[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3435[label="",style="solid", color="blue", weight=9]; 3435 -> 1133[label="",style="solid", color="blue", weight=3]; 3436[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3436[label="",style="solid", color="blue", weight=9]; 3436 -> 1134[label="",style="solid", color="blue", weight=3]; 3437[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1083 -> 3437[label="",style="solid", color="blue", weight=9]; 3437 -> 1135[label="",style="solid", color="blue", weight=3]; 1063[label="compare2 (xuu80,xuu81,xuu82) (xuu83,xuu84,xuu85) False",fontsize=16,color="black",shape="box"];1063 -> 1136[label="",style="solid", color="black", weight=3]; 1064[label="compare2 (xuu80,xuu81,xuu82) (xuu83,xuu84,xuu85) True",fontsize=16,color="black",shape="box"];1064 -> 1137[label="",style="solid", color="black", weight=3]; 673 -> 502[label="",style="dashed", color="red", weight=0]; 673[label="xuu311000 * Pos xuu6010",fontsize=16,color="magenta"];673 -> 868[label="",style="dashed", color="magenta", weight=3]; 673 -> 869[label="",style="dashed", color="magenta", weight=3]; 674 -> 502[label="",style="dashed", color="red", weight=0]; 674[label="Pos xuu3110010 * xuu600",fontsize=16,color="magenta"];674 -> 870[label="",style="dashed", color="magenta", weight=3]; 674 -> 871[label="",style="dashed", color="magenta", weight=3]; 675 -> 502[label="",style="dashed", color="red", weight=0]; 675[label="xuu311000 * Pos xuu6010",fontsize=16,color="magenta"];675 -> 872[label="",style="dashed", color="magenta", weight=3]; 675 -> 873[label="",style="dashed", color="magenta", weight=3]; 676 -> 502[label="",style="dashed", color="red", weight=0]; 676[label="Neg xuu3110010 * xuu600",fontsize=16,color="magenta"];676 -> 874[label="",style="dashed", color="magenta", weight=3]; 676 -> 875[label="",style="dashed", color="magenta", weight=3]; 677 -> 502[label="",style="dashed", color="red", weight=0]; 677[label="xuu311000 * Neg xuu6010",fontsize=16,color="magenta"];677 -> 876[label="",style="dashed", color="magenta", weight=3]; 677 -> 877[label="",style="dashed", color="magenta", weight=3]; 678 -> 502[label="",style="dashed", color="red", weight=0]; 678[label="Pos xuu3110010 * xuu600",fontsize=16,color="magenta"];678 -> 878[label="",style="dashed", color="magenta", weight=3]; 678 -> 879[label="",style="dashed", color="magenta", weight=3]; 679 -> 502[label="",style="dashed", color="red", weight=0]; 679[label="xuu311000 * Neg xuu6010",fontsize=16,color="magenta"];679 -> 880[label="",style="dashed", color="magenta", weight=3]; 679 -> 881[label="",style="dashed", color="magenta", weight=3]; 680 -> 502[label="",style="dashed", color="red", weight=0]; 680[label="Neg xuu3110010 * xuu600",fontsize=16,color="magenta"];680 -> 882[label="",style="dashed", color="magenta", weight=3]; 680 -> 883[label="",style="dashed", color="magenta", weight=3]; 681 -> 438[label="",style="dashed", color="red", weight=0]; 681[label="primCmpNat xuu3110000 xuu6000",fontsize=16,color="magenta"];681 -> 884[label="",style="dashed", color="magenta", weight=3]; 681 -> 885[label="",style="dashed", color="magenta", weight=3]; 682[label="GT",fontsize=16,color="green",shape="box"];683[label="LT",fontsize=16,color="green",shape="box"];684[label="EQ",fontsize=16,color="green",shape="box"];685 -> 588[label="",style="dashed", color="red", weight=0]; 685[label="xuu311000 == xuu600",fontsize=16,color="magenta"];685 -> 886[label="",style="dashed", color="magenta", weight=3]; 685 -> 887[label="",style="dashed", color="magenta", weight=3]; 686 -> 589[label="",style="dashed", color="red", weight=0]; 686[label="xuu311000 == xuu600",fontsize=16,color="magenta"];686 -> 888[label="",style="dashed", color="magenta", weight=3]; 686 -> 889[label="",style="dashed", color="magenta", weight=3]; 687 -> 590[label="",style="dashed", color="red", weight=0]; 687[label="xuu311000 == xuu600",fontsize=16,color="magenta"];687 -> 890[label="",style="dashed", color="magenta", weight=3]; 687 -> 891[label="",style="dashed", color="magenta", weight=3]; 688 -> 591[label="",style="dashed", color="red", weight=0]; 688[label="xuu311000 == xuu600",fontsize=16,color="magenta"];688 -> 892[label="",style="dashed", color="magenta", weight=3]; 688 -> 893[label="",style="dashed", color="magenta", weight=3]; 689 -> 592[label="",style="dashed", color="red", weight=0]; 689[label="xuu311000 == xuu600",fontsize=16,color="magenta"];689 -> 894[label="",style="dashed", color="magenta", weight=3]; 689 -> 895[label="",style="dashed", color="magenta", weight=3]; 690 -> 593[label="",style="dashed", color="red", weight=0]; 690[label="xuu311000 == xuu600",fontsize=16,color="magenta"];690 -> 896[label="",style="dashed", color="magenta", weight=3]; 690 -> 897[label="",style="dashed", color="magenta", weight=3]; 691 -> 594[label="",style="dashed", color="red", weight=0]; 691[label="xuu311000 == xuu600",fontsize=16,color="magenta"];691 -> 898[label="",style="dashed", color="magenta", weight=3]; 691 -> 899[label="",style="dashed", color="magenta", weight=3]; 692 -> 595[label="",style="dashed", color="red", weight=0]; 692[label="xuu311000 == xuu600",fontsize=16,color="magenta"];692 -> 900[label="",style="dashed", color="magenta", weight=3]; 692 -> 901[label="",style="dashed", color="magenta", weight=3]; 693 -> 596[label="",style="dashed", color="red", weight=0]; 693[label="xuu311000 == xuu600",fontsize=16,color="magenta"];693 -> 902[label="",style="dashed", color="magenta", weight=3]; 693 -> 903[label="",style="dashed", color="magenta", weight=3]; 694 -> 597[label="",style="dashed", color="red", weight=0]; 694[label="xuu311000 == xuu600",fontsize=16,color="magenta"];694 -> 904[label="",style="dashed", color="magenta", weight=3]; 694 -> 905[label="",style="dashed", color="magenta", weight=3]; 695 -> 598[label="",style="dashed", color="red", weight=0]; 695[label="xuu311000 == xuu600",fontsize=16,color="magenta"];695 -> 906[label="",style="dashed", color="magenta", weight=3]; 695 -> 907[label="",style="dashed", color="magenta", weight=3]; 696 -> 599[label="",style="dashed", color="red", weight=0]; 696[label="xuu311000 == xuu600",fontsize=16,color="magenta"];696 -> 908[label="",style="dashed", color="magenta", weight=3]; 696 -> 909[label="",style="dashed", color="magenta", weight=3]; 697 -> 600[label="",style="dashed", color="red", weight=0]; 697[label="xuu311000 == xuu600",fontsize=16,color="magenta"];697 -> 910[label="",style="dashed", color="magenta", weight=3]; 697 -> 911[label="",style="dashed", color="magenta", weight=3]; 698 -> 601[label="",style="dashed", color="red", weight=0]; 698[label="xuu311000 == xuu600",fontsize=16,color="magenta"];698 -> 912[label="",style="dashed", color="magenta", weight=3]; 698 -> 913[label="",style="dashed", color="magenta", weight=3]; 699[label="compare2 (Left xuu91) (Left xuu92) False",fontsize=16,color="black",shape="box"];699 -> 914[label="",style="solid", color="black", weight=3]; 700[label="compare2 (Left xuu91) (Left xuu92) True",fontsize=16,color="black",shape="box"];700 -> 915[label="",style="solid", color="black", weight=3]; 701[label="compare1 (Left xuu311000) (Right xuu600) True",fontsize=16,color="black",shape="box"];701 -> 916[label="",style="solid", color="black", weight=3]; 702[label="compare1 (Right xuu311000) (Left xuu600) False",fontsize=16,color="black",shape="box"];702 -> 917[label="",style="solid", color="black", weight=3]; 703 -> 588[label="",style="dashed", color="red", weight=0]; 703[label="xuu311000 == xuu600",fontsize=16,color="magenta"];703 -> 918[label="",style="dashed", color="magenta", weight=3]; 703 -> 919[label="",style="dashed", color="magenta", weight=3]; 704 -> 589[label="",style="dashed", color="red", weight=0]; 704[label="xuu311000 == xuu600",fontsize=16,color="magenta"];704 -> 920[label="",style="dashed", color="magenta", weight=3]; 704 -> 921[label="",style="dashed", color="magenta", weight=3]; 705 -> 590[label="",style="dashed", color="red", weight=0]; 705[label="xuu311000 == xuu600",fontsize=16,color="magenta"];705 -> 922[label="",style="dashed", color="magenta", weight=3]; 705 -> 923[label="",style="dashed", color="magenta", weight=3]; 706 -> 591[label="",style="dashed", color="red", weight=0]; 706[label="xuu311000 == xuu600",fontsize=16,color="magenta"];706 -> 924[label="",style="dashed", color="magenta", weight=3]; 706 -> 925[label="",style="dashed", color="magenta", weight=3]; 707 -> 592[label="",style="dashed", color="red", weight=0]; 707[label="xuu311000 == xuu600",fontsize=16,color="magenta"];707 -> 926[label="",style="dashed", color="magenta", weight=3]; 707 -> 927[label="",style="dashed", color="magenta", weight=3]; 708 -> 593[label="",style="dashed", color="red", weight=0]; 708[label="xuu311000 == xuu600",fontsize=16,color="magenta"];708 -> 928[label="",style="dashed", color="magenta", weight=3]; 708 -> 929[label="",style="dashed", color="magenta", weight=3]; 709 -> 594[label="",style="dashed", color="red", weight=0]; 709[label="xuu311000 == xuu600",fontsize=16,color="magenta"];709 -> 930[label="",style="dashed", color="magenta", weight=3]; 709 -> 931[label="",style="dashed", color="magenta", weight=3]; 710 -> 595[label="",style="dashed", color="red", weight=0]; 710[label="xuu311000 == xuu600",fontsize=16,color="magenta"];710 -> 932[label="",style="dashed", color="magenta", weight=3]; 710 -> 933[label="",style="dashed", color="magenta", weight=3]; 711 -> 596[label="",style="dashed", color="red", weight=0]; 711[label="xuu311000 == xuu600",fontsize=16,color="magenta"];711 -> 934[label="",style="dashed", color="magenta", weight=3]; 711 -> 935[label="",style="dashed", color="magenta", weight=3]; 712 -> 597[label="",style="dashed", color="red", weight=0]; 712[label="xuu311000 == xuu600",fontsize=16,color="magenta"];712 -> 936[label="",style="dashed", color="magenta", weight=3]; 712 -> 937[label="",style="dashed", color="magenta", weight=3]; 713 -> 598[label="",style="dashed", color="red", weight=0]; 713[label="xuu311000 == xuu600",fontsize=16,color="magenta"];713 -> 938[label="",style="dashed", color="magenta", weight=3]; 713 -> 939[label="",style="dashed", color="magenta", weight=3]; 714 -> 599[label="",style="dashed", color="red", weight=0]; 714[label="xuu311000 == xuu600",fontsize=16,color="magenta"];714 -> 940[label="",style="dashed", color="magenta", weight=3]; 714 -> 941[label="",style="dashed", color="magenta", weight=3]; 715 -> 600[label="",style="dashed", color="red", weight=0]; 715[label="xuu311000 == xuu600",fontsize=16,color="magenta"];715 -> 942[label="",style="dashed", color="magenta", weight=3]; 715 -> 943[label="",style="dashed", color="magenta", weight=3]; 716 -> 601[label="",style="dashed", color="red", weight=0]; 716[label="xuu311000 == xuu600",fontsize=16,color="magenta"];716 -> 944[label="",style="dashed", color="magenta", weight=3]; 716 -> 945[label="",style="dashed", color="magenta", weight=3]; 717[label="compare2 (Right xuu98) (Right xuu99) False",fontsize=16,color="black",shape="box"];717 -> 946[label="",style="solid", color="black", weight=3]; 718[label="compare2 (Right xuu98) (Right xuu99) True",fontsize=16,color="black",shape="box"];718 -> 947[label="",style="solid", color="black", weight=3]; 719[label="Integer xuu3110000 * Integer xuu6010",fontsize=16,color="black",shape="box"];719 -> 948[label="",style="solid", color="black", weight=3]; 720[label="primMulInt (Pos xuu3110000) xuu601",fontsize=16,color="burlywood",shape="box"];3438[label="xuu601/Pos xuu6010",fontsize=10,color="white",style="solid",shape="box"];720 -> 3438[label="",style="solid", color="burlywood", weight=9]; 3438 -> 949[label="",style="solid", color="burlywood", weight=3]; 3439[label="xuu601/Neg xuu6010",fontsize=10,color="white",style="solid",shape="box"];720 -> 3439[label="",style="solid", color="burlywood", weight=9]; 3439 -> 950[label="",style="solid", color="burlywood", weight=3]; 721[label="primMulInt (Neg xuu3110000) xuu601",fontsize=16,color="burlywood",shape="box"];3440[label="xuu601/Pos xuu6010",fontsize=10,color="white",style="solid",shape="box"];721 -> 3440[label="",style="solid", color="burlywood", weight=9]; 3440 -> 951[label="",style="solid", color="burlywood", weight=3]; 3441[label="xuu601/Neg xuu6010",fontsize=10,color="white",style="solid",shape="box"];721 -> 3441[label="",style="solid", color="burlywood", weight=9]; 3441 -> 952[label="",style="solid", color="burlywood", weight=3]; 1246 -> 957[label="",style="dashed", color="red", weight=0]; 1246[label="FiniteMap.sizeFM xuu42",fontsize=16,color="magenta"];1246 -> 1254[label="",style="dashed", color="magenta", weight=3]; 725[label="FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42",fontsize=16,color="black",shape="triangle"];725 -> 957[label="",style="solid", color="black", weight=3]; 1247[label="primPlusInt (Pos xuu4220) xuu129",fontsize=16,color="burlywood",shape="box"];3442[label="xuu129/Pos xuu1290",fontsize=10,color="white",style="solid",shape="box"];1247 -> 3442[label="",style="solid", color="burlywood", weight=9]; 3442 -> 1255[label="",style="solid", color="burlywood", weight=3]; 3443[label="xuu129/Neg xuu1290",fontsize=10,color="white",style="solid",shape="box"];1247 -> 3443[label="",style="solid", color="burlywood", weight=9]; 3443 -> 1256[label="",style="solid", color="burlywood", weight=3]; 1248[label="primPlusInt (Neg xuu4220) xuu129",fontsize=16,color="burlywood",shape="box"];3444[label="xuu129/Pos xuu1290",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3444[label="",style="solid", color="burlywood", weight=9]; 3444 -> 1257[label="",style="solid", color="burlywood", weight=3]; 3445[label="xuu129/Neg xuu1290",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3445[label="",style="solid", color="burlywood", weight=9]; 3445 -> 1258[label="",style="solid", color="burlywood", weight=3]; 724 -> 502[label="",style="dashed", color="red", weight=0]; 724[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42",fontsize=16,color="magenta"];724 -> 955[label="",style="dashed", color="magenta", weight=3]; 724 -> 956[label="",style="dashed", color="magenta", weight=3]; 726[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 False",fontsize=16,color="black",shape="box"];726 -> 958[label="",style="solid", color="black", weight=3]; 727[label="FiniteMap.mkBalBranch6MkBalBranch4 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 True",fontsize=16,color="black",shape="box"];727 -> 959[label="",style="solid", color="black", weight=3]; 728[label="FiniteMap.Branch xuu17 xuu18 (FiniteMap.mkBranchUnbox xuu21 xuu17 xuu42 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu21 xuu17 xuu42 + FiniteMap.mkBranchRight_size xuu21 xuu17 xuu42)) xuu42 xuu21",fontsize=16,color="green",shape="box"];728 -> 960[label="",style="dashed", color="green", weight=3]; 729[label="LT",fontsize=16,color="green",shape="box"];730[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];730 -> 961[label="",style="solid", color="black", weight=3]; 1088 -> 588[label="",style="dashed", color="red", weight=0]; 1088[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1088 -> 1148[label="",style="dashed", color="magenta", weight=3]; 1088 -> 1149[label="",style="dashed", color="magenta", weight=3]; 1089 -> 589[label="",style="dashed", color="red", weight=0]; 1089[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1089 -> 1150[label="",style="dashed", color="magenta", weight=3]; 1089 -> 1151[label="",style="dashed", color="magenta", weight=3]; 1090 -> 590[label="",style="dashed", color="red", weight=0]; 1090[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1090 -> 1152[label="",style="dashed", color="magenta", weight=3]; 1090 -> 1153[label="",style="dashed", color="magenta", weight=3]; 1091 -> 591[label="",style="dashed", color="red", weight=0]; 1091[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1091 -> 1154[label="",style="dashed", color="magenta", weight=3]; 1091 -> 1155[label="",style="dashed", color="magenta", weight=3]; 1092 -> 592[label="",style="dashed", color="red", weight=0]; 1092[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1092 -> 1156[label="",style="dashed", color="magenta", weight=3]; 1092 -> 1157[label="",style="dashed", color="magenta", weight=3]; 1093 -> 593[label="",style="dashed", color="red", weight=0]; 1093[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1093 -> 1158[label="",style="dashed", color="magenta", weight=3]; 1093 -> 1159[label="",style="dashed", color="magenta", weight=3]; 1094 -> 594[label="",style="dashed", color="red", weight=0]; 1094[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1094 -> 1160[label="",style="dashed", color="magenta", weight=3]; 1094 -> 1161[label="",style="dashed", color="magenta", weight=3]; 1095 -> 595[label="",style="dashed", color="red", weight=0]; 1095[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1095 -> 1162[label="",style="dashed", color="magenta", weight=3]; 1095 -> 1163[label="",style="dashed", color="magenta", weight=3]; 1096 -> 596[label="",style="dashed", color="red", weight=0]; 1096[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1096 -> 1164[label="",style="dashed", color="magenta", weight=3]; 1096 -> 1165[label="",style="dashed", color="magenta", weight=3]; 1097 -> 597[label="",style="dashed", color="red", weight=0]; 1097[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1097 -> 1166[label="",style="dashed", color="magenta", weight=3]; 1097 -> 1167[label="",style="dashed", color="magenta", weight=3]; 1098 -> 598[label="",style="dashed", color="red", weight=0]; 1098[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1098 -> 1168[label="",style="dashed", color="magenta", weight=3]; 1098 -> 1169[label="",style="dashed", color="magenta", weight=3]; 1099 -> 599[label="",style="dashed", color="red", weight=0]; 1099[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1099 -> 1170[label="",style="dashed", color="magenta", weight=3]; 1099 -> 1171[label="",style="dashed", color="magenta", weight=3]; 1100 -> 600[label="",style="dashed", color="red", weight=0]; 1100[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1100 -> 1172[label="",style="dashed", color="magenta", weight=3]; 1100 -> 1173[label="",style="dashed", color="magenta", weight=3]; 1101 -> 601[label="",style="dashed", color="red", weight=0]; 1101[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1101 -> 1174[label="",style="dashed", color="magenta", weight=3]; 1101 -> 1175[label="",style="dashed", color="magenta", weight=3]; 1102 -> 588[label="",style="dashed", color="red", weight=0]; 1102[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1103 -> 589[label="",style="dashed", color="red", weight=0]; 1103[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1104 -> 590[label="",style="dashed", color="red", weight=0]; 1104[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1105 -> 591[label="",style="dashed", color="red", weight=0]; 1105[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1106 -> 592[label="",style="dashed", color="red", weight=0]; 1106[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1107 -> 593[label="",style="dashed", color="red", weight=0]; 1107[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1108 -> 594[label="",style="dashed", color="red", weight=0]; 1108[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1109 -> 595[label="",style="dashed", color="red", weight=0]; 1109[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1110 -> 596[label="",style="dashed", color="red", weight=0]; 1110[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1111 -> 597[label="",style="dashed", color="red", weight=0]; 1111[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1112 -> 598[label="",style="dashed", color="red", weight=0]; 1112[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1113 -> 599[label="",style="dashed", color="red", weight=0]; 1113[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1114 -> 600[label="",style="dashed", color="red", weight=0]; 1114[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1115 -> 601[label="",style="dashed", color="red", weight=0]; 1115[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1116[label="False && xuu127",fontsize=16,color="black",shape="box"];1116 -> 1176[label="",style="solid", color="black", weight=3]; 1117[label="True && xuu127",fontsize=16,color="black",shape="box"];1117 -> 1177[label="",style="solid", color="black", weight=3]; 1118[label="compare1 (xuu109,xuu110) (xuu111,xuu112) ((xuu109,xuu110) <= (xuu111,xuu112))",fontsize=16,color="black",shape="box"];1118 -> 1178[label="",style="solid", color="black", weight=3]; 1119[label="EQ",fontsize=16,color="green",shape="box"];753[label="xuu311000",fontsize=16,color="green",shape="box"];754[label="xuu600",fontsize=16,color="green",shape="box"];755[label="xuu311000",fontsize=16,color="green",shape="box"];756[label="xuu600",fontsize=16,color="green",shape="box"];757[label="xuu311000",fontsize=16,color="green",shape="box"];758[label="xuu600",fontsize=16,color="green",shape="box"];759[label="xuu311000",fontsize=16,color="green",shape="box"];760[label="xuu600",fontsize=16,color="green",shape="box"];761[label="xuu311000",fontsize=16,color="green",shape="box"];762[label="xuu600",fontsize=16,color="green",shape="box"];763[label="xuu311000",fontsize=16,color="green",shape="box"];764[label="xuu600",fontsize=16,color="green",shape="box"];765[label="xuu311000",fontsize=16,color="green",shape="box"];766[label="xuu600",fontsize=16,color="green",shape="box"];767[label="xuu311000",fontsize=16,color="green",shape="box"];768[label="xuu600",fontsize=16,color="green",shape="box"];769[label="xuu311000",fontsize=16,color="green",shape="box"];770[label="xuu600",fontsize=16,color="green",shape="box"];771[label="xuu311000",fontsize=16,color="green",shape="box"];772[label="xuu600",fontsize=16,color="green",shape="box"];773[label="xuu311000",fontsize=16,color="green",shape="box"];774[label="xuu600",fontsize=16,color="green",shape="box"];775[label="xuu311000",fontsize=16,color="green",shape="box"];776[label="xuu600",fontsize=16,color="green",shape="box"];777[label="xuu311000",fontsize=16,color="green",shape="box"];778[label="xuu600",fontsize=16,color="green",shape="box"];779[label="xuu311000",fontsize=16,color="green",shape="box"];780[label="xuu600",fontsize=16,color="green",shape="box"];781[label="LT",fontsize=16,color="green",shape="box"];782[label="xuu63",fontsize=16,color="green",shape="box"];783[label="GT",fontsize=16,color="green",shape="box"];784[label="LT",fontsize=16,color="green",shape="box"];785[label="compare0 (Just xuu311000) Nothing otherwise",fontsize=16,color="black",shape="box"];785 -> 1041[label="",style="solid", color="black", weight=3]; 786[label="xuu600",fontsize=16,color="green",shape="box"];787[label="xuu311000",fontsize=16,color="green",shape="box"];588[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3446[label="xuu311000/xuu3110000 : xuu3110001",fontsize=10,color="white",style="solid",shape="box"];588 -> 3446[label="",style="solid", color="burlywood", weight=9]; 3446 -> 731[label="",style="solid", color="burlywood", weight=3]; 3447[label="xuu311000/[]",fontsize=10,color="white",style="solid",shape="box"];588 -> 3447[label="",style="solid", color="burlywood", weight=9]; 3447 -> 732[label="",style="solid", color="burlywood", weight=3]; 788[label="xuu600",fontsize=16,color="green",shape="box"];789[label="xuu311000",fontsize=16,color="green",shape="box"];589[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];589 -> 733[label="",style="solid", color="black", weight=3]; 790[label="xuu600",fontsize=16,color="green",shape="box"];791[label="xuu311000",fontsize=16,color="green",shape="box"];590[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];590 -> 734[label="",style="solid", color="black", weight=3]; 792[label="xuu600",fontsize=16,color="green",shape="box"];793[label="xuu311000",fontsize=16,color="green",shape="box"];591[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3448[label="xuu311000/()",fontsize=10,color="white",style="solid",shape="box"];591 -> 3448[label="",style="solid", color="burlywood", weight=9]; 3448 -> 735[label="",style="solid", color="burlywood", weight=3]; 794[label="xuu600",fontsize=16,color="green",shape="box"];795[label="xuu311000",fontsize=16,color="green",shape="box"];592[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3449[label="xuu311000/False",fontsize=10,color="white",style="solid",shape="box"];592 -> 3449[label="",style="solid", color="burlywood", weight=9]; 3449 -> 736[label="",style="solid", color="burlywood", weight=3]; 3450[label="xuu311000/True",fontsize=10,color="white",style="solid",shape="box"];592 -> 3450[label="",style="solid", color="burlywood", weight=9]; 3450 -> 737[label="",style="solid", color="burlywood", weight=3]; 796[label="xuu600",fontsize=16,color="green",shape="box"];797[label="xuu311000",fontsize=16,color="green",shape="box"];593[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];593 -> 738[label="",style="solid", color="black", weight=3]; 798[label="xuu600",fontsize=16,color="green",shape="box"];799[label="xuu311000",fontsize=16,color="green",shape="box"];594[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3451[label="xuu311000/Left xuu3110000",fontsize=10,color="white",style="solid",shape="box"];594 -> 3451[label="",style="solid", color="burlywood", weight=9]; 3451 -> 739[label="",style="solid", color="burlywood", weight=3]; 3452[label="xuu311000/Right xuu3110000",fontsize=10,color="white",style="solid",shape="box"];594 -> 3452[label="",style="solid", color="burlywood", weight=9]; 3452 -> 740[label="",style="solid", color="burlywood", weight=3]; 800[label="xuu600",fontsize=16,color="green",shape="box"];801[label="xuu311000",fontsize=16,color="green",shape="box"];595[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3453[label="xuu311000/(xuu3110000,xuu3110001)",fontsize=10,color="white",style="solid",shape="box"];595 -> 3453[label="",style="solid", color="burlywood", weight=9]; 3453 -> 741[label="",style="solid", color="burlywood", weight=3]; 802[label="xuu600",fontsize=16,color="green",shape="box"];803[label="xuu311000",fontsize=16,color="green",shape="box"];596[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3454[label="xuu311000/Integer xuu3110000",fontsize=10,color="white",style="solid",shape="box"];596 -> 3454[label="",style="solid", color="burlywood", weight=9]; 3454 -> 742[label="",style="solid", color="burlywood", weight=3]; 804[label="xuu600",fontsize=16,color="green",shape="box"];805[label="xuu311000",fontsize=16,color="green",shape="box"];597[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3455[label="xuu311000/Nothing",fontsize=10,color="white",style="solid",shape="box"];597 -> 3455[label="",style="solid", color="burlywood", weight=9]; 3455 -> 743[label="",style="solid", color="burlywood", weight=3]; 3456[label="xuu311000/Just xuu3110000",fontsize=10,color="white",style="solid",shape="box"];597 -> 3456[label="",style="solid", color="burlywood", weight=9]; 3456 -> 744[label="",style="solid", color="burlywood", weight=3]; 806[label="xuu600",fontsize=16,color="green",shape="box"];807[label="xuu311000",fontsize=16,color="green",shape="box"];598[label="xuu311000 == xuu600",fontsize=16,color="black",shape="triangle"];598 -> 745[label="",style="solid", color="black", weight=3]; 808[label="xuu600",fontsize=16,color="green",shape="box"];809[label="xuu311000",fontsize=16,color="green",shape="box"];599[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3457[label="xuu311000/(xuu3110000,xuu3110001,xuu3110002)",fontsize=10,color="white",style="solid",shape="box"];599 -> 3457[label="",style="solid", color="burlywood", weight=9]; 3457 -> 746[label="",style="solid", color="burlywood", weight=3]; 810[label="xuu600",fontsize=16,color="green",shape="box"];811[label="xuu311000",fontsize=16,color="green",shape="box"];600[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3458[label="xuu311000/xuu3110000 :% xuu3110001",fontsize=10,color="white",style="solid",shape="box"];600 -> 3458[label="",style="solid", color="burlywood", weight=9]; 3458 -> 747[label="",style="solid", color="burlywood", weight=3]; 812[label="xuu600",fontsize=16,color="green",shape="box"];813[label="xuu311000",fontsize=16,color="green",shape="box"];601[label="xuu311000 == xuu600",fontsize=16,color="burlywood",shape="triangle"];3459[label="xuu311000/LT",fontsize=10,color="white",style="solid",shape="box"];601 -> 3459[label="",style="solid", color="burlywood", weight=9]; 3459 -> 748[label="",style="solid", color="burlywood", weight=3]; 3460[label="xuu311000/EQ",fontsize=10,color="white",style="solid",shape="box"];601 -> 3460[label="",style="solid", color="burlywood", weight=9]; 3460 -> 749[label="",style="solid", color="burlywood", weight=3]; 3461[label="xuu311000/GT",fontsize=10,color="white",style="solid",shape="box"];601 -> 3461[label="",style="solid", color="burlywood", weight=9]; 3461 -> 750[label="",style="solid", color="burlywood", weight=3]; 814 -> 1270[label="",style="dashed", color="red", weight=0]; 814[label="compare1 (Just xuu69) (Just xuu70) (Just xuu69 <= Just xuu70)",fontsize=16,color="magenta"];814 -> 1271[label="",style="dashed", color="magenta", weight=3]; 814 -> 1272[label="",style="dashed", color="magenta", weight=3]; 814 -> 1273[label="",style="dashed", color="magenta", weight=3]; 815[label="EQ",fontsize=16,color="green",shape="box"];816[label="LT",fontsize=16,color="green",shape="box"];817[label="LT",fontsize=16,color="green",shape="box"];818[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];818 -> 1043[label="",style="solid", color="black", weight=3]; 819[label="LT",fontsize=16,color="green",shape="box"];820[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];820 -> 1044[label="",style="solid", color="black", weight=3]; 821[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];821 -> 1045[label="",style="solid", color="black", weight=3]; 822[label="Pos xuu6010",fontsize=16,color="green",shape="box"];823[label="xuu311000",fontsize=16,color="green",shape="box"];824[label="xuu600",fontsize=16,color="green",shape="box"];825[label="Pos xuu3110010",fontsize=16,color="green",shape="box"];826[label="Pos xuu6010",fontsize=16,color="green",shape="box"];827[label="xuu311000",fontsize=16,color="green",shape="box"];828[label="xuu600",fontsize=16,color="green",shape="box"];829[label="Neg xuu3110010",fontsize=16,color="green",shape="box"];830[label="Neg xuu6010",fontsize=16,color="green",shape="box"];831[label="xuu311000",fontsize=16,color="green",shape="box"];832[label="xuu600",fontsize=16,color="green",shape="box"];833[label="Pos xuu3110010",fontsize=16,color="green",shape="box"];834[label="Neg xuu6010",fontsize=16,color="green",shape="box"];835[label="xuu311000",fontsize=16,color="green",shape="box"];836[label="xuu600",fontsize=16,color="green",shape="box"];837[label="Neg xuu3110010",fontsize=16,color="green",shape="box"];1120[label="xuu311002 == xuu602",fontsize=16,color="blue",shape="box"];3462[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1120 -> 3462[label="",style="solid", color="blue", weight=9]; 3462 -> 1179[label="",style="solid", color="blue", weight=3]; 3463[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1120 -> 3463[label="",style="solid", color="blue", weight=9]; 3463 -> 1180[label="",style="solid", color="blue", weight=3]; 3464[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1120 -> 3464[label="",style="solid", color="blue", weight=9]; 3464 -> 1181[label="",style="solid", color="blue", weight=3]; 3465[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1120 -> 3465[label="",style="solid", color="blue", weight=9]; 3465 -> 1182[label="",style="solid", color="blue", weight=3]; 3466[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1120 -> 3466[label="",style="solid", color="blue", weight=9]; 3466 -> 1183[label="",style="solid", color="blue", weight=3]; 3467[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1120 -> 3467[label="",style="solid", color="blue", weight=9]; 3467 -> 1184[label="",style="solid", color="blue", weight=3]; 3468[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1120 -> 3468[label="",style="solid", color="blue", weight=9]; 3468 -> 1185[label="",style="solid", color="blue", weight=3]; 3469[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1120 -> 3469[label="",style="solid", color="blue", weight=9]; 3469 -> 1186[label="",style="solid", color="blue", weight=3]; 3470[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1120 -> 3470[label="",style="solid", color="blue", weight=9]; 3470 -> 1187[label="",style="solid", color="blue", weight=3]; 3471[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1120 -> 3471[label="",style="solid", color="blue", weight=9]; 3471 -> 1188[label="",style="solid", color="blue", weight=3]; 3472[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1120 -> 3472[label="",style="solid", color="blue", weight=9]; 3472 -> 1189[label="",style="solid", color="blue", weight=3]; 3473[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1120 -> 3473[label="",style="solid", color="blue", weight=9]; 3473 -> 1190[label="",style="solid", color="blue", weight=3]; 3474[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1120 -> 3474[label="",style="solid", color="blue", weight=9]; 3474 -> 1191[label="",style="solid", color="blue", weight=3]; 3475[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1120 -> 3475[label="",style="solid", color="blue", weight=9]; 3475 -> 1192[label="",style="solid", color="blue", weight=3]; 1121[label="xuu311001 == xuu601",fontsize=16,color="blue",shape="box"];3476[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3476[label="",style="solid", color="blue", weight=9]; 3476 -> 1193[label="",style="solid", color="blue", weight=3]; 3477[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3477[label="",style="solid", color="blue", weight=9]; 3477 -> 1194[label="",style="solid", color="blue", weight=3]; 3478[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3478[label="",style="solid", color="blue", weight=9]; 3478 -> 1195[label="",style="solid", color="blue", weight=3]; 3479[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3479[label="",style="solid", color="blue", weight=9]; 3479 -> 1196[label="",style="solid", color="blue", weight=3]; 3480[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3480[label="",style="solid", color="blue", weight=9]; 3480 -> 1197[label="",style="solid", color="blue", weight=3]; 3481[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3481[label="",style="solid", color="blue", weight=9]; 3481 -> 1198[label="",style="solid", color="blue", weight=3]; 3482[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3482[label="",style="solid", color="blue", weight=9]; 3482 -> 1199[label="",style="solid", color="blue", weight=3]; 3483[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3483[label="",style="solid", color="blue", weight=9]; 3483 -> 1200[label="",style="solid", color="blue", weight=3]; 3484[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3484[label="",style="solid", color="blue", weight=9]; 3484 -> 1201[label="",style="solid", color="blue", weight=3]; 3485[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3485[label="",style="solid", color="blue", weight=9]; 3485 -> 1202[label="",style="solid", color="blue", weight=3]; 3486[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3486[label="",style="solid", color="blue", weight=9]; 3486 -> 1203[label="",style="solid", color="blue", weight=3]; 3487[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3487[label="",style="solid", color="blue", weight=9]; 3487 -> 1204[label="",style="solid", color="blue", weight=3]; 3488[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3488[label="",style="solid", color="blue", weight=9]; 3488 -> 1205[label="",style="solid", color="blue", weight=3]; 3489[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3489[label="",style="solid", color="blue", weight=9]; 3489 -> 1206[label="",style="solid", color="blue", weight=3]; 1122 -> 588[label="",style="dashed", color="red", weight=0]; 1122[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1122 -> 1207[label="",style="dashed", color="magenta", weight=3]; 1122 -> 1208[label="",style="dashed", color="magenta", weight=3]; 1123 -> 589[label="",style="dashed", color="red", weight=0]; 1123[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1123 -> 1209[label="",style="dashed", color="magenta", weight=3]; 1123 -> 1210[label="",style="dashed", color="magenta", weight=3]; 1124 -> 590[label="",style="dashed", color="red", weight=0]; 1124[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1124 -> 1211[label="",style="dashed", color="magenta", weight=3]; 1124 -> 1212[label="",style="dashed", color="magenta", weight=3]; 1125 -> 591[label="",style="dashed", color="red", weight=0]; 1125[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1125 -> 1213[label="",style="dashed", color="magenta", weight=3]; 1125 -> 1214[label="",style="dashed", color="magenta", weight=3]; 1126 -> 592[label="",style="dashed", color="red", weight=0]; 1126[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1126 -> 1215[label="",style="dashed", color="magenta", weight=3]; 1126 -> 1216[label="",style="dashed", color="magenta", weight=3]; 1127 -> 593[label="",style="dashed", color="red", weight=0]; 1127[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1127 -> 1217[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1218[label="",style="dashed", color="magenta", weight=3]; 1128 -> 594[label="",style="dashed", color="red", weight=0]; 1128[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1128 -> 1219[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1220[label="",style="dashed", color="magenta", weight=3]; 1129 -> 595[label="",style="dashed", color="red", weight=0]; 1129[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1129 -> 1221[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1222[label="",style="dashed", color="magenta", weight=3]; 1130 -> 596[label="",style="dashed", color="red", weight=0]; 1130[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1130 -> 1223[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1224[label="",style="dashed", color="magenta", weight=3]; 1131 -> 597[label="",style="dashed", color="red", weight=0]; 1131[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1131 -> 1225[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1226[label="",style="dashed", color="magenta", weight=3]; 1132 -> 598[label="",style="dashed", color="red", weight=0]; 1132[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1132 -> 1227[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1133 -> 599[label="",style="dashed", color="red", weight=0]; 1133[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1133 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1134 -> 600[label="",style="dashed", color="red", weight=0]; 1134[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1134 -> 1231[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1135 -> 601[label="",style="dashed", color="red", weight=0]; 1135[label="xuu311000 == xuu600",fontsize=16,color="magenta"];1135 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1234[label="",style="dashed", color="magenta", weight=3]; 1136[label="compare1 (xuu80,xuu81,xuu82) (xuu83,xuu84,xuu85) ((xuu80,xuu81,xuu82) <= (xuu83,xuu84,xuu85))",fontsize=16,color="black",shape="box"];1136 -> 1235[label="",style="solid", color="black", weight=3]; 1137[label="EQ",fontsize=16,color="green",shape="box"];868[label="Pos xuu6010",fontsize=16,color="green",shape="box"];869[label="xuu311000",fontsize=16,color="green",shape="box"];870[label="xuu600",fontsize=16,color="green",shape="box"];871[label="Pos xuu3110010",fontsize=16,color="green",shape="box"];872[label="Pos xuu6010",fontsize=16,color="green",shape="box"];873[label="xuu311000",fontsize=16,color="green",shape="box"];874[label="xuu600",fontsize=16,color="green",shape="box"];875[label="Neg xuu3110010",fontsize=16,color="green",shape="box"];876[label="Neg xuu6010",fontsize=16,color="green",shape="box"];877[label="xuu311000",fontsize=16,color="green",shape="box"];878[label="xuu600",fontsize=16,color="green",shape="box"];879[label="Pos xuu3110010",fontsize=16,color="green",shape="box"];880[label="Neg xuu6010",fontsize=16,color="green",shape="box"];881[label="xuu311000",fontsize=16,color="green",shape="box"];882[label="xuu600",fontsize=16,color="green",shape="box"];883[label="Neg xuu3110010",fontsize=16,color="green",shape="box"];884[label="xuu6000",fontsize=16,color="green",shape="box"];885[label="xuu3110000",fontsize=16,color="green",shape="box"];886[label="xuu600",fontsize=16,color="green",shape="box"];887[label="xuu311000",fontsize=16,color="green",shape="box"];888[label="xuu600",fontsize=16,color="green",shape="box"];889[label="xuu311000",fontsize=16,color="green",shape="box"];890[label="xuu600",fontsize=16,color="green",shape="box"];891[label="xuu311000",fontsize=16,color="green",shape="box"];892[label="xuu600",fontsize=16,color="green",shape="box"];893[label="xuu311000",fontsize=16,color="green",shape="box"];894[label="xuu600",fontsize=16,color="green",shape="box"];895[label="xuu311000",fontsize=16,color="green",shape="box"];896[label="xuu600",fontsize=16,color="green",shape="box"];897[label="xuu311000",fontsize=16,color="green",shape="box"];898[label="xuu600",fontsize=16,color="green",shape="box"];899[label="xuu311000",fontsize=16,color="green",shape="box"];900[label="xuu600",fontsize=16,color="green",shape="box"];901[label="xuu311000",fontsize=16,color="green",shape="box"];902[label="xuu600",fontsize=16,color="green",shape="box"];903[label="xuu311000",fontsize=16,color="green",shape="box"];904[label="xuu600",fontsize=16,color="green",shape="box"];905[label="xuu311000",fontsize=16,color="green",shape="box"];906[label="xuu600",fontsize=16,color="green",shape="box"];907[label="xuu311000",fontsize=16,color="green",shape="box"];908[label="xuu600",fontsize=16,color="green",shape="box"];909[label="xuu311000",fontsize=16,color="green",shape="box"];910[label="xuu600",fontsize=16,color="green",shape="box"];911[label="xuu311000",fontsize=16,color="green",shape="box"];912[label="xuu600",fontsize=16,color="green",shape="box"];913[label="xuu311000",fontsize=16,color="green",shape="box"];914 -> 1341[label="",style="dashed", color="red", weight=0]; 914[label="compare1 (Left xuu91) (Left xuu92) (Left xuu91 <= Left xuu92)",fontsize=16,color="magenta"];914 -> 1342[label="",style="dashed", color="magenta", weight=3]; 914 -> 1343[label="",style="dashed", color="magenta", weight=3]; 914 -> 1344[label="",style="dashed", color="magenta", weight=3]; 915[label="EQ",fontsize=16,color="green",shape="box"];916[label="LT",fontsize=16,color="green",shape="box"];917[label="compare0 (Right xuu311000) (Left xuu600) otherwise",fontsize=16,color="black",shape="box"];917 -> 1139[label="",style="solid", color="black", weight=3]; 918[label="xuu600",fontsize=16,color="green",shape="box"];919[label="xuu311000",fontsize=16,color="green",shape="box"];920[label="xuu600",fontsize=16,color="green",shape="box"];921[label="xuu311000",fontsize=16,color="green",shape="box"];922[label="xuu600",fontsize=16,color="green",shape="box"];923[label="xuu311000",fontsize=16,color="green",shape="box"];924[label="xuu600",fontsize=16,color="green",shape="box"];925[label="xuu311000",fontsize=16,color="green",shape="box"];926[label="xuu600",fontsize=16,color="green",shape="box"];927[label="xuu311000",fontsize=16,color="green",shape="box"];928[label="xuu600",fontsize=16,color="green",shape="box"];929[label="xuu311000",fontsize=16,color="green",shape="box"];930[label="xuu600",fontsize=16,color="green",shape="box"];931[label="xuu311000",fontsize=16,color="green",shape="box"];932[label="xuu600",fontsize=16,color="green",shape="box"];933[label="xuu311000",fontsize=16,color="green",shape="box"];934[label="xuu600",fontsize=16,color="green",shape="box"];935[label="xuu311000",fontsize=16,color="green",shape="box"];936[label="xuu600",fontsize=16,color="green",shape="box"];937[label="xuu311000",fontsize=16,color="green",shape="box"];938[label="xuu600",fontsize=16,color="green",shape="box"];939[label="xuu311000",fontsize=16,color="green",shape="box"];940[label="xuu600",fontsize=16,color="green",shape="box"];941[label="xuu311000",fontsize=16,color="green",shape="box"];942[label="xuu600",fontsize=16,color="green",shape="box"];943[label="xuu311000",fontsize=16,color="green",shape="box"];944[label="xuu600",fontsize=16,color="green",shape="box"];945[label="xuu311000",fontsize=16,color="green",shape="box"];946 -> 1352[label="",style="dashed", color="red", weight=0]; 946[label="compare1 (Right xuu98) (Right xuu99) (Right xuu98 <= Right xuu99)",fontsize=16,color="magenta"];946 -> 1353[label="",style="dashed", color="magenta", weight=3]; 946 -> 1354[label="",style="dashed", color="magenta", weight=3]; 946 -> 1355[label="",style="dashed", color="magenta", weight=3]; 947[label="EQ",fontsize=16,color="green",shape="box"];948[label="Integer (primMulInt xuu3110000 xuu6010)",fontsize=16,color="green",shape="box"];948 -> 1141[label="",style="dashed", color="green", weight=3]; 949[label="primMulInt (Pos xuu3110000) (Pos xuu6010)",fontsize=16,color="black",shape="box"];949 -> 1142[label="",style="solid", color="black", weight=3]; 950[label="primMulInt (Pos xuu3110000) (Neg xuu6010)",fontsize=16,color="black",shape="box"];950 -> 1143[label="",style="solid", color="black", weight=3]; 951[label="primMulInt (Neg xuu3110000) (Pos xuu6010)",fontsize=16,color="black",shape="box"];951 -> 1144[label="",style="solid", color="black", weight=3]; 952[label="primMulInt (Neg xuu3110000) (Neg xuu6010)",fontsize=16,color="black",shape="box"];952 -> 1145[label="",style="solid", color="black", weight=3]; 1254[label="xuu42",fontsize=16,color="green",shape="box"];957[label="FiniteMap.sizeFM xuu21",fontsize=16,color="burlywood",shape="triangle"];3490[label="xuu21/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];957 -> 3490[label="",style="solid", color="burlywood", weight=9]; 3490 -> 1250[label="",style="solid", color="burlywood", weight=3]; 3491[label="xuu21/FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214",fontsize=10,color="white",style="solid",shape="box"];957 -> 3491[label="",style="solid", color="burlywood", weight=9]; 3491 -> 1251[label="",style="solid", color="burlywood", weight=3]; 1255[label="primPlusInt (Pos xuu4220) (Pos xuu1290)",fontsize=16,color="black",shape="box"];1255 -> 1265[label="",style="solid", color="black", weight=3]; 1256[label="primPlusInt (Pos xuu4220) (Neg xuu1290)",fontsize=16,color="black",shape="box"];1256 -> 1266[label="",style="solid", color="black", weight=3]; 1257[label="primPlusInt (Neg xuu4220) (Pos xuu1290)",fontsize=16,color="black",shape="box"];1257 -> 1267[label="",style="solid", color="black", weight=3]; 1258[label="primPlusInt (Neg xuu4220) (Neg xuu1290)",fontsize=16,color="black",shape="box"];1258 -> 1268[label="",style="solid", color="black", weight=3]; 955 -> 1237[label="",style="dashed", color="red", weight=0]; 955[label="FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42",fontsize=16,color="magenta"];956[label="FiniteMap.sIZE_RATIO",fontsize=16,color="black",shape="triangle"];956 -> 1249[label="",style="solid", color="black", weight=3]; 958 -> 1252[label="",style="dashed", color="red", weight=0]; 958[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 (FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42)",fontsize=16,color="magenta"];958 -> 1253[label="",style="dashed", color="magenta", weight=3]; 959[label="FiniteMap.mkBalBranch6MkBalBranch0 xuu21 xuu17 xuu18 xuu42 xuu42 xuu21 xuu21",fontsize=16,color="burlywood",shape="box"];3492[label="xuu21/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];959 -> 3492[label="",style="solid", color="burlywood", weight=9]; 3492 -> 1259[label="",style="solid", color="burlywood", weight=3]; 3493[label="xuu21/FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214",fontsize=10,color="white",style="solid",shape="box"];959 -> 3493[label="",style="solid", color="burlywood", weight=9]; 3493 -> 1260[label="",style="solid", color="burlywood", weight=3]; 960[label="FiniteMap.mkBranchUnbox xuu21 xuu17 xuu42 (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu21 xuu17 xuu42 + FiniteMap.mkBranchRight_size xuu21 xuu17 xuu42)",fontsize=16,color="black",shape="box"];960 -> 1261[label="",style="solid", color="black", weight=3]; 961[label="compare0 True False True",fontsize=16,color="black",shape="box"];961 -> 1262[label="",style="solid", color="black", weight=3]; 1148[label="xuu601",fontsize=16,color="green",shape="box"];1149[label="xuu311001",fontsize=16,color="green",shape="box"];1150[label="xuu601",fontsize=16,color="green",shape="box"];1151[label="xuu311001",fontsize=16,color="green",shape="box"];1152[label="xuu601",fontsize=16,color="green",shape="box"];1153[label="xuu311001",fontsize=16,color="green",shape="box"];1154[label="xuu601",fontsize=16,color="green",shape="box"];1155[label="xuu311001",fontsize=16,color="green",shape="box"];1156[label="xuu601",fontsize=16,color="green",shape="box"];1157[label="xuu311001",fontsize=16,color="green",shape="box"];1158[label="xuu601",fontsize=16,color="green",shape="box"];1159[label="xuu311001",fontsize=16,color="green",shape="box"];1160[label="xuu601",fontsize=16,color="green",shape="box"];1161[label="xuu311001",fontsize=16,color="green",shape="box"];1162[label="xuu601",fontsize=16,color="green",shape="box"];1163[label="xuu311001",fontsize=16,color="green",shape="box"];1164[label="xuu601",fontsize=16,color="green",shape="box"];1165[label="xuu311001",fontsize=16,color="green",shape="box"];1166[label="xuu601",fontsize=16,color="green",shape="box"];1167[label="xuu311001",fontsize=16,color="green",shape="box"];1168[label="xuu601",fontsize=16,color="green",shape="box"];1169[label="xuu311001",fontsize=16,color="green",shape="box"];1170[label="xuu601",fontsize=16,color="green",shape="box"];1171[label="xuu311001",fontsize=16,color="green",shape="box"];1172[label="xuu601",fontsize=16,color="green",shape="box"];1173[label="xuu311001",fontsize=16,color="green",shape="box"];1174[label="xuu601",fontsize=16,color="green",shape="box"];1175[label="xuu311001",fontsize=16,color="green",shape="box"];1176[label="False",fontsize=16,color="green",shape="box"];1177[label="xuu127",fontsize=16,color="green",shape="box"];1178 -> 1385[label="",style="dashed", color="red", weight=0]; 1178[label="compare1 (xuu109,xuu110) (xuu111,xuu112) (xuu109 < xuu111 || xuu109 == xuu111 && xuu110 <= xuu112)",fontsize=16,color="magenta"];1178 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1178 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1178 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1178 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1178 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1178 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1041[label="compare0 (Just xuu311000) Nothing True",fontsize=16,color="black",shape="box"];1041 -> 1269[label="",style="solid", color="black", weight=3]; 731[label="xuu3110000 : xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];3494[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];731 -> 3494[label="",style="solid", color="burlywood", weight=9]; 3494 -> 962[label="",style="solid", color="burlywood", weight=3]; 3495[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];731 -> 3495[label="",style="solid", color="burlywood", weight=9]; 3495 -> 963[label="",style="solid", color="burlywood", weight=3]; 732[label="[] == xuu600",fontsize=16,color="burlywood",shape="box"];3496[label="xuu600/xuu6000 : xuu6001",fontsize=10,color="white",style="solid",shape="box"];732 -> 3496[label="",style="solid", color="burlywood", weight=9]; 3496 -> 964[label="",style="solid", color="burlywood", weight=3]; 3497[label="xuu600/[]",fontsize=10,color="white",style="solid",shape="box"];732 -> 3497[label="",style="solid", color="burlywood", weight=9]; 3497 -> 965[label="",style="solid", color="burlywood", weight=3]; 733[label="primEqInt xuu311000 xuu600",fontsize=16,color="burlywood",shape="triangle"];3498[label="xuu311000/Pos xuu3110000",fontsize=10,color="white",style="solid",shape="box"];733 -> 3498[label="",style="solid", color="burlywood", weight=9]; 3498 -> 966[label="",style="solid", color="burlywood", weight=3]; 3499[label="xuu311000/Neg xuu3110000",fontsize=10,color="white",style="solid",shape="box"];733 -> 3499[label="",style="solid", color="burlywood", weight=9]; 3499 -> 967[label="",style="solid", color="burlywood", weight=3]; 734[label="primEqFloat xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];3500[label="xuu311000/Float xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];734 -> 3500[label="",style="solid", color="burlywood", weight=9]; 3500 -> 968[label="",style="solid", color="burlywood", weight=3]; 735[label="() == xuu600",fontsize=16,color="burlywood",shape="box"];3501[label="xuu600/()",fontsize=10,color="white",style="solid",shape="box"];735 -> 3501[label="",style="solid", color="burlywood", weight=9]; 3501 -> 969[label="",style="solid", color="burlywood", weight=3]; 736[label="False == xuu600",fontsize=16,color="burlywood",shape="box"];3502[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];736 -> 3502[label="",style="solid", color="burlywood", weight=9]; 3502 -> 970[label="",style="solid", color="burlywood", weight=3]; 3503[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];736 -> 3503[label="",style="solid", color="burlywood", weight=9]; 3503 -> 971[label="",style="solid", color="burlywood", weight=3]; 737[label="True == xuu600",fontsize=16,color="burlywood",shape="box"];3504[label="xuu600/False",fontsize=10,color="white",style="solid",shape="box"];737 -> 3504[label="",style="solid", color="burlywood", weight=9]; 3504 -> 972[label="",style="solid", color="burlywood", weight=3]; 3505[label="xuu600/True",fontsize=10,color="white",style="solid",shape="box"];737 -> 3505[label="",style="solid", color="burlywood", weight=9]; 3505 -> 973[label="",style="solid", color="burlywood", weight=3]; 738[label="primEqDouble xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];3506[label="xuu311000/Double xuu3110000 xuu3110001",fontsize=10,color="white",style="solid",shape="box"];738 -> 3506[label="",style="solid", color="burlywood", weight=9]; 3506 -> 974[label="",style="solid", color="burlywood", weight=3]; 739[label="Left xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];3507[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];739 -> 3507[label="",style="solid", color="burlywood", weight=9]; 3507 -> 975[label="",style="solid", color="burlywood", weight=3]; 3508[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];739 -> 3508[label="",style="solid", color="burlywood", weight=9]; 3508 -> 976[label="",style="solid", color="burlywood", weight=3]; 740[label="Right xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];3509[label="xuu600/Left xuu6000",fontsize=10,color="white",style="solid",shape="box"];740 -> 3509[label="",style="solid", color="burlywood", weight=9]; 3509 -> 977[label="",style="solid", color="burlywood", weight=3]; 3510[label="xuu600/Right xuu6000",fontsize=10,color="white",style="solid",shape="box"];740 -> 3510[label="",style="solid", color="burlywood", weight=9]; 3510 -> 978[label="",style="solid", color="burlywood", weight=3]; 741[label="(xuu3110000,xuu3110001) == xuu600",fontsize=16,color="burlywood",shape="box"];3511[label="xuu600/(xuu6000,xuu6001)",fontsize=10,color="white",style="solid",shape="box"];741 -> 3511[label="",style="solid", color="burlywood", weight=9]; 3511 -> 979[label="",style="solid", color="burlywood", weight=3]; 742[label="Integer xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];3512[label="xuu600/Integer xuu6000",fontsize=10,color="white",style="solid",shape="box"];742 -> 3512[label="",style="solid", color="burlywood", weight=9]; 3512 -> 980[label="",style="solid", color="burlywood", weight=3]; 743[label="Nothing == xuu600",fontsize=16,color="burlywood",shape="box"];3513[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];743 -> 3513[label="",style="solid", color="burlywood", weight=9]; 3513 -> 981[label="",style="solid", color="burlywood", weight=3]; 3514[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];743 -> 3514[label="",style="solid", color="burlywood", weight=9]; 3514 -> 982[label="",style="solid", color="burlywood", weight=3]; 744[label="Just xuu3110000 == xuu600",fontsize=16,color="burlywood",shape="box"];3515[label="xuu600/Nothing",fontsize=10,color="white",style="solid",shape="box"];744 -> 3515[label="",style="solid", color="burlywood", weight=9]; 3515 -> 983[label="",style="solid", color="burlywood", weight=3]; 3516[label="xuu600/Just xuu6000",fontsize=10,color="white",style="solid",shape="box"];744 -> 3516[label="",style="solid", color="burlywood", weight=9]; 3516 -> 984[label="",style="solid", color="burlywood", weight=3]; 745[label="primEqChar xuu311000 xuu600",fontsize=16,color="burlywood",shape="box"];3517[label="xuu311000/Char xuu3110000",fontsize=10,color="white",style="solid",shape="box"];745 -> 3517[label="",style="solid", color="burlywood", weight=9]; 3517 -> 985[label="",style="solid", color="burlywood", weight=3]; 746[label="(xuu3110000,xuu3110001,xuu3110002) == xuu600",fontsize=16,color="burlywood",shape="box"];3518[label="xuu600/(xuu6000,xuu6001,xuu6002)",fontsize=10,color="white",style="solid",shape="box"];746 -> 3518[label="",style="solid", color="burlywood", weight=9]; 3518 -> 986[label="",style="solid", color="burlywood", weight=3]; 747[label="xuu3110000 :% xuu3110001 == xuu600",fontsize=16,color="burlywood",shape="box"];3519[label="xuu600/xuu6000 :% xuu6001",fontsize=10,color="white",style="solid",shape="box"];747 -> 3519[label="",style="solid", color="burlywood", weight=9]; 3519 -> 987[label="",style="solid", color="burlywood", weight=3]; 748[label="LT == xuu600",fontsize=16,color="burlywood",shape="box"];3520[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];748 -> 3520[label="",style="solid", color="burlywood", weight=9]; 3520 -> 988[label="",style="solid", color="burlywood", weight=3]; 3521[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];748 -> 3521[label="",style="solid", color="burlywood", weight=9]; 3521 -> 989[label="",style="solid", color="burlywood", weight=3]; 3522[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];748 -> 3522[label="",style="solid", color="burlywood", weight=9]; 3522 -> 990[label="",style="solid", color="burlywood", weight=3]; 749[label="EQ == xuu600",fontsize=16,color="burlywood",shape="box"];3523[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];749 -> 3523[label="",style="solid", color="burlywood", weight=9]; 3523 -> 991[label="",style="solid", color="burlywood", weight=3]; 3524[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];749 -> 3524[label="",style="solid", color="burlywood", weight=9]; 3524 -> 992[label="",style="solid", color="burlywood", weight=3]; 3525[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];749 -> 3525[label="",style="solid", color="burlywood", weight=9]; 3525 -> 993[label="",style="solid", color="burlywood", weight=3]; 750[label="GT == xuu600",fontsize=16,color="burlywood",shape="box"];3526[label="xuu600/LT",fontsize=10,color="white",style="solid",shape="box"];750 -> 3526[label="",style="solid", color="burlywood", weight=9]; 3526 -> 994[label="",style="solid", color="burlywood", weight=3]; 3527[label="xuu600/EQ",fontsize=10,color="white",style="solid",shape="box"];750 -> 3527[label="",style="solid", color="burlywood", weight=9]; 3527 -> 995[label="",style="solid", color="burlywood", weight=3]; 3528[label="xuu600/GT",fontsize=10,color="white",style="solid",shape="box"];750 -> 3528[label="",style="solid", color="burlywood", weight=9]; 3528 -> 996[label="",style="solid", color="burlywood", weight=3]; 1271[label="Just xuu69 <= Just xuu70",fontsize=16,color="black",shape="box"];1271 -> 1277[label="",style="solid", color="black", weight=3]; 1272[label="xuu69",fontsize=16,color="green",shape="box"];1273[label="xuu70",fontsize=16,color="green",shape="box"];1270[label="compare1 (Just xuu140) (Just xuu141) xuu142",fontsize=16,color="burlywood",shape="triangle"];3529[label="xuu142/False",fontsize=10,color="white",style="solid",shape="box"];1270 -> 3529[label="",style="solid", color="burlywood", weight=9]; 3529 -> 1278[label="",style="solid", color="burlywood", weight=3]; 3530[label="xuu142/True",fontsize=10,color="white",style="solid",shape="box"];1270 -> 3530[label="",style="solid", color="burlywood", weight=9]; 3530 -> 1279[label="",style="solid", color="burlywood", weight=3]; 1043[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];1043 -> 1280[label="",style="solid", color="black", weight=3]; 1044[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];1044 -> 1281[label="",style="solid", color="black", weight=3]; 1045[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];1045 -> 1282[label="",style="solid", color="black", weight=3]; 1179 -> 588[label="",style="dashed", color="red", weight=0]; 1179[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1179 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1179 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1180 -> 589[label="",style="dashed", color="red", weight=0]; 1180[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1180 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1180 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1181 -> 590[label="",style="dashed", color="red", weight=0]; 1181[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1181 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1181 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1182 -> 591[label="",style="dashed", color="red", weight=0]; 1182[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1182 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1182 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1183 -> 592[label="",style="dashed", color="red", weight=0]; 1183[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1183 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1183 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1184 -> 593[label="",style="dashed", color="red", weight=0]; 1184[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1184 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1184 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1185 -> 594[label="",style="dashed", color="red", weight=0]; 1185[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1185 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1185 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1186 -> 595[label="",style="dashed", color="red", weight=0]; 1186[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1186 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1187 -> 596[label="",style="dashed", color="red", weight=0]; 1187[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1187 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1187 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1188 -> 597[label="",style="dashed", color="red", weight=0]; 1188[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1188 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1188 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1189 -> 598[label="",style="dashed", color="red", weight=0]; 1189[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1189 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1189 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1190 -> 599[label="",style="dashed", color="red", weight=0]; 1190[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1190 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1190 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1191 -> 600[label="",style="dashed", color="red", weight=0]; 1191[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1191 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1192 -> 601[label="",style="dashed", color="red", weight=0]; 1192[label="xuu311002 == xuu602",fontsize=16,color="magenta"];1192 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1192 -> 1310[label="",style="dashed", color="magenta", weight=3]; 1193 -> 588[label="",style="dashed", color="red", weight=0]; 1193[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1193 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1193 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1194 -> 589[label="",style="dashed", color="red", weight=0]; 1194[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1194 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1195 -> 590[label="",style="dashed", color="red", weight=0]; 1195[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1195 -> 1315[label="",style="dashed", color="magenta", weight=3]; 1195 -> 1316[label="",style="dashed", color="magenta", weight=3]; 1196 -> 591[label="",style="dashed", color="red", weight=0]; 1196[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1196 -> 1317[label="",style="dashed", color="magenta", weight=3]; 1196 -> 1318[label="",style="dashed", color="magenta", weight=3]; 1197 -> 592[label="",style="dashed", color="red", weight=0]; 1197[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1197 -> 1319[label="",style="dashed", color="magenta", weight=3]; 1197 -> 1320[label="",style="dashed", color="magenta", weight=3]; 1198 -> 593[label="",style="dashed", color="red", weight=0]; 1198[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1198 -> 1321[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1322[label="",style="dashed", color="magenta", weight=3]; 1199 -> 594[label="",style="dashed", color="red", weight=0]; 1199[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1199 -> 1323[label="",style="dashed", color="magenta", weight=3]; 1199 -> 1324[label="",style="dashed", color="magenta", weight=3]; 1200 -> 595[label="",style="dashed", color="red", weight=0]; 1200[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1200 -> 1325[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1326[label="",style="dashed", color="magenta", weight=3]; 1201 -> 596[label="",style="dashed", color="red", weight=0]; 1201[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1201 -> 1327[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1328[label="",style="dashed", color="magenta", weight=3]; 1202 -> 597[label="",style="dashed", color="red", weight=0]; 1202[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1202 -> 1329[label="",style="dashed", color="magenta", weight=3]; 1202 -> 1330[label="",style="dashed", color="magenta", weight=3]; 1203 -> 598[label="",style="dashed", color="red", weight=0]; 1203[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1203 -> 1331[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1332[label="",style="dashed", color="magenta", weight=3]; 1204 -> 599[label="",style="dashed", color="red", weight=0]; 1204[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1204 -> 1333[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1334[label="",style="dashed", color="magenta", weight=3]; 1205 -> 600[label="",style="dashed", color="red", weight=0]; 1205[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1205 -> 1335[label="",style="dashed", color="magenta", weight=3]; 1205 -> 1336[label="",style="dashed", color="magenta", weight=3]; 1206 -> 601[label="",style="dashed", color="red", weight=0]; 1206[label="xuu311001 == xuu601",fontsize=16,color="magenta"];1206 -> 1337[label="",style="dashed", color="magenta", weight=3]; 1206 -> 1338[label="",style="dashed", color="magenta", weight=3]; 1207[label="xuu600",fontsize=16,color="green",shape="box"];1208[label="xuu311000",fontsize=16,color="green",shape="box"];1209[label="xuu600",fontsize=16,color="green",shape="box"];1210[label="xuu311000",fontsize=16,color="green",shape="box"];1211[label="xuu600",fontsize=16,color="green",shape="box"];1212[label="xuu311000",fontsize=16,color="green",shape="box"];1213[label="xuu600",fontsize=16,color="green",shape="box"];1214[label="xuu311000",fontsize=16,color="green",shape="box"];1215[label="xuu600",fontsize=16,color="green",shape="box"];1216[label="xuu311000",fontsize=16,color="green",shape="box"];1217[label="xuu600",fontsize=16,color="green",shape="box"];1218[label="xuu311000",fontsize=16,color="green",shape="box"];1219[label="xuu600",fontsize=16,color="green",shape="box"];1220[label="xuu311000",fontsize=16,color="green",shape="box"];1221[label="xuu600",fontsize=16,color="green",shape="box"];1222[label="xuu311000",fontsize=16,color="green",shape="box"];1223[label="xuu600",fontsize=16,color="green",shape="box"];1224[label="xuu311000",fontsize=16,color="green",shape="box"];1225[label="xuu600",fontsize=16,color="green",shape="box"];1226[label="xuu311000",fontsize=16,color="green",shape="box"];1227[label="xuu600",fontsize=16,color="green",shape="box"];1228[label="xuu311000",fontsize=16,color="green",shape="box"];1229[label="xuu600",fontsize=16,color="green",shape="box"];1230[label="xuu311000",fontsize=16,color="green",shape="box"];1231[label="xuu600",fontsize=16,color="green",shape="box"];1232[label="xuu311000",fontsize=16,color="green",shape="box"];1233[label="xuu600",fontsize=16,color="green",shape="box"];1234[label="xuu311000",fontsize=16,color="green",shape="box"];1235 -> 1471[label="",style="dashed", color="red", weight=0]; 1235[label="compare1 (xuu80,xuu81,xuu82) (xuu83,xuu84,xuu85) (xuu80 < xuu83 || xuu80 == xuu83 && (xuu81 < xuu84 || xuu81 == xuu84 && xuu82 <= xuu85))",fontsize=16,color="magenta"];1235 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1474[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1475[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1476[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1477[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1478[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1479[label="",style="dashed", color="magenta", weight=3]; 1342[label="xuu92",fontsize=16,color="green",shape="box"];1343[label="xuu91",fontsize=16,color="green",shape="box"];1344[label="Left xuu91 <= Left xuu92",fontsize=16,color="black",shape="box"];1344 -> 1348[label="",style="solid", color="black", weight=3]; 1341[label="compare1 (Left xuu149) (Left xuu150) xuu151",fontsize=16,color="burlywood",shape="triangle"];3531[label="xuu151/False",fontsize=10,color="white",style="solid",shape="box"];1341 -> 3531[label="",style="solid", color="burlywood", weight=9]; 3531 -> 1349[label="",style="solid", color="burlywood", weight=3]; 3532[label="xuu151/True",fontsize=10,color="white",style="solid",shape="box"];1341 -> 3532[label="",style="solid", color="burlywood", weight=9]; 3532 -> 1350[label="",style="solid", color="burlywood", weight=3]; 1139[label="compare0 (Right xuu311000) (Left xuu600) True",fontsize=16,color="black",shape="box"];1139 -> 1351[label="",style="solid", color="black", weight=3]; 1353[label="Right xuu98 <= Right xuu99",fontsize=16,color="black",shape="box"];1353 -> 1359[label="",style="solid", color="black", weight=3]; 1354[label="xuu99",fontsize=16,color="green",shape="box"];1355[label="xuu98",fontsize=16,color="green",shape="box"];1352[label="compare1 (Right xuu156) (Right xuu157) xuu158",fontsize=16,color="burlywood",shape="triangle"];3533[label="xuu158/False",fontsize=10,color="white",style="solid",shape="box"];1352 -> 3533[label="",style="solid", color="burlywood", weight=9]; 3533 -> 1360[label="",style="solid", color="burlywood", weight=3]; 3534[label="xuu158/True",fontsize=10,color="white",style="solid",shape="box"];1352 -> 3534[label="",style="solid", color="burlywood", weight=9]; 3534 -> 1361[label="",style="solid", color="burlywood", weight=3]; 1141 -> 578[label="",style="dashed", color="red", weight=0]; 1141[label="primMulInt xuu3110000 xuu6010",fontsize=16,color="magenta"];1141 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1141 -> 1363[label="",style="dashed", color="magenta", weight=3]; 1142[label="Pos (primMulNat xuu3110000 xuu6010)",fontsize=16,color="green",shape="box"];1142 -> 1364[label="",style="dashed", color="green", weight=3]; 1143[label="Neg (primMulNat xuu3110000 xuu6010)",fontsize=16,color="green",shape="box"];1143 -> 1365[label="",style="dashed", color="green", weight=3]; 1144[label="Neg (primMulNat xuu3110000 xuu6010)",fontsize=16,color="green",shape="box"];1144 -> 1366[label="",style="dashed", color="green", weight=3]; 1145[label="Pos (primMulNat xuu3110000 xuu6010)",fontsize=16,color="green",shape="box"];1145 -> 1367[label="",style="dashed", color="green", weight=3]; 1250[label="FiniteMap.sizeFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1250 -> 1368[label="",style="solid", color="black", weight=3]; 1251[label="FiniteMap.sizeFM (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];1251 -> 1369[label="",style="solid", color="black", weight=3]; 1265[label="Pos (primPlusNat xuu4220 xuu1290)",fontsize=16,color="green",shape="box"];1265 -> 1370[label="",style="dashed", color="green", weight=3]; 1266[label="primMinusNat xuu4220 xuu1290",fontsize=16,color="burlywood",shape="triangle"];3535[label="xuu4220/Succ xuu42200",fontsize=10,color="white",style="solid",shape="box"];1266 -> 3535[label="",style="solid", color="burlywood", weight=9]; 3535 -> 1371[label="",style="solid", color="burlywood", weight=3]; 3536[label="xuu4220/Zero",fontsize=10,color="white",style="solid",shape="box"];1266 -> 3536[label="",style="solid", color="burlywood", weight=9]; 3536 -> 1372[label="",style="solid", color="burlywood", weight=3]; 1267 -> 1266[label="",style="dashed", color="red", weight=0]; 1267[label="primMinusNat xuu1290 xuu4220",fontsize=16,color="magenta"];1267 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1268[label="Neg (primPlusNat xuu4220 xuu1290)",fontsize=16,color="green",shape="box"];1268 -> 1375[label="",style="dashed", color="green", weight=3]; 1249[label="Pos (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];1253 -> 137[label="",style="dashed", color="red", weight=0]; 1253[label="FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42 > FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42",fontsize=16,color="magenta"];1253 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1253 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1252[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 xuu130",fontsize=16,color="burlywood",shape="triangle"];3537[label="xuu130/False",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3537[label="",style="solid", color="burlywood", weight=9]; 3537 -> 1378[label="",style="solid", color="burlywood", weight=3]; 3538[label="xuu130/True",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3538[label="",style="solid", color="burlywood", weight=9]; 3538 -> 1379[label="",style="solid", color="burlywood", weight=3]; 1259[label="FiniteMap.mkBalBranch6MkBalBranch0 FiniteMap.EmptyFM xuu17 xuu18 xuu42 xuu42 FiniteMap.EmptyFM FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1259 -> 1380[label="",style="solid", color="black", weight=3]; 1260[label="FiniteMap.mkBalBranch6MkBalBranch0 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];1260 -> 1381[label="",style="solid", color="black", weight=3]; 1261[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu21 xuu17 xuu42 + FiniteMap.mkBranchRight_size xuu21 xuu17 xuu42",fontsize=16,color="black",shape="box"];1261 -> 1382[label="",style="solid", color="black", weight=3]; 1262[label="GT",fontsize=16,color="green",shape="box"];1386[label="xuu111",fontsize=16,color="green",shape="box"];1387[label="xuu112",fontsize=16,color="green",shape="box"];1388[label="xuu110",fontsize=16,color="green",shape="box"];1389 -> 1079[label="",style="dashed", color="red", weight=0]; 1389[label="xuu109 == xuu111 && xuu110 <= xuu112",fontsize=16,color="magenta"];1389 -> 1398[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1399[label="",style="dashed", color="magenta", weight=3]; 1390[label="xuu109 < xuu111",fontsize=16,color="blue",shape="box"];3539[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3539[label="",style="solid", color="blue", weight=9]; 3539 -> 1400[label="",style="solid", color="blue", weight=3]; 3540[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3540[label="",style="solid", color="blue", weight=9]; 3540 -> 1401[label="",style="solid", color="blue", weight=3]; 3541[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3541[label="",style="solid", color="blue", weight=9]; 3541 -> 1402[label="",style="solid", color="blue", weight=3]; 3542[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3542[label="",style="solid", color="blue", weight=9]; 3542 -> 1403[label="",style="solid", color="blue", weight=3]; 3543[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3543[label="",style="solid", color="blue", weight=9]; 3543 -> 1404[label="",style="solid", color="blue", weight=3]; 3544[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3544[label="",style="solid", color="blue", weight=9]; 3544 -> 1405[label="",style="solid", color="blue", weight=3]; 3545[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3545[label="",style="solid", color="blue", weight=9]; 3545 -> 1406[label="",style="solid", color="blue", weight=3]; 3546[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3546[label="",style="solid", color="blue", weight=9]; 3546 -> 1407[label="",style="solid", color="blue", weight=3]; 3547[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3547[label="",style="solid", color="blue", weight=9]; 3547 -> 1408[label="",style="solid", color="blue", weight=3]; 3548[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3548[label="",style="solid", color="blue", weight=9]; 3548 -> 1409[label="",style="solid", color="blue", weight=3]; 3549[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3549[label="",style="solid", color="blue", weight=9]; 3549 -> 1410[label="",style="solid", color="blue", weight=3]; 3550[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3550[label="",style="solid", color="blue", weight=9]; 3550 -> 1411[label="",style="solid", color="blue", weight=3]; 3551[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3551[label="",style="solid", color="blue", weight=9]; 3551 -> 1412[label="",style="solid", color="blue", weight=3]; 3552[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1390 -> 3552[label="",style="solid", color="blue", weight=9]; 3552 -> 1413[label="",style="solid", color="blue", weight=3]; 1391[label="xuu109",fontsize=16,color="green",shape="box"];1385[label="compare1 (xuu166,xuu167) (xuu168,xuu169) (xuu170 || xuu171)",fontsize=16,color="burlywood",shape="triangle"];3553[label="xuu170/False",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3553[label="",style="solid", color="burlywood", weight=9]; 3553 -> 1414[label="",style="solid", color="burlywood", weight=3]; 3554[label="xuu170/True",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3554[label="",style="solid", color="burlywood", weight=9]; 3554 -> 1415[label="",style="solid", color="burlywood", weight=3]; 1269[label="GT",fontsize=16,color="green",shape="box"];962[label="xuu3110000 : xuu3110001 == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];962 -> 1416[label="",style="solid", color="black", weight=3]; 963[label="xuu3110000 : xuu3110001 == []",fontsize=16,color="black",shape="box"];963 -> 1417[label="",style="solid", color="black", weight=3]; 964[label="[] == xuu6000 : xuu6001",fontsize=16,color="black",shape="box"];964 -> 1418[label="",style="solid", color="black", weight=3]; 965[label="[] == []",fontsize=16,color="black",shape="box"];965 -> 1419[label="",style="solid", color="black", weight=3]; 966[label="primEqInt (Pos xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];3555[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];966 -> 3555[label="",style="solid", color="burlywood", weight=9]; 3555 -> 1420[label="",style="solid", color="burlywood", weight=3]; 3556[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];966 -> 3556[label="",style="solid", color="burlywood", weight=9]; 3556 -> 1421[label="",style="solid", color="burlywood", weight=3]; 967[label="primEqInt (Neg xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];3557[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];967 -> 3557[label="",style="solid", color="burlywood", weight=9]; 3557 -> 1422[label="",style="solid", color="burlywood", weight=3]; 3558[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];967 -> 3558[label="",style="solid", color="burlywood", weight=9]; 3558 -> 1423[label="",style="solid", color="burlywood", weight=3]; 968[label="primEqFloat (Float xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];3559[label="xuu600/Float xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];968 -> 3559[label="",style="solid", color="burlywood", weight=9]; 3559 -> 1424[label="",style="solid", color="burlywood", weight=3]; 969[label="() == ()",fontsize=16,color="black",shape="box"];969 -> 1425[label="",style="solid", color="black", weight=3]; 970[label="False == False",fontsize=16,color="black",shape="box"];970 -> 1426[label="",style="solid", color="black", weight=3]; 971[label="False == True",fontsize=16,color="black",shape="box"];971 -> 1427[label="",style="solid", color="black", weight=3]; 972[label="True == False",fontsize=16,color="black",shape="box"];972 -> 1428[label="",style="solid", color="black", weight=3]; 973[label="True == True",fontsize=16,color="black",shape="box"];973 -> 1429[label="",style="solid", color="black", weight=3]; 974[label="primEqDouble (Double xuu3110000 xuu3110001) xuu600",fontsize=16,color="burlywood",shape="box"];3560[label="xuu600/Double xuu6000 xuu6001",fontsize=10,color="white",style="solid",shape="box"];974 -> 3560[label="",style="solid", color="burlywood", weight=9]; 3560 -> 1430[label="",style="solid", color="burlywood", weight=3]; 975[label="Left xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];975 -> 1431[label="",style="solid", color="black", weight=3]; 976[label="Left xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];976 -> 1432[label="",style="solid", color="black", weight=3]; 977[label="Right xuu3110000 == Left xuu6000",fontsize=16,color="black",shape="box"];977 -> 1433[label="",style="solid", color="black", weight=3]; 978[label="Right xuu3110000 == Right xuu6000",fontsize=16,color="black",shape="box"];978 -> 1434[label="",style="solid", color="black", weight=3]; 979[label="(xuu3110000,xuu3110001) == (xuu6000,xuu6001)",fontsize=16,color="black",shape="box"];979 -> 1435[label="",style="solid", color="black", weight=3]; 980[label="Integer xuu3110000 == Integer xuu6000",fontsize=16,color="black",shape="box"];980 -> 1436[label="",style="solid", color="black", weight=3]; 981[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];981 -> 1437[label="",style="solid", color="black", weight=3]; 982[label="Nothing == Just xuu6000",fontsize=16,color="black",shape="box"];982 -> 1438[label="",style="solid", color="black", weight=3]; 983[label="Just xuu3110000 == Nothing",fontsize=16,color="black",shape="box"];983 -> 1439[label="",style="solid", color="black", weight=3]; 984[label="Just xuu3110000 == Just xuu6000",fontsize=16,color="black",shape="box"];984 -> 1440[label="",style="solid", color="black", weight=3]; 985[label="primEqChar (Char xuu3110000) xuu600",fontsize=16,color="burlywood",shape="box"];3561[label="xuu600/Char xuu6000",fontsize=10,color="white",style="solid",shape="box"];985 -> 3561[label="",style="solid", color="burlywood", weight=9]; 3561 -> 1441[label="",style="solid", color="burlywood", weight=3]; 986[label="(xuu3110000,xuu3110001,xuu3110002) == (xuu6000,xuu6001,xuu6002)",fontsize=16,color="black",shape="box"];986 -> 1442[label="",style="solid", color="black", weight=3]; 987[label="xuu3110000 :% xuu3110001 == xuu6000 :% xuu6001",fontsize=16,color="black",shape="box"];987 -> 1443[label="",style="solid", color="black", weight=3]; 988[label="LT == LT",fontsize=16,color="black",shape="box"];988 -> 1444[label="",style="solid", color="black", weight=3]; 989[label="LT == EQ",fontsize=16,color="black",shape="box"];989 -> 1445[label="",style="solid", color="black", weight=3]; 990[label="LT == GT",fontsize=16,color="black",shape="box"];990 -> 1446[label="",style="solid", color="black", weight=3]; 991[label="EQ == LT",fontsize=16,color="black",shape="box"];991 -> 1447[label="",style="solid", color="black", weight=3]; 992[label="EQ == EQ",fontsize=16,color="black",shape="box"];992 -> 1448[label="",style="solid", color="black", weight=3]; 993[label="EQ == GT",fontsize=16,color="black",shape="box"];993 -> 1449[label="",style="solid", color="black", weight=3]; 994[label="GT == LT",fontsize=16,color="black",shape="box"];994 -> 1450[label="",style="solid", color="black", weight=3]; 995[label="GT == EQ",fontsize=16,color="black",shape="box"];995 -> 1451[label="",style="solid", color="black", weight=3]; 996[label="GT == GT",fontsize=16,color="black",shape="box"];996 -> 1452[label="",style="solid", color="black", weight=3]; 1277[label="xuu69 <= xuu70",fontsize=16,color="blue",shape="box"];3562[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3562[label="",style="solid", color="blue", weight=9]; 3562 -> 1453[label="",style="solid", color="blue", weight=3]; 3563[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3563[label="",style="solid", color="blue", weight=9]; 3563 -> 1454[label="",style="solid", color="blue", weight=3]; 3564[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3564[label="",style="solid", color="blue", weight=9]; 3564 -> 1455[label="",style="solid", color="blue", weight=3]; 3565[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3565[label="",style="solid", color="blue", weight=9]; 3565 -> 1456[label="",style="solid", color="blue", weight=3]; 3566[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3566[label="",style="solid", color="blue", weight=9]; 3566 -> 1457[label="",style="solid", color="blue", weight=3]; 3567[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3567[label="",style="solid", color="blue", weight=9]; 3567 -> 1458[label="",style="solid", color="blue", weight=3]; 3568[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3568[label="",style="solid", color="blue", weight=9]; 3568 -> 1459[label="",style="solid", color="blue", weight=3]; 3569[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3569[label="",style="solid", color="blue", weight=9]; 3569 -> 1460[label="",style="solid", color="blue", weight=3]; 3570[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3570[label="",style="solid", color="blue", weight=9]; 3570 -> 1461[label="",style="solid", color="blue", weight=3]; 3571[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3571[label="",style="solid", color="blue", weight=9]; 3571 -> 1462[label="",style="solid", color="blue", weight=3]; 3572[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3572[label="",style="solid", color="blue", weight=9]; 3572 -> 1463[label="",style="solid", color="blue", weight=3]; 3573[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3573[label="",style="solid", color="blue", weight=9]; 3573 -> 1464[label="",style="solid", color="blue", weight=3]; 3574[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3574[label="",style="solid", color="blue", weight=9]; 3574 -> 1465[label="",style="solid", color="blue", weight=3]; 3575[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3575[label="",style="solid", color="blue", weight=9]; 3575 -> 1466[label="",style="solid", color="blue", weight=3]; 1278[label="compare1 (Just xuu140) (Just xuu141) False",fontsize=16,color="black",shape="box"];1278 -> 1467[label="",style="solid", color="black", weight=3]; 1279[label="compare1 (Just xuu140) (Just xuu141) True",fontsize=16,color="black",shape="box"];1279 -> 1468[label="",style="solid", color="black", weight=3]; 1280[label="GT",fontsize=16,color="green",shape="box"];1281[label="GT",fontsize=16,color="green",shape="box"];1282[label="GT",fontsize=16,color="green",shape="box"];1283[label="xuu602",fontsize=16,color="green",shape="box"];1284[label="xuu311002",fontsize=16,color="green",shape="box"];1285[label="xuu602",fontsize=16,color="green",shape="box"];1286[label="xuu311002",fontsize=16,color="green",shape="box"];1287[label="xuu602",fontsize=16,color="green",shape="box"];1288[label="xuu311002",fontsize=16,color="green",shape="box"];1289[label="xuu602",fontsize=16,color="green",shape="box"];1290[label="xuu311002",fontsize=16,color="green",shape="box"];1291[label="xuu602",fontsize=16,color="green",shape="box"];1292[label="xuu311002",fontsize=16,color="green",shape="box"];1293[label="xuu602",fontsize=16,color="green",shape="box"];1294[label="xuu311002",fontsize=16,color="green",shape="box"];1295[label="xuu602",fontsize=16,color="green",shape="box"];1296[label="xuu311002",fontsize=16,color="green",shape="box"];1297[label="xuu602",fontsize=16,color="green",shape="box"];1298[label="xuu311002",fontsize=16,color="green",shape="box"];1299[label="xuu602",fontsize=16,color="green",shape="box"];1300[label="xuu311002",fontsize=16,color="green",shape="box"];1301[label="xuu602",fontsize=16,color="green",shape="box"];1302[label="xuu311002",fontsize=16,color="green",shape="box"];1303[label="xuu602",fontsize=16,color="green",shape="box"];1304[label="xuu311002",fontsize=16,color="green",shape="box"];1305[label="xuu602",fontsize=16,color="green",shape="box"];1306[label="xuu311002",fontsize=16,color="green",shape="box"];1307[label="xuu602",fontsize=16,color="green",shape="box"];1308[label="xuu311002",fontsize=16,color="green",shape="box"];1309[label="xuu602",fontsize=16,color="green",shape="box"];1310[label="xuu311002",fontsize=16,color="green",shape="box"];1311[label="xuu601",fontsize=16,color="green",shape="box"];1312[label="xuu311001",fontsize=16,color="green",shape="box"];1313[label="xuu601",fontsize=16,color="green",shape="box"];1314[label="xuu311001",fontsize=16,color="green",shape="box"];1315[label="xuu601",fontsize=16,color="green",shape="box"];1316[label="xuu311001",fontsize=16,color="green",shape="box"];1317[label="xuu601",fontsize=16,color="green",shape="box"];1318[label="xuu311001",fontsize=16,color="green",shape="box"];1319[label="xuu601",fontsize=16,color="green",shape="box"];1320[label="xuu311001",fontsize=16,color="green",shape="box"];1321[label="xuu601",fontsize=16,color="green",shape="box"];1322[label="xuu311001",fontsize=16,color="green",shape="box"];1323[label="xuu601",fontsize=16,color="green",shape="box"];1324[label="xuu311001",fontsize=16,color="green",shape="box"];1325[label="xuu601",fontsize=16,color="green",shape="box"];1326[label="xuu311001",fontsize=16,color="green",shape="box"];1327[label="xuu601",fontsize=16,color="green",shape="box"];1328[label="xuu311001",fontsize=16,color="green",shape="box"];1329[label="xuu601",fontsize=16,color="green",shape="box"];1330[label="xuu311001",fontsize=16,color="green",shape="box"];1331[label="xuu601",fontsize=16,color="green",shape="box"];1332[label="xuu311001",fontsize=16,color="green",shape="box"];1333[label="xuu601",fontsize=16,color="green",shape="box"];1334[label="xuu311001",fontsize=16,color="green",shape="box"];1335[label="xuu601",fontsize=16,color="green",shape="box"];1336[label="xuu311001",fontsize=16,color="green",shape="box"];1337[label="xuu601",fontsize=16,color="green",shape="box"];1338[label="xuu311001",fontsize=16,color="green",shape="box"];1472[label="xuu81",fontsize=16,color="green",shape="box"];1473[label="xuu82",fontsize=16,color="green",shape="box"];1474[label="xuu80 < xuu83",fontsize=16,color="blue",shape="box"];3576[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1474 -> 3576[label="",style="solid", color="blue", weight=9]; 3576 -> 1488[label="",style="solid", color="blue", weight=3]; 3577[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1474 -> 3577[label="",style="solid", color="blue", weight=9]; 3577 -> 1489[label="",style="solid", color="blue", weight=3]; 3578[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1474 -> 3578[label="",style="solid", color="blue", weight=9]; 3578 -> 1490[label="",style="solid", color="blue", weight=3]; 3579[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1474 -> 3579[label="",style="solid", color="blue", weight=9]; 3579 -> 1491[label="",style="solid", color="blue", weight=3]; 3580[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1474 -> 3580[label="",style="solid", color="blue", weight=9]; 3580 -> 1492[label="",style="solid", color="blue", weight=3]; 3581[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1474 -> 3581[label="",style="solid", color="blue", weight=9]; 3581 -> 1493[label="",style="solid", color="blue", weight=3]; 3582[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1474 -> 3582[label="",style="solid", color="blue", weight=9]; 3582 -> 1494[label="",style="solid", color="blue", weight=3]; 3583[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1474 -> 3583[label="",style="solid", color="blue", weight=9]; 3583 -> 1495[label="",style="solid", color="blue", weight=3]; 3584[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1474 -> 3584[label="",style="solid", color="blue", weight=9]; 3584 -> 1496[label="",style="solid", color="blue", weight=3]; 3585[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1474 -> 3585[label="",style="solid", color="blue", weight=9]; 3585 -> 1497[label="",style="solid", color="blue", weight=3]; 3586[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1474 -> 3586[label="",style="solid", color="blue", weight=9]; 3586 -> 1498[label="",style="solid", color="blue", weight=3]; 3587[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1474 -> 3587[label="",style="solid", color="blue", weight=9]; 3587 -> 1499[label="",style="solid", color="blue", weight=3]; 3588[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1474 -> 3588[label="",style="solid", color="blue", weight=9]; 3588 -> 1500[label="",style="solid", color="blue", weight=3]; 3589[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1474 -> 3589[label="",style="solid", color="blue", weight=9]; 3589 -> 1501[label="",style="solid", color="blue", weight=3]; 1475[label="xuu80",fontsize=16,color="green",shape="box"];1476[label="xuu84",fontsize=16,color="green",shape="box"];1477[label="xuu85",fontsize=16,color="green",shape="box"];1478[label="xuu83",fontsize=16,color="green",shape="box"];1479 -> 1079[label="",style="dashed", color="red", weight=0]; 1479[label="xuu80 == xuu83 && (xuu81 < xuu84 || xuu81 == xuu84 && xuu82 <= xuu85)",fontsize=16,color="magenta"];1479 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1471[label="compare1 (xuu181,xuu182,xuu183) (xuu184,xuu185,xuu186) (xuu187 || xuu188)",fontsize=16,color="burlywood",shape="triangle"];3590[label="xuu187/False",fontsize=10,color="white",style="solid",shape="box"];1471 -> 3590[label="",style="solid", color="burlywood", weight=9]; 3590 -> 1504[label="",style="solid", color="burlywood", weight=3]; 3591[label="xuu187/True",fontsize=10,color="white",style="solid",shape="box"];1471 -> 3591[label="",style="solid", color="burlywood", weight=9]; 3591 -> 1505[label="",style="solid", color="burlywood", weight=3]; 1348[label="xuu91 <= xuu92",fontsize=16,color="blue",shape="box"];3592[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3592[label="",style="solid", color="blue", weight=9]; 3592 -> 1506[label="",style="solid", color="blue", weight=3]; 3593[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3593[label="",style="solid", color="blue", weight=9]; 3593 -> 1507[label="",style="solid", color="blue", weight=3]; 3594[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3594[label="",style="solid", color="blue", weight=9]; 3594 -> 1508[label="",style="solid", color="blue", weight=3]; 3595[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3595[label="",style="solid", color="blue", weight=9]; 3595 -> 1509[label="",style="solid", color="blue", weight=3]; 3596[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3596[label="",style="solid", color="blue", weight=9]; 3596 -> 1510[label="",style="solid", color="blue", weight=3]; 3597[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3597[label="",style="solid", color="blue", weight=9]; 3597 -> 1511[label="",style="solid", color="blue", weight=3]; 3598[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3598[label="",style="solid", color="blue", weight=9]; 3598 -> 1512[label="",style="solid", color="blue", weight=3]; 3599[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3599[label="",style="solid", color="blue", weight=9]; 3599 -> 1513[label="",style="solid", color="blue", weight=3]; 3600[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3600[label="",style="solid", color="blue", weight=9]; 3600 -> 1514[label="",style="solid", color="blue", weight=3]; 3601[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3601[label="",style="solid", color="blue", weight=9]; 3601 -> 1515[label="",style="solid", color="blue", weight=3]; 3602[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3602[label="",style="solid", color="blue", weight=9]; 3602 -> 1516[label="",style="solid", color="blue", weight=3]; 3603[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3603[label="",style="solid", color="blue", weight=9]; 3603 -> 1517[label="",style="solid", color="blue", weight=3]; 3604[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3604[label="",style="solid", color="blue", weight=9]; 3604 -> 1518[label="",style="solid", color="blue", weight=3]; 3605[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3605[label="",style="solid", color="blue", weight=9]; 3605 -> 1519[label="",style="solid", color="blue", weight=3]; 1349[label="compare1 (Left xuu149) (Left xuu150) False",fontsize=16,color="black",shape="box"];1349 -> 1520[label="",style="solid", color="black", weight=3]; 1350[label="compare1 (Left xuu149) (Left xuu150) True",fontsize=16,color="black",shape="box"];1350 -> 1521[label="",style="solid", color="black", weight=3]; 1351[label="GT",fontsize=16,color="green",shape="box"];1359[label="xuu98 <= xuu99",fontsize=16,color="blue",shape="box"];3606[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3606[label="",style="solid", color="blue", weight=9]; 3606 -> 1522[label="",style="solid", color="blue", weight=3]; 3607[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3607[label="",style="solid", color="blue", weight=9]; 3607 -> 1523[label="",style="solid", color="blue", weight=3]; 3608[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3608[label="",style="solid", color="blue", weight=9]; 3608 -> 1524[label="",style="solid", color="blue", weight=3]; 3609[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3609[label="",style="solid", color="blue", weight=9]; 3609 -> 1525[label="",style="solid", color="blue", weight=3]; 3610[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3610[label="",style="solid", color="blue", weight=9]; 3610 -> 1526[label="",style="solid", color="blue", weight=3]; 3611[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3611[label="",style="solid", color="blue", weight=9]; 3611 -> 1527[label="",style="solid", color="blue", weight=3]; 3612[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3612[label="",style="solid", color="blue", weight=9]; 3612 -> 1528[label="",style="solid", color="blue", weight=3]; 3613[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3613[label="",style="solid", color="blue", weight=9]; 3613 -> 1529[label="",style="solid", color="blue", weight=3]; 3614[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3614[label="",style="solid", color="blue", weight=9]; 3614 -> 1530[label="",style="solid", color="blue", weight=3]; 3615[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3615[label="",style="solid", color="blue", weight=9]; 3615 -> 1531[label="",style="solid", color="blue", weight=3]; 3616[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3616[label="",style="solid", color="blue", weight=9]; 3616 -> 1532[label="",style="solid", color="blue", weight=3]; 3617[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3617[label="",style="solid", color="blue", weight=9]; 3617 -> 1533[label="",style="solid", color="blue", weight=3]; 3618[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3618[label="",style="solid", color="blue", weight=9]; 3618 -> 1534[label="",style="solid", color="blue", weight=3]; 3619[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3619[label="",style="solid", color="blue", weight=9]; 3619 -> 1535[label="",style="solid", color="blue", weight=3]; 1360[label="compare1 (Right xuu156) (Right xuu157) False",fontsize=16,color="black",shape="box"];1360 -> 1536[label="",style="solid", color="black", weight=3]; 1361[label="compare1 (Right xuu156) (Right xuu157) True",fontsize=16,color="black",shape="box"];1361 -> 1537[label="",style="solid", color="black", weight=3]; 1362[label="xuu6010",fontsize=16,color="green",shape="box"];1363[label="xuu3110000",fontsize=16,color="green",shape="box"];1364[label="primMulNat xuu3110000 xuu6010",fontsize=16,color="burlywood",shape="triangle"];3620[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3620[label="",style="solid", color="burlywood", weight=9]; 3620 -> 1538[label="",style="solid", color="burlywood", weight=3]; 3621[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];1364 -> 3621[label="",style="solid", color="burlywood", weight=9]; 3621 -> 1539[label="",style="solid", color="burlywood", weight=3]; 1365 -> 1364[label="",style="dashed", color="red", weight=0]; 1365[label="primMulNat xuu3110000 xuu6010",fontsize=16,color="magenta"];1365 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1366 -> 1364[label="",style="dashed", color="red", weight=0]; 1366[label="primMulNat xuu3110000 xuu6010",fontsize=16,color="magenta"];1366 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1367 -> 1364[label="",style="dashed", color="red", weight=0]; 1367[label="primMulNat xuu3110000 xuu6010",fontsize=16,color="magenta"];1367 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1367 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1368[label="Pos Zero",fontsize=16,color="green",shape="box"];1369[label="xuu212",fontsize=16,color="green",shape="box"];1370[label="primPlusNat xuu4220 xuu1290",fontsize=16,color="burlywood",shape="triangle"];3622[label="xuu4220/Succ xuu42200",fontsize=10,color="white",style="solid",shape="box"];1370 -> 3622[label="",style="solid", color="burlywood", weight=9]; 3622 -> 1544[label="",style="solid", color="burlywood", weight=3]; 3623[label="xuu4220/Zero",fontsize=10,color="white",style="solid",shape="box"];1370 -> 3623[label="",style="solid", color="burlywood", weight=9]; 3623 -> 1545[label="",style="solid", color="burlywood", weight=3]; 1371[label="primMinusNat (Succ xuu42200) xuu1290",fontsize=16,color="burlywood",shape="box"];3624[label="xuu1290/Succ xuu12900",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3624[label="",style="solid", color="burlywood", weight=9]; 3624 -> 1546[label="",style="solid", color="burlywood", weight=3]; 3625[label="xuu1290/Zero",fontsize=10,color="white",style="solid",shape="box"];1371 -> 3625[label="",style="solid", color="burlywood", weight=9]; 3625 -> 1547[label="",style="solid", color="burlywood", weight=3]; 1372[label="primMinusNat Zero xuu1290",fontsize=16,color="burlywood",shape="box"];3626[label="xuu1290/Succ xuu12900",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3626[label="",style="solid", color="burlywood", weight=9]; 3626 -> 1548[label="",style="solid", color="burlywood", weight=3]; 3627[label="xuu1290/Zero",fontsize=10,color="white",style="solid",shape="box"];1372 -> 3627[label="",style="solid", color="burlywood", weight=9]; 3627 -> 1549[label="",style="solid", color="burlywood", weight=3]; 1373[label="xuu4220",fontsize=16,color="green",shape="box"];1374[label="xuu1290",fontsize=16,color="green",shape="box"];1375 -> 1370[label="",style="dashed", color="red", weight=0]; 1375[label="primPlusNat xuu4220 xuu1290",fontsize=16,color="magenta"];1375 -> 1550[label="",style="dashed", color="magenta", weight=3]; 1375 -> 1551[label="",style="dashed", color="magenta", weight=3]; 1376 -> 502[label="",style="dashed", color="red", weight=0]; 1376[label="FiniteMap.sIZE_RATIO * FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42",fontsize=16,color="magenta"];1376 -> 1552[label="",style="dashed", color="magenta", weight=3]; 1376 -> 1553[label="",style="dashed", color="magenta", weight=3]; 1377 -> 1237[label="",style="dashed", color="red", weight=0]; 1377[label="FiniteMap.mkBalBranch6Size_l xuu21 xuu17 xuu18 xuu42",fontsize=16,color="magenta"];1378[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 False",fontsize=16,color="black",shape="box"];1378 -> 1554[label="",style="solid", color="black", weight=3]; 1379[label="FiniteMap.mkBalBranch6MkBalBranch3 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 True",fontsize=16,color="black",shape="box"];1379 -> 1555[label="",style="solid", color="black", weight=3]; 1380[label="error []",fontsize=16,color="red",shape="box"];1381[label="FiniteMap.mkBalBranch6MkBalBranch02 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];1381 -> 1556[label="",style="solid", color="black", weight=3]; 1382 -> 1236[label="",style="dashed", color="red", weight=0]; 1382[label="primPlusInt (Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu21 xuu17 xuu42) (FiniteMap.mkBranchRight_size xuu21 xuu17 xuu42)",fontsize=16,color="magenta"];1382 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1382 -> 1558[label="",style="dashed", color="magenta", weight=3]; 1398[label="xuu110 <= xuu112",fontsize=16,color="blue",shape="box"];3628[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1398 -> 3628[label="",style="solid", color="blue", weight=9]; 3628 -> 1559[label="",style="solid", color="blue", weight=3]; 3629[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1398 -> 3629[label="",style="solid", color="blue", weight=9]; 3629 -> 1560[label="",style="solid", color="blue", weight=3]; 3630[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1398 -> 3630[label="",style="solid", color="blue", weight=9]; 3630 -> 1561[label="",style="solid", color="blue", weight=3]; 3631[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1398 -> 3631[label="",style="solid", color="blue", weight=9]; 3631 -> 1562[label="",style="solid", color="blue", weight=3]; 3632[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1398 -> 3632[label="",style="solid", color="blue", weight=9]; 3632 -> 1563[label="",style="solid", color="blue", weight=3]; 3633[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1398 -> 3633[label="",style="solid", color="blue", weight=9]; 3633 -> 1564[label="",style="solid", color="blue", weight=3]; 3634[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1398 -> 3634[label="",style="solid", color="blue", weight=9]; 3634 -> 1565[label="",style="solid", color="blue", weight=3]; 3635[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1398 -> 3635[label="",style="solid", color="blue", weight=9]; 3635 -> 1566[label="",style="solid", color="blue", weight=3]; 3636[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1398 -> 3636[label="",style="solid", color="blue", weight=9]; 3636 -> 1567[label="",style="solid", color="blue", weight=3]; 3637[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1398 -> 3637[label="",style="solid", color="blue", weight=9]; 3637 -> 1568[label="",style="solid", color="blue", weight=3]; 3638[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1398 -> 3638[label="",style="solid", color="blue", weight=9]; 3638 -> 1569[label="",style="solid", color="blue", weight=3]; 3639[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1398 -> 3639[label="",style="solid", color="blue", weight=9]; 3639 -> 1570[label="",style="solid", color="blue", weight=3]; 3640[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1398 -> 3640[label="",style="solid", color="blue", weight=9]; 3640 -> 1571[label="",style="solid", color="blue", weight=3]; 3641[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1398 -> 3641[label="",style="solid", color="blue", weight=9]; 3641 -> 1572[label="",style="solid", color="blue", weight=3]; 1399[label="xuu109 == xuu111",fontsize=16,color="blue",shape="box"];3642[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3642[label="",style="solid", color="blue", weight=9]; 3642 -> 1573[label="",style="solid", color="blue", weight=3]; 3643[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3643[label="",style="solid", color="blue", weight=9]; 3643 -> 1574[label="",style="solid", color="blue", weight=3]; 3644[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3644[label="",style="solid", color="blue", weight=9]; 3644 -> 1575[label="",style="solid", color="blue", weight=3]; 3645[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3645[label="",style="solid", color="blue", weight=9]; 3645 -> 1576[label="",style="solid", color="blue", weight=3]; 3646[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3646[label="",style="solid", color="blue", weight=9]; 3646 -> 1577[label="",style="solid", color="blue", weight=3]; 3647[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3647[label="",style="solid", color="blue", weight=9]; 3647 -> 1578[label="",style="solid", color="blue", weight=3]; 3648[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3648[label="",style="solid", color="blue", weight=9]; 3648 -> 1579[label="",style="solid", color="blue", weight=3]; 3649[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3649[label="",style="solid", color="blue", weight=9]; 3649 -> 1580[label="",style="solid", color="blue", weight=3]; 3650[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3650[label="",style="solid", color="blue", weight=9]; 3650 -> 1581[label="",style="solid", color="blue", weight=3]; 3651[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3651[label="",style="solid", color="blue", weight=9]; 3651 -> 1582[label="",style="solid", color="blue", weight=3]; 3652[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3652[label="",style="solid", color="blue", weight=9]; 3652 -> 1583[label="",style="solid", color="blue", weight=3]; 3653[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3653[label="",style="solid", color="blue", weight=9]; 3653 -> 1584[label="",style="solid", color="blue", weight=3]; 3654[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3654[label="",style="solid", color="blue", weight=9]; 3654 -> 1585[label="",style="solid", color="blue", weight=3]; 3655[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3655[label="",style="solid", color="blue", weight=9]; 3655 -> 1586[label="",style="solid", color="blue", weight=3]; 1400 -> 54[label="",style="dashed", color="red", weight=0]; 1400[label="xuu109 < xuu111",fontsize=16,color="magenta"];1400 -> 1587[label="",style="dashed", color="magenta", weight=3]; 1400 -> 1588[label="",style="dashed", color="magenta", weight=3]; 1401 -> 55[label="",style="dashed", color="red", weight=0]; 1401[label="xuu109 < xuu111",fontsize=16,color="magenta"];1401 -> 1589[label="",style="dashed", color="magenta", weight=3]; 1401 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1402 -> 56[label="",style="dashed", color="red", weight=0]; 1402[label="xuu109 < xuu111",fontsize=16,color="magenta"];1402 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1402 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1403 -> 57[label="",style="dashed", color="red", weight=0]; 1403[label="xuu109 < xuu111",fontsize=16,color="magenta"];1403 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1403 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1404 -> 58[label="",style="dashed", color="red", weight=0]; 1404[label="xuu109 < xuu111",fontsize=16,color="magenta"];1404 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1404 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1405 -> 59[label="",style="dashed", color="red", weight=0]; 1405[label="xuu109 < xuu111",fontsize=16,color="magenta"];1405 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1405 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1406 -> 60[label="",style="dashed", color="red", weight=0]; 1406[label="xuu109 < xuu111",fontsize=16,color="magenta"];1406 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1406 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1407 -> 61[label="",style="dashed", color="red", weight=0]; 1407[label="xuu109 < xuu111",fontsize=16,color="magenta"];1407 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1407 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1408 -> 62[label="",style="dashed", color="red", weight=0]; 1408[label="xuu109 < xuu111",fontsize=16,color="magenta"];1408 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1408 -> 1604[label="",style="dashed", color="magenta", weight=3]; 1409 -> 63[label="",style="dashed", color="red", weight=0]; 1409[label="xuu109 < xuu111",fontsize=16,color="magenta"];1409 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1409 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1410 -> 64[label="",style="dashed", color="red", weight=0]; 1410[label="xuu109 < xuu111",fontsize=16,color="magenta"];1410 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1410 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1411 -> 65[label="",style="dashed", color="red", weight=0]; 1411[label="xuu109 < xuu111",fontsize=16,color="magenta"];1411 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1411 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1412 -> 66[label="",style="dashed", color="red", weight=0]; 1412[label="xuu109 < xuu111",fontsize=16,color="magenta"];1412 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1412 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1413 -> 67[label="",style="dashed", color="red", weight=0]; 1413[label="xuu109 < xuu111",fontsize=16,color="magenta"];1413 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1413 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1414[label="compare1 (xuu166,xuu167) (xuu168,xuu169) (False || xuu171)",fontsize=16,color="black",shape="box"];1414 -> 1615[label="",style="solid", color="black", weight=3]; 1415[label="compare1 (xuu166,xuu167) (xuu168,xuu169) (True || xuu171)",fontsize=16,color="black",shape="box"];1415 -> 1616[label="",style="solid", color="black", weight=3]; 1416 -> 1079[label="",style="dashed", color="red", weight=0]; 1416[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];1416 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1416 -> 1618[label="",style="dashed", color="magenta", weight=3]; 1417[label="False",fontsize=16,color="green",shape="box"];1418[label="False",fontsize=16,color="green",shape="box"];1419[label="True",fontsize=16,color="green",shape="box"];1420[label="primEqInt (Pos (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];3656[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];1420 -> 3656[label="",style="solid", color="burlywood", weight=9]; 3656 -> 1619[label="",style="solid", color="burlywood", weight=3]; 3657[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];1420 -> 3657[label="",style="solid", color="burlywood", weight=9]; 3657 -> 1620[label="",style="solid", color="burlywood", weight=3]; 1421[label="primEqInt (Pos Zero) xuu600",fontsize=16,color="burlywood",shape="box"];3658[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3658[label="",style="solid", color="burlywood", weight=9]; 3658 -> 1621[label="",style="solid", color="burlywood", weight=3]; 3659[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3659[label="",style="solid", color="burlywood", weight=9]; 3659 -> 1622[label="",style="solid", color="burlywood", weight=3]; 1422[label="primEqInt (Neg (Succ xuu31100000)) xuu600",fontsize=16,color="burlywood",shape="box"];3660[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];1422 -> 3660[label="",style="solid", color="burlywood", weight=9]; 3660 -> 1623[label="",style="solid", color="burlywood", weight=3]; 3661[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];1422 -> 3661[label="",style="solid", color="burlywood", weight=9]; 3661 -> 1624[label="",style="solid", color="burlywood", weight=3]; 1423[label="primEqInt (Neg Zero) xuu600",fontsize=16,color="burlywood",shape="box"];3662[label="xuu600/Pos xuu6000",fontsize=10,color="white",style="solid",shape="box"];1423 -> 3662[label="",style="solid", color="burlywood", weight=9]; 3662 -> 1625[label="",style="solid", color="burlywood", weight=3]; 3663[label="xuu600/Neg xuu6000",fontsize=10,color="white",style="solid",shape="box"];1423 -> 3663[label="",style="solid", color="burlywood", weight=9]; 3663 -> 1626[label="",style="solid", color="burlywood", weight=3]; 1424[label="primEqFloat (Float xuu3110000 xuu3110001) (Float xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];1424 -> 1627[label="",style="solid", color="black", weight=3]; 1425[label="True",fontsize=16,color="green",shape="box"];1426[label="True",fontsize=16,color="green",shape="box"];1427[label="False",fontsize=16,color="green",shape="box"];1428[label="False",fontsize=16,color="green",shape="box"];1429[label="True",fontsize=16,color="green",shape="box"];1430[label="primEqDouble (Double xuu3110000 xuu3110001) (Double xuu6000 xuu6001)",fontsize=16,color="black",shape="box"];1430 -> 1628[label="",style="solid", color="black", weight=3]; 1431[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3664[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3664[label="",style="solid", color="blue", weight=9]; 3664 -> 1629[label="",style="solid", color="blue", weight=3]; 3665[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3665[label="",style="solid", color="blue", weight=9]; 3665 -> 1630[label="",style="solid", color="blue", weight=3]; 3666[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3666[label="",style="solid", color="blue", weight=9]; 3666 -> 1631[label="",style="solid", color="blue", weight=3]; 3667[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3667[label="",style="solid", color="blue", weight=9]; 3667 -> 1632[label="",style="solid", color="blue", weight=3]; 3668[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3668[label="",style="solid", color="blue", weight=9]; 3668 -> 1633[label="",style="solid", color="blue", weight=3]; 3669[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3669[label="",style="solid", color="blue", weight=9]; 3669 -> 1634[label="",style="solid", color="blue", weight=3]; 3670[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3670[label="",style="solid", color="blue", weight=9]; 3670 -> 1635[label="",style="solid", color="blue", weight=3]; 3671[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3671[label="",style="solid", color="blue", weight=9]; 3671 -> 1636[label="",style="solid", color="blue", weight=3]; 3672[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3672[label="",style="solid", color="blue", weight=9]; 3672 -> 1637[label="",style="solid", color="blue", weight=3]; 3673[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3673[label="",style="solid", color="blue", weight=9]; 3673 -> 1638[label="",style="solid", color="blue", weight=3]; 3674[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3674[label="",style="solid", color="blue", weight=9]; 3674 -> 1639[label="",style="solid", color="blue", weight=3]; 3675[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3675[label="",style="solid", color="blue", weight=9]; 3675 -> 1640[label="",style="solid", color="blue", weight=3]; 3676[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3676[label="",style="solid", color="blue", weight=9]; 3676 -> 1641[label="",style="solid", color="blue", weight=3]; 3677[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1431 -> 3677[label="",style="solid", color="blue", weight=9]; 3677 -> 1642[label="",style="solid", color="blue", weight=3]; 1432[label="False",fontsize=16,color="green",shape="box"];1433[label="False",fontsize=16,color="green",shape="box"];1434[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3678[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3678[label="",style="solid", color="blue", weight=9]; 3678 -> 1643[label="",style="solid", color="blue", weight=3]; 3679[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3679[label="",style="solid", color="blue", weight=9]; 3679 -> 1644[label="",style="solid", color="blue", weight=3]; 3680[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3680[label="",style="solid", color="blue", weight=9]; 3680 -> 1645[label="",style="solid", color="blue", weight=3]; 3681[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3681[label="",style="solid", color="blue", weight=9]; 3681 -> 1646[label="",style="solid", color="blue", weight=3]; 3682[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3682[label="",style="solid", color="blue", weight=9]; 3682 -> 1647[label="",style="solid", color="blue", weight=3]; 3683[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3683[label="",style="solid", color="blue", weight=9]; 3683 -> 1648[label="",style="solid", color="blue", weight=3]; 3684[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3684[label="",style="solid", color="blue", weight=9]; 3684 -> 1649[label="",style="solid", color="blue", weight=3]; 3685[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3685[label="",style="solid", color="blue", weight=9]; 3685 -> 1650[label="",style="solid", color="blue", weight=3]; 3686[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3686[label="",style="solid", color="blue", weight=9]; 3686 -> 1651[label="",style="solid", color="blue", weight=3]; 3687[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3687[label="",style="solid", color="blue", weight=9]; 3687 -> 1652[label="",style="solid", color="blue", weight=3]; 3688[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3688[label="",style="solid", color="blue", weight=9]; 3688 -> 1653[label="",style="solid", color="blue", weight=3]; 3689[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3689[label="",style="solid", color="blue", weight=9]; 3689 -> 1654[label="",style="solid", color="blue", weight=3]; 3690[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3690[label="",style="solid", color="blue", weight=9]; 3690 -> 1655[label="",style="solid", color="blue", weight=3]; 3691[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1434 -> 3691[label="",style="solid", color="blue", weight=9]; 3691 -> 1656[label="",style="solid", color="blue", weight=3]; 1435 -> 1079[label="",style="dashed", color="red", weight=0]; 1435[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];1435 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1436 -> 733[label="",style="dashed", color="red", weight=0]; 1436[label="primEqInt xuu3110000 xuu6000",fontsize=16,color="magenta"];1436 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1437[label="True",fontsize=16,color="green",shape="box"];1438[label="False",fontsize=16,color="green",shape="box"];1439[label="False",fontsize=16,color="green",shape="box"];1440[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3692[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3692[label="",style="solid", color="blue", weight=9]; 3692 -> 1661[label="",style="solid", color="blue", weight=3]; 3693[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3693[label="",style="solid", color="blue", weight=9]; 3693 -> 1662[label="",style="solid", color="blue", weight=3]; 3694[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3694[label="",style="solid", color="blue", weight=9]; 3694 -> 1663[label="",style="solid", color="blue", weight=3]; 3695[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3695[label="",style="solid", color="blue", weight=9]; 3695 -> 1664[label="",style="solid", color="blue", weight=3]; 3696[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3696[label="",style="solid", color="blue", weight=9]; 3696 -> 1665[label="",style="solid", color="blue", weight=3]; 3697[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3697[label="",style="solid", color="blue", weight=9]; 3697 -> 1666[label="",style="solid", color="blue", weight=3]; 3698[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3698[label="",style="solid", color="blue", weight=9]; 3698 -> 1667[label="",style="solid", color="blue", weight=3]; 3699[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3699[label="",style="solid", color="blue", weight=9]; 3699 -> 1668[label="",style="solid", color="blue", weight=3]; 3700[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3700[label="",style="solid", color="blue", weight=9]; 3700 -> 1669[label="",style="solid", color="blue", weight=3]; 3701[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3701[label="",style="solid", color="blue", weight=9]; 3701 -> 1670[label="",style="solid", color="blue", weight=3]; 3702[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3702[label="",style="solid", color="blue", weight=9]; 3702 -> 1671[label="",style="solid", color="blue", weight=3]; 3703[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3703[label="",style="solid", color="blue", weight=9]; 3703 -> 1672[label="",style="solid", color="blue", weight=3]; 3704[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3704[label="",style="solid", color="blue", weight=9]; 3704 -> 1673[label="",style="solid", color="blue", weight=3]; 3705[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1440 -> 3705[label="",style="solid", color="blue", weight=9]; 3705 -> 1674[label="",style="solid", color="blue", weight=3]; 1441[label="primEqChar (Char xuu3110000) (Char xuu6000)",fontsize=16,color="black",shape="box"];1441 -> 1675[label="",style="solid", color="black", weight=3]; 1442 -> 1079[label="",style="dashed", color="red", weight=0]; 1442[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];1442 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1079[label="",style="dashed", color="red", weight=0]; 1443[label="xuu3110000 == xuu6000 && xuu3110001 == xuu6001",fontsize=16,color="magenta"];1443 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1444[label="True",fontsize=16,color="green",shape="box"];1445[label="False",fontsize=16,color="green",shape="box"];1446[label="False",fontsize=16,color="green",shape="box"];1447[label="False",fontsize=16,color="green",shape="box"];1448[label="True",fontsize=16,color="green",shape="box"];1449[label="False",fontsize=16,color="green",shape="box"];1450[label="False",fontsize=16,color="green",shape="box"];1451[label="False",fontsize=16,color="green",shape="box"];1452[label="True",fontsize=16,color="green",shape="box"];1453[label="xuu69 <= xuu70",fontsize=16,color="burlywood",shape="triangle"];3706[label="xuu69/False",fontsize=10,color="white",style="solid",shape="box"];1453 -> 3706[label="",style="solid", color="burlywood", weight=9]; 3706 -> 1680[label="",style="solid", color="burlywood", weight=3]; 3707[label="xuu69/True",fontsize=10,color="white",style="solid",shape="box"];1453 -> 3707[label="",style="solid", color="burlywood", weight=9]; 3707 -> 1681[label="",style="solid", color="burlywood", weight=3]; 1454[label="xuu69 <= xuu70",fontsize=16,color="burlywood",shape="triangle"];3708[label="xuu69/(xuu690,xuu691)",fontsize=10,color="white",style="solid",shape="box"];1454 -> 3708[label="",style="solid", color="burlywood", weight=9]; 3708 -> 1682[label="",style="solid", color="burlywood", weight=3]; 1455[label="xuu69 <= xuu70",fontsize=16,color="black",shape="triangle"];1455 -> 1683[label="",style="solid", color="black", weight=3]; 1456[label="xuu69 <= xuu70",fontsize=16,color="burlywood",shape="triangle"];3709[label="xuu69/Nothing",fontsize=10,color="white",style="solid",shape="box"];1456 -> 3709[label="",style="solid", color="burlywood", weight=9]; 3709 -> 1684[label="",style="solid", color="burlywood", weight=3]; 3710[label="xuu69/Just xuu690",fontsize=10,color="white",style="solid",shape="box"];1456 -> 3710[label="",style="solid", color="burlywood", weight=9]; 3710 -> 1685[label="",style="solid", color="burlywood", weight=3]; 1457[label="xuu69 <= xuu70",fontsize=16,color="burlywood",shape="triangle"];3711[label="xuu69/LT",fontsize=10,color="white",style="solid",shape="box"];1457 -> 3711[label="",style="solid", color="burlywood", weight=9]; 3711 -> 1686[label="",style="solid", color="burlywood", weight=3]; 3712[label="xuu69/EQ",fontsize=10,color="white",style="solid",shape="box"];1457 -> 3712[label="",style="solid", color="burlywood", weight=9]; 3712 -> 1687[label="",style="solid", color="burlywood", weight=3]; 3713[label="xuu69/GT",fontsize=10,color="white",style="solid",shape="box"];1457 -> 3713[label="",style="solid", color="burlywood", weight=9]; 3713 -> 1688[label="",style="solid", color="burlywood", weight=3]; 1458[label="xuu69 <= xuu70",fontsize=16,color="black",shape="triangle"];1458 -> 1689[label="",style="solid", color="black", weight=3]; 1459[label="xuu69 <= xuu70",fontsize=16,color="black",shape="triangle"];1459 -> 1690[label="",style="solid", color="black", weight=3]; 1460[label="xuu69 <= xuu70",fontsize=16,color="black",shape="triangle"];1460 -> 1691[label="",style="solid", color="black", weight=3]; 1461[label="xuu69 <= xuu70",fontsize=16,color="burlywood",shape="triangle"];3714[label="xuu69/(xuu690,xuu691,xuu692)",fontsize=10,color="white",style="solid",shape="box"];1461 -> 3714[label="",style="solid", color="burlywood", weight=9]; 3714 -> 1692[label="",style="solid", color="burlywood", weight=3]; 1462[label="xuu69 <= xuu70",fontsize=16,color="black",shape="triangle"];1462 -> 1693[label="",style="solid", color="black", weight=3]; 1463[label="xuu69 <= xuu70",fontsize=16,color="black",shape="triangle"];1463 -> 1694[label="",style="solid", color="black", weight=3]; 1464[label="xuu69 <= xuu70",fontsize=16,color="black",shape="triangle"];1464 -> 1695[label="",style="solid", color="black", weight=3]; 1465[label="xuu69 <= xuu70",fontsize=16,color="burlywood",shape="triangle"];3715[label="xuu69/Left xuu690",fontsize=10,color="white",style="solid",shape="box"];1465 -> 3715[label="",style="solid", color="burlywood", weight=9]; 3715 -> 1696[label="",style="solid", color="burlywood", weight=3]; 3716[label="xuu69/Right xuu690",fontsize=10,color="white",style="solid",shape="box"];1465 -> 3716[label="",style="solid", color="burlywood", weight=9]; 3716 -> 1697[label="",style="solid", color="burlywood", weight=3]; 1466[label="xuu69 <= xuu70",fontsize=16,color="black",shape="triangle"];1466 -> 1698[label="",style="solid", color="black", weight=3]; 1467[label="compare0 (Just xuu140) (Just xuu141) otherwise",fontsize=16,color="black",shape="box"];1467 -> 1699[label="",style="solid", color="black", weight=3]; 1468[label="LT",fontsize=16,color="green",shape="box"];1488 -> 54[label="",style="dashed", color="red", weight=0]; 1488[label="xuu80 < xuu83",fontsize=16,color="magenta"];1488 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1488 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1489 -> 55[label="",style="dashed", color="red", weight=0]; 1489[label="xuu80 < xuu83",fontsize=16,color="magenta"];1489 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1489 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1490 -> 56[label="",style="dashed", color="red", weight=0]; 1490[label="xuu80 < xuu83",fontsize=16,color="magenta"];1490 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1490 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1491 -> 57[label="",style="dashed", color="red", weight=0]; 1491[label="xuu80 < xuu83",fontsize=16,color="magenta"];1491 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1491 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1492 -> 58[label="",style="dashed", color="red", weight=0]; 1492[label="xuu80 < xuu83",fontsize=16,color="magenta"];1492 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1492 -> 1709[label="",style="dashed", color="magenta", weight=3]; 1493 -> 59[label="",style="dashed", color="red", weight=0]; 1493[label="xuu80 < xuu83",fontsize=16,color="magenta"];1493 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1493 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1494 -> 60[label="",style="dashed", color="red", weight=0]; 1494[label="xuu80 < xuu83",fontsize=16,color="magenta"];1494 -> 1712[label="",style="dashed", color="magenta", weight=3]; 1494 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1495 -> 61[label="",style="dashed", color="red", weight=0]; 1495[label="xuu80 < xuu83",fontsize=16,color="magenta"];1495 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1496 -> 62[label="",style="dashed", color="red", weight=0]; 1496[label="xuu80 < xuu83",fontsize=16,color="magenta"];1496 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1497 -> 63[label="",style="dashed", color="red", weight=0]; 1497[label="xuu80 < xuu83",fontsize=16,color="magenta"];1497 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1497 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1498 -> 64[label="",style="dashed", color="red", weight=0]; 1498[label="xuu80 < xuu83",fontsize=16,color="magenta"];1498 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1498 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1499 -> 65[label="",style="dashed", color="red", weight=0]; 1499[label="xuu80 < xuu83",fontsize=16,color="magenta"];1499 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1499 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1500 -> 66[label="",style="dashed", color="red", weight=0]; 1500[label="xuu80 < xuu83",fontsize=16,color="magenta"];1500 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1501 -> 67[label="",style="dashed", color="red", weight=0]; 1501[label="xuu80 < xuu83",fontsize=16,color="magenta"];1501 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1501 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1502 -> 2085[label="",style="dashed", color="red", weight=0]; 1502[label="xuu81 < xuu84 || xuu81 == xuu84 && xuu82 <= xuu85",fontsize=16,color="magenta"];1502 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1502 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1503[label="xuu80 == xuu83",fontsize=16,color="blue",shape="box"];3717[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3717[label="",style="solid", color="blue", weight=9]; 3717 -> 1730[label="",style="solid", color="blue", weight=3]; 3718[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3718[label="",style="solid", color="blue", weight=9]; 3718 -> 1731[label="",style="solid", color="blue", weight=3]; 3719[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3719[label="",style="solid", color="blue", weight=9]; 3719 -> 1732[label="",style="solid", color="blue", weight=3]; 3720[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3720[label="",style="solid", color="blue", weight=9]; 3720 -> 1733[label="",style="solid", color="blue", weight=3]; 3721[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3721[label="",style="solid", color="blue", weight=9]; 3721 -> 1734[label="",style="solid", color="blue", weight=3]; 3722[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3722[label="",style="solid", color="blue", weight=9]; 3722 -> 1735[label="",style="solid", color="blue", weight=3]; 3723[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3723[label="",style="solid", color="blue", weight=9]; 3723 -> 1736[label="",style="solid", color="blue", weight=3]; 3724[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3724[label="",style="solid", color="blue", weight=9]; 3724 -> 1737[label="",style="solid", color="blue", weight=3]; 3725[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3725[label="",style="solid", color="blue", weight=9]; 3725 -> 1738[label="",style="solid", color="blue", weight=3]; 3726[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3726[label="",style="solid", color="blue", weight=9]; 3726 -> 1739[label="",style="solid", color="blue", weight=3]; 3727[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3727[label="",style="solid", color="blue", weight=9]; 3727 -> 1740[label="",style="solid", color="blue", weight=3]; 3728[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3728[label="",style="solid", color="blue", weight=9]; 3728 -> 1741[label="",style="solid", color="blue", weight=3]; 3729[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3729[label="",style="solid", color="blue", weight=9]; 3729 -> 1742[label="",style="solid", color="blue", weight=3]; 3730[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1503 -> 3730[label="",style="solid", color="blue", weight=9]; 3730 -> 1743[label="",style="solid", color="blue", weight=3]; 1504[label="compare1 (xuu181,xuu182,xuu183) (xuu184,xuu185,xuu186) (False || xuu188)",fontsize=16,color="black",shape="box"];1504 -> 1744[label="",style="solid", color="black", weight=3]; 1505[label="compare1 (xuu181,xuu182,xuu183) (xuu184,xuu185,xuu186) (True || xuu188)",fontsize=16,color="black",shape="box"];1505 -> 1745[label="",style="solid", color="black", weight=3]; 1506 -> 1453[label="",style="dashed", color="red", weight=0]; 1506[label="xuu91 <= xuu92",fontsize=16,color="magenta"];1506 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1506 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1507 -> 1454[label="",style="dashed", color="red", weight=0]; 1507[label="xuu91 <= xuu92",fontsize=16,color="magenta"];1507 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1507 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1508 -> 1455[label="",style="dashed", color="red", weight=0]; 1508[label="xuu91 <= xuu92",fontsize=16,color="magenta"];1508 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1508 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1509 -> 1456[label="",style="dashed", color="red", weight=0]; 1509[label="xuu91 <= xuu92",fontsize=16,color="magenta"];1509 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1509 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1510 -> 1457[label="",style="dashed", color="red", weight=0]; 1510[label="xuu91 <= xuu92",fontsize=16,color="magenta"];1510 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1510 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1511 -> 1458[label="",style="dashed", color="red", weight=0]; 1511[label="xuu91 <= xuu92",fontsize=16,color="magenta"];1511 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1511 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1459[label="",style="dashed", color="red", weight=0]; 1512[label="xuu91 <= xuu92",fontsize=16,color="magenta"];1512 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1512 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1513 -> 1460[label="",style="dashed", color="red", weight=0]; 1513[label="xuu91 <= xuu92",fontsize=16,color="magenta"];1513 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1513 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1514 -> 1461[label="",style="dashed", color="red", weight=0]; 1514[label="xuu91 <= xuu92",fontsize=16,color="magenta"];1514 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1514 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1515 -> 1462[label="",style="dashed", color="red", weight=0]; 1515[label="xuu91 <= xuu92",fontsize=16,color="magenta"];1515 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1515 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1463[label="",style="dashed", color="red", weight=0]; 1516[label="xuu91 <= xuu92",fontsize=16,color="magenta"];1516 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1464[label="",style="dashed", color="red", weight=0]; 1517[label="xuu91 <= xuu92",fontsize=16,color="magenta"];1517 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1518 -> 1465[label="",style="dashed", color="red", weight=0]; 1518[label="xuu91 <= xuu92",fontsize=16,color="magenta"];1518 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1518 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1466[label="",style="dashed", color="red", weight=0]; 1519[label="xuu91 <= xuu92",fontsize=16,color="magenta"];1519 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1519 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1520[label="compare0 (Left xuu149) (Left xuu150) otherwise",fontsize=16,color="black",shape="box"];1520 -> 1774[label="",style="solid", color="black", weight=3]; 1521[label="LT",fontsize=16,color="green",shape="box"];1522 -> 1453[label="",style="dashed", color="red", weight=0]; 1522[label="xuu98 <= xuu99",fontsize=16,color="magenta"];1522 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1522 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1523 -> 1454[label="",style="dashed", color="red", weight=0]; 1523[label="xuu98 <= xuu99",fontsize=16,color="magenta"];1523 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1523 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1524 -> 1455[label="",style="dashed", color="red", weight=0]; 1524[label="xuu98 <= xuu99",fontsize=16,color="magenta"];1524 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1524 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1525 -> 1456[label="",style="dashed", color="red", weight=0]; 1525[label="xuu98 <= xuu99",fontsize=16,color="magenta"];1525 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1525 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1526 -> 1457[label="",style="dashed", color="red", weight=0]; 1526[label="xuu98 <= xuu99",fontsize=16,color="magenta"];1526 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1526 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1527 -> 1458[label="",style="dashed", color="red", weight=0]; 1527[label="xuu98 <= xuu99",fontsize=16,color="magenta"];1527 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1527 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1528 -> 1459[label="",style="dashed", color="red", weight=0]; 1528[label="xuu98 <= xuu99",fontsize=16,color="magenta"];1528 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1528 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1529 -> 1460[label="",style="dashed", color="red", weight=0]; 1529[label="xuu98 <= xuu99",fontsize=16,color="magenta"];1529 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1529 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1530 -> 1461[label="",style="dashed", color="red", weight=0]; 1530[label="xuu98 <= xuu99",fontsize=16,color="magenta"];1530 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1530 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1531 -> 1462[label="",style="dashed", color="red", weight=0]; 1531[label="xuu98 <= xuu99",fontsize=16,color="magenta"];1531 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1531 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1532 -> 1463[label="",style="dashed", color="red", weight=0]; 1532[label="xuu98 <= xuu99",fontsize=16,color="magenta"];1532 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1532 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1533 -> 1464[label="",style="dashed", color="red", weight=0]; 1533[label="xuu98 <= xuu99",fontsize=16,color="magenta"];1533 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1533 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1534 -> 1465[label="",style="dashed", color="red", weight=0]; 1534[label="xuu98 <= xuu99",fontsize=16,color="magenta"];1534 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1534 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1535 -> 1466[label="",style="dashed", color="red", weight=0]; 1535[label="xuu98 <= xuu99",fontsize=16,color="magenta"];1535 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1535 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1536[label="compare0 (Right xuu156) (Right xuu157) otherwise",fontsize=16,color="black",shape="box"];1536 -> 1803[label="",style="solid", color="black", weight=3]; 1537[label="LT",fontsize=16,color="green",shape="box"];1538[label="primMulNat (Succ xuu31100000) xuu6010",fontsize=16,color="burlywood",shape="box"];3731[label="xuu6010/Succ xuu60100",fontsize=10,color="white",style="solid",shape="box"];1538 -> 3731[label="",style="solid", color="burlywood", weight=9]; 3731 -> 1804[label="",style="solid", color="burlywood", weight=3]; 3732[label="xuu6010/Zero",fontsize=10,color="white",style="solid",shape="box"];1538 -> 3732[label="",style="solid", color="burlywood", weight=9]; 3732 -> 1805[label="",style="solid", color="burlywood", weight=3]; 1539[label="primMulNat Zero xuu6010",fontsize=16,color="burlywood",shape="box"];3733[label="xuu6010/Succ xuu60100",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3733[label="",style="solid", color="burlywood", weight=9]; 3733 -> 1806[label="",style="solid", color="burlywood", weight=3]; 3734[label="xuu6010/Zero",fontsize=10,color="white",style="solid",shape="box"];1539 -> 3734[label="",style="solid", color="burlywood", weight=9]; 3734 -> 1807[label="",style="solid", color="burlywood", weight=3]; 1540[label="xuu6010",fontsize=16,color="green",shape="box"];1541[label="xuu3110000",fontsize=16,color="green",shape="box"];1542[label="xuu3110000",fontsize=16,color="green",shape="box"];1543[label="xuu6010",fontsize=16,color="green",shape="box"];1544[label="primPlusNat (Succ xuu42200) xuu1290",fontsize=16,color="burlywood",shape="box"];3735[label="xuu1290/Succ xuu12900",fontsize=10,color="white",style="solid",shape="box"];1544 -> 3735[label="",style="solid", color="burlywood", weight=9]; 3735 -> 1808[label="",style="solid", color="burlywood", weight=3]; 3736[label="xuu1290/Zero",fontsize=10,color="white",style="solid",shape="box"];1544 -> 3736[label="",style="solid", color="burlywood", weight=9]; 3736 -> 1809[label="",style="solid", color="burlywood", weight=3]; 1545[label="primPlusNat Zero xuu1290",fontsize=16,color="burlywood",shape="box"];3737[label="xuu1290/Succ xuu12900",fontsize=10,color="white",style="solid",shape="box"];1545 -> 3737[label="",style="solid", color="burlywood", weight=9]; 3737 -> 1810[label="",style="solid", color="burlywood", weight=3]; 3738[label="xuu1290/Zero",fontsize=10,color="white",style="solid",shape="box"];1545 -> 3738[label="",style="solid", color="burlywood", weight=9]; 3738 -> 1811[label="",style="solid", color="burlywood", weight=3]; 1546[label="primMinusNat (Succ xuu42200) (Succ xuu12900)",fontsize=16,color="black",shape="box"];1546 -> 1812[label="",style="solid", color="black", weight=3]; 1547[label="primMinusNat (Succ xuu42200) Zero",fontsize=16,color="black",shape="box"];1547 -> 1813[label="",style="solid", color="black", weight=3]; 1548[label="primMinusNat Zero (Succ xuu12900)",fontsize=16,color="black",shape="box"];1548 -> 1814[label="",style="solid", color="black", weight=3]; 1549[label="primMinusNat Zero Zero",fontsize=16,color="black",shape="box"];1549 -> 1815[label="",style="solid", color="black", weight=3]; 1550[label="xuu1290",fontsize=16,color="green",shape="box"];1551[label="xuu4220",fontsize=16,color="green",shape="box"];1552 -> 725[label="",style="dashed", color="red", weight=0]; 1552[label="FiniteMap.mkBalBranch6Size_r xuu21 xuu17 xuu18 xuu42",fontsize=16,color="magenta"];1553 -> 956[label="",style="dashed", color="red", weight=0]; 1553[label="FiniteMap.sIZE_RATIO",fontsize=16,color="magenta"];1554[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 otherwise",fontsize=16,color="black",shape="box"];1554 -> 1816[label="",style="solid", color="black", weight=3]; 1555[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu21 xuu17 xuu18 xuu42 xuu42 xuu21 xuu42",fontsize=16,color="burlywood",shape="box"];3739[label="xuu42/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];1555 -> 3739[label="",style="solid", color="burlywood", weight=9]; 3739 -> 1817[label="",style="solid", color="burlywood", weight=3]; 3740[label="xuu42/FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424",fontsize=10,color="white",style="solid",shape="box"];1555 -> 3740[label="",style="solid", color="burlywood", weight=9]; 3740 -> 1818[label="",style="solid", color="burlywood", weight=3]; 1556 -> 1819[label="",style="dashed", color="red", weight=0]; 1556[label="FiniteMap.mkBalBranch6MkBalBranch01 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 (FiniteMap.sizeFM xuu213 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu214)",fontsize=16,color="magenta"];1556 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1557[label="Pos (Succ Zero) + FiniteMap.mkBranchLeft_size xuu21 xuu17 xuu42",fontsize=16,color="black",shape="box"];1557 -> 1821[label="",style="solid", color="black", weight=3]; 1558[label="FiniteMap.mkBranchRight_size xuu21 xuu17 xuu42",fontsize=16,color="black",shape="box"];1558 -> 1822[label="",style="solid", color="black", weight=3]; 1559 -> 1453[label="",style="dashed", color="red", weight=0]; 1559[label="xuu110 <= xuu112",fontsize=16,color="magenta"];1559 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1454[label="",style="dashed", color="red", weight=0]; 1560[label="xuu110 <= xuu112",fontsize=16,color="magenta"];1560 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1455[label="",style="dashed", color="red", weight=0]; 1561[label="xuu110 <= xuu112",fontsize=16,color="magenta"];1561 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1456[label="",style="dashed", color="red", weight=0]; 1562[label="xuu110 <= xuu112",fontsize=16,color="magenta"];1562 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1563 -> 1457[label="",style="dashed", color="red", weight=0]; 1563[label="xuu110 <= xuu112",fontsize=16,color="magenta"];1563 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1563 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1564 -> 1458[label="",style="dashed", color="red", weight=0]; 1564[label="xuu110 <= xuu112",fontsize=16,color="magenta"];1564 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1564 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1565 -> 1459[label="",style="dashed", color="red", weight=0]; 1565[label="xuu110 <= xuu112",fontsize=16,color="magenta"];1565 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1565 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1566 -> 1460[label="",style="dashed", color="red", weight=0]; 1566[label="xuu110 <= xuu112",fontsize=16,color="magenta"];1566 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1566 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1461[label="",style="dashed", color="red", weight=0]; 1567[label="xuu110 <= xuu112",fontsize=16,color="magenta"];1567 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1568 -> 1462[label="",style="dashed", color="red", weight=0]; 1568[label="xuu110 <= xuu112",fontsize=16,color="magenta"];1568 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1568 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1569 -> 1463[label="",style="dashed", color="red", weight=0]; 1569[label="xuu110 <= xuu112",fontsize=16,color="magenta"];1569 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1569 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1464[label="",style="dashed", color="red", weight=0]; 1570[label="xuu110 <= xuu112",fontsize=16,color="magenta"];1570 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1571 -> 1465[label="",style="dashed", color="red", weight=0]; 1571[label="xuu110 <= xuu112",fontsize=16,color="magenta"];1571 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1571 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1572 -> 1466[label="",style="dashed", color="red", weight=0]; 1572[label="xuu110 <= xuu112",fontsize=16,color="magenta"];1572 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1572 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1573 -> 592[label="",style="dashed", color="red", weight=0]; 1573[label="xuu109 == xuu111",fontsize=16,color="magenta"];1573 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1573 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1574 -> 595[label="",style="dashed", color="red", weight=0]; 1574[label="xuu109 == xuu111",fontsize=16,color="magenta"];1574 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1574 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1575 -> 588[label="",style="dashed", color="red", weight=0]; 1575[label="xuu109 == xuu111",fontsize=16,color="magenta"];1575 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1575 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1576 -> 597[label="",style="dashed", color="red", weight=0]; 1576[label="xuu109 == xuu111",fontsize=16,color="magenta"];1576 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1576 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1577 -> 601[label="",style="dashed", color="red", weight=0]; 1577[label="xuu109 == xuu111",fontsize=16,color="magenta"];1577 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1578 -> 596[label="",style="dashed", color="red", weight=0]; 1578[label="xuu109 == xuu111",fontsize=16,color="magenta"];1578 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1578 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1579 -> 593[label="",style="dashed", color="red", weight=0]; 1579[label="xuu109 == xuu111",fontsize=16,color="magenta"];1579 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1579 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1580 -> 589[label="",style="dashed", color="red", weight=0]; 1580[label="xuu109 == xuu111",fontsize=16,color="magenta"];1580 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1580 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1581 -> 599[label="",style="dashed", color="red", weight=0]; 1581[label="xuu109 == xuu111",fontsize=16,color="magenta"];1581 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1581 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1582 -> 590[label="",style="dashed", color="red", weight=0]; 1582[label="xuu109 == xuu111",fontsize=16,color="magenta"];1582 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1582 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1583 -> 591[label="",style="dashed", color="red", weight=0]; 1583[label="xuu109 == xuu111",fontsize=16,color="magenta"];1583 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1583 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1584 -> 598[label="",style="dashed", color="red", weight=0]; 1584[label="xuu109 == xuu111",fontsize=16,color="magenta"];1584 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1584 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1585 -> 594[label="",style="dashed", color="red", weight=0]; 1585[label="xuu109 == xuu111",fontsize=16,color="magenta"];1585 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1585 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1586 -> 600[label="",style="dashed", color="red", weight=0]; 1586[label="xuu109 == xuu111",fontsize=16,color="magenta"];1586 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1586 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1587[label="xuu109",fontsize=16,color="green",shape="box"];1588[label="xuu111",fontsize=16,color="green",shape="box"];1589[label="xuu109",fontsize=16,color="green",shape="box"];1590[label="xuu111",fontsize=16,color="green",shape="box"];1591[label="xuu109",fontsize=16,color="green",shape="box"];1592[label="xuu111",fontsize=16,color="green",shape="box"];1593[label="xuu109",fontsize=16,color="green",shape="box"];1594[label="xuu111",fontsize=16,color="green",shape="box"];1595[label="xuu109",fontsize=16,color="green",shape="box"];1596[label="xuu111",fontsize=16,color="green",shape="box"];1597[label="xuu109",fontsize=16,color="green",shape="box"];1598[label="xuu111",fontsize=16,color="green",shape="box"];1599[label="xuu109",fontsize=16,color="green",shape="box"];1600[label="xuu111",fontsize=16,color="green",shape="box"];1601[label="xuu109",fontsize=16,color="green",shape="box"];1602[label="xuu111",fontsize=16,color="green",shape="box"];1603[label="xuu109",fontsize=16,color="green",shape="box"];1604[label="xuu111",fontsize=16,color="green",shape="box"];1605[label="xuu109",fontsize=16,color="green",shape="box"];1606[label="xuu111",fontsize=16,color="green",shape="box"];1607[label="xuu109",fontsize=16,color="green",shape="box"];1608[label="xuu111",fontsize=16,color="green",shape="box"];1609[label="xuu109",fontsize=16,color="green",shape="box"];1610[label="xuu111",fontsize=16,color="green",shape="box"];1611[label="xuu109",fontsize=16,color="green",shape="box"];1612[label="xuu111",fontsize=16,color="green",shape="box"];1613[label="xuu109",fontsize=16,color="green",shape="box"];1614[label="xuu111",fontsize=16,color="green",shape="box"];1615[label="compare1 (xuu166,xuu167) (xuu168,xuu169) xuu171",fontsize=16,color="burlywood",shape="triangle"];3741[label="xuu171/False",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3741[label="",style="solid", color="burlywood", weight=9]; 3741 -> 1879[label="",style="solid", color="burlywood", weight=3]; 3742[label="xuu171/True",fontsize=10,color="white",style="solid",shape="box"];1615 -> 3742[label="",style="solid", color="burlywood", weight=9]; 3742 -> 1880[label="",style="solid", color="burlywood", weight=3]; 1616 -> 1615[label="",style="dashed", color="red", weight=0]; 1616[label="compare1 (xuu166,xuu167) (xuu168,xuu169) True",fontsize=16,color="magenta"];1616 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1617 -> 588[label="",style="dashed", color="red", weight=0]; 1617[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1617 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1617 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1618[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3743[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 3743[label="",style="solid", color="blue", weight=9]; 3743 -> 1884[label="",style="solid", color="blue", weight=3]; 3744[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 3744[label="",style="solid", color="blue", weight=9]; 3744 -> 1885[label="",style="solid", color="blue", weight=3]; 3745[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 3745[label="",style="solid", color="blue", weight=9]; 3745 -> 1886[label="",style="solid", color="blue", weight=3]; 3746[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 3746[label="",style="solid", color="blue", weight=9]; 3746 -> 1887[label="",style="solid", color="blue", weight=3]; 3747[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 3747[label="",style="solid", color="blue", weight=9]; 3747 -> 1888[label="",style="solid", color="blue", weight=3]; 3748[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 3748[label="",style="solid", color="blue", weight=9]; 3748 -> 1889[label="",style="solid", color="blue", weight=3]; 3749[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 3749[label="",style="solid", color="blue", weight=9]; 3749 -> 1890[label="",style="solid", color="blue", weight=3]; 3750[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 3750[label="",style="solid", color="blue", weight=9]; 3750 -> 1891[label="",style="solid", color="blue", weight=3]; 3751[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 3751[label="",style="solid", color="blue", weight=9]; 3751 -> 1892[label="",style="solid", color="blue", weight=3]; 3752[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 3752[label="",style="solid", color="blue", weight=9]; 3752 -> 1893[label="",style="solid", color="blue", weight=3]; 3753[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 3753[label="",style="solid", color="blue", weight=9]; 3753 -> 1894[label="",style="solid", color="blue", weight=3]; 3754[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 3754[label="",style="solid", color="blue", weight=9]; 3754 -> 1895[label="",style="solid", color="blue", weight=3]; 3755[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 3755[label="",style="solid", color="blue", weight=9]; 3755 -> 1896[label="",style="solid", color="blue", weight=3]; 3756[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 3756[label="",style="solid", color="blue", weight=9]; 3756 -> 1897[label="",style="solid", color="blue", weight=3]; 1619[label="primEqInt (Pos (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];3757[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];1619 -> 3757[label="",style="solid", color="burlywood", weight=9]; 3757 -> 1898[label="",style="solid", color="burlywood", weight=3]; 3758[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];1619 -> 3758[label="",style="solid", color="burlywood", weight=9]; 3758 -> 1899[label="",style="solid", color="burlywood", weight=3]; 1620[label="primEqInt (Pos (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="black",shape="box"];1620 -> 1900[label="",style="solid", color="black", weight=3]; 1621[label="primEqInt (Pos Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];3759[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];1621 -> 3759[label="",style="solid", color="burlywood", weight=9]; 3759 -> 1901[label="",style="solid", color="burlywood", weight=3]; 3760[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];1621 -> 3760[label="",style="solid", color="burlywood", weight=9]; 3760 -> 1902[label="",style="solid", color="burlywood", weight=3]; 1622[label="primEqInt (Pos Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];3761[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];1622 -> 3761[label="",style="solid", color="burlywood", weight=9]; 3761 -> 1903[label="",style="solid", color="burlywood", weight=3]; 3762[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];1622 -> 3762[label="",style="solid", color="burlywood", weight=9]; 3762 -> 1904[label="",style="solid", color="burlywood", weight=3]; 1623[label="primEqInt (Neg (Succ xuu31100000)) (Pos xuu6000)",fontsize=16,color="black",shape="box"];1623 -> 1905[label="",style="solid", color="black", weight=3]; 1624[label="primEqInt (Neg (Succ xuu31100000)) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];3763[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];1624 -> 3763[label="",style="solid", color="burlywood", weight=9]; 3763 -> 1906[label="",style="solid", color="burlywood", weight=3]; 3764[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];1624 -> 3764[label="",style="solid", color="burlywood", weight=9]; 3764 -> 1907[label="",style="solid", color="burlywood", weight=3]; 1625[label="primEqInt (Neg Zero) (Pos xuu6000)",fontsize=16,color="burlywood",shape="box"];3765[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];1625 -> 3765[label="",style="solid", color="burlywood", weight=9]; 3765 -> 1908[label="",style="solid", color="burlywood", weight=3]; 3766[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];1625 -> 3766[label="",style="solid", color="burlywood", weight=9]; 3766 -> 1909[label="",style="solid", color="burlywood", weight=3]; 1626[label="primEqInt (Neg Zero) (Neg xuu6000)",fontsize=16,color="burlywood",shape="box"];3767[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];1626 -> 3767[label="",style="solid", color="burlywood", weight=9]; 3767 -> 1910[label="",style="solid", color="burlywood", weight=3]; 3768[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];1626 -> 3768[label="",style="solid", color="burlywood", weight=9]; 3768 -> 1911[label="",style="solid", color="burlywood", weight=3]; 1627 -> 589[label="",style="dashed", color="red", weight=0]; 1627[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];1627 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1627 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1628 -> 589[label="",style="dashed", color="red", weight=0]; 1628[label="xuu3110000 * xuu6001 == xuu3110001 * xuu6000",fontsize=16,color="magenta"];1628 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1628 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1629 -> 588[label="",style="dashed", color="red", weight=0]; 1629[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1629 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1629 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1630 -> 589[label="",style="dashed", color="red", weight=0]; 1630[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1630 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1630 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1631 -> 590[label="",style="dashed", color="red", weight=0]; 1631[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1631 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1631 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1632 -> 591[label="",style="dashed", color="red", weight=0]; 1632[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1632 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1632 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1633 -> 592[label="",style="dashed", color="red", weight=0]; 1633[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1633 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1633 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1634 -> 593[label="",style="dashed", color="red", weight=0]; 1634[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1634 -> 1926[label="",style="dashed", color="magenta", weight=3]; 1634 -> 1927[label="",style="dashed", color="magenta", weight=3]; 1635 -> 594[label="",style="dashed", color="red", weight=0]; 1635[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1635 -> 1928[label="",style="dashed", color="magenta", weight=3]; 1635 -> 1929[label="",style="dashed", color="magenta", weight=3]; 1636 -> 595[label="",style="dashed", color="red", weight=0]; 1636[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1636 -> 1930[label="",style="dashed", color="magenta", weight=3]; 1636 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1637 -> 596[label="",style="dashed", color="red", weight=0]; 1637[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1637 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1637 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1638 -> 597[label="",style="dashed", color="red", weight=0]; 1638[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1638 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1638 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1639 -> 598[label="",style="dashed", color="red", weight=0]; 1639[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1639 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1639 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1640 -> 599[label="",style="dashed", color="red", weight=0]; 1640[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1640 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1640 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1641 -> 600[label="",style="dashed", color="red", weight=0]; 1641[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1641 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1641 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1642 -> 601[label="",style="dashed", color="red", weight=0]; 1642[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1642 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1642 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1643 -> 588[label="",style="dashed", color="red", weight=0]; 1643[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1643 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1643 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1644 -> 589[label="",style="dashed", color="red", weight=0]; 1644[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1644 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1644 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1645 -> 590[label="",style="dashed", color="red", weight=0]; 1645[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1645 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1645 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1646 -> 591[label="",style="dashed", color="red", weight=0]; 1646[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1646 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1646 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1647 -> 592[label="",style="dashed", color="red", weight=0]; 1647[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1647 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1647 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1648 -> 593[label="",style="dashed", color="red", weight=0]; 1648[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1648 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1648 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1649 -> 594[label="",style="dashed", color="red", weight=0]; 1649[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1649 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1649 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1650 -> 595[label="",style="dashed", color="red", weight=0]; 1650[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1650 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1650 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1651 -> 596[label="",style="dashed", color="red", weight=0]; 1651[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1651 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1651 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1652 -> 597[label="",style="dashed", color="red", weight=0]; 1652[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1652 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1652 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1653 -> 598[label="",style="dashed", color="red", weight=0]; 1653[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1653 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1653 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1654 -> 599[label="",style="dashed", color="red", weight=0]; 1654[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1654 -> 1966[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1967[label="",style="dashed", color="magenta", weight=3]; 1655 -> 600[label="",style="dashed", color="red", weight=0]; 1655[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1655 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1655 -> 1969[label="",style="dashed", color="magenta", weight=3]; 1656 -> 601[label="",style="dashed", color="red", weight=0]; 1656[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1656 -> 1970[label="",style="dashed", color="magenta", weight=3]; 1656 -> 1971[label="",style="dashed", color="magenta", weight=3]; 1657[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];3769[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3769[label="",style="solid", color="blue", weight=9]; 3769 -> 1972[label="",style="solid", color="blue", weight=3]; 3770[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3770[label="",style="solid", color="blue", weight=9]; 3770 -> 1973[label="",style="solid", color="blue", weight=3]; 3771[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3771[label="",style="solid", color="blue", weight=9]; 3771 -> 1974[label="",style="solid", color="blue", weight=3]; 3772[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3772[label="",style="solid", color="blue", weight=9]; 3772 -> 1975[label="",style="solid", color="blue", weight=3]; 3773[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3773[label="",style="solid", color="blue", weight=9]; 3773 -> 1976[label="",style="solid", color="blue", weight=3]; 3774[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3774[label="",style="solid", color="blue", weight=9]; 3774 -> 1977[label="",style="solid", color="blue", weight=3]; 3775[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3775[label="",style="solid", color="blue", weight=9]; 3775 -> 1978[label="",style="solid", color="blue", weight=3]; 3776[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3776[label="",style="solid", color="blue", weight=9]; 3776 -> 1979[label="",style="solid", color="blue", weight=3]; 3777[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3777[label="",style="solid", color="blue", weight=9]; 3777 -> 1980[label="",style="solid", color="blue", weight=3]; 3778[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3778[label="",style="solid", color="blue", weight=9]; 3778 -> 1981[label="",style="solid", color="blue", weight=3]; 3779[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3779[label="",style="solid", color="blue", weight=9]; 3779 -> 1982[label="",style="solid", color="blue", weight=3]; 3780[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3780[label="",style="solid", color="blue", weight=9]; 3780 -> 1983[label="",style="solid", color="blue", weight=3]; 3781[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3781[label="",style="solid", color="blue", weight=9]; 3781 -> 1984[label="",style="solid", color="blue", weight=3]; 3782[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3782[label="",style="solid", color="blue", weight=9]; 3782 -> 1985[label="",style="solid", color="blue", weight=3]; 1658[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3783[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3783[label="",style="solid", color="blue", weight=9]; 3783 -> 1986[label="",style="solid", color="blue", weight=3]; 3784[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3784[label="",style="solid", color="blue", weight=9]; 3784 -> 1987[label="",style="solid", color="blue", weight=3]; 3785[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3785[label="",style="solid", color="blue", weight=9]; 3785 -> 1988[label="",style="solid", color="blue", weight=3]; 3786[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3786[label="",style="solid", color="blue", weight=9]; 3786 -> 1989[label="",style="solid", color="blue", weight=3]; 3787[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3787[label="",style="solid", color="blue", weight=9]; 3787 -> 1990[label="",style="solid", color="blue", weight=3]; 3788[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3788[label="",style="solid", color="blue", weight=9]; 3788 -> 1991[label="",style="solid", color="blue", weight=3]; 3789[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3789[label="",style="solid", color="blue", weight=9]; 3789 -> 1992[label="",style="solid", color="blue", weight=3]; 3790[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3790[label="",style="solid", color="blue", weight=9]; 3790 -> 1993[label="",style="solid", color="blue", weight=3]; 3791[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3791[label="",style="solid", color="blue", weight=9]; 3791 -> 1994[label="",style="solid", color="blue", weight=3]; 3792[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3792[label="",style="solid", color="blue", weight=9]; 3792 -> 1995[label="",style="solid", color="blue", weight=3]; 3793[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3793[label="",style="solid", color="blue", weight=9]; 3793 -> 1996[label="",style="solid", color="blue", weight=3]; 3794[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3794[label="",style="solid", color="blue", weight=9]; 3794 -> 1997[label="",style="solid", color="blue", weight=3]; 3795[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3795[label="",style="solid", color="blue", weight=9]; 3795 -> 1998[label="",style="solid", color="blue", weight=3]; 3796[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3796[label="",style="solid", color="blue", weight=9]; 3796 -> 1999[label="",style="solid", color="blue", weight=3]; 1659[label="xuu6000",fontsize=16,color="green",shape="box"];1660[label="xuu3110000",fontsize=16,color="green",shape="box"];1661 -> 588[label="",style="dashed", color="red", weight=0]; 1661[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1661 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1661 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1662 -> 589[label="",style="dashed", color="red", weight=0]; 1662[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1662 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1662 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1663 -> 590[label="",style="dashed", color="red", weight=0]; 1663[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1663 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1663 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1664 -> 591[label="",style="dashed", color="red", weight=0]; 1664[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1664 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1664 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1665 -> 592[label="",style="dashed", color="red", weight=0]; 1665[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1665 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1665 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1666 -> 593[label="",style="dashed", color="red", weight=0]; 1666[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1666 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1666 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1667 -> 594[label="",style="dashed", color="red", weight=0]; 1667[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1667 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1667 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1668 -> 595[label="",style="dashed", color="red", weight=0]; 1668[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1668 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1668 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1669 -> 596[label="",style="dashed", color="red", weight=0]; 1669[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1669 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1669 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1670 -> 597[label="",style="dashed", color="red", weight=0]; 1670[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1670 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1670 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1671 -> 598[label="",style="dashed", color="red", weight=0]; 1671[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1671 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1671 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1672 -> 599[label="",style="dashed", color="red", weight=0]; 1672[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1672 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1672 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1673 -> 600[label="",style="dashed", color="red", weight=0]; 1673[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1673 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1673 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1674 -> 601[label="",style="dashed", color="red", weight=0]; 1674[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1674 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1674 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1675[label="primEqNat xuu3110000 xuu6000",fontsize=16,color="burlywood",shape="triangle"];3797[label="xuu3110000/Succ xuu31100000",fontsize=10,color="white",style="solid",shape="box"];1675 -> 3797[label="",style="solid", color="burlywood", weight=9]; 3797 -> 2028[label="",style="solid", color="burlywood", weight=3]; 3798[label="xuu3110000/Zero",fontsize=10,color="white",style="solid",shape="box"];1675 -> 3798[label="",style="solid", color="burlywood", weight=9]; 3798 -> 2029[label="",style="solid", color="burlywood", weight=3]; 1676 -> 1079[label="",style="dashed", color="red", weight=0]; 1676[label="xuu3110001 == xuu6001 && xuu3110002 == xuu6002",fontsize=16,color="magenta"];1676 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1676 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1677[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3799[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 3799[label="",style="solid", color="blue", weight=9]; 3799 -> 2032[label="",style="solid", color="blue", weight=3]; 3800[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 3800[label="",style="solid", color="blue", weight=9]; 3800 -> 2033[label="",style="solid", color="blue", weight=3]; 3801[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 3801[label="",style="solid", color="blue", weight=9]; 3801 -> 2034[label="",style="solid", color="blue", weight=3]; 3802[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 3802[label="",style="solid", color="blue", weight=9]; 3802 -> 2035[label="",style="solid", color="blue", weight=3]; 3803[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 3803[label="",style="solid", color="blue", weight=9]; 3803 -> 2036[label="",style="solid", color="blue", weight=3]; 3804[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 3804[label="",style="solid", color="blue", weight=9]; 3804 -> 2037[label="",style="solid", color="blue", weight=3]; 3805[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 3805[label="",style="solid", color="blue", weight=9]; 3805 -> 2038[label="",style="solid", color="blue", weight=3]; 3806[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 3806[label="",style="solid", color="blue", weight=9]; 3806 -> 2039[label="",style="solid", color="blue", weight=3]; 3807[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 3807[label="",style="solid", color="blue", weight=9]; 3807 -> 2040[label="",style="solid", color="blue", weight=3]; 3808[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 3808[label="",style="solid", color="blue", weight=9]; 3808 -> 2041[label="",style="solid", color="blue", weight=3]; 3809[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 3809[label="",style="solid", color="blue", weight=9]; 3809 -> 2042[label="",style="solid", color="blue", weight=3]; 3810[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 3810[label="",style="solid", color="blue", weight=9]; 3810 -> 2043[label="",style="solid", color="blue", weight=3]; 3811[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 3811[label="",style="solid", color="blue", weight=9]; 3811 -> 2044[label="",style="solid", color="blue", weight=3]; 3812[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1677 -> 3812[label="",style="solid", color="blue", weight=9]; 3812 -> 2045[label="",style="solid", color="blue", weight=3]; 1678[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];3813[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 3813[label="",style="solid", color="blue", weight=9]; 3813 -> 2046[label="",style="solid", color="blue", weight=3]; 3814[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1678 -> 3814[label="",style="solid", color="blue", weight=9]; 3814 -> 2047[label="",style="solid", color="blue", weight=3]; 1679[label="xuu3110000 == xuu6000",fontsize=16,color="blue",shape="box"];3815[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1679 -> 3815[label="",style="solid", color="blue", weight=9]; 3815 -> 2048[label="",style="solid", color="blue", weight=3]; 3816[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1679 -> 3816[label="",style="solid", color="blue", weight=9]; 3816 -> 2049[label="",style="solid", color="blue", weight=3]; 1680[label="False <= xuu70",fontsize=16,color="burlywood",shape="box"];3817[label="xuu70/False",fontsize=10,color="white",style="solid",shape="box"];1680 -> 3817[label="",style="solid", color="burlywood", weight=9]; 3817 -> 2050[label="",style="solid", color="burlywood", weight=3]; 3818[label="xuu70/True",fontsize=10,color="white",style="solid",shape="box"];1680 -> 3818[label="",style="solid", color="burlywood", weight=9]; 3818 -> 2051[label="",style="solid", color="burlywood", weight=3]; 1681[label="True <= xuu70",fontsize=16,color="burlywood",shape="box"];3819[label="xuu70/False",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3819[label="",style="solid", color="burlywood", weight=9]; 3819 -> 2052[label="",style="solid", color="burlywood", weight=3]; 3820[label="xuu70/True",fontsize=10,color="white",style="solid",shape="box"];1681 -> 3820[label="",style="solid", color="burlywood", weight=9]; 3820 -> 2053[label="",style="solid", color="burlywood", weight=3]; 1682[label="(xuu690,xuu691) <= xuu70",fontsize=16,color="burlywood",shape="box"];3821[label="xuu70/(xuu700,xuu701)",fontsize=10,color="white",style="solid",shape="box"];1682 -> 3821[label="",style="solid", color="burlywood", weight=9]; 3821 -> 2054[label="",style="solid", color="burlywood", weight=3]; 1683 -> 2055[label="",style="dashed", color="red", weight=0]; 1683[label="compare xuu69 xuu70 /= GT",fontsize=16,color="magenta"];1683 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1684[label="Nothing <= xuu70",fontsize=16,color="burlywood",shape="box"];3822[label="xuu70/Nothing",fontsize=10,color="white",style="solid",shape="box"];1684 -> 3822[label="",style="solid", color="burlywood", weight=9]; 3822 -> 2064[label="",style="solid", color="burlywood", weight=3]; 3823[label="xuu70/Just xuu700",fontsize=10,color="white",style="solid",shape="box"];1684 -> 3823[label="",style="solid", color="burlywood", weight=9]; 3823 -> 2065[label="",style="solid", color="burlywood", weight=3]; 1685[label="Just xuu690 <= xuu70",fontsize=16,color="burlywood",shape="box"];3824[label="xuu70/Nothing",fontsize=10,color="white",style="solid",shape="box"];1685 -> 3824[label="",style="solid", color="burlywood", weight=9]; 3824 -> 2066[label="",style="solid", color="burlywood", weight=3]; 3825[label="xuu70/Just xuu700",fontsize=10,color="white",style="solid",shape="box"];1685 -> 3825[label="",style="solid", color="burlywood", weight=9]; 3825 -> 2067[label="",style="solid", color="burlywood", weight=3]; 1686[label="LT <= xuu70",fontsize=16,color="burlywood",shape="box"];3826[label="xuu70/LT",fontsize=10,color="white",style="solid",shape="box"];1686 -> 3826[label="",style="solid", color="burlywood", weight=9]; 3826 -> 2068[label="",style="solid", color="burlywood", weight=3]; 3827[label="xuu70/EQ",fontsize=10,color="white",style="solid",shape="box"];1686 -> 3827[label="",style="solid", color="burlywood", weight=9]; 3827 -> 2069[label="",style="solid", color="burlywood", weight=3]; 3828[label="xuu70/GT",fontsize=10,color="white",style="solid",shape="box"];1686 -> 3828[label="",style="solid", color="burlywood", weight=9]; 3828 -> 2070[label="",style="solid", color="burlywood", weight=3]; 1687[label="EQ <= xuu70",fontsize=16,color="burlywood",shape="box"];3829[label="xuu70/LT",fontsize=10,color="white",style="solid",shape="box"];1687 -> 3829[label="",style="solid", color="burlywood", weight=9]; 3829 -> 2071[label="",style="solid", color="burlywood", weight=3]; 3830[label="xuu70/EQ",fontsize=10,color="white",style="solid",shape="box"];1687 -> 3830[label="",style="solid", color="burlywood", weight=9]; 3830 -> 2072[label="",style="solid", color="burlywood", weight=3]; 3831[label="xuu70/GT",fontsize=10,color="white",style="solid",shape="box"];1687 -> 3831[label="",style="solid", color="burlywood", weight=9]; 3831 -> 2073[label="",style="solid", color="burlywood", weight=3]; 1688[label="GT <= xuu70",fontsize=16,color="burlywood",shape="box"];3832[label="xuu70/LT",fontsize=10,color="white",style="solid",shape="box"];1688 -> 3832[label="",style="solid", color="burlywood", weight=9]; 3832 -> 2074[label="",style="solid", color="burlywood", weight=3]; 3833[label="xuu70/EQ",fontsize=10,color="white",style="solid",shape="box"];1688 -> 3833[label="",style="solid", color="burlywood", weight=9]; 3833 -> 2075[label="",style="solid", color="burlywood", weight=3]; 3834[label="xuu70/GT",fontsize=10,color="white",style="solid",shape="box"];1688 -> 3834[label="",style="solid", color="burlywood", weight=9]; 3834 -> 2076[label="",style="solid", color="burlywood", weight=3]; 1689 -> 2055[label="",style="dashed", color="red", weight=0]; 1689[label="compare xuu69 xuu70 /= GT",fontsize=16,color="magenta"];1689 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1690 -> 2055[label="",style="dashed", color="red", weight=0]; 1690[label="compare xuu69 xuu70 /= GT",fontsize=16,color="magenta"];1690 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1691 -> 2055[label="",style="dashed", color="red", weight=0]; 1691[label="compare xuu69 xuu70 /= GT",fontsize=16,color="magenta"];1691 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1692[label="(xuu690,xuu691,xuu692) <= xuu70",fontsize=16,color="burlywood",shape="box"];3835[label="xuu70/(xuu700,xuu701,xuu702)",fontsize=10,color="white",style="solid",shape="box"];1692 -> 3835[label="",style="solid", color="burlywood", weight=9]; 3835 -> 2077[label="",style="solid", color="burlywood", weight=3]; 1693 -> 2055[label="",style="dashed", color="red", weight=0]; 1693[label="compare xuu69 xuu70 /= GT",fontsize=16,color="magenta"];1693 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1694 -> 2055[label="",style="dashed", color="red", weight=0]; 1694[label="compare xuu69 xuu70 /= GT",fontsize=16,color="magenta"];1694 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1695 -> 2055[label="",style="dashed", color="red", weight=0]; 1695[label="compare xuu69 xuu70 /= GT",fontsize=16,color="magenta"];1695 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1696[label="Left xuu690 <= xuu70",fontsize=16,color="burlywood",shape="box"];3836[label="xuu70/Left xuu700",fontsize=10,color="white",style="solid",shape="box"];1696 -> 3836[label="",style="solid", color="burlywood", weight=9]; 3836 -> 2078[label="",style="solid", color="burlywood", weight=3]; 3837[label="xuu70/Right xuu700",fontsize=10,color="white",style="solid",shape="box"];1696 -> 3837[label="",style="solid", color="burlywood", weight=9]; 3837 -> 2079[label="",style="solid", color="burlywood", weight=3]; 1697[label="Right xuu690 <= xuu70",fontsize=16,color="burlywood",shape="box"];3838[label="xuu70/Left xuu700",fontsize=10,color="white",style="solid",shape="box"];1697 -> 3838[label="",style="solid", color="burlywood", weight=9]; 3838 -> 2080[label="",style="solid", color="burlywood", weight=3]; 3839[label="xuu70/Right xuu700",fontsize=10,color="white",style="solid",shape="box"];1697 -> 3839[label="",style="solid", color="burlywood", weight=9]; 3839 -> 2081[label="",style="solid", color="burlywood", weight=3]; 1698 -> 2055[label="",style="dashed", color="red", weight=0]; 1698[label="compare xuu69 xuu70 /= GT",fontsize=16,color="magenta"];1698 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1699[label="compare0 (Just xuu140) (Just xuu141) True",fontsize=16,color="black",shape="box"];1699 -> 2082[label="",style="solid", color="black", weight=3]; 1700[label="xuu80",fontsize=16,color="green",shape="box"];1701[label="xuu83",fontsize=16,color="green",shape="box"];1702[label="xuu80",fontsize=16,color="green",shape="box"];1703[label="xuu83",fontsize=16,color="green",shape="box"];1704[label="xuu80",fontsize=16,color="green",shape="box"];1705[label="xuu83",fontsize=16,color="green",shape="box"];1706[label="xuu80",fontsize=16,color="green",shape="box"];1707[label="xuu83",fontsize=16,color="green",shape="box"];1708[label="xuu80",fontsize=16,color="green",shape="box"];1709[label="xuu83",fontsize=16,color="green",shape="box"];1710[label="xuu80",fontsize=16,color="green",shape="box"];1711[label="xuu83",fontsize=16,color="green",shape="box"];1712[label="xuu80",fontsize=16,color="green",shape="box"];1713[label="xuu83",fontsize=16,color="green",shape="box"];1714[label="xuu80",fontsize=16,color="green",shape="box"];1715[label="xuu83",fontsize=16,color="green",shape="box"];1716[label="xuu80",fontsize=16,color="green",shape="box"];1717[label="xuu83",fontsize=16,color="green",shape="box"];1718[label="xuu80",fontsize=16,color="green",shape="box"];1719[label="xuu83",fontsize=16,color="green",shape="box"];1720[label="xuu80",fontsize=16,color="green",shape="box"];1721[label="xuu83",fontsize=16,color="green",shape="box"];1722[label="xuu80",fontsize=16,color="green",shape="box"];1723[label="xuu83",fontsize=16,color="green",shape="box"];1724[label="xuu80",fontsize=16,color="green",shape="box"];1725[label="xuu83",fontsize=16,color="green",shape="box"];1726[label="xuu80",fontsize=16,color="green",shape="box"];1727[label="xuu83",fontsize=16,color="green",shape="box"];2086[label="xuu81 < xuu84",fontsize=16,color="blue",shape="box"];3840[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3840[label="",style="solid", color="blue", weight=9]; 3840 -> 2090[label="",style="solid", color="blue", weight=3]; 3841[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3841[label="",style="solid", color="blue", weight=9]; 3841 -> 2091[label="",style="solid", color="blue", weight=3]; 3842[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3842[label="",style="solid", color="blue", weight=9]; 3842 -> 2092[label="",style="solid", color="blue", weight=3]; 3843[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3843[label="",style="solid", color="blue", weight=9]; 3843 -> 2093[label="",style="solid", color="blue", weight=3]; 3844[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3844[label="",style="solid", color="blue", weight=9]; 3844 -> 2094[label="",style="solid", color="blue", weight=3]; 3845[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3845[label="",style="solid", color="blue", weight=9]; 3845 -> 2095[label="",style="solid", color="blue", weight=3]; 3846[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3846[label="",style="solid", color="blue", weight=9]; 3846 -> 2096[label="",style="solid", color="blue", weight=3]; 3847[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3847[label="",style="solid", color="blue", weight=9]; 3847 -> 2097[label="",style="solid", color="blue", weight=3]; 3848[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3848[label="",style="solid", color="blue", weight=9]; 3848 -> 2098[label="",style="solid", color="blue", weight=3]; 3849[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3849[label="",style="solid", color="blue", weight=9]; 3849 -> 2099[label="",style="solid", color="blue", weight=3]; 3850[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3850[label="",style="solid", color="blue", weight=9]; 3850 -> 2100[label="",style="solid", color="blue", weight=3]; 3851[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3851[label="",style="solid", color="blue", weight=9]; 3851 -> 2101[label="",style="solid", color="blue", weight=3]; 3852[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3852[label="",style="solid", color="blue", weight=9]; 3852 -> 2102[label="",style="solid", color="blue", weight=3]; 3853[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3853[label="",style="solid", color="blue", weight=9]; 3853 -> 2103[label="",style="solid", color="blue", weight=3]; 2087 -> 1079[label="",style="dashed", color="red", weight=0]; 2087[label="xuu81 == xuu84 && xuu82 <= xuu85",fontsize=16,color="magenta"];2087 -> 2104[label="",style="dashed", color="magenta", weight=3]; 2087 -> 2105[label="",style="dashed", color="magenta", weight=3]; 2085[label="xuu198 || xuu199",fontsize=16,color="burlywood",shape="triangle"];3854[label="xuu198/False",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3854[label="",style="solid", color="burlywood", weight=9]; 3854 -> 2106[label="",style="solid", color="burlywood", weight=3]; 3855[label="xuu198/True",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3855[label="",style="solid", color="burlywood", weight=9]; 3855 -> 2107[label="",style="solid", color="burlywood", weight=3]; 1730 -> 592[label="",style="dashed", color="red", weight=0]; 1730[label="xuu80 == xuu83",fontsize=16,color="magenta"];1730 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1730 -> 2109[label="",style="dashed", color="magenta", weight=3]; 1731 -> 595[label="",style="dashed", color="red", weight=0]; 1731[label="xuu80 == xuu83",fontsize=16,color="magenta"];1731 -> 2110[label="",style="dashed", color="magenta", weight=3]; 1731 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1732 -> 588[label="",style="dashed", color="red", weight=0]; 1732[label="xuu80 == xuu83",fontsize=16,color="magenta"];1732 -> 2112[label="",style="dashed", color="magenta", weight=3]; 1732 -> 2113[label="",style="dashed", color="magenta", weight=3]; 1733 -> 597[label="",style="dashed", color="red", weight=0]; 1733[label="xuu80 == xuu83",fontsize=16,color="magenta"];1733 -> 2114[label="",style="dashed", color="magenta", weight=3]; 1733 -> 2115[label="",style="dashed", color="magenta", weight=3]; 1734 -> 601[label="",style="dashed", color="red", weight=0]; 1734[label="xuu80 == xuu83",fontsize=16,color="magenta"];1734 -> 2116[label="",style="dashed", color="magenta", weight=3]; 1734 -> 2117[label="",style="dashed", color="magenta", weight=3]; 1735 -> 596[label="",style="dashed", color="red", weight=0]; 1735[label="xuu80 == xuu83",fontsize=16,color="magenta"];1735 -> 2118[label="",style="dashed", color="magenta", weight=3]; 1735 -> 2119[label="",style="dashed", color="magenta", weight=3]; 1736 -> 593[label="",style="dashed", color="red", weight=0]; 1736[label="xuu80 == xuu83",fontsize=16,color="magenta"];1736 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1736 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1737 -> 589[label="",style="dashed", color="red", weight=0]; 1737[label="xuu80 == xuu83",fontsize=16,color="magenta"];1737 -> 2122[label="",style="dashed", color="magenta", weight=3]; 1737 -> 2123[label="",style="dashed", color="magenta", weight=3]; 1738 -> 599[label="",style="dashed", color="red", weight=0]; 1738[label="xuu80 == xuu83",fontsize=16,color="magenta"];1738 -> 2124[label="",style="dashed", color="magenta", weight=3]; 1738 -> 2125[label="",style="dashed", color="magenta", weight=3]; 1739 -> 590[label="",style="dashed", color="red", weight=0]; 1739[label="xuu80 == xuu83",fontsize=16,color="magenta"];1739 -> 2126[label="",style="dashed", color="magenta", weight=3]; 1739 -> 2127[label="",style="dashed", color="magenta", weight=3]; 1740 -> 591[label="",style="dashed", color="red", weight=0]; 1740[label="xuu80 == xuu83",fontsize=16,color="magenta"];1740 -> 2128[label="",style="dashed", color="magenta", weight=3]; 1740 -> 2129[label="",style="dashed", color="magenta", weight=3]; 1741 -> 598[label="",style="dashed", color="red", weight=0]; 1741[label="xuu80 == xuu83",fontsize=16,color="magenta"];1741 -> 2130[label="",style="dashed", color="magenta", weight=3]; 1741 -> 2131[label="",style="dashed", color="magenta", weight=3]; 1742 -> 594[label="",style="dashed", color="red", weight=0]; 1742[label="xuu80 == xuu83",fontsize=16,color="magenta"];1742 -> 2132[label="",style="dashed", color="magenta", weight=3]; 1742 -> 2133[label="",style="dashed", color="magenta", weight=3]; 1743 -> 600[label="",style="dashed", color="red", weight=0]; 1743[label="xuu80 == xuu83",fontsize=16,color="magenta"];1743 -> 2134[label="",style="dashed", color="magenta", weight=3]; 1743 -> 2135[label="",style="dashed", color="magenta", weight=3]; 1744[label="compare1 (xuu181,xuu182,xuu183) (xuu184,xuu185,xuu186) xuu188",fontsize=16,color="burlywood",shape="triangle"];3856[label="xuu188/False",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3856[label="",style="solid", color="burlywood", weight=9]; 3856 -> 2136[label="",style="solid", color="burlywood", weight=3]; 3857[label="xuu188/True",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3857[label="",style="solid", color="burlywood", weight=9]; 3857 -> 2137[label="",style="solid", color="burlywood", weight=3]; 1745 -> 1744[label="",style="dashed", color="red", weight=0]; 1745[label="compare1 (xuu181,xuu182,xuu183) (xuu184,xuu185,xuu186) True",fontsize=16,color="magenta"];1745 -> 2138[label="",style="dashed", color="magenta", weight=3]; 1746[label="xuu91",fontsize=16,color="green",shape="box"];1747[label="xuu92",fontsize=16,color="green",shape="box"];1748[label="xuu91",fontsize=16,color="green",shape="box"];1749[label="xuu92",fontsize=16,color="green",shape="box"];1750[label="xuu91",fontsize=16,color="green",shape="box"];1751[label="xuu92",fontsize=16,color="green",shape="box"];1752[label="xuu91",fontsize=16,color="green",shape="box"];1753[label="xuu92",fontsize=16,color="green",shape="box"];1754[label="xuu91",fontsize=16,color="green",shape="box"];1755[label="xuu92",fontsize=16,color="green",shape="box"];1756[label="xuu91",fontsize=16,color="green",shape="box"];1757[label="xuu92",fontsize=16,color="green",shape="box"];1758[label="xuu91",fontsize=16,color="green",shape="box"];1759[label="xuu92",fontsize=16,color="green",shape="box"];1760[label="xuu91",fontsize=16,color="green",shape="box"];1761[label="xuu92",fontsize=16,color="green",shape="box"];1762[label="xuu91",fontsize=16,color="green",shape="box"];1763[label="xuu92",fontsize=16,color="green",shape="box"];1764[label="xuu91",fontsize=16,color="green",shape="box"];1765[label="xuu92",fontsize=16,color="green",shape="box"];1766[label="xuu91",fontsize=16,color="green",shape="box"];1767[label="xuu92",fontsize=16,color="green",shape="box"];1768[label="xuu91",fontsize=16,color="green",shape="box"];1769[label="xuu92",fontsize=16,color="green",shape="box"];1770[label="xuu91",fontsize=16,color="green",shape="box"];1771[label="xuu92",fontsize=16,color="green",shape="box"];1772[label="xuu91",fontsize=16,color="green",shape="box"];1773[label="xuu92",fontsize=16,color="green",shape="box"];1774[label="compare0 (Left xuu149) (Left xuu150) True",fontsize=16,color="black",shape="box"];1774 -> 2139[label="",style="solid", color="black", weight=3]; 1775[label="xuu98",fontsize=16,color="green",shape="box"];1776[label="xuu99",fontsize=16,color="green",shape="box"];1777[label="xuu98",fontsize=16,color="green",shape="box"];1778[label="xuu99",fontsize=16,color="green",shape="box"];1779[label="xuu98",fontsize=16,color="green",shape="box"];1780[label="xuu99",fontsize=16,color="green",shape="box"];1781[label="xuu98",fontsize=16,color="green",shape="box"];1782[label="xuu99",fontsize=16,color="green",shape="box"];1783[label="xuu98",fontsize=16,color="green",shape="box"];1784[label="xuu99",fontsize=16,color="green",shape="box"];1785[label="xuu98",fontsize=16,color="green",shape="box"];1786[label="xuu99",fontsize=16,color="green",shape="box"];1787[label="xuu98",fontsize=16,color="green",shape="box"];1788[label="xuu99",fontsize=16,color="green",shape="box"];1789[label="xuu98",fontsize=16,color="green",shape="box"];1790[label="xuu99",fontsize=16,color="green",shape="box"];1791[label="xuu98",fontsize=16,color="green",shape="box"];1792[label="xuu99",fontsize=16,color="green",shape="box"];1793[label="xuu98",fontsize=16,color="green",shape="box"];1794[label="xuu99",fontsize=16,color="green",shape="box"];1795[label="xuu98",fontsize=16,color="green",shape="box"];1796[label="xuu99",fontsize=16,color="green",shape="box"];1797[label="xuu98",fontsize=16,color="green",shape="box"];1798[label="xuu99",fontsize=16,color="green",shape="box"];1799[label="xuu98",fontsize=16,color="green",shape="box"];1800[label="xuu99",fontsize=16,color="green",shape="box"];1801[label="xuu98",fontsize=16,color="green",shape="box"];1802[label="xuu99",fontsize=16,color="green",shape="box"];1803[label="compare0 (Right xuu156) (Right xuu157) True",fontsize=16,color="black",shape="box"];1803 -> 2140[label="",style="solid", color="black", weight=3]; 1804[label="primMulNat (Succ xuu31100000) (Succ xuu60100)",fontsize=16,color="black",shape="box"];1804 -> 2141[label="",style="solid", color="black", weight=3]; 1805[label="primMulNat (Succ xuu31100000) Zero",fontsize=16,color="black",shape="box"];1805 -> 2142[label="",style="solid", color="black", weight=3]; 1806[label="primMulNat Zero (Succ xuu60100)",fontsize=16,color="black",shape="box"];1806 -> 2143[label="",style="solid", color="black", weight=3]; 1807[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1807 -> 2144[label="",style="solid", color="black", weight=3]; 1808[label="primPlusNat (Succ xuu42200) (Succ xuu12900)",fontsize=16,color="black",shape="box"];1808 -> 2145[label="",style="solid", color="black", weight=3]; 1809[label="primPlusNat (Succ xuu42200) Zero",fontsize=16,color="black",shape="box"];1809 -> 2146[label="",style="solid", color="black", weight=3]; 1810[label="primPlusNat Zero (Succ xuu12900)",fontsize=16,color="black",shape="box"];1810 -> 2147[label="",style="solid", color="black", weight=3]; 1811[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1811 -> 2148[label="",style="solid", color="black", weight=3]; 1812 -> 1266[label="",style="dashed", color="red", weight=0]; 1812[label="primMinusNat xuu42200 xuu12900",fontsize=16,color="magenta"];1812 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1812 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1813[label="Pos (Succ xuu42200)",fontsize=16,color="green",shape="box"];1814[label="Neg (Succ xuu12900)",fontsize=16,color="green",shape="box"];1815[label="Pos Zero",fontsize=16,color="green",shape="box"];1816[label="FiniteMap.mkBalBranch6MkBalBranch2 xuu21 xuu17 xuu18 xuu42 xuu17 xuu18 xuu42 xuu21 True",fontsize=16,color="black",shape="box"];1816 -> 2151[label="",style="solid", color="black", weight=3]; 1817[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu21 xuu17 xuu18 FiniteMap.EmptyFM FiniteMap.EmptyFM xuu21 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];1817 -> 2152[label="",style="solid", color="black", weight=3]; 1818[label="FiniteMap.mkBalBranch6MkBalBranch1 xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424)",fontsize=16,color="black",shape="box"];1818 -> 2153[label="",style="solid", color="black", weight=3]; 1820 -> 61[label="",style="dashed", color="red", weight=0]; 1820[label="FiniteMap.sizeFM xuu213 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu214",fontsize=16,color="magenta"];1820 -> 2154[label="",style="dashed", color="magenta", weight=3]; 1820 -> 2155[label="",style="dashed", color="magenta", weight=3]; 1819[label="FiniteMap.mkBalBranch6MkBalBranch01 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 xuu190",fontsize=16,color="burlywood",shape="triangle"];3858[label="xuu190/False",fontsize=10,color="white",style="solid",shape="box"];1819 -> 3858[label="",style="solid", color="burlywood", weight=9]; 3858 -> 2156[label="",style="solid", color="burlywood", weight=3]; 3859[label="xuu190/True",fontsize=10,color="white",style="solid",shape="box"];1819 -> 3859[label="",style="solid", color="burlywood", weight=9]; 3859 -> 2157[label="",style="solid", color="burlywood", weight=3]; 1821 -> 1236[label="",style="dashed", color="red", weight=0]; 1821[label="primPlusInt (Pos (Succ Zero)) (FiniteMap.mkBranchLeft_size xuu21 xuu17 xuu42)",fontsize=16,color="magenta"];1821 -> 2158[label="",style="dashed", color="magenta", weight=3]; 1821 -> 2159[label="",style="dashed", color="magenta", weight=3]; 1822 -> 957[label="",style="dashed", color="red", weight=0]; 1822[label="FiniteMap.sizeFM xuu21",fontsize=16,color="magenta"];1823[label="xuu110",fontsize=16,color="green",shape="box"];1824[label="xuu112",fontsize=16,color="green",shape="box"];1825[label="xuu110",fontsize=16,color="green",shape="box"];1826[label="xuu112",fontsize=16,color="green",shape="box"];1827[label="xuu110",fontsize=16,color="green",shape="box"];1828[label="xuu112",fontsize=16,color="green",shape="box"];1829[label="xuu110",fontsize=16,color="green",shape="box"];1830[label="xuu112",fontsize=16,color="green",shape="box"];1831[label="xuu110",fontsize=16,color="green",shape="box"];1832[label="xuu112",fontsize=16,color="green",shape="box"];1833[label="xuu110",fontsize=16,color="green",shape="box"];1834[label="xuu112",fontsize=16,color="green",shape="box"];1835[label="xuu110",fontsize=16,color="green",shape="box"];1836[label="xuu112",fontsize=16,color="green",shape="box"];1837[label="xuu110",fontsize=16,color="green",shape="box"];1838[label="xuu112",fontsize=16,color="green",shape="box"];1839[label="xuu110",fontsize=16,color="green",shape="box"];1840[label="xuu112",fontsize=16,color="green",shape="box"];1841[label="xuu110",fontsize=16,color="green",shape="box"];1842[label="xuu112",fontsize=16,color="green",shape="box"];1843[label="xuu110",fontsize=16,color="green",shape="box"];1844[label="xuu112",fontsize=16,color="green",shape="box"];1845[label="xuu110",fontsize=16,color="green",shape="box"];1846[label="xuu112",fontsize=16,color="green",shape="box"];1847[label="xuu110",fontsize=16,color="green",shape="box"];1848[label="xuu112",fontsize=16,color="green",shape="box"];1849[label="xuu110",fontsize=16,color="green",shape="box"];1850[label="xuu112",fontsize=16,color="green",shape="box"];1851[label="xuu111",fontsize=16,color="green",shape="box"];1852[label="xuu109",fontsize=16,color="green",shape="box"];1853[label="xuu111",fontsize=16,color="green",shape="box"];1854[label="xuu109",fontsize=16,color="green",shape="box"];1855[label="xuu111",fontsize=16,color="green",shape="box"];1856[label="xuu109",fontsize=16,color="green",shape="box"];1857[label="xuu111",fontsize=16,color="green",shape="box"];1858[label="xuu109",fontsize=16,color="green",shape="box"];1859[label="xuu111",fontsize=16,color="green",shape="box"];1860[label="xuu109",fontsize=16,color="green",shape="box"];1861[label="xuu111",fontsize=16,color="green",shape="box"];1862[label="xuu109",fontsize=16,color="green",shape="box"];1863[label="xuu111",fontsize=16,color="green",shape="box"];1864[label="xuu109",fontsize=16,color="green",shape="box"];1865[label="xuu111",fontsize=16,color="green",shape="box"];1866[label="xuu109",fontsize=16,color="green",shape="box"];1867[label="xuu111",fontsize=16,color="green",shape="box"];1868[label="xuu109",fontsize=16,color="green",shape="box"];1869[label="xuu111",fontsize=16,color="green",shape="box"];1870[label="xuu109",fontsize=16,color="green",shape="box"];1871[label="xuu111",fontsize=16,color="green",shape="box"];1872[label="xuu109",fontsize=16,color="green",shape="box"];1873[label="xuu111",fontsize=16,color="green",shape="box"];1874[label="xuu109",fontsize=16,color="green",shape="box"];1875[label="xuu111",fontsize=16,color="green",shape="box"];1876[label="xuu109",fontsize=16,color="green",shape="box"];1877[label="xuu111",fontsize=16,color="green",shape="box"];1878[label="xuu109",fontsize=16,color="green",shape="box"];1879[label="compare1 (xuu166,xuu167) (xuu168,xuu169) False",fontsize=16,color="black",shape="box"];1879 -> 2160[label="",style="solid", color="black", weight=3]; 1880[label="compare1 (xuu166,xuu167) (xuu168,xuu169) True",fontsize=16,color="black",shape="box"];1880 -> 2161[label="",style="solid", color="black", weight=3]; 1881[label="True",fontsize=16,color="green",shape="box"];1882[label="xuu6001",fontsize=16,color="green",shape="box"];1883[label="xuu3110001",fontsize=16,color="green",shape="box"];1884 -> 588[label="",style="dashed", color="red", weight=0]; 1884[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1884 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1884 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1885 -> 589[label="",style="dashed", color="red", weight=0]; 1885[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1885 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1885 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1886 -> 590[label="",style="dashed", color="red", weight=0]; 1886[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1886 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1886 -> 2167[label="",style="dashed", color="magenta", weight=3]; 1887 -> 591[label="",style="dashed", color="red", weight=0]; 1887[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1887 -> 2168[label="",style="dashed", color="magenta", weight=3]; 1887 -> 2169[label="",style="dashed", color="magenta", weight=3]; 1888 -> 592[label="",style="dashed", color="red", weight=0]; 1888[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1888 -> 2170[label="",style="dashed", color="magenta", weight=3]; 1888 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1889 -> 593[label="",style="dashed", color="red", weight=0]; 1889[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1889 -> 2172[label="",style="dashed", color="magenta", weight=3]; 1889 -> 2173[label="",style="dashed", color="magenta", weight=3]; 1890 -> 594[label="",style="dashed", color="red", weight=0]; 1890[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1890 -> 2174[label="",style="dashed", color="magenta", weight=3]; 1890 -> 2175[label="",style="dashed", color="magenta", weight=3]; 1891 -> 595[label="",style="dashed", color="red", weight=0]; 1891[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1891 -> 2176[label="",style="dashed", color="magenta", weight=3]; 1891 -> 2177[label="",style="dashed", color="magenta", weight=3]; 1892 -> 596[label="",style="dashed", color="red", weight=0]; 1892[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1892 -> 2178[label="",style="dashed", color="magenta", weight=3]; 1892 -> 2179[label="",style="dashed", color="magenta", weight=3]; 1893 -> 597[label="",style="dashed", color="red", weight=0]; 1893[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1893 -> 2180[label="",style="dashed", color="magenta", weight=3]; 1893 -> 2181[label="",style="dashed", color="magenta", weight=3]; 1894 -> 598[label="",style="dashed", color="red", weight=0]; 1894[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1894 -> 2182[label="",style="dashed", color="magenta", weight=3]; 1894 -> 2183[label="",style="dashed", color="magenta", weight=3]; 1895 -> 599[label="",style="dashed", color="red", weight=0]; 1895[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1895 -> 2184[label="",style="dashed", color="magenta", weight=3]; 1895 -> 2185[label="",style="dashed", color="magenta", weight=3]; 1896 -> 600[label="",style="dashed", color="red", weight=0]; 1896[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1896 -> 2186[label="",style="dashed", color="magenta", weight=3]; 1896 -> 2187[label="",style="dashed", color="magenta", weight=3]; 1897 -> 601[label="",style="dashed", color="red", weight=0]; 1897[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1897 -> 2188[label="",style="dashed", color="magenta", weight=3]; 1897 -> 2189[label="",style="dashed", color="magenta", weight=3]; 1898[label="primEqInt (Pos (Succ xuu31100000)) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];1898 -> 2190[label="",style="solid", color="black", weight=3]; 1899[label="primEqInt (Pos (Succ xuu31100000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1899 -> 2191[label="",style="solid", color="black", weight=3]; 1900[label="False",fontsize=16,color="green",shape="box"];1901[label="primEqInt (Pos Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];1901 -> 2192[label="",style="solid", color="black", weight=3]; 1902[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1902 -> 2193[label="",style="solid", color="black", weight=3]; 1903[label="primEqInt (Pos Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];1903 -> 2194[label="",style="solid", color="black", weight=3]; 1904[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1904 -> 2195[label="",style="solid", color="black", weight=3]; 1905[label="False",fontsize=16,color="green",shape="box"];1906[label="primEqInt (Neg (Succ xuu31100000)) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];1906 -> 2196[label="",style="solid", color="black", weight=3]; 1907[label="primEqInt (Neg (Succ xuu31100000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1907 -> 2197[label="",style="solid", color="black", weight=3]; 1908[label="primEqInt (Neg Zero) (Pos (Succ xuu60000))",fontsize=16,color="black",shape="box"];1908 -> 2198[label="",style="solid", color="black", weight=3]; 1909[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1909 -> 2199[label="",style="solid", color="black", weight=3]; 1910[label="primEqInt (Neg Zero) (Neg (Succ xuu60000))",fontsize=16,color="black",shape="box"];1910 -> 2200[label="",style="solid", color="black", weight=3]; 1911[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1911 -> 2201[label="",style="solid", color="black", weight=3]; 1912 -> 502[label="",style="dashed", color="red", weight=0]; 1912[label="xuu3110001 * xuu6000",fontsize=16,color="magenta"];1912 -> 2202[label="",style="dashed", color="magenta", weight=3]; 1912 -> 2203[label="",style="dashed", color="magenta", weight=3]; 1913 -> 502[label="",style="dashed", color="red", weight=0]; 1913[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];1913 -> 2204[label="",style="dashed", color="magenta", weight=3]; 1913 -> 2205[label="",style="dashed", color="magenta", weight=3]; 1914 -> 502[label="",style="dashed", color="red", weight=0]; 1914[label="xuu3110001 * xuu6000",fontsize=16,color="magenta"];1914 -> 2206[label="",style="dashed", color="magenta", weight=3]; 1914 -> 2207[label="",style="dashed", color="magenta", weight=3]; 1915 -> 502[label="",style="dashed", color="red", weight=0]; 1915[label="xuu3110000 * xuu6001",fontsize=16,color="magenta"];1915 -> 2208[label="",style="dashed", color="magenta", weight=3]; 1915 -> 2209[label="",style="dashed", color="magenta", weight=3]; 1916[label="xuu6000",fontsize=16,color="green",shape="box"];1917[label="xuu3110000",fontsize=16,color="green",shape="box"];1918[label="xuu6000",fontsize=16,color="green",shape="box"];1919[label="xuu3110000",fontsize=16,color="green",shape="box"];1920[label="xuu6000",fontsize=16,color="green",shape="box"];1921[label="xuu3110000",fontsize=16,color="green",shape="box"];1922[label="xuu6000",fontsize=16,color="green",shape="box"];1923[label="xuu3110000",fontsize=16,color="green",shape="box"];1924[label="xuu6000",fontsize=16,color="green",shape="box"];1925[label="xuu3110000",fontsize=16,color="green",shape="box"];1926[label="xuu6000",fontsize=16,color="green",shape="box"];1927[label="xuu3110000",fontsize=16,color="green",shape="box"];1928[label="xuu6000",fontsize=16,color="green",shape="box"];1929[label="xuu3110000",fontsize=16,color="green",shape="box"];1930[label="xuu6000",fontsize=16,color="green",shape="box"];1931[label="xuu3110000",fontsize=16,color="green",shape="box"];1932[label="xuu6000",fontsize=16,color="green",shape="box"];1933[label="xuu3110000",fontsize=16,color="green",shape="box"];1934[label="xuu6000",fontsize=16,color="green",shape="box"];1935[label="xuu3110000",fontsize=16,color="green",shape="box"];1936[label="xuu6000",fontsize=16,color="green",shape="box"];1937[label="xuu3110000",fontsize=16,color="green",shape="box"];1938[label="xuu6000",fontsize=16,color="green",shape="box"];1939[label="xuu3110000",fontsize=16,color="green",shape="box"];1940[label="xuu6000",fontsize=16,color="green",shape="box"];1941[label="xuu3110000",fontsize=16,color="green",shape="box"];1942[label="xuu6000",fontsize=16,color="green",shape="box"];1943[label="xuu3110000",fontsize=16,color="green",shape="box"];1944[label="xuu6000",fontsize=16,color="green",shape="box"];1945[label="xuu3110000",fontsize=16,color="green",shape="box"];1946[label="xuu6000",fontsize=16,color="green",shape="box"];1947[label="xuu3110000",fontsize=16,color="green",shape="box"];1948[label="xuu6000",fontsize=16,color="green",shape="box"];1949[label="xuu3110000",fontsize=16,color="green",shape="box"];1950[label="xuu6000",fontsize=16,color="green",shape="box"];1951[label="xuu3110000",fontsize=16,color="green",shape="box"];1952[label="xuu6000",fontsize=16,color="green",shape="box"];1953[label="xuu3110000",fontsize=16,color="green",shape="box"];1954[label="xuu6000",fontsize=16,color="green",shape="box"];1955[label="xuu3110000",fontsize=16,color="green",shape="box"];1956[label="xuu6000",fontsize=16,color="green",shape="box"];1957[label="xuu3110000",fontsize=16,color="green",shape="box"];1958[label="xuu6000",fontsize=16,color="green",shape="box"];1959[label="xuu3110000",fontsize=16,color="green",shape="box"];1960[label="xuu6000",fontsize=16,color="green",shape="box"];1961[label="xuu3110000",fontsize=16,color="green",shape="box"];1962[label="xuu6000",fontsize=16,color="green",shape="box"];1963[label="xuu3110000",fontsize=16,color="green",shape="box"];1964[label="xuu6000",fontsize=16,color="green",shape="box"];1965[label="xuu3110000",fontsize=16,color="green",shape="box"];1966[label="xuu6000",fontsize=16,color="green",shape="box"];1967[label="xuu3110000",fontsize=16,color="green",shape="box"];1968[label="xuu6000",fontsize=16,color="green",shape="box"];1969[label="xuu3110000",fontsize=16,color="green",shape="box"];1970[label="xuu6000",fontsize=16,color="green",shape="box"];1971[label="xuu3110000",fontsize=16,color="green",shape="box"];1972 -> 588[label="",style="dashed", color="red", weight=0]; 1972[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1972 -> 2210[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2211[label="",style="dashed", color="magenta", weight=3]; 1973 -> 589[label="",style="dashed", color="red", weight=0]; 1973[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1973 -> 2212[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2213[label="",style="dashed", color="magenta", weight=3]; 1974 -> 590[label="",style="dashed", color="red", weight=0]; 1974[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1974 -> 2214[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2215[label="",style="dashed", color="magenta", weight=3]; 1975 -> 591[label="",style="dashed", color="red", weight=0]; 1975[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1975 -> 2216[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2217[label="",style="dashed", color="magenta", weight=3]; 1976 -> 592[label="",style="dashed", color="red", weight=0]; 1976[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1976 -> 2218[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2219[label="",style="dashed", color="magenta", weight=3]; 1977 -> 593[label="",style="dashed", color="red", weight=0]; 1977[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1977 -> 2220[label="",style="dashed", color="magenta", weight=3]; 1977 -> 2221[label="",style="dashed", color="magenta", weight=3]; 1978 -> 594[label="",style="dashed", color="red", weight=0]; 1978[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1978 -> 2222[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2223[label="",style="dashed", color="magenta", weight=3]; 1979 -> 595[label="",style="dashed", color="red", weight=0]; 1979[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1979 -> 2224[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2225[label="",style="dashed", color="magenta", weight=3]; 1980 -> 596[label="",style="dashed", color="red", weight=0]; 1980[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1980 -> 2226[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2227[label="",style="dashed", color="magenta", weight=3]; 1981 -> 597[label="",style="dashed", color="red", weight=0]; 1981[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1981 -> 2228[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2229[label="",style="dashed", color="magenta", weight=3]; 1982 -> 598[label="",style="dashed", color="red", weight=0]; 1982[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1982 -> 2230[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2231[label="",style="dashed", color="magenta", weight=3]; 1983 -> 599[label="",style="dashed", color="red", weight=0]; 1983[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1983 -> 2232[label="",style="dashed", color="magenta", weight=3]; 1983 -> 2233[label="",style="dashed", color="magenta", weight=3]; 1984 -> 600[label="",style="dashed", color="red", weight=0]; 1984[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1984 -> 2234[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2235[label="",style="dashed", color="magenta", weight=3]; 1985 -> 601[label="",style="dashed", color="red", weight=0]; 1985[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];1985 -> 2236[label="",style="dashed", color="magenta", weight=3]; 1985 -> 2237[label="",style="dashed", color="magenta", weight=3]; 1986 -> 588[label="",style="dashed", color="red", weight=0]; 1986[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1986 -> 2238[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2239[label="",style="dashed", color="magenta", weight=3]; 1987 -> 589[label="",style="dashed", color="red", weight=0]; 1987[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1987 -> 2240[label="",style="dashed", color="magenta", weight=3]; 1987 -> 2241[label="",style="dashed", color="magenta", weight=3]; 1988 -> 590[label="",style="dashed", color="red", weight=0]; 1988[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1988 -> 2242[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2243[label="",style="dashed", color="magenta", weight=3]; 1989 -> 591[label="",style="dashed", color="red", weight=0]; 1989[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1989 -> 2244[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2245[label="",style="dashed", color="magenta", weight=3]; 1990 -> 592[label="",style="dashed", color="red", weight=0]; 1990[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1990 -> 2246[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2247[label="",style="dashed", color="magenta", weight=3]; 1991 -> 593[label="",style="dashed", color="red", weight=0]; 1991[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1991 -> 2248[label="",style="dashed", color="magenta", weight=3]; 1991 -> 2249[label="",style="dashed", color="magenta", weight=3]; 1992 -> 594[label="",style="dashed", color="red", weight=0]; 1992[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1992 -> 2250[label="",style="dashed", color="magenta", weight=3]; 1992 -> 2251[label="",style="dashed", color="magenta", weight=3]; 1993 -> 595[label="",style="dashed", color="red", weight=0]; 1993[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1993 -> 2252[label="",style="dashed", color="magenta", weight=3]; 1993 -> 2253[label="",style="dashed", color="magenta", weight=3]; 1994 -> 596[label="",style="dashed", color="red", weight=0]; 1994[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1994 -> 2254[label="",style="dashed", color="magenta", weight=3]; 1994 -> 2255[label="",style="dashed", color="magenta", weight=3]; 1995 -> 597[label="",style="dashed", color="red", weight=0]; 1995[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1995 -> 2256[label="",style="dashed", color="magenta", weight=3]; 1995 -> 2257[label="",style="dashed", color="magenta", weight=3]; 1996 -> 598[label="",style="dashed", color="red", weight=0]; 1996[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1996 -> 2258[label="",style="dashed", color="magenta", weight=3]; 1996 -> 2259[label="",style="dashed", color="magenta", weight=3]; 1997 -> 599[label="",style="dashed", color="red", weight=0]; 1997[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1997 -> 2260[label="",style="dashed", color="magenta", weight=3]; 1997 -> 2261[label="",style="dashed", color="magenta", weight=3]; 1998 -> 600[label="",style="dashed", color="red", weight=0]; 1998[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1998 -> 2262[label="",style="dashed", color="magenta", weight=3]; 1998 -> 2263[label="",style="dashed", color="magenta", weight=3]; 1999 -> 601[label="",style="dashed", color="red", weight=0]; 1999[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];1999 -> 2264[label="",style="dashed", color="magenta", weight=3]; 1999 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2000[label="xuu6000",fontsize=16,color="green",shape="box"];2001[label="xuu3110000",fontsize=16,color="green",shape="box"];2002[label="xuu6000",fontsize=16,color="green",shape="box"];2003[label="xuu3110000",fontsize=16,color="green",shape="box"];2004[label="xuu6000",fontsize=16,color="green",shape="box"];2005[label="xuu3110000",fontsize=16,color="green",shape="box"];2006[label="xuu6000",fontsize=16,color="green",shape="box"];2007[label="xuu3110000",fontsize=16,color="green",shape="box"];2008[label="xuu6000",fontsize=16,color="green",shape="box"];2009[label="xuu3110000",fontsize=16,color="green",shape="box"];2010[label="xuu6000",fontsize=16,color="green",shape="box"];2011[label="xuu3110000",fontsize=16,color="green",shape="box"];2012[label="xuu6000",fontsize=16,color="green",shape="box"];2013[label="xuu3110000",fontsize=16,color="green",shape="box"];2014[label="xuu6000",fontsize=16,color="green",shape="box"];2015[label="xuu3110000",fontsize=16,color="green",shape="box"];2016[label="xuu6000",fontsize=16,color="green",shape="box"];2017[label="xuu3110000",fontsize=16,color="green",shape="box"];2018[label="xuu6000",fontsize=16,color="green",shape="box"];2019[label="xuu3110000",fontsize=16,color="green",shape="box"];2020[label="xuu6000",fontsize=16,color="green",shape="box"];2021[label="xuu3110000",fontsize=16,color="green",shape="box"];2022[label="xuu6000",fontsize=16,color="green",shape="box"];2023[label="xuu3110000",fontsize=16,color="green",shape="box"];2024[label="xuu6000",fontsize=16,color="green",shape="box"];2025[label="xuu3110000",fontsize=16,color="green",shape="box"];2026[label="xuu6000",fontsize=16,color="green",shape="box"];2027[label="xuu3110000",fontsize=16,color="green",shape="box"];2028[label="primEqNat (Succ xuu31100000) xuu6000",fontsize=16,color="burlywood",shape="box"];3860[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2028 -> 3860[label="",style="solid", color="burlywood", weight=9]; 3860 -> 2266[label="",style="solid", color="burlywood", weight=3]; 3861[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2028 -> 3861[label="",style="solid", color="burlywood", weight=9]; 3861 -> 2267[label="",style="solid", color="burlywood", weight=3]; 2029[label="primEqNat Zero xuu6000",fontsize=16,color="burlywood",shape="box"];3862[label="xuu6000/Succ xuu60000",fontsize=10,color="white",style="solid",shape="box"];2029 -> 3862[label="",style="solid", color="burlywood", weight=9]; 3862 -> 2268[label="",style="solid", color="burlywood", weight=3]; 3863[label="xuu6000/Zero",fontsize=10,color="white",style="solid",shape="box"];2029 -> 3863[label="",style="solid", color="burlywood", weight=9]; 3863 -> 2269[label="",style="solid", color="burlywood", weight=3]; 2030[label="xuu3110002 == xuu6002",fontsize=16,color="blue",shape="box"];3864[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 3864[label="",style="solid", color="blue", weight=9]; 3864 -> 2270[label="",style="solid", color="blue", weight=3]; 3865[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 3865[label="",style="solid", color="blue", weight=9]; 3865 -> 2271[label="",style="solid", color="blue", weight=3]; 3866[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 3866[label="",style="solid", color="blue", weight=9]; 3866 -> 2272[label="",style="solid", color="blue", weight=3]; 3867[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 3867[label="",style="solid", color="blue", weight=9]; 3867 -> 2273[label="",style="solid", color="blue", weight=3]; 3868[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 3868[label="",style="solid", color="blue", weight=9]; 3868 -> 2274[label="",style="solid", color="blue", weight=3]; 3869[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 3869[label="",style="solid", color="blue", weight=9]; 3869 -> 2275[label="",style="solid", color="blue", weight=3]; 3870[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 3870[label="",style="solid", color="blue", weight=9]; 3870 -> 2276[label="",style="solid", color="blue", weight=3]; 3871[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 3871[label="",style="solid", color="blue", weight=9]; 3871 -> 2277[label="",style="solid", color="blue", weight=3]; 3872[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 3872[label="",style="solid", color="blue", weight=9]; 3872 -> 2278[label="",style="solid", color="blue", weight=3]; 3873[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 3873[label="",style="solid", color="blue", weight=9]; 3873 -> 2279[label="",style="solid", color="blue", weight=3]; 3874[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 3874[label="",style="solid", color="blue", weight=9]; 3874 -> 2280[label="",style="solid", color="blue", weight=3]; 3875[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 3875[label="",style="solid", color="blue", weight=9]; 3875 -> 2281[label="",style="solid", color="blue", weight=3]; 3876[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 3876[label="",style="solid", color="blue", weight=9]; 3876 -> 2282[label="",style="solid", color="blue", weight=3]; 3877[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2030 -> 3877[label="",style="solid", color="blue", weight=9]; 3877 -> 2283[label="",style="solid", color="blue", weight=3]; 2031[label="xuu3110001 == xuu6001",fontsize=16,color="blue",shape="box"];3878[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3878[label="",style="solid", color="blue", weight=9]; 3878 -> 2284[label="",style="solid", color="blue", weight=3]; 3879[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3879[label="",style="solid", color="blue", weight=9]; 3879 -> 2285[label="",style="solid", color="blue", weight=3]; 3880[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3880[label="",style="solid", color="blue", weight=9]; 3880 -> 2286[label="",style="solid", color="blue", weight=3]; 3881[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3881[label="",style="solid", color="blue", weight=9]; 3881 -> 2287[label="",style="solid", color="blue", weight=3]; 3882[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3882[label="",style="solid", color="blue", weight=9]; 3882 -> 2288[label="",style="solid", color="blue", weight=3]; 3883[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3883[label="",style="solid", color="blue", weight=9]; 3883 -> 2289[label="",style="solid", color="blue", weight=3]; 3884[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3884[label="",style="solid", color="blue", weight=9]; 3884 -> 2290[label="",style="solid", color="blue", weight=3]; 3885[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3885[label="",style="solid", color="blue", weight=9]; 3885 -> 2291[label="",style="solid", color="blue", weight=3]; 3886[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3886[label="",style="solid", color="blue", weight=9]; 3886 -> 2292[label="",style="solid", color="blue", weight=3]; 3887[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3887[label="",style="solid", color="blue", weight=9]; 3887 -> 2293[label="",style="solid", color="blue", weight=3]; 3888[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3888[label="",style="solid", color="blue", weight=9]; 3888 -> 2294[label="",style="solid", color="blue", weight=3]; 3889[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3889[label="",style="solid", color="blue", weight=9]; 3889 -> 2295[label="",style="solid", color="blue", weight=3]; 3890[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3890[label="",style="solid", color="blue", weight=9]; 3890 -> 2296[label="",style="solid", color="blue", weight=3]; 3891[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3891[label="",style="solid", color="blue", weight=9]; 3891 -> 2297[label="",style="solid", color="blue", weight=3]; 2032 -> 588[label="",style="dashed", color="red", weight=0]; 2032[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2032 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2032 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2033 -> 589[label="",style="dashed", color="red", weight=0]; 2033[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2033 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2033 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2034 -> 590[label="",style="dashed", color="red", weight=0]; 2034[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2034 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2034 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2035 -> 591[label="",style="dashed", color="red", weight=0]; 2035[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2035 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2035 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2036 -> 592[label="",style="dashed", color="red", weight=0]; 2036[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2036 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2036 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2037 -> 593[label="",style="dashed", color="red", weight=0]; 2037[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2037 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2037 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2038 -> 594[label="",style="dashed", color="red", weight=0]; 2038[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2038 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2038 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2039 -> 595[label="",style="dashed", color="red", weight=0]; 2039[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2039 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2039 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2040 -> 596[label="",style="dashed", color="red", weight=0]; 2040[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2040 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2040 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2041 -> 597[label="",style="dashed", color="red", weight=0]; 2041[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2041 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2041 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2042 -> 598[label="",style="dashed", color="red", weight=0]; 2042[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2042 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2042 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2043 -> 599[label="",style="dashed", color="red", weight=0]; 2043[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2043 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2043 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2044 -> 600[label="",style="dashed", color="red", weight=0]; 2044[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2044 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2044 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2045 -> 601[label="",style="dashed", color="red", weight=0]; 2045[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2045 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2045 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2046 -> 589[label="",style="dashed", color="red", weight=0]; 2046[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2046 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2046 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2047 -> 596[label="",style="dashed", color="red", weight=0]; 2047[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2047 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2047 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2048 -> 589[label="",style="dashed", color="red", weight=0]; 2048[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2048 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2048 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2049 -> 596[label="",style="dashed", color="red", weight=0]; 2049[label="xuu3110000 == xuu6000",fontsize=16,color="magenta"];2049 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2049 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2050[label="False <= False",fontsize=16,color="black",shape="box"];2050 -> 2334[label="",style="solid", color="black", weight=3]; 2051[label="False <= True",fontsize=16,color="black",shape="box"];2051 -> 2335[label="",style="solid", color="black", weight=3]; 2052[label="True <= False",fontsize=16,color="black",shape="box"];2052 -> 2336[label="",style="solid", color="black", weight=3]; 2053[label="True <= True",fontsize=16,color="black",shape="box"];2053 -> 2337[label="",style="solid", color="black", weight=3]; 2054[label="(xuu690,xuu691) <= (xuu700,xuu701)",fontsize=16,color="black",shape="box"];2054 -> 2338[label="",style="solid", color="black", weight=3]; 2056 -> 239[label="",style="dashed", color="red", weight=0]; 2056[label="compare xuu69 xuu70",fontsize=16,color="magenta"];2056 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2056 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2055[label="xuu194 /= GT",fontsize=16,color="black",shape="triangle"];2055 -> 2341[label="",style="solid", color="black", weight=3]; 2064[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2064 -> 2342[label="",style="solid", color="black", weight=3]; 2065[label="Nothing <= Just xuu700",fontsize=16,color="black",shape="box"];2065 -> 2343[label="",style="solid", color="black", weight=3]; 2066[label="Just xuu690 <= Nothing",fontsize=16,color="black",shape="box"];2066 -> 2344[label="",style="solid", color="black", weight=3]; 2067[label="Just xuu690 <= Just xuu700",fontsize=16,color="black",shape="box"];2067 -> 2345[label="",style="solid", color="black", weight=3]; 2068[label="LT <= LT",fontsize=16,color="black",shape="box"];2068 -> 2346[label="",style="solid", color="black", weight=3]; 2069[label="LT <= EQ",fontsize=16,color="black",shape="box"];2069 -> 2347[label="",style="solid", color="black", weight=3]; 2070[label="LT <= GT",fontsize=16,color="black",shape="box"];2070 -> 2348[label="",style="solid", color="black", weight=3]; 2071[label="EQ <= LT",fontsize=16,color="black",shape="box"];2071 -> 2349[label="",style="solid", color="black", weight=3]; 2072[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2072 -> 2350[label="",style="solid", color="black", weight=3]; 2073[label="EQ <= GT",fontsize=16,color="black",shape="box"];2073 -> 2351[label="",style="solid", color="black", weight=3]; 2074[label="GT <= LT",fontsize=16,color="black",shape="box"];2074 -> 2352[label="",style="solid", color="black", weight=3]; 2075[label="GT <= EQ",fontsize=16,color="black",shape="box"];2075 -> 2353[label="",style="solid", color="black", weight=3]; 2076[label="GT <= GT",fontsize=16,color="black",shape="box"];2076 -> 2354[label="",style="solid", color="black", weight=3]; 2057 -> 242[label="",style="dashed", color="red", weight=0]; 2057[label="compare xuu69 xuu70",fontsize=16,color="magenta"];2057 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2058 -> 243[label="",style="dashed", color="red", weight=0]; 2058[label="compare xuu69 xuu70",fontsize=16,color="magenta"];2058 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2058 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2059 -> 244[label="",style="dashed", color="red", weight=0]; 2059[label="compare xuu69 xuu70",fontsize=16,color="magenta"];2059 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2077[label="(xuu690,xuu691,xuu692) <= (xuu700,xuu701,xuu702)",fontsize=16,color="black",shape="box"];2077 -> 2361[label="",style="solid", color="black", weight=3]; 2060 -> 246[label="",style="dashed", color="red", weight=0]; 2060[label="compare xuu69 xuu70",fontsize=16,color="magenta"];2060 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2060 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2061 -> 247[label="",style="dashed", color="red", weight=0]; 2061[label="compare xuu69 xuu70",fontsize=16,color="magenta"];2061 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2062 -> 248[label="",style="dashed", color="red", weight=0]; 2062[label="compare xuu69 xuu70",fontsize=16,color="magenta"];2062 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2078[label="Left xuu690 <= Left xuu700",fontsize=16,color="black",shape="box"];2078 -> 2368[label="",style="solid", color="black", weight=3]; 2079[label="Left xuu690 <= Right xuu700",fontsize=16,color="black",shape="box"];2079 -> 2369[label="",style="solid", color="black", weight=3]; 2080[label="Right xuu690 <= Left xuu700",fontsize=16,color="black",shape="box"];2080 -> 2370[label="",style="solid", color="black", weight=3]; 2081[label="Right xuu690 <= Right xuu700",fontsize=16,color="black",shape="box"];2081 -> 2371[label="",style="solid", color="black", weight=3]; 2063 -> 250[label="",style="dashed", color="red", weight=0]; 2063[label="compare xuu69 xuu70",fontsize=16,color="magenta"];2063 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2063 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2082[label="GT",fontsize=16,color="green",shape="box"];2090 -> 54[label="",style="dashed", color="red", weight=0]; 2090[label="xuu81 < xuu84",fontsize=16,color="magenta"];2090 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2090 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2091 -> 55[label="",style="dashed", color="red", weight=0]; 2091[label="xuu81 < xuu84",fontsize=16,color="magenta"];2091 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2091 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2092 -> 56[label="",style="dashed", color="red", weight=0]; 2092[label="xuu81 < xuu84",fontsize=16,color="magenta"];2092 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2092 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2093 -> 57[label="",style="dashed", color="red", weight=0]; 2093[label="xuu81 < xuu84",fontsize=16,color="magenta"];2093 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2093 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2094 -> 58[label="",style="dashed", color="red", weight=0]; 2094[label="xuu81 < xuu84",fontsize=16,color="magenta"];2094 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2095 -> 59[label="",style="dashed", color="red", weight=0]; 2095[label="xuu81 < xuu84",fontsize=16,color="magenta"];2095 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2095 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2096 -> 60[label="",style="dashed", color="red", weight=0]; 2096[label="xuu81 < xuu84",fontsize=16,color="magenta"];2096 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2096 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2097 -> 61[label="",style="dashed", color="red", weight=0]; 2097[label="xuu81 < xuu84",fontsize=16,color="magenta"];2097 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2097 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2098 -> 62[label="",style="dashed", color="red", weight=0]; 2098[label="xuu81 < xuu84",fontsize=16,color="magenta"];2098 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2098 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2099 -> 63[label="",style="dashed", color="red", weight=0]; 2099[label="xuu81 < xuu84",fontsize=16,color="magenta"];2099 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2099 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2100 -> 64[label="",style="dashed", color="red", weight=0]; 2100[label="xuu81 < xuu84",fontsize=16,color="magenta"];2100 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2100 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2101 -> 65[label="",style="dashed", color="red", weight=0]; 2101[label="xuu81 < xuu84",fontsize=16,color="magenta"];2101 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2101 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2102 -> 66[label="",style="dashed", color="red", weight=0]; 2102[label="xuu81 < xuu84",fontsize=16,color="magenta"];2102 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2102 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2103 -> 67[label="",style="dashed", color="red", weight=0]; 2103[label="xuu81 < xuu84",fontsize=16,color="magenta"];2103 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2103 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2104[label="xuu82 <= xuu85",fontsize=16,color="blue",shape="box"];3892[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3892[label="",style="solid", color="blue", weight=9]; 3892 -> 2402[label="",style="solid", color="blue", weight=3]; 3893[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3893[label="",style="solid", color="blue", weight=9]; 3893 -> 2403[label="",style="solid", color="blue", weight=3]; 3894[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3894[label="",style="solid", color="blue", weight=9]; 3894 -> 2404[label="",style="solid", color="blue", weight=3]; 3895[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3895[label="",style="solid", color="blue", weight=9]; 3895 -> 2405[label="",style="solid", color="blue", weight=3]; 3896[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3896[label="",style="solid", color="blue", weight=9]; 3896 -> 2406[label="",style="solid", color="blue", weight=3]; 3897[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3897[label="",style="solid", color="blue", weight=9]; 3897 -> 2407[label="",style="solid", color="blue", weight=3]; 3898[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3898[label="",style="solid", color="blue", weight=9]; 3898 -> 2408[label="",style="solid", color="blue", weight=3]; 3899[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3899[label="",style="solid", color="blue", weight=9]; 3899 -> 2409[label="",style="solid", color="blue", weight=3]; 3900[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3900[label="",style="solid", color="blue", weight=9]; 3900 -> 2410[label="",style="solid", color="blue", weight=3]; 3901[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3901[label="",style="solid", color="blue", weight=9]; 3901 -> 2411[label="",style="solid", color="blue", weight=3]; 3902[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3902[label="",style="solid", color="blue", weight=9]; 3902 -> 2412[label="",style="solid", color="blue", weight=3]; 3903[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3903[label="",style="solid", color="blue", weight=9]; 3903 -> 2413[label="",style="solid", color="blue", weight=3]; 3904[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3904[label="",style="solid", color="blue", weight=9]; 3904 -> 2414[label="",style="solid", color="blue", weight=3]; 3905[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3905[label="",style="solid", color="blue", weight=9]; 3905 -> 2415[label="",style="solid", color="blue", weight=3]; 2105[label="xuu81 == xuu84",fontsize=16,color="blue",shape="box"];3906[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3906[label="",style="solid", color="blue", weight=9]; 3906 -> 2416[label="",style="solid", color="blue", weight=3]; 3907[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3907[label="",style="solid", color="blue", weight=9]; 3907 -> 2417[label="",style="solid", color="blue", weight=3]; 3908[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3908[label="",style="solid", color="blue", weight=9]; 3908 -> 2418[label="",style="solid", color="blue", weight=3]; 3909[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3909[label="",style="solid", color="blue", weight=9]; 3909 -> 2419[label="",style="solid", color="blue", weight=3]; 3910[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3910[label="",style="solid", color="blue", weight=9]; 3910 -> 2420[label="",style="solid", color="blue", weight=3]; 3911[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3911[label="",style="solid", color="blue", weight=9]; 3911 -> 2421[label="",style="solid", color="blue", weight=3]; 3912[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3912[label="",style="solid", color="blue", weight=9]; 3912 -> 2422[label="",style="solid", color="blue", weight=3]; 3913[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3913[label="",style="solid", color="blue", weight=9]; 3913 -> 2423[label="",style="solid", color="blue", weight=3]; 3914[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3914[label="",style="solid", color="blue", weight=9]; 3914 -> 2424[label="",style="solid", color="blue", weight=3]; 3915[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3915[label="",style="solid", color="blue", weight=9]; 3915 -> 2425[label="",style="solid", color="blue", weight=3]; 3916[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3916[label="",style="solid", color="blue", weight=9]; 3916 -> 2426[label="",style="solid", color="blue", weight=3]; 3917[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3917[label="",style="solid", color="blue", weight=9]; 3917 -> 2427[label="",style="solid", color="blue", weight=3]; 3918[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3918[label="",style="solid", color="blue", weight=9]; 3918 -> 2428[label="",style="solid", color="blue", weight=3]; 3919[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3919[label="",style="solid", color="blue", weight=9]; 3919 -> 2429[label="",style="solid", color="blue", weight=3]; 2106[label="False || xuu199",fontsize=16,color="black",shape="box"];2106 -> 2430[label="",style="solid", color="black", weight=3]; 2107[label="True || xuu199",fontsize=16,color="black",shape="box"];2107 -> 2431[label="",style="solid", color="black", weight=3]; 2108[label="xuu83",fontsize=16,color="green",shape="box"];2109[label="xuu80",fontsize=16,color="green",shape="box"];2110[label="xuu83",fontsize=16,color="green",shape="box"];2111[label="xuu80",fontsize=16,color="green",shape="box"];2112[label="xuu83",fontsize=16,color="green",shape="box"];2113[label="xuu80",fontsize=16,color="green",shape="box"];2114[label="xuu83",fontsize=16,color="green",shape="box"];2115[label="xuu80",fontsize=16,color="green",shape="box"];2116[label="xuu83",fontsize=16,color="green",shape="box"];2117[label="xuu80",fontsize=16,color="green",shape="box"];2118[label="xuu83",fontsize=16,color="green",shape="box"];2119[label="xuu80",fontsize=16,color="green",shape="box"];2120[label="xuu83",fontsize=16,color="green",shape="box"];2121[label="xuu80",fontsize=16,color="green",shape="box"];2122[label="xuu83",fontsize=16,color="green",shape="box"];2123[label="xuu80",fontsize=16,color="green",shape="box"];2124[label="xuu83",fontsize=16,color="green",shape="box"];2125[label="xuu80",fontsize=16,color="green",shape="box"];2126[label="xuu83",fontsize=16,color="green",shape="box"];2127[label="xuu80",fontsize=16,color="green",shape="box"];2128[label="xuu83",fontsize=16,color="green",shape="box"];2129[label="xuu80",fontsize=16,color="green",shape="box"];2130[label="xuu83",fontsize=16,color="green",shape="box"];2131[label="xuu80",fontsize=16,color="green",shape="box"];2132[label="xuu83",fontsize=16,color="green",shape="box"];2133[label="xuu80",fontsize=16,color="green",shape="box"];2134[label="xuu83",fontsize=16,color="green",shape="box"];2135[label="xuu80",fontsize=16,color="green",shape="box"];2136[label="compare1 (xuu181,xuu182,xuu183) (xuu184,xuu185,xuu186) False",fontsize=16,color="black",shape="box"];2136 -> 2432[label="",style="solid", color="black", weight=3]; 2137[label="compare1 (xuu181,xuu182,xuu183) (xuu184,xuu185,xuu186) True",fontsize=16,color="black",shape="box"];2137 -> 2433[label="",style="solid", color="black", weight=3]; 2138[label="True",fontsize=16,color="green",shape="box"];2139[label="GT",fontsize=16,color="green",shape="box"];2140[label="GT",fontsize=16,color="green",shape="box"];2141 -> 1370[label="",style="dashed", color="red", weight=0]; 2141[label="primPlusNat (primMulNat xuu31100000 (Succ xuu60100)) (Succ xuu60100)",fontsize=16,color="magenta"];2141 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2141 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2142[label="Zero",fontsize=16,color="green",shape="box"];2143[label="Zero",fontsize=16,color="green",shape="box"];2144[label="Zero",fontsize=16,color="green",shape="box"];2145[label="Succ (Succ (primPlusNat xuu42200 xuu12900))",fontsize=16,color="green",shape="box"];2145 -> 2436[label="",style="dashed", color="green", weight=3]; 2146[label="Succ xuu42200",fontsize=16,color="green",shape="box"];2147[label="Succ xuu12900",fontsize=16,color="green",shape="box"];2148[label="Zero",fontsize=16,color="green",shape="box"];2149[label="xuu12900",fontsize=16,color="green",shape="box"];2150[label="xuu42200",fontsize=16,color="green",shape="box"];2151[label="FiniteMap.mkBranch (Pos (Succ (Succ Zero))) xuu17 xuu18 xuu42 xuu21",fontsize=16,color="black",shape="box"];2151 -> 2437[label="",style="solid", color="black", weight=3]; 2152[label="error []",fontsize=16,color="red",shape="box"];2153[label="FiniteMap.mkBalBranch6MkBalBranch12 xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424)",fontsize=16,color="black",shape="box"];2153 -> 2438[label="",style="solid", color="black", weight=3]; 2154 -> 957[label="",style="dashed", color="red", weight=0]; 2154[label="FiniteMap.sizeFM xuu213",fontsize=16,color="magenta"];2154 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2155 -> 502[label="",style="dashed", color="red", weight=0]; 2155[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu214",fontsize=16,color="magenta"];2155 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2155 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2156[label="FiniteMap.mkBalBranch6MkBalBranch01 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 False",fontsize=16,color="black",shape="box"];2156 -> 2442[label="",style="solid", color="black", weight=3]; 2157[label="FiniteMap.mkBalBranch6MkBalBranch01 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 True",fontsize=16,color="black",shape="box"];2157 -> 2443[label="",style="solid", color="black", weight=3]; 2158[label="Pos (Succ Zero)",fontsize=16,color="green",shape="box"];2159[label="FiniteMap.mkBranchLeft_size xuu21 xuu17 xuu42",fontsize=16,color="black",shape="box"];2159 -> 2444[label="",style="solid", color="black", weight=3]; 2160[label="compare0 (xuu166,xuu167) (xuu168,xuu169) otherwise",fontsize=16,color="black",shape="box"];2160 -> 2445[label="",style="solid", color="black", weight=3]; 2161[label="LT",fontsize=16,color="green",shape="box"];2162[label="xuu6000",fontsize=16,color="green",shape="box"];2163[label="xuu3110000",fontsize=16,color="green",shape="box"];2164[label="xuu6000",fontsize=16,color="green",shape="box"];2165[label="xuu3110000",fontsize=16,color="green",shape="box"];2166[label="xuu6000",fontsize=16,color="green",shape="box"];2167[label="xuu3110000",fontsize=16,color="green",shape="box"];2168[label="xuu6000",fontsize=16,color="green",shape="box"];2169[label="xuu3110000",fontsize=16,color="green",shape="box"];2170[label="xuu6000",fontsize=16,color="green",shape="box"];2171[label="xuu3110000",fontsize=16,color="green",shape="box"];2172[label="xuu6000",fontsize=16,color="green",shape="box"];2173[label="xuu3110000",fontsize=16,color="green",shape="box"];2174[label="xuu6000",fontsize=16,color="green",shape="box"];2175[label="xuu3110000",fontsize=16,color="green",shape="box"];2176[label="xuu6000",fontsize=16,color="green",shape="box"];2177[label="xuu3110000",fontsize=16,color="green",shape="box"];2178[label="xuu6000",fontsize=16,color="green",shape="box"];2179[label="xuu3110000",fontsize=16,color="green",shape="box"];2180[label="xuu6000",fontsize=16,color="green",shape="box"];2181[label="xuu3110000",fontsize=16,color="green",shape="box"];2182[label="xuu6000",fontsize=16,color="green",shape="box"];2183[label="xuu3110000",fontsize=16,color="green",shape="box"];2184[label="xuu6000",fontsize=16,color="green",shape="box"];2185[label="xuu3110000",fontsize=16,color="green",shape="box"];2186[label="xuu6000",fontsize=16,color="green",shape="box"];2187[label="xuu3110000",fontsize=16,color="green",shape="box"];2188[label="xuu6000",fontsize=16,color="green",shape="box"];2189[label="xuu3110000",fontsize=16,color="green",shape="box"];2190 -> 1675[label="",style="dashed", color="red", weight=0]; 2190[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2190 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2190 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2191[label="False",fontsize=16,color="green",shape="box"];2192[label="False",fontsize=16,color="green",shape="box"];2193[label="True",fontsize=16,color="green",shape="box"];2194[label="False",fontsize=16,color="green",shape="box"];2195[label="True",fontsize=16,color="green",shape="box"];2196 -> 1675[label="",style="dashed", color="red", weight=0]; 2196[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2196 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2196 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2197[label="False",fontsize=16,color="green",shape="box"];2198[label="False",fontsize=16,color="green",shape="box"];2199[label="True",fontsize=16,color="green",shape="box"];2200[label="False",fontsize=16,color="green",shape="box"];2201[label="True",fontsize=16,color="green",shape="box"];2202[label="xuu6000",fontsize=16,color="green",shape="box"];2203[label="xuu3110001",fontsize=16,color="green",shape="box"];2204[label="xuu6001",fontsize=16,color="green",shape="box"];2205[label="xuu3110000",fontsize=16,color="green",shape="box"];2206[label="xuu6000",fontsize=16,color="green",shape="box"];2207[label="xuu3110001",fontsize=16,color="green",shape="box"];2208[label="xuu6001",fontsize=16,color="green",shape="box"];2209[label="xuu3110000",fontsize=16,color="green",shape="box"];2210[label="xuu6001",fontsize=16,color="green",shape="box"];2211[label="xuu3110001",fontsize=16,color="green",shape="box"];2212[label="xuu6001",fontsize=16,color="green",shape="box"];2213[label="xuu3110001",fontsize=16,color="green",shape="box"];2214[label="xuu6001",fontsize=16,color="green",shape="box"];2215[label="xuu3110001",fontsize=16,color="green",shape="box"];2216[label="xuu6001",fontsize=16,color="green",shape="box"];2217[label="xuu3110001",fontsize=16,color="green",shape="box"];2218[label="xuu6001",fontsize=16,color="green",shape="box"];2219[label="xuu3110001",fontsize=16,color="green",shape="box"];2220[label="xuu6001",fontsize=16,color="green",shape="box"];2221[label="xuu3110001",fontsize=16,color="green",shape="box"];2222[label="xuu6001",fontsize=16,color="green",shape="box"];2223[label="xuu3110001",fontsize=16,color="green",shape="box"];2224[label="xuu6001",fontsize=16,color="green",shape="box"];2225[label="xuu3110001",fontsize=16,color="green",shape="box"];2226[label="xuu6001",fontsize=16,color="green",shape="box"];2227[label="xuu3110001",fontsize=16,color="green",shape="box"];2228[label="xuu6001",fontsize=16,color="green",shape="box"];2229[label="xuu3110001",fontsize=16,color="green",shape="box"];2230[label="xuu6001",fontsize=16,color="green",shape="box"];2231[label="xuu3110001",fontsize=16,color="green",shape="box"];2232[label="xuu6001",fontsize=16,color="green",shape="box"];2233[label="xuu3110001",fontsize=16,color="green",shape="box"];2234[label="xuu6001",fontsize=16,color="green",shape="box"];2235[label="xuu3110001",fontsize=16,color="green",shape="box"];2236[label="xuu6001",fontsize=16,color="green",shape="box"];2237[label="xuu3110001",fontsize=16,color="green",shape="box"];2238[label="xuu6000",fontsize=16,color="green",shape="box"];2239[label="xuu3110000",fontsize=16,color="green",shape="box"];2240[label="xuu6000",fontsize=16,color="green",shape="box"];2241[label="xuu3110000",fontsize=16,color="green",shape="box"];2242[label="xuu6000",fontsize=16,color="green",shape="box"];2243[label="xuu3110000",fontsize=16,color="green",shape="box"];2244[label="xuu6000",fontsize=16,color="green",shape="box"];2245[label="xuu3110000",fontsize=16,color="green",shape="box"];2246[label="xuu6000",fontsize=16,color="green",shape="box"];2247[label="xuu3110000",fontsize=16,color="green",shape="box"];2248[label="xuu6000",fontsize=16,color="green",shape="box"];2249[label="xuu3110000",fontsize=16,color="green",shape="box"];2250[label="xuu6000",fontsize=16,color="green",shape="box"];2251[label="xuu3110000",fontsize=16,color="green",shape="box"];2252[label="xuu6000",fontsize=16,color="green",shape="box"];2253[label="xuu3110000",fontsize=16,color="green",shape="box"];2254[label="xuu6000",fontsize=16,color="green",shape="box"];2255[label="xuu3110000",fontsize=16,color="green",shape="box"];2256[label="xuu6000",fontsize=16,color="green",shape="box"];2257[label="xuu3110000",fontsize=16,color="green",shape="box"];2258[label="xuu6000",fontsize=16,color="green",shape="box"];2259[label="xuu3110000",fontsize=16,color="green",shape="box"];2260[label="xuu6000",fontsize=16,color="green",shape="box"];2261[label="xuu3110000",fontsize=16,color="green",shape="box"];2262[label="xuu6000",fontsize=16,color="green",shape="box"];2263[label="xuu3110000",fontsize=16,color="green",shape="box"];2264[label="xuu6000",fontsize=16,color="green",shape="box"];2265[label="xuu3110000",fontsize=16,color="green",shape="box"];2266[label="primEqNat (Succ xuu31100000) (Succ xuu60000)",fontsize=16,color="black",shape="box"];2266 -> 2450[label="",style="solid", color="black", weight=3]; 2267[label="primEqNat (Succ xuu31100000) Zero",fontsize=16,color="black",shape="box"];2267 -> 2451[label="",style="solid", color="black", weight=3]; 2268[label="primEqNat Zero (Succ xuu60000)",fontsize=16,color="black",shape="box"];2268 -> 2452[label="",style="solid", color="black", weight=3]; 2269[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2269 -> 2453[label="",style="solid", color="black", weight=3]; 2270 -> 588[label="",style="dashed", color="red", weight=0]; 2270[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2270 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2270 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2271 -> 589[label="",style="dashed", color="red", weight=0]; 2271[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2271 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2271 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2272 -> 590[label="",style="dashed", color="red", weight=0]; 2272[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2272 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2272 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2273 -> 591[label="",style="dashed", color="red", weight=0]; 2273[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2273 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2273 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2274 -> 592[label="",style="dashed", color="red", weight=0]; 2274[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2274 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2274 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2275 -> 593[label="",style="dashed", color="red", weight=0]; 2275[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2275 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2275 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2276 -> 594[label="",style="dashed", color="red", weight=0]; 2276[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2276 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2276 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2277 -> 595[label="",style="dashed", color="red", weight=0]; 2277[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2277 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2277 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2278 -> 596[label="",style="dashed", color="red", weight=0]; 2278[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2278 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2278 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2279 -> 597[label="",style="dashed", color="red", weight=0]; 2279[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2279 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2279 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2280 -> 598[label="",style="dashed", color="red", weight=0]; 2280[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2280 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2280 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2281 -> 599[label="",style="dashed", color="red", weight=0]; 2281[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2281 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2281 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2282 -> 600[label="",style="dashed", color="red", weight=0]; 2282[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2282 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2282 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2283 -> 601[label="",style="dashed", color="red", weight=0]; 2283[label="xuu3110002 == xuu6002",fontsize=16,color="magenta"];2283 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2283 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2284 -> 588[label="",style="dashed", color="red", weight=0]; 2284[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2284 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2285 -> 589[label="",style="dashed", color="red", weight=0]; 2285[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2285 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2286 -> 590[label="",style="dashed", color="red", weight=0]; 2286[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2286 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2286 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2287 -> 591[label="",style="dashed", color="red", weight=0]; 2287[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2287 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2287 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2288 -> 592[label="",style="dashed", color="red", weight=0]; 2288[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2288 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2288 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2289 -> 593[label="",style="dashed", color="red", weight=0]; 2289[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2289 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2289 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2290 -> 594[label="",style="dashed", color="red", weight=0]; 2290[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2290 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2291 -> 595[label="",style="dashed", color="red", weight=0]; 2291[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2291 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2292 -> 596[label="",style="dashed", color="red", weight=0]; 2292[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2292 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2293 -> 597[label="",style="dashed", color="red", weight=0]; 2293[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2293 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2293 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2294 -> 598[label="",style="dashed", color="red", weight=0]; 2294[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2294 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2294 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2295 -> 599[label="",style="dashed", color="red", weight=0]; 2295[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2295 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2295 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2296 -> 600[label="",style="dashed", color="red", weight=0]; 2296[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2296 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2296 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2297 -> 601[label="",style="dashed", color="red", weight=0]; 2297[label="xuu3110001 == xuu6001",fontsize=16,color="magenta"];2297 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2297 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2298[label="xuu6000",fontsize=16,color="green",shape="box"];2299[label="xuu3110000",fontsize=16,color="green",shape="box"];2300[label="xuu6000",fontsize=16,color="green",shape="box"];2301[label="xuu3110000",fontsize=16,color="green",shape="box"];2302[label="xuu6000",fontsize=16,color="green",shape="box"];2303[label="xuu3110000",fontsize=16,color="green",shape="box"];2304[label="xuu6000",fontsize=16,color="green",shape="box"];2305[label="xuu3110000",fontsize=16,color="green",shape="box"];2306[label="xuu6000",fontsize=16,color="green",shape="box"];2307[label="xuu3110000",fontsize=16,color="green",shape="box"];2308[label="xuu6000",fontsize=16,color="green",shape="box"];2309[label="xuu3110000",fontsize=16,color="green",shape="box"];2310[label="xuu6000",fontsize=16,color="green",shape="box"];2311[label="xuu3110000",fontsize=16,color="green",shape="box"];2312[label="xuu6000",fontsize=16,color="green",shape="box"];2313[label="xuu3110000",fontsize=16,color="green",shape="box"];2314[label="xuu6000",fontsize=16,color="green",shape="box"];2315[label="xuu3110000",fontsize=16,color="green",shape="box"];2316[label="xuu6000",fontsize=16,color="green",shape="box"];2317[label="xuu3110000",fontsize=16,color="green",shape="box"];2318[label="xuu6000",fontsize=16,color="green",shape="box"];2319[label="xuu3110000",fontsize=16,color="green",shape="box"];2320[label="xuu6000",fontsize=16,color="green",shape="box"];2321[label="xuu3110000",fontsize=16,color="green",shape="box"];2322[label="xuu6000",fontsize=16,color="green",shape="box"];2323[label="xuu3110000",fontsize=16,color="green",shape="box"];2324[label="xuu6000",fontsize=16,color="green",shape="box"];2325[label="xuu3110000",fontsize=16,color="green",shape="box"];2326[label="xuu6001",fontsize=16,color="green",shape="box"];2327[label="xuu3110001",fontsize=16,color="green",shape="box"];2328[label="xuu6001",fontsize=16,color="green",shape="box"];2329[label="xuu3110001",fontsize=16,color="green",shape="box"];2330[label="xuu6000",fontsize=16,color="green",shape="box"];2331[label="xuu3110000",fontsize=16,color="green",shape="box"];2332[label="xuu6000",fontsize=16,color="green",shape="box"];2333[label="xuu3110000",fontsize=16,color="green",shape="box"];2334[label="True",fontsize=16,color="green",shape="box"];2335[label="True",fontsize=16,color="green",shape="box"];2336[label="False",fontsize=16,color="green",shape="box"];2337[label="True",fontsize=16,color="green",shape="box"];2338 -> 2085[label="",style="dashed", color="red", weight=0]; 2338[label="xuu690 < xuu700 || xuu690 == xuu700 && xuu691 <= xuu701",fontsize=16,color="magenta"];2338 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2338 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2339[label="xuu69",fontsize=16,color="green",shape="box"];2340[label="xuu70",fontsize=16,color="green",shape="box"];2341 -> 2512[label="",style="dashed", color="red", weight=0]; 2341[label="not (xuu194 == GT)",fontsize=16,color="magenta"];2341 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2342[label="True",fontsize=16,color="green",shape="box"];2343[label="True",fontsize=16,color="green",shape="box"];2344[label="False",fontsize=16,color="green",shape="box"];2345[label="xuu690 <= xuu700",fontsize=16,color="blue",shape="box"];3920[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3920[label="",style="solid", color="blue", weight=9]; 3920 -> 2514[label="",style="solid", color="blue", weight=3]; 3921[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3921[label="",style="solid", color="blue", weight=9]; 3921 -> 2515[label="",style="solid", color="blue", weight=3]; 3922[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3922[label="",style="solid", color="blue", weight=9]; 3922 -> 2516[label="",style="solid", color="blue", weight=3]; 3923[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3923[label="",style="solid", color="blue", weight=9]; 3923 -> 2517[label="",style="solid", color="blue", weight=3]; 3924[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3924[label="",style="solid", color="blue", weight=9]; 3924 -> 2518[label="",style="solid", color="blue", weight=3]; 3925[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3925[label="",style="solid", color="blue", weight=9]; 3925 -> 2519[label="",style="solid", color="blue", weight=3]; 3926[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3926[label="",style="solid", color="blue", weight=9]; 3926 -> 2520[label="",style="solid", color="blue", weight=3]; 3927[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3927[label="",style="solid", color="blue", weight=9]; 3927 -> 2521[label="",style="solid", color="blue", weight=3]; 3928[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3928[label="",style="solid", color="blue", weight=9]; 3928 -> 2522[label="",style="solid", color="blue", weight=3]; 3929[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3929[label="",style="solid", color="blue", weight=9]; 3929 -> 2523[label="",style="solid", color="blue", weight=3]; 3930[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3930[label="",style="solid", color="blue", weight=9]; 3930 -> 2524[label="",style="solid", color="blue", weight=3]; 3931[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3931[label="",style="solid", color="blue", weight=9]; 3931 -> 2525[label="",style="solid", color="blue", weight=3]; 3932[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3932[label="",style="solid", color="blue", weight=9]; 3932 -> 2526[label="",style="solid", color="blue", weight=3]; 3933[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2345 -> 3933[label="",style="solid", color="blue", weight=9]; 3933 -> 2527[label="",style="solid", color="blue", weight=3]; 2346[label="True",fontsize=16,color="green",shape="box"];2347[label="True",fontsize=16,color="green",shape="box"];2348[label="True",fontsize=16,color="green",shape="box"];2349[label="False",fontsize=16,color="green",shape="box"];2350[label="True",fontsize=16,color="green",shape="box"];2351[label="True",fontsize=16,color="green",shape="box"];2352[label="False",fontsize=16,color="green",shape="box"];2353[label="False",fontsize=16,color="green",shape="box"];2354[label="True",fontsize=16,color="green",shape="box"];2355[label="xuu69",fontsize=16,color="green",shape="box"];2356[label="xuu70",fontsize=16,color="green",shape="box"];2357[label="xuu69",fontsize=16,color="green",shape="box"];2358[label="xuu70",fontsize=16,color="green",shape="box"];2359[label="xuu69",fontsize=16,color="green",shape="box"];2360[label="xuu70",fontsize=16,color="green",shape="box"];2361 -> 2085[label="",style="dashed", color="red", weight=0]; 2361[label="xuu690 < xuu700 || xuu690 == xuu700 && (xuu691 < xuu701 || xuu691 == xuu701 && xuu692 <= xuu702)",fontsize=16,color="magenta"];2361 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2361 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2362[label="xuu69",fontsize=16,color="green",shape="box"];2363[label="xuu70",fontsize=16,color="green",shape="box"];2364[label="xuu69",fontsize=16,color="green",shape="box"];2365[label="xuu70",fontsize=16,color="green",shape="box"];2366[label="xuu69",fontsize=16,color="green",shape="box"];2367[label="xuu70",fontsize=16,color="green",shape="box"];2368[label="xuu690 <= xuu700",fontsize=16,color="blue",shape="box"];3934[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 3934[label="",style="solid", color="blue", weight=9]; 3934 -> 2530[label="",style="solid", color="blue", weight=3]; 3935[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 3935[label="",style="solid", color="blue", weight=9]; 3935 -> 2531[label="",style="solid", color="blue", weight=3]; 3936[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 3936[label="",style="solid", color="blue", weight=9]; 3936 -> 2532[label="",style="solid", color="blue", weight=3]; 3937[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 3937[label="",style="solid", color="blue", weight=9]; 3937 -> 2533[label="",style="solid", color="blue", weight=3]; 3938[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 3938[label="",style="solid", color="blue", weight=9]; 3938 -> 2534[label="",style="solid", color="blue", weight=3]; 3939[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 3939[label="",style="solid", color="blue", weight=9]; 3939 -> 2535[label="",style="solid", color="blue", weight=3]; 3940[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 3940[label="",style="solid", color="blue", weight=9]; 3940 -> 2536[label="",style="solid", color="blue", weight=3]; 3941[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 3941[label="",style="solid", color="blue", weight=9]; 3941 -> 2537[label="",style="solid", color="blue", weight=3]; 3942[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 3942[label="",style="solid", color="blue", weight=9]; 3942 -> 2538[label="",style="solid", color="blue", weight=3]; 3943[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 3943[label="",style="solid", color="blue", weight=9]; 3943 -> 2539[label="",style="solid", color="blue", weight=3]; 3944[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 3944[label="",style="solid", color="blue", weight=9]; 3944 -> 2540[label="",style="solid", color="blue", weight=3]; 3945[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 3945[label="",style="solid", color="blue", weight=9]; 3945 -> 2541[label="",style="solid", color="blue", weight=3]; 3946[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 3946[label="",style="solid", color="blue", weight=9]; 3946 -> 2542[label="",style="solid", color="blue", weight=3]; 3947[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2368 -> 3947[label="",style="solid", color="blue", weight=9]; 3947 -> 2543[label="",style="solid", color="blue", weight=3]; 2369[label="True",fontsize=16,color="green",shape="box"];2370[label="False",fontsize=16,color="green",shape="box"];2371[label="xuu690 <= xuu700",fontsize=16,color="blue",shape="box"];3948[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3948[label="",style="solid", color="blue", weight=9]; 3948 -> 2544[label="",style="solid", color="blue", weight=3]; 3949[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3949[label="",style="solid", color="blue", weight=9]; 3949 -> 2545[label="",style="solid", color="blue", weight=3]; 3950[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3950[label="",style="solid", color="blue", weight=9]; 3950 -> 2546[label="",style="solid", color="blue", weight=3]; 3951[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3951[label="",style="solid", color="blue", weight=9]; 3951 -> 2547[label="",style="solid", color="blue", weight=3]; 3952[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3952[label="",style="solid", color="blue", weight=9]; 3952 -> 2548[label="",style="solid", color="blue", weight=3]; 3953[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3953[label="",style="solid", color="blue", weight=9]; 3953 -> 2549[label="",style="solid", color="blue", weight=3]; 3954[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3954[label="",style="solid", color="blue", weight=9]; 3954 -> 2550[label="",style="solid", color="blue", weight=3]; 3955[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3955[label="",style="solid", color="blue", weight=9]; 3955 -> 2551[label="",style="solid", color="blue", weight=3]; 3956[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3956[label="",style="solid", color="blue", weight=9]; 3956 -> 2552[label="",style="solid", color="blue", weight=3]; 3957[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3957[label="",style="solid", color="blue", weight=9]; 3957 -> 2553[label="",style="solid", color="blue", weight=3]; 3958[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3958[label="",style="solid", color="blue", weight=9]; 3958 -> 2554[label="",style="solid", color="blue", weight=3]; 3959[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3959[label="",style="solid", color="blue", weight=9]; 3959 -> 2555[label="",style="solid", color="blue", weight=3]; 3960[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3960[label="",style="solid", color="blue", weight=9]; 3960 -> 2556[label="",style="solid", color="blue", weight=3]; 3961[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3961[label="",style="solid", color="blue", weight=9]; 3961 -> 2557[label="",style="solid", color="blue", weight=3]; 2372[label="xuu69",fontsize=16,color="green",shape="box"];2373[label="xuu70",fontsize=16,color="green",shape="box"];2374[label="xuu81",fontsize=16,color="green",shape="box"];2375[label="xuu84",fontsize=16,color="green",shape="box"];2376[label="xuu81",fontsize=16,color="green",shape="box"];2377[label="xuu84",fontsize=16,color="green",shape="box"];2378[label="xuu81",fontsize=16,color="green",shape="box"];2379[label="xuu84",fontsize=16,color="green",shape="box"];2380[label="xuu81",fontsize=16,color="green",shape="box"];2381[label="xuu84",fontsize=16,color="green",shape="box"];2382[label="xuu81",fontsize=16,color="green",shape="box"];2383[label="xuu84",fontsize=16,color="green",shape="box"];2384[label="xuu81",fontsize=16,color="green",shape="box"];2385[label="xuu84",fontsize=16,color="green",shape="box"];2386[label="xuu81",fontsize=16,color="green",shape="box"];2387[label="xuu84",fontsize=16,color="green",shape="box"];2388[label="xuu81",fontsize=16,color="green",shape="box"];2389[label="xuu84",fontsize=16,color="green",shape="box"];2390[label="xuu81",fontsize=16,color="green",shape="box"];2391[label="xuu84",fontsize=16,color="green",shape="box"];2392[label="xuu81",fontsize=16,color="green",shape="box"];2393[label="xuu84",fontsize=16,color="green",shape="box"];2394[label="xuu81",fontsize=16,color="green",shape="box"];2395[label="xuu84",fontsize=16,color="green",shape="box"];2396[label="xuu81",fontsize=16,color="green",shape="box"];2397[label="xuu84",fontsize=16,color="green",shape="box"];2398[label="xuu81",fontsize=16,color="green",shape="box"];2399[label="xuu84",fontsize=16,color="green",shape="box"];2400[label="xuu81",fontsize=16,color="green",shape="box"];2401[label="xuu84",fontsize=16,color="green",shape="box"];2402 -> 1453[label="",style="dashed", color="red", weight=0]; 2402[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2402 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2402 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2403 -> 1454[label="",style="dashed", color="red", weight=0]; 2403[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2403 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2403 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2404 -> 1455[label="",style="dashed", color="red", weight=0]; 2404[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2404 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2404 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2405 -> 1456[label="",style="dashed", color="red", weight=0]; 2405[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2405 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2405 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2406 -> 1457[label="",style="dashed", color="red", weight=0]; 2406[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2406 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2406 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2407 -> 1458[label="",style="dashed", color="red", weight=0]; 2407[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2407 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2407 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2408 -> 1459[label="",style="dashed", color="red", weight=0]; 2408[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2408 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2408 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2409 -> 1460[label="",style="dashed", color="red", weight=0]; 2409[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2409 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2409 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2410 -> 1461[label="",style="dashed", color="red", weight=0]; 2410[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2410 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2410 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2411 -> 1462[label="",style="dashed", color="red", weight=0]; 2411[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2411 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2411 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2412 -> 1463[label="",style="dashed", color="red", weight=0]; 2412[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2412 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2412 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2413 -> 1464[label="",style="dashed", color="red", weight=0]; 2413[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2413 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2413 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2414 -> 1465[label="",style="dashed", color="red", weight=0]; 2414[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2414 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2414 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2415 -> 1466[label="",style="dashed", color="red", weight=0]; 2415[label="xuu82 <= xuu85",fontsize=16,color="magenta"];2415 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2415 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2416 -> 592[label="",style="dashed", color="red", weight=0]; 2416[label="xuu81 == xuu84",fontsize=16,color="magenta"];2416 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2416 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2417 -> 595[label="",style="dashed", color="red", weight=0]; 2417[label="xuu81 == xuu84",fontsize=16,color="magenta"];2417 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2417 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2418 -> 588[label="",style="dashed", color="red", weight=0]; 2418[label="xuu81 == xuu84",fontsize=16,color="magenta"];2418 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2418 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2419 -> 597[label="",style="dashed", color="red", weight=0]; 2419[label="xuu81 == xuu84",fontsize=16,color="magenta"];2419 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2419 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2420 -> 601[label="",style="dashed", color="red", weight=0]; 2420[label="xuu81 == xuu84",fontsize=16,color="magenta"];2420 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2420 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2421 -> 596[label="",style="dashed", color="red", weight=0]; 2421[label="xuu81 == xuu84",fontsize=16,color="magenta"];2421 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2421 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2422 -> 593[label="",style="dashed", color="red", weight=0]; 2422[label="xuu81 == xuu84",fontsize=16,color="magenta"];2422 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2422 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2423 -> 589[label="",style="dashed", color="red", weight=0]; 2423[label="xuu81 == xuu84",fontsize=16,color="magenta"];2423 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2423 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2424 -> 599[label="",style="dashed", color="red", weight=0]; 2424[label="xuu81 == xuu84",fontsize=16,color="magenta"];2424 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2424 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2425 -> 590[label="",style="dashed", color="red", weight=0]; 2425[label="xuu81 == xuu84",fontsize=16,color="magenta"];2425 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2425 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2426 -> 591[label="",style="dashed", color="red", weight=0]; 2426[label="xuu81 == xuu84",fontsize=16,color="magenta"];2426 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2426 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2427 -> 598[label="",style="dashed", color="red", weight=0]; 2427[label="xuu81 == xuu84",fontsize=16,color="magenta"];2427 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2427 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2428 -> 594[label="",style="dashed", color="red", weight=0]; 2428[label="xuu81 == xuu84",fontsize=16,color="magenta"];2428 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2428 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2429 -> 600[label="",style="dashed", color="red", weight=0]; 2429[label="xuu81 == xuu84",fontsize=16,color="magenta"];2429 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2430[label="xuu199",fontsize=16,color="green",shape="box"];2431[label="True",fontsize=16,color="green",shape="box"];2432[label="compare0 (xuu181,xuu182,xuu183) (xuu184,xuu185,xuu186) otherwise",fontsize=16,color="black",shape="box"];2432 -> 2614[label="",style="solid", color="black", weight=3]; 2433[label="LT",fontsize=16,color="green",shape="box"];2434[label="Succ xuu60100",fontsize=16,color="green",shape="box"];2435 -> 1364[label="",style="dashed", color="red", weight=0]; 2435[label="primMulNat xuu31100000 (Succ xuu60100)",fontsize=16,color="magenta"];2435 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2436 -> 1370[label="",style="dashed", color="red", weight=0]; 2436[label="primPlusNat xuu42200 xuu12900",fontsize=16,color="magenta"];2436 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2437 -> 585[label="",style="dashed", color="red", weight=0]; 2437[label="FiniteMap.mkBranchResult xuu17 xuu18 xuu21 xuu42",fontsize=16,color="magenta"];2438 -> 2619[label="",style="dashed", color="red", weight=0]; 2438[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21 xuu420 xuu421 xuu422 xuu423 xuu424 (FiniteMap.sizeFM xuu424 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu423)",fontsize=16,color="magenta"];2438 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2439[label="xuu213",fontsize=16,color="green",shape="box"];2440 -> 957[label="",style="dashed", color="red", weight=0]; 2440[label="FiniteMap.sizeFM xuu214",fontsize=16,color="magenta"];2440 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2441[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2442[label="FiniteMap.mkBalBranch6MkBalBranch00 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 otherwise",fontsize=16,color="black",shape="box"];2442 -> 2622[label="",style="solid", color="black", weight=3]; 2443[label="FiniteMap.mkBalBranch6Single_L (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="black",shape="box"];2443 -> 2623[label="",style="solid", color="black", weight=3]; 2444 -> 957[label="",style="dashed", color="red", weight=0]; 2444[label="FiniteMap.sizeFM xuu42",fontsize=16,color="magenta"];2444 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2445[label="compare0 (xuu166,xuu167) (xuu168,xuu169) True",fontsize=16,color="black",shape="box"];2445 -> 2625[label="",style="solid", color="black", weight=3]; 2446[label="xuu60000",fontsize=16,color="green",shape="box"];2447[label="xuu31100000",fontsize=16,color="green",shape="box"];2448[label="xuu60000",fontsize=16,color="green",shape="box"];2449[label="xuu31100000",fontsize=16,color="green",shape="box"];2450 -> 1675[label="",style="dashed", color="red", weight=0]; 2450[label="primEqNat xuu31100000 xuu60000",fontsize=16,color="magenta"];2450 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2450 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2451[label="False",fontsize=16,color="green",shape="box"];2452[label="False",fontsize=16,color="green",shape="box"];2453[label="True",fontsize=16,color="green",shape="box"];2454[label="xuu6002",fontsize=16,color="green",shape="box"];2455[label="xuu3110002",fontsize=16,color="green",shape="box"];2456[label="xuu6002",fontsize=16,color="green",shape="box"];2457[label="xuu3110002",fontsize=16,color="green",shape="box"];2458[label="xuu6002",fontsize=16,color="green",shape="box"];2459[label="xuu3110002",fontsize=16,color="green",shape="box"];2460[label="xuu6002",fontsize=16,color="green",shape="box"];2461[label="xuu3110002",fontsize=16,color="green",shape="box"];2462[label="xuu6002",fontsize=16,color="green",shape="box"];2463[label="xuu3110002",fontsize=16,color="green",shape="box"];2464[label="xuu6002",fontsize=16,color="green",shape="box"];2465[label="xuu3110002",fontsize=16,color="green",shape="box"];2466[label="xuu6002",fontsize=16,color="green",shape="box"];2467[label="xuu3110002",fontsize=16,color="green",shape="box"];2468[label="xuu6002",fontsize=16,color="green",shape="box"];2469[label="xuu3110002",fontsize=16,color="green",shape="box"];2470[label="xuu6002",fontsize=16,color="green",shape="box"];2471[label="xuu3110002",fontsize=16,color="green",shape="box"];2472[label="xuu6002",fontsize=16,color="green",shape="box"];2473[label="xuu3110002",fontsize=16,color="green",shape="box"];2474[label="xuu6002",fontsize=16,color="green",shape="box"];2475[label="xuu3110002",fontsize=16,color="green",shape="box"];2476[label="xuu6002",fontsize=16,color="green",shape="box"];2477[label="xuu3110002",fontsize=16,color="green",shape="box"];2478[label="xuu6002",fontsize=16,color="green",shape="box"];2479[label="xuu3110002",fontsize=16,color="green",shape="box"];2480[label="xuu6002",fontsize=16,color="green",shape="box"];2481[label="xuu3110002",fontsize=16,color="green",shape="box"];2482[label="xuu6001",fontsize=16,color="green",shape="box"];2483[label="xuu3110001",fontsize=16,color="green",shape="box"];2484[label="xuu6001",fontsize=16,color="green",shape="box"];2485[label="xuu3110001",fontsize=16,color="green",shape="box"];2486[label="xuu6001",fontsize=16,color="green",shape="box"];2487[label="xuu3110001",fontsize=16,color="green",shape="box"];2488[label="xuu6001",fontsize=16,color="green",shape="box"];2489[label="xuu3110001",fontsize=16,color="green",shape="box"];2490[label="xuu6001",fontsize=16,color="green",shape="box"];2491[label="xuu3110001",fontsize=16,color="green",shape="box"];2492[label="xuu6001",fontsize=16,color="green",shape="box"];2493[label="xuu3110001",fontsize=16,color="green",shape="box"];2494[label="xuu6001",fontsize=16,color="green",shape="box"];2495[label="xuu3110001",fontsize=16,color="green",shape="box"];2496[label="xuu6001",fontsize=16,color="green",shape="box"];2497[label="xuu3110001",fontsize=16,color="green",shape="box"];2498[label="xuu6001",fontsize=16,color="green",shape="box"];2499[label="xuu3110001",fontsize=16,color="green",shape="box"];2500[label="xuu6001",fontsize=16,color="green",shape="box"];2501[label="xuu3110001",fontsize=16,color="green",shape="box"];2502[label="xuu6001",fontsize=16,color="green",shape="box"];2503[label="xuu3110001",fontsize=16,color="green",shape="box"];2504[label="xuu6001",fontsize=16,color="green",shape="box"];2505[label="xuu3110001",fontsize=16,color="green",shape="box"];2506[label="xuu6001",fontsize=16,color="green",shape="box"];2507[label="xuu3110001",fontsize=16,color="green",shape="box"];2508[label="xuu6001",fontsize=16,color="green",shape="box"];2509[label="xuu3110001",fontsize=16,color="green",shape="box"];2510[label="xuu690 < xuu700",fontsize=16,color="blue",shape="box"];3962[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3962[label="",style="solid", color="blue", weight=9]; 3962 -> 2628[label="",style="solid", color="blue", weight=3]; 3963[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3963[label="",style="solid", color="blue", weight=9]; 3963 -> 2629[label="",style="solid", color="blue", weight=3]; 3964[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3964[label="",style="solid", color="blue", weight=9]; 3964 -> 2630[label="",style="solid", color="blue", weight=3]; 3965[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3965[label="",style="solid", color="blue", weight=9]; 3965 -> 2631[label="",style="solid", color="blue", weight=3]; 3966[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3966[label="",style="solid", color="blue", weight=9]; 3966 -> 2632[label="",style="solid", color="blue", weight=3]; 3967[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3967[label="",style="solid", color="blue", weight=9]; 3967 -> 2633[label="",style="solid", color="blue", weight=3]; 3968[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3968[label="",style="solid", color="blue", weight=9]; 3968 -> 2634[label="",style="solid", color="blue", weight=3]; 3969[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3969[label="",style="solid", color="blue", weight=9]; 3969 -> 2635[label="",style="solid", color="blue", weight=3]; 3970[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3970[label="",style="solid", color="blue", weight=9]; 3970 -> 2636[label="",style="solid", color="blue", weight=3]; 3971[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3971[label="",style="solid", color="blue", weight=9]; 3971 -> 2637[label="",style="solid", color="blue", weight=3]; 3972[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3972[label="",style="solid", color="blue", weight=9]; 3972 -> 2638[label="",style="solid", color="blue", weight=3]; 3973[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3973[label="",style="solid", color="blue", weight=9]; 3973 -> 2639[label="",style="solid", color="blue", weight=3]; 3974[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3974[label="",style="solid", color="blue", weight=9]; 3974 -> 2640[label="",style="solid", color="blue", weight=3]; 3975[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3975[label="",style="solid", color="blue", weight=9]; 3975 -> 2641[label="",style="solid", color="blue", weight=3]; 2511 -> 1079[label="",style="dashed", color="red", weight=0]; 2511[label="xuu690 == xuu700 && xuu691 <= xuu701",fontsize=16,color="magenta"];2511 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2511 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2513 -> 601[label="",style="dashed", color="red", weight=0]; 2513[label="xuu194 == GT",fontsize=16,color="magenta"];2513 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2512[label="not xuu200",fontsize=16,color="burlywood",shape="triangle"];3976[label="xuu200/False",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3976[label="",style="solid", color="burlywood", weight=9]; 3976 -> 2646[label="",style="solid", color="burlywood", weight=3]; 3977[label="xuu200/True",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3977[label="",style="solid", color="burlywood", weight=9]; 3977 -> 2647[label="",style="solid", color="burlywood", weight=3]; 2514 -> 1453[label="",style="dashed", color="red", weight=0]; 2514[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2514 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2515 -> 1454[label="",style="dashed", color="red", weight=0]; 2515[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2515 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2515 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2516 -> 1455[label="",style="dashed", color="red", weight=0]; 2516[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2516 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2516 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2517 -> 1456[label="",style="dashed", color="red", weight=0]; 2517[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2517 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2517 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2518 -> 1457[label="",style="dashed", color="red", weight=0]; 2518[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2518 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2519 -> 1458[label="",style="dashed", color="red", weight=0]; 2519[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2519 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2519 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2520 -> 1459[label="",style="dashed", color="red", weight=0]; 2520[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2520 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2520 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2521 -> 1460[label="",style="dashed", color="red", weight=0]; 2521[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2521 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2521 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2522 -> 1461[label="",style="dashed", color="red", weight=0]; 2522[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2522 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2522 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2523 -> 1462[label="",style="dashed", color="red", weight=0]; 2523[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2523 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2523 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2524 -> 1463[label="",style="dashed", color="red", weight=0]; 2524[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2524 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2524 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2525 -> 1464[label="",style="dashed", color="red", weight=0]; 2525[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2525 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2525 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2526 -> 1465[label="",style="dashed", color="red", weight=0]; 2526[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2526 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2526 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2527 -> 1466[label="",style="dashed", color="red", weight=0]; 2527[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2527 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2527 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2528[label="xuu690 < xuu700",fontsize=16,color="blue",shape="box"];3978[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3978[label="",style="solid", color="blue", weight=9]; 3978 -> 2676[label="",style="solid", color="blue", weight=3]; 3979[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3979[label="",style="solid", color="blue", weight=9]; 3979 -> 2677[label="",style="solid", color="blue", weight=3]; 3980[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3980[label="",style="solid", color="blue", weight=9]; 3980 -> 2678[label="",style="solid", color="blue", weight=3]; 3981[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3981[label="",style="solid", color="blue", weight=9]; 3981 -> 2679[label="",style="solid", color="blue", weight=3]; 3982[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3982[label="",style="solid", color="blue", weight=9]; 3982 -> 2680[label="",style="solid", color="blue", weight=3]; 3983[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3983[label="",style="solid", color="blue", weight=9]; 3983 -> 2681[label="",style="solid", color="blue", weight=3]; 3984[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3984[label="",style="solid", color="blue", weight=9]; 3984 -> 2682[label="",style="solid", color="blue", weight=3]; 3985[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3985[label="",style="solid", color="blue", weight=9]; 3985 -> 2683[label="",style="solid", color="blue", weight=3]; 3986[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3986[label="",style="solid", color="blue", weight=9]; 3986 -> 2684[label="",style="solid", color="blue", weight=3]; 3987[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3987[label="",style="solid", color="blue", weight=9]; 3987 -> 2685[label="",style="solid", color="blue", weight=3]; 3988[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3988[label="",style="solid", color="blue", weight=9]; 3988 -> 2686[label="",style="solid", color="blue", weight=3]; 3989[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3989[label="",style="solid", color="blue", weight=9]; 3989 -> 2687[label="",style="solid", color="blue", weight=3]; 3990[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3990[label="",style="solid", color="blue", weight=9]; 3990 -> 2688[label="",style="solid", color="blue", weight=3]; 3991[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2528 -> 3991[label="",style="solid", color="blue", weight=9]; 3991 -> 2689[label="",style="solid", color="blue", weight=3]; 2529 -> 1079[label="",style="dashed", color="red", weight=0]; 2529[label="xuu690 == xuu700 && (xuu691 < xuu701 || xuu691 == xuu701 && xuu692 <= xuu702)",fontsize=16,color="magenta"];2529 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2529 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2530 -> 1453[label="",style="dashed", color="red", weight=0]; 2530[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2530 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2530 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2531 -> 1454[label="",style="dashed", color="red", weight=0]; 2531[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2531 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2532 -> 1455[label="",style="dashed", color="red", weight=0]; 2532[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2532 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2532 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2533 -> 1456[label="",style="dashed", color="red", weight=0]; 2533[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2533 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2533 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2534 -> 1457[label="",style="dashed", color="red", weight=0]; 2534[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2534 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2534 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2535 -> 1458[label="",style="dashed", color="red", weight=0]; 2535[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2535 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2535 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2536 -> 1459[label="",style="dashed", color="red", weight=0]; 2536[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2536 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2536 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2537 -> 1460[label="",style="dashed", color="red", weight=0]; 2537[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2537 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2537 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2538 -> 1461[label="",style="dashed", color="red", weight=0]; 2538[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2538 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2538 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2539 -> 1462[label="",style="dashed", color="red", weight=0]; 2539[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2539 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2539 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2540 -> 1463[label="",style="dashed", color="red", weight=0]; 2540[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2540 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2540 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2541 -> 1464[label="",style="dashed", color="red", weight=0]; 2541[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2541 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2541 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2542 -> 1465[label="",style="dashed", color="red", weight=0]; 2542[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2542 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2542 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2543 -> 1466[label="",style="dashed", color="red", weight=0]; 2543[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2543 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2543 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2544 -> 1453[label="",style="dashed", color="red", weight=0]; 2544[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2544 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2544 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2545 -> 1454[label="",style="dashed", color="red", weight=0]; 2545[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2545 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2545 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2546 -> 1455[label="",style="dashed", color="red", weight=0]; 2546[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2546 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2546 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2547 -> 1456[label="",style="dashed", color="red", weight=0]; 2547[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2547 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2547 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2548 -> 1457[label="",style="dashed", color="red", weight=0]; 2548[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2548 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2548 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2549 -> 1458[label="",style="dashed", color="red", weight=0]; 2549[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2549 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2549 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2550 -> 1459[label="",style="dashed", color="red", weight=0]; 2550[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2550 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2551 -> 1460[label="",style="dashed", color="red", weight=0]; 2551[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2551 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2551 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2552 -> 1461[label="",style="dashed", color="red", weight=0]; 2552[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2552 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2553 -> 1462[label="",style="dashed", color="red", weight=0]; 2553[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2553 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2553 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2554 -> 1463[label="",style="dashed", color="red", weight=0]; 2554[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2554 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2554 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2555 -> 1464[label="",style="dashed", color="red", weight=0]; 2555[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2555 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2555 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2556 -> 1465[label="",style="dashed", color="red", weight=0]; 2556[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2556 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2556 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2557 -> 1466[label="",style="dashed", color="red", weight=0]; 2557[label="xuu690 <= xuu700",fontsize=16,color="magenta"];2557 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2557 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2558[label="xuu82",fontsize=16,color="green",shape="box"];2559[label="xuu85",fontsize=16,color="green",shape="box"];2560[label="xuu82",fontsize=16,color="green",shape="box"];2561[label="xuu85",fontsize=16,color="green",shape="box"];2562[label="xuu82",fontsize=16,color="green",shape="box"];2563[label="xuu85",fontsize=16,color="green",shape="box"];2564[label="xuu82",fontsize=16,color="green",shape="box"];2565[label="xuu85",fontsize=16,color="green",shape="box"];2566[label="xuu82",fontsize=16,color="green",shape="box"];2567[label="xuu85",fontsize=16,color="green",shape="box"];2568[label="xuu82",fontsize=16,color="green",shape="box"];2569[label="xuu85",fontsize=16,color="green",shape="box"];2570[label="xuu82",fontsize=16,color="green",shape="box"];2571[label="xuu85",fontsize=16,color="green",shape="box"];2572[label="xuu82",fontsize=16,color="green",shape="box"];2573[label="xuu85",fontsize=16,color="green",shape="box"];2574[label="xuu82",fontsize=16,color="green",shape="box"];2575[label="xuu85",fontsize=16,color="green",shape="box"];2576[label="xuu82",fontsize=16,color="green",shape="box"];2577[label="xuu85",fontsize=16,color="green",shape="box"];2578[label="xuu82",fontsize=16,color="green",shape="box"];2579[label="xuu85",fontsize=16,color="green",shape="box"];2580[label="xuu82",fontsize=16,color="green",shape="box"];2581[label="xuu85",fontsize=16,color="green",shape="box"];2582[label="xuu82",fontsize=16,color="green",shape="box"];2583[label="xuu85",fontsize=16,color="green",shape="box"];2584[label="xuu82",fontsize=16,color="green",shape="box"];2585[label="xuu85",fontsize=16,color="green",shape="box"];2586[label="xuu84",fontsize=16,color="green",shape="box"];2587[label="xuu81",fontsize=16,color="green",shape="box"];2588[label="xuu84",fontsize=16,color="green",shape="box"];2589[label="xuu81",fontsize=16,color="green",shape="box"];2590[label="xuu84",fontsize=16,color="green",shape="box"];2591[label="xuu81",fontsize=16,color="green",shape="box"];2592[label="xuu84",fontsize=16,color="green",shape="box"];2593[label="xuu81",fontsize=16,color="green",shape="box"];2594[label="xuu84",fontsize=16,color="green",shape="box"];2595[label="xuu81",fontsize=16,color="green",shape="box"];2596[label="xuu84",fontsize=16,color="green",shape="box"];2597[label="xuu81",fontsize=16,color="green",shape="box"];2598[label="xuu84",fontsize=16,color="green",shape="box"];2599[label="xuu81",fontsize=16,color="green",shape="box"];2600[label="xuu84",fontsize=16,color="green",shape="box"];2601[label="xuu81",fontsize=16,color="green",shape="box"];2602[label="xuu84",fontsize=16,color="green",shape="box"];2603[label="xuu81",fontsize=16,color="green",shape="box"];2604[label="xuu84",fontsize=16,color="green",shape="box"];2605[label="xuu81",fontsize=16,color="green",shape="box"];2606[label="xuu84",fontsize=16,color="green",shape="box"];2607[label="xuu81",fontsize=16,color="green",shape="box"];2608[label="xuu84",fontsize=16,color="green",shape="box"];2609[label="xuu81",fontsize=16,color="green",shape="box"];2610[label="xuu84",fontsize=16,color="green",shape="box"];2611[label="xuu81",fontsize=16,color="green",shape="box"];2612[label="xuu84",fontsize=16,color="green",shape="box"];2613[label="xuu81",fontsize=16,color="green",shape="box"];2614[label="compare0 (xuu181,xuu182,xuu183) (xuu184,xuu185,xuu186) True",fontsize=16,color="black",shape="box"];2614 -> 2748[label="",style="solid", color="black", weight=3]; 2615[label="xuu31100000",fontsize=16,color="green",shape="box"];2616[label="Succ xuu60100",fontsize=16,color="green",shape="box"];2617[label="xuu12900",fontsize=16,color="green",shape="box"];2618[label="xuu42200",fontsize=16,color="green",shape="box"];2620 -> 61[label="",style="dashed", color="red", weight=0]; 2620[label="FiniteMap.sizeFM xuu424 < Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu423",fontsize=16,color="magenta"];2620 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2619[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21 xuu420 xuu421 xuu422 xuu423 xuu424 xuu201",fontsize=16,color="burlywood",shape="triangle"];3992[label="xuu201/False",fontsize=10,color="white",style="solid",shape="box"];2619 -> 3992[label="",style="solid", color="burlywood", weight=9]; 3992 -> 2751[label="",style="solid", color="burlywood", weight=3]; 3993[label="xuu201/True",fontsize=10,color="white",style="solid",shape="box"];2619 -> 3993[label="",style="solid", color="burlywood", weight=9]; 3993 -> 2752[label="",style="solid", color="burlywood", weight=3]; 2621[label="xuu214",fontsize=16,color="green",shape="box"];2622[label="FiniteMap.mkBalBranch6MkBalBranch00 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu210 xuu211 xuu212 xuu213 xuu214 True",fontsize=16,color="black",shape="box"];2622 -> 2753[label="",style="solid", color="black", weight=3]; 2623[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ Zero)))) xuu210 xuu211 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu17 xuu18 xuu42 xuu213) xuu214",fontsize=16,color="black",shape="box"];2623 -> 2754[label="",style="solid", color="black", weight=3]; 2624[label="xuu42",fontsize=16,color="green",shape="box"];2625[label="GT",fontsize=16,color="green",shape="box"];2626[label="xuu60000",fontsize=16,color="green",shape="box"];2627[label="xuu31100000",fontsize=16,color="green",shape="box"];2628 -> 54[label="",style="dashed", color="red", weight=0]; 2628[label="xuu690 < xuu700",fontsize=16,color="magenta"];2628 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2629 -> 55[label="",style="dashed", color="red", weight=0]; 2629[label="xuu690 < xuu700",fontsize=16,color="magenta"];2629 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2630 -> 56[label="",style="dashed", color="red", weight=0]; 2630[label="xuu690 < xuu700",fontsize=16,color="magenta"];2630 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2630 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2631 -> 57[label="",style="dashed", color="red", weight=0]; 2631[label="xuu690 < xuu700",fontsize=16,color="magenta"];2631 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2632 -> 58[label="",style="dashed", color="red", weight=0]; 2632[label="xuu690 < xuu700",fontsize=16,color="magenta"];2632 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2632 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2633 -> 59[label="",style="dashed", color="red", weight=0]; 2633[label="xuu690 < xuu700",fontsize=16,color="magenta"];2633 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2633 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2634 -> 60[label="",style="dashed", color="red", weight=0]; 2634[label="xuu690 < xuu700",fontsize=16,color="magenta"];2634 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2634 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2635 -> 61[label="",style="dashed", color="red", weight=0]; 2635[label="xuu690 < xuu700",fontsize=16,color="magenta"];2635 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2636 -> 62[label="",style="dashed", color="red", weight=0]; 2636[label="xuu690 < xuu700",fontsize=16,color="magenta"];2636 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2636 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2637 -> 63[label="",style="dashed", color="red", weight=0]; 2637[label="xuu690 < xuu700",fontsize=16,color="magenta"];2637 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2637 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2638 -> 64[label="",style="dashed", color="red", weight=0]; 2638[label="xuu690 < xuu700",fontsize=16,color="magenta"];2638 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2638 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2639 -> 65[label="",style="dashed", color="red", weight=0]; 2639[label="xuu690 < xuu700",fontsize=16,color="magenta"];2639 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2639 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2640 -> 66[label="",style="dashed", color="red", weight=0]; 2640[label="xuu690 < xuu700",fontsize=16,color="magenta"];2640 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2640 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2641 -> 67[label="",style="dashed", color="red", weight=0]; 2641[label="xuu690 < xuu700",fontsize=16,color="magenta"];2641 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2641 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2642[label="xuu691 <= xuu701",fontsize=16,color="blue",shape="box"];3994[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2642 -> 3994[label="",style="solid", color="blue", weight=9]; 3994 -> 2783[label="",style="solid", color="blue", weight=3]; 3995[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2642 -> 3995[label="",style="solid", color="blue", weight=9]; 3995 -> 2784[label="",style="solid", color="blue", weight=3]; 3996[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2642 -> 3996[label="",style="solid", color="blue", weight=9]; 3996 -> 2785[label="",style="solid", color="blue", weight=3]; 3997[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2642 -> 3997[label="",style="solid", color="blue", weight=9]; 3997 -> 2786[label="",style="solid", color="blue", weight=3]; 3998[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2642 -> 3998[label="",style="solid", color="blue", weight=9]; 3998 -> 2787[label="",style="solid", color="blue", weight=3]; 3999[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2642 -> 3999[label="",style="solid", color="blue", weight=9]; 3999 -> 2788[label="",style="solid", color="blue", weight=3]; 4000[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2642 -> 4000[label="",style="solid", color="blue", weight=9]; 4000 -> 2789[label="",style="solid", color="blue", weight=3]; 4001[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2642 -> 4001[label="",style="solid", color="blue", weight=9]; 4001 -> 2790[label="",style="solid", color="blue", weight=3]; 4002[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2642 -> 4002[label="",style="solid", color="blue", weight=9]; 4002 -> 2791[label="",style="solid", color="blue", weight=3]; 4003[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2642 -> 4003[label="",style="solid", color="blue", weight=9]; 4003 -> 2792[label="",style="solid", color="blue", weight=3]; 4004[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2642 -> 4004[label="",style="solid", color="blue", weight=9]; 4004 -> 2793[label="",style="solid", color="blue", weight=3]; 4005[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2642 -> 4005[label="",style="solid", color="blue", weight=9]; 4005 -> 2794[label="",style="solid", color="blue", weight=3]; 4006[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2642 -> 4006[label="",style="solid", color="blue", weight=9]; 4006 -> 2795[label="",style="solid", color="blue", weight=3]; 4007[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2642 -> 4007[label="",style="solid", color="blue", weight=9]; 4007 -> 2796[label="",style="solid", color="blue", weight=3]; 2643[label="xuu690 == xuu700",fontsize=16,color="blue",shape="box"];4008[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4008[label="",style="solid", color="blue", weight=9]; 4008 -> 2797[label="",style="solid", color="blue", weight=3]; 4009[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4009[label="",style="solid", color="blue", weight=9]; 4009 -> 2798[label="",style="solid", color="blue", weight=3]; 4010[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4010[label="",style="solid", color="blue", weight=9]; 4010 -> 2799[label="",style="solid", color="blue", weight=3]; 4011[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4011[label="",style="solid", color="blue", weight=9]; 4011 -> 2800[label="",style="solid", color="blue", weight=3]; 4012[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4012[label="",style="solid", color="blue", weight=9]; 4012 -> 2801[label="",style="solid", color="blue", weight=3]; 4013[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4013[label="",style="solid", color="blue", weight=9]; 4013 -> 2802[label="",style="solid", color="blue", weight=3]; 4014[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4014[label="",style="solid", color="blue", weight=9]; 4014 -> 2803[label="",style="solid", color="blue", weight=3]; 4015[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4015[label="",style="solid", color="blue", weight=9]; 4015 -> 2804[label="",style="solid", color="blue", weight=3]; 4016[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4016[label="",style="solid", color="blue", weight=9]; 4016 -> 2805[label="",style="solid", color="blue", weight=3]; 4017[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4017[label="",style="solid", color="blue", weight=9]; 4017 -> 2806[label="",style="solid", color="blue", weight=3]; 4018[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4018[label="",style="solid", color="blue", weight=9]; 4018 -> 2807[label="",style="solid", color="blue", weight=3]; 4019[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4019[label="",style="solid", color="blue", weight=9]; 4019 -> 2808[label="",style="solid", color="blue", weight=3]; 4020[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4020[label="",style="solid", color="blue", weight=9]; 4020 -> 2809[label="",style="solid", color="blue", weight=3]; 4021[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4021[label="",style="solid", color="blue", weight=9]; 4021 -> 2810[label="",style="solid", color="blue", weight=3]; 2644[label="GT",fontsize=16,color="green",shape="box"];2645[label="xuu194",fontsize=16,color="green",shape="box"];2646[label="not False",fontsize=16,color="black",shape="box"];2646 -> 2811[label="",style="solid", color="black", weight=3]; 2647[label="not True",fontsize=16,color="black",shape="box"];2647 -> 2812[label="",style="solid", color="black", weight=3]; 2648[label="xuu690",fontsize=16,color="green",shape="box"];2649[label="xuu700",fontsize=16,color="green",shape="box"];2650[label="xuu690",fontsize=16,color="green",shape="box"];2651[label="xuu700",fontsize=16,color="green",shape="box"];2652[label="xuu690",fontsize=16,color="green",shape="box"];2653[label="xuu700",fontsize=16,color="green",shape="box"];2654[label="xuu690",fontsize=16,color="green",shape="box"];2655[label="xuu700",fontsize=16,color="green",shape="box"];2656[label="xuu690",fontsize=16,color="green",shape="box"];2657[label="xuu700",fontsize=16,color="green",shape="box"];2658[label="xuu690",fontsize=16,color="green",shape="box"];2659[label="xuu700",fontsize=16,color="green",shape="box"];2660[label="xuu690",fontsize=16,color="green",shape="box"];2661[label="xuu700",fontsize=16,color="green",shape="box"];2662[label="xuu690",fontsize=16,color="green",shape="box"];2663[label="xuu700",fontsize=16,color="green",shape="box"];2664[label="xuu690",fontsize=16,color="green",shape="box"];2665[label="xuu700",fontsize=16,color="green",shape="box"];2666[label="xuu690",fontsize=16,color="green",shape="box"];2667[label="xuu700",fontsize=16,color="green",shape="box"];2668[label="xuu690",fontsize=16,color="green",shape="box"];2669[label="xuu700",fontsize=16,color="green",shape="box"];2670[label="xuu690",fontsize=16,color="green",shape="box"];2671[label="xuu700",fontsize=16,color="green",shape="box"];2672[label="xuu690",fontsize=16,color="green",shape="box"];2673[label="xuu700",fontsize=16,color="green",shape="box"];2674[label="xuu690",fontsize=16,color="green",shape="box"];2675[label="xuu700",fontsize=16,color="green",shape="box"];2676 -> 54[label="",style="dashed", color="red", weight=0]; 2676[label="xuu690 < xuu700",fontsize=16,color="magenta"];2676 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2676 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2677 -> 55[label="",style="dashed", color="red", weight=0]; 2677[label="xuu690 < xuu700",fontsize=16,color="magenta"];2677 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2677 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2678 -> 56[label="",style="dashed", color="red", weight=0]; 2678[label="xuu690 < xuu700",fontsize=16,color="magenta"];2678 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2678 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2679 -> 57[label="",style="dashed", color="red", weight=0]; 2679[label="xuu690 < xuu700",fontsize=16,color="magenta"];2679 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2680 -> 58[label="",style="dashed", color="red", weight=0]; 2680[label="xuu690 < xuu700",fontsize=16,color="magenta"];2680 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2681 -> 59[label="",style="dashed", color="red", weight=0]; 2681[label="xuu690 < xuu700",fontsize=16,color="magenta"];2681 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2682 -> 60[label="",style="dashed", color="red", weight=0]; 2682[label="xuu690 < xuu700",fontsize=16,color="magenta"];2682 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2683 -> 61[label="",style="dashed", color="red", weight=0]; 2683[label="xuu690 < xuu700",fontsize=16,color="magenta"];2683 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2684 -> 62[label="",style="dashed", color="red", weight=0]; 2684[label="xuu690 < xuu700",fontsize=16,color="magenta"];2684 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2685 -> 63[label="",style="dashed", color="red", weight=0]; 2685[label="xuu690 < xuu700",fontsize=16,color="magenta"];2685 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2686 -> 64[label="",style="dashed", color="red", weight=0]; 2686[label="xuu690 < xuu700",fontsize=16,color="magenta"];2686 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2687 -> 65[label="",style="dashed", color="red", weight=0]; 2687[label="xuu690 < xuu700",fontsize=16,color="magenta"];2687 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2688 -> 66[label="",style="dashed", color="red", weight=0]; 2688[label="xuu690 < xuu700",fontsize=16,color="magenta"];2688 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2689 -> 67[label="",style="dashed", color="red", weight=0]; 2689[label="xuu690 < xuu700",fontsize=16,color="magenta"];2689 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2085[label="",style="dashed", color="red", weight=0]; 2690[label="xuu691 < xuu701 || xuu691 == xuu701 && xuu692 <= xuu702",fontsize=16,color="magenta"];2690 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2691[label="xuu690 == xuu700",fontsize=16,color="blue",shape="box"];4022[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2691 -> 4022[label="",style="solid", color="blue", weight=9]; 4022 -> 2843[label="",style="solid", color="blue", weight=3]; 4023[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2691 -> 4023[label="",style="solid", color="blue", weight=9]; 4023 -> 2844[label="",style="solid", color="blue", weight=3]; 4024[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2691 -> 4024[label="",style="solid", color="blue", weight=9]; 4024 -> 2845[label="",style="solid", color="blue", weight=3]; 4025[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2691 -> 4025[label="",style="solid", color="blue", weight=9]; 4025 -> 2846[label="",style="solid", color="blue", weight=3]; 4026[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2691 -> 4026[label="",style="solid", color="blue", weight=9]; 4026 -> 2847[label="",style="solid", color="blue", weight=3]; 4027[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2691 -> 4027[label="",style="solid", color="blue", weight=9]; 4027 -> 2848[label="",style="solid", color="blue", weight=3]; 4028[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2691 -> 4028[label="",style="solid", color="blue", weight=9]; 4028 -> 2849[label="",style="solid", color="blue", weight=3]; 4029[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2691 -> 4029[label="",style="solid", color="blue", weight=9]; 4029 -> 2850[label="",style="solid", color="blue", weight=3]; 4030[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2691 -> 4030[label="",style="solid", color="blue", weight=9]; 4030 -> 2851[label="",style="solid", color="blue", weight=3]; 4031[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2691 -> 4031[label="",style="solid", color="blue", weight=9]; 4031 -> 2852[label="",style="solid", color="blue", weight=3]; 4032[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2691 -> 4032[label="",style="solid", color="blue", weight=9]; 4032 -> 2853[label="",style="solid", color="blue", weight=3]; 4033[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2691 -> 4033[label="",style="solid", color="blue", weight=9]; 4033 -> 2854[label="",style="solid", color="blue", weight=3]; 4034[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2691 -> 4034[label="",style="solid", color="blue", weight=9]; 4034 -> 2855[label="",style="solid", color="blue", weight=3]; 4035[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2691 -> 4035[label="",style="solid", color="blue", weight=9]; 4035 -> 2856[label="",style="solid", color="blue", weight=3]; 2692[label="xuu690",fontsize=16,color="green",shape="box"];2693[label="xuu700",fontsize=16,color="green",shape="box"];2694[label="xuu690",fontsize=16,color="green",shape="box"];2695[label="xuu700",fontsize=16,color="green",shape="box"];2696[label="xuu690",fontsize=16,color="green",shape="box"];2697[label="xuu700",fontsize=16,color="green",shape="box"];2698[label="xuu690",fontsize=16,color="green",shape="box"];2699[label="xuu700",fontsize=16,color="green",shape="box"];2700[label="xuu690",fontsize=16,color="green",shape="box"];2701[label="xuu700",fontsize=16,color="green",shape="box"];2702[label="xuu690",fontsize=16,color="green",shape="box"];2703[label="xuu700",fontsize=16,color="green",shape="box"];2704[label="xuu690",fontsize=16,color="green",shape="box"];2705[label="xuu700",fontsize=16,color="green",shape="box"];2706[label="xuu690",fontsize=16,color="green",shape="box"];2707[label="xuu700",fontsize=16,color="green",shape="box"];2708[label="xuu690",fontsize=16,color="green",shape="box"];2709[label="xuu700",fontsize=16,color="green",shape="box"];2710[label="xuu690",fontsize=16,color="green",shape="box"];2711[label="xuu700",fontsize=16,color="green",shape="box"];2712[label="xuu690",fontsize=16,color="green",shape="box"];2713[label="xuu700",fontsize=16,color="green",shape="box"];2714[label="xuu690",fontsize=16,color="green",shape="box"];2715[label="xuu700",fontsize=16,color="green",shape="box"];2716[label="xuu690",fontsize=16,color="green",shape="box"];2717[label="xuu700",fontsize=16,color="green",shape="box"];2718[label="xuu690",fontsize=16,color="green",shape="box"];2719[label="xuu700",fontsize=16,color="green",shape="box"];2720[label="xuu690",fontsize=16,color="green",shape="box"];2721[label="xuu700",fontsize=16,color="green",shape="box"];2722[label="xuu690",fontsize=16,color="green",shape="box"];2723[label="xuu700",fontsize=16,color="green",shape="box"];2724[label="xuu690",fontsize=16,color="green",shape="box"];2725[label="xuu700",fontsize=16,color="green",shape="box"];2726[label="xuu690",fontsize=16,color="green",shape="box"];2727[label="xuu700",fontsize=16,color="green",shape="box"];2728[label="xuu690",fontsize=16,color="green",shape="box"];2729[label="xuu700",fontsize=16,color="green",shape="box"];2730[label="xuu690",fontsize=16,color="green",shape="box"];2731[label="xuu700",fontsize=16,color="green",shape="box"];2732[label="xuu690",fontsize=16,color="green",shape="box"];2733[label="xuu700",fontsize=16,color="green",shape="box"];2734[label="xuu690",fontsize=16,color="green",shape="box"];2735[label="xuu700",fontsize=16,color="green",shape="box"];2736[label="xuu690",fontsize=16,color="green",shape="box"];2737[label="xuu700",fontsize=16,color="green",shape="box"];2738[label="xuu690",fontsize=16,color="green",shape="box"];2739[label="xuu700",fontsize=16,color="green",shape="box"];2740[label="xuu690",fontsize=16,color="green",shape="box"];2741[label="xuu700",fontsize=16,color="green",shape="box"];2742[label="xuu690",fontsize=16,color="green",shape="box"];2743[label="xuu700",fontsize=16,color="green",shape="box"];2744[label="xuu690",fontsize=16,color="green",shape="box"];2745[label="xuu700",fontsize=16,color="green",shape="box"];2746[label="xuu690",fontsize=16,color="green",shape="box"];2747[label="xuu700",fontsize=16,color="green",shape="box"];2748[label="GT",fontsize=16,color="green",shape="box"];2749 -> 957[label="",style="dashed", color="red", weight=0]; 2749[label="FiniteMap.sizeFM xuu424",fontsize=16,color="magenta"];2749 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2750 -> 502[label="",style="dashed", color="red", weight=0]; 2750[label="Pos (Succ (Succ Zero)) * FiniteMap.sizeFM xuu423",fontsize=16,color="magenta"];2750 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2750 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2751[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21 xuu420 xuu421 xuu422 xuu423 xuu424 False",fontsize=16,color="black",shape="box"];2751 -> 2860[label="",style="solid", color="black", weight=3]; 2752[label="FiniteMap.mkBalBranch6MkBalBranch11 xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21 xuu420 xuu421 xuu422 xuu423 xuu424 True",fontsize=16,color="black",shape="box"];2752 -> 2861[label="",style="solid", color="black", weight=3]; 2753[label="FiniteMap.mkBalBranch6Double_L (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 xuu213 xuu214)",fontsize=16,color="burlywood",shape="box"];4036[label="xuu213/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4036[label="",style="solid", color="burlywood", weight=9]; 4036 -> 2862[label="",style="solid", color="burlywood", weight=3]; 4037[label="xuu213/FiniteMap.Branch xuu2130 xuu2131 xuu2132 xuu2133 xuu2134",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4037[label="",style="solid", color="burlywood", weight=9]; 4037 -> 2863[label="",style="solid", color="burlywood", weight=3]; 2754 -> 585[label="",style="dashed", color="red", weight=0]; 2754[label="FiniteMap.mkBranchResult xuu210 xuu211 xuu214 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu17 xuu18 xuu42 xuu213)",fontsize=16,color="magenta"];2754 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2754 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2755[label="xuu690",fontsize=16,color="green",shape="box"];2756[label="xuu700",fontsize=16,color="green",shape="box"];2757[label="xuu690",fontsize=16,color="green",shape="box"];2758[label="xuu700",fontsize=16,color="green",shape="box"];2759[label="xuu690",fontsize=16,color="green",shape="box"];2760[label="xuu700",fontsize=16,color="green",shape="box"];2761[label="xuu690",fontsize=16,color="green",shape="box"];2762[label="xuu700",fontsize=16,color="green",shape="box"];2763[label="xuu690",fontsize=16,color="green",shape="box"];2764[label="xuu700",fontsize=16,color="green",shape="box"];2765[label="xuu690",fontsize=16,color="green",shape="box"];2766[label="xuu700",fontsize=16,color="green",shape="box"];2767[label="xuu690",fontsize=16,color="green",shape="box"];2768[label="xuu700",fontsize=16,color="green",shape="box"];2769[label="xuu690",fontsize=16,color="green",shape="box"];2770[label="xuu700",fontsize=16,color="green",shape="box"];2771[label="xuu690",fontsize=16,color="green",shape="box"];2772[label="xuu700",fontsize=16,color="green",shape="box"];2773[label="xuu690",fontsize=16,color="green",shape="box"];2774[label="xuu700",fontsize=16,color="green",shape="box"];2775[label="xuu690",fontsize=16,color="green",shape="box"];2776[label="xuu700",fontsize=16,color="green",shape="box"];2777[label="xuu690",fontsize=16,color="green",shape="box"];2778[label="xuu700",fontsize=16,color="green",shape="box"];2779[label="xuu690",fontsize=16,color="green",shape="box"];2780[label="xuu700",fontsize=16,color="green",shape="box"];2781[label="xuu690",fontsize=16,color="green",shape="box"];2782[label="xuu700",fontsize=16,color="green",shape="box"];2783 -> 1453[label="",style="dashed", color="red", weight=0]; 2783[label="xuu691 <= xuu701",fontsize=16,color="magenta"];2783 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2783 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2784 -> 1454[label="",style="dashed", color="red", weight=0]; 2784[label="xuu691 <= xuu701",fontsize=16,color="magenta"];2784 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2784 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2785 -> 1455[label="",style="dashed", color="red", weight=0]; 2785[label="xuu691 <= xuu701",fontsize=16,color="magenta"];2785 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2785 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2786 -> 1456[label="",style="dashed", color="red", weight=0]; 2786[label="xuu691 <= xuu701",fontsize=16,color="magenta"];2786 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2786 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2787 -> 1457[label="",style="dashed", color="red", weight=0]; 2787[label="xuu691 <= xuu701",fontsize=16,color="magenta"];2787 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2787 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2788 -> 1458[label="",style="dashed", color="red", weight=0]; 2788[label="xuu691 <= xuu701",fontsize=16,color="magenta"];2788 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2788 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2789 -> 1459[label="",style="dashed", color="red", weight=0]; 2789[label="xuu691 <= xuu701",fontsize=16,color="magenta"];2789 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2789 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2790 -> 1460[label="",style="dashed", color="red", weight=0]; 2790[label="xuu691 <= xuu701",fontsize=16,color="magenta"];2790 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2790 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2791 -> 1461[label="",style="dashed", color="red", weight=0]; 2791[label="xuu691 <= xuu701",fontsize=16,color="magenta"];2791 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2791 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2792 -> 1462[label="",style="dashed", color="red", weight=0]; 2792[label="xuu691 <= xuu701",fontsize=16,color="magenta"];2792 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2792 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2793 -> 1463[label="",style="dashed", color="red", weight=0]; 2793[label="xuu691 <= xuu701",fontsize=16,color="magenta"];2793 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2793 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2794 -> 1464[label="",style="dashed", color="red", weight=0]; 2794[label="xuu691 <= xuu701",fontsize=16,color="magenta"];2794 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2794 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2795 -> 1465[label="",style="dashed", color="red", weight=0]; 2795[label="xuu691 <= xuu701",fontsize=16,color="magenta"];2795 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2795 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2796 -> 1466[label="",style="dashed", color="red", weight=0]; 2796[label="xuu691 <= xuu701",fontsize=16,color="magenta"];2796 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2796 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2797 -> 592[label="",style="dashed", color="red", weight=0]; 2797[label="xuu690 == xuu700",fontsize=16,color="magenta"];2797 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2797 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2798 -> 595[label="",style="dashed", color="red", weight=0]; 2798[label="xuu690 == xuu700",fontsize=16,color="magenta"];2798 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2798 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2799 -> 588[label="",style="dashed", color="red", weight=0]; 2799[label="xuu690 == xuu700",fontsize=16,color="magenta"];2799 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2799 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2800 -> 597[label="",style="dashed", color="red", weight=0]; 2800[label="xuu690 == xuu700",fontsize=16,color="magenta"];2800 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2800 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2801 -> 601[label="",style="dashed", color="red", weight=0]; 2801[label="xuu690 == xuu700",fontsize=16,color="magenta"];2801 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2801 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2802 -> 596[label="",style="dashed", color="red", weight=0]; 2802[label="xuu690 == xuu700",fontsize=16,color="magenta"];2802 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2802 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2803 -> 593[label="",style="dashed", color="red", weight=0]; 2803[label="xuu690 == xuu700",fontsize=16,color="magenta"];2803 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2803 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2804 -> 589[label="",style="dashed", color="red", weight=0]; 2804[label="xuu690 == xuu700",fontsize=16,color="magenta"];2804 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2804 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2805 -> 599[label="",style="dashed", color="red", weight=0]; 2805[label="xuu690 == xuu700",fontsize=16,color="magenta"];2805 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2805 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2806 -> 590[label="",style="dashed", color="red", weight=0]; 2806[label="xuu690 == xuu700",fontsize=16,color="magenta"];2806 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2806 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2807 -> 591[label="",style="dashed", color="red", weight=0]; 2807[label="xuu690 == xuu700",fontsize=16,color="magenta"];2807 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2807 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2808 -> 598[label="",style="dashed", color="red", weight=0]; 2808[label="xuu690 == xuu700",fontsize=16,color="magenta"];2808 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2808 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2809 -> 594[label="",style="dashed", color="red", weight=0]; 2809[label="xuu690 == xuu700",fontsize=16,color="magenta"];2809 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2809 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2810 -> 600[label="",style="dashed", color="red", weight=0]; 2810[label="xuu690 == xuu700",fontsize=16,color="magenta"];2810 -> 2922[label="",style="dashed", color="magenta", weight=3]; 2810 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2811[label="True",fontsize=16,color="green",shape="box"];2812[label="False",fontsize=16,color="green",shape="box"];2813[label="xuu690",fontsize=16,color="green",shape="box"];2814[label="xuu700",fontsize=16,color="green",shape="box"];2815[label="xuu690",fontsize=16,color="green",shape="box"];2816[label="xuu700",fontsize=16,color="green",shape="box"];2817[label="xuu690",fontsize=16,color="green",shape="box"];2818[label="xuu700",fontsize=16,color="green",shape="box"];2819[label="xuu690",fontsize=16,color="green",shape="box"];2820[label="xuu700",fontsize=16,color="green",shape="box"];2821[label="xuu690",fontsize=16,color="green",shape="box"];2822[label="xuu700",fontsize=16,color="green",shape="box"];2823[label="xuu690",fontsize=16,color="green",shape="box"];2824[label="xuu700",fontsize=16,color="green",shape="box"];2825[label="xuu690",fontsize=16,color="green",shape="box"];2826[label="xuu700",fontsize=16,color="green",shape="box"];2827[label="xuu690",fontsize=16,color="green",shape="box"];2828[label="xuu700",fontsize=16,color="green",shape="box"];2829[label="xuu690",fontsize=16,color="green",shape="box"];2830[label="xuu700",fontsize=16,color="green",shape="box"];2831[label="xuu690",fontsize=16,color="green",shape="box"];2832[label="xuu700",fontsize=16,color="green",shape="box"];2833[label="xuu690",fontsize=16,color="green",shape="box"];2834[label="xuu700",fontsize=16,color="green",shape="box"];2835[label="xuu690",fontsize=16,color="green",shape="box"];2836[label="xuu700",fontsize=16,color="green",shape="box"];2837[label="xuu690",fontsize=16,color="green",shape="box"];2838[label="xuu700",fontsize=16,color="green",shape="box"];2839[label="xuu690",fontsize=16,color="green",shape="box"];2840[label="xuu700",fontsize=16,color="green",shape="box"];2841[label="xuu691 < xuu701",fontsize=16,color="blue",shape="box"];4038[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2841 -> 4038[label="",style="solid", color="blue", weight=9]; 4038 -> 2924[label="",style="solid", color="blue", weight=3]; 4039[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2841 -> 4039[label="",style="solid", color="blue", weight=9]; 4039 -> 2925[label="",style="solid", color="blue", weight=3]; 4040[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2841 -> 4040[label="",style="solid", color="blue", weight=9]; 4040 -> 2926[label="",style="solid", color="blue", weight=3]; 4041[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2841 -> 4041[label="",style="solid", color="blue", weight=9]; 4041 -> 2927[label="",style="solid", color="blue", weight=3]; 4042[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2841 -> 4042[label="",style="solid", color="blue", weight=9]; 4042 -> 2928[label="",style="solid", color="blue", weight=3]; 4043[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2841 -> 4043[label="",style="solid", color="blue", weight=9]; 4043 -> 2929[label="",style="solid", color="blue", weight=3]; 4044[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2841 -> 4044[label="",style="solid", color="blue", weight=9]; 4044 -> 2930[label="",style="solid", color="blue", weight=3]; 4045[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2841 -> 4045[label="",style="solid", color="blue", weight=9]; 4045 -> 2931[label="",style="solid", color="blue", weight=3]; 4046[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2841 -> 4046[label="",style="solid", color="blue", weight=9]; 4046 -> 2932[label="",style="solid", color="blue", weight=3]; 4047[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2841 -> 4047[label="",style="solid", color="blue", weight=9]; 4047 -> 2933[label="",style="solid", color="blue", weight=3]; 4048[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2841 -> 4048[label="",style="solid", color="blue", weight=9]; 4048 -> 2934[label="",style="solid", color="blue", weight=3]; 4049[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2841 -> 4049[label="",style="solid", color="blue", weight=9]; 4049 -> 2935[label="",style="solid", color="blue", weight=3]; 4050[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2841 -> 4050[label="",style="solid", color="blue", weight=9]; 4050 -> 2936[label="",style="solid", color="blue", weight=3]; 4051[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2841 -> 4051[label="",style="solid", color="blue", weight=9]; 4051 -> 2937[label="",style="solid", color="blue", weight=3]; 2842 -> 1079[label="",style="dashed", color="red", weight=0]; 2842[label="xuu691 == xuu701 && xuu692 <= xuu702",fontsize=16,color="magenta"];2842 -> 2938[label="",style="dashed", color="magenta", weight=3]; 2842 -> 2939[label="",style="dashed", color="magenta", weight=3]; 2843 -> 592[label="",style="dashed", color="red", weight=0]; 2843[label="xuu690 == xuu700",fontsize=16,color="magenta"];2843 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2843 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2844 -> 595[label="",style="dashed", color="red", weight=0]; 2844[label="xuu690 == xuu700",fontsize=16,color="magenta"];2844 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2844 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2845 -> 588[label="",style="dashed", color="red", weight=0]; 2845[label="xuu690 == xuu700",fontsize=16,color="magenta"];2845 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2845 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2846 -> 597[label="",style="dashed", color="red", weight=0]; 2846[label="xuu690 == xuu700",fontsize=16,color="magenta"];2846 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2846 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2847 -> 601[label="",style="dashed", color="red", weight=0]; 2847[label="xuu690 == xuu700",fontsize=16,color="magenta"];2847 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2847 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2848 -> 596[label="",style="dashed", color="red", weight=0]; 2848[label="xuu690 == xuu700",fontsize=16,color="magenta"];2848 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2848 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2849 -> 593[label="",style="dashed", color="red", weight=0]; 2849[label="xuu690 == xuu700",fontsize=16,color="magenta"];2849 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2849 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2850 -> 589[label="",style="dashed", color="red", weight=0]; 2850[label="xuu690 == xuu700",fontsize=16,color="magenta"];2850 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2850 -> 2955[label="",style="dashed", color="magenta", weight=3]; 2851 -> 599[label="",style="dashed", color="red", weight=0]; 2851[label="xuu690 == xuu700",fontsize=16,color="magenta"];2851 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2851 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2852 -> 590[label="",style="dashed", color="red", weight=0]; 2852[label="xuu690 == xuu700",fontsize=16,color="magenta"];2852 -> 2958[label="",style="dashed", color="magenta", weight=3]; 2852 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2853 -> 591[label="",style="dashed", color="red", weight=0]; 2853[label="xuu690 == xuu700",fontsize=16,color="magenta"];2853 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2853 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2854 -> 598[label="",style="dashed", color="red", weight=0]; 2854[label="xuu690 == xuu700",fontsize=16,color="magenta"];2854 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2854 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2855 -> 594[label="",style="dashed", color="red", weight=0]; 2855[label="xuu690 == xuu700",fontsize=16,color="magenta"];2855 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2855 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2856 -> 600[label="",style="dashed", color="red", weight=0]; 2856[label="xuu690 == xuu700",fontsize=16,color="magenta"];2856 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2856 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2857[label="xuu424",fontsize=16,color="green",shape="box"];2858 -> 957[label="",style="dashed", color="red", weight=0]; 2858[label="FiniteMap.sizeFM xuu423",fontsize=16,color="magenta"];2858 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2859[label="Pos (Succ (Succ Zero))",fontsize=16,color="green",shape="box"];2860[label="FiniteMap.mkBalBranch6MkBalBranch10 xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21 xuu420 xuu421 xuu422 xuu423 xuu424 otherwise",fontsize=16,color="black",shape="box"];2860 -> 2969[label="",style="solid", color="black", weight=3]; 2861[label="FiniteMap.mkBalBranch6Single_R xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21",fontsize=16,color="black",shape="box"];2861 -> 2970[label="",style="solid", color="black", weight=3]; 2862[label="FiniteMap.mkBalBranch6Double_L (FiniteMap.Branch xuu210 xuu211 xuu212 FiniteMap.EmptyFM xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 FiniteMap.EmptyFM xuu214)",fontsize=16,color="black",shape="box"];2862 -> 2971[label="",style="solid", color="black", weight=3]; 2863[label="FiniteMap.mkBalBranch6Double_L (FiniteMap.Branch xuu210 xuu211 xuu212 (FiniteMap.Branch xuu2130 xuu2131 xuu2132 xuu2133 xuu2134) xuu214) xuu17 xuu18 xuu42 xuu42 (FiniteMap.Branch xuu210 xuu211 xuu212 (FiniteMap.Branch xuu2130 xuu2131 xuu2132 xuu2133 xuu2134) xuu214)",fontsize=16,color="black",shape="box"];2863 -> 2972[label="",style="solid", color="black", weight=3]; 2864[label="xuu210",fontsize=16,color="green",shape="box"];2865[label="xuu211",fontsize=16,color="green",shape="box"];2866[label="xuu214",fontsize=16,color="green",shape="box"];2867[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ Zero))))) xuu17 xuu18 xuu42 xuu213",fontsize=16,color="black",shape="box"];2867 -> 2973[label="",style="solid", color="black", weight=3]; 2868[label="xuu691",fontsize=16,color="green",shape="box"];2869[label="xuu701",fontsize=16,color="green",shape="box"];2870[label="xuu691",fontsize=16,color="green",shape="box"];2871[label="xuu701",fontsize=16,color="green",shape="box"];2872[label="xuu691",fontsize=16,color="green",shape="box"];2873[label="xuu701",fontsize=16,color="green",shape="box"];2874[label="xuu691",fontsize=16,color="green",shape="box"];2875[label="xuu701",fontsize=16,color="green",shape="box"];2876[label="xuu691",fontsize=16,color="green",shape="box"];2877[label="xuu701",fontsize=16,color="green",shape="box"];2878[label="xuu691",fontsize=16,color="green",shape="box"];2879[label="xuu701",fontsize=16,color="green",shape="box"];2880[label="xuu691",fontsize=16,color="green",shape="box"];2881[label="xuu701",fontsize=16,color="green",shape="box"];2882[label="xuu691",fontsize=16,color="green",shape="box"];2883[label="xuu701",fontsize=16,color="green",shape="box"];2884[label="xuu691",fontsize=16,color="green",shape="box"];2885[label="xuu701",fontsize=16,color="green",shape="box"];2886[label="xuu691",fontsize=16,color="green",shape="box"];2887[label="xuu701",fontsize=16,color="green",shape="box"];2888[label="xuu691",fontsize=16,color="green",shape="box"];2889[label="xuu701",fontsize=16,color="green",shape="box"];2890[label="xuu691",fontsize=16,color="green",shape="box"];2891[label="xuu701",fontsize=16,color="green",shape="box"];2892[label="xuu691",fontsize=16,color="green",shape="box"];2893[label="xuu701",fontsize=16,color="green",shape="box"];2894[label="xuu691",fontsize=16,color="green",shape="box"];2895[label="xuu701",fontsize=16,color="green",shape="box"];2896[label="xuu700",fontsize=16,color="green",shape="box"];2897[label="xuu690",fontsize=16,color="green",shape="box"];2898[label="xuu700",fontsize=16,color="green",shape="box"];2899[label="xuu690",fontsize=16,color="green",shape="box"];2900[label="xuu700",fontsize=16,color="green",shape="box"];2901[label="xuu690",fontsize=16,color="green",shape="box"];2902[label="xuu700",fontsize=16,color="green",shape="box"];2903[label="xuu690",fontsize=16,color="green",shape="box"];2904[label="xuu700",fontsize=16,color="green",shape="box"];2905[label="xuu690",fontsize=16,color="green",shape="box"];2906[label="xuu700",fontsize=16,color="green",shape="box"];2907[label="xuu690",fontsize=16,color="green",shape="box"];2908[label="xuu700",fontsize=16,color="green",shape="box"];2909[label="xuu690",fontsize=16,color="green",shape="box"];2910[label="xuu700",fontsize=16,color="green",shape="box"];2911[label="xuu690",fontsize=16,color="green",shape="box"];2912[label="xuu700",fontsize=16,color="green",shape="box"];2913[label="xuu690",fontsize=16,color="green",shape="box"];2914[label="xuu700",fontsize=16,color="green",shape="box"];2915[label="xuu690",fontsize=16,color="green",shape="box"];2916[label="xuu700",fontsize=16,color="green",shape="box"];2917[label="xuu690",fontsize=16,color="green",shape="box"];2918[label="xuu700",fontsize=16,color="green",shape="box"];2919[label="xuu690",fontsize=16,color="green",shape="box"];2920[label="xuu700",fontsize=16,color="green",shape="box"];2921[label="xuu690",fontsize=16,color="green",shape="box"];2922[label="xuu700",fontsize=16,color="green",shape="box"];2923[label="xuu690",fontsize=16,color="green",shape="box"];2924 -> 54[label="",style="dashed", color="red", weight=0]; 2924[label="xuu691 < xuu701",fontsize=16,color="magenta"];2924 -> 2974[label="",style="dashed", color="magenta", weight=3]; 2924 -> 2975[label="",style="dashed", color="magenta", weight=3]; 2925 -> 55[label="",style="dashed", color="red", weight=0]; 2925[label="xuu691 < xuu701",fontsize=16,color="magenta"];2925 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2925 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2926 -> 56[label="",style="dashed", color="red", weight=0]; 2926[label="xuu691 < xuu701",fontsize=16,color="magenta"];2926 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2926 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2927 -> 57[label="",style="dashed", color="red", weight=0]; 2927[label="xuu691 < xuu701",fontsize=16,color="magenta"];2927 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2927 -> 2981[label="",style="dashed", color="magenta", weight=3]; 2928 -> 58[label="",style="dashed", color="red", weight=0]; 2928[label="xuu691 < xuu701",fontsize=16,color="magenta"];2928 -> 2982[label="",style="dashed", color="magenta", weight=3]; 2928 -> 2983[label="",style="dashed", color="magenta", weight=3]; 2929 -> 59[label="",style="dashed", color="red", weight=0]; 2929[label="xuu691 < xuu701",fontsize=16,color="magenta"];2929 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2929 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2930 -> 60[label="",style="dashed", color="red", weight=0]; 2930[label="xuu691 < xuu701",fontsize=16,color="magenta"];2930 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2930 -> 2987[label="",style="dashed", color="magenta", weight=3]; 2931 -> 61[label="",style="dashed", color="red", weight=0]; 2931[label="xuu691 < xuu701",fontsize=16,color="magenta"];2931 -> 2988[label="",style="dashed", color="magenta", weight=3]; 2931 -> 2989[label="",style="dashed", color="magenta", weight=3]; 2932 -> 62[label="",style="dashed", color="red", weight=0]; 2932[label="xuu691 < xuu701",fontsize=16,color="magenta"];2932 -> 2990[label="",style="dashed", color="magenta", weight=3]; 2932 -> 2991[label="",style="dashed", color="magenta", weight=3]; 2933 -> 63[label="",style="dashed", color="red", weight=0]; 2933[label="xuu691 < xuu701",fontsize=16,color="magenta"];2933 -> 2992[label="",style="dashed", color="magenta", weight=3]; 2933 -> 2993[label="",style="dashed", color="magenta", weight=3]; 2934 -> 64[label="",style="dashed", color="red", weight=0]; 2934[label="xuu691 < xuu701",fontsize=16,color="magenta"];2934 -> 2994[label="",style="dashed", color="magenta", weight=3]; 2934 -> 2995[label="",style="dashed", color="magenta", weight=3]; 2935 -> 65[label="",style="dashed", color="red", weight=0]; 2935[label="xuu691 < xuu701",fontsize=16,color="magenta"];2935 -> 2996[label="",style="dashed", color="magenta", weight=3]; 2935 -> 2997[label="",style="dashed", color="magenta", weight=3]; 2936 -> 66[label="",style="dashed", color="red", weight=0]; 2936[label="xuu691 < xuu701",fontsize=16,color="magenta"];2936 -> 2998[label="",style="dashed", color="magenta", weight=3]; 2936 -> 2999[label="",style="dashed", color="magenta", weight=3]; 2937 -> 67[label="",style="dashed", color="red", weight=0]; 2937[label="xuu691 < xuu701",fontsize=16,color="magenta"];2937 -> 3000[label="",style="dashed", color="magenta", weight=3]; 2937 -> 3001[label="",style="dashed", color="magenta", weight=3]; 2938[label="xuu692 <= xuu702",fontsize=16,color="blue",shape="box"];4052[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2938 -> 4052[label="",style="solid", color="blue", weight=9]; 4052 -> 3002[label="",style="solid", color="blue", weight=3]; 4053[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2938 -> 4053[label="",style="solid", color="blue", weight=9]; 4053 -> 3003[label="",style="solid", color="blue", weight=3]; 4054[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2938 -> 4054[label="",style="solid", color="blue", weight=9]; 4054 -> 3004[label="",style="solid", color="blue", weight=3]; 4055[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2938 -> 4055[label="",style="solid", color="blue", weight=9]; 4055 -> 3005[label="",style="solid", color="blue", weight=3]; 4056[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2938 -> 4056[label="",style="solid", color="blue", weight=9]; 4056 -> 3006[label="",style="solid", color="blue", weight=3]; 4057[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2938 -> 4057[label="",style="solid", color="blue", weight=9]; 4057 -> 3007[label="",style="solid", color="blue", weight=3]; 4058[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2938 -> 4058[label="",style="solid", color="blue", weight=9]; 4058 -> 3008[label="",style="solid", color="blue", weight=3]; 4059[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2938 -> 4059[label="",style="solid", color="blue", weight=9]; 4059 -> 3009[label="",style="solid", color="blue", weight=3]; 4060[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2938 -> 4060[label="",style="solid", color="blue", weight=9]; 4060 -> 3010[label="",style="solid", color="blue", weight=3]; 4061[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2938 -> 4061[label="",style="solid", color="blue", weight=9]; 4061 -> 3011[label="",style="solid", color="blue", weight=3]; 4062[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2938 -> 4062[label="",style="solid", color="blue", weight=9]; 4062 -> 3012[label="",style="solid", color="blue", weight=3]; 4063[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2938 -> 4063[label="",style="solid", color="blue", weight=9]; 4063 -> 3013[label="",style="solid", color="blue", weight=3]; 4064[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2938 -> 4064[label="",style="solid", color="blue", weight=9]; 4064 -> 3014[label="",style="solid", color="blue", weight=3]; 4065[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2938 -> 4065[label="",style="solid", color="blue", weight=9]; 4065 -> 3015[label="",style="solid", color="blue", weight=3]; 2939[label="xuu691 == xuu701",fontsize=16,color="blue",shape="box"];4066[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2939 -> 4066[label="",style="solid", color="blue", weight=9]; 4066 -> 3016[label="",style="solid", color="blue", weight=3]; 4067[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2939 -> 4067[label="",style="solid", color="blue", weight=9]; 4067 -> 3017[label="",style="solid", color="blue", weight=3]; 4068[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2939 -> 4068[label="",style="solid", color="blue", weight=9]; 4068 -> 3018[label="",style="solid", color="blue", weight=3]; 4069[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2939 -> 4069[label="",style="solid", color="blue", weight=9]; 4069 -> 3019[label="",style="solid", color="blue", weight=3]; 4070[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2939 -> 4070[label="",style="solid", color="blue", weight=9]; 4070 -> 3020[label="",style="solid", color="blue", weight=3]; 4071[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2939 -> 4071[label="",style="solid", color="blue", weight=9]; 4071 -> 3021[label="",style="solid", color="blue", weight=3]; 4072[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2939 -> 4072[label="",style="solid", color="blue", weight=9]; 4072 -> 3022[label="",style="solid", color="blue", weight=3]; 4073[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2939 -> 4073[label="",style="solid", color="blue", weight=9]; 4073 -> 3023[label="",style="solid", color="blue", weight=3]; 4074[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2939 -> 4074[label="",style="solid", color="blue", weight=9]; 4074 -> 3024[label="",style="solid", color="blue", weight=3]; 4075[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2939 -> 4075[label="",style="solid", color="blue", weight=9]; 4075 -> 3025[label="",style="solid", color="blue", weight=3]; 4076[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2939 -> 4076[label="",style="solid", color="blue", weight=9]; 4076 -> 3026[label="",style="solid", color="blue", weight=3]; 4077[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2939 -> 4077[label="",style="solid", color="blue", weight=9]; 4077 -> 3027[label="",style="solid", color="blue", weight=3]; 4078[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2939 -> 4078[label="",style="solid", color="blue", weight=9]; 4078 -> 3028[label="",style="solid", color="blue", weight=3]; 4079[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2939 -> 4079[label="",style="solid", color="blue", weight=9]; 4079 -> 3029[label="",style="solid", color="blue", weight=3]; 2940[label="xuu700",fontsize=16,color="green",shape="box"];2941[label="xuu690",fontsize=16,color="green",shape="box"];2942[label="xuu700",fontsize=16,color="green",shape="box"];2943[label="xuu690",fontsize=16,color="green",shape="box"];2944[label="xuu700",fontsize=16,color="green",shape="box"];2945[label="xuu690",fontsize=16,color="green",shape="box"];2946[label="xuu700",fontsize=16,color="green",shape="box"];2947[label="xuu690",fontsize=16,color="green",shape="box"];2948[label="xuu700",fontsize=16,color="green",shape="box"];2949[label="xuu690",fontsize=16,color="green",shape="box"];2950[label="xuu700",fontsize=16,color="green",shape="box"];2951[label="xuu690",fontsize=16,color="green",shape="box"];2952[label="xuu700",fontsize=16,color="green",shape="box"];2953[label="xuu690",fontsize=16,color="green",shape="box"];2954[label="xuu700",fontsize=16,color="green",shape="box"];2955[label="xuu690",fontsize=16,color="green",shape="box"];2956[label="xuu700",fontsize=16,color="green",shape="box"];2957[label="xuu690",fontsize=16,color="green",shape="box"];2958[label="xuu700",fontsize=16,color="green",shape="box"];2959[label="xuu690",fontsize=16,color="green",shape="box"];2960[label="xuu700",fontsize=16,color="green",shape="box"];2961[label="xuu690",fontsize=16,color="green",shape="box"];2962[label="xuu700",fontsize=16,color="green",shape="box"];2963[label="xuu690",fontsize=16,color="green",shape="box"];2964[label="xuu700",fontsize=16,color="green",shape="box"];2965[label="xuu690",fontsize=16,color="green",shape="box"];2966[label="xuu700",fontsize=16,color="green",shape="box"];2967[label="xuu690",fontsize=16,color="green",shape="box"];2968[label="xuu423",fontsize=16,color="green",shape="box"];2969[label="FiniteMap.mkBalBranch6MkBalBranch10 xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21 xuu420 xuu421 xuu422 xuu423 xuu424 True",fontsize=16,color="black",shape="box"];2969 -> 3030[label="",style="solid", color="black", weight=3]; 2970 -> 3111[label="",style="dashed", color="red", weight=0]; 2970[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))) xuu420 xuu421 xuu423 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))) xuu17 xuu18 xuu424 xuu21)",fontsize=16,color="magenta"];2970 -> 3112[label="",style="dashed", color="magenta", weight=3]; 2970 -> 3113[label="",style="dashed", color="magenta", weight=3]; 2970 -> 3114[label="",style="dashed", color="magenta", weight=3]; 2970 -> 3115[label="",style="dashed", color="magenta", weight=3]; 2970 -> 3116[label="",style="dashed", color="magenta", weight=3]; 2970 -> 3117[label="",style="dashed", color="magenta", weight=3]; 2970 -> 3118[label="",style="dashed", color="magenta", weight=3]; 2970 -> 3119[label="",style="dashed", color="magenta", weight=3]; 2970 -> 3120[label="",style="dashed", color="magenta", weight=3]; 2971[label="error []",fontsize=16,color="red",shape="box"];2972 -> 3111[label="",style="dashed", color="red", weight=0]; 2972[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ Zero)))))) xuu2130 xuu2131 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xuu17 xuu18 xuu42 xuu2133) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))) xuu210 xuu211 xuu2134 xuu214)",fontsize=16,color="magenta"];2972 -> 3121[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3122[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3123[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3124[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3125[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3126[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3127[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3128[label="",style="dashed", color="magenta", weight=3]; 2972 -> 3129[label="",style="dashed", color="magenta", weight=3]; 2973 -> 585[label="",style="dashed", color="red", weight=0]; 2973[label="FiniteMap.mkBranchResult xuu17 xuu18 xuu213 xuu42",fontsize=16,color="magenta"];2973 -> 3052[label="",style="dashed", color="magenta", weight=3]; 2974[label="xuu691",fontsize=16,color="green",shape="box"];2975[label="xuu701",fontsize=16,color="green",shape="box"];2976[label="xuu691",fontsize=16,color="green",shape="box"];2977[label="xuu701",fontsize=16,color="green",shape="box"];2978[label="xuu691",fontsize=16,color="green",shape="box"];2979[label="xuu701",fontsize=16,color="green",shape="box"];2980[label="xuu691",fontsize=16,color="green",shape="box"];2981[label="xuu701",fontsize=16,color="green",shape="box"];2982[label="xuu691",fontsize=16,color="green",shape="box"];2983[label="xuu701",fontsize=16,color="green",shape="box"];2984[label="xuu691",fontsize=16,color="green",shape="box"];2985[label="xuu701",fontsize=16,color="green",shape="box"];2986[label="xuu691",fontsize=16,color="green",shape="box"];2987[label="xuu701",fontsize=16,color="green",shape="box"];2988[label="xuu691",fontsize=16,color="green",shape="box"];2989[label="xuu701",fontsize=16,color="green",shape="box"];2990[label="xuu691",fontsize=16,color="green",shape="box"];2991[label="xuu701",fontsize=16,color="green",shape="box"];2992[label="xuu691",fontsize=16,color="green",shape="box"];2993[label="xuu701",fontsize=16,color="green",shape="box"];2994[label="xuu691",fontsize=16,color="green",shape="box"];2995[label="xuu701",fontsize=16,color="green",shape="box"];2996[label="xuu691",fontsize=16,color="green",shape="box"];2997[label="xuu701",fontsize=16,color="green",shape="box"];2998[label="xuu691",fontsize=16,color="green",shape="box"];2999[label="xuu701",fontsize=16,color="green",shape="box"];3000[label="xuu691",fontsize=16,color="green",shape="box"];3001[label="xuu701",fontsize=16,color="green",shape="box"];3002 -> 1453[label="",style="dashed", color="red", weight=0]; 3002[label="xuu692 <= xuu702",fontsize=16,color="magenta"];3002 -> 3053[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3054[label="",style="dashed", color="magenta", weight=3]; 3003 -> 1454[label="",style="dashed", color="red", weight=0]; 3003[label="xuu692 <= xuu702",fontsize=16,color="magenta"];3003 -> 3055[label="",style="dashed", color="magenta", weight=3]; 3003 -> 3056[label="",style="dashed", color="magenta", weight=3]; 3004 -> 1455[label="",style="dashed", color="red", weight=0]; 3004[label="xuu692 <= xuu702",fontsize=16,color="magenta"];3004 -> 3057[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3058[label="",style="dashed", color="magenta", weight=3]; 3005 -> 1456[label="",style="dashed", color="red", weight=0]; 3005[label="xuu692 <= xuu702",fontsize=16,color="magenta"];3005 -> 3059[label="",style="dashed", color="magenta", weight=3]; 3005 -> 3060[label="",style="dashed", color="magenta", weight=3]; 3006 -> 1457[label="",style="dashed", color="red", weight=0]; 3006[label="xuu692 <= xuu702",fontsize=16,color="magenta"];3006 -> 3061[label="",style="dashed", color="magenta", weight=3]; 3006 -> 3062[label="",style="dashed", color="magenta", weight=3]; 3007 -> 1458[label="",style="dashed", color="red", weight=0]; 3007[label="xuu692 <= xuu702",fontsize=16,color="magenta"];3007 -> 3063[label="",style="dashed", color="magenta", weight=3]; 3007 -> 3064[label="",style="dashed", color="magenta", weight=3]; 3008 -> 1459[label="",style="dashed", color="red", weight=0]; 3008[label="xuu692 <= xuu702",fontsize=16,color="magenta"];3008 -> 3065[label="",style="dashed", color="magenta", weight=3]; 3008 -> 3066[label="",style="dashed", color="magenta", weight=3]; 3009 -> 1460[label="",style="dashed", color="red", weight=0]; 3009[label="xuu692 <= xuu702",fontsize=16,color="magenta"];3009 -> 3067[label="",style="dashed", color="magenta", weight=3]; 3009 -> 3068[label="",style="dashed", color="magenta", weight=3]; 3010 -> 1461[label="",style="dashed", color="red", weight=0]; 3010[label="xuu692 <= xuu702",fontsize=16,color="magenta"];3010 -> 3069[label="",style="dashed", color="magenta", weight=3]; 3010 -> 3070[label="",style="dashed", color="magenta", weight=3]; 3011 -> 1462[label="",style="dashed", color="red", weight=0]; 3011[label="xuu692 <= xuu702",fontsize=16,color="magenta"];3011 -> 3071[label="",style="dashed", color="magenta", weight=3]; 3011 -> 3072[label="",style="dashed", color="magenta", weight=3]; 3012 -> 1463[label="",style="dashed", color="red", weight=0]; 3012[label="xuu692 <= xuu702",fontsize=16,color="magenta"];3012 -> 3073[label="",style="dashed", color="magenta", weight=3]; 3012 -> 3074[label="",style="dashed", color="magenta", weight=3]; 3013 -> 1464[label="",style="dashed", color="red", weight=0]; 3013[label="xuu692 <= xuu702",fontsize=16,color="magenta"];3013 -> 3075[label="",style="dashed", color="magenta", weight=3]; 3013 -> 3076[label="",style="dashed", color="magenta", weight=3]; 3014 -> 1465[label="",style="dashed", color="red", weight=0]; 3014[label="xuu692 <= xuu702",fontsize=16,color="magenta"];3014 -> 3077[label="",style="dashed", color="magenta", weight=3]; 3014 -> 3078[label="",style="dashed", color="magenta", weight=3]; 3015 -> 1466[label="",style="dashed", color="red", weight=0]; 3015[label="xuu692 <= xuu702",fontsize=16,color="magenta"];3015 -> 3079[label="",style="dashed", color="magenta", weight=3]; 3015 -> 3080[label="",style="dashed", color="magenta", weight=3]; 3016 -> 592[label="",style="dashed", color="red", weight=0]; 3016[label="xuu691 == xuu701",fontsize=16,color="magenta"];3016 -> 3081[label="",style="dashed", color="magenta", weight=3]; 3016 -> 3082[label="",style="dashed", color="magenta", weight=3]; 3017 -> 595[label="",style="dashed", color="red", weight=0]; 3017[label="xuu691 == xuu701",fontsize=16,color="magenta"];3017 -> 3083[label="",style="dashed", color="magenta", weight=3]; 3017 -> 3084[label="",style="dashed", color="magenta", weight=3]; 3018 -> 588[label="",style="dashed", color="red", weight=0]; 3018[label="xuu691 == xuu701",fontsize=16,color="magenta"];3018 -> 3085[label="",style="dashed", color="magenta", weight=3]; 3018 -> 3086[label="",style="dashed", color="magenta", weight=3]; 3019 -> 597[label="",style="dashed", color="red", weight=0]; 3019[label="xuu691 == xuu701",fontsize=16,color="magenta"];3019 -> 3087[label="",style="dashed", color="magenta", weight=3]; 3019 -> 3088[label="",style="dashed", color="magenta", weight=3]; 3020 -> 601[label="",style="dashed", color="red", weight=0]; 3020[label="xuu691 == xuu701",fontsize=16,color="magenta"];3020 -> 3089[label="",style="dashed", color="magenta", weight=3]; 3020 -> 3090[label="",style="dashed", color="magenta", weight=3]; 3021 -> 596[label="",style="dashed", color="red", weight=0]; 3021[label="xuu691 == xuu701",fontsize=16,color="magenta"];3021 -> 3091[label="",style="dashed", color="magenta", weight=3]; 3021 -> 3092[label="",style="dashed", color="magenta", weight=3]; 3022 -> 593[label="",style="dashed", color="red", weight=0]; 3022[label="xuu691 == xuu701",fontsize=16,color="magenta"];3022 -> 3093[label="",style="dashed", color="magenta", weight=3]; 3022 -> 3094[label="",style="dashed", color="magenta", weight=3]; 3023 -> 589[label="",style="dashed", color="red", weight=0]; 3023[label="xuu691 == xuu701",fontsize=16,color="magenta"];3023 -> 3095[label="",style="dashed", color="magenta", weight=3]; 3023 -> 3096[label="",style="dashed", color="magenta", weight=3]; 3024 -> 599[label="",style="dashed", color="red", weight=0]; 3024[label="xuu691 == xuu701",fontsize=16,color="magenta"];3024 -> 3097[label="",style="dashed", color="magenta", weight=3]; 3024 -> 3098[label="",style="dashed", color="magenta", weight=3]; 3025 -> 590[label="",style="dashed", color="red", weight=0]; 3025[label="xuu691 == xuu701",fontsize=16,color="magenta"];3025 -> 3099[label="",style="dashed", color="magenta", weight=3]; 3025 -> 3100[label="",style="dashed", color="magenta", weight=3]; 3026 -> 591[label="",style="dashed", color="red", weight=0]; 3026[label="xuu691 == xuu701",fontsize=16,color="magenta"];3026 -> 3101[label="",style="dashed", color="magenta", weight=3]; 3026 -> 3102[label="",style="dashed", color="magenta", weight=3]; 3027 -> 598[label="",style="dashed", color="red", weight=0]; 3027[label="xuu691 == xuu701",fontsize=16,color="magenta"];3027 -> 3103[label="",style="dashed", color="magenta", weight=3]; 3027 -> 3104[label="",style="dashed", color="magenta", weight=3]; 3028 -> 594[label="",style="dashed", color="red", weight=0]; 3028[label="xuu691 == xuu701",fontsize=16,color="magenta"];3028 -> 3105[label="",style="dashed", color="magenta", weight=3]; 3028 -> 3106[label="",style="dashed", color="magenta", weight=3]; 3029 -> 600[label="",style="dashed", color="red", weight=0]; 3029[label="xuu691 == xuu701",fontsize=16,color="magenta"];3029 -> 3107[label="",style="dashed", color="magenta", weight=3]; 3029 -> 3108[label="",style="dashed", color="magenta", weight=3]; 3030[label="FiniteMap.mkBalBranch6Double_R xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 xuu424) xuu21",fontsize=16,color="burlywood",shape="box"];4080[label="xuu424/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];3030 -> 4080[label="",style="solid", color="burlywood", weight=9]; 4080 -> 3109[label="",style="solid", color="burlywood", weight=3]; 4081[label="xuu424/FiniteMap.Branch xuu4240 xuu4241 xuu4242 xuu4243 xuu4244",fontsize=10,color="white",style="solid",shape="box"];3030 -> 4081[label="",style="solid", color="burlywood", weight=9]; 4081 -> 3110[label="",style="solid", color="burlywood", weight=3]; 3112[label="xuu420",fontsize=16,color="green",shape="box"];3113[label="xuu421",fontsize=16,color="green",shape="box"];3114[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))",fontsize=16,color="green",shape="box"];3115[label="xuu21",fontsize=16,color="green",shape="box"];3116[label="xuu424",fontsize=16,color="green",shape="box"];3117[label="xuu423",fontsize=16,color="green",shape="box"];3118[label="xuu17",fontsize=16,color="green",shape="box"];3119[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))",fontsize=16,color="green",shape="box"];3120[label="xuu18",fontsize=16,color="green",shape="box"];3111[label="FiniteMap.mkBranch (Pos (Succ xuu227)) xuu228 xuu229 xuu230 (FiniteMap.mkBranch (Pos (Succ xuu231)) xuu232 xuu233 xuu234 xuu235)",fontsize=16,color="black",shape="triangle"];3111 -> 3148[label="",style="solid", color="black", weight=3]; 3121[label="xuu2130",fontsize=16,color="green",shape="box"];3122[label="xuu2131",fontsize=16,color="green",shape="box"];3123[label="Succ (Succ (Succ (Succ (Succ (Succ Zero)))))",fontsize=16,color="green",shape="box"];3124[label="xuu214",fontsize=16,color="green",shape="box"];3125[label="xuu2134",fontsize=16,color="green",shape="box"];3126[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))) xuu17 xuu18 xuu42 xuu2133",fontsize=16,color="black",shape="box"];3126 -> 3149[label="",style="solid", color="black", weight=3]; 3127[label="xuu210",fontsize=16,color="green",shape="box"];3128[label="Succ (Succ (Succ (Succ Zero)))",fontsize=16,color="green",shape="box"];3129[label="xuu211",fontsize=16,color="green",shape="box"];3052[label="xuu213",fontsize=16,color="green",shape="box"];3053[label="xuu692",fontsize=16,color="green",shape="box"];3054[label="xuu702",fontsize=16,color="green",shape="box"];3055[label="xuu692",fontsize=16,color="green",shape="box"];3056[label="xuu702",fontsize=16,color="green",shape="box"];3057[label="xuu692",fontsize=16,color="green",shape="box"];3058[label="xuu702",fontsize=16,color="green",shape="box"];3059[label="xuu692",fontsize=16,color="green",shape="box"];3060[label="xuu702",fontsize=16,color="green",shape="box"];3061[label="xuu692",fontsize=16,color="green",shape="box"];3062[label="xuu702",fontsize=16,color="green",shape="box"];3063[label="xuu692",fontsize=16,color="green",shape="box"];3064[label="xuu702",fontsize=16,color="green",shape="box"];3065[label="xuu692",fontsize=16,color="green",shape="box"];3066[label="xuu702",fontsize=16,color="green",shape="box"];3067[label="xuu692",fontsize=16,color="green",shape="box"];3068[label="xuu702",fontsize=16,color="green",shape="box"];3069[label="xuu692",fontsize=16,color="green",shape="box"];3070[label="xuu702",fontsize=16,color="green",shape="box"];3071[label="xuu692",fontsize=16,color="green",shape="box"];3072[label="xuu702",fontsize=16,color="green",shape="box"];3073[label="xuu692",fontsize=16,color="green",shape="box"];3074[label="xuu702",fontsize=16,color="green",shape="box"];3075[label="xuu692",fontsize=16,color="green",shape="box"];3076[label="xuu702",fontsize=16,color="green",shape="box"];3077[label="xuu692",fontsize=16,color="green",shape="box"];3078[label="xuu702",fontsize=16,color="green",shape="box"];3079[label="xuu692",fontsize=16,color="green",shape="box"];3080[label="xuu702",fontsize=16,color="green",shape="box"];3081[label="xuu701",fontsize=16,color="green",shape="box"];3082[label="xuu691",fontsize=16,color="green",shape="box"];3083[label="xuu701",fontsize=16,color="green",shape="box"];3084[label="xuu691",fontsize=16,color="green",shape="box"];3085[label="xuu701",fontsize=16,color="green",shape="box"];3086[label="xuu691",fontsize=16,color="green",shape="box"];3087[label="xuu701",fontsize=16,color="green",shape="box"];3088[label="xuu691",fontsize=16,color="green",shape="box"];3089[label="xuu701",fontsize=16,color="green",shape="box"];3090[label="xuu691",fontsize=16,color="green",shape="box"];3091[label="xuu701",fontsize=16,color="green",shape="box"];3092[label="xuu691",fontsize=16,color="green",shape="box"];3093[label="xuu701",fontsize=16,color="green",shape="box"];3094[label="xuu691",fontsize=16,color="green",shape="box"];3095[label="xuu701",fontsize=16,color="green",shape="box"];3096[label="xuu691",fontsize=16,color="green",shape="box"];3097[label="xuu701",fontsize=16,color="green",shape="box"];3098[label="xuu691",fontsize=16,color="green",shape="box"];3099[label="xuu701",fontsize=16,color="green",shape="box"];3100[label="xuu691",fontsize=16,color="green",shape="box"];3101[label="xuu701",fontsize=16,color="green",shape="box"];3102[label="xuu691",fontsize=16,color="green",shape="box"];3103[label="xuu701",fontsize=16,color="green",shape="box"];3104[label="xuu691",fontsize=16,color="green",shape="box"];3105[label="xuu701",fontsize=16,color="green",shape="box"];3106[label="xuu691",fontsize=16,color="green",shape="box"];3107[label="xuu701",fontsize=16,color="green",shape="box"];3108[label="xuu691",fontsize=16,color="green",shape="box"];3109[label="FiniteMap.mkBalBranch6Double_R xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 FiniteMap.EmptyFM) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 FiniteMap.EmptyFM) xuu21",fontsize=16,color="black",shape="box"];3109 -> 3150[label="",style="solid", color="black", weight=3]; 3110[label="FiniteMap.mkBalBranch6Double_R xuu21 xuu17 xuu18 (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 (FiniteMap.Branch xuu4240 xuu4241 xuu4242 xuu4243 xuu4244)) (FiniteMap.Branch xuu420 xuu421 xuu422 xuu423 (FiniteMap.Branch xuu4240 xuu4241 xuu4242 xuu4243 xuu4244)) xuu21",fontsize=16,color="black",shape="box"];3110 -> 3151[label="",style="solid", color="black", weight=3]; 3148 -> 585[label="",style="dashed", color="red", weight=0]; 3148[label="FiniteMap.mkBranchResult xuu228 xuu229 (FiniteMap.mkBranch (Pos (Succ xuu231)) xuu232 xuu233 xuu234 xuu235) xuu230",fontsize=16,color="magenta"];3148 -> 3152[label="",style="dashed", color="magenta", weight=3]; 3148 -> 3153[label="",style="dashed", color="magenta", weight=3]; 3148 -> 3154[label="",style="dashed", color="magenta", weight=3]; 3148 -> 3155[label="",style="dashed", color="magenta", weight=3]; 3149 -> 585[label="",style="dashed", color="red", weight=0]; 3149[label="FiniteMap.mkBranchResult xuu17 xuu18 xuu2133 xuu42",fontsize=16,color="magenta"];3149 -> 3156[label="",style="dashed", color="magenta", weight=3]; 3150[label="error []",fontsize=16,color="red",shape="box"];3151 -> 3111[label="",style="dashed", color="red", weight=0]; 3151[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))) xuu4240 xuu4241 (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu420 xuu421 xuu423 xuu4243) (FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))))) xuu17 xuu18 xuu4244 xuu21)",fontsize=16,color="magenta"];3151 -> 3157[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3158[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3159[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3160[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3161[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3162[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3163[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3164[label="",style="dashed", color="magenta", weight=3]; 3151 -> 3165[label="",style="dashed", color="magenta", weight=3]; 3152[label="xuu228",fontsize=16,color="green",shape="box"];3153[label="xuu229",fontsize=16,color="green",shape="box"];3154[label="FiniteMap.mkBranch (Pos (Succ xuu231)) xuu232 xuu233 xuu234 xuu235",fontsize=16,color="black",shape="triangle"];3154 -> 3166[label="",style="solid", color="black", weight=3]; 3155[label="xuu230",fontsize=16,color="green",shape="box"];3156[label="xuu2133",fontsize=16,color="green",shape="box"];3157[label="xuu4240",fontsize=16,color="green",shape="box"];3158[label="xuu4241",fontsize=16,color="green",shape="box"];3159[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))))",fontsize=16,color="green",shape="box"];3160[label="xuu21",fontsize=16,color="green",shape="box"];3161[label="xuu4244",fontsize=16,color="green",shape="box"];3162 -> 3154[label="",style="dashed", color="red", weight=0]; 3162[label="FiniteMap.mkBranch (Pos (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))))) xuu420 xuu421 xuu423 xuu4243",fontsize=16,color="magenta"];3162 -> 3167[label="",style="dashed", color="magenta", weight=3]; 3162 -> 3168[label="",style="dashed", color="magenta", weight=3]; 3162 -> 3169[label="",style="dashed", color="magenta", weight=3]; 3162 -> 3170[label="",style="dashed", color="magenta", weight=3]; 3162 -> 3171[label="",style="dashed", color="magenta", weight=3]; 3163[label="xuu17",fontsize=16,color="green",shape="box"];3164[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero))))))))",fontsize=16,color="green",shape="box"];3165[label="xuu18",fontsize=16,color="green",shape="box"];3166 -> 585[label="",style="dashed", color="red", weight=0]; 3166[label="FiniteMap.mkBranchResult xuu232 xuu233 xuu235 xuu234",fontsize=16,color="magenta"];3166 -> 3172[label="",style="dashed", color="magenta", weight=3]; 3166 -> 3173[label="",style="dashed", color="magenta", weight=3]; 3166 -> 3174[label="",style="dashed", color="magenta", weight=3]; 3166 -> 3175[label="",style="dashed", color="magenta", weight=3]; 3167[label="Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ (Succ Zero)))))))))",fontsize=16,color="green",shape="box"];3168[label="xuu4243",fontsize=16,color="green",shape="box"];3169[label="xuu423",fontsize=16,color="green",shape="box"];3170[label="xuu420",fontsize=16,color="green",shape="box"];3171[label="xuu421",fontsize=16,color="green",shape="box"];3172[label="xuu232",fontsize=16,color="green",shape="box"];3173[label="xuu233",fontsize=16,color="green",shape="box"];3174[label="xuu235",fontsize=16,color="green",shape="box"];3175[label="xuu234",fontsize=16,color="green",shape="box"];} ---------------------------------------- (16) Complex Obligation (AND) ---------------------------------------- (17) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(xuu3110000), Succ(xuu6000)) -> new_primCmpNat(xuu3110000, xuu6000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (18) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primCmpNat(Succ(xuu3110000), Succ(xuu6000)) -> new_primCmpNat(xuu3110000, xuu6000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (19) YES ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_addToFM_C1(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bb, bc) -> new_addToFM_C(xuu38, xuu39, xuu40, bb, bc) new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba) -> new_addToFM_C(xuu20, xuu22, xuu23, h, ba) new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba) -> new_addToFM_C1(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_gt(xuu22, xuu17, h), h, ba) new_addToFM_C(Branch(xuu60, xuu61, xuu62, xuu63, xuu64), xuu31100, xuu31101, bd, be) -> new_addToFM_C2(xuu60, xuu61, xuu62, xuu63, xuu64, xuu31100, xuu31101, new_lt24(xuu31100, xuu60, bd), bd, be) The TRS R consists of the following rules: new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs36(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs40(xuu109, xuu111, app(ty_Ratio, gaa)) -> new_esEs25(xuu109, xuu111, gaa) new_ltEs21(xuu82, xuu85, ty_Bool) -> new_ltEs8(xuu82, xuu85) new_primPlusNat0(Zero, Zero) -> Zero new_lt22(xuu690, xuu700, ty_Char) -> new_lt6(xuu690, xuu700) new_esEs33(xuu691, xuu701, ty_@0) -> new_esEs16(xuu691, xuu701) new_pePe(True, xuu199) -> True new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_compare13(Double(xuu311000, Pos(xuu3110010)), Double(xuu600, Neg(xuu6010))) -> new_compare14(new_sr0(xuu311000, Pos(xuu6010)), new_sr0(Neg(xuu3110010), xuu600)) new_compare13(Double(xuu311000, Neg(xuu3110010)), Double(xuu600, Pos(xuu6010))) -> new_compare14(new_sr0(xuu311000, Neg(xuu6010)), new_sr0(Pos(xuu3110010), xuu600)) new_esEs26(LT, GT) -> False new_esEs26(GT, LT) -> False new_esEs22(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, def), deg)) -> new_esEs19(xuu3110000, xuu6000, def, deg) new_esEs29(xuu3110001, xuu6001, ty_Integer) -> new_esEs21(xuu3110001, xuu6001) new_ltEs12(LT, LT) -> True new_esEs8(xuu311001, xuu601, ty_Ordering) -> new_esEs26(xuu311001, xuu601) new_esEs35(xuu3110001, xuu6001, app(ty_[], dhe)) -> new_esEs12(xuu3110001, xuu6001, dhe) new_esEs7(xuu311002, xuu602, app(ty_Ratio, ceg)) -> new_esEs25(xuu311002, xuu602, ceg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs26(LT, EQ) -> False new_esEs26(EQ, LT) -> False new_compare19(:%(xuu311000, xuu311001), :%(xuu600, xuu601), ty_Integer) -> new_compare12(new_sr(xuu311000, xuu601), new_sr(xuu600, xuu311001)) new_esEs11(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_lt21(xuu81, xuu84, app(ty_Maybe, eea)) -> new_lt11(xuu81, xuu84, eea) new_esEs37(xuu81, xuu84, app(ty_Maybe, eea)) -> new_esEs22(xuu81, xuu84, eea) new_compare116(xuu166, xuu167, xuu168, xuu169, False, xuu171, deb, dec) -> new_compare113(xuu166, xuu167, xuu168, xuu169, xuu171, deb, dec) new_lt21(xuu81, xuu84, app(app(app(ty_@3, eeb), eec), eed)) -> new_lt16(xuu81, xuu84, eeb, eec, eed) new_compare111(xuu149, xuu150, True, egb, egc) -> LT new_esEs36(xuu3110000, xuu6000, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_esEs24(xuu3110000, xuu6000, ebe, ebf, ebg) new_compare16(Float(xuu311000, Pos(xuu3110010)), Float(xuu600, Neg(xuu6010))) -> new_compare14(new_sr0(xuu311000, Pos(xuu6010)), new_sr0(Neg(xuu3110010), xuu600)) new_compare16(Float(xuu311000, Neg(xuu3110010)), Float(xuu600, Pos(xuu6010))) -> new_compare14(new_sr0(xuu311000, Neg(xuu6010)), new_sr0(Pos(xuu3110010), xuu600)) new_lt8(xuu691, xuu701, app(app(ty_Either, cab), cac)) -> new_lt18(xuu691, xuu701, cab, cac) new_lt6(xuu31100, xuu60) -> new_esEs27(new_compare18(xuu31100, xuu60)) new_ltEs18(Left(xuu690), Left(xuu700), ty_Integer, chd) -> new_ltEs13(xuu690, xuu700) new_lt20(xuu80, xuu83, ty_Float) -> new_lt5(xuu80, xuu83) new_esEs19(Right(xuu3110000), Right(xuu6000), dha, app(app(ty_@2, faf), fag)) -> new_esEs20(xuu3110000, xuu6000, faf, fag) new_esEs39(xuu690, xuu700, ty_Integer) -> new_esEs21(xuu690, xuu700) new_lt9(xuu31100, xuu60, ddf, ddg) -> new_esEs27(new_compare9(xuu31100, xuu60, ddf, ddg)) new_ltEs20(xuu98, xuu99, ty_@0) -> new_ltEs4(xuu98, xuu99) new_compare8(xuu311000, xuu600, app(app(ty_Either, ha), hb)) -> new_compare7(xuu311000, xuu600, ha, hb) new_esEs34(xuu690, xuu700, app(app(ty_@2, bga), bgb)) -> new_esEs20(xuu690, xuu700, bga, bgb) new_compare110(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, True, hd, he, hf) -> LT new_ltEs18(Left(xuu690), Left(xuu700), ty_Int, chd) -> new_ltEs15(xuu690, xuu700) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs13(xuu3110000, xuu6000, app(ty_Ratio, da)) -> new_esEs25(xuu3110000, xuu6000, da) new_esEs40(xuu109, xuu111, ty_Double) -> new_esEs18(xuu109, xuu111) new_esEs19(Right(xuu3110000), Right(xuu6000), dha, app(app(app(ty_@3, fba), fbb), fbc)) -> new_esEs24(xuu3110000, xuu6000, fba, fbb, fbc) new_lt24(xuu31100, xuu60, app(app(ty_@2, ddf), ddg)) -> new_lt9(xuu31100, xuu60, ddf, ddg) new_ltEs19(xuu692, xuu702, ty_Char) -> new_ltEs5(xuu692, xuu702) new_ltEs24(xuu110, xuu112, app(ty_[], ffh)) -> new_ltEs10(xuu110, xuu112, ffh) new_lt21(xuu81, xuu84, ty_Int) -> new_lt15(xuu81, xuu84) new_not(True) -> False new_ltEs12(LT, GT) -> True new_lt22(xuu690, xuu700, ty_Ordering) -> new_lt12(xuu690, xuu700) new_primCompAux00(xuu63, LT) -> LT new_esEs39(xuu690, xuu700, ty_Ordering) -> new_esEs26(xuu690, xuu700) new_lt22(xuu690, xuu700, app(ty_[], fdb)) -> new_lt10(xuu690, xuu700, fdb) new_esEs22(Nothing, Just(xuu6000), ded) -> False new_esEs22(Just(xuu3110000), Nothing, ded) -> False new_esEs22(Nothing, Nothing, ded) -> True new_esEs38(xuu80, xuu83, ty_@0) -> new_esEs16(xuu80, xuu83) new_ltEs18(Left(xuu690), Left(xuu700), app(app(ty_@2, che), chf), chd) -> new_ltEs9(xuu690, xuu700, che, chf) new_esEs33(xuu691, xuu701, ty_Bool) -> new_esEs17(xuu691, xuu701) new_esEs4(xuu311001, xuu601, app(ty_[], dfg)) -> new_esEs12(xuu311001, xuu601, dfg) new_ltEs19(xuu692, xuu702, ty_Bool) -> new_ltEs8(xuu692, xuu702) new_ltEs22(xuu69, xuu70, ty_Double) -> new_ltEs14(xuu69, xuu70) new_lt23(xuu109, xuu111, ty_@0) -> new_lt17(xuu109, xuu111) new_esEs31(xuu3110001, xuu6001, ty_Integer) -> new_esEs21(xuu3110001, xuu6001) new_ltEs22(xuu69, xuu70, ty_Float) -> new_ltEs17(xuu69, xuu70) new_compare11(EQ, LT) -> GT new_lt8(xuu691, xuu701, ty_Int) -> new_lt15(xuu691, xuu701) new_esEs5(xuu311000, xuu600, app(app(app(ty_@3, hg), hh), baa)) -> new_esEs24(xuu311000, xuu600, hg, hh, baa) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs11(xuu311000, xuu600, ty_Char) -> new_esEs23(xuu311000, xuu600) new_compare115(xuu140, xuu141, False, fcg) -> GT new_esEs36(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs23(xuu691, xuu701, ty_Int) -> new_ltEs15(xuu691, xuu701) new_ltEs18(Right(xuu690), Right(xuu700), dag, ty_@0) -> new_ltEs4(xuu690, xuu700) new_esEs19(Right(xuu3110000), Right(xuu6000), dha, ty_Char) -> new_esEs23(xuu3110000, xuu6000) new_esEs19(Right(xuu3110000), Right(xuu6000), dha, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs30(xuu3110000, xuu6000, app(ty_Ratio, bdg)) -> new_esEs25(xuu3110000, xuu6000, bdg) new_esEs8(xuu311001, xuu601, ty_Char) -> new_esEs23(xuu311001, xuu601) new_esEs39(xuu690, xuu700, app(app(ty_@2, fch), fda)) -> new_esEs20(xuu690, xuu700, fch, fda) new_esEs40(xuu109, xuu111, app(ty_[], fhb)) -> new_esEs12(xuu109, xuu111, fhb) new_esEs31(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs28(xuu3110002, xuu6002, app(ty_Ratio, bbc)) -> new_esEs25(xuu3110002, xuu6002, bbc) new_compare12(Integer(xuu311000), Integer(xuu600)) -> new_primCmpInt(xuu311000, xuu600) new_compare28(xuu69, xuu70, True, egd) -> EQ new_esEs35(xuu3110001, xuu6001, app(ty_Ratio, eaf)) -> new_esEs25(xuu3110001, xuu6001, eaf) new_lt8(xuu691, xuu701, app(ty_Maybe, bhf)) -> new_lt11(xuu691, xuu701, bhf) new_lt22(xuu690, xuu700, ty_Double) -> new_lt14(xuu690, xuu700) new_gt(xuu22, xuu17, ty_Float) -> new_esEs41(new_compare16(xuu22, xuu17)) new_esEs18(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs14(new_sr0(xuu3110000, xuu6001), new_sr0(xuu3110001, xuu6000)) new_esEs8(xuu311001, xuu601, ty_Integer) -> new_esEs21(xuu311001, xuu601) new_primCmpInt(Pos(Succ(xuu3110000)), Neg(xuu600)) -> GT new_ltEs24(xuu110, xuu112, ty_Char) -> new_ltEs5(xuu110, xuu112) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs5(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs10(xuu311000, xuu600, app(ty_[], dd)) -> new_esEs12(xuu311000, xuu600, dd) new_esEs29(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) new_esEs29(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs30(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs19(Right(xuu3110000), Right(xuu6000), dha, ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_esEs5(xuu311000, xuu600, app(app(ty_Either, dha), dhb)) -> new_esEs19(xuu311000, xuu600, dha, dhb) new_esEs35(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_ltEs18(Right(xuu690), Right(xuu700), dag, app(app(ty_Either, dbg), dbh)) -> new_ltEs18(xuu690, xuu700, dbg, dbh) new_primCmpNat0(Zero, Succ(xuu6000)) -> LT new_esEs11(xuu311000, xuu600, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs24(xuu311000, xuu600, fd, ff, fg) new_ltEs23(xuu691, xuu701, app(app(app(ty_@3, fef), feg), feh)) -> new_ltEs16(xuu691, xuu701, fef, feg, feh) new_ltEs21(xuu82, xuu85, ty_Integer) -> new_ltEs13(xuu82, xuu85) new_esEs27(LT) -> True new_esEs11(xuu311000, xuu600, ty_Ordering) -> new_esEs26(xuu311000, xuu600) new_esEs19(Right(xuu3110000), Right(xuu6000), dha, app(ty_[], fac)) -> new_esEs12(xuu3110000, xuu6000, fac) new_esEs38(xuu80, xuu83, ty_Bool) -> new_esEs17(xuu80, xuu83) new_esEs9(xuu311000, xuu600, app(ty_[], cgb)) -> new_esEs12(xuu311000, xuu600, cgb) new_esEs8(xuu311001, xuu601, app(app(ty_@2, cfc), cfd)) -> new_esEs20(xuu311001, xuu601, cfc, cfd) new_esEs39(xuu690, xuu700, ty_Char) -> new_esEs23(xuu690, xuu700) new_ltEs12(GT, GT) -> True new_lt7(xuu690, xuu700, app(ty_Ratio, bhb)) -> new_lt19(xuu690, xuu700, bhb) new_compare11(GT, EQ) -> GT new_esEs40(xuu109, xuu111, ty_@0) -> new_esEs16(xuu109, xuu111) new_compare10(Nothing, Just(xuu600), ddh) -> LT new_ltEs12(GT, EQ) -> False new_lt22(xuu690, xuu700, app(ty_Ratio, fea)) -> new_lt19(xuu690, xuu700, fea) new_ltEs23(xuu691, xuu701, app(app(ty_Either, ffa), ffb)) -> new_ltEs18(xuu691, xuu701, ffa, ffb) new_esEs29(xuu3110001, xuu6001, app(app(ty_@2, bbg), bbh)) -> new_esEs20(xuu3110001, xuu6001, bbg, bbh) new_compare8(xuu311000, xuu600, app(app(app(ty_@3, gf), gg), gh)) -> new_compare15(xuu311000, xuu600, gf, gg, gh) new_compare114(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, False, xuu188, hd, he, hf) -> new_compare110(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, xuu188, hd, he, hf) new_esEs28(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_esEs7(xuu311002, xuu602, ty_@0) -> new_esEs16(xuu311002, xuu602) new_compare15(@3(xuu311000, xuu311001, xuu311002), @3(xuu600, xuu601, xuu602), cdc, cdd, cde) -> new_compare26(xuu311000, xuu311001, xuu311002, xuu600, xuu601, xuu602, new_asAs(new_esEs9(xuu311000, xuu600, cdc), new_asAs(new_esEs8(xuu311001, xuu601, cdd), new_esEs7(xuu311002, xuu602, cde))), cdc, cdd, cde) new_esEs8(xuu311001, xuu601, ty_Int) -> new_esEs14(xuu311001, xuu601) new_compare8(xuu311000, xuu600, app(ty_Maybe, ge)) -> new_compare10(xuu311000, xuu600, ge) new_esEs34(xuu690, xuu700, ty_Ordering) -> new_esEs26(xuu690, xuu700) new_esEs38(xuu80, xuu83, app(ty_[], ecf)) -> new_esEs12(xuu80, xuu83, ecf) new_esEs29(xuu3110001, xuu6001, ty_Char) -> new_esEs23(xuu3110001, xuu6001) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs9(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_primCmpInt(Neg(Zero), Pos(Succ(xuu6000))) -> LT new_esEs4(xuu311001, xuu601, app(ty_Ratio, dgh)) -> new_esEs25(xuu311001, xuu601, dgh) new_primMulInt(Pos(xuu3110000), Pos(xuu6010)) -> Pos(new_primMulNat0(xuu3110000, xuu6010)) new_esEs8(xuu311001, xuu601, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs24(xuu311001, xuu601, cff, cfg, cfh) new_esEs5(xuu311000, xuu600, ty_Char) -> new_esEs23(xuu311000, xuu600) new_ltEs8(True, False) -> False new_esEs29(xuu3110001, xuu6001, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs24(xuu3110001, xuu6001, bcb, bcc, bcd) new_ltEs18(Left(xuu690), Left(xuu700), app(app(app(ty_@3, daa), dab), dac), chd) -> new_ltEs16(xuu690, xuu700, daa, dab, dac) new_esEs11(xuu311000, xuu600, app(app(ty_Either, eg), eh)) -> new_esEs19(xuu311000, xuu600, eg, eh) new_lt24(xuu31100, xuu60, ty_Integer) -> new_lt13(xuu31100, xuu60) new_ltEs18(Left(xuu690), Left(xuu700), ty_Char, chd) -> new_ltEs5(xuu690, xuu700) new_ltEs24(xuu110, xuu112, ty_Float) -> new_ltEs17(xuu110, xuu112) new_esEs34(xuu690, xuu700, ty_Float) -> new_esEs15(xuu690, xuu700) new_lt10(xuu31100, xuu60, ga) -> new_esEs27(new_compare1(xuu31100, xuu60, ga)) new_primMulNat0(Succ(xuu31100000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu60100)) -> Zero new_lt8(xuu691, xuu701, app(app(app(ty_@3, bhg), bhh), caa)) -> new_lt16(xuu691, xuu701, bhg, bhh, caa) new_ltEs8(False, False) -> True new_lt21(xuu81, xuu84, ty_Integer) -> new_lt13(xuu81, xuu84) new_esEs5(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_esEs11(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_ltEs19(xuu692, xuu702, ty_Integer) -> new_ltEs13(xuu692, xuu702) new_ltEs18(Right(xuu690), Right(xuu700), dag, app(ty_[], dbb)) -> new_ltEs10(xuu690, xuu700, dbb) new_lt20(xuu80, xuu83, app(ty_Ratio, ede)) -> new_lt19(xuu80, xuu83, ede) new_ltEs21(xuu82, xuu85, app(app(ty_Either, efg), efh)) -> new_ltEs18(xuu82, xuu85, efg, efh) new_esEs33(xuu691, xuu701, ty_Int) -> new_esEs14(xuu691, xuu701) new_ltEs11(Just(xuu690), Just(xuu700), ty_Float) -> new_ltEs17(xuu690, xuu700) new_lt15(xuu31100, xuu60) -> new_esEs27(new_compare14(xuu31100, xuu60)) new_esEs5(xuu311000, xuu600, ty_Integer) -> new_esEs21(xuu311000, xuu600) new_ltEs22(xuu69, xuu70, app(app(ty_@2, ege), egf)) -> new_ltEs9(xuu69, xuu70, ege, egf) new_esEs10(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_esEs8(xuu311001, xuu601, ty_Float) -> new_esEs15(xuu311001, xuu601) new_compare11(GT, LT) -> GT new_primPlusNat0(Succ(xuu42200), Zero) -> Succ(xuu42200) new_primPlusNat0(Zero, Succ(xuu12900)) -> Succ(xuu12900) new_esEs7(xuu311002, xuu602, ty_Double) -> new_esEs18(xuu311002, xuu602) new_gt(xuu22, xuu17, ty_@0) -> new_esEs41(new_compare17(xuu22, xuu17)) new_esEs26(EQ, GT) -> False new_esEs26(GT, EQ) -> False new_lt24(xuu31100, xuu60, app(app(app(ty_@3, cdc), cdd), cde)) -> new_lt16(xuu31100, xuu60, cdc, cdd, cde) new_esEs33(xuu691, xuu701, ty_Double) -> new_esEs18(xuu691, xuu701) new_esEs40(xuu109, xuu111, ty_Bool) -> new_esEs17(xuu109, xuu111) new_esEs7(xuu311002, xuu602, app(app(ty_Either, cdg), cdh)) -> new_esEs19(xuu311002, xuu602, cdg, cdh) new_compare27(xuu109, xuu110, xuu111, xuu112, False, ffd, ffe) -> new_compare116(xuu109, xuu110, xuu111, xuu112, new_lt23(xuu109, xuu111, ffd), new_asAs(new_esEs40(xuu109, xuu111, ffd), new_ltEs24(xuu110, xuu112, ffe)), ffd, ffe) new_compare1([], [], ga) -> EQ new_ltEs22(xuu69, xuu70, app(ty_Ratio, bdh)) -> new_ltEs6(xuu69, xuu70, bdh) new_esEs6(xuu311000, xuu600, ty_Integer) -> new_esEs21(xuu311000, xuu600) new_esEs19(Right(xuu3110000), Right(xuu6000), dha, app(ty_Ratio, fbd)) -> new_esEs25(xuu3110000, xuu6000, fbd) new_ltEs21(xuu82, xuu85, app(app(app(ty_@3, efd), efe), eff)) -> new_ltEs16(xuu82, xuu85, efd, efe, eff) new_esEs30(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs7(xuu91, xuu92, app(ty_Ratio, bfd)) -> new_ltEs6(xuu91, xuu92, bfd) new_esEs28(xuu3110002, xuu6002, ty_Bool) -> new_esEs17(xuu3110002, xuu6002) new_lt8(xuu691, xuu701, ty_Bool) -> new_lt4(xuu691, xuu701) new_esEs38(xuu80, xuu83, app(ty_Ratio, ede)) -> new_esEs25(xuu80, xuu83, ede) new_lt8(xuu691, xuu701, ty_Integer) -> new_lt13(xuu691, xuu701) new_esEs33(xuu691, xuu701, app(app(ty_Either, cab), cac)) -> new_esEs19(xuu691, xuu701, cab, cac) new_ltEs11(Just(xuu690), Just(xuu700), ty_@0) -> new_ltEs4(xuu690, xuu700) new_esEs6(xuu311000, xuu600, app(ty_Maybe, gag)) -> new_esEs22(xuu311000, xuu600, gag) new_esEs6(xuu311000, xuu600, app(app(ty_@2, gae), gaf)) -> new_esEs20(xuu311000, xuu600, gae, gaf) new_ltEs7(xuu91, xuu92, app(app(ty_@2, bec), bed)) -> new_ltEs9(xuu91, xuu92, bec, bed) new_esEs34(xuu690, xuu700, ty_Int) -> new_esEs14(xuu690, xuu700) new_compare8(xuu311000, xuu600, app(ty_Ratio, hc)) -> new_compare19(xuu311000, xuu600, hc) new_ltEs20(xuu98, xuu99, app(app(app(ty_@3, cce), ccf), ccg)) -> new_ltEs16(xuu98, xuu99, cce, ccf, ccg) new_esEs29(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_lt24(xuu31100, xuu60, ty_Bool) -> new_lt4(xuu31100, xuu60) new_esEs33(xuu691, xuu701, ty_Float) -> new_esEs15(xuu691, xuu701) new_esEs19(Right(xuu3110000), Right(xuu6000), dha, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs11(Just(xuu690), Just(xuu700), ty_Ordering) -> new_ltEs12(xuu690, xuu700) new_compare28(xuu69, xuu70, False, egd) -> new_compare115(xuu69, xuu70, new_ltEs22(xuu69, xuu70, egd), egd) new_lt20(xuu80, xuu83, ty_Ordering) -> new_lt12(xuu80, xuu83) new_esEs19(Right(xuu3110000), Right(xuu6000), dha, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) new_compare10(Just(xuu311000), Just(xuu600), ddh) -> new_compare28(xuu311000, xuu600, new_esEs6(xuu311000, xuu600, ddh), ddh) new_esEs8(xuu311001, xuu601, app(app(ty_Either, cfa), cfb)) -> new_esEs19(xuu311001, xuu601, cfa, cfb) new_esEs13(xuu3110000, xuu6000, app(ty_[], bg)) -> new_esEs12(xuu3110000, xuu6000, bg) new_esEs29(xuu3110001, xuu6001, app(ty_Maybe, bca)) -> new_esEs22(xuu3110001, xuu6001, bca) new_ltEs8(False, True) -> True new_esEs5(xuu311000, xuu600, ty_Bool) -> new_esEs17(xuu311000, xuu600) new_compare25(xuu98, xuu99, False, cbg, cbh) -> new_compare112(xuu98, xuu99, new_ltEs20(xuu98, xuu99, cbh), cbg, cbh) new_esEs22(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, dff)) -> new_esEs25(xuu3110000, xuu6000, dff) new_compare8(xuu311000, xuu600, ty_Integer) -> new_compare12(xuu311000, xuu600) new_esEs10(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_lt22(xuu690, xuu700, ty_Bool) -> new_lt4(xuu690, xuu700) new_compare7(Left(xuu311000), Right(xuu600), db, dc) -> LT new_esEs38(xuu80, xuu83, ty_Char) -> new_esEs23(xuu80, xuu83) new_esEs9(xuu311000, xuu600, app(app(ty_@2, cge), cgf)) -> new_esEs20(xuu311000, xuu600, cge, cgf) new_esEs37(xuu81, xuu84, ty_Integer) -> new_esEs21(xuu81, xuu84) new_lt23(xuu109, xuu111, app(app(ty_Either, fhg), fhh)) -> new_lt18(xuu109, xuu111, fhg, fhh) new_esEs37(xuu81, xuu84, app(ty_[], edh)) -> new_esEs12(xuu81, xuu84, edh) new_esEs28(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs30(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Float, dhb) -> new_esEs15(xuu3110000, xuu6000) new_esEs13(xuu3110000, xuu6000, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs24(xuu3110000, xuu6000, ce, cf, cg) new_lt8(xuu691, xuu701, app(ty_[], bhe)) -> new_lt10(xuu691, xuu701, bhe) new_lt24(xuu31100, xuu60, ty_Char) -> new_lt6(xuu31100, xuu60) new_ltEs19(xuu692, xuu702, app(app(app(ty_@3, cba), cbb), cbc)) -> new_ltEs16(xuu692, xuu702, cba, cbb, cbc) new_ltEs5(xuu69, xuu70) -> new_fsEs(new_compare18(xuu69, xuu70)) new_compare26(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, eca, ecb, ecc) -> new_compare114(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, new_lt20(xuu80, xuu83, eca), new_asAs(new_esEs38(xuu80, xuu83, eca), new_pePe(new_lt21(xuu81, xuu84, ecb), new_asAs(new_esEs37(xuu81, xuu84, ecb), new_ltEs21(xuu82, xuu85, ecc)))), eca, ecb, ecc) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Char, dhb) -> new_esEs23(xuu3110000, xuu6000) new_gt(xuu22, xuu17, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs41(new_compare15(xuu22, xuu17, dch, dda, ddb)) new_esEs11(xuu311000, xuu600, app(ty_Ratio, fh)) -> new_esEs25(xuu311000, xuu600, fh) new_esEs6(xuu311000, xuu600, ty_Ordering) -> new_esEs26(xuu311000, xuu600) new_ltEs7(xuu91, xuu92, ty_Double) -> new_ltEs14(xuu91, xuu92) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_gt(xuu22, xuu17, app(ty_Maybe, dcg)) -> new_esEs41(new_compare10(xuu22, xuu17, dcg)) new_lt7(xuu690, xuu700, ty_Char) -> new_lt6(xuu690, xuu700) new_esEs33(xuu691, xuu701, ty_Ordering) -> new_esEs26(xuu691, xuu701) new_esEs16(@0, @0) -> True new_esEs39(xuu690, xuu700, app(ty_Maybe, fdc)) -> new_esEs22(xuu690, xuu700, fdc) new_esEs36(xuu3110000, xuu6000, app(ty_Ratio, ebh)) -> new_esEs25(xuu3110000, xuu6000, ebh) new_esEs35(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_compare24(xuu91, xuu92, True, bea, beb) -> EQ new_esEs22(Just(xuu3110000), Just(xuu6000), app(ty_[], dee)) -> new_esEs12(xuu3110000, xuu6000, dee) new_esEs38(xuu80, xuu83, app(app(app(ty_@3, ech), eda), edb)) -> new_esEs24(xuu80, xuu83, ech, eda, edb) new_ltEs8(True, True) -> True new_compare16(Float(xuu311000, Pos(xuu3110010)), Float(xuu600, Pos(xuu6010))) -> new_compare14(new_sr0(xuu311000, Pos(xuu6010)), new_sr0(Pos(xuu3110010), xuu600)) new_lt23(xuu109, xuu111, app(app(app(ty_@3, fhd), fhe), fhf)) -> new_lt16(xuu109, xuu111, fhd, fhe, fhf) new_primCmpInt(Pos(Succ(xuu3110000)), Pos(xuu600)) -> new_primCmpNat0(Succ(xuu3110000), xuu600) new_ltEs7(xuu91, xuu92, ty_Float) -> new_ltEs17(xuu91, xuu92) new_esEs39(xuu690, xuu700, ty_Bool) -> new_esEs17(xuu690, xuu700) new_lt20(xuu80, xuu83, app(ty_[], ecf)) -> new_lt10(xuu80, xuu83, ecf) new_ltEs7(xuu91, xuu92, app(app(ty_Either, bfb), bfc)) -> new_ltEs18(xuu91, xuu92, bfb, bfc) new_lt20(xuu80, xuu83, ty_@0) -> new_lt17(xuu80, xuu83) new_primCompAux00(xuu63, EQ) -> xuu63 new_esEs39(xuu690, xuu700, app(app(ty_Either, fdg), fdh)) -> new_esEs19(xuu690, xuu700, fdg, fdh) new_compare113(xuu166, xuu167, xuu168, xuu169, False, deb, dec) -> GT new_esEs4(xuu311001, xuu601, app(ty_Maybe, dgd)) -> new_esEs22(xuu311001, xuu601, dgd) new_esEs10(xuu311000, xuu600, ty_Bool) -> new_esEs17(xuu311000, xuu600) new_esEs34(xuu690, xuu700, ty_Char) -> new_esEs23(xuu690, xuu700) new_lt18(xuu31100, xuu60, db, dc) -> new_esEs27(new_compare7(xuu31100, xuu60, db, dc)) new_lt7(xuu690, xuu700, app(app(app(ty_@3, bge), bgf), bgg)) -> new_lt16(xuu690, xuu700, bge, bgf, bgg) new_lt21(xuu81, xuu84, app(ty_[], edh)) -> new_lt10(xuu81, xuu84, edh) new_esEs34(xuu690, xuu700, app(app(ty_Either, bgh), bha)) -> new_esEs19(xuu690, xuu700, bgh, bha) new_primMulNat0(Succ(xuu31100000), Succ(xuu60100)) -> new_primPlusNat0(new_primMulNat0(xuu31100000, Succ(xuu60100)), Succ(xuu60100)) new_esEs33(xuu691, xuu701, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs24(xuu691, xuu701, bhg, bhh, caa) new_lt4(xuu31100, xuu60) -> new_esEs27(new_compare6(xuu31100, xuu60)) new_esEs40(xuu109, xuu111, app(app(ty_Either, fhg), fhh)) -> new_esEs19(xuu109, xuu111, fhg, fhh) new_compare1(:(xuu311000, xuu311001), :(xuu600, xuu601), ga) -> new_primCompAux0(xuu311000, xuu600, new_compare1(xuu311001, xuu601, ga), ga) new_gt(xuu22, xuu17, app(ty_[], dcf)) -> new_esEs41(new_compare1(xuu22, xuu17, dcf)) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Integer, dhb) -> new_esEs21(xuu3110000, xuu6000) new_esEs33(xuu691, xuu701, ty_Integer) -> new_esEs21(xuu691, xuu701) new_ltEs11(Nothing, Just(xuu700), egh) -> True new_lt8(xuu691, xuu701, ty_@0) -> new_lt17(xuu691, xuu701) new_esEs40(xuu109, xuu111, ty_Char) -> new_esEs23(xuu109, xuu111) new_lt14(xuu31100, xuu60) -> new_esEs27(new_compare13(xuu31100, xuu60)) new_lt22(xuu690, xuu700, ty_Float) -> new_lt5(xuu690, xuu700) new_compare13(Double(xuu311000, Neg(xuu3110010)), Double(xuu600, Neg(xuu6010))) -> new_compare14(new_sr0(xuu311000, Neg(xuu6010)), new_sr0(Neg(xuu3110010), xuu600)) new_ltEs22(xuu69, xuu70, app(ty_[], egg)) -> new_ltEs10(xuu69, xuu70, egg) new_esEs13(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs15(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs14(new_sr0(xuu3110000, xuu6001), new_sr0(xuu3110001, xuu6000)) new_ltEs18(Right(xuu690), Right(xuu700), dag, app(ty_Ratio, dca)) -> new_ltEs6(xuu690, xuu700, dca) new_ltEs18(Left(xuu690), Left(xuu700), ty_@0, chd) -> new_ltEs4(xuu690, xuu700) new_esEs6(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs10(xuu311000, xuu600, app(ty_Maybe, ea)) -> new_esEs22(xuu311000, xuu600, ea) new_ltEs20(xuu98, xuu99, app(app(ty_Either, cch), cda)) -> new_ltEs18(xuu98, xuu99, cch, cda) new_esEs39(xuu690, xuu700, app(app(app(ty_@3, fdd), fde), fdf)) -> new_esEs24(xuu690, xuu700, fdd, fde, fdf) new_esEs14(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_ltEs24(xuu110, xuu112, app(ty_Ratio, fgg)) -> new_ltEs6(xuu110, xuu112, fgg) new_ltEs24(xuu110, xuu112, app(app(ty_@2, fff), ffg)) -> new_ltEs9(xuu110, xuu112, fff, ffg) new_esEs4(xuu311001, xuu601, ty_@0) -> new_esEs16(xuu311001, xuu601) new_compare8(xuu311000, xuu600, app(ty_[], gd)) -> new_compare1(xuu311000, xuu600, gd) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_compare6(False, True) -> LT new_esEs39(xuu690, xuu700, ty_@0) -> new_esEs16(xuu690, xuu700) new_lt19(xuu31100, xuu60, dea) -> new_esEs27(new_compare19(xuu31100, xuu60, dea)) new_ltEs6(xuu69, xuu70, bdh) -> new_fsEs(new_compare19(xuu69, xuu70, bdh)) new_esEs41(GT) -> True new_compare11(LT, GT) -> LT new_esEs35(xuu3110001, xuu6001, app(app(ty_Either, dhf), dhg)) -> new_esEs19(xuu3110001, xuu6001, dhf, dhg) new_compare14(xuu31100, xuu60) -> new_primCmpInt(xuu31100, xuu60) new_lt24(xuu31100, xuu60, app(app(ty_Either, db), dc)) -> new_lt18(xuu31100, xuu60, db, dc) new_esEs33(xuu691, xuu701, ty_Char) -> new_esEs23(xuu691, xuu701) new_ltEs18(Left(xuu690), Left(xuu700), app(ty_Maybe, chh), chd) -> new_ltEs11(xuu690, xuu700, chh) new_ltEs19(xuu692, xuu702, app(app(ty_Either, cbd), cbe)) -> new_ltEs18(xuu692, xuu702, cbd, cbe) new_lt24(xuu31100, xuu60, ty_@0) -> new_lt17(xuu31100, xuu60) new_esEs5(xuu311000, xuu600, ty_Ordering) -> new_esEs26(xuu311000, xuu600) new_lt21(xuu81, xuu84, ty_Bool) -> new_lt4(xuu81, xuu84) new_esEs32(xuu3110000, xuu6000, ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_esEs40(xuu109, xuu111, app(app(app(ty_@3, fhd), fhe), fhf)) -> new_esEs24(xuu109, xuu111, fhd, fhe, fhf) new_ltEs12(EQ, GT) -> True new_lt8(xuu691, xuu701, ty_Char) -> new_lt6(xuu691, xuu701) new_esEs34(xuu690, xuu700, app(app(app(ty_@3, bge), bgf), bgg)) -> new_esEs24(xuu690, xuu700, bge, bgf, bgg) new_ltEs18(Left(xuu690), Left(xuu700), app(ty_Ratio, daf), chd) -> new_ltEs6(xuu690, xuu700, daf) new_ltEs11(Just(xuu690), Just(xuu700), app(app(ty_@2, fbe), fbf)) -> new_ltEs9(xuu690, xuu700, fbe, fbf) new_esEs13(xuu3110000, xuu6000, ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_esEs29(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs17(True, True) -> True new_ltEs12(EQ, EQ) -> True new_esEs36(xuu3110000, xuu6000, app(ty_Maybe, ebd)) -> new_esEs22(xuu3110000, xuu6000, ebd) new_esEs39(xuu690, xuu700, ty_Float) -> new_esEs15(xuu690, xuu700) new_lt23(xuu109, xuu111, ty_Char) -> new_lt6(xuu109, xuu111) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs23(xuu3110000, xuu6000) new_lt7(xuu690, xuu700, app(app(ty_Either, bgh), bha)) -> new_lt18(xuu690, xuu700, bgh, bha) new_esEs33(xuu691, xuu701, app(ty_Ratio, cad)) -> new_esEs25(xuu691, xuu701, cad) new_esEs37(xuu81, xuu84, app(app(app(ty_@3, eeb), eec), eed)) -> new_esEs24(xuu81, xuu84, eeb, eec, eed) new_esEs38(xuu80, xuu83, app(app(ty_Either, edc), edd)) -> new_esEs19(xuu80, xuu83, edc, edd) new_lt21(xuu81, xuu84, ty_Char) -> new_lt6(xuu81, xuu84) new_lt20(xuu80, xuu83, app(app(app(ty_@3, ech), eda), edb)) -> new_lt16(xuu80, xuu83, ech, eda, edb) new_compare6(True, True) -> EQ new_esEs11(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_ltEs11(Just(xuu690), Just(xuu700), app(ty_Ratio, fcf)) -> new_ltEs6(xuu690, xuu700, fcf) new_esEs13(xuu3110000, xuu6000, app(ty_Maybe, cd)) -> new_esEs22(xuu3110000, xuu6000, cd) new_esEs10(xuu311000, xuu600, app(ty_Ratio, ee)) -> new_esEs25(xuu311000, xuu600, ee) new_compare1([], :(xuu600, xuu601), ga) -> LT new_compare9(@2(xuu311000, xuu311001), @2(xuu600, xuu601), ddf, ddg) -> new_compare27(xuu311000, xuu311001, xuu600, xuu601, new_asAs(new_esEs5(xuu311000, xuu600, ddf), new_esEs4(xuu311001, xuu601, ddg)), ddf, ddg) new_esEs34(xuu690, xuu700, ty_@0) -> new_esEs16(xuu690, xuu700) new_ltEs11(Just(xuu690), Just(xuu700), ty_Double) -> new_ltEs14(xuu690, xuu700) new_esEs40(xuu109, xuu111, ty_Ordering) -> new_esEs26(xuu109, xuu111) new_lt22(xuu690, xuu700, app(app(ty_Either, fdg), fdh)) -> new_lt18(xuu690, xuu700, fdg, fdh) new_ltEs15(xuu69, xuu70) -> new_fsEs(new_compare14(xuu69, xuu70)) new_compare18(Char(xuu311000), Char(xuu600)) -> new_primCmpNat0(xuu311000, xuu600) new_primPlusNat0(Succ(xuu42200), Succ(xuu12900)) -> Succ(Succ(new_primPlusNat0(xuu42200, xuu12900))) new_esEs22(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, dfc), dfd), dfe)) -> new_esEs24(xuu3110000, xuu6000, dfc, dfd, dfe) new_esEs7(xuu311002, xuu602, app(ty_[], cdf)) -> new_esEs12(xuu311002, xuu602, cdf) new_esEs34(xuu690, xuu700, ty_Integer) -> new_esEs21(xuu690, xuu700) new_lt7(xuu690, xuu700, app(ty_[], bgc)) -> new_lt10(xuu690, xuu700, bgc) new_esEs37(xuu81, xuu84, ty_Float) -> new_esEs15(xuu81, xuu84) new_esEs40(xuu109, xuu111, ty_Float) -> new_esEs15(xuu109, xuu111) new_esEs13(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) new_esEs4(xuu311001, xuu601, app(app(ty_Either, dfh), dga)) -> new_esEs19(xuu311001, xuu601, dfh, dga) new_esEs36(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs11(xuu311000, xuu600, ty_Integer) -> new_esEs21(xuu311000, xuu600) new_ltEs13(xuu69, xuu70) -> new_fsEs(new_compare12(xuu69, xuu70)) new_ltEs18(Left(xuu690), Left(xuu700), ty_Bool, chd) -> new_ltEs8(xuu690, xuu700) new_esEs13(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_compare8(xuu311000, xuu600, ty_Char) -> new_compare18(xuu311000, xuu600) new_esEs13(xuu3110000, xuu6000, app(app(ty_Either, bh), ca)) -> new_esEs19(xuu3110000, xuu6000, bh, ca) new_esEs36(xuu3110000, xuu6000, app(app(ty_Either, eah), eba)) -> new_esEs19(xuu3110000, xuu6000, eah, eba) new_esEs35(xuu3110001, xuu6001, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs24(xuu3110001, xuu6001, eac, ead, eae) new_esEs30(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt20(xuu80, xuu83, app(app(ty_Either, edc), edd)) -> new_lt18(xuu80, xuu83, edc, edd) new_lt7(xuu690, xuu700, ty_Float) -> new_lt5(xuu690, xuu700) new_ltEs24(xuu110, xuu112, ty_Double) -> new_ltEs14(xuu110, xuu112) new_ltEs4(xuu69, xuu70) -> new_fsEs(new_compare17(xuu69, xuu70)) new_esEs11(xuu311000, xuu600, app(ty_Maybe, fc)) -> new_esEs22(xuu311000, xuu600, fc) new_esEs34(xuu690, xuu700, app(ty_Maybe, bgd)) -> new_esEs22(xuu690, xuu700, bgd) new_esEs37(xuu81, xuu84, ty_Char) -> new_esEs23(xuu81, xuu84) new_esEs28(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_esEs36(xuu3110000, xuu6000, ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_esEs36(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) new_compare8(xuu311000, xuu600, ty_Float) -> new_compare16(xuu311000, xuu600) new_ltEs18(Left(xuu690), Right(xuu700), dag, chd) -> True new_ltEs21(xuu82, xuu85, ty_Float) -> new_ltEs17(xuu82, xuu85) new_ltEs20(xuu98, xuu99, app(ty_[], ccc)) -> new_ltEs10(xuu98, xuu99, ccc) new_ltEs7(xuu91, xuu92, app(ty_[], bee)) -> new_ltEs10(xuu91, xuu92, bee) new_esEs17(False, False) -> True new_esEs22(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs5(xuu311000, xuu600, app(ty_[], bf)) -> new_esEs12(xuu311000, xuu600, bf) new_esEs34(xuu690, xuu700, ty_Bool) -> new_esEs17(xuu690, xuu700) new_lt23(xuu109, xuu111, ty_Float) -> new_lt5(xuu109, xuu111) new_compare17(@0, @0) -> EQ new_ltEs18(Right(xuu690), Left(xuu700), dag, chd) -> False new_lt7(xuu690, xuu700, ty_@0) -> new_lt17(xuu690, xuu700) new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, ehd), ehe), dhb) -> new_esEs20(xuu3110000, xuu6000, ehd, ehe) new_compare26(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, True, eca, ecb, ecc) -> EQ new_ltEs21(xuu82, xuu85, app(ty_[], efb)) -> new_ltEs10(xuu82, xuu85, efb) new_primCmpNat0(Succ(xuu3110000), Succ(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) new_compare10(Just(xuu311000), Nothing, ddh) -> GT new_esEs35(xuu3110001, xuu6001, ty_Char) -> new_esEs23(xuu3110001, xuu6001) new_esEs37(xuu81, xuu84, ty_@0) -> new_esEs16(xuu81, xuu84) new_esEs38(xuu80, xuu83, ty_Ordering) -> new_esEs26(xuu80, xuu83) new_lt22(xuu690, xuu700, ty_@0) -> new_lt17(xuu690, xuu700) new_esEs11(xuu311000, xuu600, ty_Bool) -> new_esEs17(xuu311000, xuu600) new_ltEs11(Just(xuu690), Nothing, egh) -> False new_ltEs11(Nothing, Nothing, egh) -> True new_compare8(xuu311000, xuu600, ty_@0) -> new_compare17(xuu311000, xuu600) new_lt24(xuu31100, xuu60, app(ty_[], ga)) -> new_lt10(xuu31100, xuu60, ga) new_lt20(xuu80, xuu83, ty_Char) -> new_lt6(xuu80, xuu83) new_lt21(xuu81, xuu84, ty_@0) -> new_lt17(xuu81, xuu84) new_esEs37(xuu81, xuu84, ty_Ordering) -> new_esEs26(xuu81, xuu84) new_esEs36(xuu3110000, xuu6000, ty_Char) -> new_esEs23(xuu3110000, xuu6000) new_lt21(xuu81, xuu84, app(app(ty_Either, eee), eef)) -> new_lt18(xuu81, xuu84, eee, eef) new_lt8(xuu691, xuu701, ty_Float) -> new_lt5(xuu691, xuu701) new_esEs13(xuu3110000, xuu6000, ty_Char) -> new_esEs23(xuu3110000, xuu6000) new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, fab), dhb) -> new_esEs25(xuu3110000, xuu6000, fab) new_gt(xuu22, xuu17, ty_Double) -> new_esEs41(new_compare13(xuu22, xuu17)) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs18(Right(xuu690), Right(xuu700), dag, ty_Float) -> new_ltEs17(xuu690, xuu700) new_esEs36(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs13(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Ordering, dhb) -> new_esEs26(xuu3110000, xuu6000) new_esEs35(xuu3110001, xuu6001, ty_Integer) -> new_esEs21(xuu3110001, xuu6001) new_ltEs17(xuu69, xuu70) -> new_fsEs(new_compare16(xuu69, xuu70)) new_ltEs20(xuu98, xuu99, ty_Float) -> new_ltEs17(xuu98, xuu99) new_esEs19(Left(xuu3110000), Right(xuu6000), dha, dhb) -> False new_esEs19(Right(xuu3110000), Left(xuu6000), dha, dhb) -> False new_ltEs19(xuu692, xuu702, app(ty_[], cag)) -> new_ltEs10(xuu692, xuu702, cag) new_esEs35(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_esEs6(xuu311000, xuu600, app(ty_[], gab)) -> new_esEs12(xuu311000, xuu600, gab) new_lt24(xuu31100, xuu60, ty_Float) -> new_lt5(xuu31100, xuu60) new_esEs38(xuu80, xuu83, ty_Float) -> new_esEs15(xuu80, xuu83) new_esEs35(xuu3110001, xuu6001, app(ty_Maybe, eab)) -> new_esEs22(xuu3110001, xuu6001, eab) new_ltEs19(xuu692, xuu702, ty_Float) -> new_ltEs17(xuu692, xuu702) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, app(app(ty_@2, bae), baf)) -> new_esEs20(xuu3110002, xuu6002, bae, baf) new_primCmpInt(Neg(Succ(xuu3110000)), Pos(xuu600)) -> LT new_esEs29(xuu3110001, xuu6001, app(ty_[], bbd)) -> new_esEs12(xuu3110001, xuu6001, bbd) new_ltEs22(xuu69, xuu70, app(app(ty_Either, dag), chd)) -> new_ltEs18(xuu69, xuu70, dag, chd) new_lt12(xuu31100, xuu60) -> new_esEs27(new_compare11(xuu31100, xuu60)) new_esEs6(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_esEs39(xuu690, xuu700, ty_Double) -> new_esEs18(xuu690, xuu700) new_esEs9(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_esEs35(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) new_esEs8(xuu311001, xuu601, app(ty_[], ceh)) -> new_esEs12(xuu311001, xuu601, ceh) new_esEs12(:(xuu3110000, xuu3110001), [], bf) -> False new_esEs12([], :(xuu6000, xuu6001), bf) -> False new_esEs37(xuu81, xuu84, ty_Bool) -> new_esEs17(xuu81, xuu84) new_primCmpInt(Pos(Zero), Neg(Succ(xuu6000))) -> GT new_lt21(xuu81, xuu84, ty_Double) -> new_lt14(xuu81, xuu84) new_esEs10(xuu311000, xuu600, ty_Ordering) -> new_esEs26(xuu311000, xuu600) new_ltEs7(xuu91, xuu92, ty_@0) -> new_ltEs4(xuu91, xuu92) new_lt8(xuu691, xuu701, app(ty_Ratio, cad)) -> new_lt19(xuu691, xuu701, cad) new_compare113(xuu166, xuu167, xuu168, xuu169, True, deb, dec) -> LT new_primCmpInt(Neg(Succ(xuu3110000)), Neg(xuu600)) -> new_primCmpNat0(xuu600, Succ(xuu3110000)) new_esEs9(xuu311000, xuu600, app(app(app(ty_@3, cgh), cha), chb)) -> new_esEs24(xuu311000, xuu600, cgh, cha, chb) new_esEs34(xuu690, xuu700, app(ty_Ratio, bhb)) -> new_esEs25(xuu690, xuu700, bhb) new_esEs4(xuu311001, xuu601, ty_Char) -> new_esEs23(xuu311001, xuu601) new_esEs37(xuu81, xuu84, app(app(ty_Either, eee), eef)) -> new_esEs19(xuu81, xuu84, eee, eef) new_ltEs22(xuu69, xuu70, ty_Int) -> new_ltEs15(xuu69, xuu70) new_gt(xuu22, xuu17, app(app(ty_@2, dcd), dce)) -> new_esEs41(new_compare9(xuu22, xuu17, dcd, dce)) new_esEs40(xuu109, xuu111, app(app(ty_@2, fgh), fha)) -> new_esEs20(xuu109, xuu111, fgh, fha) new_ltEs23(xuu691, xuu701, ty_Ordering) -> new_ltEs12(xuu691, xuu701) new_ltEs20(xuu98, xuu99, ty_Char) -> new_ltEs5(xuu98, xuu99) new_esEs41(EQ) -> False new_lt7(xuu690, xuu700, ty_Bool) -> new_lt4(xuu690, xuu700) new_esEs10(xuu311000, xuu600, ty_Integer) -> new_esEs21(xuu311000, xuu600) new_esEs39(xuu690, xuu700, app(ty_Ratio, fea)) -> new_esEs25(xuu690, xuu700, fea) new_lt20(xuu80, xuu83, ty_Bool) -> new_lt4(xuu80, xuu83) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_@0, dhb) -> new_esEs16(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_compare8(xuu311000, xuu600, ty_Bool) -> new_compare6(xuu311000, xuu600) new_compare24(xuu91, xuu92, False, bea, beb) -> new_compare111(xuu91, xuu92, new_ltEs7(xuu91, xuu92, bea), bea, beb) new_lt23(xuu109, xuu111, app(ty_[], fhb)) -> new_lt10(xuu109, xuu111, fhb) new_compare1(:(xuu311000, xuu311001), [], ga) -> GT new_esEs7(xuu311002, xuu602, app(app(ty_@2, cea), ceb)) -> new_esEs20(xuu311002, xuu602, cea, ceb) new_esEs4(xuu311001, xuu601, ty_Float) -> new_esEs15(xuu311001, xuu601) new_ltEs18(Right(xuu690), Right(xuu700), dag, app(app(ty_@2, dah), dba)) -> new_ltEs9(xuu690, xuu700, dah, dba) new_ltEs23(xuu691, xuu701, app(ty_Ratio, ffc)) -> new_ltEs6(xuu691, xuu701, ffc) new_ltEs14(xuu69, xuu70) -> new_fsEs(new_compare13(xuu69, xuu70)) new_lt17(xuu31100, xuu60) -> new_esEs27(new_compare17(xuu31100, xuu60)) new_lt16(xuu31100, xuu60, cdc, cdd, cde) -> new_esEs27(new_compare15(xuu31100, xuu60, cdc, cdd, cde)) new_ltEs22(xuu69, xuu70, app(app(app(ty_@3, bff), bfg), bfh)) -> new_ltEs16(xuu69, xuu70, bff, bfg, bfh) new_ltEs23(xuu691, xuu701, ty_Float) -> new_ltEs17(xuu691, xuu701) new_esEs30(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) new_ltEs11(Just(xuu690), Just(xuu700), app(app(ty_Either, fcd), fce)) -> new_ltEs18(xuu690, xuu700, fcd, fce) new_primCmpNat0(Zero, Zero) -> EQ new_esEs35(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs10(xuu311000, xuu600, ty_Char) -> new_esEs23(xuu311000, xuu600) new_lt23(xuu109, xuu111, app(app(ty_@2, fgh), fha)) -> new_lt9(xuu109, xuu111, fgh, fha) new_esEs32(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs10(xuu311000, xuu600, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs24(xuu311000, xuu600, eb, ec, ed) new_ltEs22(xuu69, xuu70, ty_Integer) -> new_ltEs13(xuu69, xuu70) new_esEs4(xuu311001, xuu601, ty_Ordering) -> new_esEs26(xuu311001, xuu601) new_ltEs11(Just(xuu690), Just(xuu700), ty_Bool) -> new_ltEs8(xuu690, xuu700) new_esEs6(xuu311000, xuu600, app(app(ty_Either, gac), gad)) -> new_esEs19(xuu311000, xuu600, gac, gad) new_ltEs23(xuu691, xuu701, app(app(ty_@2, feb), fec)) -> new_ltEs9(xuu691, xuu701, feb, fec) new_primCompAux00(xuu63, GT) -> GT new_ltEs19(xuu692, xuu702, ty_@0) -> new_ltEs4(xuu692, xuu702) new_esEs7(xuu311002, xuu602, ty_Integer) -> new_esEs21(xuu311002, xuu602) new_esEs22(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, dfb)) -> new_esEs22(xuu3110000, xuu6000, dfb) new_esEs33(xuu691, xuu701, app(ty_Maybe, bhf)) -> new_esEs22(xuu691, xuu701, bhf) new_esEs20(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), dhc, dhd) -> new_asAs(new_esEs36(xuu3110000, xuu6000, dhc), new_esEs35(xuu3110001, xuu6001, dhd)) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Bool, dhb) -> new_esEs17(xuu3110000, xuu6000) new_esEs33(xuu691, xuu701, app(app(ty_@2, bhc), bhd)) -> new_esEs20(xuu691, xuu701, bhc, bhd) new_esEs38(xuu80, xuu83, app(ty_Maybe, ecg)) -> new_esEs22(xuu80, xuu83, ecg) new_lt20(xuu80, xuu83, ty_Integer) -> new_lt13(xuu80, xuu83) new_esEs29(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_lt8(xuu691, xuu701, ty_Ordering) -> new_lt12(xuu691, xuu701) new_esEs38(xuu80, xuu83, app(app(ty_@2, ecd), ece)) -> new_esEs20(xuu80, xuu83, ecd, ece) new_lt13(xuu31100, xuu60) -> new_esEs27(new_compare12(xuu31100, xuu60)) new_ltEs23(xuu691, xuu701, app(ty_[], fed)) -> new_ltEs10(xuu691, xuu701, fed) new_ltEs24(xuu110, xuu112, ty_@0) -> new_ltEs4(xuu110, xuu112) new_esEs4(xuu311001, xuu601, app(app(app(ty_@3, dge), dgf), dgg)) -> new_esEs24(xuu311001, xuu601, dge, dgf, dgg) new_lt22(xuu690, xuu700, app(app(app(ty_@3, fdd), fde), fdf)) -> new_lt16(xuu690, xuu700, fdd, fde, fdf) new_compare11(EQ, EQ) -> EQ new_esEs9(xuu311000, xuu600, ty_Char) -> new_esEs23(xuu311000, xuu600) new_esEs39(xuu690, xuu700, app(ty_[], fdb)) -> new_esEs12(xuu690, xuu700, fdb) new_esEs29(xuu3110001, xuu6001, app(ty_Ratio, bce)) -> new_esEs25(xuu3110001, xuu6001, bce) new_compare19(:%(xuu311000, xuu311001), :%(xuu600, xuu601), ty_Int) -> new_compare14(new_sr0(xuu311000, xuu601), new_sr0(xuu600, xuu311001)) new_lt7(xuu690, xuu700, app(app(ty_@2, bga), bgb)) -> new_lt9(xuu690, xuu700, bga, bgb) new_esEs37(xuu81, xuu84, ty_Int) -> new_esEs14(xuu81, xuu84) new_lt5(xuu31100, xuu60) -> new_esEs27(new_compare16(xuu31100, xuu60)) new_lt21(xuu81, xuu84, ty_Float) -> new_lt5(xuu81, xuu84) new_ltEs20(xuu98, xuu99, ty_Bool) -> new_ltEs8(xuu98, xuu99) new_ltEs11(Just(xuu690), Just(xuu700), ty_Integer) -> new_ltEs13(xuu690, xuu700) new_ltEs23(xuu691, xuu701, ty_Double) -> new_ltEs14(xuu691, xuu701) new_esEs36(xuu3110000, xuu6000, app(ty_[], eag)) -> new_esEs12(xuu3110000, xuu6000, eag) new_sr(Integer(xuu3110000), Integer(xuu6010)) -> Integer(new_primMulInt(xuu3110000, xuu6010)) new_primCmpNat0(Succ(xuu3110000), Zero) -> GT new_esEs30(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs18(Left(xuu690), Left(xuu700), app(app(ty_Either, dad), dae), chd) -> new_ltEs18(xuu690, xuu700, dad, dae) new_ltEs11(Just(xuu690), Just(xuu700), ty_Char) -> new_ltEs5(xuu690, xuu700) new_primCompAux0(xuu311000, xuu600, xuu48, ga) -> new_primCompAux00(xuu48, new_compare8(xuu311000, xuu600, ga)) new_lt22(xuu690, xuu700, app(ty_Maybe, fdc)) -> new_lt11(xuu690, xuu700, fdc) new_pePe(False, xuu199) -> xuu199 new_lt22(xuu690, xuu700, ty_Int) -> new_lt15(xuu690, xuu700) new_compare25(xuu98, xuu99, True, cbg, cbh) -> EQ new_esEs28(xuu3110002, xuu6002, app(ty_Maybe, bag)) -> new_esEs22(xuu3110002, xuu6002, bag) new_gt(xuu22, xuu17, ty_Ordering) -> new_esEs41(new_compare11(xuu22, xuu17)) new_esEs30(xuu3110000, xuu6000, ty_Char) -> new_esEs23(xuu3110000, xuu6000) new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, ehf), dhb) -> new_esEs22(xuu3110000, xuu6000, ehf) new_compare112(xuu156, xuu157, True, dcb, dcc) -> LT new_esEs35(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_lt23(xuu109, xuu111, ty_Bool) -> new_lt4(xuu109, xuu111) new_compare8(xuu311000, xuu600, ty_Double) -> new_compare13(xuu311000, xuu600) new_lt20(xuu80, xuu83, ty_Int) -> new_lt15(xuu80, xuu83) new_lt7(xuu690, xuu700, app(ty_Maybe, bgd)) -> new_lt11(xuu690, xuu700, bgd) new_esEs38(xuu80, xuu83, ty_Integer) -> new_esEs21(xuu80, xuu83) new_lt11(xuu31100, xuu60, ddh) -> new_esEs27(new_compare10(xuu31100, xuu60, ddh)) new_ltEs18(Left(xuu690), Left(xuu700), ty_Ordering, chd) -> new_ltEs12(xuu690, xuu700) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_esEs7(xuu311002, xuu602, ty_Ordering) -> new_esEs26(xuu311002, xuu602) new_esEs28(xuu3110002, xuu6002, ty_Integer) -> new_esEs21(xuu3110002, xuu6002) new_esEs34(xuu690, xuu700, app(ty_[], bgc)) -> new_esEs12(xuu690, xuu700, bgc) new_esEs11(xuu311000, xuu600, app(ty_[], ef)) -> new_esEs12(xuu311000, xuu600, ef) new_compare11(GT, GT) -> EQ new_esEs9(xuu311000, xuu600, app(app(ty_Either, cgc), cgd)) -> new_esEs19(xuu311000, xuu600, cgc, cgd) new_esEs10(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_esEs40(xuu109, xuu111, app(ty_Maybe, fhc)) -> new_esEs22(xuu109, xuu111, fhc) new_esEs7(xuu311002, xuu602, app(ty_Maybe, cec)) -> new_esEs22(xuu311002, xuu602, cec) new_esEs4(xuu311001, xuu601, ty_Bool) -> new_esEs17(xuu311001, xuu601) new_esEs9(xuu311000, xuu600, ty_Ordering) -> new_esEs26(xuu311000, xuu600) new_esEs11(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_esEs7(xuu311002, xuu602, ty_Float) -> new_esEs15(xuu311002, xuu602) new_gt(xuu22, xuu17, ty_Char) -> new_esEs41(new_compare18(xuu22, xuu17)) new_esEs34(xuu690, xuu700, ty_Double) -> new_esEs18(xuu690, xuu700) new_esEs30(xuu3110000, xuu6000, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs24(xuu3110000, xuu6000, bdd, bde, bdf) new_esEs7(xuu311002, xuu602, ty_Char) -> new_esEs23(xuu311002, xuu602) new_ltEs21(xuu82, xuu85, app(ty_Ratio, ega)) -> new_ltEs6(xuu82, xuu85, ega) new_esEs26(GT, GT) -> True new_gt(xuu22, xuu17, app(ty_Ratio, dde)) -> new_esEs41(new_compare19(xuu22, xuu17, dde)) new_esEs6(xuu311000, xuu600, app(app(app(ty_@3, gah), gba), gbb)) -> new_esEs24(xuu311000, xuu600, gah, gba, gbb) new_lt24(xuu31100, xuu60, ty_Double) -> new_lt14(xuu31100, xuu60) new_esEs19(Right(xuu3110000), Right(xuu6000), dha, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_lt23(xuu109, xuu111, ty_Integer) -> new_lt13(xuu109, xuu111) new_esEs30(xuu3110000, xuu6000, app(app(ty_@2, bda), bdb)) -> new_esEs20(xuu3110000, xuu6000, bda, bdb) new_lt8(xuu691, xuu701, ty_Double) -> new_lt14(xuu691, xuu701) new_ltEs18(Left(xuu690), Left(xuu700), ty_Float, chd) -> new_ltEs17(xuu690, xuu700) new_esEs6(xuu311000, xuu600, ty_Bool) -> new_esEs17(xuu311000, xuu600) new_esEs37(xuu81, xuu84, app(ty_Ratio, eeg)) -> new_esEs25(xuu81, xuu84, eeg) new_esEs30(xuu3110000, xuu6000, app(ty_Maybe, bdc)) -> new_esEs22(xuu3110000, xuu6000, bdc) new_esEs5(xuu311000, xuu600, app(ty_Maybe, ded)) -> new_esEs22(xuu311000, xuu600, ded) new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, ehg), ehh), faa), dhb) -> new_esEs24(xuu3110000, xuu6000, ehg, ehh, faa) new_compare6(False, False) -> EQ new_esEs4(xuu311001, xuu601, ty_Integer) -> new_esEs21(xuu311001, xuu601) new_esEs10(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs40(xuu109, xuu111, ty_Integer) -> new_esEs21(xuu109, xuu111) new_esEs9(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs5(xuu311000, xuu600, app(app(ty_@2, dhc), dhd)) -> new_esEs20(xuu311000, xuu600, dhc, dhd) new_lt22(xuu690, xuu700, ty_Integer) -> new_lt13(xuu690, xuu700) new_esEs12(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), bf) -> new_asAs(new_esEs13(xuu3110000, xuu6000, bf), new_esEs12(xuu3110001, xuu6001, bf)) new_ltEs21(xuu82, xuu85, ty_Double) -> new_ltEs14(xuu82, xuu85) new_esEs10(xuu311000, xuu600, app(app(ty_Either, de), df)) -> new_esEs19(xuu311000, xuu600, de, df) new_lt21(xuu81, xuu84, ty_Ordering) -> new_lt12(xuu81, xuu84) new_esEs30(xuu3110000, xuu6000, ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_ltEs11(Just(xuu690), Just(xuu700), app(ty_Maybe, fbh)) -> new_ltEs11(xuu690, xuu700, fbh) new_ltEs11(Just(xuu690), Just(xuu700), ty_Int) -> new_ltEs15(xuu690, xuu700) new_lt20(xuu80, xuu83, app(ty_Maybe, ecg)) -> new_lt11(xuu80, xuu83, ecg) new_ltEs18(Right(xuu690), Right(xuu700), dag, ty_Double) -> new_ltEs14(xuu690, xuu700) new_lt21(xuu81, xuu84, app(ty_Ratio, eeg)) -> new_lt19(xuu81, xuu84, eeg) new_ltEs20(xuu98, xuu99, ty_Double) -> new_ltEs14(xuu98, xuu99) new_lt20(xuu80, xuu83, app(app(ty_@2, ecd), ece)) -> new_lt9(xuu80, xuu83, ecd, ece) new_primMulInt(Neg(xuu3110000), Neg(xuu6010)) -> Pos(new_primMulNat0(xuu3110000, xuu6010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu6000))) -> new_primCmpNat0(Zero, Succ(xuu6000)) new_compare11(LT, EQ) -> LT new_lt7(xuu690, xuu700, ty_Integer) -> new_lt13(xuu690, xuu700) new_esEs7(xuu311002, xuu602, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs24(xuu311002, xuu602, ced, cee, cef) new_compare115(xuu140, xuu141, True, fcg) -> LT new_fsEs(xuu194) -> new_not(new_esEs26(xuu194, GT)) new_esEs8(xuu311001, xuu601, ty_Double) -> new_esEs18(xuu311001, xuu601) new_ltEs21(xuu82, xuu85, app(app(ty_@2, eeh), efa)) -> new_ltEs9(xuu82, xuu85, eeh, efa) new_esEs6(xuu311000, xuu600, ty_Char) -> new_esEs23(xuu311000, xuu600) new_ltEs9(@2(xuu690, xuu691), @2(xuu700, xuu701), ege, egf) -> new_pePe(new_lt22(xuu690, xuu700, ege), new_asAs(new_esEs39(xuu690, xuu700, ege), new_ltEs23(xuu691, xuu701, egf))) new_compare7(Left(xuu311000), Left(xuu600), db, dc) -> new_compare24(xuu311000, xuu600, new_esEs10(xuu311000, xuu600, db), db, dc) new_lt23(xuu109, xuu111, app(ty_Ratio, gaa)) -> new_lt19(xuu109, xuu111, gaa) new_ltEs20(xuu98, xuu99, ty_Int) -> new_ltEs15(xuu98, xuu99) new_esEs19(Right(xuu3110000), Right(xuu6000), dha, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_gt0(xuu22, xuu17) -> new_esEs41(new_compare14(xuu22, xuu17)) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_primMulInt(Pos(xuu3110000), Neg(xuu6010)) -> Neg(new_primMulNat0(xuu3110000, xuu6010)) new_primMulInt(Neg(xuu3110000), Pos(xuu6010)) -> Neg(new_primMulNat0(xuu3110000, xuu6010)) new_esEs13(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs20(xuu98, xuu99, app(ty_Maybe, ccd)) -> new_ltEs11(xuu98, xuu99, ccd) new_esEs36(xuu3110000, xuu6000, app(app(ty_@2, ebb), ebc)) -> new_esEs20(xuu3110000, xuu6000, ebb, ebc) new_compare11(LT, LT) -> EQ new_ltEs22(xuu69, xuu70, ty_@0) -> new_ltEs4(xuu69, xuu70) new_esEs11(xuu311000, xuu600, app(app(ty_@2, fa), fb)) -> new_esEs20(xuu311000, xuu600, fa, fb) new_ltEs7(xuu91, xuu92, ty_Int) -> new_ltEs15(xuu91, xuu92) new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, ehb), ehc), dhb) -> new_esEs19(xuu3110000, xuu6000, ehb, ehc) new_esEs37(xuu81, xuu84, ty_Double) -> new_esEs18(xuu81, xuu84) new_ltEs19(xuu692, xuu702, ty_Ordering) -> new_ltEs12(xuu692, xuu702) new_ltEs19(xuu692, xuu702, ty_Double) -> new_ltEs14(xuu692, xuu702) new_compare110(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, False, hd, he, hf) -> GT new_ltEs7(xuu91, xuu92, app(ty_Maybe, bef)) -> new_ltEs11(xuu91, xuu92, bef) new_esEs30(xuu3110000, xuu6000, app(app(ty_Either, bcg), bch)) -> new_esEs19(xuu3110000, xuu6000, bcg, bch) new_ltEs19(xuu692, xuu702, app(ty_Ratio, cbf)) -> new_ltEs6(xuu692, xuu702, cbf) new_lt23(xuu109, xuu111, ty_Int) -> new_lt15(xuu109, xuu111) new_esEs29(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_ltEs24(xuu110, xuu112, app(app(ty_Either, fge), fgf)) -> new_ltEs18(xuu110, xuu112, fge, fgf) new_asAs(True, xuu127) -> xuu127 new_compare6(True, False) -> GT new_ltEs7(xuu91, xuu92, app(app(app(ty_@3, beg), beh), bfa)) -> new_ltEs16(xuu91, xuu92, beg, beh, bfa) new_ltEs19(xuu692, xuu702, ty_Int) -> new_ltEs15(xuu692, xuu702) new_esEs38(xuu80, xuu83, ty_Int) -> new_esEs14(xuu80, xuu83) new_ltEs20(xuu98, xuu99, app(app(ty_@2, cca), ccb)) -> new_ltEs9(xuu98, xuu99, cca, ccb) new_lt24(xuu31100, xuu60, ty_Ordering) -> new_lt12(xuu31100, xuu60) new_ltEs11(Just(xuu690), Just(xuu700), app(ty_[], fbg)) -> new_ltEs10(xuu690, xuu700, fbg) new_compare11(EQ, GT) -> LT new_esEs21(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs8(xuu311001, xuu601, ty_@0) -> new_esEs16(xuu311001, xuu601) new_lt23(xuu109, xuu111, ty_Double) -> new_lt14(xuu109, xuu111) new_compare111(xuu149, xuu150, False, egb, egc) -> GT new_lt21(xuu81, xuu84, app(app(ty_@2, edf), edg)) -> new_lt9(xuu81, xuu84, edf, edg) new_ltEs18(Right(xuu690), Right(xuu700), dag, ty_Integer) -> new_ltEs13(xuu690, xuu700) new_ltEs19(xuu692, xuu702, app(app(ty_@2, cae), caf)) -> new_ltEs9(xuu692, xuu702, cae, caf) new_esEs9(xuu311000, xuu600, app(ty_Ratio, chc)) -> new_esEs25(xuu311000, xuu600, chc) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Int, dhb) -> new_esEs14(xuu3110000, xuu6000) new_compare10(Nothing, Nothing, ddh) -> EQ new_esEs28(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_primMulNat0(Zero, Zero) -> Zero new_ltEs20(xuu98, xuu99, ty_Ordering) -> new_ltEs12(xuu98, xuu99) new_esEs7(xuu311002, xuu602, ty_Bool) -> new_esEs17(xuu311002, xuu602) new_compare8(xuu311000, xuu600, app(app(ty_@2, gb), gc)) -> new_compare9(xuu311000, xuu600, gb, gc) new_esEs4(xuu311001, xuu601, app(app(ty_@2, dgb), dgc)) -> new_esEs20(xuu311001, xuu601, dgb, dgc) new_esEs19(Right(xuu3110000), Right(xuu6000), dha, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_lt22(xuu690, xuu700, app(app(ty_@2, fch), fda)) -> new_lt9(xuu690, xuu700, fch, fda) new_lt7(xuu690, xuu700, ty_Double) -> new_lt14(xuu690, xuu700) new_ltEs24(xuu110, xuu112, ty_Int) -> new_ltEs15(xuu110, xuu112) new_ltEs18(Right(xuu690), Right(xuu700), dag, ty_Bool) -> new_ltEs8(xuu690, xuu700) new_gt(xuu22, xuu17, ty_Bool) -> new_esEs41(new_compare6(xuu22, xuu17)) new_ltEs20(xuu98, xuu99, ty_Integer) -> new_ltEs13(xuu98, xuu99) new_compare8(xuu311000, xuu600, ty_Ordering) -> new_compare11(xuu311000, xuu600) new_ltEs20(xuu98, xuu99, app(ty_Ratio, cdb)) -> new_ltEs6(xuu98, xuu99, cdb) new_esEs28(xuu3110002, xuu6002, ty_Char) -> new_esEs23(xuu3110002, xuu6002) new_gt(xuu22, xuu17, ty_Integer) -> new_esEs41(new_compare12(xuu22, xuu17)) new_ltEs23(xuu691, xuu701, ty_Char) -> new_ltEs5(xuu691, xuu701) new_esEs6(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_ltEs12(GT, LT) -> False new_ltEs19(xuu692, xuu702, app(ty_Maybe, cah)) -> new_ltEs11(xuu692, xuu702, cah) new_lt7(xuu690, xuu700, ty_Ordering) -> new_lt12(xuu690, xuu700) new_esEs28(xuu3110002, xuu6002, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs24(xuu3110002, xuu6002, bah, bba, bbb) new_esEs9(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_lt7(xuu690, xuu700, ty_Int) -> new_lt15(xuu690, xuu700) new_compare7(Right(xuu311000), Left(xuu600), db, dc) -> GT new_compare27(xuu109, xuu110, xuu111, xuu112, True, ffd, ffe) -> EQ new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs5(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_esEs33(xuu691, xuu701, app(ty_[], bhe)) -> new_esEs12(xuu691, xuu701, bhe) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs18(Right(xuu690), Right(xuu700), dag, app(ty_Maybe, dbc)) -> new_ltEs11(xuu690, xuu700, dbc) new_gt(xuu22, xuu17, app(app(ty_Either, ddc), ddd)) -> new_esEs41(new_compare7(xuu22, xuu17, ddc, ddd)) new_esEs27(GT) -> False new_ltEs24(xuu110, xuu112, app(ty_Maybe, fga)) -> new_ltEs11(xuu110, xuu112, fga) new_esEs7(xuu311002, xuu602, ty_Int) -> new_esEs14(xuu311002, xuu602) new_compare16(Float(xuu311000, Neg(xuu3110010)), Float(xuu600, Neg(xuu6010))) -> new_compare14(new_sr0(xuu311000, Neg(xuu6010)), new_sr0(Neg(xuu3110010), xuu600)) new_ltEs7(xuu91, xuu92, ty_Integer) -> new_ltEs13(xuu91, xuu92) new_esEs8(xuu311001, xuu601, ty_Bool) -> new_esEs17(xuu311001, xuu601) new_lt23(xuu109, xuu111, ty_Ordering) -> new_lt12(xuu109, xuu111) new_esEs23(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_compare13(Double(xuu311000, Pos(xuu3110010)), Double(xuu600, Pos(xuu6010))) -> new_compare14(new_sr0(xuu311000, Pos(xuu6010)), new_sr0(Pos(xuu3110010), xuu600)) new_lt24(xuu31100, xuu60, app(ty_Ratio, dea)) -> new_lt19(xuu31100, xuu60, dea) new_ltEs24(xuu110, xuu112, ty_Ordering) -> new_ltEs12(xuu110, xuu112) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_ltEs18(Right(xuu690), Right(xuu700), dag, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_ltEs16(xuu690, xuu700, dbd, dbe, dbf) new_lt23(xuu109, xuu111, app(ty_Maybe, fhc)) -> new_lt11(xuu109, xuu111, fhc) new_esEs24(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), hg, hh, baa) -> new_asAs(new_esEs30(xuu3110000, xuu6000, hg), new_asAs(new_esEs29(xuu3110001, xuu6001, hh), new_esEs28(xuu3110002, xuu6002, baa))) new_gt(xuu22, xuu17, ty_Int) -> new_gt0(xuu22, xuu17) new_primCmpInt(Neg(Zero), Neg(Succ(xuu6000))) -> new_primCmpNat0(Succ(xuu6000), Zero) new_esEs8(xuu311001, xuu601, app(ty_Maybe, cfe)) -> new_esEs22(xuu311001, xuu601, cfe) new_esEs29(xuu3110001, xuu6001, app(app(ty_Either, bbe), bbf)) -> new_esEs19(xuu3110001, xuu6001, bbe, bbf) new_esEs5(xuu311000, xuu600, app(ty_Ratio, bfe)) -> new_esEs25(xuu311000, xuu600, bfe) new_esEs10(xuu311000, xuu600, app(app(ty_@2, dg), dh)) -> new_esEs20(xuu311000, xuu600, dg, dh) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs11(Just(xuu690), Just(xuu700), app(app(app(ty_@3, fca), fcb), fcc)) -> new_ltEs16(xuu690, xuu700, fca, fcb, fcc) new_esEs38(xuu80, xuu83, ty_Double) -> new_esEs18(xuu80, xuu83) new_ltEs18(Right(xuu690), Right(xuu700), dag, ty_Ordering) -> new_ltEs12(xuu690, xuu700) new_esEs35(xuu3110001, xuu6001, app(app(ty_@2, dhh), eaa)) -> new_esEs20(xuu3110001, xuu6001, dhh, eaa) new_esEs9(xuu311000, xuu600, app(ty_Maybe, cgg)) -> new_esEs22(xuu311000, xuu600, cgg) new_esEs19(Right(xuu3110000), Right(xuu6000), dha, app(app(ty_Either, fad), fae)) -> new_esEs19(xuu3110000, xuu6000, fad, fae) new_ltEs16(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bff, bfg, bfh) -> new_pePe(new_lt7(xuu690, xuu700, bff), new_asAs(new_esEs34(xuu690, xuu700, bff), new_pePe(new_lt8(xuu691, xuu701, bfg), new_asAs(new_esEs33(xuu691, xuu701, bfg), new_ltEs19(xuu692, xuu702, bfh))))) new_compare8(xuu311000, xuu600, ty_Int) -> new_compare14(xuu311000, xuu600) new_lt20(xuu80, xuu83, ty_Double) -> new_lt14(xuu80, xuu83) new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_[], eha), dhb) -> new_esEs12(xuu3110000, xuu6000, eha) new_compare112(xuu156, xuu157, False, dcb, dcc) -> GT new_ltEs7(xuu91, xuu92, ty_Bool) -> new_ltEs8(xuu91, xuu92) new_esEs6(xuu311000, xuu600, app(ty_Ratio, gbc)) -> new_esEs25(xuu311000, xuu600, gbc) new_ltEs22(xuu69, xuu70, ty_Bool) -> new_ltEs8(xuu69, xuu70) new_not(False) -> True new_esEs28(xuu3110002, xuu6002, app(ty_[], bab)) -> new_esEs12(xuu3110002, xuu6002, bab) new_lt24(xuu31100, xuu60, app(ty_Maybe, ddh)) -> new_lt11(xuu31100, xuu60, ddh) new_esEs28(xuu3110002, xuu6002, ty_Ordering) -> new_esEs26(xuu3110002, xuu6002) new_compare116(xuu166, xuu167, xuu168, xuu169, True, xuu171, deb, dec) -> new_compare113(xuu166, xuu167, xuu168, xuu169, True, deb, dec) new_ltEs21(xuu82, xuu85, app(ty_Maybe, efc)) -> new_ltEs11(xuu82, xuu85, efc) new_esEs13(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_ltEs21(xuu82, xuu85, ty_@0) -> new_ltEs4(xuu82, xuu85) new_compare114(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, True, xuu188, hd, he, hf) -> new_compare110(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, True, hd, he, hf) new_esEs9(xuu311000, xuu600, ty_Bool) -> new_esEs17(xuu311000, xuu600) new_ltEs18(Left(xuu690), Left(xuu700), app(ty_[], chg), chd) -> new_ltEs10(xuu690, xuu700, chg) new_lt8(xuu691, xuu701, app(app(ty_@2, bhc), bhd)) -> new_lt9(xuu691, xuu701, bhc, bhd) new_esEs36(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs22(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, deh), dfa)) -> new_esEs20(xuu3110000, xuu6000, deh, dfa) new_esEs41(LT) -> False new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Double, dhb) -> new_esEs18(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, app(app(ty_Either, bac), bad)) -> new_esEs19(xuu3110002, xuu6002, bac, bad) new_ltEs18(Right(xuu690), Right(xuu700), dag, ty_Char) -> new_ltEs5(xuu690, xuu700) new_ltEs24(xuu110, xuu112, app(app(app(ty_@3, fgb), fgc), fgd)) -> new_ltEs16(xuu110, xuu112, fgb, fgc, fgd) new_sr0(xuu311000, xuu601) -> new_primMulInt(xuu311000, xuu601) new_lt24(xuu31100, xuu60, ty_Int) -> new_lt15(xuu31100, xuu60) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(xuu110, xuu112, ty_Bool) -> new_ltEs8(xuu110, xuu112) new_ltEs23(xuu691, xuu701, ty_@0) -> new_ltEs4(xuu691, xuu701) new_esEs19(Right(xuu3110000), Right(xuu6000), dha, app(ty_Maybe, fah)) -> new_esEs22(xuu3110000, xuu6000, fah) new_esEs37(xuu81, xuu84, app(app(ty_@2, edf), edg)) -> new_esEs20(xuu81, xuu84, edf, edg) new_esEs4(xuu311001, xuu601, ty_Double) -> new_esEs18(xuu311001, xuu601) new_esEs9(xuu311000, xuu600, ty_Integer) -> new_esEs21(xuu311000, xuu600) new_esEs6(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_ltEs23(xuu691, xuu701, app(ty_Maybe, fee)) -> new_ltEs11(xuu691, xuu701, fee) new_ltEs22(xuu69, xuu70, ty_Char) -> new_ltEs5(xuu69, xuu70) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(EQ, EQ) -> True new_ltEs12(EQ, LT) -> False new_ltEs18(Right(xuu690), Right(xuu700), dag, ty_Int) -> new_ltEs15(xuu690, xuu700) new_ltEs21(xuu82, xuu85, ty_Ordering) -> new_ltEs12(xuu82, xuu85) new_esEs5(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_ltEs18(Left(xuu690), Left(xuu700), ty_Double, chd) -> new_ltEs14(xuu690, xuu700) new_ltEs7(xuu91, xuu92, ty_Ordering) -> new_ltEs12(xuu91, xuu92) new_esEs26(LT, LT) -> True new_esEs30(xuu3110000, xuu6000, app(ty_[], bcf)) -> new_esEs12(xuu3110000, xuu6000, bcf) new_esEs40(xuu109, xuu111, ty_Int) -> new_esEs14(xuu109, xuu111) new_esEs25(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), bfe) -> new_asAs(new_esEs32(xuu3110000, xuu6000, bfe), new_esEs31(xuu3110001, xuu6001, bfe)) new_esEs12([], [], bf) -> True new_ltEs22(xuu69, xuu70, ty_Ordering) -> new_ltEs12(xuu69, xuu70) new_esEs4(xuu311001, xuu601, ty_Int) -> new_esEs14(xuu311001, xuu601) new_esEs39(xuu690, xuu700, ty_Int) -> new_esEs14(xuu690, xuu700) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs12(LT, EQ) -> True new_ltEs23(xuu691, xuu701, ty_Integer) -> new_ltEs13(xuu691, xuu701) new_ltEs10(xuu69, xuu70, egg) -> new_fsEs(new_compare1(xuu69, xuu70, egg)) new_ltEs23(xuu691, xuu701, ty_Bool) -> new_ltEs8(xuu691, xuu701) new_ltEs7(xuu91, xuu92, ty_Char) -> new_ltEs5(xuu91, xuu92) new_primEqNat0(Zero, Zero) -> True new_ltEs24(xuu110, xuu112, ty_Integer) -> new_ltEs13(xuu110, xuu112) new_esEs13(xuu3110000, xuu6000, app(app(ty_@2, cb), cc)) -> new_esEs20(xuu3110000, xuu6000, cb, cc) new_asAs(False, xuu127) -> False new_ltEs22(xuu69, xuu70, app(ty_Maybe, egh)) -> new_ltEs11(xuu69, xuu70, egh) new_esEs8(xuu311001, xuu601, app(ty_Ratio, cga)) -> new_esEs25(xuu311001, xuu601, cga) new_ltEs21(xuu82, xuu85, ty_Char) -> new_ltEs5(xuu82, xuu85) new_ltEs21(xuu82, xuu85, ty_Int) -> new_ltEs15(xuu82, xuu85) new_compare7(Right(xuu311000), Right(xuu600), db, dc) -> new_compare25(xuu311000, xuu600, new_esEs11(xuu311000, xuu600, dc), db, dc) new_esEs27(EQ) -> False The set Q consists of the following terms: new_esEs33(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt11(x0, x1, x2) new_lt24(x0, x1, app(ty_Ratio, x2)) new_esEs22(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(x0, x1) new_lt8(x0, x1, ty_Char) new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare25(x0, x1, False, x2, x3) new_ltEs19(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_esEs13(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Integer) new_primCompAux00(x0, GT) new_esEs11(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt23(x0, x1, ty_@0) new_gt(x0, x1, ty_Float) new_compare6(False, True) new_compare6(True, False) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, ty_Ordering) new_gt(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Float) new_lt8(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs22(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primEqNat0(Zero, Succ(x0)) new_esEs9(x0, x1, ty_Char) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs38(x0, x1, ty_Float) new_lt23(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_esEs22(Just(x0), Just(x1), ty_@0) new_esEs27(GT) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt4(x0, x1) new_esEs30(x0, x1, ty_Double) new_esEs22(Nothing, Just(x0), x1) new_ltEs12(GT, EQ) new_esEs33(x0, x1, ty_Integer) new_ltEs12(EQ, GT) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Integer) new_compare114(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Ordering) new_ltEs18(Right(x0), Right(x1), x2, ty_Float) new_lt16(x0, x1, x2, x3, x4) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs37(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Int) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Just(x0), Just(x1), ty_Int) new_ltEs11(Nothing, Nothing, x0) new_ltEs24(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(False, x0) new_compare10(Just(x0), Just(x1), x2) new_primEqNat0(Succ(x0), Succ(x1)) new_compare10(Nothing, Just(x0), x1) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Just(x0), Nothing, x1) new_esEs7(x0, x1, ty_Char) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Bool) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs39(x0, x1, ty_Char) new_lt7(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Char) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Ordering) new_esEs26(LT, EQ) new_esEs26(EQ, LT) new_compare16(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare16(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) new_compare111(x0, x1, False, x2, x3) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Double) new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Int) new_compare116(x0, x1, x2, x3, False, x4, x5, x6) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs12(EQ, LT) new_ltEs12(LT, EQ) new_esEs29(x0, x1, ty_Float) new_esEs13(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Int) new_compare8(x0, x1, ty_@0) new_ltEs11(Just(x0), Just(x1), ty_@0) new_sr0(x0, x1) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_[], x2)) new_gt0(x0, x1) new_esEs9(x0, x1, ty_Ordering) new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs30(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Char) new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt8(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare1(:(x0, x1), [], x2) new_ltEs7(x0, x1, ty_Char) new_ltEs18(Left(x0), Left(x1), ty_Float, x2) new_ltEs8(True, False) new_ltEs8(False, True) new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) new_gt(x0, x1, ty_Int) new_esEs19(Left(x0), Left(x1), ty_@0, x2) new_ltEs23(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_Double) new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs12(LT, LT) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs18(Left(x0), Left(x1), ty_Int, x2) new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs29(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1, ty_Bool) new_esEs14(x0, x1) new_compare11(LT, LT) new_esEs39(x0, x1, ty_Float) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, False, x2) new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(@0, @0) new_esEs11(x0, x1, ty_@0) new_esEs13(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_@0) new_esEs26(EQ, EQ) new_esEs8(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Double) new_esEs39(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Char) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, ty_Char) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_@0) new_ltEs18(Right(x0), Right(x1), x2, ty_Int) new_lt21(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Int) new_compare11(EQ, LT) new_compare11(LT, EQ) new_gt(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Integer) new_compare11(GT, GT) new_lt21(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Int) new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs27(LT) new_ltEs18(Right(x0), Right(x1), x2, ty_Char) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs37(x0, x1, ty_Char) new_esEs40(x0, x1, ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Integer) new_esEs17(True, True) new_esEs36(x0, x1, ty_@0) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt22(x0, x1, ty_@0) new_ltEs7(x0, x1, ty_Double) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_@0) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Zero) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare24(x0, x1, False, x2, x3) new_ltEs21(x0, x1, ty_Double) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_esEs39(x0, x1, ty_Bool) new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primPlusNat0(Zero, Zero) new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) new_esEs30(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Bool) new_compare8(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Integer) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_not(True) new_compare24(x0, x1, True, x2, x3) new_esEs35(x0, x1, ty_Bool) new_lt21(x0, x1, ty_Bool) new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_lt21(x0, x1, ty_Float) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Float) new_asAs(True, x0) new_esEs39(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Int) new_lt13(x0, x1) new_lt24(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Float) new_lt24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs40(x0, x1, app(ty_[], x2)) new_lt24(x0, x1, ty_Bool) new_compare7(Left(x0), Right(x1), x2, x3) new_compare7(Right(x0), Left(x1), x2, x3) new_lt7(x0, x1, app(ty_[], x2)) new_esEs17(False, True) new_esEs17(True, False) new_ltEs23(x0, x1, ty_Integer) new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs7(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs15(Float(x0, x1), Float(x2, x3)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt24(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_esEs28(x0, x1, ty_Integer) new_lt24(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Right(x0), Right(x1), x2, ty_@0) new_esEs30(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_@0) new_compare113(x0, x1, x2, x3, True, x4, x5) new_esEs40(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), ty_Char) new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs28(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Char) new_compare8(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_Bool) new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare25(x0, x1, True, x2, x3) new_lt8(x0, x1, ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_compare8(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs8(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Int) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs26(EQ, GT) new_esEs26(GT, EQ) new_compare8(x0, x1, app(app(ty_Either, x2), x3)) new_compare16(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs23(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Float) new_ltEs7(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_lt24(x0, x1, ty_Float) new_gt(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare14(x0, x1) new_esEs13(x0, x1, ty_@0) new_lt7(x0, x1, ty_@0) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(Char(x0), Char(x1)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Double) new_esEs34(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Bool) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Float) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Float) new_compare8(x0, x1, ty_Float) new_primEqNat0(Zero, Zero) new_lt8(x0, x1, ty_@0) new_esEs40(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_@0) new_esEs39(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Char) new_compare13(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_not(False) new_compare113(x0, x1, x2, x3, False, x4, x5) new_ltEs23(x0, x1, ty_Float) new_primCompAux00(x0, LT) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(x0, x1, x2) new_ltEs12(LT, GT) new_compare27(x0, x1, x2, x3, False, x4, x5) new_ltEs18(Left(x0), Left(x1), ty_@0, x2) new_ltEs12(GT, LT) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_lt23(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_Integer) new_ltEs8(True, True) new_lt6(x0, x1) new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare116(x0, x1, x2, x3, True, x4, x5, x6) new_esEs33(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_lt20(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12([], :(x0, x1), x2) new_esEs41(LT) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(x0, x1, ty_Bool) new_compare112(x0, x1, False, x2, x3) new_esEs37(x0, x1, ty_Integer) new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt8(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Int) new_esEs22(Just(x0), Just(x1), ty_Ordering) new_ltEs11(Just(x0), Just(x1), ty_Float) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_compare11(GT, LT) new_compare11(LT, GT) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs8(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_esEs22(Just(x0), Just(x1), ty_Char) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs19(Right(x0), Right(x1), x2, ty_Float) new_lt7(x0, x1, ty_Ordering) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs13(x0, x1, ty_Ordering) new_fsEs(x0) new_ltEs13(x0, x1) new_esEs6(x0, x1, app(ty_[], x2)) new_compare18(Char(x0), Char(x1)) new_esEs25(:%(x0, x1), :%(x2, x3), x4) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_@0) new_esEs9(x0, x1, ty_@0) new_lt7(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, ty_Char) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1) new_lt23(x0, x1, ty_Char) new_esEs17(False, False) new_esEs7(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Integer) new_esEs26(LT, GT) new_esEs26(GT, LT) new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Int) new_compare12(Integer(x0), Integer(x1)) new_compare17(@0, @0) new_ltEs20(x0, x1, ty_Char) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs23(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Float) new_lt8(x0, x1, ty_Int) new_lt21(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Integer) new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs22(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare8(x0, x1, app(ty_[], x2)) new_ltEs8(False, False) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Double) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Just(x0), Just(x1), app(ty_[], x2)) new_esEs19(Right(x0), Right(x1), x2, ty_Integer) new_esEs19(Left(x0), Right(x1), x2, x3) new_esEs19(Right(x0), Left(x1), x2, x3) new_lt8(x0, x1, ty_Bool) new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs23(x0, x1, ty_Ordering) new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) new_esEs12([], [], x0) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs11(x0, x1, ty_Ordering) new_esEs13(x0, x1, app(ty_[], x2)) new_compare6(False, False) new_ltEs21(x0, x1, app(ty_[], x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs35(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_[], x2)) new_compare115(x0, x1, True, x2) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_lt18(x0, x1, x2, x3) new_ltEs21(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Bool) new_ltEs7(x0, x1, ty_Integer) new_lt9(x0, x1, x2, x3) new_primCmpNat0(Zero, Succ(x0)) new_lt24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Integer) new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare1([], [], x0) new_esEs19(Right(x0), Right(x1), x2, ty_@0) new_lt21(x0, x1, ty_Char) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs41(GT) new_ltEs19(x0, x1, ty_Double) new_esEs4(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Integer) new_compare8(x0, x1, app(ty_Maybe, x2)) new_compare1([], :(x0, x1), x2) new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare11(EQ, EQ) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Int) new_esEs12(:(x0, x1), :(x2, x3), x4) new_esEs21(Integer(x0), Integer(x1)) new_lt10(x0, x1, x2) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare6(True, True) new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt14(x0, x1) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt24(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Double) new_esEs26(GT, GT) new_esEs28(x0, x1, app(ty_[], x2)) new_ltEs18(Left(x0), Right(x1), x2, x3) new_ltEs18(Right(x0), Left(x1), x2, x3) new_esEs4(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_@0) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Double) new_lt23(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs27(EQ) new_ltEs21(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs36(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare9(@2(x0, x1), @2(x2, x3), x4, x5) new_compare112(x0, x1, True, x2, x3) new_compare10(Nothing, Nothing, x0) new_ltEs12(GT, GT) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_ltEs7(x0, x1, ty_Bool) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt24(x0, x1, ty_Integer) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, ty_Int) new_compare13(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare13(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare8(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs11(Just(x0), Just(x1), ty_Double) new_compare27(x0, x1, x2, x3, True, x4, x5) new_lt24(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs12(:(x0, x1), [], x2) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Int) new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt22(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Float) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Bool) new_ltEs7(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_@0) new_lt19(x0, x1, x2) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_primCmpNat0(Succ(x0), Zero) new_ltEs11(Nothing, Just(x0), x1) new_compare10(Just(x0), Nothing, x1) new_esEs11(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs28(x0, x1, ty_@0) new_lt15(x0, x1) new_gt(x0, x1, ty_Char) new_esEs13(x0, x1, ty_Char) new_compare8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_ltEs18(Left(x0), Left(x1), ty_Char, x2) new_esEs40(x0, x1, ty_Float) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_asAs(False, x0) new_esEs5(x0, x1, ty_@0) new_compare8(x0, x1, app(ty_Ratio, x2)) new_sr(Integer(x0), Integer(x1)) new_esEs7(x0, x1, ty_Float) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs19(Left(x0), Left(x1), ty_Double, x2) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_ltEs17(x0, x1) new_esEs26(LT, LT) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(x0, x1) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_@0) new_lt24(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Double) new_primMulNat0(Zero, Zero) new_esEs36(x0, x1, ty_Integer) new_esEs19(Right(x0), Right(x1), x2, ty_Double) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Int) new_primCompAux00(x0, EQ) new_compare115(x0, x1, False, x2) new_ltEs18(Right(x0), Right(x1), x2, ty_Double) new_esEs37(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_gt(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Just(x0), Nothing, x1) new_esEs22(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs22(Nothing, Nothing, x0) new_pePe(True, x0) new_ltEs24(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_lt24(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs40(x0, x1, ty_Double) new_esEs19(Right(x0), Right(x1), x2, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Integer) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(x0, x1, ty_Float) new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Right(x0), Right(x1), x2, ty_Char) new_compare7(Right(x0), Right(x1), x2, x3) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Ordering) new_esEs22(Just(x0), Just(x1), ty_Float) new_compare114(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_gt(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Char) new_compare28(x0, x1, True, x2) new_esEs7(x0, x1, ty_Ordering) new_gt(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_esEs22(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt22(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_@0) new_esEs4(x0, x1, ty_Double) new_lt22(x0, x1, ty_Char) new_esEs40(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Zero) new_ltEs24(x0, x1, ty_@0) new_ltEs12(EQ, EQ) new_compare111(x0, x1, True, x2, x3) new_esEs36(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Bool) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt21(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_compare7(Left(x0), Left(x1), x2, x3) new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs19(Right(x0), Right(x1), x2, ty_Bool) new_ltEs6(x0, x1, x2) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_esEs36(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_compare15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Float) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Ordering) new_ltEs7(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs19(Left(x0), Left(x1), ty_Integer, x2) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(x0, x1, ty_Ordering) new_esEs19(Left(x0), Left(x1), ty_Float, x2) new_esEs4(x0, x1, ty_Ordering) new_lt17(x0, x1) new_ltEs7(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Char) new_lt23(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_esEs22(Just(x0), Just(x1), ty_Bool) new_gt(x0, x1, app(ty_Maybe, x2)) new_esEs41(EQ) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Ordering) new_compare11(GT, EQ) new_compare11(EQ, GT) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_compare13(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt5(x0, x1) new_esEs5(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Double) new_lt23(x0, x1, ty_Ordering) new_esEs19(Left(x0), Left(x1), ty_Bool, x2) new_esEs5(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Char) new_esEs22(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Double) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Left(x0), Left(x1), ty_Int, x2) new_esEs39(x0, x1, ty_Double) new_esEs24(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt(x0, x1, ty_Double) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_ltEs7(x0, x1, ty_@0) new_primPlusNat0(Zero, Succ(x0)) new_ltEs22(x0, x1, ty_Char) new_esEs13(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) new_lt12(x0, x1) new_esEs37(x0, x1, ty_Ordering) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Left(x0), Left(x1), ty_Double, x2) new_esEs22(Just(x0), Just(x1), ty_Integer) new_esEs19(Left(x0), Left(x1), ty_Char, x2) new_esEs5(x0, x1, ty_Float) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Bool) new_esEs4(x0, x1, app(ty_[], x2)) new_compare16(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs8(x0, x1, ty_Char) new_primCmpNat0(Zero, Zero) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_addToFM_C(Branch(xuu60, xuu61, xuu62, xuu63, xuu64), xuu31100, xuu31101, bd, be) -> new_addToFM_C2(xuu60, xuu61, xuu62, xuu63, xuu64, xuu31100, xuu31101, new_lt24(xuu31100, xuu60, bd), bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 7, 4 >= 9, 5 >= 10 *new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, h, ba) -> new_addToFM_C1(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_gt(xuu22, xuu17, h), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 9 >= 9, 10 >= 10 *new_addToFM_C1(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, bb, bc) -> new_addToFM_C(xuu38, xuu39, xuu40, bb, bc) The graph contains the following edges 5 >= 1, 6 >= 2, 7 >= 3, 9 >= 4, 10 >= 5 *new_addToFM_C2(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, h, ba) -> new_addToFM_C(xuu20, xuu22, xuu23, h, ba) The graph contains the following edges 4 >= 1, 6 >= 2, 7 >= 3, 9 >= 4, 10 >= 5 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, hg), hh)) -> new_esEs1(xuu3110000, xuu6000, hg, hh) new_esEs0(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cf), cg), cc) -> new_esEs1(xuu3110000, xuu6000, cf, cg) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), eg, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs3(xuu3110001, xuu6001, fg, fh, ga) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, bdc), bdd), baf, bca) -> new_esEs0(xuu3110000, xuu6000, bdc, bdd) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), eg, app(app(ty_Either, fa), fb)) -> new_esEs0(xuu3110001, xuu6001, fa, fb) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, app(app(ty_Either, bcb), bcc), bca) -> new_esEs0(xuu3110001, xuu6001, bcb, bcc) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, gd), ge), gc) -> new_esEs0(xuu3110000, xuu6000, gd, ge) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, baf, app(app(ty_Either, bah), bba)) -> new_esEs0(xuu3110002, xuu6002, bah, bba) new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, bd), be)) -> new_esEs1(xuu3110000, xuu6000, bd, be) new_esEs2(Just(xuu3110000), Just(xuu6000), app(ty_[], hd)) -> new_esEs(xuu3110000, xuu6000, hd) new_esEs0(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, da), cc) -> new_esEs2(xuu3110000, xuu6000, da) new_esEs2(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(xuu3110000, xuu6000, bab, bac, bad) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(app(ty_@3, bdh), bea), beb), baf, bca) -> new_esEs3(xuu3110000, xuu6000, bdh, bea, beb) new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs3(xuu3110000, xuu6000, bg, bh, ca) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], gb), gc) -> new_esEs(xuu3110000, xuu6000, gb) new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xuu3110000, xuu6000, dg, dh) new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), h) -> new_esEs(xuu3110001, xuu6001, h) new_esEs2(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, baa)) -> new_esEs2(xuu3110000, xuu6000, baa) new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], ba)) -> new_esEs(xuu3110000, xuu6000, ba) new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(ty_[], df)) -> new_esEs(xuu3110000, xuu6000, df) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(xuu3110002, xuu6002, bbe, bbf, bbg) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), eg, app(ty_Maybe, ff)) -> new_esEs2(xuu3110001, xuu6001, ff) new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(ty_Maybe, ec)) -> new_esEs2(xuu3110000, xuu6000, ec) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, gh), gc) -> new_esEs2(xuu3110000, xuu6000, gh) new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, bf)) -> new_esEs2(xuu3110000, xuu6000, bf) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_@2, bde), bdf), baf, bca) -> new_esEs1(xuu3110000, xuu6000, bde, bdf) new_esEs0(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xuu3110000, xuu6000, cd, ce) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, ha), hb), hc), gc) -> new_esEs3(xuu3110000, xuu6000, ha, hb, hc) new_esEs0(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(xuu3110000, xuu6000, db, dc, dd) new_esEs2(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, he), hf)) -> new_esEs0(xuu3110000, xuu6000, he, hf) new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xuu3110000, xuu6000, ed, ee, ef) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, app(app(app(ty_@3, bcg), bch), bda), bca) -> new_esEs3(xuu3110001, xuu6001, bcg, bch, bda) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, app(ty_[], bbh), bca) -> new_esEs(xuu3110001, xuu6001, bbh) new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(app(ty_@2, ea), eb)) -> new_esEs1(xuu3110000, xuu6000, ea, eb) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, app(app(ty_@2, bcd), bce), bca) -> new_esEs1(xuu3110001, xuu6001, bcd, bce) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, baf, app(ty_[], bag)) -> new_esEs(xuu3110002, xuu6002, bag) new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, bb), bc)) -> new_esEs0(xuu3110000, xuu6000, bb, bc) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_@2, gf), gg), gc) -> new_esEs1(xuu3110000, xuu6000, gf, gg) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), eg, app(ty_[], eh)) -> new_esEs(xuu3110001, xuu6001, eh) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, baf, app(ty_Maybe, bbd)) -> new_esEs2(xuu3110002, xuu6002, bbd) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], bdb), baf, bca) -> new_esEs(xuu3110000, xuu6000, bdb) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, baf, app(app(ty_@2, bbb), bbc)) -> new_esEs1(xuu3110002, xuu6002, bbb, bbc) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_Maybe, bdg), baf, bca) -> new_esEs2(xuu3110000, xuu6000, bdg) new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), eg, app(app(ty_@2, fc), fd)) -> new_esEs1(xuu3110001, xuu6001, fc, fd) new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, app(ty_Maybe, bcf), bca) -> new_esEs2(xuu3110001, xuu6001, bcf) new_esEs0(Left(xuu3110000), Left(xuu6000), app(ty_[], cb), cc) -> new_esEs(xuu3110000, xuu6000, cb) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_Maybe, bf)) -> new_esEs2(xuu3110000, xuu6000, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, baa)) -> new_esEs2(xuu3110000, xuu6000, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_Either, bb), bc)) -> new_esEs0(xuu3110000, xuu6000, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, he), hf)) -> new_esEs0(xuu3110000, xuu6000, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(ty_@2, bd), be)) -> new_esEs1(xuu3110000, xuu6000, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, hg), hh)) -> new_esEs1(xuu3110000, xuu6000, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs3(xuu3110000, xuu6000, bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(xuu3110000, xuu6000, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(xuu3110000), Just(xuu6000), app(ty_[], hd)) -> new_esEs(xuu3110000, xuu6000, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), eg, app(ty_Maybe, ff)) -> new_esEs2(xuu3110001, xuu6001, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_Maybe, gh), gc) -> new_esEs2(xuu3110000, xuu6000, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), eg, app(app(ty_Either, fa), fb)) -> new_esEs0(xuu3110001, xuu6001, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_Either, gd), ge), gc) -> new_esEs0(xuu3110000, xuu6000, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(ty_@2, gf), gg), gc) -> new_esEs1(xuu3110000, xuu6000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), eg, app(app(ty_@2, fc), fd)) -> new_esEs1(xuu3110001, xuu6001, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), eg, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs3(xuu3110001, xuu6001, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(app(app(ty_@3, ha), hb), hc), gc) -> new_esEs3(xuu3110000, xuu6000, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), app(ty_[], gb), gc) -> new_esEs(xuu3110000, xuu6000, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), eg, app(ty_[], eh)) -> new_esEs(xuu3110001, xuu6001, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, baf, app(ty_Maybe, bbd)) -> new_esEs2(xuu3110002, xuu6002, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_Maybe, bdg), baf, bca) -> new_esEs2(xuu3110000, xuu6000, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, app(ty_Maybe, bcf), bca) -> new_esEs2(xuu3110001, xuu6001, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, da), cc) -> new_esEs2(xuu3110000, xuu6000, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(ty_Maybe, ec)) -> new_esEs2(xuu3110000, xuu6000, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_Either, bdc), bdd), baf, bca) -> new_esEs0(xuu3110000, xuu6000, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, app(app(ty_Either, bcb), bcc), bca) -> new_esEs0(xuu3110001, xuu6001, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, baf, app(app(ty_Either, bah), bba)) -> new_esEs0(xuu3110002, xuu6002, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(xuu3110000, xuu6000, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(xuu3110000, xuu6000, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(ty_@2, bde), bdf), baf, bca) -> new_esEs1(xuu3110000, xuu6000, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, app(app(ty_@2, bcd), bce), bca) -> new_esEs1(xuu3110001, xuu6001, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, baf, app(app(ty_@2, bbb), bbc)) -> new_esEs1(xuu3110002, xuu6002, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(app(app(ty_@3, bdh), bea), beb), baf, bca) -> new_esEs3(xuu3110000, xuu6000, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(xuu3110002, xuu6002, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, app(app(app(ty_@3, bcg), bch), bda), bca) -> new_esEs3(xuu3110001, xuu6001, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, app(ty_[], bbh), bca) -> new_esEs(xuu3110001, xuu6001, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bae, baf, app(ty_[], bag)) -> new_esEs(xuu3110002, xuu6002, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), app(ty_[], bdb), baf, bca) -> new_esEs(xuu3110000, xuu6000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cf), cg), cc) -> new_esEs1(xuu3110000, xuu6000, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(app(ty_@2, ea), eb)) -> new_esEs1(xuu3110000, xuu6000, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(xuu3110000, xuu6000, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(xuu3110000, xuu6000, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(Right(xuu3110000), Right(xuu6000), de, app(ty_[], df)) -> new_esEs(xuu3110000, xuu6000, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(xuu3110000), Left(xuu6000), app(ty_[], cb), cc) -> new_esEs(xuu3110000, xuu6000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), h) -> new_esEs(xuu3110001, xuu6001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), app(ty_[], ba)) -> new_esEs(xuu3110000, xuu6000, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(xuu31100000), Succ(xuu60100)) -> new_primMulNat(xuu31100000, Succ(xuu60100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(xuu31100000), Succ(xuu60100)) -> new_primMulNat(xuu31100000, Succ(xuu60100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_foldl(xuu6, :(xuu3110, xuu3111), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba), xuu3111, h, ba) The TRS R consists of the following rules: new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs36(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs40(xuu109, xuu111, app(ty_Ratio, gbe)) -> new_esEs25(xuu109, xuu111, gbe) new_ltEs21(xuu82, xuu85, ty_Bool) -> new_ltEs8(xuu82, xuu85) new_lt22(xuu690, xuu700, ty_Char) -> new_lt6(xuu690, xuu700) new_primPlusNat0(Zero, Zero) -> Zero new_esEs33(xuu691, xuu701, ty_@0) -> new_esEs16(xuu691, xuu701) new_pePe(True, xuu199) -> True new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_compare13(Double(xuu311000, Pos(xuu3110010)), Double(xuu600, Neg(xuu6010))) -> new_compare14(new_sr0(xuu311000, Pos(xuu6010)), new_sr0(Neg(xuu3110010), xuu600)) new_compare13(Double(xuu311000, Neg(xuu3110010)), Double(xuu600, Pos(xuu6010))) -> new_compare14(new_sr0(xuu311000, Neg(xuu6010)), new_sr0(Pos(xuu3110010), xuu600)) new_esEs26(LT, GT) -> False new_esEs26(GT, LT) -> False new_esEs22(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, fbf), fbg)) -> new_esEs19(xuu3110000, xuu6000, fbf, fbg) new_esEs29(xuu3110001, xuu6001, ty_Integer) -> new_esEs21(xuu3110001, xuu6001) new_ltEs12(LT, LT) -> True new_esEs8(xuu311001, xuu601, ty_Ordering) -> new_esEs26(xuu311001, xuu601) new_esEs35(xuu3110001, xuu6001, app(ty_[], fcg)) -> new_esEs12(xuu3110001, xuu6001, fcg) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs7(xuu311002, xuu602, app(ty_Ratio, egd)) -> new_esEs25(xuu311002, xuu602, egd) new_addToFM_C20(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, True, bb, bc) -> new_mkBalBranch(xuu17, xuu18, new_addToFM_C0(xuu20, xuu22, xuu23, bb, bc), xuu21, bb, bc) new_esEs26(LT, EQ) -> False new_esEs26(EQ, LT) -> False new_mkBalBranch6MkBalBranch3(xuu21, xuu17, xuu18, xuu42, False, bb, bc) -> new_mkBranchResult(xuu17, xuu18, xuu21, xuu42, bb, bc) new_compare19(:%(xuu311000, xuu311001), :%(xuu600, xuu601), ty_Integer) -> new_compare12(new_sr(xuu311000, xuu601), new_sr(xuu600, xuu311001)) new_lt21(xuu81, xuu84, app(ty_Maybe, cdc)) -> new_lt11(xuu81, xuu84, cdc) new_esEs11(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_emptyFM(h, ba) -> EmptyFM new_esEs37(xuu81, xuu84, app(ty_Maybe, cdc)) -> new_esEs22(xuu81, xuu84, cdc) new_compare116(xuu166, xuu167, xuu168, xuu169, False, xuu171, fba, fbb) -> new_compare113(xuu166, xuu167, xuu168, xuu169, xuu171, fba, fbb) new_lt21(xuu81, xuu84, app(app(app(ty_@3, cdd), cde), cdf)) -> new_lt16(xuu81, xuu84, cdd, cde, cdf) new_compare111(xuu149, xuu150, True, ffc, ffd) -> LT new_esEs36(xuu3110000, xuu6000, app(app(app(ty_@3, feg), feh), ffa)) -> new_esEs24(xuu3110000, xuu6000, feg, feh, ffa) new_compare16(Float(xuu311000, Pos(xuu3110010)), Float(xuu600, Neg(xuu6010))) -> new_compare14(new_sr0(xuu311000, Pos(xuu6010)), new_sr0(Neg(xuu3110010), xuu600)) new_compare16(Float(xuu311000, Neg(xuu3110010)), Float(xuu600, Pos(xuu6010))) -> new_compare14(new_sr0(xuu311000, Neg(xuu6010)), new_sr0(Pos(xuu3110010), xuu600)) new_lt8(xuu691, xuu701, app(app(ty_Either, bag), bah)) -> new_lt18(xuu691, xuu701, bag, bah) new_lt6(xuu31100, xuu60) -> new_esEs27(new_compare18(xuu31100, xuu60)) new_ltEs18(Left(xuu690), Left(xuu700), ty_Integer, bdh) -> new_ltEs13(xuu690, xuu700) new_lt20(xuu80, xuu83, ty_Float) -> new_lt5(xuu80, xuu83) new_esEs19(Right(xuu3110000), Right(xuu6000), cae, app(app(ty_@2, chf), chg)) -> new_esEs20(xuu3110000, xuu6000, chf, chg) new_esEs39(xuu690, xuu700, ty_Integer) -> new_esEs21(xuu690, xuu700) new_lt9(xuu31100, xuu60, bgh, bha) -> new_esEs27(new_compare9(xuu31100, xuu60, bgh, bha)) new_ltEs20(xuu98, xuu99, ty_@0) -> new_ltEs4(xuu98, xuu99) new_compare8(xuu311000, xuu600, app(app(ty_Either, eda), edb)) -> new_compare7(xuu311000, xuu600, eda, edb) new_esEs34(xuu690, xuu700, app(app(ty_@2, gf), gg)) -> new_esEs20(xuu690, xuu700, gf, gg) new_ltEs18(Left(xuu690), Left(xuu700), ty_Int, bdh) -> new_ltEs15(xuu690, xuu700) new_compare110(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, True, ded, dee, def) -> LT new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs13(xuu3110000, xuu6000, app(ty_Ratio, dhb)) -> new_esEs25(xuu3110000, xuu6000, dhb) new_esEs40(xuu109, xuu111, ty_Double) -> new_esEs18(xuu109, xuu111) new_esEs19(Right(xuu3110000), Right(xuu6000), cae, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs24(xuu3110000, xuu6000, daa, dab, dac) new_lt24(xuu31100, xuu60, app(app(ty_@2, bgh), bha)) -> new_lt9(xuu31100, xuu60, bgh, bha) new_ltEs19(xuu692, xuu702, ty_Char) -> new_ltEs5(xuu692, xuu702) new_ltEs24(xuu110, xuu112, app(ty_[], fhd)) -> new_ltEs10(xuu110, xuu112, fhd) new_lt21(xuu81, xuu84, ty_Int) -> new_lt15(xuu81, xuu84) new_not(True) -> False new_lt22(xuu690, xuu700, ty_Ordering) -> new_lt12(xuu690, xuu700) new_ltEs12(LT, GT) -> True new_mkBalBranch6MkBalBranch11(xuu21, xuu17, xuu18, xuu420, xuu421, xuu422, xuu423, Branch(xuu4240, xuu4241, xuu4242, xuu4243, xuu4244), False, bb, bc) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))), xuu4240, xuu4241, new_mkBranch0(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))))), xuu420, xuu421, xuu423, xuu4243, bb, bc), Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))))))), xuu17, xuu18, xuu4244, xuu21, bb, bc) new_primCompAux00(xuu63, LT) -> LT new_esEs39(xuu690, xuu700, ty_Ordering) -> new_esEs26(xuu690, xuu700) new_lt22(xuu690, xuu700, app(ty_[], dah)) -> new_lt10(xuu690, xuu700, dah) new_esEs22(Nothing, Just(xuu6000), cba) -> False new_esEs22(Just(xuu3110000), Nothing, cba) -> False new_esEs38(xuu80, xuu83, ty_@0) -> new_esEs16(xuu80, xuu83) new_esEs22(Nothing, Nothing, cba) -> True new_ltEs18(Left(xuu690), Left(xuu700), app(app(ty_@2, bea), beb), bdh) -> new_ltEs9(xuu690, xuu700, bea, beb) new_esEs33(xuu691, xuu701, ty_Bool) -> new_esEs17(xuu691, xuu701) new_esEs4(xuu311001, xuu601, app(ty_[], bhb)) -> new_esEs12(xuu311001, xuu601, bhb) new_ltEs19(xuu692, xuu702, ty_Bool) -> new_ltEs8(xuu692, xuu702) new_ltEs22(xuu69, xuu70, ty_Double) -> new_ltEs14(xuu69, xuu70) new_lt23(xuu109, xuu111, ty_@0) -> new_lt17(xuu109, xuu111) new_esEs31(xuu3110001, xuu6001, ty_Integer) -> new_esEs21(xuu3110001, xuu6001) new_ltEs22(xuu69, xuu70, ty_Float) -> new_ltEs17(xuu69, xuu70) new_compare11(EQ, LT) -> GT new_lt8(xuu691, xuu701, ty_Int) -> new_lt15(xuu691, xuu701) new_esEs5(xuu311000, xuu600, app(app(app(ty_@3, bd), be), bf)) -> new_esEs24(xuu311000, xuu600, bd, be, bf) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs11(xuu311000, xuu600, ty_Char) -> new_esEs23(xuu311000, xuu600) new_compare115(xuu140, xuu141, False, fgg) -> GT new_ltEs23(xuu691, xuu701, ty_Int) -> new_ltEs15(xuu691, xuu701) new_esEs36(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs18(Right(xuu690), Right(xuu700), bfc, ty_@0) -> new_ltEs4(xuu690, xuu700) new_esEs19(Right(xuu3110000), Right(xuu6000), cae, ty_Char) -> new_esEs23(xuu3110000, xuu6000) new_esEs19(Right(xuu3110000), Right(xuu6000), cae, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs30(xuu3110000, xuu6000, app(ty_Ratio, ff)) -> new_esEs25(xuu3110000, xuu6000, ff) new_esEs39(xuu690, xuu700, app(app(ty_@2, daf), dag)) -> new_esEs20(xuu690, xuu700, daf, dag) new_esEs8(xuu311001, xuu601, ty_Char) -> new_esEs23(xuu311001, xuu601) new_esEs40(xuu109, xuu111, app(ty_[], gaf)) -> new_esEs12(xuu109, xuu111, gaf) new_esEs31(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs28(xuu3110002, xuu6002, app(ty_Ratio, da)) -> new_esEs25(xuu3110002, xuu6002, da) new_compare28(xuu69, xuu70, True, cfd) -> EQ new_compare12(Integer(xuu311000), Integer(xuu600)) -> new_primCmpInt(xuu311000, xuu600) new_esEs35(xuu3110001, xuu6001, app(ty_Ratio, fdh)) -> new_esEs25(xuu3110001, xuu6001, fdh) new_lt8(xuu691, xuu701, app(ty_Maybe, bac)) -> new_lt11(xuu691, xuu701, bac) new_lt22(xuu690, xuu700, ty_Double) -> new_lt14(xuu690, xuu700) new_gt(xuu22, xuu17, ty_Float) -> new_esEs41(new_compare16(xuu22, xuu17)) new_esEs18(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs14(new_sr0(xuu3110000, xuu6001), new_sr0(xuu3110001, xuu6000)) new_primPlusInt(Pos(xuu4220), Pos(xuu1290)) -> Pos(new_primPlusNat0(xuu4220, xuu1290)) new_esEs8(xuu311001, xuu601, ty_Integer) -> new_esEs21(xuu311001, xuu601) new_primCmpInt(Pos(Succ(xuu3110000)), Neg(xuu600)) -> GT new_ltEs24(xuu110, xuu112, ty_Char) -> new_ltEs5(xuu110, xuu112) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs5(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs29(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) new_esEs10(xuu311000, xuu600, app(ty_[], dhe)) -> new_esEs12(xuu311000, xuu600, dhe) new_mkBalBranch6MkBalBranch5(xuu21, xuu17, xuu18, xuu42, True, bb, bc) -> new_mkBranchResult(xuu17, xuu18, xuu21, xuu42, bb, bc) new_esEs29(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs30(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs19(Right(xuu3110000), Right(xuu6000), cae, ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_esEs5(xuu311000, xuu600, app(app(ty_Either, cae), caf)) -> new_esEs19(xuu311000, xuu600, cae, caf) new_esEs35(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_ltEs18(Right(xuu690), Right(xuu700), bfc, app(app(ty_Either, bgc), bgd)) -> new_ltEs18(xuu690, xuu700, bgc, bgd) new_primCmpNat0(Zero, Succ(xuu6000)) -> LT new_esEs11(xuu311000, xuu600, app(app(app(ty_@3, ebe), ebf), ebg)) -> new_esEs24(xuu311000, xuu600, ebe, ebf, ebg) new_sizeFM(EmptyFM, bb, bc) -> Pos(Zero) new_ltEs23(xuu691, xuu701, app(app(app(ty_@3, dcd), dce), dcf)) -> new_ltEs16(xuu691, xuu701, dcd, dce, dcf) new_ltEs21(xuu82, xuu85, ty_Integer) -> new_ltEs13(xuu82, xuu85) new_esEs27(LT) -> True new_sIZE_RATIO -> Pos(Succ(Succ(Succ(Succ(Succ(Zero)))))) new_esEs11(xuu311000, xuu600, ty_Ordering) -> new_esEs26(xuu311000, xuu600) new_esEs19(Right(xuu3110000), Right(xuu6000), cae, app(ty_[], chc)) -> new_esEs12(xuu3110000, xuu6000, chc) new_esEs38(xuu80, xuu83, ty_Bool) -> new_esEs17(xuu80, xuu83) new_esEs9(xuu311000, xuu600, app(ty_[], ehg)) -> new_esEs12(xuu311000, xuu600, ehg) new_esEs8(xuu311001, xuu601, app(app(ty_@2, egh), eha)) -> new_esEs20(xuu311001, xuu601, egh, eha) new_esEs39(xuu690, xuu700, ty_Char) -> new_esEs23(xuu690, xuu700) new_lt7(xuu690, xuu700, app(ty_Ratio, hg)) -> new_lt19(xuu690, xuu700, hg) new_compare11(GT, EQ) -> GT new_ltEs12(GT, GT) -> True new_esEs40(xuu109, xuu111, ty_@0) -> new_esEs16(xuu109, xuu111) new_compare10(Nothing, Just(xuu600), dae) -> LT new_ltEs12(GT, EQ) -> False new_lt22(xuu690, xuu700, app(ty_Ratio, dbg)) -> new_lt19(xuu690, xuu700, dbg) new_ltEs23(xuu691, xuu701, app(app(ty_Either, dcg), dch)) -> new_ltEs18(xuu691, xuu701, dcg, dch) new_esEs29(xuu3110001, xuu6001, app(app(ty_@2, de), df)) -> new_esEs20(xuu3110001, xuu6001, de, df) new_compare114(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, False, xuu188, ded, dee, def) -> new_compare110(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, xuu188, ded, dee, def) new_compare8(xuu311000, xuu600, app(app(app(ty_@3, ecf), ecg), ech)) -> new_compare15(xuu311000, xuu600, ecf, ecg, ech) new_esEs28(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_esEs7(xuu311002, xuu602, ty_@0) -> new_esEs16(xuu311002, xuu602) new_compare15(@3(xuu311000, xuu311001, xuu311002), @3(xuu600, xuu601, xuu602), eeh, efa, efb) -> new_compare26(xuu311000, xuu311001, xuu311002, xuu600, xuu601, xuu602, new_asAs(new_esEs9(xuu311000, xuu600, eeh), new_asAs(new_esEs8(xuu311001, xuu601, efa), new_esEs7(xuu311002, xuu602, efb))), eeh, efa, efb) new_esEs8(xuu311001, xuu601, ty_Int) -> new_esEs14(xuu311001, xuu601) new_esEs34(xuu690, xuu700, ty_Ordering) -> new_esEs26(xuu690, xuu700) new_esEs38(xuu80, xuu83, app(ty_[], cbh)) -> new_esEs12(xuu80, xuu83, cbh) new_compare8(xuu311000, xuu600, app(ty_Maybe, ece)) -> new_compare10(xuu311000, xuu600, ece) new_esEs29(xuu3110001, xuu6001, ty_Char) -> new_esEs23(xuu3110001, xuu6001) new_mkBalBranch6MkBalBranch01(xuu210, xuu211, xuu212, EmptyFM, xuu214, xuu17, xuu18, xuu42, False, bb, bc) -> error([]) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs9(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_primCmpInt(Neg(Zero), Pos(Succ(xuu6000))) -> LT new_esEs4(xuu311001, xuu601, app(ty_Ratio, cac)) -> new_esEs25(xuu311001, xuu601, cac) new_primMulInt(Pos(xuu3110000), Pos(xuu6010)) -> Pos(new_primMulNat0(xuu3110000, xuu6010)) new_esEs5(xuu311000, xuu600, ty_Char) -> new_esEs23(xuu311000, xuu600) new_esEs8(xuu311001, xuu601, app(app(app(ty_@3, ehc), ehd), ehe)) -> new_esEs24(xuu311001, xuu601, ehc, ehd, ehe) new_ltEs8(True, False) -> False new_esEs29(xuu3110001, xuu6001, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs24(xuu3110001, xuu6001, dh, ea, eb) new_ltEs18(Left(xuu690), Left(xuu700), app(app(app(ty_@3, bee), bef), beg), bdh) -> new_ltEs16(xuu690, xuu700, bee, bef, beg) new_esEs11(xuu311000, xuu600, app(app(ty_Either, eah), eba)) -> new_esEs19(xuu311000, xuu600, eah, eba) new_lt24(xuu31100, xuu60, ty_Integer) -> new_lt13(xuu31100, xuu60) new_ltEs18(Left(xuu690), Left(xuu700), ty_Char, bdh) -> new_ltEs5(xuu690, xuu700) new_ltEs24(xuu110, xuu112, ty_Float) -> new_ltEs17(xuu110, xuu112) new_esEs34(xuu690, xuu700, ty_Float) -> new_esEs15(xuu690, xuu700) new_lt10(xuu31100, xuu60, eca) -> new_esEs27(new_compare1(xuu31100, xuu60, eca)) new_primMulNat0(Succ(xuu31100000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu60100)) -> Zero new_lt8(xuu691, xuu701, app(app(app(ty_@3, bad), bae), baf)) -> new_lt16(xuu691, xuu701, bad, bae, baf) new_ltEs8(False, False) -> True new_lt21(xuu81, xuu84, ty_Integer) -> new_lt13(xuu81, xuu84) new_esEs5(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_esEs11(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_ltEs19(xuu692, xuu702, ty_Integer) -> new_ltEs13(xuu692, xuu702) new_ltEs18(Right(xuu690), Right(xuu700), bfc, app(ty_[], bff)) -> new_ltEs10(xuu690, xuu700, bff) new_lt20(xuu80, xuu83, app(ty_Ratio, ccg)) -> new_lt19(xuu80, xuu83, ccg) new_ltEs21(xuu82, xuu85, app(app(ty_Either, cfa), cfb)) -> new_ltEs18(xuu82, xuu85, cfa, cfb) new_addListToFM_CAdd(xuu6, @2(xuu31100, xuu31101), h, ba) -> new_addToFM_C0(xuu6, xuu31100, xuu31101, h, ba) new_esEs33(xuu691, xuu701, ty_Int) -> new_esEs14(xuu691, xuu701) new_ltEs11(Just(xuu690), Just(xuu700), ty_Float) -> new_ltEs17(xuu690, xuu700) new_lt15(xuu31100, xuu60) -> new_esEs27(new_compare14(xuu31100, xuu60)) new_esEs5(xuu311000, xuu600, ty_Integer) -> new_esEs21(xuu311000, xuu600) new_ltEs22(xuu69, xuu70, app(app(ty_@2, cfe), cff)) -> new_ltEs9(xuu69, xuu70, cfe, cff) new_esEs10(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_esEs8(xuu311001, xuu601, ty_Float) -> new_esEs15(xuu311001, xuu601) new_compare11(GT, LT) -> GT new_primPlusNat0(Succ(xuu42200), Zero) -> Succ(xuu42200) new_primPlusNat0(Zero, Succ(xuu12900)) -> Succ(xuu12900) new_esEs7(xuu311002, xuu602, ty_Double) -> new_esEs18(xuu311002, xuu602) new_gt(xuu22, xuu17, ty_@0) -> new_esEs41(new_compare17(xuu22, xuu17)) new_esEs26(EQ, GT) -> False new_esEs26(GT, EQ) -> False new_lt24(xuu31100, xuu60, app(app(app(ty_@3, eeh), efa), efb)) -> new_lt16(xuu31100, xuu60, eeh, efa, efb) new_esEs33(xuu691, xuu701, ty_Double) -> new_esEs18(xuu691, xuu701) new_esEs40(xuu109, xuu111, ty_Bool) -> new_esEs17(xuu109, xuu111) new_esEs7(xuu311002, xuu602, app(app(ty_Either, efd), efe)) -> new_esEs19(xuu311002, xuu602, efd, efe) new_compare27(xuu109, xuu110, xuu111, xuu112, False, fgh, fha) -> new_compare116(xuu109, xuu110, xuu111, xuu112, new_lt23(xuu109, xuu111, fgh), new_asAs(new_esEs40(xuu109, xuu111, fgh), new_ltEs24(xuu110, xuu112, fha)), fgh, fha) new_compare1([], [], eca) -> EQ new_ltEs22(xuu69, xuu70, app(ty_Ratio, ga)) -> new_ltEs6(xuu69, xuu70, ga) new_esEs6(xuu311000, xuu600, ty_Integer) -> new_esEs21(xuu311000, xuu600) new_esEs19(Right(xuu3110000), Right(xuu6000), cae, app(ty_Ratio, dad)) -> new_esEs25(xuu3110000, xuu6000, dad) new_ltEs21(xuu82, xuu85, app(app(app(ty_@3, cef), ceg), ceh)) -> new_ltEs16(xuu82, xuu85, cef, ceg, ceh) new_esEs30(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs7(xuu91, xuu92, app(ty_Ratio, eeg)) -> new_ltEs6(xuu91, xuu92, eeg) new_esEs28(xuu3110002, xuu6002, ty_Bool) -> new_esEs17(xuu3110002, xuu6002) new_lt8(xuu691, xuu701, ty_Bool) -> new_lt4(xuu691, xuu701) new_esEs38(xuu80, xuu83, app(ty_Ratio, ccg)) -> new_esEs25(xuu80, xuu83, ccg) new_lt8(xuu691, xuu701, ty_Integer) -> new_lt13(xuu691, xuu701) new_esEs33(xuu691, xuu701, app(app(ty_Either, bag), bah)) -> new_esEs19(xuu691, xuu701, bag, bah) new_esEs6(xuu311000, xuu600, app(ty_Maybe, ddg)) -> new_esEs22(xuu311000, xuu600, ddg) new_ltEs11(Just(xuu690), Just(xuu700), ty_@0) -> new_ltEs4(xuu690, xuu700) new_esEs6(xuu311000, xuu600, app(app(ty_@2, dde), ddf)) -> new_esEs20(xuu311000, xuu600, dde, ddf) new_ltEs7(xuu91, xuu92, app(app(ty_@2, edf), edg)) -> new_ltEs9(xuu91, xuu92, edf, edg) new_esEs34(xuu690, xuu700, ty_Int) -> new_esEs14(xuu690, xuu700) new_compare8(xuu311000, xuu600, app(ty_Ratio, edc)) -> new_compare19(xuu311000, xuu600, edc) new_ltEs20(xuu98, xuu99, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs16(xuu98, xuu99, bdb, bdc, bdd) new_esEs29(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_lt24(xuu31100, xuu60, ty_Bool) -> new_lt4(xuu31100, xuu60) new_esEs33(xuu691, xuu701, ty_Float) -> new_esEs15(xuu691, xuu701) new_esEs19(Right(xuu3110000), Right(xuu6000), cae, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs11(Just(xuu690), Just(xuu700), ty_Ordering) -> new_ltEs12(xuu690, xuu700) new_compare28(xuu69, xuu70, False, cfd) -> new_compare115(xuu69, xuu70, new_ltEs22(xuu69, xuu70, cfd), cfd) new_lt20(xuu80, xuu83, ty_Ordering) -> new_lt12(xuu80, xuu83) new_esEs19(Right(xuu3110000), Right(xuu6000), cae, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) new_compare10(Just(xuu311000), Just(xuu600), dae) -> new_compare28(xuu311000, xuu600, new_esEs6(xuu311000, xuu600, dae), dae) new_esEs8(xuu311001, xuu601, app(app(ty_Either, egf), egg)) -> new_esEs19(xuu311001, xuu601, egf, egg) new_esEs29(xuu3110001, xuu6001, app(ty_Maybe, dg)) -> new_esEs22(xuu3110001, xuu6001, dg) new_esEs13(xuu3110000, xuu6000, app(ty_[], dga)) -> new_esEs12(xuu3110000, xuu6000, dga) new_ltEs8(False, True) -> True new_mkBalBranch6MkBalBranch11(xuu21, xuu17, xuu18, xuu420, xuu421, xuu422, xuu423, EmptyFM, False, bb, bc) -> error([]) new_esEs5(xuu311000, xuu600, ty_Bool) -> new_esEs17(xuu311000, xuu600) new_compare25(xuu98, xuu99, False, bcd, bce) -> new_compare112(xuu98, xuu99, new_ltEs20(xuu98, xuu99, bce), bcd, bce) new_esEs22(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, fcf)) -> new_esEs25(xuu3110000, xuu6000, fcf) new_compare8(xuu311000, xuu600, ty_Integer) -> new_compare12(xuu311000, xuu600) new_lt22(xuu690, xuu700, ty_Bool) -> new_lt4(xuu690, xuu700) new_esEs10(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_compare7(Left(xuu311000), Right(xuu600), dhc, dhd) -> LT new_esEs38(xuu80, xuu83, ty_Char) -> new_esEs23(xuu80, xuu83) new_addToFM_C10(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, True, fg, fh) -> new_mkBalBranch(xuu34, xuu35, xuu37, new_addToFM_C0(xuu38, xuu39, xuu40, fg, fh), fg, fh) new_esEs9(xuu311000, xuu600, app(app(ty_@2, fab), fac)) -> new_esEs20(xuu311000, xuu600, fab, fac) new_esEs37(xuu81, xuu84, ty_Integer) -> new_esEs21(xuu81, xuu84) new_lt23(xuu109, xuu111, app(app(ty_Either, gbc), gbd)) -> new_lt18(xuu109, xuu111, gbc, gbd) new_esEs37(xuu81, xuu84, app(ty_[], cdb)) -> new_esEs12(xuu81, xuu84, cdb) new_esEs28(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_esEs30(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Float, caf) -> new_esEs15(xuu3110000, xuu6000) new_esEs13(xuu3110000, xuu6000, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs24(xuu3110000, xuu6000, dgg, dgh, dha) new_primPlusInt(Neg(xuu4220), Neg(xuu1290)) -> Neg(new_primPlusNat0(xuu4220, xuu1290)) new_lt8(xuu691, xuu701, app(ty_[], bab)) -> new_lt10(xuu691, xuu701, bab) new_lt24(xuu31100, xuu60, ty_Char) -> new_lt6(xuu31100, xuu60) new_ltEs19(xuu692, xuu702, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_ltEs16(xuu692, xuu702, bbf, bbg, bbh) new_ltEs5(xuu69, xuu70) -> new_fsEs(new_compare18(xuu69, xuu70)) new_compare26(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cbc, cbd, cbe) -> new_compare114(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, new_lt20(xuu80, xuu83, cbc), new_asAs(new_esEs38(xuu80, xuu83, cbc), new_pePe(new_lt21(xuu81, xuu84, cbd), new_asAs(new_esEs37(xuu81, xuu84, cbd), new_ltEs21(xuu82, xuu85, cbe)))), cbc, cbd, cbe) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Char, caf) -> new_esEs23(xuu3110000, xuu6000) new_gt(xuu22, xuu17, app(app(app(ty_@3, dfc), dfd), dfe)) -> new_esEs41(new_compare15(xuu22, xuu17, dfc, dfd, dfe)) new_mkBranch(xuu227, xuu228, xuu229, xuu230, xuu231, xuu232, xuu233, xuu234, xuu235, fbc, fbd) -> new_mkBranchResult(xuu228, xuu229, new_mkBranch0(xuu231, xuu232, xuu233, xuu234, xuu235, fbc, fbd), xuu230, fbc, fbd) new_esEs11(xuu311000, xuu600, app(ty_Ratio, ebh)) -> new_esEs25(xuu311000, xuu600, ebh) new_esEs6(xuu311000, xuu600, ty_Ordering) -> new_esEs26(xuu311000, xuu600) new_ltEs7(xuu91, xuu92, ty_Double) -> new_ltEs14(xuu91, xuu92) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_gt(xuu22, xuu17, app(ty_Maybe, dfb)) -> new_esEs41(new_compare10(xuu22, xuu17, dfb)) new_lt7(xuu690, xuu700, ty_Char) -> new_lt6(xuu690, xuu700) new_esEs33(xuu691, xuu701, ty_Ordering) -> new_esEs26(xuu691, xuu701) new_esEs16(@0, @0) -> True new_esEs39(xuu690, xuu700, app(ty_Maybe, dba)) -> new_esEs22(xuu690, xuu700, dba) new_mkBalBranch6MkBalBranch01(xuu210, xuu211, xuu212, Branch(xuu2130, xuu2131, xuu2132, xuu2133, xuu2134), xuu214, xuu17, xuu18, xuu42, False, bb, bc) -> new_mkBranch(Succ(Succ(Succ(Succ(Zero)))), xuu2130, xuu2131, new_mkBranchResult(xuu17, xuu18, xuu2133, xuu42, bb, bc), Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))), xuu210, xuu211, xuu2134, xuu214, bb, bc) new_esEs36(xuu3110000, xuu6000, app(ty_Ratio, ffb)) -> new_esEs25(xuu3110000, xuu6000, ffb) new_primMinusNat0(Zero, Zero) -> Pos(Zero) new_esEs35(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_esEs38(xuu80, xuu83, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs24(xuu80, xuu83, ccb, ccc, ccd) new_compare24(xuu91, xuu92, True, edd, ede) -> EQ new_esEs22(Just(xuu3110000), Just(xuu6000), app(ty_[], fbe)) -> new_esEs12(xuu3110000, xuu6000, fbe) new_ltEs8(True, True) -> True new_compare16(Float(xuu311000, Pos(xuu3110010)), Float(xuu600, Pos(xuu6010))) -> new_compare14(new_sr0(xuu311000, Pos(xuu6010)), new_sr0(Pos(xuu3110010), xuu600)) new_lt23(xuu109, xuu111, app(app(app(ty_@3, gah), gba), gbb)) -> new_lt16(xuu109, xuu111, gah, gba, gbb) new_primCmpInt(Pos(Succ(xuu3110000)), Pos(xuu600)) -> new_primCmpNat0(Succ(xuu3110000), xuu600) new_ltEs7(xuu91, xuu92, ty_Float) -> new_ltEs17(xuu91, xuu92) new_esEs39(xuu690, xuu700, ty_Bool) -> new_esEs17(xuu690, xuu700) new_lt20(xuu80, xuu83, app(ty_[], cbh)) -> new_lt10(xuu80, xuu83, cbh) new_ltEs7(xuu91, xuu92, app(app(ty_Either, eee), eef)) -> new_ltEs18(xuu91, xuu92, eee, eef) new_lt20(xuu80, xuu83, ty_@0) -> new_lt17(xuu80, xuu83) new_esEs39(xuu690, xuu700, app(app(ty_Either, dbe), dbf)) -> new_esEs19(xuu690, xuu700, dbe, dbf) new_primCompAux00(xuu63, EQ) -> xuu63 new_compare113(xuu166, xuu167, xuu168, xuu169, False, fba, fbb) -> GT new_mkBalBranch6MkBalBranch4(EmptyFM, xuu17, xuu18, xuu42, True, bb, bc) -> error([]) new_esEs4(xuu311001, xuu601, app(ty_Maybe, bhg)) -> new_esEs22(xuu311001, xuu601, bhg) new_esEs34(xuu690, xuu700, ty_Char) -> new_esEs23(xuu690, xuu700) new_esEs10(xuu311000, xuu600, ty_Bool) -> new_esEs17(xuu311000, xuu600) new_lt18(xuu31100, xuu60, dhc, dhd) -> new_esEs27(new_compare7(xuu31100, xuu60, dhc, dhd)) new_lt7(xuu690, xuu700, app(app(app(ty_@3, hb), hc), hd)) -> new_lt16(xuu690, xuu700, hb, hc, hd) new_lt21(xuu81, xuu84, app(ty_[], cdb)) -> new_lt10(xuu81, xuu84, cdb) new_esEs34(xuu690, xuu700, app(app(ty_Either, he), hf)) -> new_esEs19(xuu690, xuu700, he, hf) new_primMulNat0(Succ(xuu31100000), Succ(xuu60100)) -> new_primPlusNat0(new_primMulNat0(xuu31100000, Succ(xuu60100)), Succ(xuu60100)) new_esEs33(xuu691, xuu701, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs24(xuu691, xuu701, bad, bae, baf) new_lt4(xuu31100, xuu60) -> new_esEs27(new_compare6(xuu31100, xuu60)) new_esEs40(xuu109, xuu111, app(app(ty_Either, gbc), gbd)) -> new_esEs19(xuu109, xuu111, gbc, gbd) new_gt(xuu22, xuu17, app(ty_[], dfa)) -> new_esEs41(new_compare1(xuu22, xuu17, dfa)) new_compare1(:(xuu311000, xuu311001), :(xuu600, xuu601), eca) -> new_primCompAux0(xuu311000, xuu600, new_compare1(xuu311001, xuu601, eca), eca) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Integer, caf) -> new_esEs21(xuu3110000, xuu6000) new_esEs33(xuu691, xuu701, ty_Integer) -> new_esEs21(xuu691, xuu701) new_ltEs11(Nothing, Just(xuu700), cfh) -> True new_lt8(xuu691, xuu701, ty_@0) -> new_lt17(xuu691, xuu701) new_esEs40(xuu109, xuu111, ty_Char) -> new_esEs23(xuu109, xuu111) new_lt14(xuu31100, xuu60) -> new_esEs27(new_compare13(xuu31100, xuu60)) new_lt22(xuu690, xuu700, ty_Float) -> new_lt5(xuu690, xuu700) new_compare13(Double(xuu311000, Neg(xuu3110010)), Double(xuu600, Neg(xuu6010))) -> new_compare14(new_sr0(xuu311000, Neg(xuu6010)), new_sr0(Neg(xuu3110010), xuu600)) new_ltEs22(xuu69, xuu70, app(ty_[], cfg)) -> new_ltEs10(xuu69, xuu70, cfg) new_esEs13(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs15(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs14(new_sr0(xuu3110000, xuu6001), new_sr0(xuu3110001, xuu6000)) new_ltEs18(Right(xuu690), Right(xuu700), bfc, app(ty_Ratio, bge)) -> new_ltEs6(xuu690, xuu700, bge) new_ltEs18(Left(xuu690), Left(xuu700), ty_@0, bdh) -> new_ltEs4(xuu690, xuu700) new_esEs6(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs10(xuu311000, xuu600, app(ty_Maybe, eab)) -> new_esEs22(xuu311000, xuu600, eab) new_mkBalBranch6MkBalBranch3(xuu21, xuu17, xuu18, EmptyFM, True, bb, bc) -> error([]) new_ltEs20(xuu98, xuu99, app(app(ty_Either, bde), bdf)) -> new_ltEs18(xuu98, xuu99, bde, bdf) new_esEs39(xuu690, xuu700, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs24(xuu690, xuu700, dbb, dbc, dbd) new_esEs14(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_ltEs24(xuu110, xuu112, app(ty_Ratio, gac)) -> new_ltEs6(xuu110, xuu112, gac) new_ltEs24(xuu110, xuu112, app(app(ty_@2, fhb), fhc)) -> new_ltEs9(xuu110, xuu112, fhb, fhc) new_esEs4(xuu311001, xuu601, ty_@0) -> new_esEs16(xuu311001, xuu601) new_mkBalBranch6MkBalBranch4(xuu21, xuu17, xuu18, xuu42, False, bb, bc) -> new_mkBalBranch6MkBalBranch3(xuu21, xuu17, xuu18, xuu42, new_gt0(new_mkBalBranch6Size_l(xuu21, xuu17, xuu18, xuu42, bb, bc), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_r(xuu21, xuu17, xuu18, xuu42, bb, bc))), bb, bc) new_compare8(xuu311000, xuu600, app(ty_[], ecd)) -> new_compare1(xuu311000, xuu600, ecd) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_mkBalBranch6Size_r(xuu21, xuu17, xuu18, xuu42, bb, bc) -> new_sizeFM(xuu21, bb, bc) new_compare6(False, True) -> LT new_esEs39(xuu690, xuu700, ty_@0) -> new_esEs16(xuu690, xuu700) new_lt19(xuu31100, xuu60, cbb) -> new_esEs27(new_compare19(xuu31100, xuu60, cbb)) new_ltEs6(xuu69, xuu70, ga) -> new_fsEs(new_compare19(xuu69, xuu70, ga)) new_esEs41(GT) -> True new_mkBranch0(xuu231, xuu232, xuu233, xuu234, xuu235, fbc, fbd) -> new_mkBranchResult(xuu232, xuu233, xuu235, xuu234, fbc, fbd) new_compare11(LT, GT) -> LT new_esEs35(xuu3110001, xuu6001, app(app(ty_Either, fch), fda)) -> new_esEs19(xuu3110001, xuu6001, fch, fda) new_compare14(xuu31100, xuu60) -> new_primCmpInt(xuu31100, xuu60) new_lt24(xuu31100, xuu60, app(app(ty_Either, dhc), dhd)) -> new_lt18(xuu31100, xuu60, dhc, dhd) new_esEs33(xuu691, xuu701, ty_Char) -> new_esEs23(xuu691, xuu701) new_ltEs18(Left(xuu690), Left(xuu700), app(ty_Maybe, bed), bdh) -> new_ltEs11(xuu690, xuu700, bed) new_ltEs19(xuu692, xuu702, app(app(ty_Either, bca), bcb)) -> new_ltEs18(xuu692, xuu702, bca, bcb) new_esEs5(xuu311000, xuu600, ty_Ordering) -> new_esEs26(xuu311000, xuu600) new_lt21(xuu81, xuu84, ty_Bool) -> new_lt4(xuu81, xuu84) new_lt24(xuu31100, xuu60, ty_@0) -> new_lt17(xuu31100, xuu60) new_esEs32(xuu3110000, xuu6000, ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_esEs40(xuu109, xuu111, app(app(app(ty_@3, gah), gba), gbb)) -> new_esEs24(xuu109, xuu111, gah, gba, gbb) new_ltEs12(EQ, GT) -> True new_lt8(xuu691, xuu701, ty_Char) -> new_lt6(xuu691, xuu701) new_esEs34(xuu690, xuu700, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs24(xuu690, xuu700, hb, hc, hd) new_ltEs18(Left(xuu690), Left(xuu700), app(ty_Ratio, bfb), bdh) -> new_ltEs6(xuu690, xuu700, bfb) new_ltEs11(Just(xuu690), Just(xuu700), app(app(ty_@2, ffe), fff)) -> new_ltEs9(xuu690, xuu700, ffe, fff) new_esEs13(xuu3110000, xuu6000, ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_esEs29(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs17(True, True) -> True new_ltEs12(EQ, EQ) -> True new_esEs36(xuu3110000, xuu6000, app(ty_Maybe, fef)) -> new_esEs22(xuu3110000, xuu6000, fef) new_esEs39(xuu690, xuu700, ty_Float) -> new_esEs15(xuu690, xuu700) new_sizeFM(Branch(xuu210, xuu211, xuu212, xuu213, xuu214), bb, bc) -> xuu212 new_lt23(xuu109, xuu111, ty_Char) -> new_lt6(xuu109, xuu111) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs23(xuu3110000, xuu6000) new_lt7(xuu690, xuu700, app(app(ty_Either, he), hf)) -> new_lt18(xuu690, xuu700, he, hf) new_esEs33(xuu691, xuu701, app(ty_Ratio, bba)) -> new_esEs25(xuu691, xuu701, bba) new_esEs37(xuu81, xuu84, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs24(xuu81, xuu84, cdd, cde, cdf) new_esEs38(xuu80, xuu83, app(app(ty_Either, cce), ccf)) -> new_esEs19(xuu80, xuu83, cce, ccf) new_lt21(xuu81, xuu84, ty_Char) -> new_lt6(xuu81, xuu84) new_lt20(xuu80, xuu83, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_lt16(xuu80, xuu83, ccb, ccc, ccd) new_compare6(True, True) -> EQ new_esEs11(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_ltEs11(Just(xuu690), Just(xuu700), app(ty_Ratio, fgf)) -> new_ltEs6(xuu690, xuu700, fgf) new_esEs13(xuu3110000, xuu6000, app(ty_Maybe, dgf)) -> new_esEs22(xuu3110000, xuu6000, dgf) new_esEs10(xuu311000, xuu600, app(ty_Ratio, eaf)) -> new_esEs25(xuu311000, xuu600, eaf) new_compare9(@2(xuu311000, xuu311001), @2(xuu600, xuu601), bgh, bha) -> new_compare27(xuu311000, xuu311001, xuu600, xuu601, new_asAs(new_esEs5(xuu311000, xuu600, bgh), new_esEs4(xuu311001, xuu601, bha)), bgh, bha) new_compare1([], :(xuu600, xuu601), eca) -> LT new_esEs34(xuu690, xuu700, ty_@0) -> new_esEs16(xuu690, xuu700) new_ltEs11(Just(xuu690), Just(xuu700), ty_Double) -> new_ltEs14(xuu690, xuu700) new_esEs40(xuu109, xuu111, ty_Ordering) -> new_esEs26(xuu109, xuu111) new_lt22(xuu690, xuu700, app(app(ty_Either, dbe), dbf)) -> new_lt18(xuu690, xuu700, dbe, dbf) new_ltEs15(xuu69, xuu70) -> new_fsEs(new_compare14(xuu69, xuu70)) new_compare18(Char(xuu311000), Char(xuu600)) -> new_primCmpNat0(xuu311000, xuu600) new_primPlusNat0(Succ(xuu42200), Succ(xuu12900)) -> Succ(Succ(new_primPlusNat0(xuu42200, xuu12900))) new_esEs22(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, fcc), fcd), fce)) -> new_esEs24(xuu3110000, xuu6000, fcc, fcd, fce) new_esEs7(xuu311002, xuu602, app(ty_[], efc)) -> new_esEs12(xuu311002, xuu602, efc) new_esEs34(xuu690, xuu700, ty_Integer) -> new_esEs21(xuu690, xuu700) new_lt7(xuu690, xuu700, app(ty_[], gh)) -> new_lt10(xuu690, xuu700, gh) new_esEs37(xuu81, xuu84, ty_Float) -> new_esEs15(xuu81, xuu84) new_esEs40(xuu109, xuu111, ty_Float) -> new_esEs15(xuu109, xuu111) new_esEs13(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) new_esEs4(xuu311001, xuu601, app(app(ty_Either, bhc), bhd)) -> new_esEs19(xuu311001, xuu601, bhc, bhd) new_esEs36(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_ltEs13(xuu69, xuu70) -> new_fsEs(new_compare12(xuu69, xuu70)) new_esEs11(xuu311000, xuu600, ty_Integer) -> new_esEs21(xuu311000, xuu600) new_ltEs18(Left(xuu690), Left(xuu700), ty_Bool, bdh) -> new_ltEs8(xuu690, xuu700) new_esEs13(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_compare8(xuu311000, xuu600, ty_Char) -> new_compare18(xuu311000, xuu600) new_esEs13(xuu3110000, xuu6000, app(app(ty_Either, dgb), dgc)) -> new_esEs19(xuu3110000, xuu6000, dgb, dgc) new_esEs36(xuu3110000, xuu6000, app(app(ty_Either, feb), fec)) -> new_esEs19(xuu3110000, xuu6000, feb, fec) new_esEs35(xuu3110001, xuu6001, app(app(app(ty_@3, fde), fdf), fdg)) -> new_esEs24(xuu3110001, xuu6001, fde, fdf, fdg) new_esEs30(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt20(xuu80, xuu83, app(app(ty_Either, cce), ccf)) -> new_lt18(xuu80, xuu83, cce, ccf) new_lt7(xuu690, xuu700, ty_Float) -> new_lt5(xuu690, xuu700) new_ltEs24(xuu110, xuu112, ty_Double) -> new_ltEs14(xuu110, xuu112) new_ltEs4(xuu69, xuu70) -> new_fsEs(new_compare17(xuu69, xuu70)) new_esEs11(xuu311000, xuu600, app(ty_Maybe, ebd)) -> new_esEs22(xuu311000, xuu600, ebd) new_esEs34(xuu690, xuu700, app(ty_Maybe, ha)) -> new_esEs22(xuu690, xuu700, ha) new_esEs37(xuu81, xuu84, ty_Char) -> new_esEs23(xuu81, xuu84) new_esEs28(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_esEs36(xuu3110000, xuu6000, ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_esEs36(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) new_compare8(xuu311000, xuu600, ty_Float) -> new_compare16(xuu311000, xuu600) new_ltEs18(Left(xuu690), Right(xuu700), bfc, bdh) -> True new_ltEs21(xuu82, xuu85, ty_Float) -> new_ltEs17(xuu82, xuu85) new_ltEs20(xuu98, xuu99, app(ty_[], bch)) -> new_ltEs10(xuu98, xuu99, bch) new_ltEs7(xuu91, xuu92, app(ty_[], edh)) -> new_ltEs10(xuu91, xuu92, edh) new_esEs17(False, False) -> True new_esEs5(xuu311000, xuu600, app(ty_[], cad)) -> new_esEs12(xuu311000, xuu600, cad) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs34(xuu690, xuu700, ty_Bool) -> new_esEs17(xuu690, xuu700) new_lt23(xuu109, xuu111, ty_Float) -> new_lt5(xuu109, xuu111) new_compare17(@0, @0) -> EQ new_ltEs18(Right(xuu690), Left(xuu700), bfc, bdh) -> False new_lt7(xuu690, xuu700, ty_@0) -> new_lt17(xuu690, xuu700) new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, cgd), cge), caf) -> new_esEs20(xuu3110000, xuu6000, cgd, cge) new_compare26(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, True, cbc, cbd, cbe) -> EQ new_ltEs21(xuu82, xuu85, app(ty_[], ced)) -> new_ltEs10(xuu82, xuu85, ced) new_primCmpNat0(Succ(xuu3110000), Succ(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) new_compare10(Just(xuu311000), Nothing, dae) -> GT new_esEs35(xuu3110001, xuu6001, ty_Char) -> new_esEs23(xuu3110001, xuu6001) new_esEs37(xuu81, xuu84, ty_@0) -> new_esEs16(xuu81, xuu84) new_esEs38(xuu80, xuu83, ty_Ordering) -> new_esEs26(xuu80, xuu83) new_lt22(xuu690, xuu700, ty_@0) -> new_lt17(xuu690, xuu700) new_esEs11(xuu311000, xuu600, ty_Bool) -> new_esEs17(xuu311000, xuu600) new_ltEs11(Just(xuu690), Nothing, cfh) -> False new_primMinusNat0(Zero, Succ(xuu12900)) -> Neg(Succ(xuu12900)) new_ltEs11(Nothing, Nothing, cfh) -> True new_lt20(xuu80, xuu83, ty_Char) -> new_lt6(xuu80, xuu83) new_compare8(xuu311000, xuu600, ty_@0) -> new_compare17(xuu311000, xuu600) new_lt24(xuu31100, xuu60, app(ty_[], eca)) -> new_lt10(xuu31100, xuu60, eca) new_lt21(xuu81, xuu84, ty_@0) -> new_lt17(xuu81, xuu84) new_esEs37(xuu81, xuu84, ty_Ordering) -> new_esEs26(xuu81, xuu84) new_esEs36(xuu3110000, xuu6000, ty_Char) -> new_esEs23(xuu3110000, xuu6000) new_lt21(xuu81, xuu84, app(app(ty_Either, cdg), cdh)) -> new_lt18(xuu81, xuu84, cdg, cdh) new_lt8(xuu691, xuu701, ty_Float) -> new_lt5(xuu691, xuu701) new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, chb), caf) -> new_esEs25(xuu3110000, xuu6000, chb) new_esEs13(xuu3110000, xuu6000, ty_Char) -> new_esEs23(xuu3110000, xuu6000) new_gt(xuu22, xuu17, ty_Double) -> new_esEs41(new_compare13(xuu22, xuu17)) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs18(Right(xuu690), Right(xuu700), bfc, ty_Float) -> new_ltEs17(xuu690, xuu700) new_esEs36(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Ordering, caf) -> new_esEs26(xuu3110000, xuu6000) new_esEs13(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs35(xuu3110001, xuu6001, ty_Integer) -> new_esEs21(xuu3110001, xuu6001) new_ltEs17(xuu69, xuu70) -> new_fsEs(new_compare16(xuu69, xuu70)) new_ltEs20(xuu98, xuu99, ty_Float) -> new_ltEs17(xuu98, xuu99) new_esEs19(Left(xuu3110000), Right(xuu6000), cae, caf) -> False new_esEs19(Right(xuu3110000), Left(xuu6000), cae, caf) -> False new_ltEs19(xuu692, xuu702, app(ty_[], bbd)) -> new_ltEs10(xuu692, xuu702, bbd) new_mkBalBranch6Size_l(xuu21, xuu17, xuu18, xuu42, bb, bc) -> new_sizeFM(xuu42, bb, bc) new_esEs35(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_esEs6(xuu311000, xuu600, app(ty_[], ddb)) -> new_esEs12(xuu311000, xuu600, ddb) new_esEs38(xuu80, xuu83, ty_Float) -> new_esEs15(xuu80, xuu83) new_lt24(xuu31100, xuu60, ty_Float) -> new_lt5(xuu31100, xuu60) new_esEs35(xuu3110001, xuu6001, app(ty_Maybe, fdd)) -> new_esEs22(xuu3110001, xuu6001, fdd) new_ltEs19(xuu692, xuu702, ty_Float) -> new_ltEs17(xuu692, xuu702) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, app(app(ty_@2, cb), cc)) -> new_esEs20(xuu3110002, xuu6002, cb, cc) new_primCmpInt(Neg(Succ(xuu3110000)), Pos(xuu600)) -> LT new_esEs29(xuu3110001, xuu6001, app(ty_[], db)) -> new_esEs12(xuu3110001, xuu6001, db) new_ltEs22(xuu69, xuu70, app(app(ty_Either, bfc), bdh)) -> new_ltEs18(xuu69, xuu70, bfc, bdh) new_mkBalBranch6MkBalBranch3(xuu21, xuu17, xuu18, Branch(xuu420, xuu421, xuu422, xuu423, xuu424), True, bb, bc) -> new_mkBalBranch6MkBalBranch11(xuu21, xuu17, xuu18, xuu420, xuu421, xuu422, xuu423, xuu424, new_lt15(new_sizeFM(xuu424, bb, bc), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM(xuu423, bb, bc))), bb, bc) new_lt12(xuu31100, xuu60) -> new_esEs27(new_compare11(xuu31100, xuu60)) new_esEs6(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_esEs39(xuu690, xuu700, ty_Double) -> new_esEs18(xuu690, xuu700) new_esEs9(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_esEs35(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) new_esEs8(xuu311001, xuu601, app(ty_[], ege)) -> new_esEs12(xuu311001, xuu601, ege) new_esEs12(:(xuu3110000, xuu3110001), [], cad) -> False new_esEs12([], :(xuu6000, xuu6001), cad) -> False new_esEs37(xuu81, xuu84, ty_Bool) -> new_esEs17(xuu81, xuu84) new_primCmpInt(Pos(Zero), Neg(Succ(xuu6000))) -> GT new_lt21(xuu81, xuu84, ty_Double) -> new_lt14(xuu81, xuu84) new_esEs10(xuu311000, xuu600, ty_Ordering) -> new_esEs26(xuu311000, xuu600) new_ltEs7(xuu91, xuu92, ty_@0) -> new_ltEs4(xuu91, xuu92) new_lt8(xuu691, xuu701, app(ty_Ratio, bba)) -> new_lt19(xuu691, xuu701, bba) new_compare113(xuu166, xuu167, xuu168, xuu169, True, fba, fbb) -> LT new_primCmpInt(Neg(Succ(xuu3110000)), Neg(xuu600)) -> new_primCmpNat0(xuu600, Succ(xuu3110000)) new_esEs9(xuu311000, xuu600, app(app(app(ty_@3, fae), faf), fag)) -> new_esEs24(xuu311000, xuu600, fae, faf, fag) new_esEs34(xuu690, xuu700, app(ty_Ratio, hg)) -> new_esEs25(xuu690, xuu700, hg) new_esEs4(xuu311001, xuu601, ty_Char) -> new_esEs23(xuu311001, xuu601) new_esEs37(xuu81, xuu84, app(app(ty_Either, cdg), cdh)) -> new_esEs19(xuu81, xuu84, cdg, cdh) new_ltEs22(xuu69, xuu70, ty_Int) -> new_ltEs15(xuu69, xuu70) new_gt(xuu22, xuu17, app(app(ty_@2, deg), deh)) -> new_esEs41(new_compare9(xuu22, xuu17, deg, deh)) new_esEs40(xuu109, xuu111, app(app(ty_@2, gad), gae)) -> new_esEs20(xuu109, xuu111, gad, gae) new_ltEs23(xuu691, xuu701, ty_Ordering) -> new_ltEs12(xuu691, xuu701) new_ltEs20(xuu98, xuu99, ty_Char) -> new_ltEs5(xuu98, xuu99) new_esEs41(EQ) -> False new_lt7(xuu690, xuu700, ty_Bool) -> new_lt4(xuu690, xuu700) new_esEs10(xuu311000, xuu600, ty_Integer) -> new_esEs21(xuu311000, xuu600) new_esEs39(xuu690, xuu700, app(ty_Ratio, dbg)) -> new_esEs25(xuu690, xuu700, dbg) new_mkBalBranch6MkBalBranch11(xuu21, xuu17, xuu18, xuu420, xuu421, xuu422, xuu423, xuu424, True, bb, bc) -> new_mkBranch(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero))))))), xuu420, xuu421, xuu423, Succ(Succ(Succ(Succ(Succ(Succ(Succ(Succ(Zero)))))))), xuu17, xuu18, xuu424, xuu21, bb, bc) new_lt20(xuu80, xuu83, ty_Bool) -> new_lt4(xuu80, xuu83) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_@0, caf) -> new_esEs16(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_compare8(xuu311000, xuu600, ty_Bool) -> new_compare6(xuu311000, xuu600) new_compare24(xuu91, xuu92, False, edd, ede) -> new_compare111(xuu91, xuu92, new_ltEs7(xuu91, xuu92, edd), edd, ede) new_lt23(xuu109, xuu111, app(ty_[], gaf)) -> new_lt10(xuu109, xuu111, gaf) new_compare1(:(xuu311000, xuu311001), [], eca) -> GT new_esEs7(xuu311002, xuu602, app(app(ty_@2, eff), efg)) -> new_esEs20(xuu311002, xuu602, eff, efg) new_esEs4(xuu311001, xuu601, ty_Float) -> new_esEs15(xuu311001, xuu601) new_ltEs18(Right(xuu690), Right(xuu700), bfc, app(app(ty_@2, bfd), bfe)) -> new_ltEs9(xuu690, xuu700, bfd, bfe) new_ltEs23(xuu691, xuu701, app(ty_Ratio, dda)) -> new_ltEs6(xuu691, xuu701, dda) new_addToFM_C20(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, False, bb, bc) -> new_addToFM_C10(xuu17, xuu18, xuu19, xuu20, xuu21, xuu22, xuu23, new_gt(xuu22, xuu17, bb), bb, bc) new_ltEs14(xuu69, xuu70) -> new_fsEs(new_compare13(xuu69, xuu70)) new_lt17(xuu31100, xuu60) -> new_esEs27(new_compare17(xuu31100, xuu60)) new_lt16(xuu31100, xuu60, eeh, efa, efb) -> new_esEs27(new_compare15(xuu31100, xuu60, eeh, efa, efb)) new_ltEs22(xuu69, xuu70, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs16(xuu69, xuu70, gc, gd, ge) new_ltEs23(xuu691, xuu701, ty_Float) -> new_ltEs17(xuu691, xuu701) new_esEs30(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) new_ltEs11(Just(xuu690), Just(xuu700), app(app(ty_Either, fgd), fge)) -> new_ltEs18(xuu690, xuu700, fgd, fge) new_primCmpNat0(Zero, Zero) -> EQ new_esEs35(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs10(xuu311000, xuu600, ty_Char) -> new_esEs23(xuu311000, xuu600) new_lt23(xuu109, xuu111, app(app(ty_@2, gad), gae)) -> new_lt9(xuu109, xuu111, gad, gae) new_esEs32(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs10(xuu311000, xuu600, app(app(app(ty_@3, eac), ead), eae)) -> new_esEs24(xuu311000, xuu600, eac, ead, eae) new_ltEs22(xuu69, xuu70, ty_Integer) -> new_ltEs13(xuu69, xuu70) new_esEs4(xuu311001, xuu601, ty_Ordering) -> new_esEs26(xuu311001, xuu601) new_ltEs11(Just(xuu690), Just(xuu700), ty_Bool) -> new_ltEs8(xuu690, xuu700) new_addToFM_C0(Branch(xuu60, xuu61, xuu62, xuu63, xuu64), xuu31100, xuu31101, h, ba) -> new_addToFM_C20(xuu60, xuu61, xuu62, xuu63, xuu64, xuu31100, xuu31101, new_lt24(xuu31100, xuu60, h), h, ba) new_esEs6(xuu311000, xuu600, app(app(ty_Either, ddc), ddd)) -> new_esEs19(xuu311000, xuu600, ddc, ddd) new_ltEs23(xuu691, xuu701, app(app(ty_@2, dbh), dca)) -> new_ltEs9(xuu691, xuu701, dbh, dca) new_ltEs19(xuu692, xuu702, ty_@0) -> new_ltEs4(xuu692, xuu702) new_primCompAux00(xuu63, GT) -> GT new_primMinusNat0(Succ(xuu42200), Zero) -> Pos(Succ(xuu42200)) new_esEs7(xuu311002, xuu602, ty_Integer) -> new_esEs21(xuu311002, xuu602) new_esEs22(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, fcb)) -> new_esEs22(xuu3110000, xuu6000, fcb) new_esEs33(xuu691, xuu701, app(ty_Maybe, bac)) -> new_esEs22(xuu691, xuu701, bac) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Bool, caf) -> new_esEs17(xuu3110000, xuu6000) new_esEs20(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), cag, cah) -> new_asAs(new_esEs36(xuu3110000, xuu6000, cag), new_esEs35(xuu3110001, xuu6001, cah)) new_esEs33(xuu691, xuu701, app(app(ty_@2, hh), baa)) -> new_esEs20(xuu691, xuu701, hh, baa) new_esEs38(xuu80, xuu83, app(ty_Maybe, cca)) -> new_esEs22(xuu80, xuu83, cca) new_lt20(xuu80, xuu83, ty_Integer) -> new_lt13(xuu80, xuu83) new_esEs29(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_lt8(xuu691, xuu701, ty_Ordering) -> new_lt12(xuu691, xuu701) new_esEs38(xuu80, xuu83, app(app(ty_@2, cbf), cbg)) -> new_esEs20(xuu80, xuu83, cbf, cbg) new_lt13(xuu31100, xuu60) -> new_esEs27(new_compare12(xuu31100, xuu60)) new_ltEs23(xuu691, xuu701, app(ty_[], dcb)) -> new_ltEs10(xuu691, xuu701, dcb) new_ltEs24(xuu110, xuu112, ty_@0) -> new_ltEs4(xuu110, xuu112) new_esEs4(xuu311001, xuu601, app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs24(xuu311001, xuu601, bhh, caa, cab) new_lt22(xuu690, xuu700, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_lt16(xuu690, xuu700, dbb, dbc, dbd) new_compare11(EQ, EQ) -> EQ new_esEs9(xuu311000, xuu600, ty_Char) -> new_esEs23(xuu311000, xuu600) new_esEs39(xuu690, xuu700, app(ty_[], dah)) -> new_esEs12(xuu690, xuu700, dah) new_esEs29(xuu3110001, xuu6001, app(ty_Ratio, ec)) -> new_esEs25(xuu3110001, xuu6001, ec) new_compare19(:%(xuu311000, xuu311001), :%(xuu600, xuu601), ty_Int) -> new_compare14(new_sr0(xuu311000, xuu601), new_sr0(xuu600, xuu311001)) new_lt7(xuu690, xuu700, app(app(ty_@2, gf), gg)) -> new_lt9(xuu690, xuu700, gf, gg) new_esEs37(xuu81, xuu84, ty_Int) -> new_esEs14(xuu81, xuu84) new_lt21(xuu81, xuu84, ty_Float) -> new_lt5(xuu81, xuu84) new_lt5(xuu31100, xuu60) -> new_esEs27(new_compare16(xuu31100, xuu60)) new_ltEs20(xuu98, xuu99, ty_Bool) -> new_ltEs8(xuu98, xuu99) new_ltEs23(xuu691, xuu701, ty_Double) -> new_ltEs14(xuu691, xuu701) new_ltEs11(Just(xuu690), Just(xuu700), ty_Integer) -> new_ltEs13(xuu690, xuu700) new_esEs36(xuu3110000, xuu6000, app(ty_[], fea)) -> new_esEs12(xuu3110000, xuu6000, fea) new_sr(Integer(xuu3110000), Integer(xuu6010)) -> Integer(new_primMulInt(xuu3110000, xuu6010)) new_primCmpNat0(Succ(xuu3110000), Zero) -> GT new_esEs30(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_addToFM_C10(xuu34, xuu35, xuu36, xuu37, xuu38, xuu39, xuu40, False, fg, fh) -> Branch(xuu39, xuu40, xuu36, xuu37, xuu38) new_ltEs18(Left(xuu690), Left(xuu700), app(app(ty_Either, beh), bfa), bdh) -> new_ltEs18(xuu690, xuu700, beh, bfa) new_ltEs11(Just(xuu690), Just(xuu700), ty_Char) -> new_ltEs5(xuu690, xuu700) new_lt22(xuu690, xuu700, app(ty_Maybe, dba)) -> new_lt11(xuu690, xuu700, dba) new_pePe(False, xuu199) -> xuu199 new_primCompAux0(xuu311000, xuu600, xuu48, eca) -> new_primCompAux00(xuu48, new_compare8(xuu311000, xuu600, eca)) new_lt22(xuu690, xuu700, ty_Int) -> new_lt15(xuu690, xuu700) new_compare25(xuu98, xuu99, True, bcd, bce) -> EQ new_esEs28(xuu3110002, xuu6002, app(ty_Maybe, cd)) -> new_esEs22(xuu3110002, xuu6002, cd) new_gt(xuu22, xuu17, ty_Ordering) -> new_esEs41(new_compare11(xuu22, xuu17)) new_esEs30(xuu3110000, xuu6000, ty_Char) -> new_esEs23(xuu3110000, xuu6000) new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, cgf), caf) -> new_esEs22(xuu3110000, xuu6000, cgf) new_compare112(xuu156, xuu157, True, bgf, bgg) -> LT new_primMinusNat0(Succ(xuu42200), Succ(xuu12900)) -> new_primMinusNat0(xuu42200, xuu12900) new_esEs35(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_lt23(xuu109, xuu111, ty_Bool) -> new_lt4(xuu109, xuu111) new_compare8(xuu311000, xuu600, ty_Double) -> new_compare13(xuu311000, xuu600) new_lt20(xuu80, xuu83, ty_Int) -> new_lt15(xuu80, xuu83) new_lt7(xuu690, xuu700, app(ty_Maybe, ha)) -> new_lt11(xuu690, xuu700, ha) new_esEs38(xuu80, xuu83, ty_Integer) -> new_esEs21(xuu80, xuu83) new_lt11(xuu31100, xuu60, dae) -> new_esEs27(new_compare10(xuu31100, xuu60, dae)) new_ltEs18(Left(xuu690), Left(xuu700), ty_Ordering, bdh) -> new_ltEs12(xuu690, xuu700) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_esEs7(xuu311002, xuu602, ty_Ordering) -> new_esEs26(xuu311002, xuu602) new_mkBalBranch(xuu17, xuu18, xuu42, xuu21, bb, bc) -> new_mkBalBranch6MkBalBranch5(xuu21, xuu17, xuu18, xuu42, new_lt15(new_primPlusInt(new_mkBalBranch6Size_l(xuu21, xuu17, xuu18, xuu42, bb, bc), new_mkBalBranch6Size_r(xuu21, xuu17, xuu18, xuu42, bb, bc)), Pos(Succ(Succ(Zero)))), bb, bc) new_esEs28(xuu3110002, xuu6002, ty_Integer) -> new_esEs21(xuu3110002, xuu6002) new_esEs34(xuu690, xuu700, app(ty_[], gh)) -> new_esEs12(xuu690, xuu700, gh) new_esEs11(xuu311000, xuu600, app(ty_[], eag)) -> new_esEs12(xuu311000, xuu600, eag) new_compare11(GT, GT) -> EQ new_esEs9(xuu311000, xuu600, app(app(ty_Either, ehh), faa)) -> new_esEs19(xuu311000, xuu600, ehh, faa) new_esEs10(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_esEs40(xuu109, xuu111, app(ty_Maybe, gag)) -> new_esEs22(xuu109, xuu111, gag) new_esEs7(xuu311002, xuu602, app(ty_Maybe, efh)) -> new_esEs22(xuu311002, xuu602, efh) new_esEs4(xuu311001, xuu601, ty_Bool) -> new_esEs17(xuu311001, xuu601) new_esEs9(xuu311000, xuu600, ty_Ordering) -> new_esEs26(xuu311000, xuu600) new_esEs11(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_esEs7(xuu311002, xuu602, ty_Float) -> new_esEs15(xuu311002, xuu602) new_gt(xuu22, xuu17, ty_Char) -> new_esEs41(new_compare18(xuu22, xuu17)) new_esEs34(xuu690, xuu700, ty_Double) -> new_esEs18(xuu690, xuu700) new_esEs30(xuu3110000, xuu6000, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs24(xuu3110000, xuu6000, fb, fc, fd) new_mkBalBranch6MkBalBranch5(xuu21, xuu17, xuu18, xuu42, False, bb, bc) -> new_mkBalBranch6MkBalBranch4(xuu21, xuu17, xuu18, xuu42, new_gt0(new_mkBalBranch6Size_r(xuu21, xuu17, xuu18, xuu42, bb, bc), new_sr0(new_sIZE_RATIO, new_mkBalBranch6Size_l(xuu21, xuu17, xuu18, xuu42, bb, bc))), bb, bc) new_esEs7(xuu311002, xuu602, ty_Char) -> new_esEs23(xuu311002, xuu602) new_ltEs21(xuu82, xuu85, app(ty_Ratio, cfc)) -> new_ltEs6(xuu82, xuu85, cfc) new_esEs26(GT, GT) -> True new_esEs6(xuu311000, xuu600, app(app(app(ty_@3, ddh), dea), deb)) -> new_esEs24(xuu311000, xuu600, ddh, dea, deb) new_gt(xuu22, xuu17, app(ty_Ratio, dfh)) -> new_esEs41(new_compare19(xuu22, xuu17, dfh)) new_esEs19(Right(xuu3110000), Right(xuu6000), cae, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_lt24(xuu31100, xuu60, ty_Double) -> new_lt14(xuu31100, xuu60) new_lt23(xuu109, xuu111, ty_Integer) -> new_lt13(xuu109, xuu111) new_esEs30(xuu3110000, xuu6000, app(app(ty_@2, eg), eh)) -> new_esEs20(xuu3110000, xuu6000, eg, eh) new_lt8(xuu691, xuu701, ty_Double) -> new_lt14(xuu691, xuu701) new_ltEs18(Left(xuu690), Left(xuu700), ty_Float, bdh) -> new_ltEs17(xuu690, xuu700) new_esEs6(xuu311000, xuu600, ty_Bool) -> new_esEs17(xuu311000, xuu600) new_esEs37(xuu81, xuu84, app(ty_Ratio, cea)) -> new_esEs25(xuu81, xuu84, cea) new_esEs30(xuu3110000, xuu6000, app(ty_Maybe, fa)) -> new_esEs22(xuu3110000, xuu6000, fa) new_esEs5(xuu311000, xuu600, app(ty_Maybe, cba)) -> new_esEs22(xuu311000, xuu600, cba) new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, cgg), cgh), cha), caf) -> new_esEs24(xuu3110000, xuu6000, cgg, cgh, cha) new_compare6(False, False) -> EQ new_esEs4(xuu311001, xuu601, ty_Integer) -> new_esEs21(xuu311001, xuu601) new_esEs10(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs40(xuu109, xuu111, ty_Integer) -> new_esEs21(xuu109, xuu111) new_esEs9(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs5(xuu311000, xuu600, app(app(ty_@2, cag), cah)) -> new_esEs20(xuu311000, xuu600, cag, cah) new_lt22(xuu690, xuu700, ty_Integer) -> new_lt13(xuu690, xuu700) new_esEs12(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), cad) -> new_asAs(new_esEs13(xuu3110000, xuu6000, cad), new_esEs12(xuu3110001, xuu6001, cad)) new_ltEs21(xuu82, xuu85, ty_Double) -> new_ltEs14(xuu82, xuu85) new_lt21(xuu81, xuu84, ty_Ordering) -> new_lt12(xuu81, xuu84) new_esEs10(xuu311000, xuu600, app(app(ty_Either, dhf), dhg)) -> new_esEs19(xuu311000, xuu600, dhf, dhg) new_esEs30(xuu3110000, xuu6000, ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_ltEs11(Just(xuu690), Just(xuu700), app(ty_Maybe, ffh)) -> new_ltEs11(xuu690, xuu700, ffh) new_ltEs11(Just(xuu690), Just(xuu700), ty_Int) -> new_ltEs15(xuu690, xuu700) new_lt20(xuu80, xuu83, app(ty_Maybe, cca)) -> new_lt11(xuu80, xuu83, cca) new_ltEs18(Right(xuu690), Right(xuu700), bfc, ty_Double) -> new_ltEs14(xuu690, xuu700) new_lt21(xuu81, xuu84, app(ty_Ratio, cea)) -> new_lt19(xuu81, xuu84, cea) new_ltEs20(xuu98, xuu99, ty_Double) -> new_ltEs14(xuu98, xuu99) new_lt20(xuu80, xuu83, app(app(ty_@2, cbf), cbg)) -> new_lt9(xuu80, xuu83, cbf, cbg) new_primMulInt(Neg(xuu3110000), Neg(xuu6010)) -> Pos(new_primMulNat0(xuu3110000, xuu6010)) new_primCmpInt(Pos(Zero), Pos(Succ(xuu6000))) -> new_primCmpNat0(Zero, Succ(xuu6000)) new_compare11(LT, EQ) -> LT new_lt7(xuu690, xuu700, ty_Integer) -> new_lt13(xuu690, xuu700) new_esEs7(xuu311002, xuu602, app(app(app(ty_@3, ega), egb), egc)) -> new_esEs24(xuu311002, xuu602, ega, egb, egc) new_compare115(xuu140, xuu141, True, fgg) -> LT new_fsEs(xuu194) -> new_not(new_esEs26(xuu194, GT)) new_esEs8(xuu311001, xuu601, ty_Double) -> new_esEs18(xuu311001, xuu601) new_ltEs21(xuu82, xuu85, app(app(ty_@2, ceb), cec)) -> new_ltEs9(xuu82, xuu85, ceb, cec) new_esEs6(xuu311000, xuu600, ty_Char) -> new_esEs23(xuu311000, xuu600) new_ltEs9(@2(xuu690, xuu691), @2(xuu700, xuu701), cfe, cff) -> new_pePe(new_lt22(xuu690, xuu700, cfe), new_asAs(new_esEs39(xuu690, xuu700, cfe), new_ltEs23(xuu691, xuu701, cff))) new_compare7(Left(xuu311000), Left(xuu600), dhc, dhd) -> new_compare24(xuu311000, xuu600, new_esEs10(xuu311000, xuu600, dhc), dhc, dhd) new_lt23(xuu109, xuu111, app(ty_Ratio, gbe)) -> new_lt19(xuu109, xuu111, gbe) new_ltEs20(xuu98, xuu99, ty_Int) -> new_ltEs15(xuu98, xuu99) new_esEs19(Right(xuu3110000), Right(xuu6000), cae, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_gt0(xuu22, xuu17) -> new_esEs41(new_compare14(xuu22, xuu17)) new_primMulInt(Pos(xuu3110000), Neg(xuu6010)) -> Neg(new_primMulNat0(xuu3110000, xuu6010)) new_primMulInt(Neg(xuu3110000), Pos(xuu6010)) -> Neg(new_primMulNat0(xuu3110000, xuu6010)) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs13(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs20(xuu98, xuu99, app(ty_Maybe, bda)) -> new_ltEs11(xuu98, xuu99, bda) new_esEs36(xuu3110000, xuu6000, app(app(ty_@2, fed), fee)) -> new_esEs20(xuu3110000, xuu6000, fed, fee) new_compare11(LT, LT) -> EQ new_ltEs22(xuu69, xuu70, ty_@0) -> new_ltEs4(xuu69, xuu70) new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, cgb), cgc), caf) -> new_esEs19(xuu3110000, xuu6000, cgb, cgc) new_esEs11(xuu311000, xuu600, app(app(ty_@2, ebb), ebc)) -> new_esEs20(xuu311000, xuu600, ebb, ebc) new_ltEs7(xuu91, xuu92, ty_Int) -> new_ltEs15(xuu91, xuu92) new_esEs37(xuu81, xuu84, ty_Double) -> new_esEs18(xuu81, xuu84) new_ltEs19(xuu692, xuu702, ty_Ordering) -> new_ltEs12(xuu692, xuu702) new_ltEs19(xuu692, xuu702, ty_Double) -> new_ltEs14(xuu692, xuu702) new_compare110(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, False, ded, dee, def) -> GT new_ltEs7(xuu91, xuu92, app(ty_Maybe, eea)) -> new_ltEs11(xuu91, xuu92, eea) new_esEs30(xuu3110000, xuu6000, app(app(ty_Either, ee), ef)) -> new_esEs19(xuu3110000, xuu6000, ee, ef) new_ltEs19(xuu692, xuu702, app(ty_Ratio, bcc)) -> new_ltEs6(xuu692, xuu702, bcc) new_lt23(xuu109, xuu111, ty_Int) -> new_lt15(xuu109, xuu111) new_esEs29(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_ltEs24(xuu110, xuu112, app(app(ty_Either, gaa), gab)) -> new_ltEs18(xuu110, xuu112, gaa, gab) new_asAs(True, xuu127) -> xuu127 new_compare6(True, False) -> GT new_ltEs7(xuu91, xuu92, app(app(app(ty_@3, eeb), eec), eed)) -> new_ltEs16(xuu91, xuu92, eeb, eec, eed) new_ltEs19(xuu692, xuu702, ty_Int) -> new_ltEs15(xuu692, xuu702) new_esEs38(xuu80, xuu83, ty_Int) -> new_esEs14(xuu80, xuu83) new_ltEs20(xuu98, xuu99, app(app(ty_@2, bcf), bcg)) -> new_ltEs9(xuu98, xuu99, bcf, bcg) new_lt24(xuu31100, xuu60, ty_Ordering) -> new_lt12(xuu31100, xuu60) new_ltEs11(Just(xuu690), Just(xuu700), app(ty_[], ffg)) -> new_ltEs10(xuu690, xuu700, ffg) new_compare11(EQ, GT) -> LT new_esEs21(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs8(xuu311001, xuu601, ty_@0) -> new_esEs16(xuu311001, xuu601) new_lt23(xuu109, xuu111, ty_Double) -> new_lt14(xuu109, xuu111) new_compare111(xuu149, xuu150, False, ffc, ffd) -> GT new_lt21(xuu81, xuu84, app(app(ty_@2, cch), cda)) -> new_lt9(xuu81, xuu84, cch, cda) new_ltEs18(Right(xuu690), Right(xuu700), bfc, ty_Integer) -> new_ltEs13(xuu690, xuu700) new_primPlusInt(Pos(xuu4220), Neg(xuu1290)) -> new_primMinusNat0(xuu4220, xuu1290) new_primPlusInt(Neg(xuu4220), Pos(xuu1290)) -> new_primMinusNat0(xuu1290, xuu4220) new_ltEs19(xuu692, xuu702, app(app(ty_@2, bbb), bbc)) -> new_ltEs9(xuu692, xuu702, bbb, bbc) new_esEs9(xuu311000, xuu600, app(ty_Ratio, fah)) -> new_esEs25(xuu311000, xuu600, fah) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Int, caf) -> new_esEs14(xuu3110000, xuu6000) new_compare10(Nothing, Nothing, dae) -> EQ new_esEs28(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_primMulNat0(Zero, Zero) -> Zero new_ltEs20(xuu98, xuu99, ty_Ordering) -> new_ltEs12(xuu98, xuu99) new_esEs7(xuu311002, xuu602, ty_Bool) -> new_esEs17(xuu311002, xuu602) new_esEs4(xuu311001, xuu601, app(app(ty_@2, bhe), bhf)) -> new_esEs20(xuu311001, xuu601, bhe, bhf) new_compare8(xuu311000, xuu600, app(app(ty_@2, ecb), ecc)) -> new_compare9(xuu311000, xuu600, ecb, ecc) new_esEs19(Right(xuu3110000), Right(xuu6000), cae, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_lt22(xuu690, xuu700, app(app(ty_@2, daf), dag)) -> new_lt9(xuu690, xuu700, daf, dag) new_lt7(xuu690, xuu700, ty_Double) -> new_lt14(xuu690, xuu700) new_ltEs24(xuu110, xuu112, ty_Int) -> new_ltEs15(xuu110, xuu112) new_ltEs18(Right(xuu690), Right(xuu700), bfc, ty_Bool) -> new_ltEs8(xuu690, xuu700) new_gt(xuu22, xuu17, ty_Bool) -> new_esEs41(new_compare6(xuu22, xuu17)) new_ltEs20(xuu98, xuu99, ty_Integer) -> new_ltEs13(xuu98, xuu99) new_ltEs20(xuu98, xuu99, app(ty_Ratio, bdg)) -> new_ltEs6(xuu98, xuu99, bdg) new_compare8(xuu311000, xuu600, ty_Ordering) -> new_compare11(xuu311000, xuu600) new_esEs28(xuu3110002, xuu6002, ty_Char) -> new_esEs23(xuu3110002, xuu6002) new_gt(xuu22, xuu17, ty_Integer) -> new_esEs41(new_compare12(xuu22, xuu17)) new_ltEs23(xuu691, xuu701, ty_Char) -> new_ltEs5(xuu691, xuu701) new_esEs6(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_ltEs12(GT, LT) -> False new_ltEs19(xuu692, xuu702, app(ty_Maybe, bbe)) -> new_ltEs11(xuu692, xuu702, bbe) new_lt7(xuu690, xuu700, ty_Ordering) -> new_lt12(xuu690, xuu700) new_esEs28(xuu3110002, xuu6002, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs24(xuu3110002, xuu6002, ce, cf, cg) new_esEs9(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_lt7(xuu690, xuu700, ty_Int) -> new_lt15(xuu690, xuu700) new_compare7(Right(xuu311000), Left(xuu600), dhc, dhd) -> GT new_compare27(xuu109, xuu110, xuu111, xuu112, True, fgh, fha) -> EQ new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs5(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_esEs33(xuu691, xuu701, app(ty_[], bab)) -> new_esEs12(xuu691, xuu701, bab) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs18(Right(xuu690), Right(xuu700), bfc, app(ty_Maybe, bfg)) -> new_ltEs11(xuu690, xuu700, bfg) new_gt(xuu22, xuu17, app(app(ty_Either, dff), dfg)) -> new_esEs41(new_compare7(xuu22, xuu17, dff, dfg)) new_esEs27(GT) -> False new_ltEs24(xuu110, xuu112, app(ty_Maybe, fhe)) -> new_ltEs11(xuu110, xuu112, fhe) new_esEs7(xuu311002, xuu602, ty_Int) -> new_esEs14(xuu311002, xuu602) new_compare16(Float(xuu311000, Neg(xuu3110010)), Float(xuu600, Neg(xuu6010))) -> new_compare14(new_sr0(xuu311000, Neg(xuu6010)), new_sr0(Neg(xuu3110010), xuu600)) new_ltEs7(xuu91, xuu92, ty_Integer) -> new_ltEs13(xuu91, xuu92) new_esEs8(xuu311001, xuu601, ty_Bool) -> new_esEs17(xuu311001, xuu601) new_lt23(xuu109, xuu111, ty_Ordering) -> new_lt12(xuu109, xuu111) new_esEs23(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_compare13(Double(xuu311000, Pos(xuu3110010)), Double(xuu600, Pos(xuu6010))) -> new_compare14(new_sr0(xuu311000, Pos(xuu6010)), new_sr0(Pos(xuu3110010), xuu600)) new_lt24(xuu31100, xuu60, app(ty_Ratio, cbb)) -> new_lt19(xuu31100, xuu60, cbb) new_ltEs24(xuu110, xuu112, ty_Ordering) -> new_ltEs12(xuu110, xuu112) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_ltEs18(Right(xuu690), Right(xuu700), bfc, app(app(app(ty_@3, bfh), bga), bgb)) -> new_ltEs16(xuu690, xuu700, bfh, bga, bgb) new_lt23(xuu109, xuu111, app(ty_Maybe, gag)) -> new_lt11(xuu109, xuu111, gag) new_esEs24(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), bd, be, bf) -> new_asAs(new_esEs30(xuu3110000, xuu6000, bd), new_asAs(new_esEs29(xuu3110001, xuu6001, be), new_esEs28(xuu3110002, xuu6002, bf))) new_gt(xuu22, xuu17, ty_Int) -> new_gt0(xuu22, xuu17) new_primCmpInt(Neg(Zero), Neg(Succ(xuu6000))) -> new_primCmpNat0(Succ(xuu6000), Zero) new_esEs8(xuu311001, xuu601, app(ty_Maybe, ehb)) -> new_esEs22(xuu311001, xuu601, ehb) new_esEs29(xuu3110001, xuu6001, app(app(ty_Either, dc), dd)) -> new_esEs19(xuu3110001, xuu6001, dc, dd) new_esEs5(xuu311000, xuu600, app(ty_Ratio, gb)) -> new_esEs25(xuu311000, xuu600, gb) new_esEs10(xuu311000, xuu600, app(app(ty_@2, dhh), eaa)) -> new_esEs20(xuu311000, xuu600, dhh, eaa) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs11(Just(xuu690), Just(xuu700), app(app(app(ty_@3, fga), fgb), fgc)) -> new_ltEs16(xuu690, xuu700, fga, fgb, fgc) new_esEs38(xuu80, xuu83, ty_Double) -> new_esEs18(xuu80, xuu83) new_ltEs18(Right(xuu690), Right(xuu700), bfc, ty_Ordering) -> new_ltEs12(xuu690, xuu700) new_esEs35(xuu3110001, xuu6001, app(app(ty_@2, fdb), fdc)) -> new_esEs20(xuu3110001, xuu6001, fdb, fdc) new_esEs9(xuu311000, xuu600, app(ty_Maybe, fad)) -> new_esEs22(xuu311000, xuu600, fad) new_esEs19(Right(xuu3110000), Right(xuu6000), cae, app(app(ty_Either, chd), che)) -> new_esEs19(xuu3110000, xuu6000, chd, che) new_ltEs16(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), gc, gd, ge) -> new_pePe(new_lt7(xuu690, xuu700, gc), new_asAs(new_esEs34(xuu690, xuu700, gc), new_pePe(new_lt8(xuu691, xuu701, gd), new_asAs(new_esEs33(xuu691, xuu701, gd), new_ltEs19(xuu692, xuu702, ge))))) new_compare8(xuu311000, xuu600, ty_Int) -> new_compare14(xuu311000, xuu600) new_lt20(xuu80, xuu83, ty_Double) -> new_lt14(xuu80, xuu83) new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_[], cga), caf) -> new_esEs12(xuu3110000, xuu6000, cga) new_mkBranchResult(xuu17, xuu18, xuu21, xuu42, bb, bc) -> Branch(xuu17, xuu18, new_primPlusInt(new_primPlusInt(Pos(Succ(Zero)), new_sizeFM(xuu42, bb, bc)), new_sizeFM(xuu21, bb, bc)), xuu42, xuu21) new_compare112(xuu156, xuu157, False, bgf, bgg) -> GT new_ltEs7(xuu91, xuu92, ty_Bool) -> new_ltEs8(xuu91, xuu92) new_esEs6(xuu311000, xuu600, app(ty_Ratio, dec)) -> new_esEs25(xuu311000, xuu600, dec) new_ltEs22(xuu69, xuu70, ty_Bool) -> new_ltEs8(xuu69, xuu70) new_not(False) -> True new_esEs28(xuu3110002, xuu6002, app(ty_[], bg)) -> new_esEs12(xuu3110002, xuu6002, bg) new_lt24(xuu31100, xuu60, app(ty_Maybe, dae)) -> new_lt11(xuu31100, xuu60, dae) new_esEs28(xuu3110002, xuu6002, ty_Ordering) -> new_esEs26(xuu3110002, xuu6002) new_compare116(xuu166, xuu167, xuu168, xuu169, True, xuu171, fba, fbb) -> new_compare113(xuu166, xuu167, xuu168, xuu169, True, fba, fbb) new_ltEs21(xuu82, xuu85, app(ty_Maybe, cee)) -> new_ltEs11(xuu82, xuu85, cee) new_mkBalBranch6MkBalBranch01(xuu210, xuu211, xuu212, xuu213, xuu214, xuu17, xuu18, xuu42, True, bb, bc) -> new_mkBranchResult(xuu210, xuu211, xuu214, new_mkBranchResult(xuu17, xuu18, xuu213, xuu42, bb, bc), bb, bc) new_esEs13(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_ltEs21(xuu82, xuu85, ty_@0) -> new_ltEs4(xuu82, xuu85) new_compare114(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, True, xuu188, ded, dee, def) -> new_compare110(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, True, ded, dee, def) new_ltEs18(Left(xuu690), Left(xuu700), app(ty_[], bec), bdh) -> new_ltEs10(xuu690, xuu700, bec) new_esEs9(xuu311000, xuu600, ty_Bool) -> new_esEs17(xuu311000, xuu600) new_lt8(xuu691, xuu701, app(app(ty_@2, hh), baa)) -> new_lt9(xuu691, xuu701, hh, baa) new_esEs36(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_esEs22(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, fbh), fca)) -> new_esEs20(xuu3110000, xuu6000, fbh, fca) new_esEs41(LT) -> False new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Double, caf) -> new_esEs18(xuu3110000, xuu6000) new_esEs28(xuu3110002, xuu6002, app(app(ty_Either, bh), ca)) -> new_esEs19(xuu3110002, xuu6002, bh, ca) new_ltEs18(Right(xuu690), Right(xuu700), bfc, ty_Char) -> new_ltEs5(xuu690, xuu700) new_ltEs24(xuu110, xuu112, app(app(app(ty_@3, fhf), fhg), fhh)) -> new_ltEs16(xuu110, xuu112, fhf, fhg, fhh) new_sr0(xuu311000, xuu601) -> new_primMulInt(xuu311000, xuu601) new_lt24(xuu31100, xuu60, ty_Int) -> new_lt15(xuu31100, xuu60) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(xuu110, xuu112, ty_Bool) -> new_ltEs8(xuu110, xuu112) new_ltEs23(xuu691, xuu701, ty_@0) -> new_ltEs4(xuu691, xuu701) new_esEs19(Right(xuu3110000), Right(xuu6000), cae, app(ty_Maybe, chh)) -> new_esEs22(xuu3110000, xuu6000, chh) new_esEs37(xuu81, xuu84, app(app(ty_@2, cch), cda)) -> new_esEs20(xuu81, xuu84, cch, cda) new_esEs4(xuu311001, xuu601, ty_Double) -> new_esEs18(xuu311001, xuu601) new_esEs6(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_esEs9(xuu311000, xuu600, ty_Integer) -> new_esEs21(xuu311000, xuu600) new_ltEs23(xuu691, xuu701, app(ty_Maybe, dcc)) -> new_ltEs11(xuu691, xuu701, dcc) new_ltEs22(xuu69, xuu70, ty_Char) -> new_ltEs5(xuu69, xuu70) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs26(EQ, EQ) -> True new_mkBalBranch6MkBalBranch4(Branch(xuu210, xuu211, xuu212, xuu213, xuu214), xuu17, xuu18, xuu42, True, bb, bc) -> new_mkBalBranch6MkBalBranch01(xuu210, xuu211, xuu212, xuu213, xuu214, xuu17, xuu18, xuu42, new_lt15(new_sizeFM(xuu213, bb, bc), new_sr0(Pos(Succ(Succ(Zero))), new_sizeFM(xuu214, bb, bc))), bb, bc) new_ltEs12(EQ, LT) -> False new_ltEs18(Right(xuu690), Right(xuu700), bfc, ty_Int) -> new_ltEs15(xuu690, xuu700) new_ltEs21(xuu82, xuu85, ty_Ordering) -> new_ltEs12(xuu82, xuu85) new_esEs5(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_ltEs18(Left(xuu690), Left(xuu700), ty_Double, bdh) -> new_ltEs14(xuu690, xuu700) new_ltEs7(xuu91, xuu92, ty_Ordering) -> new_ltEs12(xuu91, xuu92) new_esEs26(LT, LT) -> True new_esEs30(xuu3110000, xuu6000, app(ty_[], ed)) -> new_esEs12(xuu3110000, xuu6000, ed) new_esEs40(xuu109, xuu111, ty_Int) -> new_esEs14(xuu109, xuu111) new_esEs25(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), gb) -> new_asAs(new_esEs32(xuu3110000, xuu6000, gb), new_esEs31(xuu3110001, xuu6001, gb)) new_addToFM_C0(EmptyFM, xuu31100, xuu31101, h, ba) -> Branch(xuu31100, xuu31101, Pos(Succ(Zero)), new_emptyFM(h, ba), new_emptyFM(h, ba)) new_esEs12([], [], cad) -> True new_ltEs22(xuu69, xuu70, ty_Ordering) -> new_ltEs12(xuu69, xuu70) new_esEs4(xuu311001, xuu601, ty_Int) -> new_esEs14(xuu311001, xuu601) new_esEs39(xuu690, xuu700, ty_Int) -> new_esEs14(xuu690, xuu700) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs12(LT, EQ) -> True new_ltEs23(xuu691, xuu701, ty_Integer) -> new_ltEs13(xuu691, xuu701) new_ltEs10(xuu69, xuu70, cfg) -> new_fsEs(new_compare1(xuu69, xuu70, cfg)) new_ltEs23(xuu691, xuu701, ty_Bool) -> new_ltEs8(xuu691, xuu701) new_ltEs7(xuu91, xuu92, ty_Char) -> new_ltEs5(xuu91, xuu92) new_primEqNat0(Zero, Zero) -> True new_ltEs24(xuu110, xuu112, ty_Integer) -> new_ltEs13(xuu110, xuu112) new_esEs13(xuu3110000, xuu6000, app(app(ty_@2, dgd), dge)) -> new_esEs20(xuu3110000, xuu6000, dgd, dge) new_asAs(False, xuu127) -> False new_ltEs22(xuu69, xuu70, app(ty_Maybe, cfh)) -> new_ltEs11(xuu69, xuu70, cfh) new_esEs8(xuu311001, xuu601, app(ty_Ratio, ehf)) -> new_esEs25(xuu311001, xuu601, ehf) new_ltEs21(xuu82, xuu85, ty_Char) -> new_ltEs5(xuu82, xuu85) new_ltEs21(xuu82, xuu85, ty_Int) -> new_ltEs15(xuu82, xuu85) new_compare7(Right(xuu311000), Right(xuu600), dhc, dhd) -> new_compare25(xuu311000, xuu600, new_esEs11(xuu311000, xuu600, dhd), dhc, dhd) new_esEs27(EQ) -> False The set Q consists of the following terms: new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Bool) new_compare7(Left(x0), Left(x1), x2, x3) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs15(x0, x1) new_lt8(x0, x1, ty_Char) new_esEs19(Left(x0), Left(x1), ty_Bool, x2) new_ltEs19(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_@0) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Integer) new_primCompAux00(x0, GT) new_esEs11(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt23(x0, x1, ty_@0) new_gt(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Just(x0), Nothing, x1) new_esEs22(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare6(False, True) new_compare6(True, False) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, Branch(x7, x8, x9, x10, x11), False, x12, x13) new_lt8(x0, x1, ty_Ordering) new_gt(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Float) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Succ(x0)) new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_mkBalBranch6MkBalBranch4(Branch(x0, x1, x2, x3, x4), x5, x6, x7, True, x8, x9) new_gt(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_compare1([], [], x0) new_lt23(x0, x1, ty_Int) new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Double) new_compare28(x0, x1, False, x2) new_compare115(x0, x1, False, x2) new_lt10(x0, x1, x2) new_ltEs20(x0, x1, ty_Integer) new_lt11(x0, x1, x2) new_esEs22(Just(x0), Just(x1), ty_@0) new_esEs27(GT) new_lt4(x0, x1) new_esEs30(x0, x1, ty_Double) new_lt18(x0, x1, x2, x3) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs12(GT, EQ) new_esEs33(x0, x1, ty_Integer) new_ltEs12(EQ, GT) new_esEs11(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6MkBalBranch01(x0, x1, x2, Branch(x3, x4, x5, x6, x7), x8, x9, x10, x11, False, x12, x13) new_lt24(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs37(x0, x1, ty_Float) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(Left(x0), Right(x1), x2, x3) new_compare7(Right(x0), Left(x1), x2, x3) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs39(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt21(x0, x1, ty_Int) new_esEs19(Left(x0), Left(x1), ty_Integer, x2) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_sizeFM(EmptyFM, x0, x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs22(Just(x0), Just(x1), ty_Int) new_esEs12([], [], x0) new_ltEs24(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Ordering) new_compare113(x0, x1, x2, x3, False, x4, x5) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Int) new_pePe(False, x0) new_compare112(x0, x1, True, x2, x3) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs22(Nothing, Just(x0), x1) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(Right(x0), Right(x1), x2, ty_Int) new_esEs7(x0, x1, ty_Char) new_esEs38(x0, x1, ty_@0) new_lt7(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_compare116(x0, x1, x2, x3, True, x4, x5, x6) new_esEs19(Left(x0), Left(x1), ty_Float, x2) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Char) new_lt7(x0, x1, ty_Integer) new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Char) new_compare114(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs28(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_esEs26(LT, EQ) new_esEs26(EQ, LT) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare16(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare16(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs5(x0, x1, ty_Double) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs12(EQ, LT) new_ltEs12(LT, EQ) new_esEs29(x0, x1, ty_Float) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Int) new_compare8(x0, x1, ty_@0) new_ltEs11(Just(x0), Just(x1), ty_@0) new_sr0(x0, x1) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt0(x0, x1) new_compare24(x0, x1, False, x2, x3) new_esEs9(x0, x1, ty_Ordering) new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Char) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, ty_Char) new_ltEs8(True, False) new_ltEs8(False, True) new_sizeFM(Branch(x0, x1, x2, x3, x4), x5, x6) new_gt(x0, x1, ty_Int) new_esEs12([], :(x0, x1), x2) new_ltEs23(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_Double) new_mkBalBranch6MkBalBranch4(x0, x1, x2, x3, False, x4, x5) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Nothing, x1) new_ltEs12(LT, LT) new_compare1([], :(x0, x1), x2) new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Double) new_gt(x0, x1, ty_Bool) new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1) new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare11(LT, LT) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Float) new_ltEs18(Left(x0), Right(x1), x2, x3) new_ltEs18(Right(x0), Left(x1), x2, x3) new_esEs19(Left(x0), Left(x1), ty_Int, x2) new_compare1(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs16(@0, @0) new_esEs24(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs11(x0, x1, ty_@0) new_esEs13(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Bool) new_esEs33(x0, x1, ty_@0) new_esEs26(EQ, EQ) new_esEs8(x0, x1, ty_Double) new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs33(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) new_ltEs21(x0, x1, ty_Char) new_esEs19(Right(x0), Right(x1), x2, ty_Char) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_@0) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs37(x0, x1, ty_Int) new_compare11(EQ, LT) new_compare11(LT, EQ) new_lt21(x0, x1, ty_Integer) new_gt(x0, x1, app(ty_[], x2)) new_compare11(GT, GT) new_lt20(x0, x1, ty_Integer) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Right(x0), Right(x1), x2, ty_Int) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(LT) new_ltEs18(Left(x0), Left(x1), ty_Int, x2) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Char) new_esEs40(x0, x1, ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs35(x0, x1, ty_Integer) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs17(True, True) new_esEs36(x0, x1, ty_@0) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt22(x0, x1, ty_@0) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs7(x0, x1, ty_Double) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Char) new_compare27(x0, x1, x2, x3, True, x4, x5) new_primMulNat0(Succ(x0), Zero) new_compare112(x0, x1, False, x2, x3) new_ltEs24(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_esEs39(x0, x1, ty_Bool) new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs33(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, Zero) new_esEs30(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Bool) new_compare8(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_not(True) new_lt24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(Right(x0), Right(x1), x2, ty_@0) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Bool) new_compare10(Nothing, Just(x0), x1) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs11(Nothing, Just(x0), x1) new_lt21(x0, x1, ty_Bool) new_lt21(x0, x1, ty_Float) new_compare7(Right(x0), Right(x1), x2, x3) new_esEs19(Right(x0), Right(x1), x2, ty_Bool) new_esEs9(x0, x1, ty_Float) new_asAs(True, x0) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, x2) new_lt23(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Char) new_ltEs4(x0, x1) new_compare25(x0, x1, False, x2, x3) new_esEs10(x0, x1, ty_Int) new_lt13(x0, x1) new_lt24(x0, x1, ty_Int) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Float) new_lt24(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_mkBalBranch6MkBalBranch3(x0, x1, x2, x3, False, x4, x5) new_esEs17(False, True) new_esEs17(True, False) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Integer) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, True, x4, x5) new_ltEs7(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs15(Float(x0, x1), Float(x2, x3)) new_mkBalBranch6MkBalBranch01(x0, x1, x2, EmptyFM, x3, x4, x5, x6, False, x7, x8) new_ltEs18(Left(x0), Left(x1), ty_Char, x2) new_lt24(x0, x1, ty_Char) new_mkBalBranch6MkBalBranch3(x0, x1, x2, EmptyFM, True, x3, x4) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_compare27(x0, x1, x2, x3, False, x4, x5) new_esEs28(x0, x1, ty_Integer) new_lt24(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs30(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_@0) new_esEs40(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Bool) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs11(Just(x0), Just(x1), ty_Char) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs22(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Char) new_compare8(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_Bool) new_ltEs18(Left(x0), Left(x1), ty_@0, x2) new_lt8(x0, x1, ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_compare8(x0, x1, ty_Int) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Int) new_compare8(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_ltEs11(Just(x0), Just(x1), ty_Int) new_esEs8(x0, x1, ty_Ordering) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(EQ, GT) new_esEs26(GT, EQ) new_compare16(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs23(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Float) new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) new_compare9(@2(x0, x1), @2(x2, x3), x4, x5) new_lt24(x0, x1, ty_Float) new_gt(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Char) new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_compare15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare14(x0, x1) new_esEs13(x0, x1, ty_@0) new_lt7(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(Char(x0), Char(x1)) new_esEs19(Right(x0), Right(x1), x2, ty_Integer) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMinusNat0(Succ(x0), Zero) new_esEs9(x0, x1, ty_Double) new_esEs34(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Float) new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) new_mkBalBranch6Size_l(x0, x1, x2, x3, x4, x5) new_compare8(x0, x1, ty_Float) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Zero, Zero) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, ty_@0) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs40(x0, x1, ty_@0) new_esEs7(x0, x1, ty_@0) new_esEs39(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Char) new_compare13(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_not(False) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_primCompAux00(x0, LT) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs12(LT, GT) new_ltEs12(GT, LT) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs18(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_lt24(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_Integer) new_ltEs8(True, True) new_compare28(x0, x1, True, x2) new_lt6(x0, x1) new_compare114(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(Left(x0), Left(x1), ty_@0, x2) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_lt20(x0, x1, ty_Char) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Bool) new_primMinusNat0(Zero, Succ(x0)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs41(LT) new_compare116(x0, x1, x2, x3, False, x4, x5, x6) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Int) new_esEs22(Just(x0), Just(x1), ty_Ordering) new_ltEs11(Just(x0), Just(x1), ty_Float) new_compare11(GT, LT) new_compare11(LT, GT) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Bool) new_primMulInt(Pos(x0), Pos(x1)) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Just(x0), Just(x1), ty_Char) new_ltEs18(Left(x0), Left(x1), ty_Float, x2) new_lt8(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, ty_Ordering) new_esEs13(x0, x1, ty_Ordering) new_fsEs(x0) new_ltEs13(x0, x1) new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare111(x0, x1, True, x2, x3) new_esEs22(Just(x0), Just(x1), app(ty_[], x2)) new_compare10(Nothing, Nothing, x0) new_compare18(Char(x0), Char(x1)) new_mkBalBranch6MkBalBranch3(x0, x1, x2, Branch(x3, x4, x5, x6, x7), True, x8, x9) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, ty_@0) new_primMinusNat0(Zero, Zero) new_esEs9(x0, x1, ty_@0) new_addListToFM_CAdd(x0, @2(x1, x2), x3, x4) new_lt7(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Char) new_emptyFM(x0, x1) new_ltEs5(x0, x1) new_lt23(x0, x1, ty_Char) new_esEs17(False, False) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Bool) new_primCompAux0(x0, x1, x2, x3) new_esEs4(x0, x1, ty_Integer) new_esEs26(LT, GT) new_esEs26(GT, LT) new_esEs9(x0, x1, ty_Int) new_compare12(Integer(x0), Integer(x1)) new_esEs7(x0, x1, app(ty_[], x2)) new_compare17(@0, @0) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Char) new_primMulInt(Neg(x0), Neg(x1)) new_compare8(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Double) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_mkBalBranch(x0, x1, x2, x3, x4, x5) new_ltEs22(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Float) new_lt8(x0, x1, ty_Int) new_lt21(x0, x1, ty_Double) new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_sIZE_RATIO new_esEs5(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs7(x0, x1, app(ty_Maybe, x2)) new_esEs19(Right(x0), Right(x1), x2, ty_Float) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(Just(x0), Just(x1), ty_Double) new_lt23(x0, x1, app(ty_[], x2)) new_compare24(x0, x1, True, x2, x3) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(False, False) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Double) new_compare115(x0, x1, True, x2) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs22(Nothing, Nothing, x0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Succ(x1)) new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Ordering) new_compare6(False, False) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare10(Just(x0), Nothing, x1) new_esEs35(x0, x1, ty_Char) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_ltEs21(x0, x1, ty_Float) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Bool) new_ltEs7(x0, x1, ty_Integer) new_primCmpNat0(Zero, Succ(x0)) new_mkBranchResult(x0, x1, x2, x3, x4, x5) new_esEs7(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_mkBranch0(x0, x1, x2, x3, x4, x5, x6) new_lt7(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Char) new_esEs41(GT) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_addToFM_C0(EmptyFM, x0, x1, x2, x3) new_esEs4(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Integer) new_compare11(EQ, EQ) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Int) new_esEs21(Integer(x0), Integer(x1)) new_esEs13(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Char) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_esEs22(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primPlusInt(Neg(x0), Neg(x1)) new_compare6(True, True) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusInt(Pos(x0), Pos(x1)) new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) new_lt14(x0, x1) new_lt24(x0, x1, ty_Ordering) new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs36(x0, x1, ty_Double) new_esEs26(GT, GT) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs18(Right(x0), Right(x1), x2, ty_Float) new_esEs4(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_@0) new_esEs6(x0, x1, ty_Double) new_lt23(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Ordering) new_esEs27(EQ) new_ltEs21(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs36(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Integer) new_gt(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, EmptyFM, False, x7, x8) new_addToFM_C0(Branch(x0, x1, x2, x3, x4), x5, x6, x7, x8) new_ltEs12(GT, GT) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_ltEs7(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt24(x0, x1, ty_Integer) new_ltEs7(x0, x1, ty_Int) new_compare13(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare13(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_mkBalBranch6MkBalBranch11(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_compare8(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs11(Just(x0), Just(x1), ty_Double) new_esEs39(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, app(ty_Ratio, x2)) new_esEs19(Left(x0), Right(x1), x2, x3) new_esEs19(Right(x0), Left(x1), x2, x3) new_lt8(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Int) new_lt22(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Float) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Bool) new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, ty_Float) new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt20(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt7(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs19(Left(x0), Left(x1), ty_Char, x2) new_primPlusInt(Pos(x0), Neg(x1)) new_primPlusInt(Neg(x0), Pos(x1)) new_primCmpNat0(Succ(x0), Zero) new_esEs11(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs28(x0, x1, ty_@0) new_lt15(x0, x1) new_gt(x0, x1, ty_Char) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_esEs13(x0, x1, ty_Char) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs40(x0, x1, ty_Float) new_addToFM_C10(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_ltEs18(Right(x0), Right(x1), x2, ty_Char) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(False, x0) new_esEs5(x0, x1, ty_@0) new_sr(Integer(x0), Integer(x1)) new_compare25(x0, x1, True, x2, x3) new_lt7(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Float) new_ltEs7(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, ty_Ordering) new_ltEs17(x0, x1) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(LT, LT) new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(x0, x1) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_@0) new_lt24(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Double) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Zero) new_primMinusNat0(Succ(x0), Succ(x1)) new_esEs36(x0, x1, ty_Integer) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Int) new_primCompAux00(x0, EQ) new_esEs37(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_mkBalBranch6MkBalBranch5(x0, x1, x2, x3, False, x4, x5) new_esEs40(x0, x1, app(ty_[], x2)) new_esEs12(:(x0, x1), [], x2) new_pePe(True, x0) new_ltEs24(x0, x1, ty_Char) new_esEs40(x0, x1, ty_Double) new_esEs12(:(x0, x1), :(x2, x3), x4) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs31(x0, x1, ty_Integer) new_compare8(x0, x1, app(ty_Ratio, x2)) new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs13(x0, x1, ty_Float) new_compare113(x0, x1, x2, x3, True, x4, x5) new_compare1(:(x0, x1), [], x2) new_esEs19(Right(x0), Right(x1), x2, ty_Double) new_esEs34(x0, x1, ty_Ordering) new_ltEs10(x0, x1, x2) new_esEs22(Just(x0), Just(x1), ty_Float) new_esEs22(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_@0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Char) new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, True, x7, x8) new_lt21(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Ordering) new_gt(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs4(x0, x1, ty_Double) new_lt22(x0, x1, ty_Char) new_lt24(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs40(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Zero) new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_@0) new_ltEs12(EQ, EQ) new_esEs36(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs18(Left(x0), Left(x1), ty_Double, x2) new_lt19(x0, x1, x2) new_lt22(x0, x1, ty_Double) new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) new_esEs33(x0, x1, ty_Ordering) new_mkBalBranch6MkBalBranch4(EmptyFM, x0, x1, x2, True, x3, x4) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt21(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_mkBalBranch6MkBalBranch01(x0, x1, x2, x3, x4, x5, x6, x7, True, x8, x9) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt9(x0, x1, x2, x3) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_mkBalBranch6Size_r(x0, x1, x2, x3, x4, x5) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(Just(x0), Just(x1), x2) new_esEs19(Left(x0), Left(x1), ty_Double, x2) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_esEs36(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_[], x2)) new_lt16(x0, x1, x2, x3, x4) new_compare8(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Ordering) new_lt17(x0, x1) new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_lt22(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Bool) new_esEs22(Just(x0), Just(x1), ty_Bool) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs41(EQ) new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare11(GT, EQ) new_compare11(EQ, GT) new_ltEs11(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Int) new_compare13(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt5(x0, x1) new_esEs5(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Double) new_lt23(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Char) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs11(x0, x1, ty_Char) new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) new_esEs34(x0, x1, ty_Double) new_esEs25(:%(x0, x1), :%(x2, x3), x4) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Int) new_mkBranch(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs8(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_gt(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Float) new_esEs36(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1, ty_@0) new_primPlusNat0(Zero, Succ(x0)) new_ltEs22(x0, x1, ty_Char) new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(x0, x1, ty_Double) new_gt(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(ty_[], x2)) new_addToFM_C20(x0, x1, x2, x3, x4, x5, x6, False, x7, x8) new_esEs29(x0, x1, ty_Double) new_compare111(x0, x1, False, x2, x3) new_lt12(x0, x1) new_esEs37(x0, x1, ty_Ordering) new_esEs22(Just(x0), Just(x1), ty_Integer) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Float) new_ltEs22(x0, x1, ty_Bool) new_compare16(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs8(x0, x1, ty_Char) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs18(Right(x0), Right(x1), x2, ty_Double) new_primCmpNat0(Zero, Zero) new_esEs11(x0, x1, ty_Int) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Integer) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_foldl(xuu6, :(xuu3110, xuu3111), h, ba) -> new_foldl(new_addListToFM_CAdd(xuu6, xuu3110, h, ba), xuu3111, h, ba) The graph contains the following edges 2 > 2, 3 >= 3, 4 >= 4 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat(xuu31100000, xuu60000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMinusNat(Succ(xuu42200), Succ(xuu12900)) -> new_primMinusNat(xuu42200, xuu12900) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primMinusNat(Succ(xuu42200), Succ(xuu12900)) -> new_primMinusNat(xuu42200, xuu12900) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (37) YES ---------------------------------------- (38) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(xuu42200), Succ(xuu12900)) -> new_primPlusNat(xuu42200, xuu12900) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (39) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(xuu42200), Succ(xuu12900)) -> new_primPlusNat(xuu42200, xuu12900) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (40) YES ---------------------------------------- (41) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCompAux(xuu311000, xuu600, xuu48, app(ty_[], gh)) -> new_compare0(xuu311000, xuu600, gh) new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, app(ty_[], bc)), bb)) -> new_lt0(xuu690, xuu700, bc) new_compare20(xuu69, xuu70, False, app(ty_[], gd)) -> new_compare0(xuu69, xuu70, gd) new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, bbc, app(ty_[], bdh)) -> new_ltEs0(xuu692, xuu702, bdh) new_lt0(:(xuu311000, xuu311001), :(xuu600, xuu601), ge) -> new_primCompAux(xuu311000, xuu600, new_compare1(xuu311001, xuu601, ge), ge) new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, cb), app(ty_Maybe, cf))) -> new_ltEs1(xuu691, xuu701, cf) new_compare20(Right(xuu690), Right(xuu700), False, app(app(ty_Either, bga), app(ty_Maybe, bge))) -> new_ltEs1(xuu690, xuu700, bge) new_compare22(xuu91, xuu92, False, app(ty_Maybe, ceb), cdh) -> new_ltEs1(xuu91, xuu92, ceb) new_compare23(xuu98, xuu99, False, ceh, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs2(xuu98, xuu99, cfe, cff, cfg) new_compare23(xuu98, xuu99, False, ceh, app(ty_Maybe, cfd)) -> new_ltEs1(xuu98, xuu99, cfd) new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, app(app(ty_Either, bcb), bcc)), bbc), bbd)) -> new_lt3(xuu690, xuu700, bcb, bcc) new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), cb, app(ty_[], ce)) -> new_ltEs0(xuu691, xuu701, ce) new_compare22(xuu91, xuu92, False, app(app(app(ty_@3, cec), ced), cee), cdh) -> new_ltEs2(xuu91, xuu92, cec, ced, cee) new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, app(ty_Maybe, bbf)), bbc), bbd)) -> new_lt1(xuu690, xuu700, bbf) new_compare20(Right(xuu690), Right(xuu700), False, app(app(ty_Either, bga), app(ty_[], bgd))) -> new_ltEs0(xuu690, xuu700, bgd) new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), bbc), app(ty_Maybe, bea))) -> new_ltEs1(xuu692, xuu702, bea) new_compare20(Left(xuu690), Left(xuu700), False, app(app(ty_Either, app(app(ty_Either, bfg), bfh)), bfa)) -> new_ltEs3(xuu690, xuu700, bfg, bfh) new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, app(ty_[], bcg), bbd) -> new_lt0(xuu691, xuu701, bcg) new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), bbc), app(ty_[], bdh))) -> new_ltEs0(xuu692, xuu702, bdh) new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), app(ty_Maybe, bbf), bbc, bbd) -> new_lt1(xuu690, xuu700, bbf) new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), cb, app(app(ty_Either, dc), dd)) -> new_ltEs3(xuu691, xuu701, dc, dd) new_compare2(xuu109, xuu110, xuu111, xuu112, False, app(app(ty_@2, fa), fb), fc) -> new_lt(xuu109, xuu111, fa, fb) new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, app(ty_[], bbe)), bbc), bbd)) -> new_lt0(xuu690, xuu700, bbe) new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), app(app(ty_@2, bba), bbb), bbc, bbd) -> new_lt(xuu690, xuu700, bba, bbb) new_lt3(Left(xuu311000), Left(xuu600), cdd, cde) -> new_compare22(xuu311000, xuu600, new_esEs10(xuu311000, xuu600, cdd), cdd, cde) new_compare(@2(xuu311000, xuu311001), @2(xuu600, xuu601), de, df) -> new_compare2(xuu311000, xuu311001, xuu600, xuu601, new_asAs(new_esEs5(xuu311000, xuu600, de), new_esEs4(xuu311001, xuu601, df)), de, df) new_ltEs3(Right(xuu690), Right(xuu700), bga, app(ty_Maybe, bge)) -> new_ltEs1(xuu690, xuu700, bge) new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(app(app(ty_@3, cad), cae), caf), bhh, caa) -> new_lt2(xuu80, xuu83, cad, cae, caf) new_compare20(Left(xuu690), Left(xuu700), False, app(app(ty_Either, app(ty_[], bfb)), bfa)) -> new_ltEs0(xuu690, xuu700, bfb) new_compare2(xuu109, xuu110, xuu111, xuu112, False, app(ty_Maybe, ff), fc) -> new_lt1(xuu109, xuu111, ff) new_compare2(xuu109, xuu110, xuu111, xuu112, False, app(app(ty_Either, gb), gc), fc) -> new_lt3(xuu109, xuu111, gb, gc) new_compare5(Left(xuu311000), Left(xuu600), cdd, cde) -> new_compare22(xuu311000, xuu600, new_esEs10(xuu311000, xuu600, cdd), cdd, cde) new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs2(xuu691, xuu701, cg, da, db) new_compare20(Right(xuu690), Right(xuu700), False, app(app(ty_Either, bga), app(app(ty_@2, bgb), bgc))) -> new_ltEs(xuu690, xuu700, bgb, bgc) new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), app(app(app(ty_@3, be), bf), bg), bb) -> new_lt2(xuu690, xuu700, be, bf, bg) new_compare20(Right(xuu690), Right(xuu700), False, app(app(ty_Either, bga), app(app(app(ty_@3, bgf), bgg), bgh))) -> new_ltEs2(xuu690, xuu700, bgf, bgg, bgh) new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, app(app(ty_@2, h), ba)), bb)) -> new_lt(xuu690, xuu700, h, ba) new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, cb), app(app(app(ty_@3, cg), da), db))) -> new_ltEs2(xuu691, xuu701, cg, da, db) new_compare20(Just(xuu690), Just(xuu700), False, app(ty_Maybe, app(app(ty_Either, bag), bah))) -> new_ltEs3(xuu690, xuu700, bag, bah) new_compare2(xuu109, xuu110, xuu111, xuu112, False, dg, app(ty_Maybe, ec)) -> new_ltEs1(xuu110, xuu112, ec) new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, app(app(ty_@2, cbb), cbc), caa) -> new_lt(xuu81, xuu84, cbb, cbc) new_ltEs3(Right(xuu690), Right(xuu700), bga, app(app(ty_@2, bgb), bgc)) -> new_ltEs(xuu690, xuu700, bgb, bgc) new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, bhh, app(app(ty_@2, ccc), ccd)) -> new_ltEs(xuu82, xuu85, ccc, ccd) new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), app(ty_Maybe, bch)), bbd)) -> new_lt1(xuu691, xuu701, bch) new_ltEs0(xuu69, xuu70, gd) -> new_compare0(xuu69, xuu70, gd) new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), bbc), app(app(ty_Either, bee), bef))) -> new_ltEs3(xuu692, xuu702, bee, bef) new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(xuu691, xuu701, cc, cd) new_compare4(@3(xuu311000, xuu311001, xuu311002), @3(xuu600, xuu601, xuu602), bhc, bhd, bhe) -> new_compare21(xuu311000, xuu311001, xuu311002, xuu600, xuu601, xuu602, new_asAs(new_esEs9(xuu311000, xuu600, bhc), new_asAs(new_esEs8(xuu311001, xuu601, bhd), new_esEs7(xuu311002, xuu602, bhe))), bhc, bhd, bhe) new_lt(@2(xuu311000, xuu311001), @2(xuu600, xuu601), de, df) -> new_compare2(xuu311000, xuu311001, xuu600, xuu601, new_asAs(new_esEs5(xuu311000, xuu600, de), new_esEs4(xuu311001, xuu601, df)), de, df) new_ltEs3(Left(xuu690), Left(xuu700), app(ty_[], bfb), bfa) -> new_ltEs0(xuu690, xuu700, bfb) new_primCompAux(xuu311000, xuu600, xuu48, app(app(ty_Either, he), hf)) -> new_compare5(xuu311000, xuu600, he, hf) new_ltEs3(Left(xuu690), Left(xuu700), app(app(app(ty_@3, bfd), bfe), bff), bfa) -> new_ltEs2(xuu690, xuu700, bfd, bfe, bff) new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(app(ty_@2, bhf), bhg), bhh, caa) -> new_lt(xuu80, xuu83, bhf, bhg) new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, bbc, app(app(ty_Either, bee), bef)) -> new_ltEs3(xuu692, xuu702, bee, bef) new_compare23(xuu98, xuu99, False, ceh, app(app(ty_@2, cfa), cfb)) -> new_ltEs(xuu98, xuu99, cfa, cfb) new_compare0(:(xuu311000, xuu311001), :(xuu600, xuu601), ge) -> new_compare0(xuu311001, xuu601, ge) new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, app(ty_[], cbd), caa) -> new_lt0(xuu81, xuu84, cbd) new_lt0(:(xuu311000, xuu311001), :(xuu600, xuu601), ge) -> new_compare0(xuu311001, xuu601, ge) new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), app(ty_[], bc), bb) -> new_lt0(xuu690, xuu700, bc) new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, app(ty_Maybe, bd)), bb)) -> new_lt1(xuu690, xuu700, bd) new_ltEs1(Just(xuu690), Just(xuu700), app(ty_Maybe, bac)) -> new_ltEs1(xuu690, xuu700, bac) new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), app(app(app(ty_@3, bbg), bbh), bca), bbc, bbd) -> new_lt2(xuu690, xuu700, bbg, bbh, bca) new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, bhh, app(ty_[], cce)) -> new_ltEs0(xuu82, xuu85, cce) new_compare20(Just(xuu690), Just(xuu700), False, app(ty_Maybe, app(ty_[], bab))) -> new_ltEs0(xuu690, xuu700, bab) new_ltEs3(Left(xuu690), Left(xuu700), app(app(ty_@2, beg), beh), bfa) -> new_ltEs(xuu690, xuu700, beg, beh) new_compare20(Left(xuu690), Left(xuu700), False, app(app(ty_Either, app(app(ty_@2, beg), beh)), bfa)) -> new_ltEs(xuu690, xuu700, beg, beh) new_compare22(xuu91, xuu92, False, app(ty_[], cea), cdh) -> new_ltEs0(xuu91, xuu92, cea) new_ltEs3(Left(xuu690), Left(xuu700), app(app(ty_Either, bfg), bfh), bfa) -> new_ltEs3(xuu690, xuu700, bfg, bfh) new_compare23(xuu98, xuu99, False, ceh, app(ty_[], cfc)) -> new_ltEs0(xuu98, xuu99, cfc) new_primCompAux(xuu311000, xuu600, xuu48, app(ty_Maybe, ha)) -> new_compare3(xuu311000, xuu600, ha) new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), bbc), app(app(ty_@2, bdf), bdg))) -> new_ltEs(xuu692, xuu702, bdf, bdg) new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(app(ty_Either, cag), cah), bhh, caa) -> new_lt3(xuu80, xuu83, cag, cah) new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, bbc, app(ty_Maybe, bea)) -> new_ltEs1(xuu692, xuu702, bea) new_compare3(Just(xuu311000), Just(xuu600), hg) -> new_compare20(xuu311000, xuu600, new_esEs6(xuu311000, xuu600, hg), hg) new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), app(app(ty_Either, bcb), bcc), bbc, bbd) -> new_lt3(xuu690, xuu700, bcb, bcc) new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), app(app(ty_@2, h), ba), bb) -> new_lt(xuu690, xuu700, h, ba) new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, bhh, app(ty_Maybe, ccf)) -> new_ltEs1(xuu82, xuu85, ccf) new_primCompAux(xuu311000, xuu600, xuu48, app(app(app(ty_@3, hb), hc), hd)) -> new_compare4(xuu311000, xuu600, hb, hc, hd) new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, app(app(app(ty_@3, bbg), bbh), bca)), bbc), bbd)) -> new_lt2(xuu690, xuu700, bbg, bbh, bca) new_ltEs3(Right(xuu690), Right(xuu700), bga, app(ty_[], bgd)) -> new_ltEs0(xuu690, xuu700, bgd) new_compare20(Left(xuu690), Left(xuu700), False, app(app(ty_Either, app(app(app(ty_@3, bfd), bfe), bff)), bfa)) -> new_ltEs2(xuu690, xuu700, bfd, bfe, bff) new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), app(app(ty_Either, bdd), bde)), bbd)) -> new_lt3(xuu691, xuu701, bdd, bde) new_primCompAux(xuu311000, xuu600, xuu48, app(app(ty_@2, gf), gg)) -> new_compare(xuu311000, xuu600, gf, gg) new_compare20(Just(xuu690), Just(xuu700), False, app(ty_Maybe, app(ty_Maybe, bac))) -> new_ltEs1(xuu690, xuu700, bac) new_compare2(xuu109, xuu110, xuu111, xuu112, False, dg, app(app(ty_@2, dh), ea)) -> new_ltEs(xuu110, xuu112, dh, ea) new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, bhh, app(app(ty_Either, cdb), cdc)) -> new_ltEs3(xuu82, xuu85, cdb, cdc) new_compare20(Right(xuu690), Right(xuu700), False, app(app(ty_Either, bga), app(app(ty_Either, bha), bhb))) -> new_ltEs3(xuu690, xuu700, bha, bhb) new_compare22(xuu91, xuu92, False, app(app(ty_Either, cef), ceg), cdh) -> new_ltEs3(xuu91, xuu92, cef, ceg) new_compare0(:(xuu311000, xuu311001), :(xuu600, xuu601), ge) -> new_primCompAux(xuu311000, xuu600, new_compare1(xuu311001, xuu601, ge), ge) new_compare2(xuu109, xuu110, xuu111, xuu112, False, dg, app(ty_[], eb)) -> new_ltEs0(xuu110, xuu112, eb) new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(ty_[], cab), bhh, caa) -> new_lt0(xuu80, xuu83, cab) new_ltEs3(Right(xuu690), Right(xuu700), bga, app(app(ty_Either, bha), bhb)) -> new_ltEs3(xuu690, xuu700, bha, bhb) new_compare23(xuu98, xuu99, False, ceh, app(app(ty_Either, cfh), cga)) -> new_ltEs3(xuu98, xuu99, cfh, cga) new_ltEs1(Just(xuu690), Just(xuu700), app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs2(xuu690, xuu700, bad, bae, baf) new_ltEs1(Just(xuu690), Just(xuu700), app(app(ty_Either, bag), bah)) -> new_ltEs3(xuu690, xuu700, bag, bah) new_compare2(xuu109, xuu110, xuu111, xuu112, False, app(ty_[], fd), fc) -> new_lt0(xuu109, xuu111, fd) new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, app(ty_Maybe, cbe), caa) -> new_lt1(xuu81, xuu84, cbe) new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, app(app(app(ty_@3, cbf), cbg), cbh), caa) -> new_lt2(xuu81, xuu84, cbf, cbg, cbh) new_compare2(xuu109, xuu110, xuu111, xuu112, False, app(app(app(ty_@3, fg), fh), ga), fc) -> new_lt2(xuu109, xuu111, fg, fh, ga) new_lt2(@3(xuu311000, xuu311001, xuu311002), @3(xuu600, xuu601, xuu602), bhc, bhd, bhe) -> new_compare21(xuu311000, xuu311001, xuu311002, xuu600, xuu601, xuu602, new_asAs(new_esEs9(xuu311000, xuu600, bhc), new_asAs(new_esEs8(xuu311001, xuu601, bhd), new_esEs7(xuu311002, xuu602, bhe))), bhc, bhd, bhe) new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), app(app(ty_Either, bh), ca), bb) -> new_lt3(xuu690, xuu700, bh, ca) new_compare20(Just(xuu690), Just(xuu700), False, app(ty_Maybe, app(app(ty_@2, hh), baa))) -> new_ltEs(xuu690, xuu700, hh, baa) new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, bhh, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs2(xuu82, xuu85, ccg, cch, cda) new_compare2(xuu109, xuu110, xuu111, xuu112, False, dg, app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs2(xuu110, xuu112, ed, ee, ef) new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), bbc), app(app(app(ty_@3, beb), bec), bed))) -> new_ltEs2(xuu692, xuu702, beb, bec, bed) new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), app(ty_Maybe, bd), bb) -> new_lt1(xuu690, xuu700, bd) new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, cb), app(app(ty_@2, cc), cd))) -> new_ltEs(xuu691, xuu701, cc, cd) new_compare20(Just(xuu690), Just(xuu700), False, app(ty_Maybe, app(app(app(ty_@3, bad), bae), baf))) -> new_ltEs2(xuu690, xuu700, bad, bae, baf) new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, bbc, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs2(xuu692, xuu702, beb, bec, bed) new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, app(app(ty_Either, cca), ccb), caa) -> new_lt3(xuu81, xuu84, cca, ccb) new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, app(app(ty_@2, bba), bbb)), bbc), bbd)) -> new_lt(xuu690, xuu700, bba, bbb) new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), app(ty_[], bcg)), bbd)) -> new_lt0(xuu691, xuu701, bcg) new_ltEs3(Left(xuu690), Left(xuu700), app(ty_Maybe, bfc), bfa) -> new_ltEs1(xuu690, xuu700, bfc) new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, cb), app(ty_[], ce))) -> new_ltEs0(xuu691, xuu701, ce) new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, bbc, app(app(ty_@2, bdf), bdg)) -> new_ltEs(xuu692, xuu702, bdf, bdg) new_lt3(Right(xuu311000), Right(xuu600), cdd, cde) -> new_compare23(xuu311000, xuu600, new_esEs11(xuu311000, xuu600, cde), cdd, cde) new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, app(app(ty_@2, bce), bcf), bbd) -> new_lt(xuu691, xuu701, bce, bcf) new_compare20(Left(xuu690), Left(xuu700), False, app(app(ty_Either, app(ty_Maybe, bfc)), bfa)) -> new_ltEs1(xuu690, xuu700, bfc) new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, cb), app(app(ty_Either, dc), dd))) -> new_ltEs3(xuu691, xuu701, dc, dd) new_compare5(Right(xuu311000), Right(xuu600), cdd, cde) -> new_compare23(xuu311000, xuu600, new_esEs11(xuu311000, xuu600, cde), cdd, cde) new_ltEs1(Just(xuu690), Just(xuu700), app(ty_[], bab)) -> new_ltEs0(xuu690, xuu700, bab) new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), app(ty_[], bbe), bbc, bbd) -> new_lt0(xuu690, xuu700, bbe) new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), app(app(app(ty_@3, bda), bdb), bdc)), bbd)) -> new_lt2(xuu691, xuu701, bda, bdb, bdc) new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, app(app(ty_Either, bh), ca)), bb)) -> new_lt3(xuu690, xuu700, bh, ca) new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, app(app(app(ty_@3, bda), bdb), bdc), bbd) -> new_lt2(xuu691, xuu701, bda, bdb, bdc) new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(ty_Maybe, cac), bhh, caa) -> new_lt1(xuu80, xuu83, cac) new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), app(app(ty_@2, bce), bcf)), bbd)) -> new_lt(xuu691, xuu701, bce, bcf) new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, app(app(ty_Either, bdd), bde), bbd) -> new_lt3(xuu691, xuu701, bdd, bde) new_ltEs1(Just(xuu690), Just(xuu700), app(app(ty_@2, hh), baa)) -> new_ltEs(xuu690, xuu700, hh, baa) new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, app(ty_Maybe, bch), bbd) -> new_lt1(xuu691, xuu701, bch) new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), cb, app(ty_Maybe, cf)) -> new_ltEs1(xuu691, xuu701, cf) new_compare2(xuu109, xuu110, xuu111, xuu112, False, dg, app(app(ty_Either, eg), eh)) -> new_ltEs3(xuu110, xuu112, eg, eh) new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, app(app(app(ty_@3, be), bf), bg)), bb)) -> new_lt2(xuu690, xuu700, be, bf, bg) new_ltEs3(Right(xuu690), Right(xuu700), bga, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs2(xuu690, xuu700, bgf, bgg, bgh) new_lt1(Just(xuu311000), Just(xuu600), hg) -> new_compare20(xuu311000, xuu600, new_esEs6(xuu311000, xuu600, hg), hg) new_compare22(xuu91, xuu92, False, app(app(ty_@2, cdf), cdg), cdh) -> new_ltEs(xuu91, xuu92, cdf, cdg) The TRS R consists of the following rules: new_esEs28(xuu3110002, xuu6002, app(app(ty_@2, ddc), ddd)) -> new_esEs20(xuu3110002, xuu6002, ddc, ddd) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(xuu3110000)), Pos(xuu600)) -> LT new_esEs29(xuu3110001, xuu6001, app(ty_[], deb)) -> new_esEs12(xuu3110001, xuu6001, deb) new_esEs36(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs22(xuu69, xuu70, app(app(ty_Either, bga), bfa)) -> new_ltEs18(xuu69, xuu70, bga, bfa) new_esEs40(xuu109, xuu111, app(ty_Ratio, fhc)) -> new_esEs25(xuu109, xuu111, fhc) new_ltEs21(xuu82, xuu85, ty_Bool) -> new_ltEs8(xuu82, xuu85) new_primPlusNat0(Zero, Zero) -> Zero new_lt22(xuu690, xuu700, ty_Char) -> new_lt6(xuu690, xuu700) new_esEs33(xuu691, xuu701, ty_@0) -> new_esEs16(xuu691, xuu701) new_pePe(True, xuu199) -> True new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_lt12(xuu31100, xuu60) -> new_esEs27(new_compare11(xuu31100, xuu60)) new_compare13(Double(xuu311000, Pos(xuu3110010)), Double(xuu600, Neg(xuu6010))) -> new_compare14(new_sr0(xuu311000, Pos(xuu6010)), new_sr0(Neg(xuu3110010), xuu600)) new_compare13(Double(xuu311000, Neg(xuu3110010)), Double(xuu600, Pos(xuu6010))) -> new_compare14(new_sr0(xuu311000, Neg(xuu6010)), new_sr0(Pos(xuu3110010), xuu600)) new_esEs6(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_esEs26(LT, GT) -> False new_esEs26(GT, LT) -> False new_esEs22(Just(xuu3110000), Just(xuu6000), app(app(ty_Either, eha), ehb)) -> new_esEs19(xuu3110000, xuu6000, eha, ehb) new_esEs39(xuu690, xuu700, ty_Double) -> new_esEs18(xuu690, xuu700) new_esEs9(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_esEs29(xuu3110001, xuu6001, ty_Integer) -> new_esEs21(xuu3110001, xuu6001) new_ltEs12(LT, LT) -> True new_esEs8(xuu311001, xuu601, ty_Ordering) -> new_esEs26(xuu311001, xuu601) new_esEs35(xuu3110001, xuu6001, app(ty_[], fag)) -> new_esEs12(xuu3110001, xuu6001, fag) new_esEs35(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) new_esEs7(xuu311002, xuu602, app(ty_Ratio, ecb)) -> new_esEs25(xuu311002, xuu602, ecb) new_esEs8(xuu311001, xuu601, app(ty_[], ecc)) -> new_esEs12(xuu311001, xuu601, ecc) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs12(:(xuu3110000, xuu3110001), [], cgb) -> False new_esEs12([], :(xuu6000, xuu6001), cgb) -> False new_esEs37(xuu81, xuu84, ty_Bool) -> new_esEs17(xuu81, xuu84) new_esEs26(LT, EQ) -> False new_esEs26(EQ, LT) -> False new_primCmpInt(Pos(Zero), Neg(Succ(xuu6000))) -> GT new_lt21(xuu81, xuu84, ty_Double) -> new_lt14(xuu81, xuu84) new_esEs10(xuu311000, xuu600, ty_Ordering) -> new_esEs26(xuu311000, xuu600) new_compare19(:%(xuu311000, xuu311001), :%(xuu600, xuu601), ty_Integer) -> new_compare12(new_sr(xuu311000, xuu601), new_sr(xuu600, xuu311001)) new_ltEs7(xuu91, xuu92, ty_@0) -> new_ltEs4(xuu91, xuu92) new_esEs11(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_lt8(xuu691, xuu701, app(ty_Ratio, eae)) -> new_lt19(xuu691, xuu701, eae) new_lt21(xuu81, xuu84, app(ty_Maybe, cbe)) -> new_lt11(xuu81, xuu84, cbe) new_esEs37(xuu81, xuu84, app(ty_Maybe, cbe)) -> new_esEs22(xuu81, xuu84, cbe) new_compare113(xuu166, xuu167, xuu168, xuu169, True, ege, egf) -> LT new_primCmpInt(Neg(Succ(xuu3110000)), Neg(xuu600)) -> new_primCmpNat0(xuu600, Succ(xuu3110000)) new_esEs9(xuu311000, xuu600, app(app(app(ty_@3, eec), eed), eee)) -> new_esEs24(xuu311000, xuu600, eec, eed, eee) new_compare116(xuu166, xuu167, xuu168, xuu169, False, xuu171, ege, egf) -> new_compare113(xuu166, xuu167, xuu168, xuu169, xuu171, ege, egf) new_lt21(xuu81, xuu84, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_lt16(xuu81, xuu84, cbf, cbg, cbh) new_compare111(xuu149, xuu150, True, fdf, fdg) -> LT new_esEs36(xuu3110000, xuu6000, app(app(app(ty_@3, fcg), fch), fda)) -> new_esEs24(xuu3110000, xuu6000, fcg, fch, fda) new_esEs34(xuu690, xuu700, app(ty_Ratio, ead)) -> new_esEs25(xuu690, xuu700, ead) new_compare16(Float(xuu311000, Pos(xuu3110010)), Float(xuu600, Neg(xuu6010))) -> new_compare14(new_sr0(xuu311000, Pos(xuu6010)), new_sr0(Neg(xuu3110010), xuu600)) new_compare16(Float(xuu311000, Neg(xuu3110010)), Float(xuu600, Pos(xuu6010))) -> new_compare14(new_sr0(xuu311000, Neg(xuu6010)), new_sr0(Pos(xuu3110010), xuu600)) new_esEs4(xuu311001, xuu601, ty_Char) -> new_esEs23(xuu311001, xuu601) new_esEs37(xuu81, xuu84, app(app(ty_Either, cca), ccb)) -> new_esEs19(xuu81, xuu84, cca, ccb) new_lt8(xuu691, xuu701, app(app(ty_Either, bdd), bde)) -> new_lt18(xuu691, xuu701, bdd, bde) new_lt6(xuu31100, xuu60) -> new_esEs27(new_compare18(xuu31100, xuu60)) new_ltEs22(xuu69, xuu70, ty_Int) -> new_ltEs15(xuu69, xuu70) new_ltEs18(Left(xuu690), Left(xuu700), ty_Integer, bfa) -> new_ltEs13(xuu690, xuu700) new_esEs40(xuu109, xuu111, app(app(ty_@2, fa), fb)) -> new_esEs20(xuu109, xuu111, fa, fb) new_ltEs23(xuu691, xuu701, ty_Ordering) -> new_ltEs12(xuu691, xuu701) new_ltEs20(xuu98, xuu99, ty_Char) -> new_ltEs5(xuu98, xuu99) new_lt20(xuu80, xuu83, ty_Float) -> new_lt5(xuu80, xuu83) new_esEs19(Right(xuu3110000), Right(xuu6000), fab, app(app(ty_@2, ffg), ffh)) -> new_esEs20(xuu3110000, xuu6000, ffg, ffh) new_esEs39(xuu690, xuu700, ty_Integer) -> new_esEs21(xuu690, xuu700) new_lt7(xuu690, xuu700, ty_Bool) -> new_lt4(xuu690, xuu700) new_esEs10(xuu311000, xuu600, ty_Integer) -> new_esEs21(xuu311000, xuu600) new_esEs39(xuu690, xuu700, app(ty_Ratio, fgh)) -> new_esEs25(xuu690, xuu700, fgh) new_lt20(xuu80, xuu83, ty_Bool) -> new_lt4(xuu80, xuu83) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_@0, fac) -> new_esEs16(xuu3110000, xuu6000) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(xuu60000))) -> False new_compare8(xuu311000, xuu600, ty_Bool) -> new_compare6(xuu311000, xuu600) new_lt9(xuu31100, xuu60, de, df) -> new_esEs27(new_compare9(xuu31100, xuu60, de, df)) new_ltEs20(xuu98, xuu99, ty_@0) -> new_ltEs4(xuu98, xuu99) new_compare8(xuu311000, xuu600, app(app(ty_Either, he), hf)) -> new_compare7(xuu311000, xuu600, he, hf) new_compare24(xuu91, xuu92, False, dgg, cdh) -> new_compare111(xuu91, xuu92, new_ltEs7(xuu91, xuu92, dgg), dgg, cdh) new_lt23(xuu109, xuu111, app(ty_[], fd)) -> new_lt10(xuu109, xuu111, fd) new_esEs34(xuu690, xuu700, app(app(ty_@2, bba), bbb)) -> new_esEs20(xuu690, xuu700, bba, bbb) new_compare1(:(xuu311000, xuu311001), [], ge) -> GT new_esEs7(xuu311002, xuu602, app(app(ty_@2, ebd), ebe)) -> new_esEs20(xuu311002, xuu602, ebd, ebe) new_compare110(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, True, dcb, dcc, dcd) -> LT new_ltEs18(Left(xuu690), Left(xuu700), ty_Int, bfa) -> new_ltEs15(xuu690, xuu700) new_primEqNat0(Succ(xuu31100000), Succ(xuu60000)) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs13(xuu3110000, xuu6000, app(ty_Ratio, chd)) -> new_esEs25(xuu3110000, xuu6000, chd) new_esEs40(xuu109, xuu111, ty_Double) -> new_esEs18(xuu109, xuu111) new_esEs4(xuu311001, xuu601, ty_Float) -> new_esEs15(xuu311001, xuu601) new_esEs19(Right(xuu3110000), Right(xuu6000), fab, app(app(app(ty_@3, fgb), fgc), fgd)) -> new_esEs24(xuu3110000, xuu6000, fgb, fgc, fgd) new_ltEs18(Right(xuu690), Right(xuu700), bga, app(app(ty_@2, bgb), bgc)) -> new_ltEs9(xuu690, xuu700, bgb, bgc) new_ltEs23(xuu691, xuu701, app(ty_Ratio, fha)) -> new_ltEs6(xuu691, xuu701, fha) new_ltEs19(xuu692, xuu702, ty_Char) -> new_ltEs5(xuu692, xuu702) new_ltEs14(xuu69, xuu70) -> new_fsEs(new_compare13(xuu69, xuu70)) new_lt17(xuu31100, xuu60) -> new_esEs27(new_compare17(xuu31100, xuu60)) new_ltEs24(xuu110, xuu112, app(ty_[], eb)) -> new_ltEs10(xuu110, xuu112, eb) new_lt21(xuu81, xuu84, ty_Int) -> new_lt15(xuu81, xuu84) new_not(True) -> False new_lt16(xuu31100, xuu60, bhc, bhd, bhe) -> new_esEs27(new_compare15(xuu31100, xuu60, bhc, bhd, bhe)) new_ltEs22(xuu69, xuu70, app(app(app(ty_@3, bcd), bbc), bbd)) -> new_ltEs16(xuu69, xuu70, bcd, bbc, bbd) new_ltEs12(LT, GT) -> True new_lt22(xuu690, xuu700, ty_Ordering) -> new_lt12(xuu690, xuu700) new_ltEs23(xuu691, xuu701, ty_Float) -> new_ltEs17(xuu691, xuu701) new_esEs30(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) new_ltEs11(Just(xuu690), Just(xuu700), app(app(ty_Either, bag), bah)) -> new_ltEs18(xuu690, xuu700, bag, bah) new_primCompAux00(xuu63, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs39(xuu690, xuu700, ty_Ordering) -> new_esEs26(xuu690, xuu700) new_lt22(xuu690, xuu700, app(ty_[], bc)) -> new_lt10(xuu690, xuu700, bc) new_esEs22(Nothing, Just(xuu6000), egg) -> False new_esEs22(Just(xuu3110000), Nothing, egg) -> False new_esEs22(Nothing, Nothing, egg) -> True new_esEs38(xuu80, xuu83, ty_@0) -> new_esEs16(xuu80, xuu83) new_ltEs18(Left(xuu690), Left(xuu700), app(app(ty_@2, beg), beh), bfa) -> new_ltEs9(xuu690, xuu700, beg, beh) new_esEs33(xuu691, xuu701, ty_Bool) -> new_esEs17(xuu691, xuu701) new_esEs4(xuu311001, xuu601, app(ty_[], eeg)) -> new_esEs12(xuu311001, xuu601, eeg) new_esEs35(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs10(xuu311000, xuu600, ty_Char) -> new_esEs23(xuu311000, xuu600) new_lt23(xuu109, xuu111, app(app(ty_@2, fa), fb)) -> new_lt9(xuu109, xuu111, fa, fb) new_esEs32(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_ltEs19(xuu692, xuu702, ty_Bool) -> new_ltEs8(xuu692, xuu702) new_esEs10(xuu311000, xuu600, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs24(xuu311000, xuu600, dac, dad, dae) new_ltEs22(xuu69, xuu70, ty_Double) -> new_ltEs14(xuu69, xuu70) new_ltEs22(xuu69, xuu70, ty_Integer) -> new_ltEs13(xuu69, xuu70) new_lt23(xuu109, xuu111, ty_@0) -> new_lt17(xuu109, xuu111) new_esEs31(xuu3110001, xuu6001, ty_Integer) -> new_esEs21(xuu3110001, xuu6001) new_ltEs22(xuu69, xuu70, ty_Float) -> new_ltEs17(xuu69, xuu70) new_compare11(EQ, LT) -> GT new_lt8(xuu691, xuu701, ty_Int) -> new_lt15(xuu691, xuu701) new_esEs5(xuu311000, xuu600, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs24(xuu311000, xuu600, dce, dcf, dcg) new_primEqNat0(Succ(xuu31100000), Zero) -> False new_primEqNat0(Zero, Succ(xuu60000)) -> False new_esEs4(xuu311001, xuu601, ty_Ordering) -> new_esEs26(xuu311001, xuu601) new_esEs11(xuu311000, xuu600, ty_Char) -> new_esEs23(xuu311000, xuu600) new_compare115(xuu140, xuu141, False, fgg) -> GT new_ltEs11(Just(xuu690), Just(xuu700), ty_Bool) -> new_ltEs8(xuu690, xuu700) new_esEs36(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs23(xuu691, xuu701, ty_Int) -> new_ltEs15(xuu691, xuu701) new_ltEs18(Right(xuu690), Right(xuu700), bga, ty_@0) -> new_ltEs4(xuu690, xuu700) new_esEs6(xuu311000, xuu600, app(app(ty_Either, dhb), dhc)) -> new_esEs19(xuu311000, xuu600, dhb, dhc) new_esEs19(Right(xuu3110000), Right(xuu6000), fab, ty_Char) -> new_esEs23(xuu3110000, xuu6000) new_esEs19(Right(xuu3110000), Right(xuu6000), fab, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_esEs30(xuu3110000, xuu6000, app(ty_Ratio, dge)) -> new_esEs25(xuu3110000, xuu6000, dge) new_esEs8(xuu311001, xuu601, ty_Char) -> new_esEs23(xuu311001, xuu601) new_ltEs23(xuu691, xuu701, app(app(ty_@2, cc), cd)) -> new_ltEs9(xuu691, xuu701, cc, cd) new_esEs39(xuu690, xuu700, app(app(ty_@2, h), ba)) -> new_esEs20(xuu690, xuu700, h, ba) new_esEs40(xuu109, xuu111, app(ty_[], fd)) -> new_esEs12(xuu109, xuu111, fd) new_primCompAux00(xuu63, GT) -> GT new_esEs31(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_ltEs19(xuu692, xuu702, ty_@0) -> new_ltEs4(xuu692, xuu702) new_esEs28(xuu3110002, xuu6002, app(ty_Ratio, dea)) -> new_esEs25(xuu3110002, xuu6002, dea) new_esEs7(xuu311002, xuu602, ty_Integer) -> new_esEs21(xuu311002, xuu602) new_compare12(Integer(xuu311000), Integer(xuu600)) -> new_primCmpInt(xuu311000, xuu600) new_compare28(xuu69, xuu70, True, fdh) -> EQ new_esEs35(xuu3110001, xuu6001, app(ty_Ratio, fbh)) -> new_esEs25(xuu3110001, xuu6001, fbh) new_esEs22(Just(xuu3110000), Just(xuu6000), app(ty_Maybe, ehe)) -> new_esEs22(xuu3110000, xuu6000, ehe) new_lt8(xuu691, xuu701, app(ty_Maybe, bch)) -> new_lt11(xuu691, xuu701, bch) new_esEs33(xuu691, xuu701, app(ty_Maybe, bch)) -> new_esEs22(xuu691, xuu701, bch) new_lt22(xuu690, xuu700, ty_Double) -> new_lt14(xuu690, xuu700) new_esEs18(Double(xuu3110000, xuu3110001), Double(xuu6000, xuu6001)) -> new_esEs14(new_sr0(xuu3110000, xuu6001), new_sr0(xuu3110001, xuu6000)) new_esEs20(@2(xuu3110000, xuu3110001), @2(xuu6000, xuu6001), fad, fae) -> new_asAs(new_esEs36(xuu3110000, xuu6000, fad), new_esEs35(xuu3110001, xuu6001, fae)) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Bool, fac) -> new_esEs17(xuu3110000, xuu6000) new_esEs33(xuu691, xuu701, app(app(ty_@2, bce), bcf)) -> new_esEs20(xuu691, xuu701, bce, bcf) new_esEs38(xuu80, xuu83, app(ty_Maybe, cac)) -> new_esEs22(xuu80, xuu83, cac) new_lt20(xuu80, xuu83, ty_Integer) -> new_lt13(xuu80, xuu83) new_esEs29(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_esEs8(xuu311001, xuu601, ty_Integer) -> new_esEs21(xuu311001, xuu601) new_lt8(xuu691, xuu701, ty_Ordering) -> new_lt12(xuu691, xuu701) new_primCmpInt(Pos(Succ(xuu3110000)), Neg(xuu600)) -> GT new_esEs38(xuu80, xuu83, app(app(ty_@2, bhf), bhg)) -> new_esEs20(xuu80, xuu83, bhf, bhg) new_lt13(xuu31100, xuu60) -> new_esEs27(new_compare12(xuu31100, xuu60)) new_ltEs23(xuu691, xuu701, app(ty_[], ce)) -> new_ltEs10(xuu691, xuu701, ce) new_ltEs24(xuu110, xuu112, ty_@0) -> new_ltEs4(xuu110, xuu112) new_ltEs24(xuu110, xuu112, ty_Char) -> new_ltEs5(xuu110, xuu112) new_esEs4(xuu311001, xuu601, app(app(app(ty_@3, efe), eff), efg)) -> new_esEs24(xuu311001, xuu601, efe, eff, efg) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt22(xuu690, xuu700, app(app(app(ty_@3, be), bf), bg)) -> new_lt16(xuu690, xuu700, be, bf, bg) new_compare11(EQ, EQ) -> EQ new_esEs9(xuu311000, xuu600, ty_Char) -> new_esEs23(xuu311000, xuu600) new_esEs5(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs10(xuu311000, xuu600, app(ty_[], che)) -> new_esEs12(xuu311000, xuu600, che) new_esEs29(xuu3110001, xuu6001, ty_Ordering) -> new_esEs26(xuu3110001, xuu6001) new_esEs39(xuu690, xuu700, app(ty_[], bc)) -> new_esEs12(xuu690, xuu700, bc) new_esEs29(xuu3110001, xuu6001, ty_Float) -> new_esEs15(xuu3110001, xuu6001) new_esEs29(xuu3110001, xuu6001, app(ty_Ratio, dfc)) -> new_esEs25(xuu3110001, xuu6001, dfc) new_esEs30(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_compare19(:%(xuu311000, xuu311001), :%(xuu600, xuu601), ty_Int) -> new_compare14(new_sr0(xuu311000, xuu601), new_sr0(xuu600, xuu311001)) new_lt7(xuu690, xuu700, app(app(ty_@2, bba), bbb)) -> new_lt9(xuu690, xuu700, bba, bbb) new_esEs19(Right(xuu3110000), Right(xuu6000), fab, ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_esEs5(xuu311000, xuu600, app(app(ty_Either, fab), fac)) -> new_esEs19(xuu311000, xuu600, fab, fac) new_esEs37(xuu81, xuu84, ty_Int) -> new_esEs14(xuu81, xuu84) new_esEs35(xuu3110001, xuu6001, ty_Double) -> new_esEs18(xuu3110001, xuu6001) new_ltEs18(Right(xuu690), Right(xuu700), bga, app(app(ty_Either, bha), bhb)) -> new_ltEs18(xuu690, xuu700, bha, bhb) new_primCmpNat0(Zero, Succ(xuu6000)) -> LT new_lt5(xuu31100, xuu60) -> new_esEs27(new_compare16(xuu31100, xuu60)) new_lt21(xuu81, xuu84, ty_Float) -> new_lt5(xuu81, xuu84) new_ltEs20(xuu98, xuu99, ty_Bool) -> new_ltEs8(xuu98, xuu99) new_esEs11(xuu311000, xuu600, app(app(app(ty_@3, dbe), dbf), dbg)) -> new_esEs24(xuu311000, xuu600, dbe, dbf, dbg) new_ltEs11(Just(xuu690), Just(xuu700), ty_Integer) -> new_ltEs13(xuu690, xuu700) new_ltEs23(xuu691, xuu701, ty_Double) -> new_ltEs14(xuu691, xuu701) new_ltEs23(xuu691, xuu701, app(app(app(ty_@3, cg), da), db)) -> new_ltEs16(xuu691, xuu701, cg, da, db) new_ltEs21(xuu82, xuu85, ty_Integer) -> new_ltEs13(xuu82, xuu85) new_esEs27(LT) -> True new_esEs11(xuu311000, xuu600, ty_Ordering) -> new_esEs26(xuu311000, xuu600) new_esEs36(xuu3110000, xuu6000, app(ty_[], fca)) -> new_esEs12(xuu3110000, xuu6000, fca) new_esEs19(Right(xuu3110000), Right(xuu6000), fab, app(ty_[], ffd)) -> new_esEs12(xuu3110000, xuu6000, ffd) new_sr(Integer(xuu3110000), Integer(xuu6010)) -> Integer(new_primMulInt(xuu3110000, xuu6010)) new_primCmpNat0(Succ(xuu3110000), Zero) -> GT new_esEs38(xuu80, xuu83, ty_Bool) -> new_esEs17(xuu80, xuu83) new_esEs30(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_esEs9(xuu311000, xuu600, app(ty_[], ede)) -> new_esEs12(xuu311000, xuu600, ede) new_ltEs18(Left(xuu690), Left(xuu700), app(app(ty_Either, bfg), bfh), bfa) -> new_ltEs18(xuu690, xuu700, bfg, bfh) new_ltEs11(Just(xuu690), Just(xuu700), ty_Char) -> new_ltEs5(xuu690, xuu700) new_primCompAux0(xuu311000, xuu600, xuu48, ge) -> new_primCompAux00(xuu48, new_compare8(xuu311000, xuu600, ge)) new_esEs8(xuu311001, xuu601, app(app(ty_@2, ecf), ecg)) -> new_esEs20(xuu311001, xuu601, ecf, ecg) new_lt22(xuu690, xuu700, app(ty_Maybe, bd)) -> new_lt11(xuu690, xuu700, bd) new_pePe(False, xuu199) -> xuu199 new_esEs39(xuu690, xuu700, ty_Char) -> new_esEs23(xuu690, xuu700) new_ltEs12(GT, GT) -> True new_lt7(xuu690, xuu700, app(ty_Ratio, ead)) -> new_lt19(xuu690, xuu700, ead) new_compare11(GT, EQ) -> GT new_esEs40(xuu109, xuu111, ty_@0) -> new_esEs16(xuu109, xuu111) new_lt22(xuu690, xuu700, ty_Int) -> new_lt15(xuu690, xuu700) new_compare25(xuu98, xuu99, True, ceh, eag) -> EQ new_esEs28(xuu3110002, xuu6002, app(ty_Maybe, dde)) -> new_esEs22(xuu3110002, xuu6002, dde) new_compare10(Nothing, Just(xuu600), hg) -> LT new_esEs30(xuu3110000, xuu6000, ty_Char) -> new_esEs23(xuu3110000, xuu6000) new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_Maybe, feg), fac) -> new_esEs22(xuu3110000, xuu6000, feg) new_ltEs12(GT, EQ) -> False new_compare112(xuu156, xuu157, True, egc, egd) -> LT new_esEs35(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_lt22(xuu690, xuu700, app(ty_Ratio, fgh)) -> new_lt19(xuu690, xuu700, fgh) new_lt23(xuu109, xuu111, ty_Bool) -> new_lt4(xuu109, xuu111) new_compare8(xuu311000, xuu600, ty_Double) -> new_compare13(xuu311000, xuu600) new_lt20(xuu80, xuu83, ty_Int) -> new_lt15(xuu80, xuu83) new_ltEs23(xuu691, xuu701, app(app(ty_Either, dc), dd)) -> new_ltEs18(xuu691, xuu701, dc, dd) new_esEs29(xuu3110001, xuu6001, app(app(ty_@2, dee), def)) -> new_esEs20(xuu3110001, xuu6001, dee, def) new_lt7(xuu690, xuu700, app(ty_Maybe, bbf)) -> new_lt11(xuu690, xuu700, bbf) new_esEs38(xuu80, xuu83, ty_Integer) -> new_esEs21(xuu80, xuu83) new_lt11(xuu31100, xuu60, hg) -> new_esEs27(new_compare10(xuu31100, xuu60, hg)) new_ltEs18(Left(xuu690), Left(xuu700), ty_Ordering, bfa) -> new_ltEs12(xuu690, xuu700) new_primEqInt(Pos(Zero), Neg(Succ(xuu60000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(xuu60000))) -> False new_compare8(xuu311000, xuu600, app(app(app(ty_@3, hb), hc), hd)) -> new_compare15(xuu311000, xuu600, hb, hc, hd) new_compare114(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, False, xuu188, dcb, dcc, dcd) -> new_compare110(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, xuu188, dcb, dcc, dcd) new_esEs28(xuu3110002, xuu6002, ty_@0) -> new_esEs16(xuu3110002, xuu6002) new_esEs7(xuu311002, xuu602, ty_Ordering) -> new_esEs26(xuu311002, xuu602) new_esEs7(xuu311002, xuu602, ty_@0) -> new_esEs16(xuu311002, xuu602) new_esEs28(xuu3110002, xuu6002, ty_Integer) -> new_esEs21(xuu3110002, xuu6002) new_esEs34(xuu690, xuu700, app(ty_[], bbe)) -> new_esEs12(xuu690, xuu700, bbe) new_esEs11(xuu311000, xuu600, app(ty_[], dag)) -> new_esEs12(xuu311000, xuu600, dag) new_compare15(@3(xuu311000, xuu311001, xuu311002), @3(xuu600, xuu601, xuu602), bhc, bhd, bhe) -> new_compare26(xuu311000, xuu311001, xuu311002, xuu600, xuu601, xuu602, new_asAs(new_esEs9(xuu311000, xuu600, bhc), new_asAs(new_esEs8(xuu311001, xuu601, bhd), new_esEs7(xuu311002, xuu602, bhe))), bhc, bhd, bhe) new_esEs8(xuu311001, xuu601, ty_Int) -> new_esEs14(xuu311001, xuu601) new_compare8(xuu311000, xuu600, app(ty_Maybe, ha)) -> new_compare10(xuu311000, xuu600, ha) new_esEs34(xuu690, xuu700, ty_Ordering) -> new_esEs26(xuu690, xuu700) new_esEs38(xuu80, xuu83, app(ty_[], cab)) -> new_esEs12(xuu80, xuu83, cab) new_compare11(GT, GT) -> EQ new_esEs29(xuu3110001, xuu6001, ty_Char) -> new_esEs23(xuu3110001, xuu6001) new_esEs9(xuu311000, xuu600, app(app(ty_Either, edf), edg)) -> new_esEs19(xuu311000, xuu600, edf, edg) new_esEs10(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_primEqInt(Neg(Succ(xuu31100000)), Neg(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_esEs9(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_esEs40(xuu109, xuu111, app(ty_Maybe, ff)) -> new_esEs22(xuu109, xuu111, ff) new_esEs7(xuu311002, xuu602, app(ty_Maybe, ebf)) -> new_esEs22(xuu311002, xuu602, ebf) new_primCmpInt(Neg(Zero), Pos(Succ(xuu6000))) -> LT new_esEs4(xuu311001, xuu601, app(ty_Ratio, efh)) -> new_esEs25(xuu311001, xuu601, efh) new_esEs4(xuu311001, xuu601, ty_Bool) -> new_esEs17(xuu311001, xuu601) new_primMulInt(Pos(xuu3110000), Pos(xuu6010)) -> Pos(new_primMulNat0(xuu3110000, xuu6010)) new_esEs8(xuu311001, xuu601, app(app(app(ty_@3, eda), edb), edc)) -> new_esEs24(xuu311001, xuu601, eda, edb, edc) new_esEs5(xuu311000, xuu600, ty_Char) -> new_esEs23(xuu311000, xuu600) new_ltEs8(True, False) -> False new_esEs29(xuu3110001, xuu6001, app(app(app(ty_@3, deh), dfa), dfb)) -> new_esEs24(xuu3110001, xuu6001, deh, dfa, dfb) new_ltEs18(Left(xuu690), Left(xuu700), app(app(app(ty_@3, bfd), bfe), bff), bfa) -> new_ltEs16(xuu690, xuu700, bfd, bfe, bff) new_esEs11(xuu311000, xuu600, app(app(ty_Either, dah), dba)) -> new_esEs19(xuu311000, xuu600, dah, dba) new_esEs9(xuu311000, xuu600, ty_Ordering) -> new_esEs26(xuu311000, xuu600) new_esEs11(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_ltEs18(Left(xuu690), Left(xuu700), ty_Char, bfa) -> new_ltEs5(xuu690, xuu700) new_ltEs24(xuu110, xuu112, ty_Float) -> new_ltEs17(xuu110, xuu112) new_esEs7(xuu311002, xuu602, ty_Float) -> new_esEs15(xuu311002, xuu602) new_esEs34(xuu690, xuu700, ty_Float) -> new_esEs15(xuu690, xuu700) new_lt10(xuu31100, xuu60, ge) -> new_esEs27(new_compare1(xuu31100, xuu60, ge)) new_primMulNat0(Succ(xuu31100000), Zero) -> Zero new_primMulNat0(Zero, Succ(xuu60100)) -> Zero new_lt8(xuu691, xuu701, app(app(app(ty_@3, bda), bdb), bdc)) -> new_lt16(xuu691, xuu701, bda, bdb, bdc) new_ltEs8(False, False) -> True new_lt21(xuu81, xuu84, ty_Integer) -> new_lt13(xuu81, xuu84) new_esEs34(xuu690, xuu700, ty_Double) -> new_esEs18(xuu690, xuu700) new_esEs5(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_esEs30(xuu3110000, xuu6000, app(app(app(ty_@3, dgb), dgc), dgd)) -> new_esEs24(xuu3110000, xuu6000, dgb, dgc, dgd) new_esEs11(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_ltEs19(xuu692, xuu702, ty_Integer) -> new_ltEs13(xuu692, xuu702) new_ltEs18(Right(xuu690), Right(xuu700), bga, app(ty_[], bgd)) -> new_ltEs10(xuu690, xuu700, bgd) new_lt20(xuu80, xuu83, app(ty_Ratio, fdc)) -> new_lt19(xuu80, xuu83, fdc) new_ltEs21(xuu82, xuu85, app(app(ty_Either, cdb), cdc)) -> new_ltEs18(xuu82, xuu85, cdb, cdc) new_esEs33(xuu691, xuu701, ty_Int) -> new_esEs14(xuu691, xuu701) new_ltEs11(Just(xuu690), Just(xuu700), ty_Float) -> new_ltEs17(xuu690, xuu700) new_lt15(xuu31100, xuu60) -> new_esEs27(new_compare14(xuu31100, xuu60)) new_esEs7(xuu311002, xuu602, ty_Char) -> new_esEs23(xuu311002, xuu602) new_esEs5(xuu311000, xuu600, ty_Integer) -> new_esEs21(xuu311000, xuu600) new_ltEs22(xuu69, xuu70, app(app(ty_@2, cb), bb)) -> new_ltEs9(xuu69, xuu70, cb, bb) new_esEs10(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_ltEs21(xuu82, xuu85, app(ty_Ratio, fde)) -> new_ltEs6(xuu82, xuu85, fde) new_esEs8(xuu311001, xuu601, ty_Float) -> new_esEs15(xuu311001, xuu601) new_esEs26(GT, GT) -> True new_compare11(GT, LT) -> GT new_primPlusNat0(Succ(xuu42200), Zero) -> Succ(xuu42200) new_primPlusNat0(Zero, Succ(xuu12900)) -> Succ(xuu12900) new_esEs6(xuu311000, xuu600, app(app(app(ty_@3, dhg), dhh), eaa)) -> new_esEs24(xuu311000, xuu600, dhg, dhh, eaa) new_esEs7(xuu311002, xuu602, ty_Double) -> new_esEs18(xuu311002, xuu602) new_esEs19(Right(xuu3110000), Right(xuu6000), fab, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_lt23(xuu109, xuu111, ty_Integer) -> new_lt13(xuu109, xuu111) new_esEs26(EQ, GT) -> False new_esEs26(GT, EQ) -> False new_esEs30(xuu3110000, xuu6000, app(app(ty_@2, dfg), dfh)) -> new_esEs20(xuu3110000, xuu6000, dfg, dfh) new_esEs33(xuu691, xuu701, ty_Double) -> new_esEs18(xuu691, xuu701) new_lt8(xuu691, xuu701, ty_Double) -> new_lt14(xuu691, xuu701) new_esEs40(xuu109, xuu111, ty_Bool) -> new_esEs17(xuu109, xuu111) new_esEs7(xuu311002, xuu602, app(app(ty_Either, ebb), ebc)) -> new_esEs19(xuu311002, xuu602, ebb, ebc) new_esEs6(xuu311000, xuu600, ty_Bool) -> new_esEs17(xuu311000, xuu600) new_ltEs18(Left(xuu690), Left(xuu700), ty_Float, bfa) -> new_ltEs17(xuu690, xuu700) new_esEs37(xuu81, xuu84, app(ty_Ratio, fdd)) -> new_esEs25(xuu81, xuu84, fdd) new_compare27(xuu109, xuu110, xuu111, xuu112, False, dg, fc) -> new_compare116(xuu109, xuu110, xuu111, xuu112, new_lt23(xuu109, xuu111, dg), new_asAs(new_esEs40(xuu109, xuu111, dg), new_ltEs24(xuu110, xuu112, fc)), dg, fc) new_compare1([], [], ge) -> EQ new_esEs30(xuu3110000, xuu6000, app(ty_Maybe, dga)) -> new_esEs22(xuu3110000, xuu6000, dga) new_ltEs22(xuu69, xuu70, app(ty_Ratio, dgf)) -> new_ltEs6(xuu69, xuu70, dgf) new_esEs5(xuu311000, xuu600, app(ty_Maybe, egg)) -> new_esEs22(xuu311000, xuu600, egg) new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(app(ty_@3, feh), ffa), ffb), fac) -> new_esEs24(xuu3110000, xuu6000, feh, ffa, ffb) new_esEs6(xuu311000, xuu600, ty_Integer) -> new_esEs21(xuu311000, xuu600) new_esEs19(Right(xuu3110000), Right(xuu6000), fab, app(ty_Ratio, fge)) -> new_esEs25(xuu3110000, xuu6000, fge) new_compare6(False, False) -> EQ new_esEs4(xuu311001, xuu601, ty_Integer) -> new_esEs21(xuu311001, xuu601) new_ltEs21(xuu82, xuu85, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs16(xuu82, xuu85, ccg, cch, cda) new_esEs10(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs40(xuu109, xuu111, ty_Integer) -> new_esEs21(xuu109, xuu111) new_esEs30(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs7(xuu91, xuu92, app(ty_Ratio, dgh)) -> new_ltEs6(xuu91, xuu92, dgh) new_esEs9(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_esEs28(xuu3110002, xuu6002, ty_Bool) -> new_esEs17(xuu3110002, xuu6002) new_esEs5(xuu311000, xuu600, app(app(ty_@2, fad), fae)) -> new_esEs20(xuu311000, xuu600, fad, fae) new_lt22(xuu690, xuu700, ty_Integer) -> new_lt13(xuu690, xuu700) new_lt8(xuu691, xuu701, ty_Bool) -> new_lt4(xuu691, xuu701) new_esEs12(:(xuu3110000, xuu3110001), :(xuu6000, xuu6001), cgb) -> new_asAs(new_esEs13(xuu3110000, xuu6000, cgb), new_esEs12(xuu3110001, xuu6001, cgb)) new_esEs38(xuu80, xuu83, app(ty_Ratio, fdc)) -> new_esEs25(xuu80, xuu83, fdc) new_ltEs21(xuu82, xuu85, ty_Double) -> new_ltEs14(xuu82, xuu85) new_lt8(xuu691, xuu701, ty_Integer) -> new_lt13(xuu691, xuu701) new_esEs33(xuu691, xuu701, app(app(ty_Either, bdd), bde)) -> new_esEs19(xuu691, xuu701, bdd, bde) new_esEs10(xuu311000, xuu600, app(app(ty_Either, chf), chg)) -> new_esEs19(xuu311000, xuu600, chf, chg) new_lt21(xuu81, xuu84, ty_Ordering) -> new_lt12(xuu81, xuu84) new_esEs6(xuu311000, xuu600, app(ty_Maybe, dhf)) -> new_esEs22(xuu311000, xuu600, dhf) new_ltEs11(Just(xuu690), Just(xuu700), ty_@0) -> new_ltEs4(xuu690, xuu700) new_esEs30(xuu3110000, xuu6000, ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_ltEs11(Just(xuu690), Just(xuu700), app(ty_Maybe, bac)) -> new_ltEs11(xuu690, xuu700, bac) new_esEs6(xuu311000, xuu600, app(app(ty_@2, dhd), dhe)) -> new_esEs20(xuu311000, xuu600, dhd, dhe) new_ltEs11(Just(xuu690), Just(xuu700), ty_Int) -> new_ltEs15(xuu690, xuu700) new_lt20(xuu80, xuu83, app(ty_Maybe, cac)) -> new_lt11(xuu80, xuu83, cac) new_ltEs7(xuu91, xuu92, app(app(ty_@2, cdf), cdg)) -> new_ltEs9(xuu91, xuu92, cdf, cdg) new_esEs34(xuu690, xuu700, ty_Int) -> new_esEs14(xuu690, xuu700) new_ltEs18(Right(xuu690), Right(xuu700), bga, ty_Double) -> new_ltEs14(xuu690, xuu700) new_compare8(xuu311000, xuu600, app(ty_Ratio, dca)) -> new_compare19(xuu311000, xuu600, dca) new_lt21(xuu81, xuu84, app(ty_Ratio, fdd)) -> new_lt19(xuu81, xuu84, fdd) new_ltEs20(xuu98, xuu99, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs16(xuu98, xuu99, cfe, cff, cfg) new_esEs29(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_ltEs20(xuu98, xuu99, ty_Double) -> new_ltEs14(xuu98, xuu99) new_esEs33(xuu691, xuu701, ty_Float) -> new_esEs15(xuu691, xuu701) new_lt20(xuu80, xuu83, app(app(ty_@2, bhf), bhg)) -> new_lt9(xuu80, xuu83, bhf, bhg) new_primMulInt(Neg(xuu3110000), Neg(xuu6010)) -> Pos(new_primMulNat0(xuu3110000, xuu6010)) new_esEs19(Right(xuu3110000), Right(xuu6000), fab, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs11(Just(xuu690), Just(xuu700), ty_Ordering) -> new_ltEs12(xuu690, xuu700) new_primCmpInt(Pos(Zero), Pos(Succ(xuu6000))) -> new_primCmpNat0(Zero, Succ(xuu6000)) new_compare28(xuu69, xuu70, False, fdh) -> new_compare115(xuu69, xuu70, new_ltEs22(xuu69, xuu70, fdh), fdh) new_lt20(xuu80, xuu83, ty_Ordering) -> new_lt12(xuu80, xuu83) new_compare11(LT, EQ) -> LT new_esEs19(Right(xuu3110000), Right(xuu6000), fab, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) new_compare10(Just(xuu311000), Just(xuu600), hg) -> new_compare28(xuu311000, xuu600, new_esEs6(xuu311000, xuu600, hg), hg) new_lt7(xuu690, xuu700, ty_Integer) -> new_lt13(xuu690, xuu700) new_esEs7(xuu311002, xuu602, app(app(app(ty_@3, ebg), ebh), eca)) -> new_esEs24(xuu311002, xuu602, ebg, ebh, eca) new_esEs8(xuu311001, xuu601, app(app(ty_Either, ecd), ece)) -> new_esEs19(xuu311001, xuu601, ecd, ece) new_compare115(xuu140, xuu141, True, fgg) -> LT new_fsEs(xuu194) -> new_not(new_esEs26(xuu194, GT)) new_esEs8(xuu311001, xuu601, ty_Double) -> new_esEs18(xuu311001, xuu601) new_esEs13(xuu3110000, xuu6000, app(ty_[], cgc)) -> new_esEs12(xuu3110000, xuu6000, cgc) new_esEs29(xuu3110001, xuu6001, app(ty_Maybe, deg)) -> new_esEs22(xuu3110001, xuu6001, deg) new_ltEs8(False, True) -> True new_esEs5(xuu311000, xuu600, ty_Bool) -> new_esEs17(xuu311000, xuu600) new_compare25(xuu98, xuu99, False, ceh, eag) -> new_compare112(xuu98, xuu99, new_ltEs20(xuu98, xuu99, eag), ceh, eag) new_esEs22(Just(xuu3110000), Just(xuu6000), app(ty_Ratio, faa)) -> new_esEs25(xuu3110000, xuu6000, faa) new_esEs6(xuu311000, xuu600, ty_Char) -> new_esEs23(xuu311000, xuu600) new_ltEs21(xuu82, xuu85, app(app(ty_@2, ccc), ccd)) -> new_ltEs9(xuu82, xuu85, ccc, ccd) new_compare8(xuu311000, xuu600, ty_Integer) -> new_compare12(xuu311000, xuu600) new_ltEs9(@2(xuu690, xuu691), @2(xuu700, xuu701), cb, bb) -> new_pePe(new_lt22(xuu690, xuu700, cb), new_asAs(new_esEs39(xuu690, xuu700, cb), new_ltEs23(xuu691, xuu701, bb))) new_compare7(Left(xuu311000), Left(xuu600), cdd, cde) -> new_compare24(xuu311000, xuu600, new_esEs10(xuu311000, xuu600, cdd), cdd, cde) new_esEs10(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_lt22(xuu690, xuu700, ty_Bool) -> new_lt4(xuu690, xuu700) new_lt23(xuu109, xuu111, app(ty_Ratio, fhc)) -> new_lt19(xuu109, xuu111, fhc) new_ltEs20(xuu98, xuu99, ty_Int) -> new_ltEs15(xuu98, xuu99) new_esEs19(Right(xuu3110000), Right(xuu6000), fab, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_primMulInt(Pos(xuu3110000), Neg(xuu6010)) -> Neg(new_primMulNat0(xuu3110000, xuu6010)) new_primMulInt(Neg(xuu3110000), Pos(xuu6010)) -> Neg(new_primMulNat0(xuu3110000, xuu6010)) new_esEs13(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_compare7(Left(xuu311000), Right(xuu600), cdd, cde) -> LT new_esEs38(xuu80, xuu83, ty_Char) -> new_esEs23(xuu80, xuu83) new_ltEs20(xuu98, xuu99, app(ty_Maybe, cfd)) -> new_ltEs11(xuu98, xuu99, cfd) new_esEs9(xuu311000, xuu600, app(app(ty_@2, edh), eea)) -> new_esEs20(xuu311000, xuu600, edh, eea) new_esEs37(xuu81, xuu84, ty_Integer) -> new_esEs21(xuu81, xuu84) new_lt23(xuu109, xuu111, app(app(ty_Either, gb), gc)) -> new_lt18(xuu109, xuu111, gb, gc) new_esEs36(xuu3110000, xuu6000, app(app(ty_@2, fcd), fce)) -> new_esEs20(xuu3110000, xuu6000, fcd, fce) new_compare11(LT, LT) -> EQ new_esEs37(xuu81, xuu84, app(ty_[], cbd)) -> new_esEs12(xuu81, xuu84, cbd) new_esEs28(xuu3110002, xuu6002, ty_Int) -> new_esEs14(xuu3110002, xuu6002) new_ltEs22(xuu69, xuu70, ty_@0) -> new_ltEs4(xuu69, xuu70) new_esEs11(xuu311000, xuu600, app(app(ty_@2, dbb), dbc)) -> new_esEs20(xuu311000, xuu600, dbb, dbc) new_ltEs7(xuu91, xuu92, ty_Int) -> new_ltEs15(xuu91, xuu92) new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(ty_Either, fec), fed), fac) -> new_esEs19(xuu3110000, xuu6000, fec, fed) new_esEs30(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs37(xuu81, xuu84, ty_Double) -> new_esEs18(xuu81, xuu84) new_ltEs19(xuu692, xuu702, ty_Ordering) -> new_ltEs12(xuu692, xuu702) new_ltEs19(xuu692, xuu702, ty_Double) -> new_ltEs14(xuu692, xuu702) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Float, fac) -> new_esEs15(xuu3110000, xuu6000) new_esEs13(xuu3110000, xuu6000, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs24(xuu3110000, xuu6000, cha, chb, chc) new_compare110(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, False, dcb, dcc, dcd) -> GT new_ltEs7(xuu91, xuu92, app(ty_Maybe, ceb)) -> new_ltEs11(xuu91, xuu92, ceb) new_esEs30(xuu3110000, xuu6000, app(app(ty_Either, dfe), dff)) -> new_esEs19(xuu3110000, xuu6000, dfe, dff) new_lt8(xuu691, xuu701, app(ty_[], bcg)) -> new_lt10(xuu691, xuu701, bcg) new_ltEs19(xuu692, xuu702, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs16(xuu692, xuu702, beb, bec, bed) new_ltEs19(xuu692, xuu702, app(ty_Ratio, eaf)) -> new_ltEs6(xuu692, xuu702, eaf) new_ltEs5(xuu69, xuu70) -> new_fsEs(new_compare18(xuu69, xuu70)) new_compare26(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, bhh, caa) -> new_compare114(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, new_lt20(xuu80, xuu83, cba), new_asAs(new_esEs38(xuu80, xuu83, cba), new_pePe(new_lt21(xuu81, xuu84, bhh), new_asAs(new_esEs37(xuu81, xuu84, bhh), new_ltEs21(xuu82, xuu85, caa)))), cba, bhh, caa) new_lt23(xuu109, xuu111, ty_Int) -> new_lt15(xuu109, xuu111) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Char, fac) -> new_esEs23(xuu3110000, xuu6000) new_esEs29(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_ltEs24(xuu110, xuu112, app(app(ty_Either, eg), eh)) -> new_ltEs18(xuu110, xuu112, eg, eh) new_asAs(True, xuu127) -> xuu127 new_compare6(True, False) -> GT new_esEs11(xuu311000, xuu600, app(ty_Ratio, dbh)) -> new_esEs25(xuu311000, xuu600, dbh) new_ltEs7(xuu91, xuu92, app(app(app(ty_@3, cec), ced), cee)) -> new_ltEs16(xuu91, xuu92, cec, ced, cee) new_esEs6(xuu311000, xuu600, ty_Ordering) -> new_esEs26(xuu311000, xuu600) new_ltEs19(xuu692, xuu702, ty_Int) -> new_ltEs15(xuu692, xuu702) new_esEs38(xuu80, xuu83, ty_Int) -> new_esEs14(xuu80, xuu83) new_ltEs7(xuu91, xuu92, ty_Double) -> new_ltEs14(xuu91, xuu92) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_ltEs20(xuu98, xuu99, app(app(ty_@2, cfa), cfb)) -> new_ltEs9(xuu98, xuu99, cfa, cfb) new_lt7(xuu690, xuu700, ty_Char) -> new_lt6(xuu690, xuu700) new_ltEs11(Just(xuu690), Just(xuu700), app(ty_[], bab)) -> new_ltEs10(xuu690, xuu700, bab) new_compare11(EQ, GT) -> LT new_esEs33(xuu691, xuu701, ty_Ordering) -> new_esEs26(xuu691, xuu701) new_esEs16(@0, @0) -> True new_esEs39(xuu690, xuu700, app(ty_Maybe, bd)) -> new_esEs22(xuu690, xuu700, bd) new_esEs21(Integer(xuu3110000), Integer(xuu6000)) -> new_primEqInt(xuu3110000, xuu6000) new_esEs8(xuu311001, xuu601, ty_@0) -> new_esEs16(xuu311001, xuu601) new_esEs36(xuu3110000, xuu6000, app(ty_Ratio, fdb)) -> new_esEs25(xuu3110000, xuu6000, fdb) new_lt23(xuu109, xuu111, ty_Double) -> new_lt14(xuu109, xuu111) new_compare111(xuu149, xuu150, False, fdf, fdg) -> GT new_lt21(xuu81, xuu84, app(app(ty_@2, cbb), cbc)) -> new_lt9(xuu81, xuu84, cbb, cbc) new_ltEs18(Right(xuu690), Right(xuu700), bga, ty_Integer) -> new_ltEs13(xuu690, xuu700) new_esEs35(xuu3110001, xuu6001, ty_@0) -> new_esEs16(xuu3110001, xuu6001) new_compare24(xuu91, xuu92, True, dgg, cdh) -> EQ new_esEs22(Just(xuu3110000), Just(xuu6000), app(ty_[], egh)) -> new_esEs12(xuu3110000, xuu6000, egh) new_esEs38(xuu80, xuu83, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs24(xuu80, xuu83, cad, cae, caf) new_ltEs19(xuu692, xuu702, app(app(ty_@2, bdf), bdg)) -> new_ltEs9(xuu692, xuu702, bdf, bdg) new_ltEs8(True, True) -> True new_compare16(Float(xuu311000, Pos(xuu3110010)), Float(xuu600, Pos(xuu6010))) -> new_compare14(new_sr0(xuu311000, Pos(xuu6010)), new_sr0(Pos(xuu3110010), xuu600)) new_lt23(xuu109, xuu111, app(app(app(ty_@3, fg), fh), ga)) -> new_lt16(xuu109, xuu111, fg, fh, ga) new_primCmpInt(Pos(Succ(xuu3110000)), Pos(xuu600)) -> new_primCmpNat0(Succ(xuu3110000), xuu600) new_ltEs7(xuu91, xuu92, ty_Float) -> new_ltEs17(xuu91, xuu92) new_esEs39(xuu690, xuu700, ty_Bool) -> new_esEs17(xuu690, xuu700) new_lt20(xuu80, xuu83, app(ty_[], cab)) -> new_lt10(xuu80, xuu83, cab) new_ltEs7(xuu91, xuu92, app(app(ty_Either, cef), ceg)) -> new_ltEs18(xuu91, xuu92, cef, ceg) new_lt20(xuu80, xuu83, ty_@0) -> new_lt17(xuu80, xuu83) new_primCompAux00(xuu63, EQ) -> xuu63 new_esEs39(xuu690, xuu700, app(app(ty_Either, bh), ca)) -> new_esEs19(xuu690, xuu700, bh, ca) new_compare113(xuu166, xuu167, xuu168, xuu169, False, ege, egf) -> GT new_esEs9(xuu311000, xuu600, app(ty_Ratio, eef)) -> new_esEs25(xuu311000, xuu600, eef) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Int, fac) -> new_esEs14(xuu3110000, xuu6000) new_esEs4(xuu311001, xuu601, app(ty_Maybe, efd)) -> new_esEs22(xuu311001, xuu601, efd) new_compare10(Nothing, Nothing, hg) -> EQ new_esEs28(xuu3110002, xuu6002, ty_Float) -> new_esEs15(xuu3110002, xuu6002) new_esEs10(xuu311000, xuu600, ty_Bool) -> new_esEs17(xuu311000, xuu600) new_esEs34(xuu690, xuu700, ty_Char) -> new_esEs23(xuu690, xuu700) new_primMulNat0(Zero, Zero) -> Zero new_ltEs20(xuu98, xuu99, ty_Ordering) -> new_ltEs12(xuu98, xuu99) new_esEs7(xuu311002, xuu602, ty_Bool) -> new_esEs17(xuu311002, xuu602) new_compare8(xuu311000, xuu600, app(app(ty_@2, gf), gg)) -> new_compare9(xuu311000, xuu600, gf, gg) new_esEs4(xuu311001, xuu601, app(app(ty_@2, efb), efc)) -> new_esEs20(xuu311001, xuu601, efb, efc) new_esEs19(Right(xuu3110000), Right(xuu6000), fab, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_lt22(xuu690, xuu700, app(app(ty_@2, h), ba)) -> new_lt9(xuu690, xuu700, h, ba) new_lt7(xuu690, xuu700, ty_Double) -> new_lt14(xuu690, xuu700) new_lt18(xuu31100, xuu60, cdd, cde) -> new_esEs27(new_compare7(xuu31100, xuu60, cdd, cde)) new_lt7(xuu690, xuu700, app(app(app(ty_@3, bbg), bbh), bca)) -> new_lt16(xuu690, xuu700, bbg, bbh, bca) new_ltEs24(xuu110, xuu112, ty_Int) -> new_ltEs15(xuu110, xuu112) new_lt21(xuu81, xuu84, app(ty_[], cbd)) -> new_lt10(xuu81, xuu84, cbd) new_esEs34(xuu690, xuu700, app(app(ty_Either, bcb), bcc)) -> new_esEs19(xuu690, xuu700, bcb, bcc) new_primMulNat0(Succ(xuu31100000), Succ(xuu60100)) -> new_primPlusNat0(new_primMulNat0(xuu31100000, Succ(xuu60100)), Succ(xuu60100)) new_ltEs18(Right(xuu690), Right(xuu700), bga, ty_Bool) -> new_ltEs8(xuu690, xuu700) new_esEs33(xuu691, xuu701, app(app(app(ty_@3, bda), bdb), bdc)) -> new_esEs24(xuu691, xuu701, bda, bdb, bdc) new_lt4(xuu31100, xuu60) -> new_esEs27(new_compare6(xuu31100, xuu60)) new_esEs40(xuu109, xuu111, app(app(ty_Either, gb), gc)) -> new_esEs19(xuu109, xuu111, gb, gc) new_compare1(:(xuu311000, xuu311001), :(xuu600, xuu601), ge) -> new_primCompAux0(xuu311000, xuu600, new_compare1(xuu311001, xuu601, ge), ge) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Integer, fac) -> new_esEs21(xuu3110000, xuu6000) new_esEs33(xuu691, xuu701, ty_Integer) -> new_esEs21(xuu691, xuu701) new_ltEs11(Nothing, Just(xuu700), fea) -> True new_ltEs20(xuu98, xuu99, ty_Integer) -> new_ltEs13(xuu98, xuu99) new_compare8(xuu311000, xuu600, ty_Ordering) -> new_compare11(xuu311000, xuu600) new_ltEs20(xuu98, xuu99, app(ty_Ratio, eah)) -> new_ltEs6(xuu98, xuu99, eah) new_esEs28(xuu3110002, xuu6002, ty_Char) -> new_esEs23(xuu3110002, xuu6002) new_ltEs23(xuu691, xuu701, ty_Char) -> new_ltEs5(xuu691, xuu701) new_lt8(xuu691, xuu701, ty_@0) -> new_lt17(xuu691, xuu701) new_esEs40(xuu109, xuu111, ty_Char) -> new_esEs23(xuu109, xuu111) new_lt14(xuu31100, xuu60) -> new_esEs27(new_compare13(xuu31100, xuu60)) new_lt22(xuu690, xuu700, ty_Float) -> new_lt5(xuu690, xuu700) new_esEs6(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_compare13(Double(xuu311000, Neg(xuu3110010)), Double(xuu600, Neg(xuu6010))) -> new_compare14(new_sr0(xuu311000, Neg(xuu6010)), new_sr0(Neg(xuu3110010), xuu600)) new_ltEs22(xuu69, xuu70, app(ty_[], gd)) -> new_ltEs10(xuu69, xuu70, gd) new_esEs13(xuu3110000, xuu6000, ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs12(GT, LT) -> False new_ltEs19(xuu692, xuu702, app(ty_Maybe, bea)) -> new_ltEs11(xuu692, xuu702, bea) new_lt7(xuu690, xuu700, ty_Ordering) -> new_lt12(xuu690, xuu700) new_esEs28(xuu3110002, xuu6002, app(app(app(ty_@3, ddf), ddg), ddh)) -> new_esEs24(xuu3110002, xuu6002, ddf, ddg, ddh) new_esEs9(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_esEs15(Float(xuu3110000, xuu3110001), Float(xuu6000, xuu6001)) -> new_esEs14(new_sr0(xuu3110000, xuu6001), new_sr0(xuu3110001, xuu6000)) new_lt7(xuu690, xuu700, ty_Int) -> new_lt15(xuu690, xuu700) new_ltEs18(Right(xuu690), Right(xuu700), bga, app(ty_Ratio, egb)) -> new_ltEs6(xuu690, xuu700, egb) new_ltEs18(Left(xuu690), Left(xuu700), ty_@0, bfa) -> new_ltEs4(xuu690, xuu700) new_esEs6(xuu311000, xuu600, ty_Float) -> new_esEs15(xuu311000, xuu600) new_compare7(Right(xuu311000), Left(xuu600), cdd, cde) -> GT new_esEs10(xuu311000, xuu600, app(ty_Maybe, dab)) -> new_esEs22(xuu311000, xuu600, dab) new_compare27(xuu109, xuu110, xuu111, xuu112, True, dg, fc) -> EQ new_primEqInt(Neg(Succ(xuu31100000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(xuu60000))) -> False new_esEs5(xuu311000, xuu600, ty_Double) -> new_esEs18(xuu311000, xuu600) new_ltEs20(xuu98, xuu99, app(app(ty_Either, cfh), cga)) -> new_ltEs18(xuu98, xuu99, cfh, cga) new_esEs39(xuu690, xuu700, app(app(app(ty_@3, be), bf), bg)) -> new_esEs24(xuu690, xuu700, be, bf, bg) new_esEs14(xuu311000, xuu600) -> new_primEqInt(xuu311000, xuu600) new_esEs33(xuu691, xuu701, app(ty_[], bcg)) -> new_esEs12(xuu691, xuu701, bcg) new_ltEs24(xuu110, xuu112, app(ty_Ratio, fhb)) -> new_ltEs6(xuu110, xuu112, fhb) new_primEqInt(Pos(Succ(xuu31100000)), Pos(Succ(xuu60000))) -> new_primEqNat0(xuu31100000, xuu60000) new_ltEs18(Right(xuu690), Right(xuu700), bga, app(ty_Maybe, bge)) -> new_ltEs11(xuu690, xuu700, bge) new_ltEs24(xuu110, xuu112, app(app(ty_@2, dh), ea)) -> new_ltEs9(xuu110, xuu112, dh, ea) new_esEs4(xuu311001, xuu601, ty_@0) -> new_esEs16(xuu311001, xuu601) new_esEs27(GT) -> False new_ltEs24(xuu110, xuu112, app(ty_Maybe, ec)) -> new_ltEs11(xuu110, xuu112, ec) new_esEs7(xuu311002, xuu602, ty_Int) -> new_esEs14(xuu311002, xuu602) new_compare8(xuu311000, xuu600, app(ty_[], gh)) -> new_compare1(xuu311000, xuu600, gh) new_compare16(Float(xuu311000, Neg(xuu3110010)), Float(xuu600, Neg(xuu6010))) -> new_compare14(new_sr0(xuu311000, Neg(xuu6010)), new_sr0(Neg(xuu3110010), xuu600)) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_ltEs7(xuu91, xuu92, ty_Integer) -> new_ltEs13(xuu91, xuu92) new_esEs8(xuu311001, xuu601, ty_Bool) -> new_esEs17(xuu311001, xuu601) new_lt23(xuu109, xuu111, ty_Ordering) -> new_lt12(xuu109, xuu111) new_esEs23(Char(xuu3110000), Char(xuu6000)) -> new_primEqNat0(xuu3110000, xuu6000) new_compare6(False, True) -> LT new_esEs39(xuu690, xuu700, ty_@0) -> new_esEs16(xuu690, xuu700) new_compare13(Double(xuu311000, Pos(xuu3110010)), Double(xuu600, Pos(xuu6010))) -> new_compare14(new_sr0(xuu311000, Pos(xuu6010)), new_sr0(Pos(xuu3110010), xuu600)) new_lt19(xuu31100, xuu60, faf) -> new_esEs27(new_compare19(xuu31100, xuu60, faf)) new_ltEs24(xuu110, xuu112, ty_Ordering) -> new_ltEs12(xuu110, xuu112) new_primEqInt(Pos(Succ(xuu31100000)), Neg(xuu6000)) -> False new_primEqInt(Neg(Succ(xuu31100000)), Pos(xuu6000)) -> False new_ltEs18(Right(xuu690), Right(xuu700), bga, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs16(xuu690, xuu700, bgf, bgg, bgh) new_ltEs6(xuu69, xuu70, dgf) -> new_fsEs(new_compare19(xuu69, xuu70, dgf)) new_lt23(xuu109, xuu111, app(ty_Maybe, ff)) -> new_lt11(xuu109, xuu111, ff) new_esEs24(@3(xuu3110000, xuu3110001, xuu3110002), @3(xuu6000, xuu6001, xuu6002), dce, dcf, dcg) -> new_asAs(new_esEs30(xuu3110000, xuu6000, dce), new_asAs(new_esEs29(xuu3110001, xuu6001, dcf), new_esEs28(xuu3110002, xuu6002, dcg))) new_compare11(LT, GT) -> LT new_esEs35(xuu3110001, xuu6001, app(app(ty_Either, fah), fba)) -> new_esEs19(xuu3110001, xuu6001, fah, fba) new_primCmpInt(Neg(Zero), Neg(Succ(xuu6000))) -> new_primCmpNat0(Succ(xuu6000), Zero) new_esEs8(xuu311001, xuu601, app(ty_Maybe, ech)) -> new_esEs22(xuu311001, xuu601, ech) new_compare14(xuu31100, xuu60) -> new_primCmpInt(xuu31100, xuu60) new_esEs33(xuu691, xuu701, ty_Char) -> new_esEs23(xuu691, xuu701) new_ltEs18(Left(xuu690), Left(xuu700), app(ty_Maybe, bfc), bfa) -> new_ltEs11(xuu690, xuu700, bfc) new_esEs29(xuu3110001, xuu6001, app(app(ty_Either, dec), ded)) -> new_esEs19(xuu3110001, xuu6001, dec, ded) new_ltEs19(xuu692, xuu702, app(app(ty_Either, bee), bef)) -> new_ltEs18(xuu692, xuu702, bee, bef) new_esEs5(xuu311000, xuu600, ty_Ordering) -> new_esEs26(xuu311000, xuu600) new_lt21(xuu81, xuu84, ty_Bool) -> new_lt4(xuu81, xuu84) new_esEs32(xuu3110000, xuu6000, ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_esEs5(xuu311000, xuu600, app(ty_Ratio, eac)) -> new_esEs25(xuu311000, xuu600, eac) new_esEs40(xuu109, xuu111, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs24(xuu109, xuu111, fg, fh, ga) new_ltEs12(EQ, GT) -> True new_esEs10(xuu311000, xuu600, app(app(ty_@2, chh), daa)) -> new_esEs20(xuu311000, xuu600, chh, daa) new_lt8(xuu691, xuu701, ty_Char) -> new_lt6(xuu691, xuu701) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs34(xuu690, xuu700, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs24(xuu690, xuu700, bbg, bbh, bca) new_ltEs18(Left(xuu690), Left(xuu700), app(ty_Ratio, ega), bfa) -> new_ltEs6(xuu690, xuu700, ega) new_ltEs11(Just(xuu690), Just(xuu700), app(app(ty_@2, hh), baa)) -> new_ltEs9(xuu690, xuu700, hh, baa) new_ltEs11(Just(xuu690), Just(xuu700), app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs16(xuu690, xuu700, bad, bae, baf) new_esEs13(xuu3110000, xuu6000, ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_esEs29(xuu3110001, xuu6001, ty_Int) -> new_esEs14(xuu3110001, xuu6001) new_esEs38(xuu80, xuu83, ty_Double) -> new_esEs18(xuu80, xuu83) new_ltEs18(Right(xuu690), Right(xuu700), bga, ty_Ordering) -> new_ltEs12(xuu690, xuu700) new_esEs17(True, True) -> True new_ltEs12(EQ, EQ) -> True new_esEs35(xuu3110001, xuu6001, app(app(ty_@2, fbb), fbc)) -> new_esEs20(xuu3110001, xuu6001, fbb, fbc) new_esEs9(xuu311000, xuu600, app(ty_Maybe, eeb)) -> new_esEs22(xuu311000, xuu600, eeb) new_esEs19(Right(xuu3110000), Right(xuu6000), fab, app(app(ty_Either, ffe), fff)) -> new_esEs19(xuu3110000, xuu6000, ffe, fff) new_ltEs16(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, bbc, bbd) -> new_pePe(new_lt7(xuu690, xuu700, bcd), new_asAs(new_esEs34(xuu690, xuu700, bcd), new_pePe(new_lt8(xuu691, xuu701, bbc), new_asAs(new_esEs33(xuu691, xuu701, bbc), new_ltEs19(xuu692, xuu702, bbd))))) new_esEs36(xuu3110000, xuu6000, app(ty_Maybe, fcf)) -> new_esEs22(xuu3110000, xuu6000, fcf) new_compare8(xuu311000, xuu600, ty_Int) -> new_compare14(xuu311000, xuu600) new_esEs39(xuu690, xuu700, ty_Float) -> new_esEs15(xuu690, xuu700) new_lt23(xuu109, xuu111, ty_Char) -> new_lt6(xuu109, xuu111) new_lt20(xuu80, xuu83, ty_Double) -> new_lt14(xuu80, xuu83) new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_[], feb), fac) -> new_esEs12(xuu3110000, xuu6000, feb) new_compare112(xuu156, xuu157, False, egc, egd) -> GT new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Char) -> new_esEs23(xuu3110000, xuu6000) new_ltEs7(xuu91, xuu92, ty_Bool) -> new_ltEs8(xuu91, xuu92) new_lt7(xuu690, xuu700, app(app(ty_Either, bcb), bcc)) -> new_lt18(xuu690, xuu700, bcb, bcc) new_esEs33(xuu691, xuu701, app(ty_Ratio, eae)) -> new_esEs25(xuu691, xuu701, eae) new_esEs37(xuu81, xuu84, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs24(xuu81, xuu84, cbf, cbg, cbh) new_esEs6(xuu311000, xuu600, app(ty_Ratio, eab)) -> new_esEs25(xuu311000, xuu600, eab) new_esEs38(xuu80, xuu83, app(app(ty_Either, cag), cah)) -> new_esEs19(xuu80, xuu83, cag, cah) new_lt21(xuu81, xuu84, ty_Char) -> new_lt6(xuu81, xuu84) new_ltEs22(xuu69, xuu70, ty_Bool) -> new_ltEs8(xuu69, xuu70) new_lt20(xuu80, xuu83, app(app(app(ty_@3, cad), cae), caf)) -> new_lt16(xuu80, xuu83, cad, cae, caf) new_compare6(True, True) -> EQ new_esEs11(xuu311000, xuu600, ty_@0) -> new_esEs16(xuu311000, xuu600) new_not(False) -> True new_ltEs11(Just(xuu690), Just(xuu700), app(ty_Ratio, fgf)) -> new_ltEs6(xuu690, xuu700, fgf) new_esEs13(xuu3110000, xuu6000, app(ty_Maybe, cgh)) -> new_esEs22(xuu3110000, xuu6000, cgh) new_esEs28(xuu3110002, xuu6002, app(ty_[], dch)) -> new_esEs12(xuu3110002, xuu6002, dch) new_esEs10(xuu311000, xuu600, app(ty_Ratio, daf)) -> new_esEs25(xuu311000, xuu600, daf) new_compare1([], :(xuu600, xuu601), ge) -> LT new_compare9(@2(xuu311000, xuu311001), @2(xuu600, xuu601), de, df) -> new_compare27(xuu311000, xuu311001, xuu600, xuu601, new_asAs(new_esEs5(xuu311000, xuu600, de), new_esEs4(xuu311001, xuu601, df)), de, df) new_esEs34(xuu690, xuu700, ty_@0) -> new_esEs16(xuu690, xuu700) new_ltEs11(Just(xuu690), Just(xuu700), ty_Double) -> new_ltEs14(xuu690, xuu700) new_esEs28(xuu3110002, xuu6002, ty_Ordering) -> new_esEs26(xuu3110002, xuu6002) new_esEs40(xuu109, xuu111, ty_Ordering) -> new_esEs26(xuu109, xuu111) new_lt22(xuu690, xuu700, app(app(ty_Either, bh), ca)) -> new_lt18(xuu690, xuu700, bh, ca) new_ltEs15(xuu69, xuu70) -> new_fsEs(new_compare14(xuu69, xuu70)) new_compare116(xuu166, xuu167, xuu168, xuu169, True, xuu171, ege, egf) -> new_compare113(xuu166, xuu167, xuu168, xuu169, True, ege, egf) new_ltEs21(xuu82, xuu85, app(ty_Maybe, ccf)) -> new_ltEs11(xuu82, xuu85, ccf) new_compare18(Char(xuu311000), Char(xuu600)) -> new_primCmpNat0(xuu311000, xuu600) new_primPlusNat0(Succ(xuu42200), Succ(xuu12900)) -> Succ(Succ(new_primPlusNat0(xuu42200, xuu12900))) new_esEs13(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_ltEs21(xuu82, xuu85, ty_@0) -> new_ltEs4(xuu82, xuu85) new_esEs22(Just(xuu3110000), Just(xuu6000), app(app(app(ty_@3, ehf), ehg), ehh)) -> new_esEs24(xuu3110000, xuu6000, ehf, ehg, ehh) new_compare114(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, True, xuu188, dcb, dcc, dcd) -> new_compare110(xuu181, xuu182, xuu183, xuu184, xuu185, xuu186, True, dcb, dcc, dcd) new_esEs9(xuu311000, xuu600, ty_Bool) -> new_esEs17(xuu311000, xuu600) new_ltEs18(Left(xuu690), Left(xuu700), app(ty_[], bfb), bfa) -> new_ltEs10(xuu690, xuu700, bfb) new_lt8(xuu691, xuu701, app(app(ty_@2, bce), bcf)) -> new_lt9(xuu691, xuu701, bce, bcf) new_esEs7(xuu311002, xuu602, app(ty_[], eba)) -> new_esEs12(xuu311002, xuu602, eba) new_esEs34(xuu690, xuu700, ty_Integer) -> new_esEs21(xuu690, xuu700) new_esEs36(xuu3110000, xuu6000, ty_Double) -> new_esEs18(xuu3110000, xuu6000) new_lt7(xuu690, xuu700, app(ty_[], bbe)) -> new_lt10(xuu690, xuu700, bbe) new_esEs22(Just(xuu3110000), Just(xuu6000), app(app(ty_@2, ehc), ehd)) -> new_esEs20(xuu3110000, xuu6000, ehc, ehd) new_esEs37(xuu81, xuu84, ty_Float) -> new_esEs15(xuu81, xuu84) new_esEs40(xuu109, xuu111, ty_Float) -> new_esEs15(xuu109, xuu111) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Double, fac) -> new_esEs18(xuu3110000, xuu6000) new_esEs13(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) new_esEs4(xuu311001, xuu601, app(app(ty_Either, eeh), efa)) -> new_esEs19(xuu311001, xuu601, eeh, efa) new_esEs36(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_esEs11(xuu311000, xuu600, ty_Integer) -> new_esEs21(xuu311000, xuu600) new_ltEs13(xuu69, xuu70) -> new_fsEs(new_compare12(xuu69, xuu70)) new_ltEs18(Left(xuu690), Left(xuu700), ty_Bool, bfa) -> new_ltEs8(xuu690, xuu700) new_esEs28(xuu3110002, xuu6002, app(app(ty_Either, dda), ddb)) -> new_esEs19(xuu3110002, xuu6002, dda, ddb) new_ltEs18(Right(xuu690), Right(xuu700), bga, ty_Char) -> new_ltEs5(xuu690, xuu700) new_esEs13(xuu3110000, xuu6000, ty_Bool) -> new_esEs17(xuu3110000, xuu6000) new_compare8(xuu311000, xuu600, ty_Char) -> new_compare18(xuu311000, xuu600) new_esEs13(xuu3110000, xuu6000, app(app(ty_Either, cgd), cge)) -> new_esEs19(xuu3110000, xuu6000, cgd, cge) new_esEs36(xuu3110000, xuu6000, app(app(ty_Either, fcb), fcc)) -> new_esEs19(xuu3110000, xuu6000, fcb, fcc) new_ltEs24(xuu110, xuu112, app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs16(xuu110, xuu112, ed, ee, ef) new_sr0(xuu311000, xuu601) -> new_primMulInt(xuu311000, xuu601) new_esEs35(xuu3110001, xuu6001, app(app(app(ty_@3, fbe), fbf), fbg)) -> new_esEs24(xuu3110001, xuu6001, fbe, fbf, fbg) new_esEs30(xuu3110000, xuu6000, ty_Int) -> new_esEs14(xuu3110000, xuu6000) new_lt20(xuu80, xuu83, app(app(ty_Either, cag), cah)) -> new_lt18(xuu80, xuu83, cag, cah) new_lt7(xuu690, xuu700, ty_Float) -> new_lt5(xuu690, xuu700) new_ltEs24(xuu110, xuu112, ty_Double) -> new_ltEs14(xuu110, xuu112) new_ltEs4(xuu69, xuu70) -> new_fsEs(new_compare17(xuu69, xuu70)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs11(xuu311000, xuu600, app(ty_Maybe, dbd)) -> new_esEs22(xuu311000, xuu600, dbd) new_esEs34(xuu690, xuu700, app(ty_Maybe, bbf)) -> new_esEs22(xuu690, xuu700, bbf) new_esEs37(xuu81, xuu84, ty_Char) -> new_esEs23(xuu81, xuu84) new_esEs28(xuu3110002, xuu6002, ty_Double) -> new_esEs18(xuu3110002, xuu6002) new_ltEs24(xuu110, xuu112, ty_Bool) -> new_ltEs8(xuu110, xuu112) new_ltEs23(xuu691, xuu701, ty_@0) -> new_ltEs4(xuu691, xuu701) new_esEs19(Right(xuu3110000), Right(xuu6000), fab, app(ty_Maybe, fga)) -> new_esEs22(xuu3110000, xuu6000, fga) new_esEs37(xuu81, xuu84, app(app(ty_@2, cbb), cbc)) -> new_esEs20(xuu81, xuu84, cbb, cbc) new_esEs4(xuu311001, xuu601, ty_Double) -> new_esEs18(xuu311001, xuu601) new_esEs36(xuu3110000, xuu6000, ty_Integer) -> new_esEs21(xuu3110000, xuu6000) new_esEs36(xuu3110000, xuu6000, ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) new_compare8(xuu311000, xuu600, ty_Float) -> new_compare16(xuu311000, xuu600) new_esEs6(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_esEs9(xuu311000, xuu600, ty_Integer) -> new_esEs21(xuu311000, xuu600) new_ltEs18(Left(xuu690), Right(xuu700), bga, bfa) -> True new_ltEs21(xuu82, xuu85, ty_Float) -> new_ltEs17(xuu82, xuu85) new_ltEs23(xuu691, xuu701, app(ty_Maybe, cf)) -> new_ltEs11(xuu691, xuu701, cf) new_ltEs22(xuu69, xuu70, ty_Char) -> new_ltEs5(xuu69, xuu70) new_ltEs20(xuu98, xuu99, app(ty_[], cfc)) -> new_ltEs10(xuu98, xuu99, cfc) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs7(xuu91, xuu92, app(ty_[], cea)) -> new_ltEs10(xuu91, xuu92, cea) new_esEs17(False, False) -> True new_esEs22(Just(xuu3110000), Just(xuu6000), ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs5(xuu311000, xuu600, app(ty_[], cgb)) -> new_esEs12(xuu311000, xuu600, cgb) new_esEs26(EQ, EQ) -> True new_esEs34(xuu690, xuu700, ty_Bool) -> new_esEs17(xuu690, xuu700) new_lt23(xuu109, xuu111, ty_Float) -> new_lt5(xuu109, xuu111) new_compare17(@0, @0) -> EQ new_ltEs18(Right(xuu690), Left(xuu700), bga, bfa) -> False new_ltEs12(EQ, LT) -> False new_lt7(xuu690, xuu700, ty_@0) -> new_lt17(xuu690, xuu700) new_ltEs18(Right(xuu690), Right(xuu700), bga, ty_Int) -> new_ltEs15(xuu690, xuu700) new_esEs19(Left(xuu3110000), Left(xuu6000), app(app(ty_@2, fee), fef), fac) -> new_esEs20(xuu3110000, xuu6000, fee, fef) new_ltEs21(xuu82, xuu85, ty_Ordering) -> new_ltEs12(xuu82, xuu85) new_compare26(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, True, cba, bhh, caa) -> EQ new_esEs5(xuu311000, xuu600, ty_Int) -> new_esEs14(xuu311000, xuu600) new_ltEs21(xuu82, xuu85, app(ty_[], cce)) -> new_ltEs10(xuu82, xuu85, cce) new_primCmpNat0(Succ(xuu3110000), Succ(xuu6000)) -> new_primCmpNat0(xuu3110000, xuu6000) new_ltEs18(Left(xuu690), Left(xuu700), ty_Double, bfa) -> new_ltEs14(xuu690, xuu700) new_compare10(Just(xuu311000), Nothing, hg) -> GT new_ltEs7(xuu91, xuu92, ty_Ordering) -> new_ltEs12(xuu91, xuu92) new_esEs35(xuu3110001, xuu6001, ty_Char) -> new_esEs23(xuu3110001, xuu6001) new_esEs37(xuu81, xuu84, ty_@0) -> new_esEs16(xuu81, xuu84) new_esEs38(xuu80, xuu83, ty_Ordering) -> new_esEs26(xuu80, xuu83) new_esEs26(LT, LT) -> True new_esEs30(xuu3110000, xuu6000, app(ty_[], dfd)) -> new_esEs12(xuu3110000, xuu6000, dfd) new_lt22(xuu690, xuu700, ty_@0) -> new_lt17(xuu690, xuu700) new_esEs11(xuu311000, xuu600, ty_Bool) -> new_esEs17(xuu311000, xuu600) new_ltEs11(Just(xuu690), Nothing, fea) -> False new_esEs40(xuu109, xuu111, ty_Int) -> new_esEs14(xuu109, xuu111) new_esEs25(:%(xuu3110000, xuu3110001), :%(xuu6000, xuu6001), eac) -> new_asAs(new_esEs32(xuu3110000, xuu6000, eac), new_esEs31(xuu3110001, xuu6001, eac)) new_ltEs11(Nothing, Nothing, fea) -> True new_esEs12([], [], cgb) -> True new_ltEs22(xuu69, xuu70, ty_Ordering) -> new_ltEs12(xuu69, xuu70) new_esEs4(xuu311001, xuu601, ty_Int) -> new_esEs14(xuu311001, xuu601) new_esEs39(xuu690, xuu700, ty_Int) -> new_esEs14(xuu690, xuu700) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs12(LT, EQ) -> True new_ltEs23(xuu691, xuu701, ty_Integer) -> new_ltEs13(xuu691, xuu701) new_ltEs10(xuu69, xuu70, gd) -> new_fsEs(new_compare1(xuu69, xuu70, gd)) new_ltEs23(xuu691, xuu701, ty_Bool) -> new_ltEs8(xuu691, xuu701) new_compare8(xuu311000, xuu600, ty_@0) -> new_compare17(xuu311000, xuu600) new_lt20(xuu80, xuu83, ty_Char) -> new_lt6(xuu80, xuu83) new_lt21(xuu81, xuu84, ty_@0) -> new_lt17(xuu81, xuu84) new_esEs37(xuu81, xuu84, ty_Ordering) -> new_esEs26(xuu81, xuu84) new_esEs36(xuu3110000, xuu6000, ty_Char) -> new_esEs23(xuu3110000, xuu6000) new_lt21(xuu81, xuu84, app(app(ty_Either, cca), ccb)) -> new_lt18(xuu81, xuu84, cca, ccb) new_ltEs7(xuu91, xuu92, ty_Char) -> new_ltEs5(xuu91, xuu92) new_primEqNat0(Zero, Zero) -> True new_lt8(xuu691, xuu701, ty_Float) -> new_lt5(xuu691, xuu701) new_esEs13(xuu3110000, xuu6000, ty_Char) -> new_esEs23(xuu3110000, xuu6000) new_esEs19(Left(xuu3110000), Left(xuu6000), app(ty_Ratio, ffc), fac) -> new_esEs25(xuu3110000, xuu6000, ffc) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Float) -> new_esEs15(xuu3110000, xuu6000) new_ltEs18(Right(xuu690), Right(xuu700), bga, ty_Float) -> new_ltEs17(xuu690, xuu700) new_esEs36(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_ltEs24(xuu110, xuu112, ty_Integer) -> new_ltEs13(xuu110, xuu112) new_esEs13(xuu3110000, xuu6000, ty_@0) -> new_esEs16(xuu3110000, xuu6000) new_esEs19(Left(xuu3110000), Left(xuu6000), ty_Ordering, fac) -> new_esEs26(xuu3110000, xuu6000) new_esEs35(xuu3110001, xuu6001, ty_Integer) -> new_esEs21(xuu3110001, xuu6001) new_esEs13(xuu3110000, xuu6000, app(app(ty_@2, cgf), cgg)) -> new_esEs20(xuu3110000, xuu6000, cgf, cgg) new_asAs(False, xuu127) -> False new_ltEs22(xuu69, xuu70, app(ty_Maybe, fea)) -> new_ltEs11(xuu69, xuu70, fea) new_ltEs17(xuu69, xuu70) -> new_fsEs(new_compare16(xuu69, xuu70)) new_ltEs20(xuu98, xuu99, ty_Float) -> new_ltEs17(xuu98, xuu99) new_esEs8(xuu311001, xuu601, app(ty_Ratio, edd)) -> new_esEs25(xuu311001, xuu601, edd) new_esEs19(Left(xuu3110000), Right(xuu6000), fab, fac) -> False new_esEs19(Right(xuu3110000), Left(xuu6000), fab, fac) -> False new_ltEs21(xuu82, xuu85, ty_Char) -> new_ltEs5(xuu82, xuu85) new_ltEs21(xuu82, xuu85, ty_Int) -> new_ltEs15(xuu82, xuu85) new_ltEs19(xuu692, xuu702, app(ty_[], bdh)) -> new_ltEs10(xuu692, xuu702, bdh) new_compare7(Right(xuu311000), Right(xuu600), cdd, cde) -> new_compare25(xuu311000, xuu600, new_esEs11(xuu311000, xuu600, cde), cdd, cde) new_esEs35(xuu3110001, xuu6001, ty_Bool) -> new_esEs17(xuu3110001, xuu6001) new_esEs6(xuu311000, xuu600, app(ty_[], dha)) -> new_esEs12(xuu311000, xuu600, dha) new_esEs38(xuu80, xuu83, ty_Float) -> new_esEs15(xuu80, xuu83) new_esEs35(xuu3110001, xuu6001, app(ty_Maybe, fbd)) -> new_esEs22(xuu3110001, xuu6001, fbd) new_esEs27(EQ) -> False new_ltEs19(xuu692, xuu702, ty_Float) -> new_ltEs17(xuu692, xuu702) new_esEs22(Just(xuu3110000), Just(xuu6000), ty_Ordering) -> new_esEs26(xuu3110000, xuu6000) The set Q consists of the following terms: new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs13(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs22(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs22(Just(x0), Just(x1), ty_Char) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs15(x0, x1) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1, x2) new_lt8(x0, x1, ty_Char) new_lt7(x0, x1, ty_Ordering) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_@0) new_primCompAux0(x0, x1, x2, x3) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_esEs13(x0, x1, ty_Ordering) new_ltEs13(x0, x1) new_ltEs20(x0, x1, ty_@0) new_compare1(:(x0, x1), :(x2, x3), x4) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(Left(x0), Left(x1), x2, x3) new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) new_compare18(Char(x0), Char(x1)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(x0, x1, ty_Int) new_compare8(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12([], :(x0, x1), x2) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_@0) new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, GT) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt23(x0, x1, ty_@0) new_esEs19(Right(x0), Right(x1), x2, ty_@0) new_esEs19(Right(x0), Right(x1), x2, ty_Char) new_esEs9(x0, x1, ty_@0) new_compare6(True, False) new_compare6(False, True) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt7(x0, x1, ty_Double) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Integer) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_lt18(x0, x1, x2, x3) new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt7(x0, x1, ty_Char) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1) new_lt23(x0, x1, ty_Char) new_esEs17(False, False) new_esEs7(x0, x1, ty_Bool) new_ltEs11(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Integer) new_esEs26(LT, GT) new_esEs26(GT, LT) new_lt8(x0, x1, ty_Ordering) new_lt7(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Int) new_compare12(Integer(x0), Integer(x1)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_compare17(@0, @0) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Zero, Succ(x0)) new_ltEs20(x0, x1, ty_Char) new_primMulInt(Neg(x0), Neg(x1)) new_esEs9(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, ty_Double) new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs19(Right(x0), Right(x1), x2, ty_Int) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Bool) new_compare112(x0, x1, True, x2, x3) new_ltEs22(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Float) new_lt8(x0, x1, ty_Int) new_lt23(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(x0, x1, x2) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Integer) new_lt8(x0, x1, ty_Double) new_compare115(x0, x1, False, x2) new_ltEs20(x0, x1, ty_Integer) new_esEs22(Just(x0), Just(x1), ty_Double) new_esEs22(Just(x0), Just(x1), ty_@0) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs27(GT) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(ty_[], x2)) new_ltEs8(False, False) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs35(x0, x1, ty_Double) new_compare115(x0, x1, True, x2) new_lt4(x0, x1) new_ltEs11(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs12(GT, EQ) new_esEs33(x0, x1, ty_Integer) new_ltEs12(EQ, GT) new_lt8(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Integer) new_esEs22(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs18(Right(x0), Right(x1), x2, ty_Float) new_ltEs23(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Ordering) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs39(x0, x1, app(ty_[], x2)) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs39(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Int) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(Just(x0), Just(x1), ty_Int) new_compare6(False, False) new_esEs22(Just(x0), Nothing, x1) new_ltEs18(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, x2) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs35(x0, x1, ty_Char) new_compare114(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, ty_Float) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_ltEs11(Just(x0), Just(x1), ty_Ordering) new_ltEs21(x0, x1, ty_Float) new_esEs28(x0, x1, ty_Ordering) new_esEs22(Nothing, Nothing, x0) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_ltEs18(Right(x0), Right(x1), x2, ty_Char) new_esEs4(x0, x1, ty_Bool) new_ltEs7(x0, x1, ty_Integer) new_primCmpNat0(Zero, Succ(x0)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Left(x0), Left(x1), ty_Double, x2) new_esEs7(x0, x1, ty_Integer) new_pePe(False, x0) new_ltEs23(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Char) new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs19(Left(x0), Left(x1), ty_Char, x2) new_ltEs19(x0, x1, ty_Double) new_esEs4(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Integer) new_esEs22(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(EQ, EQ) new_esEs7(x0, x1, ty_Char) new_ltEs11(Just(x0), Just(x1), app(ty_[], x2)) new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs38(x0, x1, ty_@0) new_lt7(x0, x1, ty_Bool) new_esEs19(Left(x0), Left(x1), ty_Int, x2) new_esEs7(x0, x1, ty_Int) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Int) new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs21(Integer(x0), Integer(x1)) new_compare116(x0, x1, x2, x3, False, x4, x5, x6) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs39(x0, x1, ty_Char) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, ty_Integer) new_compare114(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) new_esEs34(x0, x1, ty_Char) new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs4(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_compare6(True, True) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Ordering) new_esEs26(LT, EQ) new_esEs26(EQ, LT) new_lt14(x0, x1) new_compare16(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare16(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs19(Right(x0), Right(x1), x2, ty_Double) new_esEs36(x0, x1, ty_Double) new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare10(Nothing, Nothing, x0) new_esEs26(GT, GT) new_compare24(x0, x1, True, x2, x3) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs6(x0, x1, ty_Double) new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs29(x0, x1, app(ty_[], x2)) new_compare15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt23(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Double) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(EQ) new_ltEs11(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Int) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs36(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Bool) new_esEs19(Left(x0), Left(x1), ty_Float, x2) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Integer) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(EQ, LT) new_ltEs12(LT, EQ) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Float) new_ltEs11(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs12(GT, GT) new_esEs13(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs7(x0, x1, ty_Bool) new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Int) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt10(x0, x1, x2) new_compare8(x0, x1, ty_@0) new_esEs22(Nothing, Just(x0), x1) new_ltEs11(Just(x0), Just(x1), ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_sr0(x0, x1) new_ltEs7(x0, x1, ty_Int) new_compare13(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare13(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_compare8(x0, x1, ty_Double) new_lt7(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs11(Just(x0), Just(x1), ty_Double) new_compare111(x0, x1, False, x2, x3) new_esEs30(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Char) new_ltEs18(Left(x0), Left(x1), ty_@0, x2) new_compare25(x0, x1, False, x2, x3) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs7(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Int) new_ltEs8(True, False) new_ltEs8(False, True) new_compare1([], [], x0) new_lt22(x0, x1, ty_Ordering) new_lt8(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_Double) new_ltEs7(x0, x1, ty_Float) new_compare8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt20(x0, x1, ty_@0) new_ltEs12(LT, LT) new_esEs9(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Zero) new_esEs11(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs28(x0, x1, ty_@0) new_compare27(x0, x1, x2, x3, False, x4, x5) new_lt15(x0, x1) new_esEs13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, False, x2) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1) new_esEs22(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare11(LT, LT) new_esEs13(x0, x1, ty_Char) new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) new_esEs40(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Float) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(False, x0) new_esEs5(x0, x1, ty_@0) new_sr(Integer(x0), Integer(x1)) new_esEs7(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(@0, @0) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(ty_[], x2)) new_lt8(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_@0) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Bool) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_@0) new_esEs26(EQ, EQ) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Double) new_ltEs17(x0, x1) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs11(Just(x0), Nothing, x1) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Double) new_esEs26(LT, LT) new_esEs39(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs19(Left(x0), Left(x1), ty_Integer, x2) new_esEs40(x0, x1, ty_Char) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Integer) new_ltEs14(x0, x1) new_ltEs18(Left(x0), Left(x1), ty_Char, x2) new_esEs29(x0, x1, ty_@0) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Int) new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs10(x0, x1, ty_@0) new_compare11(EQ, LT) new_compare11(LT, EQ) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Double) new_esEs19(Left(x0), Right(x1), x2, x3) new_esEs19(Right(x0), Left(x1), x2, x3) new_primMulNat0(Zero, Zero) new_lt21(x0, x1, ty_Integer) new_compare116(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare11(GT, GT) new_esEs36(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Int) new_esEs27(LT) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare1(:(x0, x1), [], x2) new_lt7(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Int) new_compare27(x0, x1, x2, x3, True, x4, x5) new_esEs37(x0, x1, ty_Char) new_esEs40(x0, x1, ty_Int) new_primCompAux00(x0, EQ) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs35(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(True, True) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_@0) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Double) new_compare8(x0, x1, app(ty_[], x2)) new_ltEs18(Left(x0), Left(x1), ty_Int, x2) new_ltEs7(x0, x1, ty_Double) new_lt8(x0, x1, app(ty_Ratio, x2)) new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Ordering) new_pePe(True, x0) new_compare1([], :(x0, x1), x2) new_ltEs24(x0, x1, ty_Char) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare113(x0, x1, x2, x3, False, x4, x5) new_esEs35(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Zero) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs24(x0, x1, ty_Double) new_esEs40(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Integer) new_ltEs11(Just(x0), Just(x1), ty_Bool) new_esEs39(x0, x1, ty_Bool) new_esEs20(@2(x0, x1), @2(x2, x3), x4, x5) new_primPlusNat0(Zero, Zero) new_esEs30(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Bool) new_esEs13(x0, x1, ty_Float) new_compare8(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Bool) new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs6(x0, x1, ty_Int) new_compare9(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs29(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Integer) new_esEs19(Left(x0), Left(x1), ty_@0, x2) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_not(True) new_esEs34(x0, x1, ty_Ordering) new_esEs13(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Bool) new_lt8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(Just(x0), Just(x1), ty_Float) new_lt8(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Bool) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt21(x0, x1, ty_Float) new_compare7(Right(x0), Right(x1), x2, x3) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Left(x0), Left(x1), ty_Double, x2) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_@0) new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) new_esEs9(x0, x1, ty_Float) new_asAs(True, x0) new_lt22(x0, x1, ty_Int) new_esEs12(:(x0, x1), [], x2) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Char) new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs38(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs4(x0, x1) new_esEs7(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Int) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1) new_esEs38(x0, x1, ty_Int) new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) new_ltEs21(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Float) new_ltEs18(Left(x0), Right(x1), x2, x3) new_ltEs18(Right(x0), Left(x1), x2, x3) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(Just(x0), Nothing, x1) new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs4(x0, x1, ty_Double) new_ltEs11(Nothing, Just(x0), x1) new_lt22(x0, x1, ty_Char) new_esEs40(x0, x1, app(ty_[], x2)) new_esEs17(False, True) new_esEs17(True, False) new_esEs40(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs18(Right(x0), Right(x1), x2, ty_Double) new_ltEs23(x0, x1, ty_Integer) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs24(x0, x1, ty_@0) new_ltEs7(x0, x1, ty_Ordering) new_ltEs12(EQ, EQ) new_esEs35(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Bool) new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Double) new_esEs19(Left(x0), Left(x1), ty_Bool, x2) new_lt22(x0, x1, ty_Bool) new_esEs15(Float(x0, x1), Float(x2, x3)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(Just(x0), Just(x1), ty_Integer) new_esEs28(x0, x1, ty_Integer) new_compare112(x0, x1, False, x2, x3) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs30(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_@0) new_compare111(x0, x1, True, x2, x3) new_lt22(x0, x1, ty_Double) new_esEs40(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt21(x0, x1, ty_@0) new_ltEs11(Just(x0), Just(x1), ty_Char) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Int) new_ltEs18(Right(x0), Right(x1), x2, ty_Int) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Ordering) new_compare8(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Bool) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1, ty_Integer) new_primMulNat0(Zero, Succ(x0)) new_esEs18(Double(x0, x1), Double(x2, x3)) new_compare8(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_ltEs11(Just(x0), Just(x1), ty_Int) new_compare8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Ordering) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Float) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs26(EQ, GT) new_esEs26(GT, EQ) new_primPlusNat0(Succ(x0), Zero) new_esEs36(x0, x1, ty_Char) new_compare16(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Float) new_compare28(x0, x1, True, x2) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Int) new_esEs19(Right(x0), Right(x1), x2, ty_Float) new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Char) new_esEs36(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Ordering) new_lt16(x0, x1, x2, x3, x4) new_esEs12([], [], x0) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs10(x0, x1, x2) new_compare8(x0, x1, ty_Ordering) new_compare14(x0, x1) new_esEs13(x0, x1, ty_@0) new_lt7(x0, x1, ty_@0) new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs23(Char(x0), Char(x1)) new_esEs4(x0, x1, ty_Ordering) new_lt17(x0, x1) new_compare10(Nothing, Just(x0), x1) new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) new_compare7(Left(x0), Right(x1), x2, x3) new_lt22(x0, x1, ty_Float) new_compare7(Right(x0), Left(x1), x2, x3) new_esEs36(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Char) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_@0) new_esEs22(Just(x0), Just(x1), ty_Bool) new_esEs37(x0, x1, ty_Bool) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_ltEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Float) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare8(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Ordering) new_ltEs18(Left(x0), Left(x1), ty_Float, x2) new_primEqNat0(Zero, Zero) new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare11(GT, EQ) new_compare11(EQ, GT) new_lt8(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_[], x2)) new_ltEs11(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, ty_Int) new_esEs40(x0, x1, ty_@0) new_esEs22(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_@0) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs39(x0, x1, ty_@0) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Char) new_lt5(x0, x1) new_compare13(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_not(False) new_esEs5(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Double) new_lt23(x0, x1, ty_Ordering) new_esEs13(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Float) new_primCompAux00(x0, LT) new_esEs5(x0, x1, ty_Char) new_esEs19(Right(x0), Right(x1), x2, ty_Integer) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs12(LT, GT) new_ltEs12(GT, LT) new_esEs11(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt23(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Integer) new_ltEs8(True, True) new_ltEs22(x0, x1, ty_Int) new_esEs22(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Integer) new_ltEs11(Nothing, Nothing, x0) new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) new_lt6(x0, x1) new_compare25(x0, x1, True, x2, x3) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs8(x0, x1, ty_Int) new_ltEs7(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Float) new_lt20(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Bool) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare24(x0, x1, False, x2, x3) new_ltEs7(x0, x1, ty_@0) new_primPlusNat0(Zero, Succ(x0)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Char) new_esEs19(Right(x0), Right(x1), x2, ty_Bool) new_lt8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs13(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare8(x0, x1, ty_Bool) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Int) new_lt12(x0, x1) new_compare10(Just(x0), Just(x1), x2) new_compare113(x0, x1, x2, x3, True, x4, x5) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, ty_Ordering) new_esEs22(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(:(x0, x1), :(x2, x3), x4) new_esEs22(Just(x0), Just(x1), ty_Integer) new_lt9(x0, x1, x2, x3) new_esEs5(x0, x1, ty_Float) new_ltEs11(Just(x0), Just(x1), ty_Float) new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Bool) new_compare16(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs8(x0, x1, ty_Char) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_compare11(GT, LT) new_compare11(LT, GT) new_esEs25(:%(x0, x1), :%(x2, x3), x4) new_esEs11(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Integer) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (42) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_compare0(:(xuu311000, xuu311001), :(xuu600, xuu601), ge) -> new_primCompAux(xuu311000, xuu600, new_compare1(xuu311001, xuu601, ge), ge) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare0(:(xuu311000, xuu311001), :(xuu600, xuu601), ge) -> new_compare0(xuu311001, xuu601, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt0(:(xuu311000, xuu311001), :(xuu600, xuu601), ge) -> new_primCompAux(xuu311000, xuu600, new_compare1(xuu311001, xuu601, ge), ge) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt0(:(xuu311000, xuu311001), :(xuu600, xuu601), ge) -> new_compare0(xuu311001, xuu601, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs0(xuu69, xuu70, gd) -> new_compare0(xuu69, xuu70, gd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs1(Just(xuu690), Just(xuu700), app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs2(xuu690, xuu700, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, bbc, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs2(xuu692, xuu702, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt3(Left(xuu311000), Left(xuu600), cdd, cde) -> new_compare22(xuu311000, xuu600, new_esEs10(xuu311000, xuu600, cdd), cdd, cde) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare5(Left(xuu311000), Left(xuu600), cdd, cde) -> new_compare22(xuu311000, xuu600, new_esEs10(xuu311000, xuu600, cdd), cdd, cde) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_lt3(Right(xuu311000), Right(xuu600), cdd, cde) -> new_compare23(xuu311000, xuu600, new_esEs11(xuu311000, xuu600, cde), cdd, cde) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare5(Right(xuu311000), Right(xuu600), cdd, cde) -> new_compare23(xuu311000, xuu600, new_esEs11(xuu311000, xuu600, cde), cdd, cde) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_ltEs1(Just(xuu690), Just(xuu700), app(app(ty_@2, hh), baa)) -> new_ltEs(xuu690, xuu700, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, bbc, app(app(ty_@2, bdf), bdg)) -> new_ltEs(xuu692, xuu702, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_lt1(Just(xuu311000), Just(xuu600), hg) -> new_compare20(xuu311000, xuu600, new_esEs6(xuu311000, xuu600, hg), hg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare3(Just(xuu311000), Just(xuu600), hg) -> new_compare20(xuu311000, xuu600, new_esEs6(xuu311000, xuu600, hg), hg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt(@2(xuu311000, xuu311001), @2(xuu600, xuu601), de, df) -> new_compare2(xuu311000, xuu311001, xuu600, xuu601, new_asAs(new_esEs5(xuu311000, xuu600, de), new_esEs4(xuu311001, xuu601, df)), de, df) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_compare(@2(xuu311000, xuu311001), @2(xuu600, xuu601), de, df) -> new_compare2(xuu311000, xuu311001, xuu600, xuu601, new_asAs(new_esEs5(xuu311000, xuu600, de), new_esEs4(xuu311001, xuu601, df)), de, df) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_compare22(xuu91, xuu92, False, app(app(app(ty_@3, cec), ced), cee), cdh) -> new_ltEs2(xuu91, xuu92, cec, ced, cee) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(xuu91, xuu92, False, app(app(ty_@2, cdf), cdg), cdh) -> new_ltEs(xuu91, xuu92, cdf, cdg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare2(xuu109, xuu110, xuu111, xuu112, False, dg, app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs2(xuu110, xuu112, ed, ee, ef) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_primCompAux(xuu311000, xuu600, xuu48, app(app(ty_@2, gf), gg)) -> new_compare(xuu311000, xuu600, gf, gg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare2(xuu109, xuu110, xuu111, xuu112, False, app(ty_[], fd), fc) -> new_lt0(xuu109, xuu111, fd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare2(xuu109, xuu110, xuu111, xuu112, False, dg, app(app(ty_@2, dh), ea)) -> new_ltEs(xuu110, xuu112, dh, ea) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare2(xuu109, xuu110, xuu111, xuu112, False, app(app(ty_Either, gb), gc), fc) -> new_lt3(xuu109, xuu111, gb, gc) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_ltEs1(Just(xuu690), Just(xuu700), app(app(ty_Either, bag), bah)) -> new_ltEs3(xuu690, xuu700, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, bbc, app(app(ty_Either, bee), bef)) -> new_ltEs3(xuu692, xuu702, bee, bef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(xuu91, xuu92, False, app(app(ty_Either, cef), ceg), cdh) -> new_ltEs3(xuu91, xuu92, cef, ceg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare2(xuu109, xuu110, xuu111, xuu112, False, dg, app(app(ty_Either, eg), eh)) -> new_ltEs3(xuu110, xuu112, eg, eh) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_lt2(@3(xuu311000, xuu311001, xuu311002), @3(xuu600, xuu601, xuu602), bhc, bhd, bhe) -> new_compare21(xuu311000, xuu311001, xuu311002, xuu600, xuu601, xuu602, new_asAs(new_esEs9(xuu311000, xuu600, bhc), new_asAs(new_esEs8(xuu311001, xuu601, bhd), new_esEs7(xuu311002, xuu602, bhe))), bhc, bhd, bhe) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_compare4(@3(xuu311000, xuu311001, xuu311002), @3(xuu600, xuu601, xuu602), bhc, bhd, bhe) -> new_compare21(xuu311000, xuu311001, xuu311002, xuu600, xuu601, xuu602, new_asAs(new_esEs9(xuu311000, xuu600, bhc), new_asAs(new_esEs8(xuu311001, xuu601, bhd), new_esEs7(xuu311002, xuu602, bhe))), bhc, bhd, bhe) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_primCompAux(xuu311000, xuu600, xuu48, app(app(ty_Either, he), hf)) -> new_compare5(xuu311000, xuu600, he, hf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs2(xuu691, xuu701, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), app(ty_[], bc), bb) -> new_lt0(xuu690, xuu700, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), cb, app(app(ty_@2, cc), cd)) -> new_ltEs(xuu691, xuu701, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), app(app(ty_Either, bh), ca), bb) -> new_lt3(xuu690, xuu700, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), cb, app(app(ty_Either, dc), dd)) -> new_ltEs3(xuu691, xuu701, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Just(xuu690), Just(xuu700), app(ty_[], bab)) -> new_ltEs0(xuu690, xuu700, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(xuu690), Just(xuu700), app(ty_Maybe, bac)) -> new_ltEs1(xuu690, xuu700, bac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, bbc, app(ty_[], bdh)) -> new_ltEs0(xuu692, xuu702, bdh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare22(xuu91, xuu92, False, app(ty_[], cea), cdh) -> new_ltEs0(xuu91, xuu92, cea) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare22(xuu91, xuu92, False, app(ty_Maybe, ceb), cdh) -> new_ltEs1(xuu91, xuu92, ceb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare2(xuu109, xuu110, xuu111, xuu112, False, dg, app(ty_[], eb)) -> new_ltEs0(xuu110, xuu112, eb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), cb, app(ty_[], ce)) -> new_ltEs0(xuu691, xuu701, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, bhh, app(app(app(ty_@3, ccg), cch), cda)) -> new_ltEs2(xuu82, xuu85, ccg, cch, cda) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_primCompAux(xuu311000, xuu600, xuu48, app(app(app(ty_@3, hb), hc), hd)) -> new_compare4(xuu311000, xuu600, hb, hc, hd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, bhh, app(app(ty_@2, ccc), ccd)) -> new_ltEs(xuu82, xuu85, ccc, ccd) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, bhh, app(app(ty_Either, cdb), cdc)) -> new_ltEs3(xuu82, xuu85, cdb, cdc) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, bhh, app(ty_[], cce)) -> new_ltEs0(xuu82, xuu85, cce) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare2(xuu109, xuu110, xuu111, xuu112, False, app(app(ty_@2, fa), fb), fc) -> new_lt(xuu109, xuu111, fa, fb) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), app(app(ty_@2, h), ba), bb) -> new_lt(xuu690, xuu700, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_primCompAux(xuu311000, xuu600, xuu48, app(ty_[], gh)) -> new_compare0(xuu311000, xuu600, gh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(xuu311000, xuu600, xuu48, app(ty_Maybe, ha)) -> new_compare3(xuu311000, xuu600, ha) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare20(xuu69, xuu70, False, app(ty_[], gd)) -> new_compare0(xuu69, xuu70, gd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, bbc, app(ty_Maybe, bea)) -> new_ltEs1(xuu692, xuu702, bea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(xuu109, xuu110, xuu111, xuu112, False, dg, app(ty_Maybe, ec)) -> new_ltEs1(xuu110, xuu112, ec) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), cb, app(ty_Maybe, cf)) -> new_ltEs1(xuu691, xuu701, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, bhh, app(ty_Maybe, ccf)) -> new_ltEs1(xuu82, xuu85, ccf) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare23(xuu98, xuu99, False, ceh, app(app(app(ty_@3, cfe), cff), cfg)) -> new_ltEs2(xuu98, xuu99, cfe, cff, cfg) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(xuu98, xuu99, False, ceh, app(app(ty_@2, cfa), cfb)) -> new_ltEs(xuu98, xuu99, cfa, cfb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare23(xuu98, xuu99, False, ceh, app(app(ty_Either, cfh), cga)) -> new_ltEs3(xuu98, xuu99, cfh, cga) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare23(xuu98, xuu99, False, ceh, app(ty_[], cfc)) -> new_ltEs0(xuu98, xuu99, cfc) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare23(xuu98, xuu99, False, ceh, app(ty_Maybe, cfd)) -> new_ltEs1(xuu98, xuu99, cfd) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare2(xuu109, xuu110, xuu111, xuu112, False, app(app(app(ty_@3, fg), fh), ga), fc) -> new_lt2(xuu109, xuu111, fg, fh, ga) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare2(xuu109, xuu110, xuu111, xuu112, False, app(ty_Maybe, ff), fc) -> new_lt1(xuu109, xuu111, ff) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), app(app(app(ty_@3, be), bf), bg), bb) -> new_lt2(xuu690, xuu700, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(@2(xuu690, xuu691), @2(xuu700, xuu701), app(ty_Maybe, bd), bb) -> new_lt1(xuu690, xuu700, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Left(xuu690), Left(xuu700), app(app(app(ty_@3, bfd), bfe), bff), bfa) -> new_ltEs2(xuu690, xuu700, bfd, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(Right(xuu690), Right(xuu700), bga, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_ltEs2(xuu690, xuu700, bgf, bgg, bgh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(xuu690), Right(xuu700), False, app(app(ty_Either, bga), app(app(app(ty_@3, bgf), bgg), bgh))) -> new_ltEs2(xuu690, xuu700, bgf, bgg, bgh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, cb), app(app(app(ty_@3, cg), da), db))) -> new_ltEs2(xuu691, xuu701, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Left(xuu690), Left(xuu700), False, app(app(ty_Either, app(app(app(ty_@3, bfd), bfe), bff)), bfa)) -> new_ltEs2(xuu690, xuu700, bfd, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), bbc), app(app(app(ty_@3, beb), bec), bed))) -> new_ltEs2(xuu692, xuu702, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(xuu690), Just(xuu700), False, app(ty_Maybe, app(app(app(ty_@3, bad), bae), baf))) -> new_ltEs2(xuu690, xuu700, bad, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, app(ty_[], bcg), bbd) -> new_lt0(xuu691, xuu701, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), app(ty_[], bbe), bbc, bbd) -> new_lt0(xuu690, xuu700, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, app(ty_[], cbd), caa) -> new_lt0(xuu81, xuu84, cbd) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(ty_[], cab), bhh, caa) -> new_lt0(xuu80, xuu83, cab) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, app(ty_[], bc)), bb)) -> new_lt0(xuu690, xuu700, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, app(ty_[], bbe)), bbc), bbd)) -> new_lt0(xuu690, xuu700, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), app(ty_[], bcg)), bbd)) -> new_lt0(xuu691, xuu701, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), app(app(ty_Either, bcb), bcc), bbc, bbd) -> new_lt3(xuu690, xuu700, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, app(app(ty_Either, bdd), bde), bbd) -> new_lt3(xuu691, xuu701, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), app(app(ty_@2, bba), bbb), bbc, bbd) -> new_lt(xuu690, xuu700, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, app(app(ty_@2, bce), bcf), bbd) -> new_lt(xuu691, xuu701, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), app(app(app(ty_@3, bbg), bbh), bca), bbc, bbd) -> new_lt2(xuu690, xuu700, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, app(app(app(ty_@3, bda), bdb), bdc), bbd) -> new_lt2(xuu691, xuu701, bda, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), app(ty_Maybe, bbf), bbc, bbd) -> new_lt1(xuu690, xuu700, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), bcd, app(ty_Maybe, bch), bbd) -> new_lt1(xuu691, xuu701, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Right(xuu690), Right(xuu700), bga, app(app(ty_@2, bgb), bgc)) -> new_ltEs(xuu690, xuu700, bgb, bgc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Left(xuu690), Left(xuu700), app(app(ty_@2, beg), beh), bfa) -> new_ltEs(xuu690, xuu700, beg, beh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(Right(xuu690), Right(xuu700), False, app(app(ty_Either, bga), app(app(ty_@2, bgb), bgc))) -> new_ltEs(xuu690, xuu700, bgb, bgc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(xuu690), Left(xuu700), False, app(app(ty_Either, app(app(ty_@2, beg), beh)), bfa)) -> new_ltEs(xuu690, xuu700, beg, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), bbc), app(app(ty_@2, bdf), bdg))) -> new_ltEs(xuu692, xuu702, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(xuu690), Just(xuu700), False, app(ty_Maybe, app(app(ty_@2, hh), baa))) -> new_ltEs(xuu690, xuu700, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, cb), app(app(ty_@2, cc), cd))) -> new_ltEs(xuu691, xuu701, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Left(xuu690), Left(xuu700), app(app(ty_Either, bfg), bfh), bfa) -> new_ltEs3(xuu690, xuu700, bfg, bfh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Right(xuu690), Right(xuu700), bga, app(app(ty_Either, bha), bhb)) -> new_ltEs3(xuu690, xuu700, bha, bhb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Left(xuu690), Left(xuu700), app(ty_[], bfb), bfa) -> new_ltEs0(xuu690, xuu700, bfb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Right(xuu690), Right(xuu700), bga, app(ty_[], bgd)) -> new_ltEs0(xuu690, xuu700, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Right(xuu690), Right(xuu700), bga, app(ty_Maybe, bge)) -> new_ltEs1(xuu690, xuu700, bge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Left(xuu690), Left(xuu700), app(ty_Maybe, bfc), bfa) -> new_ltEs1(xuu690, xuu700, bfc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(app(ty_Either, cag), cah), bhh, caa) -> new_lt3(xuu80, xuu83, cag, cah) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, app(app(ty_Either, cca), ccb), caa) -> new_lt3(xuu81, xuu84, cca, ccb) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, app(app(ty_Either, bcb), bcc)), bbc), bbd)) -> new_lt3(xuu690, xuu700, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), app(app(ty_Either, bdd), bde)), bbd)) -> new_lt3(xuu691, xuu701, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, app(app(ty_Either, bh), ca)), bb)) -> new_lt3(xuu690, xuu700, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(xuu690), Left(xuu700), False, app(app(ty_Either, app(app(ty_Either, bfg), bfh)), bfa)) -> new_ltEs3(xuu690, xuu700, bfg, bfh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(xuu690), Just(xuu700), False, app(ty_Maybe, app(app(ty_Either, bag), bah))) -> new_ltEs3(xuu690, xuu700, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), bbc), app(app(ty_Either, bee), bef))) -> new_ltEs3(xuu692, xuu702, bee, bef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(xuu690), Right(xuu700), False, app(app(ty_Either, bga), app(app(ty_Either, bha), bhb))) -> new_ltEs3(xuu690, xuu700, bha, bhb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, cb), app(app(ty_Either, dc), dd))) -> new_ltEs3(xuu691, xuu701, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(xuu690), Right(xuu700), False, app(app(ty_Either, bga), app(ty_[], bgd))) -> new_ltEs0(xuu690, xuu700, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), bbc), app(ty_[], bdh))) -> new_ltEs0(xuu692, xuu702, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(xuu690), Left(xuu700), False, app(app(ty_Either, app(ty_[], bfb)), bfa)) -> new_ltEs0(xuu690, xuu700, bfb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(xuu690), Just(xuu700), False, app(ty_Maybe, app(ty_[], bab))) -> new_ltEs0(xuu690, xuu700, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, cb), app(ty_[], ce))) -> new_ltEs0(xuu691, xuu701, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, app(app(ty_@2, cbb), cbc), caa) -> new_lt(xuu81, xuu84, cbb, cbc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(app(ty_@2, bhf), bhg), bhh, caa) -> new_lt(xuu80, xuu83, bhf, bhg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(app(app(ty_@3, cad), cae), caf), bhh, caa) -> new_lt2(xuu80, xuu83, cad, cae, caf) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, app(app(app(ty_@3, cbf), cbg), cbh), caa) -> new_lt2(xuu81, xuu84, cbf, cbg, cbh) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, cba, app(ty_Maybe, cbe), caa) -> new_lt1(xuu81, xuu84, cbe) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare21(xuu80, xuu81, xuu82, xuu83, xuu84, xuu85, False, app(ty_Maybe, cac), bhh, caa) -> new_lt1(xuu80, xuu83, cac) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, app(app(ty_@2, h), ba)), bb)) -> new_lt(xuu690, xuu700, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, app(app(ty_@2, bba), bbb)), bbc), bbd)) -> new_lt(xuu690, xuu700, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), app(app(ty_@2, bce), bcf)), bbd)) -> new_lt(xuu691, xuu701, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, cb), app(ty_Maybe, cf))) -> new_ltEs1(xuu691, xuu701, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(xuu690), Right(xuu700), False, app(app(ty_Either, bga), app(ty_Maybe, bge))) -> new_ltEs1(xuu690, xuu700, bge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), bbc), app(ty_Maybe, bea))) -> new_ltEs1(xuu692, xuu702, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(xuu690), Just(xuu700), False, app(ty_Maybe, app(ty_Maybe, bac))) -> new_ltEs1(xuu690, xuu700, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(xuu690), Left(xuu700), False, app(app(ty_Either, app(ty_Maybe, bfc)), bfa)) -> new_ltEs1(xuu690, xuu700, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, app(app(app(ty_@3, bbg), bbh), bca)), bbc), bbd)) -> new_lt2(xuu690, xuu700, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), app(app(app(ty_@3, bda), bdb), bdc)), bbd)) -> new_lt2(xuu691, xuu701, bda, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, app(app(app(ty_@3, be), bf), bg)), bb)) -> new_lt2(xuu690, xuu700, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, app(ty_Maybe, bbf)), bbc), bbd)) -> new_lt1(xuu690, xuu700, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(xuu690, xuu691, xuu692), @3(xuu700, xuu701, xuu702), False, app(app(app(ty_@3, bcd), app(ty_Maybe, bch)), bbd)) -> new_lt1(xuu691, xuu701, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(xuu690, xuu691), @2(xuu700, xuu701), False, app(app(ty_@2, app(ty_Maybe, bd)), bb)) -> new_lt1(xuu690, xuu700, bd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (43) YES