/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/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) CR [EQUIVALENT, 0 ms] (2) HASKELL (3) IFR [EQUIVALENT, 0 ms] (4) HASKELL (5) BR [EQUIVALENT, 0 ms] (6) HASKELL (7) COR [EQUIVALENT, 15 ms] (8) HASKELL (9) LetRed [EQUIVALENT, 0 ms] (10) HASKELL (11) NumRed [SOUND, 0 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] (17) YES (18) QDP (19) QDPSizeChangeProof [EQUIVALENT, 62 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] (26) YES (27) QDP (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] (29) YES (30) QDP (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] (32) YES ---------------------------------------- (0) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (1) 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; " ---------------------------------------- (2) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (3) 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; " ---------------------------------------- (4) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (5) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (6) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (7) 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 zx = gcd'2 x zx; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; " "gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; " 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 vux vuy = gcd3 vux vuy; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } ; " "gcd1 True vux vuy = error []; gcd1 vuz vvu vvv = gcd0 vvu vvv; " "gcd2 True vux vuy = gcd1 (vuy == 0) vux vuy; gcd2 vvw vvx vvy = gcd0 vvx vvy; " "gcd3 vux vuy = gcd2 (vux == 0) vux vuy; gcd3 vvz vwu = gcd0 vvz vwu; " 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; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " ---------------------------------------- (8) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (9) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } " are unpacked to the following functions on top level "gcd0Gcd'1 True x zx = x; gcd0Gcd'1 zy zz vuu = gcd0Gcd'0 zz vuu; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd' x zx = gcd0Gcd'2 x zx; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'2 x zx = gcd0Gcd'1 (zx == 0) x zx; gcd0Gcd'2 vuv vuw = gcd0Gcd'0 vuv vuw; " 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 "reduce2D vwv vww = gcd vwv vww; " "reduce2Reduce0 vwv vww x y True = x `quot` reduce2D vwv vww :% (y `quot` reduce2D vwv vww); " "reduce2Reduce1 vwv vww x y True = error []; reduce2Reduce1 vwv vww x y False = reduce2Reduce0 vwv vww x y otherwise; " ---------------------------------------- (10) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (11) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (12) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (13) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="(<)",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="(<) vwx3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="(<) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5 -> 77[label="",style="dashed", color="red", weight=0]; 5[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];5 -> 78[label="",style="dashed", color="magenta", weight=3]; 78[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2709[label="vwx3/vwx30 : vwx31",fontsize=10,color="white",style="solid",shape="box"];78 -> 2709[label="",style="solid", color="burlywood", weight=9]; 2709 -> 88[label="",style="solid", color="burlywood", weight=3]; 2710[label="vwx3/[]",fontsize=10,color="white",style="solid",shape="box"];78 -> 2710[label="",style="solid", color="burlywood", weight=9]; 2710 -> 89[label="",style="solid", color="burlywood", weight=3]; 77[label="vwx14 == LT",fontsize=16,color="burlywood",shape="triangle"];2711[label="vwx14/LT",fontsize=10,color="white",style="solid",shape="box"];77 -> 2711[label="",style="solid", color="burlywood", weight=9]; 2711 -> 90[label="",style="solid", color="burlywood", weight=3]; 2712[label="vwx14/EQ",fontsize=10,color="white",style="solid",shape="box"];77 -> 2712[label="",style="solid", color="burlywood", weight=9]; 2712 -> 91[label="",style="solid", color="burlywood", weight=3]; 2713[label="vwx14/GT",fontsize=10,color="white",style="solid",shape="box"];77 -> 2713[label="",style="solid", color="burlywood", weight=9]; 2713 -> 92[label="",style="solid", color="burlywood", weight=3]; 88[label="compare (vwx30 : vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];2714[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];88 -> 2714[label="",style="solid", color="burlywood", weight=9]; 2714 -> 93[label="",style="solid", color="burlywood", weight=3]; 2715[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];88 -> 2715[label="",style="solid", color="burlywood", weight=9]; 2715 -> 94[label="",style="solid", color="burlywood", weight=3]; 89[label="compare [] vwx4",fontsize=16,color="burlywood",shape="box"];2716[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];89 -> 2716[label="",style="solid", color="burlywood", weight=9]; 2716 -> 95[label="",style="solid", color="burlywood", weight=3]; 2717[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];89 -> 2717[label="",style="solid", color="burlywood", weight=9]; 2717 -> 96[label="",style="solid", color="burlywood", weight=3]; 90[label="LT == LT",fontsize=16,color="black",shape="box"];90 -> 97[label="",style="solid", color="black", weight=3]; 91[label="EQ == LT",fontsize=16,color="black",shape="box"];91 -> 98[label="",style="solid", color="black", weight=3]; 92[label="GT == LT",fontsize=16,color="black",shape="box"];92 -> 99[label="",style="solid", color="black", weight=3]; 93[label="compare (vwx30 : vwx31) (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];93 -> 100[label="",style="solid", color="black", weight=3]; 94[label="compare (vwx30 : vwx31) []",fontsize=16,color="black",shape="box"];94 -> 101[label="",style="solid", color="black", weight=3]; 95[label="compare [] (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];95 -> 102[label="",style="solid", color="black", weight=3]; 96[label="compare [] []",fontsize=16,color="black",shape="box"];96 -> 103[label="",style="solid", color="black", weight=3]; 97[label="True",fontsize=16,color="green",shape="box"];98[label="False",fontsize=16,color="green",shape="box"];99[label="False",fontsize=16,color="green",shape="box"];100 -> 104[label="",style="dashed", color="red", weight=0]; 100[label="primCompAux vwx30 vwx40 (compare vwx31 vwx41)",fontsize=16,color="magenta"];100 -> 105[label="",style="dashed", color="magenta", weight=3]; 101[label="GT",fontsize=16,color="green",shape="box"];102[label="LT",fontsize=16,color="green",shape="box"];103[label="EQ",fontsize=16,color="green",shape="box"];105 -> 78[label="",style="dashed", color="red", weight=0]; 105[label="compare vwx31 vwx41",fontsize=16,color="magenta"];105 -> 106[label="",style="dashed", color="magenta", weight=3]; 105 -> 107[label="",style="dashed", color="magenta", weight=3]; 104[label="primCompAux vwx30 vwx40 vwx15",fontsize=16,color="black",shape="triangle"];104 -> 108[label="",style="solid", color="black", weight=3]; 106[label="vwx31",fontsize=16,color="green",shape="box"];107[label="vwx41",fontsize=16,color="green",shape="box"];108 -> 109[label="",style="dashed", color="red", weight=0]; 108[label="primCompAux0 vwx15 (compare vwx30 vwx40)",fontsize=16,color="magenta"];108 -> 110[label="",style="dashed", color="magenta", weight=3]; 108 -> 111[label="",style="dashed", color="magenta", weight=3]; 110[label="vwx15",fontsize=16,color="green",shape="box"];111[label="compare vwx30 vwx40",fontsize=16,color="blue",shape="box"];2718[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];111 -> 2718[label="",style="solid", color="blue", weight=9]; 2718 -> 112[label="",style="solid", color="blue", weight=3]; 2719[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];111 -> 2719[label="",style="solid", color="blue", weight=9]; 2719 -> 113[label="",style="solid", color="blue", weight=3]; 2720[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];111 -> 2720[label="",style="solid", color="blue", weight=9]; 2720 -> 114[label="",style="solid", color="blue", weight=3]; 2721[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];111 -> 2721[label="",style="solid", color="blue", weight=9]; 2721 -> 115[label="",style="solid", color="blue", weight=3]; 2722[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];111 -> 2722[label="",style="solid", color="blue", weight=9]; 2722 -> 116[label="",style="solid", color="blue", weight=3]; 2723[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];111 -> 2723[label="",style="solid", color="blue", weight=9]; 2723 -> 117[label="",style="solid", color="blue", weight=3]; 2724[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];111 -> 2724[label="",style="solid", color="blue", weight=9]; 2724 -> 118[label="",style="solid", color="blue", weight=3]; 2725[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];111 -> 2725[label="",style="solid", color="blue", weight=9]; 2725 -> 119[label="",style="solid", color="blue", weight=3]; 2726[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];111 -> 2726[label="",style="solid", color="blue", weight=9]; 2726 -> 120[label="",style="solid", color="blue", weight=3]; 2727[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];111 -> 2727[label="",style="solid", color="blue", weight=9]; 2727 -> 121[label="",style="solid", color="blue", weight=3]; 2728[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];111 -> 2728[label="",style="solid", color="blue", weight=9]; 2728 -> 122[label="",style="solid", color="blue", weight=3]; 2729[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];111 -> 2729[label="",style="solid", color="blue", weight=9]; 2729 -> 123[label="",style="solid", color="blue", weight=3]; 2730[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];111 -> 2730[label="",style="solid", color="blue", weight=9]; 2730 -> 124[label="",style="solid", color="blue", weight=3]; 2731[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];111 -> 2731[label="",style="solid", color="blue", weight=9]; 2731 -> 125[label="",style="solid", color="blue", weight=3]; 109[label="primCompAux0 vwx19 vwx20",fontsize=16,color="burlywood",shape="triangle"];2732[label="vwx20/LT",fontsize=10,color="white",style="solid",shape="box"];109 -> 2732[label="",style="solid", color="burlywood", weight=9]; 2732 -> 126[label="",style="solid", color="burlywood", weight=3]; 2733[label="vwx20/EQ",fontsize=10,color="white",style="solid",shape="box"];109 -> 2733[label="",style="solid", color="burlywood", weight=9]; 2733 -> 127[label="",style="solid", color="burlywood", weight=3]; 2734[label="vwx20/GT",fontsize=10,color="white",style="solid",shape="box"];109 -> 2734[label="",style="solid", color="burlywood", weight=9]; 2734 -> 128[label="",style="solid", color="burlywood", weight=3]; 112[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2735[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];112 -> 2735[label="",style="solid", color="burlywood", weight=9]; 2735 -> 129[label="",style="solid", color="burlywood", weight=3]; 113[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2736[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];113 -> 2736[label="",style="solid", color="burlywood", weight=9]; 2736 -> 130[label="",style="solid", color="burlywood", weight=3]; 114[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];114 -> 131[label="",style="solid", color="black", weight=3]; 115 -> 78[label="",style="dashed", color="red", weight=0]; 115[label="compare vwx30 vwx40",fontsize=16,color="magenta"];115 -> 132[label="",style="dashed", color="magenta", weight=3]; 115 -> 133[label="",style="dashed", color="magenta", weight=3]; 116[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];116 -> 134[label="",style="solid", color="black", weight=3]; 117[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];117 -> 135[label="",style="solid", color="black", weight=3]; 118[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];118 -> 136[label="",style="solid", color="black", weight=3]; 119[label="compare vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2737[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];119 -> 2737[label="",style="solid", color="burlywood", weight=9]; 2737 -> 137[label="",style="solid", color="burlywood", weight=3]; 120[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];120 -> 138[label="",style="solid", color="black", weight=3]; 121[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];121 -> 139[label="",style="solid", color="black", weight=3]; 122[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];122 -> 140[label="",style="solid", color="black", weight=3]; 123[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];123 -> 141[label="",style="solid", color="black", weight=3]; 124[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];124 -> 142[label="",style="solid", color="black", weight=3]; 125[label="compare vwx30 vwx40",fontsize=16,color="black",shape="triangle"];125 -> 143[label="",style="solid", color="black", weight=3]; 126[label="primCompAux0 vwx19 LT",fontsize=16,color="black",shape="box"];126 -> 144[label="",style="solid", color="black", weight=3]; 127[label="primCompAux0 vwx19 EQ",fontsize=16,color="black",shape="box"];127 -> 145[label="",style="solid", color="black", weight=3]; 128[label="primCompAux0 vwx19 GT",fontsize=16,color="black",shape="box"];128 -> 146[label="",style="solid", color="black", weight=3]; 129[label="compare (vwx300 :% vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2738[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];129 -> 2738[label="",style="solid", color="burlywood", weight=9]; 2738 -> 147[label="",style="solid", color="burlywood", weight=3]; 130[label="compare (Integer vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2739[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];130 -> 2739[label="",style="solid", color="burlywood", weight=9]; 2739 -> 148[label="",style="solid", color="burlywood", weight=3]; 131[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];131 -> 149[label="",style="solid", color="black", weight=3]; 132[label="vwx30",fontsize=16,color="green",shape="box"];133[label="vwx40",fontsize=16,color="green",shape="box"];134[label="primCmpFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2740[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];134 -> 2740[label="",style="solid", color="burlywood", weight=9]; 2740 -> 150[label="",style="solid", color="burlywood", weight=3]; 135[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];135 -> 151[label="",style="solid", color="black", weight=3]; 136[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];136 -> 152[label="",style="solid", color="black", weight=3]; 137[label="compare () vwx40",fontsize=16,color="burlywood",shape="box"];2741[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];137 -> 2741[label="",style="solid", color="burlywood", weight=9]; 2741 -> 153[label="",style="solid", color="burlywood", weight=3]; 138[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];138 -> 154[label="",style="solid", color="black", weight=3]; 139[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];139 -> 155[label="",style="solid", color="black", weight=3]; 140[label="primCmpChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2742[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];140 -> 2742[label="",style="solid", color="burlywood", weight=9]; 2742 -> 156[label="",style="solid", color="burlywood", weight=3]; 141[label="compare3 vwx30 vwx40",fontsize=16,color="black",shape="box"];141 -> 157[label="",style="solid", color="black", weight=3]; 142[label="primCmpInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2743[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];142 -> 2743[label="",style="solid", color="burlywood", weight=9]; 2743 -> 158[label="",style="solid", color="burlywood", weight=3]; 2744[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];142 -> 2744[label="",style="solid", color="burlywood", weight=9]; 2744 -> 159[label="",style="solid", color="burlywood", weight=3]; 143[label="primCmpDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2745[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];143 -> 2745[label="",style="solid", color="burlywood", weight=9]; 2745 -> 160[label="",style="solid", color="burlywood", weight=3]; 144[label="LT",fontsize=16,color="green",shape="box"];145[label="vwx19",fontsize=16,color="green",shape="box"];146[label="GT",fontsize=16,color="green",shape="box"];147[label="compare (vwx300 :% vwx301) (vwx400 :% vwx401)",fontsize=16,color="black",shape="box"];147 -> 161[label="",style="solid", color="black", weight=3]; 148[label="compare (Integer vwx300) (Integer vwx400)",fontsize=16,color="black",shape="box"];148 -> 162[label="",style="solid", color="black", weight=3]; 149[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2746[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];149 -> 2746[label="",style="solid", color="burlywood", weight=9]; 2746 -> 163[label="",style="solid", color="burlywood", weight=3]; 150[label="primCmpFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2747[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];150 -> 2747[label="",style="solid", color="burlywood", weight=9]; 2747 -> 164[label="",style="solid", color="burlywood", weight=3]; 2748[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];150 -> 2748[label="",style="solid", color="burlywood", weight=9]; 2748 -> 165[label="",style="solid", color="burlywood", weight=3]; 151[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2749[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];151 -> 2749[label="",style="solid", color="burlywood", weight=9]; 2749 -> 166[label="",style="solid", color="burlywood", weight=3]; 2750[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];151 -> 2750[label="",style="solid", color="burlywood", weight=9]; 2750 -> 167[label="",style="solid", color="burlywood", weight=3]; 152[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2751[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];152 -> 2751[label="",style="solid", color="burlywood", weight=9]; 2751 -> 168[label="",style="solid", color="burlywood", weight=3]; 2752[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];152 -> 2752[label="",style="solid", color="burlywood", weight=9]; 2752 -> 169[label="",style="solid", color="burlywood", weight=3]; 153[label="compare () ()",fontsize=16,color="black",shape="box"];153 -> 170[label="",style="solid", color="black", weight=3]; 154[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2753[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];154 -> 2753[label="",style="solid", color="burlywood", weight=9]; 2753 -> 171[label="",style="solid", color="burlywood", weight=3]; 2754[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];154 -> 2754[label="",style="solid", color="burlywood", weight=9]; 2754 -> 172[label="",style="solid", color="burlywood", weight=3]; 155[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2755[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];155 -> 2755[label="",style="solid", color="burlywood", weight=9]; 2755 -> 173[label="",style="solid", color="burlywood", weight=3]; 156[label="primCmpChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2756[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];156 -> 2756[label="",style="solid", color="burlywood", weight=9]; 2756 -> 174[label="",style="solid", color="burlywood", weight=3]; 157[label="compare2 vwx30 vwx40 (vwx30 == vwx40)",fontsize=16,color="burlywood",shape="box"];2757[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];157 -> 2757[label="",style="solid", color="burlywood", weight=9]; 2757 -> 175[label="",style="solid", color="burlywood", weight=3]; 2758[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];157 -> 2758[label="",style="solid", color="burlywood", weight=9]; 2758 -> 176[label="",style="solid", color="burlywood", weight=3]; 2759[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];157 -> 2759[label="",style="solid", color="burlywood", weight=9]; 2759 -> 177[label="",style="solid", color="burlywood", weight=3]; 158[label="primCmpInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2760[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];158 -> 2760[label="",style="solid", color="burlywood", weight=9]; 2760 -> 178[label="",style="solid", color="burlywood", weight=3]; 2761[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];158 -> 2761[label="",style="solid", color="burlywood", weight=9]; 2761 -> 179[label="",style="solid", color="burlywood", weight=3]; 159[label="primCmpInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2762[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];159 -> 2762[label="",style="solid", color="burlywood", weight=9]; 2762 -> 180[label="",style="solid", color="burlywood", weight=3]; 2763[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];159 -> 2763[label="",style="solid", color="burlywood", weight=9]; 2763 -> 181[label="",style="solid", color="burlywood", weight=3]; 160[label="primCmpDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2764[label="vwx301/Pos vwx3010",fontsize=10,color="white",style="solid",shape="box"];160 -> 2764[label="",style="solid", color="burlywood", weight=9]; 2764 -> 182[label="",style="solid", color="burlywood", weight=3]; 2765[label="vwx301/Neg vwx3010",fontsize=10,color="white",style="solid",shape="box"];160 -> 2765[label="",style="solid", color="burlywood", weight=9]; 2765 -> 183[label="",style="solid", color="burlywood", weight=3]; 161[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="blue",shape="box"];2766[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 2766[label="",style="solid", color="blue", weight=9]; 2766 -> 184[label="",style="solid", color="blue", weight=3]; 2767[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];161 -> 2767[label="",style="solid", color="blue", weight=9]; 2767 -> 185[label="",style="solid", color="blue", weight=3]; 162 -> 142[label="",style="dashed", color="red", weight=0]; 162[label="primCmpInt vwx300 vwx400",fontsize=16,color="magenta"];162 -> 186[label="",style="dashed", color="magenta", weight=3]; 162 -> 187[label="",style="dashed", color="magenta", weight=3]; 163[label="compare2 (vwx300,vwx301) vwx40 ((vwx300,vwx301) == vwx40)",fontsize=16,color="burlywood",shape="box"];2768[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];163 -> 2768[label="",style="solid", color="burlywood", weight=9]; 2768 -> 188[label="",style="solid", color="burlywood", weight=3]; 164[label="primCmpFloat (Float vwx300 (Pos vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];2769[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];164 -> 2769[label="",style="solid", color="burlywood", weight=9]; 2769 -> 189[label="",style="solid", color="burlywood", weight=3]; 165[label="primCmpFloat (Float vwx300 (Neg vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];2770[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];165 -> 2770[label="",style="solid", color="burlywood", weight=9]; 2770 -> 190[label="",style="solid", color="burlywood", weight=3]; 166[label="compare2 Nothing vwx40 (Nothing == vwx40)",fontsize=16,color="burlywood",shape="box"];2771[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];166 -> 2771[label="",style="solid", color="burlywood", weight=9]; 2771 -> 191[label="",style="solid", color="burlywood", weight=3]; 2772[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];166 -> 2772[label="",style="solid", color="burlywood", weight=9]; 2772 -> 192[label="",style="solid", color="burlywood", weight=3]; 167[label="compare2 (Just vwx300) vwx40 (Just vwx300 == vwx40)",fontsize=16,color="burlywood",shape="box"];2773[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];167 -> 2773[label="",style="solid", color="burlywood", weight=9]; 2773 -> 193[label="",style="solid", color="burlywood", weight=3]; 2774[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];167 -> 2774[label="",style="solid", color="burlywood", weight=9]; 2774 -> 194[label="",style="solid", color="burlywood", weight=3]; 168[label="compare2 False vwx40 (False == vwx40)",fontsize=16,color="burlywood",shape="box"];2775[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];168 -> 2775[label="",style="solid", color="burlywood", weight=9]; 2775 -> 195[label="",style="solid", color="burlywood", weight=3]; 2776[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];168 -> 2776[label="",style="solid", color="burlywood", weight=9]; 2776 -> 196[label="",style="solid", color="burlywood", weight=3]; 169[label="compare2 True vwx40 (True == vwx40)",fontsize=16,color="burlywood",shape="box"];2777[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];169 -> 2777[label="",style="solid", color="burlywood", weight=9]; 2777 -> 197[label="",style="solid", color="burlywood", weight=3]; 2778[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];169 -> 2778[label="",style="solid", color="burlywood", weight=9]; 2778 -> 198[label="",style="solid", color="burlywood", weight=3]; 170[label="EQ",fontsize=16,color="green",shape="box"];171[label="compare2 (Left vwx300) vwx40 (Left vwx300 == vwx40)",fontsize=16,color="burlywood",shape="box"];2779[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];171 -> 2779[label="",style="solid", color="burlywood", weight=9]; 2779 -> 199[label="",style="solid", color="burlywood", weight=3]; 2780[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];171 -> 2780[label="",style="solid", color="burlywood", weight=9]; 2780 -> 200[label="",style="solid", color="burlywood", weight=3]; 172[label="compare2 (Right vwx300) vwx40 (Right vwx300 == vwx40)",fontsize=16,color="burlywood",shape="box"];2781[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];172 -> 2781[label="",style="solid", color="burlywood", weight=9]; 2781 -> 201[label="",style="solid", color="burlywood", weight=3]; 2782[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];172 -> 2782[label="",style="solid", color="burlywood", weight=9]; 2782 -> 202[label="",style="solid", color="burlywood", weight=3]; 173[label="compare2 (vwx300,vwx301,vwx302) vwx40 ((vwx300,vwx301,vwx302) == vwx40)",fontsize=16,color="burlywood",shape="box"];2783[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];173 -> 2783[label="",style="solid", color="burlywood", weight=9]; 2783 -> 203[label="",style="solid", color="burlywood", weight=3]; 174[label="primCmpChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];174 -> 204[label="",style="solid", color="black", weight=3]; 175[label="compare2 LT vwx40 (LT == vwx40)",fontsize=16,color="burlywood",shape="box"];2784[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];175 -> 2784[label="",style="solid", color="burlywood", weight=9]; 2784 -> 205[label="",style="solid", color="burlywood", weight=3]; 2785[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];175 -> 2785[label="",style="solid", color="burlywood", weight=9]; 2785 -> 206[label="",style="solid", color="burlywood", weight=3]; 2786[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];175 -> 2786[label="",style="solid", color="burlywood", weight=9]; 2786 -> 207[label="",style="solid", color="burlywood", weight=3]; 176[label="compare2 EQ vwx40 (EQ == vwx40)",fontsize=16,color="burlywood",shape="box"];2787[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];176 -> 2787[label="",style="solid", color="burlywood", weight=9]; 2787 -> 208[label="",style="solid", color="burlywood", weight=3]; 2788[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];176 -> 2788[label="",style="solid", color="burlywood", weight=9]; 2788 -> 209[label="",style="solid", color="burlywood", weight=3]; 2789[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];176 -> 2789[label="",style="solid", color="burlywood", weight=9]; 2789 -> 210[label="",style="solid", color="burlywood", weight=3]; 177[label="compare2 GT vwx40 (GT == vwx40)",fontsize=16,color="burlywood",shape="box"];2790[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];177 -> 2790[label="",style="solid", color="burlywood", weight=9]; 2790 -> 211[label="",style="solid", color="burlywood", weight=3]; 2791[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];177 -> 2791[label="",style="solid", color="burlywood", weight=9]; 2791 -> 212[label="",style="solid", color="burlywood", weight=3]; 2792[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];177 -> 2792[label="",style="solid", color="burlywood", weight=9]; 2792 -> 213[label="",style="solid", color="burlywood", weight=3]; 178[label="primCmpInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];2793[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];178 -> 2793[label="",style="solid", color="burlywood", weight=9]; 2793 -> 214[label="",style="solid", color="burlywood", weight=3]; 2794[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];178 -> 2794[label="",style="solid", color="burlywood", weight=9]; 2794 -> 215[label="",style="solid", color="burlywood", weight=3]; 179[label="primCmpInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];2795[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];179 -> 2795[label="",style="solid", color="burlywood", weight=9]; 2795 -> 216[label="",style="solid", color="burlywood", weight=3]; 2796[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];179 -> 2796[label="",style="solid", color="burlywood", weight=9]; 2796 -> 217[label="",style="solid", color="burlywood", weight=3]; 180[label="primCmpInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];2797[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];180 -> 2797[label="",style="solid", color="burlywood", weight=9]; 2797 -> 218[label="",style="solid", color="burlywood", weight=3]; 2798[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];180 -> 2798[label="",style="solid", color="burlywood", weight=9]; 2798 -> 219[label="",style="solid", color="burlywood", weight=3]; 181[label="primCmpInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];2799[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];181 -> 2799[label="",style="solid", color="burlywood", weight=9]; 2799 -> 220[label="",style="solid", color="burlywood", weight=3]; 2800[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];181 -> 2800[label="",style="solid", color="burlywood", weight=9]; 2800 -> 221[label="",style="solid", color="burlywood", weight=3]; 182[label="primCmpDouble (Double vwx300 (Pos vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];2801[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];182 -> 2801[label="",style="solid", color="burlywood", weight=9]; 2801 -> 222[label="",style="solid", color="burlywood", weight=3]; 183[label="primCmpDouble (Double vwx300 (Neg vwx3010)) vwx40",fontsize=16,color="burlywood",shape="box"];2802[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];183 -> 2802[label="",style="solid", color="burlywood", weight=9]; 2802 -> 223[label="",style="solid", color="burlywood", weight=3]; 184 -> 113[label="",style="dashed", color="red", weight=0]; 184[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="magenta"];184 -> 224[label="",style="dashed", color="magenta", weight=3]; 184 -> 225[label="",style="dashed", color="magenta", weight=3]; 185 -> 124[label="",style="dashed", color="red", weight=0]; 185[label="compare (vwx300 * vwx401) (vwx400 * vwx301)",fontsize=16,color="magenta"];185 -> 226[label="",style="dashed", color="magenta", weight=3]; 185 -> 227[label="",style="dashed", color="magenta", weight=3]; 186[label="vwx300",fontsize=16,color="green",shape="box"];187[label="vwx400",fontsize=16,color="green",shape="box"];188[label="compare2 (vwx300,vwx301) (vwx400,vwx401) ((vwx300,vwx301) == (vwx400,vwx401))",fontsize=16,color="black",shape="box"];188 -> 228[label="",style="solid", color="black", weight=3]; 189[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];2803[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];189 -> 2803[label="",style="solid", color="burlywood", weight=9]; 2803 -> 229[label="",style="solid", color="burlywood", weight=3]; 2804[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];189 -> 2804[label="",style="solid", color="burlywood", weight=9]; 2804 -> 230[label="",style="solid", color="burlywood", weight=3]; 190[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];2805[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];190 -> 2805[label="",style="solid", color="burlywood", weight=9]; 2805 -> 231[label="",style="solid", color="burlywood", weight=3]; 2806[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];190 -> 2806[label="",style="solid", color="burlywood", weight=9]; 2806 -> 232[label="",style="solid", color="burlywood", weight=3]; 191[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];191 -> 233[label="",style="solid", color="black", weight=3]; 192[label="compare2 Nothing (Just vwx400) (Nothing == Just vwx400)",fontsize=16,color="black",shape="box"];192 -> 234[label="",style="solid", color="black", weight=3]; 193[label="compare2 (Just vwx300) Nothing (Just vwx300 == Nothing)",fontsize=16,color="black",shape="box"];193 -> 235[label="",style="solid", color="black", weight=3]; 194[label="compare2 (Just vwx300) (Just vwx400) (Just vwx300 == Just vwx400)",fontsize=16,color="black",shape="box"];194 -> 236[label="",style="solid", color="black", weight=3]; 195[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];195 -> 237[label="",style="solid", color="black", weight=3]; 196[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];196 -> 238[label="",style="solid", color="black", weight=3]; 197[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];197 -> 239[label="",style="solid", color="black", weight=3]; 198[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];198 -> 240[label="",style="solid", color="black", weight=3]; 199[label="compare2 (Left vwx300) (Left vwx400) (Left vwx300 == Left vwx400)",fontsize=16,color="black",shape="box"];199 -> 241[label="",style="solid", color="black", weight=3]; 200[label="compare2 (Left vwx300) (Right vwx400) (Left vwx300 == Right vwx400)",fontsize=16,color="black",shape="box"];200 -> 242[label="",style="solid", color="black", weight=3]; 201[label="compare2 (Right vwx300) (Left vwx400) (Right vwx300 == Left vwx400)",fontsize=16,color="black",shape="box"];201 -> 243[label="",style="solid", color="black", weight=3]; 202[label="compare2 (Right vwx300) (Right vwx400) (Right vwx300 == Right vwx400)",fontsize=16,color="black",shape="box"];202 -> 244[label="",style="solid", color="black", weight=3]; 203[label="compare2 (vwx300,vwx301,vwx302) (vwx400,vwx401,vwx402) ((vwx300,vwx301,vwx302) == (vwx400,vwx401,vwx402))",fontsize=16,color="black",shape="box"];203 -> 245[label="",style="solid", color="black", weight=3]; 204[label="primCmpNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];2807[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];204 -> 2807[label="",style="solid", color="burlywood", weight=9]; 2807 -> 246[label="",style="solid", color="burlywood", weight=3]; 2808[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];204 -> 2808[label="",style="solid", color="burlywood", weight=9]; 2808 -> 247[label="",style="solid", color="burlywood", weight=3]; 205[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];205 -> 248[label="",style="solid", color="black", weight=3]; 206[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];206 -> 249[label="",style="solid", color="black", weight=3]; 207[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];207 -> 250[label="",style="solid", color="black", weight=3]; 208[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];208 -> 251[label="",style="solid", color="black", weight=3]; 209[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];209 -> 252[label="",style="solid", color="black", weight=3]; 210[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];210 -> 253[label="",style="solid", color="black", weight=3]; 211[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];211 -> 254[label="",style="solid", color="black", weight=3]; 212[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];212 -> 255[label="",style="solid", color="black", weight=3]; 213[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];213 -> 256[label="",style="solid", color="black", weight=3]; 214[label="primCmpInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];214 -> 257[label="",style="solid", color="black", weight=3]; 215[label="primCmpInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];215 -> 258[label="",style="solid", color="black", weight=3]; 216[label="primCmpInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2809[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];216 -> 2809[label="",style="solid", color="burlywood", weight=9]; 2809 -> 259[label="",style="solid", color="burlywood", weight=3]; 2810[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];216 -> 2810[label="",style="solid", color="burlywood", weight=9]; 2810 -> 260[label="",style="solid", color="burlywood", weight=3]; 217[label="primCmpInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2811[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];217 -> 2811[label="",style="solid", color="burlywood", weight=9]; 2811 -> 261[label="",style="solid", color="burlywood", weight=3]; 2812[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];217 -> 2812[label="",style="solid", color="burlywood", weight=9]; 2812 -> 262[label="",style="solid", color="burlywood", weight=3]; 218[label="primCmpInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];218 -> 263[label="",style="solid", color="black", weight=3]; 219[label="primCmpInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];219 -> 264[label="",style="solid", color="black", weight=3]; 220[label="primCmpInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2813[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];220 -> 2813[label="",style="solid", color="burlywood", weight=9]; 2813 -> 265[label="",style="solid", color="burlywood", weight=3]; 2814[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];220 -> 2814[label="",style="solid", color="burlywood", weight=9]; 2814 -> 266[label="",style="solid", color="burlywood", weight=3]; 221[label="primCmpInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2815[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];221 -> 2815[label="",style="solid", color="burlywood", weight=9]; 2815 -> 267[label="",style="solid", color="burlywood", weight=3]; 2816[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];221 -> 2816[label="",style="solid", color="burlywood", weight=9]; 2816 -> 268[label="",style="solid", color="burlywood", weight=3]; 222[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];2817[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];222 -> 2817[label="",style="solid", color="burlywood", weight=9]; 2817 -> 269[label="",style="solid", color="burlywood", weight=3]; 2818[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];222 -> 2818[label="",style="solid", color="burlywood", weight=9]; 2818 -> 270[label="",style="solid", color="burlywood", weight=3]; 223[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 vwx401)",fontsize=16,color="burlywood",shape="box"];2819[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];223 -> 2819[label="",style="solid", color="burlywood", weight=9]; 2819 -> 271[label="",style="solid", color="burlywood", weight=3]; 2820[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];223 -> 2820[label="",style="solid", color="burlywood", weight=9]; 2820 -> 272[label="",style="solid", color="burlywood", weight=3]; 224[label="vwx300 * vwx401",fontsize=16,color="burlywood",shape="triangle"];2821[label="vwx300/Integer vwx3000",fontsize=10,color="white",style="solid",shape="box"];224 -> 2821[label="",style="solid", color="burlywood", weight=9]; 2821 -> 273[label="",style="solid", color="burlywood", weight=3]; 225 -> 224[label="",style="dashed", color="red", weight=0]; 225[label="vwx400 * vwx301",fontsize=16,color="magenta"];225 -> 274[label="",style="dashed", color="magenta", weight=3]; 225 -> 275[label="",style="dashed", color="magenta", weight=3]; 226[label="vwx300 * vwx401",fontsize=16,color="black",shape="triangle"];226 -> 276[label="",style="solid", color="black", weight=3]; 227 -> 226[label="",style="dashed", color="red", weight=0]; 227[label="vwx400 * vwx301",fontsize=16,color="magenta"];227 -> 277[label="",style="dashed", color="magenta", weight=3]; 227 -> 278[label="",style="dashed", color="magenta", weight=3]; 228 -> 700[label="",style="dashed", color="red", weight=0]; 228[label="compare2 (vwx300,vwx301) (vwx400,vwx401) (vwx300 == vwx400 && vwx301 == vwx401)",fontsize=16,color="magenta"];228 -> 701[label="",style="dashed", color="magenta", weight=3]; 228 -> 702[label="",style="dashed", color="magenta", weight=3]; 228 -> 703[label="",style="dashed", color="magenta", weight=3]; 228 -> 704[label="",style="dashed", color="magenta", weight=3]; 228 -> 705[label="",style="dashed", color="magenta", weight=3]; 229[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];229 -> 285[label="",style="solid", color="black", weight=3]; 230[label="primCmpFloat (Float vwx300 (Pos vwx3010)) (Float vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];230 -> 286[label="",style="solid", color="black", weight=3]; 231[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];231 -> 287[label="",style="solid", color="black", weight=3]; 232[label="primCmpFloat (Float vwx300 (Neg vwx3010)) (Float vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];232 -> 288[label="",style="solid", color="black", weight=3]; 233[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];233 -> 289[label="",style="solid", color="black", weight=3]; 234[label="compare2 Nothing (Just vwx400) False",fontsize=16,color="black",shape="box"];234 -> 290[label="",style="solid", color="black", weight=3]; 235[label="compare2 (Just vwx300) Nothing False",fontsize=16,color="black",shape="box"];235 -> 291[label="",style="solid", color="black", weight=3]; 236 -> 292[label="",style="dashed", color="red", weight=0]; 236[label="compare2 (Just vwx300) (Just vwx400) (vwx300 == vwx400)",fontsize=16,color="magenta"];236 -> 293[label="",style="dashed", color="magenta", weight=3]; 236 -> 294[label="",style="dashed", color="magenta", weight=3]; 236 -> 295[label="",style="dashed", color="magenta", weight=3]; 237[label="compare2 False False True",fontsize=16,color="black",shape="box"];237 -> 296[label="",style="solid", color="black", weight=3]; 238[label="compare2 False True False",fontsize=16,color="black",shape="box"];238 -> 297[label="",style="solid", color="black", weight=3]; 239[label="compare2 True False False",fontsize=16,color="black",shape="box"];239 -> 298[label="",style="solid", color="black", weight=3]; 240[label="compare2 True True True",fontsize=16,color="black",shape="box"];240 -> 299[label="",style="solid", color="black", weight=3]; 241 -> 300[label="",style="dashed", color="red", weight=0]; 241[label="compare2 (Left vwx300) (Left vwx400) (vwx300 == vwx400)",fontsize=16,color="magenta"];241 -> 301[label="",style="dashed", color="magenta", weight=3]; 241 -> 302[label="",style="dashed", color="magenta", weight=3]; 241 -> 303[label="",style="dashed", color="magenta", weight=3]; 242[label="compare2 (Left vwx300) (Right vwx400) False",fontsize=16,color="black",shape="box"];242 -> 304[label="",style="solid", color="black", weight=3]; 243[label="compare2 (Right vwx300) (Left vwx400) False",fontsize=16,color="black",shape="box"];243 -> 305[label="",style="solid", color="black", weight=3]; 244 -> 306[label="",style="dashed", color="red", weight=0]; 244[label="compare2 (Right vwx300) (Right vwx400) (vwx300 == vwx400)",fontsize=16,color="magenta"];244 -> 307[label="",style="dashed", color="magenta", weight=3]; 244 -> 308[label="",style="dashed", color="magenta", weight=3]; 244 -> 309[label="",style="dashed", color="magenta", weight=3]; 245 -> 750[label="",style="dashed", color="red", weight=0]; 245[label="compare2 (vwx300,vwx301,vwx302) (vwx400,vwx401,vwx402) (vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402)",fontsize=16,color="magenta"];245 -> 751[label="",style="dashed", color="magenta", weight=3]; 245 -> 752[label="",style="dashed", color="magenta", weight=3]; 245 -> 753[label="",style="dashed", color="magenta", weight=3]; 245 -> 754[label="",style="dashed", color="magenta", weight=3]; 245 -> 755[label="",style="dashed", color="magenta", weight=3]; 245 -> 756[label="",style="dashed", color="magenta", weight=3]; 245 -> 757[label="",style="dashed", color="magenta", weight=3]; 246[label="primCmpNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];2822[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];246 -> 2822[label="",style="solid", color="burlywood", weight=9]; 2822 -> 318[label="",style="solid", color="burlywood", weight=3]; 2823[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];246 -> 2823[label="",style="solid", color="burlywood", weight=9]; 2823 -> 319[label="",style="solid", color="burlywood", weight=3]; 247[label="primCmpNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];2824[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];247 -> 2824[label="",style="solid", color="burlywood", weight=9]; 2824 -> 320[label="",style="solid", color="burlywood", weight=3]; 2825[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];247 -> 2825[label="",style="solid", color="burlywood", weight=9]; 2825 -> 321[label="",style="solid", color="burlywood", weight=3]; 248[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];248 -> 322[label="",style="solid", color="black", weight=3]; 249[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];249 -> 323[label="",style="solid", color="black", weight=3]; 250[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];250 -> 324[label="",style="solid", color="black", weight=3]; 251[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];251 -> 325[label="",style="solid", color="black", weight=3]; 252[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];252 -> 326[label="",style="solid", color="black", weight=3]; 253[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];253 -> 327[label="",style="solid", color="black", weight=3]; 254[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];254 -> 328[label="",style="solid", color="black", weight=3]; 255[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];255 -> 329[label="",style="solid", color="black", weight=3]; 256[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];256 -> 330[label="",style="solid", color="black", weight=3]; 257 -> 204[label="",style="dashed", color="red", weight=0]; 257[label="primCmpNat (Succ vwx3000) vwx400",fontsize=16,color="magenta"];257 -> 331[label="",style="dashed", color="magenta", weight=3]; 257 -> 332[label="",style="dashed", color="magenta", weight=3]; 258[label="GT",fontsize=16,color="green",shape="box"];259[label="primCmpInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];259 -> 333[label="",style="solid", color="black", weight=3]; 260[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];260 -> 334[label="",style="solid", color="black", weight=3]; 261[label="primCmpInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];261 -> 335[label="",style="solid", color="black", weight=3]; 262[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];262 -> 336[label="",style="solid", color="black", weight=3]; 263[label="LT",fontsize=16,color="green",shape="box"];264 -> 204[label="",style="dashed", color="red", weight=0]; 264[label="primCmpNat vwx400 (Succ vwx3000)",fontsize=16,color="magenta"];264 -> 337[label="",style="dashed", color="magenta", weight=3]; 264 -> 338[label="",style="dashed", color="magenta", weight=3]; 265[label="primCmpInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];265 -> 339[label="",style="solid", color="black", weight=3]; 266[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];266 -> 340[label="",style="solid", color="black", weight=3]; 267[label="primCmpInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];267 -> 341[label="",style="solid", color="black", weight=3]; 268[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];268 -> 342[label="",style="solid", color="black", weight=3]; 269[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];269 -> 343[label="",style="solid", color="black", weight=3]; 270[label="primCmpDouble (Double vwx300 (Pos vwx3010)) (Double vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];270 -> 344[label="",style="solid", color="black", weight=3]; 271[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 (Pos vwx4010))",fontsize=16,color="black",shape="box"];271 -> 345[label="",style="solid", color="black", weight=3]; 272[label="primCmpDouble (Double vwx300 (Neg vwx3010)) (Double vwx400 (Neg vwx4010))",fontsize=16,color="black",shape="box"];272 -> 346[label="",style="solid", color="black", weight=3]; 273[label="Integer vwx3000 * vwx401",fontsize=16,color="burlywood",shape="box"];2826[label="vwx401/Integer vwx4010",fontsize=10,color="white",style="solid",shape="box"];273 -> 2826[label="",style="solid", color="burlywood", weight=9]; 2826 -> 347[label="",style="solid", color="burlywood", weight=3]; 274[label="vwx400",fontsize=16,color="green",shape="box"];275[label="vwx301",fontsize=16,color="green",shape="box"];276[label="primMulInt vwx300 vwx401",fontsize=16,color="burlywood",shape="triangle"];2827[label="vwx300/Pos vwx3000",fontsize=10,color="white",style="solid",shape="box"];276 -> 2827[label="",style="solid", color="burlywood", weight=9]; 2827 -> 348[label="",style="solid", color="burlywood", weight=3]; 2828[label="vwx300/Neg vwx3000",fontsize=10,color="white",style="solid",shape="box"];276 -> 2828[label="",style="solid", color="burlywood", weight=9]; 2828 -> 349[label="",style="solid", color="burlywood", weight=3]; 277[label="vwx400",fontsize=16,color="green",shape="box"];278[label="vwx301",fontsize=16,color="green",shape="box"];701[label="vwx400",fontsize=16,color="green",shape="box"];702[label="vwx300",fontsize=16,color="green",shape="box"];703[label="vwx301",fontsize=16,color="green",shape="box"];704 -> 782[label="",style="dashed", color="red", weight=0]; 704[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];704 -> 783[label="",style="dashed", color="magenta", weight=3]; 704 -> 784[label="",style="dashed", color="magenta", weight=3]; 705[label="vwx401",fontsize=16,color="green",shape="box"];700[label="compare2 (vwx74,vwx75) (vwx76,vwx77) vwx78",fontsize=16,color="burlywood",shape="triangle"];2829[label="vwx78/False",fontsize=10,color="white",style="solid",shape="box"];700 -> 2829[label="",style="solid", color="burlywood", weight=9]; 2829 -> 725[label="",style="solid", color="burlywood", weight=3]; 2830[label="vwx78/True",fontsize=10,color="white",style="solid",shape="box"];700 -> 2830[label="",style="solid", color="burlywood", weight=9]; 2830 -> 726[label="",style="solid", color="burlywood", weight=3]; 285 -> 124[label="",style="dashed", color="red", weight=0]; 285[label="compare (vwx300 * Pos vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];285 -> 366[label="",style="dashed", color="magenta", weight=3]; 285 -> 367[label="",style="dashed", color="magenta", weight=3]; 286 -> 124[label="",style="dashed", color="red", weight=0]; 286[label="compare (vwx300 * Pos vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];286 -> 368[label="",style="dashed", color="magenta", weight=3]; 286 -> 369[label="",style="dashed", color="magenta", weight=3]; 287 -> 124[label="",style="dashed", color="red", weight=0]; 287[label="compare (vwx300 * Neg vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];287 -> 370[label="",style="dashed", color="magenta", weight=3]; 287 -> 371[label="",style="dashed", color="magenta", weight=3]; 288 -> 124[label="",style="dashed", color="red", weight=0]; 288[label="compare (vwx300 * Neg vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];288 -> 372[label="",style="dashed", color="magenta", weight=3]; 288 -> 373[label="",style="dashed", color="magenta", weight=3]; 289[label="EQ",fontsize=16,color="green",shape="box"];290[label="compare1 Nothing (Just vwx400) (Nothing <= Just vwx400)",fontsize=16,color="black",shape="box"];290 -> 374[label="",style="solid", color="black", weight=3]; 291[label="compare1 (Just vwx300) Nothing (Just vwx300 <= Nothing)",fontsize=16,color="black",shape="box"];291 -> 375[label="",style="solid", color="black", weight=3]; 293[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2831[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];293 -> 2831[label="",style="solid", color="blue", weight=9]; 2831 -> 376[label="",style="solid", color="blue", weight=3]; 2832[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];293 -> 2832[label="",style="solid", color="blue", weight=9]; 2832 -> 377[label="",style="solid", color="blue", weight=3]; 2833[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];293 -> 2833[label="",style="solid", color="blue", weight=9]; 2833 -> 378[label="",style="solid", color="blue", weight=3]; 2834[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];293 -> 2834[label="",style="solid", color="blue", weight=9]; 2834 -> 379[label="",style="solid", color="blue", weight=3]; 2835[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];293 -> 2835[label="",style="solid", color="blue", weight=9]; 2835 -> 380[label="",style="solid", color="blue", weight=3]; 2836[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];293 -> 2836[label="",style="solid", color="blue", weight=9]; 2836 -> 381[label="",style="solid", color="blue", weight=3]; 2837[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];293 -> 2837[label="",style="solid", color="blue", weight=9]; 2837 -> 382[label="",style="solid", color="blue", weight=3]; 2838[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];293 -> 2838[label="",style="solid", color="blue", weight=9]; 2838 -> 383[label="",style="solid", color="blue", weight=3]; 2839[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];293 -> 2839[label="",style="solid", color="blue", weight=9]; 2839 -> 384[label="",style="solid", color="blue", weight=3]; 2840[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];293 -> 2840[label="",style="solid", color="blue", weight=9]; 2840 -> 385[label="",style="solid", color="blue", weight=3]; 2841[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];293 -> 2841[label="",style="solid", color="blue", weight=9]; 2841 -> 386[label="",style="solid", color="blue", weight=3]; 2842[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];293 -> 2842[label="",style="solid", color="blue", weight=9]; 2842 -> 387[label="",style="solid", color="blue", weight=3]; 2843[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];293 -> 2843[label="",style="solid", color="blue", weight=9]; 2843 -> 388[label="",style="solid", color="blue", weight=3]; 2844[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];293 -> 2844[label="",style="solid", color="blue", weight=9]; 2844 -> 389[label="",style="solid", color="blue", weight=3]; 294[label="vwx400",fontsize=16,color="green",shape="box"];295[label="vwx300",fontsize=16,color="green",shape="box"];292[label="compare2 (Just vwx36) (Just vwx37) vwx38",fontsize=16,color="burlywood",shape="triangle"];2845[label="vwx38/False",fontsize=10,color="white",style="solid",shape="box"];292 -> 2845[label="",style="solid", color="burlywood", weight=9]; 2845 -> 390[label="",style="solid", color="burlywood", weight=3]; 2846[label="vwx38/True",fontsize=10,color="white",style="solid",shape="box"];292 -> 2846[label="",style="solid", color="burlywood", weight=9]; 2846 -> 391[label="",style="solid", color="burlywood", weight=3]; 296[label="EQ",fontsize=16,color="green",shape="box"];297[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];297 -> 392[label="",style="solid", color="black", weight=3]; 298[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];298 -> 393[label="",style="solid", color="black", weight=3]; 299[label="EQ",fontsize=16,color="green",shape="box"];301[label="vwx300",fontsize=16,color="green",shape="box"];302[label="vwx400",fontsize=16,color="green",shape="box"];303[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2847[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 2847[label="",style="solid", color="blue", weight=9]; 2847 -> 394[label="",style="solid", color="blue", weight=3]; 2848[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 2848[label="",style="solid", color="blue", weight=9]; 2848 -> 395[label="",style="solid", color="blue", weight=3]; 2849[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 2849[label="",style="solid", color="blue", weight=9]; 2849 -> 396[label="",style="solid", color="blue", weight=3]; 2850[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 2850[label="",style="solid", color="blue", weight=9]; 2850 -> 397[label="",style="solid", color="blue", weight=3]; 2851[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 2851[label="",style="solid", color="blue", weight=9]; 2851 -> 398[label="",style="solid", color="blue", weight=3]; 2852[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 2852[label="",style="solid", color="blue", weight=9]; 2852 -> 399[label="",style="solid", color="blue", weight=3]; 2853[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 2853[label="",style="solid", color="blue", weight=9]; 2853 -> 400[label="",style="solid", color="blue", weight=3]; 2854[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 2854[label="",style="solid", color="blue", weight=9]; 2854 -> 401[label="",style="solid", color="blue", weight=3]; 2855[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 2855[label="",style="solid", color="blue", weight=9]; 2855 -> 402[label="",style="solid", color="blue", weight=3]; 2856[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 2856[label="",style="solid", color="blue", weight=9]; 2856 -> 403[label="",style="solid", color="blue", weight=3]; 2857[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 2857[label="",style="solid", color="blue", weight=9]; 2857 -> 404[label="",style="solid", color="blue", weight=3]; 2858[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 2858[label="",style="solid", color="blue", weight=9]; 2858 -> 405[label="",style="solid", color="blue", weight=3]; 2859[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 2859[label="",style="solid", color="blue", weight=9]; 2859 -> 406[label="",style="solid", color="blue", weight=3]; 2860[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 2860[label="",style="solid", color="blue", weight=9]; 2860 -> 407[label="",style="solid", color="blue", weight=3]; 300[label="compare2 (Left vwx43) (Left vwx44) vwx45",fontsize=16,color="burlywood",shape="triangle"];2861[label="vwx45/False",fontsize=10,color="white",style="solid",shape="box"];300 -> 2861[label="",style="solid", color="burlywood", weight=9]; 2861 -> 408[label="",style="solid", color="burlywood", weight=3]; 2862[label="vwx45/True",fontsize=10,color="white",style="solid",shape="box"];300 -> 2862[label="",style="solid", color="burlywood", weight=9]; 2862 -> 409[label="",style="solid", color="burlywood", weight=3]; 304[label="compare1 (Left vwx300) (Right vwx400) (Left vwx300 <= Right vwx400)",fontsize=16,color="black",shape="box"];304 -> 410[label="",style="solid", color="black", weight=3]; 305[label="compare1 (Right vwx300) (Left vwx400) (Right vwx300 <= Left vwx400)",fontsize=16,color="black",shape="box"];305 -> 411[label="",style="solid", color="black", weight=3]; 307[label="vwx400",fontsize=16,color="green",shape="box"];308[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2863[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];308 -> 2863[label="",style="solid", color="blue", weight=9]; 2863 -> 412[label="",style="solid", color="blue", weight=3]; 2864[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];308 -> 2864[label="",style="solid", color="blue", weight=9]; 2864 -> 413[label="",style="solid", color="blue", weight=3]; 2865[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];308 -> 2865[label="",style="solid", color="blue", weight=9]; 2865 -> 414[label="",style="solid", color="blue", weight=3]; 2866[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];308 -> 2866[label="",style="solid", color="blue", weight=9]; 2866 -> 415[label="",style="solid", color="blue", weight=3]; 2867[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];308 -> 2867[label="",style="solid", color="blue", weight=9]; 2867 -> 416[label="",style="solid", color="blue", weight=3]; 2868[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];308 -> 2868[label="",style="solid", color="blue", weight=9]; 2868 -> 417[label="",style="solid", color="blue", weight=3]; 2869[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];308 -> 2869[label="",style="solid", color="blue", weight=9]; 2869 -> 418[label="",style="solid", color="blue", weight=3]; 2870[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];308 -> 2870[label="",style="solid", color="blue", weight=9]; 2870 -> 419[label="",style="solid", color="blue", weight=3]; 2871[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];308 -> 2871[label="",style="solid", color="blue", weight=9]; 2871 -> 420[label="",style="solid", color="blue", weight=3]; 2872[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];308 -> 2872[label="",style="solid", color="blue", weight=9]; 2872 -> 421[label="",style="solid", color="blue", weight=3]; 2873[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];308 -> 2873[label="",style="solid", color="blue", weight=9]; 2873 -> 422[label="",style="solid", color="blue", weight=3]; 2874[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];308 -> 2874[label="",style="solid", color="blue", weight=9]; 2874 -> 423[label="",style="solid", color="blue", weight=3]; 2875[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];308 -> 2875[label="",style="solid", color="blue", weight=9]; 2875 -> 424[label="",style="solid", color="blue", weight=3]; 2876[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];308 -> 2876[label="",style="solid", color="blue", weight=9]; 2876 -> 425[label="",style="solid", color="blue", weight=3]; 309[label="vwx300",fontsize=16,color="green",shape="box"];306[label="compare2 (Right vwx50) (Right vwx51) vwx52",fontsize=16,color="burlywood",shape="triangle"];2877[label="vwx52/False",fontsize=10,color="white",style="solid",shape="box"];306 -> 2877[label="",style="solid", color="burlywood", weight=9]; 2877 -> 426[label="",style="solid", color="burlywood", weight=3]; 2878[label="vwx52/True",fontsize=10,color="white",style="solid",shape="box"];306 -> 2878[label="",style="solid", color="burlywood", weight=9]; 2878 -> 427[label="",style="solid", color="burlywood", weight=3]; 751[label="vwx301",fontsize=16,color="green",shape="box"];752 -> 782[label="",style="dashed", color="red", weight=0]; 752[label="vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];752 -> 785[label="",style="dashed", color="magenta", weight=3]; 752 -> 786[label="",style="dashed", color="magenta", weight=3]; 753[label="vwx400",fontsize=16,color="green",shape="box"];754[label="vwx302",fontsize=16,color="green",shape="box"];755[label="vwx401",fontsize=16,color="green",shape="box"];756[label="vwx300",fontsize=16,color="green",shape="box"];757[label="vwx402",fontsize=16,color="green",shape="box"];750[label="compare2 (vwx61,vwx62,vwx63) (vwx64,vwx65,vwx66) vwx86",fontsize=16,color="burlywood",shape="triangle"];2879[label="vwx86/False",fontsize=10,color="white",style="solid",shape="box"];750 -> 2879[label="",style="solid", color="burlywood", weight=9]; 2879 -> 766[label="",style="solid", color="burlywood", weight=3]; 2880[label="vwx86/True",fontsize=10,color="white",style="solid",shape="box"];750 -> 2880[label="",style="solid", color="burlywood", weight=9]; 2880 -> 767[label="",style="solid", color="burlywood", weight=3]; 318[label="primCmpNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];318 -> 444[label="",style="solid", color="black", weight=3]; 319[label="primCmpNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];319 -> 445[label="",style="solid", color="black", weight=3]; 320[label="primCmpNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];320 -> 446[label="",style="solid", color="black", weight=3]; 321[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];321 -> 447[label="",style="solid", color="black", weight=3]; 322[label="EQ",fontsize=16,color="green",shape="box"];323[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];323 -> 448[label="",style="solid", color="black", weight=3]; 324[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];324 -> 449[label="",style="solid", color="black", weight=3]; 325[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];325 -> 450[label="",style="solid", color="black", weight=3]; 326[label="EQ",fontsize=16,color="green",shape="box"];327[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];327 -> 451[label="",style="solid", color="black", weight=3]; 328[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];328 -> 452[label="",style="solid", color="black", weight=3]; 329[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];329 -> 453[label="",style="solid", color="black", weight=3]; 330[label="EQ",fontsize=16,color="green",shape="box"];331[label="Succ vwx3000",fontsize=16,color="green",shape="box"];332[label="vwx400",fontsize=16,color="green",shape="box"];333 -> 204[label="",style="dashed", color="red", weight=0]; 333[label="primCmpNat Zero (Succ vwx4000)",fontsize=16,color="magenta"];333 -> 454[label="",style="dashed", color="magenta", weight=3]; 333 -> 455[label="",style="dashed", color="magenta", weight=3]; 334[label="EQ",fontsize=16,color="green",shape="box"];335[label="GT",fontsize=16,color="green",shape="box"];336[label="EQ",fontsize=16,color="green",shape="box"];337[label="vwx400",fontsize=16,color="green",shape="box"];338[label="Succ vwx3000",fontsize=16,color="green",shape="box"];339[label="LT",fontsize=16,color="green",shape="box"];340[label="EQ",fontsize=16,color="green",shape="box"];341 -> 204[label="",style="dashed", color="red", weight=0]; 341[label="primCmpNat (Succ vwx4000) Zero",fontsize=16,color="magenta"];341 -> 456[label="",style="dashed", color="magenta", weight=3]; 341 -> 457[label="",style="dashed", color="magenta", weight=3]; 342[label="EQ",fontsize=16,color="green",shape="box"];343 -> 124[label="",style="dashed", color="red", weight=0]; 343[label="compare (vwx300 * Pos vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];343 -> 458[label="",style="dashed", color="magenta", weight=3]; 343 -> 459[label="",style="dashed", color="magenta", weight=3]; 344 -> 124[label="",style="dashed", color="red", weight=0]; 344[label="compare (vwx300 * Pos vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];344 -> 460[label="",style="dashed", color="magenta", weight=3]; 344 -> 461[label="",style="dashed", color="magenta", weight=3]; 345 -> 124[label="",style="dashed", color="red", weight=0]; 345[label="compare (vwx300 * Neg vwx4010) (Pos vwx3010 * vwx400)",fontsize=16,color="magenta"];345 -> 462[label="",style="dashed", color="magenta", weight=3]; 345 -> 463[label="",style="dashed", color="magenta", weight=3]; 346 -> 124[label="",style="dashed", color="red", weight=0]; 346[label="compare (vwx300 * Neg vwx4010) (Neg vwx3010 * vwx400)",fontsize=16,color="magenta"];346 -> 464[label="",style="dashed", color="magenta", weight=3]; 346 -> 465[label="",style="dashed", color="magenta", weight=3]; 347[label="Integer vwx3000 * Integer vwx4010",fontsize=16,color="black",shape="box"];347 -> 466[label="",style="solid", color="black", weight=3]; 348[label="primMulInt (Pos vwx3000) vwx401",fontsize=16,color="burlywood",shape="box"];2881[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];348 -> 2881[label="",style="solid", color="burlywood", weight=9]; 2881 -> 467[label="",style="solid", color="burlywood", weight=3]; 2882[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];348 -> 2882[label="",style="solid", color="burlywood", weight=9]; 2882 -> 468[label="",style="solid", color="burlywood", weight=3]; 349[label="primMulInt (Neg vwx3000) vwx401",fontsize=16,color="burlywood",shape="box"];2883[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];349 -> 2883[label="",style="solid", color="burlywood", weight=9]; 2883 -> 469[label="",style="solid", color="burlywood", weight=3]; 2884[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];349 -> 2884[label="",style="solid", color="burlywood", weight=9]; 2884 -> 470[label="",style="solid", color="burlywood", weight=3]; 783[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];2885[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];783 -> 2885[label="",style="solid", color="blue", weight=9]; 2885 -> 791[label="",style="solid", color="blue", weight=3]; 2886[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];783 -> 2886[label="",style="solid", color="blue", weight=9]; 2886 -> 792[label="",style="solid", color="blue", weight=3]; 2887[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];783 -> 2887[label="",style="solid", color="blue", weight=9]; 2887 -> 793[label="",style="solid", color="blue", weight=3]; 2888[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];783 -> 2888[label="",style="solid", color="blue", weight=9]; 2888 -> 794[label="",style="solid", color="blue", weight=3]; 2889[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];783 -> 2889[label="",style="solid", color="blue", weight=9]; 2889 -> 795[label="",style="solid", color="blue", weight=3]; 2890[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];783 -> 2890[label="",style="solid", color="blue", weight=9]; 2890 -> 796[label="",style="solid", color="blue", weight=3]; 2891[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];783 -> 2891[label="",style="solid", color="blue", weight=9]; 2891 -> 797[label="",style="solid", color="blue", weight=3]; 2892[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];783 -> 2892[label="",style="solid", color="blue", weight=9]; 2892 -> 798[label="",style="solid", color="blue", weight=3]; 2893[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];783 -> 2893[label="",style="solid", color="blue", weight=9]; 2893 -> 799[label="",style="solid", color="blue", weight=3]; 2894[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];783 -> 2894[label="",style="solid", color="blue", weight=9]; 2894 -> 800[label="",style="solid", color="blue", weight=3]; 2895[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];783 -> 2895[label="",style="solid", color="blue", weight=9]; 2895 -> 801[label="",style="solid", color="blue", weight=3]; 2896[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];783 -> 2896[label="",style="solid", color="blue", weight=9]; 2896 -> 802[label="",style="solid", color="blue", weight=3]; 2897[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];783 -> 2897[label="",style="solid", color="blue", weight=9]; 2897 -> 803[label="",style="solid", color="blue", weight=3]; 2898[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];783 -> 2898[label="",style="solid", color="blue", weight=9]; 2898 -> 804[label="",style="solid", color="blue", weight=3]; 784[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2899[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];784 -> 2899[label="",style="solid", color="blue", weight=9]; 2899 -> 805[label="",style="solid", color="blue", weight=3]; 2900[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];784 -> 2900[label="",style="solid", color="blue", weight=9]; 2900 -> 806[label="",style="solid", color="blue", weight=3]; 2901[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];784 -> 2901[label="",style="solid", color="blue", weight=9]; 2901 -> 807[label="",style="solid", color="blue", weight=3]; 2902[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];784 -> 2902[label="",style="solid", color="blue", weight=9]; 2902 -> 808[label="",style="solid", color="blue", weight=3]; 2903[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];784 -> 2903[label="",style="solid", color="blue", weight=9]; 2903 -> 809[label="",style="solid", color="blue", weight=3]; 2904[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];784 -> 2904[label="",style="solid", color="blue", weight=9]; 2904 -> 810[label="",style="solid", color="blue", weight=3]; 2905[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];784 -> 2905[label="",style="solid", color="blue", weight=9]; 2905 -> 811[label="",style="solid", color="blue", weight=3]; 2906[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];784 -> 2906[label="",style="solid", color="blue", weight=9]; 2906 -> 812[label="",style="solid", color="blue", weight=3]; 2907[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];784 -> 2907[label="",style="solid", color="blue", weight=9]; 2907 -> 813[label="",style="solid", color="blue", weight=3]; 2908[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];784 -> 2908[label="",style="solid", color="blue", weight=9]; 2908 -> 814[label="",style="solid", color="blue", weight=3]; 2909[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];784 -> 2909[label="",style="solid", color="blue", weight=9]; 2909 -> 815[label="",style="solid", color="blue", weight=3]; 2910[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];784 -> 2910[label="",style="solid", color="blue", weight=9]; 2910 -> 816[label="",style="solid", color="blue", weight=3]; 2911[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];784 -> 2911[label="",style="solid", color="blue", weight=9]; 2911 -> 817[label="",style="solid", color="blue", weight=3]; 2912[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];784 -> 2912[label="",style="solid", color="blue", weight=9]; 2912 -> 818[label="",style="solid", color="blue", weight=3]; 782[label="vwx91 && vwx92",fontsize=16,color="burlywood",shape="triangle"];2913[label="vwx91/False",fontsize=10,color="white",style="solid",shape="box"];782 -> 2913[label="",style="solid", color="burlywood", weight=9]; 2913 -> 819[label="",style="solid", color="burlywood", weight=3]; 2914[label="vwx91/True",fontsize=10,color="white",style="solid",shape="box"];782 -> 2914[label="",style="solid", color="burlywood", weight=9]; 2914 -> 820[label="",style="solid", color="burlywood", weight=3]; 725[label="compare2 (vwx74,vwx75) (vwx76,vwx77) False",fontsize=16,color="black",shape="box"];725 -> 821[label="",style="solid", color="black", weight=3]; 726[label="compare2 (vwx74,vwx75) (vwx76,vwx77) True",fontsize=16,color="black",shape="box"];726 -> 822[label="",style="solid", color="black", weight=3]; 366 -> 226[label="",style="dashed", color="red", weight=0]; 366[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];366 -> 493[label="",style="dashed", color="magenta", weight=3]; 366 -> 494[label="",style="dashed", color="magenta", weight=3]; 367 -> 226[label="",style="dashed", color="red", weight=0]; 367[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];367 -> 495[label="",style="dashed", color="magenta", weight=3]; 367 -> 496[label="",style="dashed", color="magenta", weight=3]; 368 -> 226[label="",style="dashed", color="red", weight=0]; 368[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];368 -> 497[label="",style="dashed", color="magenta", weight=3]; 368 -> 498[label="",style="dashed", color="magenta", weight=3]; 369 -> 226[label="",style="dashed", color="red", weight=0]; 369[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];369 -> 499[label="",style="dashed", color="magenta", weight=3]; 369 -> 500[label="",style="dashed", color="magenta", weight=3]; 370 -> 226[label="",style="dashed", color="red", weight=0]; 370[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];370 -> 501[label="",style="dashed", color="magenta", weight=3]; 370 -> 502[label="",style="dashed", color="magenta", weight=3]; 371 -> 226[label="",style="dashed", color="red", weight=0]; 371[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];371 -> 503[label="",style="dashed", color="magenta", weight=3]; 371 -> 504[label="",style="dashed", color="magenta", weight=3]; 372 -> 226[label="",style="dashed", color="red", weight=0]; 372[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];372 -> 505[label="",style="dashed", color="magenta", weight=3]; 372 -> 506[label="",style="dashed", color="magenta", weight=3]; 373 -> 226[label="",style="dashed", color="red", weight=0]; 373[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];373 -> 507[label="",style="dashed", color="magenta", weight=3]; 373 -> 508[label="",style="dashed", color="magenta", weight=3]; 374[label="compare1 Nothing (Just vwx400) True",fontsize=16,color="black",shape="box"];374 -> 509[label="",style="solid", color="black", weight=3]; 375[label="compare1 (Just vwx300) Nothing False",fontsize=16,color="black",shape="box"];375 -> 510[label="",style="solid", color="black", weight=3]; 376 -> 350[label="",style="dashed", color="red", weight=0]; 376[label="vwx300 == vwx400",fontsize=16,color="magenta"];376 -> 511[label="",style="dashed", color="magenta", weight=3]; 376 -> 512[label="",style="dashed", color="magenta", weight=3]; 377 -> 351[label="",style="dashed", color="red", weight=0]; 377[label="vwx300 == vwx400",fontsize=16,color="magenta"];377 -> 513[label="",style="dashed", color="magenta", weight=3]; 377 -> 514[label="",style="dashed", color="magenta", weight=3]; 378 -> 352[label="",style="dashed", color="red", weight=0]; 378[label="vwx300 == vwx400",fontsize=16,color="magenta"];378 -> 515[label="",style="dashed", color="magenta", weight=3]; 378 -> 516[label="",style="dashed", color="magenta", weight=3]; 379 -> 353[label="",style="dashed", color="red", weight=0]; 379[label="vwx300 == vwx400",fontsize=16,color="magenta"];379 -> 517[label="",style="dashed", color="magenta", weight=3]; 379 -> 518[label="",style="dashed", color="magenta", weight=3]; 380 -> 354[label="",style="dashed", color="red", weight=0]; 380[label="vwx300 == vwx400",fontsize=16,color="magenta"];380 -> 519[label="",style="dashed", color="magenta", weight=3]; 380 -> 520[label="",style="dashed", color="magenta", weight=3]; 381 -> 355[label="",style="dashed", color="red", weight=0]; 381[label="vwx300 == vwx400",fontsize=16,color="magenta"];381 -> 521[label="",style="dashed", color="magenta", weight=3]; 381 -> 522[label="",style="dashed", color="magenta", weight=3]; 382 -> 356[label="",style="dashed", color="red", weight=0]; 382[label="vwx300 == vwx400",fontsize=16,color="magenta"];382 -> 523[label="",style="dashed", color="magenta", weight=3]; 382 -> 524[label="",style="dashed", color="magenta", weight=3]; 383 -> 357[label="",style="dashed", color="red", weight=0]; 383[label="vwx300 == vwx400",fontsize=16,color="magenta"];383 -> 525[label="",style="dashed", color="magenta", weight=3]; 383 -> 526[label="",style="dashed", color="magenta", weight=3]; 384 -> 358[label="",style="dashed", color="red", weight=0]; 384[label="vwx300 == vwx400",fontsize=16,color="magenta"];384 -> 527[label="",style="dashed", color="magenta", weight=3]; 384 -> 528[label="",style="dashed", color="magenta", weight=3]; 385 -> 359[label="",style="dashed", color="red", weight=0]; 385[label="vwx300 == vwx400",fontsize=16,color="magenta"];385 -> 529[label="",style="dashed", color="magenta", weight=3]; 385 -> 530[label="",style="dashed", color="magenta", weight=3]; 386 -> 360[label="",style="dashed", color="red", weight=0]; 386[label="vwx300 == vwx400",fontsize=16,color="magenta"];386 -> 531[label="",style="dashed", color="magenta", weight=3]; 386 -> 532[label="",style="dashed", color="magenta", weight=3]; 387 -> 361[label="",style="dashed", color="red", weight=0]; 387[label="vwx300 == vwx400",fontsize=16,color="magenta"];387 -> 533[label="",style="dashed", color="magenta", weight=3]; 387 -> 534[label="",style="dashed", color="magenta", weight=3]; 388 -> 362[label="",style="dashed", color="red", weight=0]; 388[label="vwx300 == vwx400",fontsize=16,color="magenta"];388 -> 535[label="",style="dashed", color="magenta", weight=3]; 388 -> 536[label="",style="dashed", color="magenta", weight=3]; 389 -> 363[label="",style="dashed", color="red", weight=0]; 389[label="vwx300 == vwx400",fontsize=16,color="magenta"];389 -> 537[label="",style="dashed", color="magenta", weight=3]; 389 -> 538[label="",style="dashed", color="magenta", weight=3]; 390[label="compare2 (Just vwx36) (Just vwx37) False",fontsize=16,color="black",shape="box"];390 -> 539[label="",style="solid", color="black", weight=3]; 391[label="compare2 (Just vwx36) (Just vwx37) True",fontsize=16,color="black",shape="box"];391 -> 540[label="",style="solid", color="black", weight=3]; 392[label="compare1 False True True",fontsize=16,color="black",shape="box"];392 -> 541[label="",style="solid", color="black", weight=3]; 393[label="compare1 True False False",fontsize=16,color="black",shape="box"];393 -> 542[label="",style="solid", color="black", weight=3]; 394 -> 350[label="",style="dashed", color="red", weight=0]; 394[label="vwx300 == vwx400",fontsize=16,color="magenta"];394 -> 543[label="",style="dashed", color="magenta", weight=3]; 394 -> 544[label="",style="dashed", color="magenta", weight=3]; 395 -> 351[label="",style="dashed", color="red", weight=0]; 395[label="vwx300 == vwx400",fontsize=16,color="magenta"];395 -> 545[label="",style="dashed", color="magenta", weight=3]; 395 -> 546[label="",style="dashed", color="magenta", weight=3]; 396 -> 352[label="",style="dashed", color="red", weight=0]; 396[label="vwx300 == vwx400",fontsize=16,color="magenta"];396 -> 547[label="",style="dashed", color="magenta", weight=3]; 396 -> 548[label="",style="dashed", color="magenta", weight=3]; 397 -> 353[label="",style="dashed", color="red", weight=0]; 397[label="vwx300 == vwx400",fontsize=16,color="magenta"];397 -> 549[label="",style="dashed", color="magenta", weight=3]; 397 -> 550[label="",style="dashed", color="magenta", weight=3]; 398 -> 354[label="",style="dashed", color="red", weight=0]; 398[label="vwx300 == vwx400",fontsize=16,color="magenta"];398 -> 551[label="",style="dashed", color="magenta", weight=3]; 398 -> 552[label="",style="dashed", color="magenta", weight=3]; 399 -> 355[label="",style="dashed", color="red", weight=0]; 399[label="vwx300 == vwx400",fontsize=16,color="magenta"];399 -> 553[label="",style="dashed", color="magenta", weight=3]; 399 -> 554[label="",style="dashed", color="magenta", weight=3]; 400 -> 356[label="",style="dashed", color="red", weight=0]; 400[label="vwx300 == vwx400",fontsize=16,color="magenta"];400 -> 555[label="",style="dashed", color="magenta", weight=3]; 400 -> 556[label="",style="dashed", color="magenta", weight=3]; 401 -> 357[label="",style="dashed", color="red", weight=0]; 401[label="vwx300 == vwx400",fontsize=16,color="magenta"];401 -> 557[label="",style="dashed", color="magenta", weight=3]; 401 -> 558[label="",style="dashed", color="magenta", weight=3]; 402 -> 358[label="",style="dashed", color="red", weight=0]; 402[label="vwx300 == vwx400",fontsize=16,color="magenta"];402 -> 559[label="",style="dashed", color="magenta", weight=3]; 402 -> 560[label="",style="dashed", color="magenta", weight=3]; 403 -> 359[label="",style="dashed", color="red", weight=0]; 403[label="vwx300 == vwx400",fontsize=16,color="magenta"];403 -> 561[label="",style="dashed", color="magenta", weight=3]; 403 -> 562[label="",style="dashed", color="magenta", weight=3]; 404 -> 360[label="",style="dashed", color="red", weight=0]; 404[label="vwx300 == vwx400",fontsize=16,color="magenta"];404 -> 563[label="",style="dashed", color="magenta", weight=3]; 404 -> 564[label="",style="dashed", color="magenta", weight=3]; 405 -> 361[label="",style="dashed", color="red", weight=0]; 405[label="vwx300 == vwx400",fontsize=16,color="magenta"];405 -> 565[label="",style="dashed", color="magenta", weight=3]; 405 -> 566[label="",style="dashed", color="magenta", weight=3]; 406 -> 362[label="",style="dashed", color="red", weight=0]; 406[label="vwx300 == vwx400",fontsize=16,color="magenta"];406 -> 567[label="",style="dashed", color="magenta", weight=3]; 406 -> 568[label="",style="dashed", color="magenta", weight=3]; 407 -> 363[label="",style="dashed", color="red", weight=0]; 407[label="vwx300 == vwx400",fontsize=16,color="magenta"];407 -> 569[label="",style="dashed", color="magenta", weight=3]; 407 -> 570[label="",style="dashed", color="magenta", weight=3]; 408[label="compare2 (Left vwx43) (Left vwx44) False",fontsize=16,color="black",shape="box"];408 -> 571[label="",style="solid", color="black", weight=3]; 409[label="compare2 (Left vwx43) (Left vwx44) True",fontsize=16,color="black",shape="box"];409 -> 572[label="",style="solid", color="black", weight=3]; 410[label="compare1 (Left vwx300) (Right vwx400) True",fontsize=16,color="black",shape="box"];410 -> 573[label="",style="solid", color="black", weight=3]; 411[label="compare1 (Right vwx300) (Left vwx400) False",fontsize=16,color="black",shape="box"];411 -> 574[label="",style="solid", color="black", weight=3]; 412 -> 350[label="",style="dashed", color="red", weight=0]; 412[label="vwx300 == vwx400",fontsize=16,color="magenta"];412 -> 575[label="",style="dashed", color="magenta", weight=3]; 412 -> 576[label="",style="dashed", color="magenta", weight=3]; 413 -> 351[label="",style="dashed", color="red", weight=0]; 413[label="vwx300 == vwx400",fontsize=16,color="magenta"];413 -> 577[label="",style="dashed", color="magenta", weight=3]; 413 -> 578[label="",style="dashed", color="magenta", weight=3]; 414 -> 352[label="",style="dashed", color="red", weight=0]; 414[label="vwx300 == vwx400",fontsize=16,color="magenta"];414 -> 579[label="",style="dashed", color="magenta", weight=3]; 414 -> 580[label="",style="dashed", color="magenta", weight=3]; 415 -> 353[label="",style="dashed", color="red", weight=0]; 415[label="vwx300 == vwx400",fontsize=16,color="magenta"];415 -> 581[label="",style="dashed", color="magenta", weight=3]; 415 -> 582[label="",style="dashed", color="magenta", weight=3]; 416 -> 354[label="",style="dashed", color="red", weight=0]; 416[label="vwx300 == vwx400",fontsize=16,color="magenta"];416 -> 583[label="",style="dashed", color="magenta", weight=3]; 416 -> 584[label="",style="dashed", color="magenta", weight=3]; 417 -> 355[label="",style="dashed", color="red", weight=0]; 417[label="vwx300 == vwx400",fontsize=16,color="magenta"];417 -> 585[label="",style="dashed", color="magenta", weight=3]; 417 -> 586[label="",style="dashed", color="magenta", weight=3]; 418 -> 356[label="",style="dashed", color="red", weight=0]; 418[label="vwx300 == vwx400",fontsize=16,color="magenta"];418 -> 587[label="",style="dashed", color="magenta", weight=3]; 418 -> 588[label="",style="dashed", color="magenta", weight=3]; 419 -> 357[label="",style="dashed", color="red", weight=0]; 419[label="vwx300 == vwx400",fontsize=16,color="magenta"];419 -> 589[label="",style="dashed", color="magenta", weight=3]; 419 -> 590[label="",style="dashed", color="magenta", weight=3]; 420 -> 358[label="",style="dashed", color="red", weight=0]; 420[label="vwx300 == vwx400",fontsize=16,color="magenta"];420 -> 591[label="",style="dashed", color="magenta", weight=3]; 420 -> 592[label="",style="dashed", color="magenta", weight=3]; 421 -> 359[label="",style="dashed", color="red", weight=0]; 421[label="vwx300 == vwx400",fontsize=16,color="magenta"];421 -> 593[label="",style="dashed", color="magenta", weight=3]; 421 -> 594[label="",style="dashed", color="magenta", weight=3]; 422 -> 360[label="",style="dashed", color="red", weight=0]; 422[label="vwx300 == vwx400",fontsize=16,color="magenta"];422 -> 595[label="",style="dashed", color="magenta", weight=3]; 422 -> 596[label="",style="dashed", color="magenta", weight=3]; 423 -> 361[label="",style="dashed", color="red", weight=0]; 423[label="vwx300 == vwx400",fontsize=16,color="magenta"];423 -> 597[label="",style="dashed", color="magenta", weight=3]; 423 -> 598[label="",style="dashed", color="magenta", weight=3]; 424 -> 362[label="",style="dashed", color="red", weight=0]; 424[label="vwx300 == vwx400",fontsize=16,color="magenta"];424 -> 599[label="",style="dashed", color="magenta", weight=3]; 424 -> 600[label="",style="dashed", color="magenta", weight=3]; 425 -> 363[label="",style="dashed", color="red", weight=0]; 425[label="vwx300 == vwx400",fontsize=16,color="magenta"];425 -> 601[label="",style="dashed", color="magenta", weight=3]; 425 -> 602[label="",style="dashed", color="magenta", weight=3]; 426[label="compare2 (Right vwx50) (Right vwx51) False",fontsize=16,color="black",shape="box"];426 -> 603[label="",style="solid", color="black", weight=3]; 427[label="compare2 (Right vwx50) (Right vwx51) True",fontsize=16,color="black",shape="box"];427 -> 604[label="",style="solid", color="black", weight=3]; 785 -> 782[label="",style="dashed", color="red", weight=0]; 785[label="vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];785 -> 823[label="",style="dashed", color="magenta", weight=3]; 785 -> 824[label="",style="dashed", color="magenta", weight=3]; 786[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2915[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];786 -> 2915[label="",style="solid", color="blue", weight=9]; 2915 -> 825[label="",style="solid", color="blue", weight=3]; 2916[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];786 -> 2916[label="",style="solid", color="blue", weight=9]; 2916 -> 826[label="",style="solid", color="blue", weight=3]; 2917[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];786 -> 2917[label="",style="solid", color="blue", weight=9]; 2917 -> 827[label="",style="solid", color="blue", weight=3]; 2918[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];786 -> 2918[label="",style="solid", color="blue", weight=9]; 2918 -> 828[label="",style="solid", color="blue", weight=3]; 2919[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];786 -> 2919[label="",style="solid", color="blue", weight=9]; 2919 -> 829[label="",style="solid", color="blue", weight=3]; 2920[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];786 -> 2920[label="",style="solid", color="blue", weight=9]; 2920 -> 830[label="",style="solid", color="blue", weight=3]; 2921[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];786 -> 2921[label="",style="solid", color="blue", weight=9]; 2921 -> 831[label="",style="solid", color="blue", weight=3]; 2922[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];786 -> 2922[label="",style="solid", color="blue", weight=9]; 2922 -> 832[label="",style="solid", color="blue", weight=3]; 2923[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];786 -> 2923[label="",style="solid", color="blue", weight=9]; 2923 -> 833[label="",style="solid", color="blue", weight=3]; 2924[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];786 -> 2924[label="",style="solid", color="blue", weight=9]; 2924 -> 834[label="",style="solid", color="blue", weight=3]; 2925[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];786 -> 2925[label="",style="solid", color="blue", weight=9]; 2925 -> 835[label="",style="solid", color="blue", weight=3]; 2926[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];786 -> 2926[label="",style="solid", color="blue", weight=9]; 2926 -> 836[label="",style="solid", color="blue", weight=3]; 2927[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];786 -> 2927[label="",style="solid", color="blue", weight=9]; 2927 -> 837[label="",style="solid", color="blue", weight=3]; 2928[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];786 -> 2928[label="",style="solid", color="blue", weight=9]; 2928 -> 838[label="",style="solid", color="blue", weight=3]; 766[label="compare2 (vwx61,vwx62,vwx63) (vwx64,vwx65,vwx66) False",fontsize=16,color="black",shape="box"];766 -> 839[label="",style="solid", color="black", weight=3]; 767[label="compare2 (vwx61,vwx62,vwx63) (vwx64,vwx65,vwx66) True",fontsize=16,color="black",shape="box"];767 -> 840[label="",style="solid", color="black", weight=3]; 444 -> 204[label="",style="dashed", color="red", weight=0]; 444[label="primCmpNat vwx3000 vwx4000",fontsize=16,color="magenta"];444 -> 635[label="",style="dashed", color="magenta", weight=3]; 444 -> 636[label="",style="dashed", color="magenta", weight=3]; 445[label="GT",fontsize=16,color="green",shape="box"];446[label="LT",fontsize=16,color="green",shape="box"];447[label="EQ",fontsize=16,color="green",shape="box"];448[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];448 -> 637[label="",style="solid", color="black", weight=3]; 449[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];449 -> 638[label="",style="solid", color="black", weight=3]; 450[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];450 -> 639[label="",style="solid", color="black", weight=3]; 451[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];451 -> 640[label="",style="solid", color="black", weight=3]; 452[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];452 -> 641[label="",style="solid", color="black", weight=3]; 453[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];453 -> 642[label="",style="solid", color="black", weight=3]; 454[label="Zero",fontsize=16,color="green",shape="box"];455[label="Succ vwx4000",fontsize=16,color="green",shape="box"];456[label="Succ vwx4000",fontsize=16,color="green",shape="box"];457[label="Zero",fontsize=16,color="green",shape="box"];458 -> 226[label="",style="dashed", color="red", weight=0]; 458[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];458 -> 643[label="",style="dashed", color="magenta", weight=3]; 458 -> 644[label="",style="dashed", color="magenta", weight=3]; 459 -> 226[label="",style="dashed", color="red", weight=0]; 459[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];459 -> 645[label="",style="dashed", color="magenta", weight=3]; 459 -> 646[label="",style="dashed", color="magenta", weight=3]; 460 -> 226[label="",style="dashed", color="red", weight=0]; 460[label="vwx300 * Pos vwx4010",fontsize=16,color="magenta"];460 -> 647[label="",style="dashed", color="magenta", weight=3]; 460 -> 648[label="",style="dashed", color="magenta", weight=3]; 461 -> 226[label="",style="dashed", color="red", weight=0]; 461[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];461 -> 649[label="",style="dashed", color="magenta", weight=3]; 461 -> 650[label="",style="dashed", color="magenta", weight=3]; 462 -> 226[label="",style="dashed", color="red", weight=0]; 462[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];462 -> 651[label="",style="dashed", color="magenta", weight=3]; 462 -> 652[label="",style="dashed", color="magenta", weight=3]; 463 -> 226[label="",style="dashed", color="red", weight=0]; 463[label="Pos vwx3010 * vwx400",fontsize=16,color="magenta"];463 -> 653[label="",style="dashed", color="magenta", weight=3]; 463 -> 654[label="",style="dashed", color="magenta", weight=3]; 464 -> 226[label="",style="dashed", color="red", weight=0]; 464[label="vwx300 * Neg vwx4010",fontsize=16,color="magenta"];464 -> 655[label="",style="dashed", color="magenta", weight=3]; 464 -> 656[label="",style="dashed", color="magenta", weight=3]; 465 -> 226[label="",style="dashed", color="red", weight=0]; 465[label="Neg vwx3010 * vwx400",fontsize=16,color="magenta"];465 -> 657[label="",style="dashed", color="magenta", weight=3]; 465 -> 658[label="",style="dashed", color="magenta", weight=3]; 466[label="Integer (primMulInt vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];466 -> 659[label="",style="dashed", color="green", weight=3]; 467[label="primMulInt (Pos vwx3000) (Pos vwx4010)",fontsize=16,color="black",shape="box"];467 -> 660[label="",style="solid", color="black", weight=3]; 468[label="primMulInt (Pos vwx3000) (Neg vwx4010)",fontsize=16,color="black",shape="box"];468 -> 661[label="",style="solid", color="black", weight=3]; 469[label="primMulInt (Neg vwx3000) (Pos vwx4010)",fontsize=16,color="black",shape="box"];469 -> 662[label="",style="solid", color="black", weight=3]; 470[label="primMulInt (Neg vwx3000) (Neg vwx4010)",fontsize=16,color="black",shape="box"];470 -> 663[label="",style="solid", color="black", weight=3]; 791 -> 350[label="",style="dashed", color="red", weight=0]; 791[label="vwx301 == vwx401",fontsize=16,color="magenta"];791 -> 858[label="",style="dashed", color="magenta", weight=3]; 791 -> 859[label="",style="dashed", color="magenta", weight=3]; 792 -> 351[label="",style="dashed", color="red", weight=0]; 792[label="vwx301 == vwx401",fontsize=16,color="magenta"];792 -> 860[label="",style="dashed", color="magenta", weight=3]; 792 -> 861[label="",style="dashed", color="magenta", weight=3]; 793 -> 352[label="",style="dashed", color="red", weight=0]; 793[label="vwx301 == vwx401",fontsize=16,color="magenta"];793 -> 862[label="",style="dashed", color="magenta", weight=3]; 793 -> 863[label="",style="dashed", color="magenta", weight=3]; 794 -> 353[label="",style="dashed", color="red", weight=0]; 794[label="vwx301 == vwx401",fontsize=16,color="magenta"];794 -> 864[label="",style="dashed", color="magenta", weight=3]; 794 -> 865[label="",style="dashed", color="magenta", weight=3]; 795 -> 354[label="",style="dashed", color="red", weight=0]; 795[label="vwx301 == vwx401",fontsize=16,color="magenta"];795 -> 866[label="",style="dashed", color="magenta", weight=3]; 795 -> 867[label="",style="dashed", color="magenta", weight=3]; 796 -> 355[label="",style="dashed", color="red", weight=0]; 796[label="vwx301 == vwx401",fontsize=16,color="magenta"];796 -> 868[label="",style="dashed", color="magenta", weight=3]; 796 -> 869[label="",style="dashed", color="magenta", weight=3]; 797 -> 356[label="",style="dashed", color="red", weight=0]; 797[label="vwx301 == vwx401",fontsize=16,color="magenta"];797 -> 870[label="",style="dashed", color="magenta", weight=3]; 797 -> 871[label="",style="dashed", color="magenta", weight=3]; 798 -> 357[label="",style="dashed", color="red", weight=0]; 798[label="vwx301 == vwx401",fontsize=16,color="magenta"];798 -> 872[label="",style="dashed", color="magenta", weight=3]; 798 -> 873[label="",style="dashed", color="magenta", weight=3]; 799 -> 358[label="",style="dashed", color="red", weight=0]; 799[label="vwx301 == vwx401",fontsize=16,color="magenta"];799 -> 874[label="",style="dashed", color="magenta", weight=3]; 799 -> 875[label="",style="dashed", color="magenta", weight=3]; 800 -> 359[label="",style="dashed", color="red", weight=0]; 800[label="vwx301 == vwx401",fontsize=16,color="magenta"];800 -> 876[label="",style="dashed", color="magenta", weight=3]; 800 -> 877[label="",style="dashed", color="magenta", weight=3]; 801 -> 360[label="",style="dashed", color="red", weight=0]; 801[label="vwx301 == vwx401",fontsize=16,color="magenta"];801 -> 878[label="",style="dashed", color="magenta", weight=3]; 801 -> 879[label="",style="dashed", color="magenta", weight=3]; 802 -> 361[label="",style="dashed", color="red", weight=0]; 802[label="vwx301 == vwx401",fontsize=16,color="magenta"];802 -> 880[label="",style="dashed", color="magenta", weight=3]; 802 -> 881[label="",style="dashed", color="magenta", weight=3]; 803 -> 362[label="",style="dashed", color="red", weight=0]; 803[label="vwx301 == vwx401",fontsize=16,color="magenta"];803 -> 882[label="",style="dashed", color="magenta", weight=3]; 803 -> 883[label="",style="dashed", color="magenta", weight=3]; 804 -> 363[label="",style="dashed", color="red", weight=0]; 804[label="vwx301 == vwx401",fontsize=16,color="magenta"];804 -> 884[label="",style="dashed", color="magenta", weight=3]; 804 -> 885[label="",style="dashed", color="magenta", weight=3]; 805 -> 350[label="",style="dashed", color="red", weight=0]; 805[label="vwx300 == vwx400",fontsize=16,color="magenta"];806 -> 351[label="",style="dashed", color="red", weight=0]; 806[label="vwx300 == vwx400",fontsize=16,color="magenta"];807 -> 352[label="",style="dashed", color="red", weight=0]; 807[label="vwx300 == vwx400",fontsize=16,color="magenta"];808 -> 353[label="",style="dashed", color="red", weight=0]; 808[label="vwx300 == vwx400",fontsize=16,color="magenta"];809 -> 354[label="",style="dashed", color="red", weight=0]; 809[label="vwx300 == vwx400",fontsize=16,color="magenta"];810 -> 355[label="",style="dashed", color="red", weight=0]; 810[label="vwx300 == vwx400",fontsize=16,color="magenta"];811 -> 356[label="",style="dashed", color="red", weight=0]; 811[label="vwx300 == vwx400",fontsize=16,color="magenta"];812 -> 357[label="",style="dashed", color="red", weight=0]; 812[label="vwx300 == vwx400",fontsize=16,color="magenta"];813 -> 358[label="",style="dashed", color="red", weight=0]; 813[label="vwx300 == vwx400",fontsize=16,color="magenta"];814 -> 359[label="",style="dashed", color="red", weight=0]; 814[label="vwx300 == vwx400",fontsize=16,color="magenta"];815 -> 360[label="",style="dashed", color="red", weight=0]; 815[label="vwx300 == vwx400",fontsize=16,color="magenta"];816 -> 361[label="",style="dashed", color="red", weight=0]; 816[label="vwx300 == vwx400",fontsize=16,color="magenta"];817 -> 362[label="",style="dashed", color="red", weight=0]; 817[label="vwx300 == vwx400",fontsize=16,color="magenta"];818 -> 363[label="",style="dashed", color="red", weight=0]; 818[label="vwx300 == vwx400",fontsize=16,color="magenta"];819[label="False && vwx92",fontsize=16,color="black",shape="box"];819 -> 886[label="",style="solid", color="black", weight=3]; 820[label="True && vwx92",fontsize=16,color="black",shape="box"];820 -> 887[label="",style="solid", color="black", weight=3]; 821[label="compare1 (vwx74,vwx75) (vwx76,vwx77) ((vwx74,vwx75) <= (vwx76,vwx77))",fontsize=16,color="black",shape="box"];821 -> 888[label="",style="solid", color="black", weight=3]; 822[label="EQ",fontsize=16,color="green",shape="box"];493[label="vwx300",fontsize=16,color="green",shape="box"];494[label="Pos vwx4010",fontsize=16,color="green",shape="box"];495[label="Pos vwx3010",fontsize=16,color="green",shape="box"];496[label="vwx400",fontsize=16,color="green",shape="box"];497[label="vwx300",fontsize=16,color="green",shape="box"];498[label="Pos vwx4010",fontsize=16,color="green",shape="box"];499[label="Neg vwx3010",fontsize=16,color="green",shape="box"];500[label="vwx400",fontsize=16,color="green",shape="box"];501[label="vwx300",fontsize=16,color="green",shape="box"];502[label="Neg vwx4010",fontsize=16,color="green",shape="box"];503[label="Pos vwx3010",fontsize=16,color="green",shape="box"];504[label="vwx400",fontsize=16,color="green",shape="box"];505[label="vwx300",fontsize=16,color="green",shape="box"];506[label="Neg vwx4010",fontsize=16,color="green",shape="box"];507[label="Neg vwx3010",fontsize=16,color="green",shape="box"];508[label="vwx400",fontsize=16,color="green",shape="box"];509[label="LT",fontsize=16,color="green",shape="box"];510[label="compare0 (Just vwx300) Nothing otherwise",fontsize=16,color="black",shape="box"];510 -> 743[label="",style="solid", color="black", weight=3]; 511[label="vwx300",fontsize=16,color="green",shape="box"];512[label="vwx400",fontsize=16,color="green",shape="box"];350[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2929[label="vwx300/False",fontsize=10,color="white",style="solid",shape="box"];350 -> 2929[label="",style="solid", color="burlywood", weight=9]; 2929 -> 471[label="",style="solid", color="burlywood", weight=3]; 2930[label="vwx300/True",fontsize=10,color="white",style="solid",shape="box"];350 -> 2930[label="",style="solid", color="burlywood", weight=9]; 2930 -> 472[label="",style="solid", color="burlywood", weight=3]; 513[label="vwx300",fontsize=16,color="green",shape="box"];514[label="vwx400",fontsize=16,color="green",shape="box"];351[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2931[label="vwx300/LT",fontsize=10,color="white",style="solid",shape="box"];351 -> 2931[label="",style="solid", color="burlywood", weight=9]; 2931 -> 473[label="",style="solid", color="burlywood", weight=3]; 2932[label="vwx300/EQ",fontsize=10,color="white",style="solid",shape="box"];351 -> 2932[label="",style="solid", color="burlywood", weight=9]; 2932 -> 474[label="",style="solid", color="burlywood", weight=3]; 2933[label="vwx300/GT",fontsize=10,color="white",style="solid",shape="box"];351 -> 2933[label="",style="solid", color="burlywood", weight=9]; 2933 -> 475[label="",style="solid", color="burlywood", weight=3]; 515[label="vwx300",fontsize=16,color="green",shape="box"];516[label="vwx400",fontsize=16,color="green",shape="box"];352[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2934[label="vwx300/Integer vwx3000",fontsize=10,color="white",style="solid",shape="box"];352 -> 2934[label="",style="solid", color="burlywood", weight=9]; 2934 -> 476[label="",style="solid", color="burlywood", weight=3]; 517[label="vwx300",fontsize=16,color="green",shape="box"];518[label="vwx400",fontsize=16,color="green",shape="box"];353[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];353 -> 477[label="",style="solid", color="black", weight=3]; 519[label="vwx300",fontsize=16,color="green",shape="box"];520[label="vwx400",fontsize=16,color="green",shape="box"];354[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2935[label="vwx300/vwx3000 : vwx3001",fontsize=10,color="white",style="solid",shape="box"];354 -> 2935[label="",style="solid", color="burlywood", weight=9]; 2935 -> 478[label="",style="solid", color="burlywood", weight=3]; 2936[label="vwx300/[]",fontsize=10,color="white",style="solid",shape="box"];354 -> 2936[label="",style="solid", color="burlywood", weight=9]; 2936 -> 479[label="",style="solid", color="burlywood", weight=3]; 521[label="vwx300",fontsize=16,color="green",shape="box"];522[label="vwx400",fontsize=16,color="green",shape="box"];355[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2937[label="vwx300/Left vwx3000",fontsize=10,color="white",style="solid",shape="box"];355 -> 2937[label="",style="solid", color="burlywood", weight=9]; 2937 -> 480[label="",style="solid", color="burlywood", weight=3]; 2938[label="vwx300/Right vwx3000",fontsize=10,color="white",style="solid",shape="box"];355 -> 2938[label="",style="solid", color="burlywood", weight=9]; 2938 -> 481[label="",style="solid", color="burlywood", weight=3]; 523[label="vwx300",fontsize=16,color="green",shape="box"];524[label="vwx400",fontsize=16,color="green",shape="box"];356[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2939[label="vwx300/()",fontsize=10,color="white",style="solid",shape="box"];356 -> 2939[label="",style="solid", color="burlywood", weight=9]; 2939 -> 482[label="",style="solid", color="burlywood", weight=3]; 525[label="vwx300",fontsize=16,color="green",shape="box"];526[label="vwx400",fontsize=16,color="green",shape="box"];357[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2940[label="vwx300/vwx3000 :% vwx3001",fontsize=10,color="white",style="solid",shape="box"];357 -> 2940[label="",style="solid", color="burlywood", weight=9]; 2940 -> 483[label="",style="solid", color="burlywood", weight=3]; 527[label="vwx300",fontsize=16,color="green",shape="box"];528[label="vwx400",fontsize=16,color="green",shape="box"];358[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2941[label="vwx300/(vwx3000,vwx3001)",fontsize=10,color="white",style="solid",shape="box"];358 -> 2941[label="",style="solid", color="burlywood", weight=9]; 2941 -> 484[label="",style="solid", color="burlywood", weight=3]; 529[label="vwx300",fontsize=16,color="green",shape="box"];530[label="vwx400",fontsize=16,color="green",shape="box"];359[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2942[label="vwx300/Nothing",fontsize=10,color="white",style="solid",shape="box"];359 -> 2942[label="",style="solid", color="burlywood", weight=9]; 2942 -> 485[label="",style="solid", color="burlywood", weight=3]; 2943[label="vwx300/Just vwx3000",fontsize=10,color="white",style="solid",shape="box"];359 -> 2943[label="",style="solid", color="burlywood", weight=9]; 2943 -> 486[label="",style="solid", color="burlywood", weight=3]; 531[label="vwx300",fontsize=16,color="green",shape="box"];532[label="vwx400",fontsize=16,color="green",shape="box"];360[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];360 -> 487[label="",style="solid", color="black", weight=3]; 533[label="vwx300",fontsize=16,color="green",shape="box"];534[label="vwx400",fontsize=16,color="green",shape="box"];361[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];361 -> 488[label="",style="solid", color="black", weight=3]; 535[label="vwx300",fontsize=16,color="green",shape="box"];536[label="vwx400",fontsize=16,color="green",shape="box"];362[label="vwx300 == vwx400",fontsize=16,color="burlywood",shape="triangle"];2944[label="vwx300/(vwx3000,vwx3001,vwx3002)",fontsize=10,color="white",style="solid",shape="box"];362 -> 2944[label="",style="solid", color="burlywood", weight=9]; 2944 -> 489[label="",style="solid", color="burlywood", weight=3]; 537[label="vwx300",fontsize=16,color="green",shape="box"];538[label="vwx400",fontsize=16,color="green",shape="box"];363[label="vwx300 == vwx400",fontsize=16,color="black",shape="triangle"];363 -> 490[label="",style="solid", color="black", weight=3]; 539 -> 851[label="",style="dashed", color="red", weight=0]; 539[label="compare1 (Just vwx36) (Just vwx37) (Just vwx36 <= Just vwx37)",fontsize=16,color="magenta"];539 -> 852[label="",style="dashed", color="magenta", weight=3]; 539 -> 853[label="",style="dashed", color="magenta", weight=3]; 539 -> 854[label="",style="dashed", color="magenta", weight=3]; 540[label="EQ",fontsize=16,color="green",shape="box"];541[label="LT",fontsize=16,color="green",shape="box"];542[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];542 -> 745[label="",style="solid", color="black", weight=3]; 543[label="vwx300",fontsize=16,color="green",shape="box"];544[label="vwx400",fontsize=16,color="green",shape="box"];545[label="vwx300",fontsize=16,color="green",shape="box"];546[label="vwx400",fontsize=16,color="green",shape="box"];547[label="vwx300",fontsize=16,color="green",shape="box"];548[label="vwx400",fontsize=16,color="green",shape="box"];549[label="vwx300",fontsize=16,color="green",shape="box"];550[label="vwx400",fontsize=16,color="green",shape="box"];551[label="vwx300",fontsize=16,color="green",shape="box"];552[label="vwx400",fontsize=16,color="green",shape="box"];553[label="vwx300",fontsize=16,color="green",shape="box"];554[label="vwx400",fontsize=16,color="green",shape="box"];555[label="vwx300",fontsize=16,color="green",shape="box"];556[label="vwx400",fontsize=16,color="green",shape="box"];557[label="vwx300",fontsize=16,color="green",shape="box"];558[label="vwx400",fontsize=16,color="green",shape="box"];559[label="vwx300",fontsize=16,color="green",shape="box"];560[label="vwx400",fontsize=16,color="green",shape="box"];561[label="vwx300",fontsize=16,color="green",shape="box"];562[label="vwx400",fontsize=16,color="green",shape="box"];563[label="vwx300",fontsize=16,color="green",shape="box"];564[label="vwx400",fontsize=16,color="green",shape="box"];565[label="vwx300",fontsize=16,color="green",shape="box"];566[label="vwx400",fontsize=16,color="green",shape="box"];567[label="vwx300",fontsize=16,color="green",shape="box"];568[label="vwx400",fontsize=16,color="green",shape="box"];569[label="vwx300",fontsize=16,color="green",shape="box"];570[label="vwx400",fontsize=16,color="green",shape="box"];571 -> 950[label="",style="dashed", color="red", weight=0]; 571[label="compare1 (Left vwx43) (Left vwx44) (Left vwx43 <= Left vwx44)",fontsize=16,color="magenta"];571 -> 951[label="",style="dashed", color="magenta", weight=3]; 571 -> 952[label="",style="dashed", color="magenta", weight=3]; 571 -> 953[label="",style="dashed", color="magenta", weight=3]; 572[label="EQ",fontsize=16,color="green",shape="box"];573[label="LT",fontsize=16,color="green",shape="box"];574[label="compare0 (Right vwx300) (Left vwx400) otherwise",fontsize=16,color="black",shape="box"];574 -> 747[label="",style="solid", color="black", weight=3]; 575[label="vwx300",fontsize=16,color="green",shape="box"];576[label="vwx400",fontsize=16,color="green",shape="box"];577[label="vwx300",fontsize=16,color="green",shape="box"];578[label="vwx400",fontsize=16,color="green",shape="box"];579[label="vwx300",fontsize=16,color="green",shape="box"];580[label="vwx400",fontsize=16,color="green",shape="box"];581[label="vwx300",fontsize=16,color="green",shape="box"];582[label="vwx400",fontsize=16,color="green",shape="box"];583[label="vwx300",fontsize=16,color="green",shape="box"];584[label="vwx400",fontsize=16,color="green",shape="box"];585[label="vwx300",fontsize=16,color="green",shape="box"];586[label="vwx400",fontsize=16,color="green",shape="box"];587[label="vwx300",fontsize=16,color="green",shape="box"];588[label="vwx400",fontsize=16,color="green",shape="box"];589[label="vwx300",fontsize=16,color="green",shape="box"];590[label="vwx400",fontsize=16,color="green",shape="box"];591[label="vwx300",fontsize=16,color="green",shape="box"];592[label="vwx400",fontsize=16,color="green",shape="box"];593[label="vwx300",fontsize=16,color="green",shape="box"];594[label="vwx400",fontsize=16,color="green",shape="box"];595[label="vwx300",fontsize=16,color="green",shape="box"];596[label="vwx400",fontsize=16,color="green",shape="box"];597[label="vwx300",fontsize=16,color="green",shape="box"];598[label="vwx400",fontsize=16,color="green",shape="box"];599[label="vwx300",fontsize=16,color="green",shape="box"];600[label="vwx400",fontsize=16,color="green",shape="box"];601[label="vwx300",fontsize=16,color="green",shape="box"];602[label="vwx400",fontsize=16,color="green",shape="box"];603 -> 963[label="",style="dashed", color="red", weight=0]; 603[label="compare1 (Right vwx50) (Right vwx51) (Right vwx50 <= Right vwx51)",fontsize=16,color="magenta"];603 -> 964[label="",style="dashed", color="magenta", weight=3]; 603 -> 965[label="",style="dashed", color="magenta", weight=3]; 603 -> 966[label="",style="dashed", color="magenta", weight=3]; 604[label="EQ",fontsize=16,color="green",shape="box"];823[label="vwx302 == vwx402",fontsize=16,color="blue",shape="box"];2945[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];823 -> 2945[label="",style="solid", color="blue", weight=9]; 2945 -> 889[label="",style="solid", color="blue", weight=3]; 2946[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];823 -> 2946[label="",style="solid", color="blue", weight=9]; 2946 -> 890[label="",style="solid", color="blue", weight=3]; 2947[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];823 -> 2947[label="",style="solid", color="blue", weight=9]; 2947 -> 891[label="",style="solid", color="blue", weight=3]; 2948[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];823 -> 2948[label="",style="solid", color="blue", weight=9]; 2948 -> 892[label="",style="solid", color="blue", weight=3]; 2949[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];823 -> 2949[label="",style="solid", color="blue", weight=9]; 2949 -> 893[label="",style="solid", color="blue", weight=3]; 2950[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];823 -> 2950[label="",style="solid", color="blue", weight=9]; 2950 -> 894[label="",style="solid", color="blue", weight=3]; 2951[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];823 -> 2951[label="",style="solid", color="blue", weight=9]; 2951 -> 895[label="",style="solid", color="blue", weight=3]; 2952[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];823 -> 2952[label="",style="solid", color="blue", weight=9]; 2952 -> 896[label="",style="solid", color="blue", weight=3]; 2953[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];823 -> 2953[label="",style="solid", color="blue", weight=9]; 2953 -> 897[label="",style="solid", color="blue", weight=3]; 2954[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];823 -> 2954[label="",style="solid", color="blue", weight=9]; 2954 -> 898[label="",style="solid", color="blue", weight=3]; 2955[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];823 -> 2955[label="",style="solid", color="blue", weight=9]; 2955 -> 899[label="",style="solid", color="blue", weight=3]; 2956[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];823 -> 2956[label="",style="solid", color="blue", weight=9]; 2956 -> 900[label="",style="solid", color="blue", weight=3]; 2957[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];823 -> 2957[label="",style="solid", color="blue", weight=9]; 2957 -> 901[label="",style="solid", color="blue", weight=3]; 2958[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];823 -> 2958[label="",style="solid", color="blue", weight=9]; 2958 -> 902[label="",style="solid", color="blue", weight=3]; 824[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];2959[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2959[label="",style="solid", color="blue", weight=9]; 2959 -> 903[label="",style="solid", color="blue", weight=3]; 2960[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2960[label="",style="solid", color="blue", weight=9]; 2960 -> 904[label="",style="solid", color="blue", weight=3]; 2961[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2961[label="",style="solid", color="blue", weight=9]; 2961 -> 905[label="",style="solid", color="blue", weight=3]; 2962[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2962[label="",style="solid", color="blue", weight=9]; 2962 -> 906[label="",style="solid", color="blue", weight=3]; 2963[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2963[label="",style="solid", color="blue", weight=9]; 2963 -> 907[label="",style="solid", color="blue", weight=3]; 2964[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2964[label="",style="solid", color="blue", weight=9]; 2964 -> 908[label="",style="solid", color="blue", weight=3]; 2965[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2965[label="",style="solid", color="blue", weight=9]; 2965 -> 909[label="",style="solid", color="blue", weight=3]; 2966[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2966[label="",style="solid", color="blue", weight=9]; 2966 -> 910[label="",style="solid", color="blue", weight=3]; 2967[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2967[label="",style="solid", color="blue", weight=9]; 2967 -> 911[label="",style="solid", color="blue", weight=3]; 2968[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2968[label="",style="solid", color="blue", weight=9]; 2968 -> 912[label="",style="solid", color="blue", weight=3]; 2969[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2969[label="",style="solid", color="blue", weight=9]; 2969 -> 913[label="",style="solid", color="blue", weight=3]; 2970[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2970[label="",style="solid", color="blue", weight=9]; 2970 -> 914[label="",style="solid", color="blue", weight=3]; 2971[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2971[label="",style="solid", color="blue", weight=9]; 2971 -> 915[label="",style="solid", color="blue", weight=3]; 2972[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];824 -> 2972[label="",style="solid", color="blue", weight=9]; 2972 -> 916[label="",style="solid", color="blue", weight=3]; 825 -> 350[label="",style="dashed", color="red", weight=0]; 825[label="vwx300 == vwx400",fontsize=16,color="magenta"];825 -> 917[label="",style="dashed", color="magenta", weight=3]; 825 -> 918[label="",style="dashed", color="magenta", weight=3]; 826 -> 351[label="",style="dashed", color="red", weight=0]; 826[label="vwx300 == vwx400",fontsize=16,color="magenta"];826 -> 919[label="",style="dashed", color="magenta", weight=3]; 826 -> 920[label="",style="dashed", color="magenta", weight=3]; 827 -> 352[label="",style="dashed", color="red", weight=0]; 827[label="vwx300 == vwx400",fontsize=16,color="magenta"];827 -> 921[label="",style="dashed", color="magenta", weight=3]; 827 -> 922[label="",style="dashed", color="magenta", weight=3]; 828 -> 353[label="",style="dashed", color="red", weight=0]; 828[label="vwx300 == vwx400",fontsize=16,color="magenta"];828 -> 923[label="",style="dashed", color="magenta", weight=3]; 828 -> 924[label="",style="dashed", color="magenta", weight=3]; 829 -> 354[label="",style="dashed", color="red", weight=0]; 829[label="vwx300 == vwx400",fontsize=16,color="magenta"];829 -> 925[label="",style="dashed", color="magenta", weight=3]; 829 -> 926[label="",style="dashed", color="magenta", weight=3]; 830 -> 355[label="",style="dashed", color="red", weight=0]; 830[label="vwx300 == vwx400",fontsize=16,color="magenta"];830 -> 927[label="",style="dashed", color="magenta", weight=3]; 830 -> 928[label="",style="dashed", color="magenta", weight=3]; 831 -> 356[label="",style="dashed", color="red", weight=0]; 831[label="vwx300 == vwx400",fontsize=16,color="magenta"];831 -> 929[label="",style="dashed", color="magenta", weight=3]; 831 -> 930[label="",style="dashed", color="magenta", weight=3]; 832 -> 357[label="",style="dashed", color="red", weight=0]; 832[label="vwx300 == vwx400",fontsize=16,color="magenta"];832 -> 931[label="",style="dashed", color="magenta", weight=3]; 832 -> 932[label="",style="dashed", color="magenta", weight=3]; 833 -> 358[label="",style="dashed", color="red", weight=0]; 833[label="vwx300 == vwx400",fontsize=16,color="magenta"];833 -> 933[label="",style="dashed", color="magenta", weight=3]; 833 -> 934[label="",style="dashed", color="magenta", weight=3]; 834 -> 359[label="",style="dashed", color="red", weight=0]; 834[label="vwx300 == vwx400",fontsize=16,color="magenta"];834 -> 935[label="",style="dashed", color="magenta", weight=3]; 834 -> 936[label="",style="dashed", color="magenta", weight=3]; 835 -> 360[label="",style="dashed", color="red", weight=0]; 835[label="vwx300 == vwx400",fontsize=16,color="magenta"];835 -> 937[label="",style="dashed", color="magenta", weight=3]; 835 -> 938[label="",style="dashed", color="magenta", weight=3]; 836 -> 361[label="",style="dashed", color="red", weight=0]; 836[label="vwx300 == vwx400",fontsize=16,color="magenta"];836 -> 939[label="",style="dashed", color="magenta", weight=3]; 836 -> 940[label="",style="dashed", color="magenta", weight=3]; 837 -> 362[label="",style="dashed", color="red", weight=0]; 837[label="vwx300 == vwx400",fontsize=16,color="magenta"];837 -> 941[label="",style="dashed", color="magenta", weight=3]; 837 -> 942[label="",style="dashed", color="magenta", weight=3]; 838 -> 363[label="",style="dashed", color="red", weight=0]; 838[label="vwx300 == vwx400",fontsize=16,color="magenta"];838 -> 943[label="",style="dashed", color="magenta", weight=3]; 838 -> 944[label="",style="dashed", color="magenta", weight=3]; 839[label="compare1 (vwx61,vwx62,vwx63) (vwx64,vwx65,vwx66) ((vwx61,vwx62,vwx63) <= (vwx64,vwx65,vwx66))",fontsize=16,color="black",shape="box"];839 -> 945[label="",style="solid", color="black", weight=3]; 840[label="EQ",fontsize=16,color="green",shape="box"];635[label="vwx3000",fontsize=16,color="green",shape="box"];636[label="vwx4000",fontsize=16,color="green",shape="box"];637[label="LT",fontsize=16,color="green",shape="box"];638[label="LT",fontsize=16,color="green",shape="box"];639[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];639 -> 841[label="",style="solid", color="black", weight=3]; 640[label="LT",fontsize=16,color="green",shape="box"];641[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];641 -> 842[label="",style="solid", color="black", weight=3]; 642[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];642 -> 843[label="",style="solid", color="black", weight=3]; 643[label="vwx300",fontsize=16,color="green",shape="box"];644[label="Pos vwx4010",fontsize=16,color="green",shape="box"];645[label="Pos vwx3010",fontsize=16,color="green",shape="box"];646[label="vwx400",fontsize=16,color="green",shape="box"];647[label="vwx300",fontsize=16,color="green",shape="box"];648[label="Pos vwx4010",fontsize=16,color="green",shape="box"];649[label="Neg vwx3010",fontsize=16,color="green",shape="box"];650[label="vwx400",fontsize=16,color="green",shape="box"];651[label="vwx300",fontsize=16,color="green",shape="box"];652[label="Neg vwx4010",fontsize=16,color="green",shape="box"];653[label="Pos vwx3010",fontsize=16,color="green",shape="box"];654[label="vwx400",fontsize=16,color="green",shape="box"];655[label="vwx300",fontsize=16,color="green",shape="box"];656[label="Neg vwx4010",fontsize=16,color="green",shape="box"];657[label="Neg vwx3010",fontsize=16,color="green",shape="box"];658[label="vwx400",fontsize=16,color="green",shape="box"];659 -> 276[label="",style="dashed", color="red", weight=0]; 659[label="primMulInt vwx3000 vwx4010",fontsize=16,color="magenta"];659 -> 844[label="",style="dashed", color="magenta", weight=3]; 659 -> 845[label="",style="dashed", color="magenta", weight=3]; 660[label="Pos (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];660 -> 846[label="",style="dashed", color="green", weight=3]; 661[label="Neg (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];661 -> 847[label="",style="dashed", color="green", weight=3]; 662[label="Neg (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];662 -> 848[label="",style="dashed", color="green", weight=3]; 663[label="Pos (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];663 -> 849[label="",style="dashed", color="green", weight=3]; 858[label="vwx301",fontsize=16,color="green",shape="box"];859[label="vwx401",fontsize=16,color="green",shape="box"];860[label="vwx301",fontsize=16,color="green",shape="box"];861[label="vwx401",fontsize=16,color="green",shape="box"];862[label="vwx301",fontsize=16,color="green",shape="box"];863[label="vwx401",fontsize=16,color="green",shape="box"];864[label="vwx301",fontsize=16,color="green",shape="box"];865[label="vwx401",fontsize=16,color="green",shape="box"];866[label="vwx301",fontsize=16,color="green",shape="box"];867[label="vwx401",fontsize=16,color="green",shape="box"];868[label="vwx301",fontsize=16,color="green",shape="box"];869[label="vwx401",fontsize=16,color="green",shape="box"];870[label="vwx301",fontsize=16,color="green",shape="box"];871[label="vwx401",fontsize=16,color="green",shape="box"];872[label="vwx301",fontsize=16,color="green",shape="box"];873[label="vwx401",fontsize=16,color="green",shape="box"];874[label="vwx301",fontsize=16,color="green",shape="box"];875[label="vwx401",fontsize=16,color="green",shape="box"];876[label="vwx301",fontsize=16,color="green",shape="box"];877[label="vwx401",fontsize=16,color="green",shape="box"];878[label="vwx301",fontsize=16,color="green",shape="box"];879[label="vwx401",fontsize=16,color="green",shape="box"];880[label="vwx301",fontsize=16,color="green",shape="box"];881[label="vwx401",fontsize=16,color="green",shape="box"];882[label="vwx301",fontsize=16,color="green",shape="box"];883[label="vwx401",fontsize=16,color="green",shape="box"];884[label="vwx301",fontsize=16,color="green",shape="box"];885[label="vwx401",fontsize=16,color="green",shape="box"];886[label="False",fontsize=16,color="green",shape="box"];887[label="vwx92",fontsize=16,color="green",shape="box"];888 -> 1042[label="",style="dashed", color="red", weight=0]; 888[label="compare1 (vwx74,vwx75) (vwx76,vwx77) (vwx74 < vwx76 || vwx74 == vwx76 && vwx75 <= vwx77)",fontsize=16,color="magenta"];888 -> 1043[label="",style="dashed", color="magenta", weight=3]; 888 -> 1044[label="",style="dashed", color="magenta", weight=3]; 888 -> 1045[label="",style="dashed", color="magenta", weight=3]; 888 -> 1046[label="",style="dashed", color="magenta", weight=3]; 888 -> 1047[label="",style="dashed", color="magenta", weight=3]; 888 -> 1048[label="",style="dashed", color="magenta", weight=3]; 743[label="compare0 (Just vwx300) Nothing True",fontsize=16,color="black",shape="box"];743 -> 850[label="",style="solid", color="black", weight=3]; 471[label="False == vwx400",fontsize=16,color="burlywood",shape="box"];2973[label="vwx400/False",fontsize=10,color="white",style="solid",shape="box"];471 -> 2973[label="",style="solid", color="burlywood", weight=9]; 2973 -> 664[label="",style="solid", color="burlywood", weight=3]; 2974[label="vwx400/True",fontsize=10,color="white",style="solid",shape="box"];471 -> 2974[label="",style="solid", color="burlywood", weight=9]; 2974 -> 665[label="",style="solid", color="burlywood", weight=3]; 472[label="True == vwx400",fontsize=16,color="burlywood",shape="box"];2975[label="vwx400/False",fontsize=10,color="white",style="solid",shape="box"];472 -> 2975[label="",style="solid", color="burlywood", weight=9]; 2975 -> 666[label="",style="solid", color="burlywood", weight=3]; 2976[label="vwx400/True",fontsize=10,color="white",style="solid",shape="box"];472 -> 2976[label="",style="solid", color="burlywood", weight=9]; 2976 -> 667[label="",style="solid", color="burlywood", weight=3]; 473[label="LT == vwx400",fontsize=16,color="burlywood",shape="box"];2977[label="vwx400/LT",fontsize=10,color="white",style="solid",shape="box"];473 -> 2977[label="",style="solid", color="burlywood", weight=9]; 2977 -> 668[label="",style="solid", color="burlywood", weight=3]; 2978[label="vwx400/EQ",fontsize=10,color="white",style="solid",shape="box"];473 -> 2978[label="",style="solid", color="burlywood", weight=9]; 2978 -> 669[label="",style="solid", color="burlywood", weight=3]; 2979[label="vwx400/GT",fontsize=10,color="white",style="solid",shape="box"];473 -> 2979[label="",style="solid", color="burlywood", weight=9]; 2979 -> 670[label="",style="solid", color="burlywood", weight=3]; 474[label="EQ == vwx400",fontsize=16,color="burlywood",shape="box"];2980[label="vwx400/LT",fontsize=10,color="white",style="solid",shape="box"];474 -> 2980[label="",style="solid", color="burlywood", weight=9]; 2980 -> 671[label="",style="solid", color="burlywood", weight=3]; 2981[label="vwx400/EQ",fontsize=10,color="white",style="solid",shape="box"];474 -> 2981[label="",style="solid", color="burlywood", weight=9]; 2981 -> 672[label="",style="solid", color="burlywood", weight=3]; 2982[label="vwx400/GT",fontsize=10,color="white",style="solid",shape="box"];474 -> 2982[label="",style="solid", color="burlywood", weight=9]; 2982 -> 673[label="",style="solid", color="burlywood", weight=3]; 475[label="GT == vwx400",fontsize=16,color="burlywood",shape="box"];2983[label="vwx400/LT",fontsize=10,color="white",style="solid",shape="box"];475 -> 2983[label="",style="solid", color="burlywood", weight=9]; 2983 -> 674[label="",style="solid", color="burlywood", weight=3]; 2984[label="vwx400/EQ",fontsize=10,color="white",style="solid",shape="box"];475 -> 2984[label="",style="solid", color="burlywood", weight=9]; 2984 -> 675[label="",style="solid", color="burlywood", weight=3]; 2985[label="vwx400/GT",fontsize=10,color="white",style="solid",shape="box"];475 -> 2985[label="",style="solid", color="burlywood", weight=9]; 2985 -> 676[label="",style="solid", color="burlywood", weight=3]; 476[label="Integer vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];2986[label="vwx400/Integer vwx4000",fontsize=10,color="white",style="solid",shape="box"];476 -> 2986[label="",style="solid", color="burlywood", weight=9]; 2986 -> 677[label="",style="solid", color="burlywood", weight=3]; 477[label="primEqChar vwx300 vwx400",fontsize=16,color="burlywood",shape="box"];2987[label="vwx300/Char vwx3000",fontsize=10,color="white",style="solid",shape="box"];477 -> 2987[label="",style="solid", color="burlywood", weight=9]; 2987 -> 678[label="",style="solid", color="burlywood", weight=3]; 478[label="vwx3000 : vwx3001 == vwx400",fontsize=16,color="burlywood",shape="box"];2988[label="vwx400/vwx4000 : vwx4001",fontsize=10,color="white",style="solid",shape="box"];478 -> 2988[label="",style="solid", color="burlywood", weight=9]; 2988 -> 679[label="",style="solid", color="burlywood", weight=3]; 2989[label="vwx400/[]",fontsize=10,color="white",style="solid",shape="box"];478 -> 2989[label="",style="solid", color="burlywood", weight=9]; 2989 -> 680[label="",style="solid", color="burlywood", weight=3]; 479[label="[] == vwx400",fontsize=16,color="burlywood",shape="box"];2990[label="vwx400/vwx4000 : vwx4001",fontsize=10,color="white",style="solid",shape="box"];479 -> 2990[label="",style="solid", color="burlywood", weight=9]; 2990 -> 681[label="",style="solid", color="burlywood", weight=3]; 2991[label="vwx400/[]",fontsize=10,color="white",style="solid",shape="box"];479 -> 2991[label="",style="solid", color="burlywood", weight=9]; 2991 -> 682[label="",style="solid", color="burlywood", weight=3]; 480[label="Left vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];2992[label="vwx400/Left vwx4000",fontsize=10,color="white",style="solid",shape="box"];480 -> 2992[label="",style="solid", color="burlywood", weight=9]; 2992 -> 683[label="",style="solid", color="burlywood", weight=3]; 2993[label="vwx400/Right vwx4000",fontsize=10,color="white",style="solid",shape="box"];480 -> 2993[label="",style="solid", color="burlywood", weight=9]; 2993 -> 684[label="",style="solid", color="burlywood", weight=3]; 481[label="Right vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];2994[label="vwx400/Left vwx4000",fontsize=10,color="white",style="solid",shape="box"];481 -> 2994[label="",style="solid", color="burlywood", weight=9]; 2994 -> 685[label="",style="solid", color="burlywood", weight=3]; 2995[label="vwx400/Right vwx4000",fontsize=10,color="white",style="solid",shape="box"];481 -> 2995[label="",style="solid", color="burlywood", weight=9]; 2995 -> 686[label="",style="solid", color="burlywood", weight=3]; 482[label="() == vwx400",fontsize=16,color="burlywood",shape="box"];2996[label="vwx400/()",fontsize=10,color="white",style="solid",shape="box"];482 -> 2996[label="",style="solid", color="burlywood", weight=9]; 2996 -> 687[label="",style="solid", color="burlywood", weight=3]; 483[label="vwx3000 :% vwx3001 == vwx400",fontsize=16,color="burlywood",shape="box"];2997[label="vwx400/vwx4000 :% vwx4001",fontsize=10,color="white",style="solid",shape="box"];483 -> 2997[label="",style="solid", color="burlywood", weight=9]; 2997 -> 688[label="",style="solid", color="burlywood", weight=3]; 484[label="(vwx3000,vwx3001) == vwx400",fontsize=16,color="burlywood",shape="box"];2998[label="vwx400/(vwx4000,vwx4001)",fontsize=10,color="white",style="solid",shape="box"];484 -> 2998[label="",style="solid", color="burlywood", weight=9]; 2998 -> 689[label="",style="solid", color="burlywood", weight=3]; 485[label="Nothing == vwx400",fontsize=16,color="burlywood",shape="box"];2999[label="vwx400/Nothing",fontsize=10,color="white",style="solid",shape="box"];485 -> 2999[label="",style="solid", color="burlywood", weight=9]; 2999 -> 690[label="",style="solid", color="burlywood", weight=3]; 3000[label="vwx400/Just vwx4000",fontsize=10,color="white",style="solid",shape="box"];485 -> 3000[label="",style="solid", color="burlywood", weight=9]; 3000 -> 691[label="",style="solid", color="burlywood", weight=3]; 486[label="Just vwx3000 == vwx400",fontsize=16,color="burlywood",shape="box"];3001[label="vwx400/Nothing",fontsize=10,color="white",style="solid",shape="box"];486 -> 3001[label="",style="solid", color="burlywood", weight=9]; 3001 -> 692[label="",style="solid", color="burlywood", weight=3]; 3002[label="vwx400/Just vwx4000",fontsize=10,color="white",style="solid",shape="box"];486 -> 3002[label="",style="solid", color="burlywood", weight=9]; 3002 -> 693[label="",style="solid", color="burlywood", weight=3]; 487[label="primEqDouble vwx300 vwx400",fontsize=16,color="burlywood",shape="box"];3003[label="vwx300/Double vwx3000 vwx3001",fontsize=10,color="white",style="solid",shape="box"];487 -> 3003[label="",style="solid", color="burlywood", weight=9]; 3003 -> 694[label="",style="solid", color="burlywood", weight=3]; 488[label="primEqInt vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];3004[label="vwx300/Pos vwx3000",fontsize=10,color="white",style="solid",shape="box"];488 -> 3004[label="",style="solid", color="burlywood", weight=9]; 3004 -> 695[label="",style="solid", color="burlywood", weight=3]; 3005[label="vwx300/Neg vwx3000",fontsize=10,color="white",style="solid",shape="box"];488 -> 3005[label="",style="solid", color="burlywood", weight=9]; 3005 -> 696[label="",style="solid", color="burlywood", weight=3]; 489[label="(vwx3000,vwx3001,vwx3002) == vwx400",fontsize=16,color="burlywood",shape="box"];3006[label="vwx400/(vwx4000,vwx4001,vwx4002)",fontsize=10,color="white",style="solid",shape="box"];489 -> 3006[label="",style="solid", color="burlywood", weight=9]; 3006 -> 697[label="",style="solid", color="burlywood", weight=3]; 490[label="primEqFloat vwx300 vwx400",fontsize=16,color="burlywood",shape="box"];3007[label="vwx300/Float vwx3000 vwx3001",fontsize=10,color="white",style="solid",shape="box"];490 -> 3007[label="",style="solid", color="burlywood", weight=9]; 3007 -> 698[label="",style="solid", color="burlywood", weight=3]; 852[label="vwx36",fontsize=16,color="green",shape="box"];853[label="vwx37",fontsize=16,color="green",shape="box"];854[label="Just vwx36 <= Just vwx37",fontsize=16,color="black",shape="box"];854 -> 946[label="",style="solid", color="black", weight=3]; 851[label="compare1 (Just vwx97) (Just vwx98) vwx99",fontsize=16,color="burlywood",shape="triangle"];3008[label="vwx99/False",fontsize=10,color="white",style="solid",shape="box"];851 -> 3008[label="",style="solid", color="burlywood", weight=9]; 3008 -> 947[label="",style="solid", color="burlywood", weight=3]; 3009[label="vwx99/True",fontsize=10,color="white",style="solid",shape="box"];851 -> 3009[label="",style="solid", color="burlywood", weight=9]; 3009 -> 948[label="",style="solid", color="burlywood", weight=3]; 745[label="compare0 True False True",fontsize=16,color="black",shape="box"];745 -> 949[label="",style="solid", color="black", weight=3]; 951[label="Left vwx43 <= Left vwx44",fontsize=16,color="black",shape="box"];951 -> 959[label="",style="solid", color="black", weight=3]; 952[label="vwx43",fontsize=16,color="green",shape="box"];953[label="vwx44",fontsize=16,color="green",shape="box"];950[label="compare1 (Left vwx104) (Left vwx105) vwx106",fontsize=16,color="burlywood",shape="triangle"];3010[label="vwx106/False",fontsize=10,color="white",style="solid",shape="box"];950 -> 3010[label="",style="solid", color="burlywood", weight=9]; 3010 -> 960[label="",style="solid", color="burlywood", weight=3]; 3011[label="vwx106/True",fontsize=10,color="white",style="solid",shape="box"];950 -> 3011[label="",style="solid", color="burlywood", weight=9]; 3011 -> 961[label="",style="solid", color="burlywood", weight=3]; 747[label="compare0 (Right vwx300) (Left vwx400) True",fontsize=16,color="black",shape="box"];747 -> 962[label="",style="solid", color="black", weight=3]; 964[label="vwx51",fontsize=16,color="green",shape="box"];965[label="Right vwx50 <= Right vwx51",fontsize=16,color="black",shape="box"];965 -> 970[label="",style="solid", color="black", weight=3]; 966[label="vwx50",fontsize=16,color="green",shape="box"];963[label="compare1 (Right vwx112) (Right vwx113) vwx114",fontsize=16,color="burlywood",shape="triangle"];3012[label="vwx114/False",fontsize=10,color="white",style="solid",shape="box"];963 -> 3012[label="",style="solid", color="burlywood", weight=9]; 3012 -> 971[label="",style="solid", color="burlywood", weight=3]; 3013[label="vwx114/True",fontsize=10,color="white",style="solid",shape="box"];963 -> 3013[label="",style="solid", color="burlywood", weight=9]; 3013 -> 972[label="",style="solid", color="burlywood", weight=3]; 889 -> 350[label="",style="dashed", color="red", weight=0]; 889[label="vwx302 == vwx402",fontsize=16,color="magenta"];889 -> 973[label="",style="dashed", color="magenta", weight=3]; 889 -> 974[label="",style="dashed", color="magenta", weight=3]; 890 -> 351[label="",style="dashed", color="red", weight=0]; 890[label="vwx302 == vwx402",fontsize=16,color="magenta"];890 -> 975[label="",style="dashed", color="magenta", weight=3]; 890 -> 976[label="",style="dashed", color="magenta", weight=3]; 891 -> 352[label="",style="dashed", color="red", weight=0]; 891[label="vwx302 == vwx402",fontsize=16,color="magenta"];891 -> 977[label="",style="dashed", color="magenta", weight=3]; 891 -> 978[label="",style="dashed", color="magenta", weight=3]; 892 -> 353[label="",style="dashed", color="red", weight=0]; 892[label="vwx302 == vwx402",fontsize=16,color="magenta"];892 -> 979[label="",style="dashed", color="magenta", weight=3]; 892 -> 980[label="",style="dashed", color="magenta", weight=3]; 893 -> 354[label="",style="dashed", color="red", weight=0]; 893[label="vwx302 == vwx402",fontsize=16,color="magenta"];893 -> 981[label="",style="dashed", color="magenta", weight=3]; 893 -> 982[label="",style="dashed", color="magenta", weight=3]; 894 -> 355[label="",style="dashed", color="red", weight=0]; 894[label="vwx302 == vwx402",fontsize=16,color="magenta"];894 -> 983[label="",style="dashed", color="magenta", weight=3]; 894 -> 984[label="",style="dashed", color="magenta", weight=3]; 895 -> 356[label="",style="dashed", color="red", weight=0]; 895[label="vwx302 == vwx402",fontsize=16,color="magenta"];895 -> 985[label="",style="dashed", color="magenta", weight=3]; 895 -> 986[label="",style="dashed", color="magenta", weight=3]; 896 -> 357[label="",style="dashed", color="red", weight=0]; 896[label="vwx302 == vwx402",fontsize=16,color="magenta"];896 -> 987[label="",style="dashed", color="magenta", weight=3]; 896 -> 988[label="",style="dashed", color="magenta", weight=3]; 897 -> 358[label="",style="dashed", color="red", weight=0]; 897[label="vwx302 == vwx402",fontsize=16,color="magenta"];897 -> 989[label="",style="dashed", color="magenta", weight=3]; 897 -> 990[label="",style="dashed", color="magenta", weight=3]; 898 -> 359[label="",style="dashed", color="red", weight=0]; 898[label="vwx302 == vwx402",fontsize=16,color="magenta"];898 -> 991[label="",style="dashed", color="magenta", weight=3]; 898 -> 992[label="",style="dashed", color="magenta", weight=3]; 899 -> 360[label="",style="dashed", color="red", weight=0]; 899[label="vwx302 == vwx402",fontsize=16,color="magenta"];899 -> 993[label="",style="dashed", color="magenta", weight=3]; 899 -> 994[label="",style="dashed", color="magenta", weight=3]; 900 -> 361[label="",style="dashed", color="red", weight=0]; 900[label="vwx302 == vwx402",fontsize=16,color="magenta"];900 -> 995[label="",style="dashed", color="magenta", weight=3]; 900 -> 996[label="",style="dashed", color="magenta", weight=3]; 901 -> 362[label="",style="dashed", color="red", weight=0]; 901[label="vwx302 == vwx402",fontsize=16,color="magenta"];901 -> 997[label="",style="dashed", color="magenta", weight=3]; 901 -> 998[label="",style="dashed", color="magenta", weight=3]; 902 -> 363[label="",style="dashed", color="red", weight=0]; 902[label="vwx302 == vwx402",fontsize=16,color="magenta"];902 -> 999[label="",style="dashed", color="magenta", weight=3]; 902 -> 1000[label="",style="dashed", color="magenta", weight=3]; 903 -> 350[label="",style="dashed", color="red", weight=0]; 903[label="vwx301 == vwx401",fontsize=16,color="magenta"];903 -> 1001[label="",style="dashed", color="magenta", weight=3]; 903 -> 1002[label="",style="dashed", color="magenta", weight=3]; 904 -> 351[label="",style="dashed", color="red", weight=0]; 904[label="vwx301 == vwx401",fontsize=16,color="magenta"];904 -> 1003[label="",style="dashed", color="magenta", weight=3]; 904 -> 1004[label="",style="dashed", color="magenta", weight=3]; 905 -> 352[label="",style="dashed", color="red", weight=0]; 905[label="vwx301 == vwx401",fontsize=16,color="magenta"];905 -> 1005[label="",style="dashed", color="magenta", weight=3]; 905 -> 1006[label="",style="dashed", color="magenta", weight=3]; 906 -> 353[label="",style="dashed", color="red", weight=0]; 906[label="vwx301 == vwx401",fontsize=16,color="magenta"];906 -> 1007[label="",style="dashed", color="magenta", weight=3]; 906 -> 1008[label="",style="dashed", color="magenta", weight=3]; 907 -> 354[label="",style="dashed", color="red", weight=0]; 907[label="vwx301 == vwx401",fontsize=16,color="magenta"];907 -> 1009[label="",style="dashed", color="magenta", weight=3]; 907 -> 1010[label="",style="dashed", color="magenta", weight=3]; 908 -> 355[label="",style="dashed", color="red", weight=0]; 908[label="vwx301 == vwx401",fontsize=16,color="magenta"];908 -> 1011[label="",style="dashed", color="magenta", weight=3]; 908 -> 1012[label="",style="dashed", color="magenta", weight=3]; 909 -> 356[label="",style="dashed", color="red", weight=0]; 909[label="vwx301 == vwx401",fontsize=16,color="magenta"];909 -> 1013[label="",style="dashed", color="magenta", weight=3]; 909 -> 1014[label="",style="dashed", color="magenta", weight=3]; 910 -> 357[label="",style="dashed", color="red", weight=0]; 910[label="vwx301 == vwx401",fontsize=16,color="magenta"];910 -> 1015[label="",style="dashed", color="magenta", weight=3]; 910 -> 1016[label="",style="dashed", color="magenta", weight=3]; 911 -> 358[label="",style="dashed", color="red", weight=0]; 911[label="vwx301 == vwx401",fontsize=16,color="magenta"];911 -> 1017[label="",style="dashed", color="magenta", weight=3]; 911 -> 1018[label="",style="dashed", color="magenta", weight=3]; 912 -> 359[label="",style="dashed", color="red", weight=0]; 912[label="vwx301 == vwx401",fontsize=16,color="magenta"];912 -> 1019[label="",style="dashed", color="magenta", weight=3]; 912 -> 1020[label="",style="dashed", color="magenta", weight=3]; 913 -> 360[label="",style="dashed", color="red", weight=0]; 913[label="vwx301 == vwx401",fontsize=16,color="magenta"];913 -> 1021[label="",style="dashed", color="magenta", weight=3]; 913 -> 1022[label="",style="dashed", color="magenta", weight=3]; 914 -> 361[label="",style="dashed", color="red", weight=0]; 914[label="vwx301 == vwx401",fontsize=16,color="magenta"];914 -> 1023[label="",style="dashed", color="magenta", weight=3]; 914 -> 1024[label="",style="dashed", color="magenta", weight=3]; 915 -> 362[label="",style="dashed", color="red", weight=0]; 915[label="vwx301 == vwx401",fontsize=16,color="magenta"];915 -> 1025[label="",style="dashed", color="magenta", weight=3]; 915 -> 1026[label="",style="dashed", color="magenta", weight=3]; 916 -> 363[label="",style="dashed", color="red", weight=0]; 916[label="vwx301 == vwx401",fontsize=16,color="magenta"];916 -> 1027[label="",style="dashed", color="magenta", weight=3]; 916 -> 1028[label="",style="dashed", color="magenta", weight=3]; 917[label="vwx300",fontsize=16,color="green",shape="box"];918[label="vwx400",fontsize=16,color="green",shape="box"];919[label="vwx300",fontsize=16,color="green",shape="box"];920[label="vwx400",fontsize=16,color="green",shape="box"];921[label="vwx300",fontsize=16,color="green",shape="box"];922[label="vwx400",fontsize=16,color="green",shape="box"];923[label="vwx300",fontsize=16,color="green",shape="box"];924[label="vwx400",fontsize=16,color="green",shape="box"];925[label="vwx300",fontsize=16,color="green",shape="box"];926[label="vwx400",fontsize=16,color="green",shape="box"];927[label="vwx300",fontsize=16,color="green",shape="box"];928[label="vwx400",fontsize=16,color="green",shape="box"];929[label="vwx300",fontsize=16,color="green",shape="box"];930[label="vwx400",fontsize=16,color="green",shape="box"];931[label="vwx300",fontsize=16,color="green",shape="box"];932[label="vwx400",fontsize=16,color="green",shape="box"];933[label="vwx300",fontsize=16,color="green",shape="box"];934[label="vwx400",fontsize=16,color="green",shape="box"];935[label="vwx300",fontsize=16,color="green",shape="box"];936[label="vwx400",fontsize=16,color="green",shape="box"];937[label="vwx300",fontsize=16,color="green",shape="box"];938[label="vwx400",fontsize=16,color="green",shape="box"];939[label="vwx300",fontsize=16,color="green",shape="box"];940[label="vwx400",fontsize=16,color="green",shape="box"];941[label="vwx300",fontsize=16,color="green",shape="box"];942[label="vwx400",fontsize=16,color="green",shape="box"];943[label="vwx300",fontsize=16,color="green",shape="box"];944[label="vwx400",fontsize=16,color="green",shape="box"];945 -> 1160[label="",style="dashed", color="red", weight=0]; 945[label="compare1 (vwx61,vwx62,vwx63) (vwx64,vwx65,vwx66) (vwx61 < vwx64 || vwx61 == vwx64 && (vwx62 < vwx65 || vwx62 == vwx65 && vwx63 <= vwx66))",fontsize=16,color="magenta"];945 -> 1161[label="",style="dashed", color="magenta", weight=3]; 945 -> 1162[label="",style="dashed", color="magenta", weight=3]; 945 -> 1163[label="",style="dashed", color="magenta", weight=3]; 945 -> 1164[label="",style="dashed", color="magenta", weight=3]; 945 -> 1165[label="",style="dashed", color="magenta", weight=3]; 945 -> 1166[label="",style="dashed", color="magenta", weight=3]; 945 -> 1167[label="",style="dashed", color="magenta", weight=3]; 945 -> 1168[label="",style="dashed", color="magenta", weight=3]; 841[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];841 -> 1031[label="",style="solid", color="black", weight=3]; 842[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];842 -> 1032[label="",style="solid", color="black", weight=3]; 843[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];843 -> 1033[label="",style="solid", color="black", weight=3]; 844[label="vwx3000",fontsize=16,color="green",shape="box"];845[label="vwx4010",fontsize=16,color="green",shape="box"];846[label="primMulNat vwx3000 vwx4010",fontsize=16,color="burlywood",shape="triangle"];3014[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];846 -> 3014[label="",style="solid", color="burlywood", weight=9]; 3014 -> 1034[label="",style="solid", color="burlywood", weight=3]; 3015[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];846 -> 3015[label="",style="solid", color="burlywood", weight=9]; 3015 -> 1035[label="",style="solid", color="burlywood", weight=3]; 847 -> 846[label="",style="dashed", color="red", weight=0]; 847[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];847 -> 1036[label="",style="dashed", color="magenta", weight=3]; 848 -> 846[label="",style="dashed", color="red", weight=0]; 848[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];848 -> 1037[label="",style="dashed", color="magenta", weight=3]; 849 -> 846[label="",style="dashed", color="red", weight=0]; 849[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];849 -> 1038[label="",style="dashed", color="magenta", weight=3]; 849 -> 1039[label="",style="dashed", color="magenta", weight=3]; 1043[label="vwx75",fontsize=16,color="green",shape="box"];1044[label="vwx74 < vwx76",fontsize=16,color="blue",shape="box"];3016[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1044 -> 3016[label="",style="solid", color="blue", weight=9]; 3016 -> 1055[label="",style="solid", color="blue", weight=3]; 3017[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1044 -> 3017[label="",style="solid", color="blue", weight=9]; 3017 -> 1056[label="",style="solid", color="blue", weight=3]; 3018[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1044 -> 3018[label="",style="solid", color="blue", weight=9]; 3018 -> 1057[label="",style="solid", color="blue", weight=3]; 3019[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1044 -> 3019[label="",style="solid", color="blue", weight=9]; 3019 -> 1058[label="",style="solid", color="blue", weight=3]; 3020[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1044 -> 3020[label="",style="solid", color="blue", weight=9]; 3020 -> 1059[label="",style="solid", color="blue", weight=3]; 3021[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1044 -> 3021[label="",style="solid", color="blue", weight=9]; 3021 -> 1060[label="",style="solid", color="blue", weight=3]; 3022[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1044 -> 3022[label="",style="solid", color="blue", weight=9]; 3022 -> 1061[label="",style="solid", color="blue", weight=3]; 3023[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1044 -> 3023[label="",style="solid", color="blue", weight=9]; 3023 -> 1062[label="",style="solid", color="blue", weight=3]; 3024[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1044 -> 3024[label="",style="solid", color="blue", weight=9]; 3024 -> 1063[label="",style="solid", color="blue", weight=3]; 3025[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1044 -> 3025[label="",style="solid", color="blue", weight=9]; 3025 -> 1064[label="",style="solid", color="blue", weight=3]; 3026[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1044 -> 3026[label="",style="solid", color="blue", weight=9]; 3026 -> 1065[label="",style="solid", color="blue", weight=3]; 3027[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1044 -> 3027[label="",style="solid", color="blue", weight=9]; 3027 -> 1066[label="",style="solid", color="blue", weight=3]; 3028[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1044 -> 3028[label="",style="solid", color="blue", weight=9]; 3028 -> 1067[label="",style="solid", color="blue", weight=3]; 3029[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1044 -> 3029[label="",style="solid", color="blue", weight=9]; 3029 -> 1068[label="",style="solid", color="blue", weight=3]; 1045 -> 782[label="",style="dashed", color="red", weight=0]; 1045[label="vwx74 == vwx76 && vwx75 <= vwx77",fontsize=16,color="magenta"];1045 -> 1069[label="",style="dashed", color="magenta", weight=3]; 1045 -> 1070[label="",style="dashed", color="magenta", weight=3]; 1046[label="vwx77",fontsize=16,color="green",shape="box"];1047[label="vwx74",fontsize=16,color="green",shape="box"];1048[label="vwx76",fontsize=16,color="green",shape="box"];1042[label="compare1 (vwx124,vwx125) (vwx126,vwx127) (vwx128 || vwx129)",fontsize=16,color="burlywood",shape="triangle"];3030[label="vwx128/False",fontsize=10,color="white",style="solid",shape="box"];1042 -> 3030[label="",style="solid", color="burlywood", weight=9]; 3030 -> 1071[label="",style="solid", color="burlywood", weight=3]; 3031[label="vwx128/True",fontsize=10,color="white",style="solid",shape="box"];1042 -> 3031[label="",style="solid", color="burlywood", weight=9]; 3031 -> 1072[label="",style="solid", color="burlywood", weight=3]; 850[label="GT",fontsize=16,color="green",shape="box"];664[label="False == False",fontsize=16,color="black",shape="box"];664 -> 1073[label="",style="solid", color="black", weight=3]; 665[label="False == True",fontsize=16,color="black",shape="box"];665 -> 1074[label="",style="solid", color="black", weight=3]; 666[label="True == False",fontsize=16,color="black",shape="box"];666 -> 1075[label="",style="solid", color="black", weight=3]; 667[label="True == True",fontsize=16,color="black",shape="box"];667 -> 1076[label="",style="solid", color="black", weight=3]; 668[label="LT == LT",fontsize=16,color="black",shape="box"];668 -> 1077[label="",style="solid", color="black", weight=3]; 669[label="LT == EQ",fontsize=16,color="black",shape="box"];669 -> 1078[label="",style="solid", color="black", weight=3]; 670[label="LT == GT",fontsize=16,color="black",shape="box"];670 -> 1079[label="",style="solid", color="black", weight=3]; 671[label="EQ == LT",fontsize=16,color="black",shape="box"];671 -> 1080[label="",style="solid", color="black", weight=3]; 672[label="EQ == EQ",fontsize=16,color="black",shape="box"];672 -> 1081[label="",style="solid", color="black", weight=3]; 673[label="EQ == GT",fontsize=16,color="black",shape="box"];673 -> 1082[label="",style="solid", color="black", weight=3]; 674[label="GT == LT",fontsize=16,color="black",shape="box"];674 -> 1083[label="",style="solid", color="black", weight=3]; 675[label="GT == EQ",fontsize=16,color="black",shape="box"];675 -> 1084[label="",style="solid", color="black", weight=3]; 676[label="GT == GT",fontsize=16,color="black",shape="box"];676 -> 1085[label="",style="solid", color="black", weight=3]; 677[label="Integer vwx3000 == Integer vwx4000",fontsize=16,color="black",shape="box"];677 -> 1086[label="",style="solid", color="black", weight=3]; 678[label="primEqChar (Char vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];3032[label="vwx400/Char vwx4000",fontsize=10,color="white",style="solid",shape="box"];678 -> 3032[label="",style="solid", color="burlywood", weight=9]; 3032 -> 1087[label="",style="solid", color="burlywood", weight=3]; 679[label="vwx3000 : vwx3001 == vwx4000 : vwx4001",fontsize=16,color="black",shape="box"];679 -> 1088[label="",style="solid", color="black", weight=3]; 680[label="vwx3000 : vwx3001 == []",fontsize=16,color="black",shape="box"];680 -> 1089[label="",style="solid", color="black", weight=3]; 681[label="[] == vwx4000 : vwx4001",fontsize=16,color="black",shape="box"];681 -> 1090[label="",style="solid", color="black", weight=3]; 682[label="[] == []",fontsize=16,color="black",shape="box"];682 -> 1091[label="",style="solid", color="black", weight=3]; 683[label="Left vwx3000 == Left vwx4000",fontsize=16,color="black",shape="box"];683 -> 1092[label="",style="solid", color="black", weight=3]; 684[label="Left vwx3000 == Right vwx4000",fontsize=16,color="black",shape="box"];684 -> 1093[label="",style="solid", color="black", weight=3]; 685[label="Right vwx3000 == Left vwx4000",fontsize=16,color="black",shape="box"];685 -> 1094[label="",style="solid", color="black", weight=3]; 686[label="Right vwx3000 == Right vwx4000",fontsize=16,color="black",shape="box"];686 -> 1095[label="",style="solid", color="black", weight=3]; 687[label="() == ()",fontsize=16,color="black",shape="box"];687 -> 1096[label="",style="solid", color="black", weight=3]; 688[label="vwx3000 :% vwx3001 == vwx4000 :% vwx4001",fontsize=16,color="black",shape="box"];688 -> 1097[label="",style="solid", color="black", weight=3]; 689[label="(vwx3000,vwx3001) == (vwx4000,vwx4001)",fontsize=16,color="black",shape="box"];689 -> 1098[label="",style="solid", color="black", weight=3]; 690[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];690 -> 1099[label="",style="solid", color="black", weight=3]; 691[label="Nothing == Just vwx4000",fontsize=16,color="black",shape="box"];691 -> 1100[label="",style="solid", color="black", weight=3]; 692[label="Just vwx3000 == Nothing",fontsize=16,color="black",shape="box"];692 -> 1101[label="",style="solid", color="black", weight=3]; 693[label="Just vwx3000 == Just vwx4000",fontsize=16,color="black",shape="box"];693 -> 1102[label="",style="solid", color="black", weight=3]; 694[label="primEqDouble (Double vwx3000 vwx3001) vwx400",fontsize=16,color="burlywood",shape="box"];3033[label="vwx400/Double vwx4000 vwx4001",fontsize=10,color="white",style="solid",shape="box"];694 -> 3033[label="",style="solid", color="burlywood", weight=9]; 3033 -> 1103[label="",style="solid", color="burlywood", weight=3]; 695[label="primEqInt (Pos vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];3034[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];695 -> 3034[label="",style="solid", color="burlywood", weight=9]; 3034 -> 1104[label="",style="solid", color="burlywood", weight=3]; 3035[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];695 -> 3035[label="",style="solid", color="burlywood", weight=9]; 3035 -> 1105[label="",style="solid", color="burlywood", weight=3]; 696[label="primEqInt (Neg vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];3036[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];696 -> 3036[label="",style="solid", color="burlywood", weight=9]; 3036 -> 1106[label="",style="solid", color="burlywood", weight=3]; 3037[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];696 -> 3037[label="",style="solid", color="burlywood", weight=9]; 3037 -> 1107[label="",style="solid", color="burlywood", weight=3]; 697[label="(vwx3000,vwx3001,vwx3002) == (vwx4000,vwx4001,vwx4002)",fontsize=16,color="black",shape="box"];697 -> 1108[label="",style="solid", color="black", weight=3]; 698[label="primEqFloat (Float vwx3000 vwx3001) vwx400",fontsize=16,color="burlywood",shape="box"];3038[label="vwx400/Float vwx4000 vwx4001",fontsize=10,color="white",style="solid",shape="box"];698 -> 3038[label="",style="solid", color="burlywood", weight=9]; 3038 -> 1109[label="",style="solid", color="burlywood", weight=3]; 946[label="vwx36 <= vwx37",fontsize=16,color="blue",shape="box"];3039[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];946 -> 3039[label="",style="solid", color="blue", weight=9]; 3039 -> 1110[label="",style="solid", color="blue", weight=3]; 3040[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];946 -> 3040[label="",style="solid", color="blue", weight=9]; 3040 -> 1111[label="",style="solid", color="blue", weight=3]; 3041[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];946 -> 3041[label="",style="solid", color="blue", weight=9]; 3041 -> 1112[label="",style="solid", color="blue", weight=3]; 3042[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];946 -> 3042[label="",style="solid", color="blue", weight=9]; 3042 -> 1113[label="",style="solid", color="blue", weight=3]; 3043[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];946 -> 3043[label="",style="solid", color="blue", weight=9]; 3043 -> 1114[label="",style="solid", color="blue", weight=3]; 3044[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];946 -> 3044[label="",style="solid", color="blue", weight=9]; 3044 -> 1115[label="",style="solid", color="blue", weight=3]; 3045[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];946 -> 3045[label="",style="solid", color="blue", weight=9]; 3045 -> 1116[label="",style="solid", color="blue", weight=3]; 3046[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];946 -> 3046[label="",style="solid", color="blue", weight=9]; 3046 -> 1117[label="",style="solid", color="blue", weight=3]; 3047[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];946 -> 3047[label="",style="solid", color="blue", weight=9]; 3047 -> 1118[label="",style="solid", color="blue", weight=3]; 3048[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];946 -> 3048[label="",style="solid", color="blue", weight=9]; 3048 -> 1119[label="",style="solid", color="blue", weight=3]; 3049[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];946 -> 3049[label="",style="solid", color="blue", weight=9]; 3049 -> 1120[label="",style="solid", color="blue", weight=3]; 3050[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];946 -> 3050[label="",style="solid", color="blue", weight=9]; 3050 -> 1121[label="",style="solid", color="blue", weight=3]; 3051[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];946 -> 3051[label="",style="solid", color="blue", weight=9]; 3051 -> 1122[label="",style="solid", color="blue", weight=3]; 3052[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];946 -> 3052[label="",style="solid", color="blue", weight=9]; 3052 -> 1123[label="",style="solid", color="blue", weight=3]; 947[label="compare1 (Just vwx97) (Just vwx98) False",fontsize=16,color="black",shape="box"];947 -> 1124[label="",style="solid", color="black", weight=3]; 948[label="compare1 (Just vwx97) (Just vwx98) True",fontsize=16,color="black",shape="box"];948 -> 1125[label="",style="solid", color="black", weight=3]; 949[label="GT",fontsize=16,color="green",shape="box"];959[label="vwx43 <= vwx44",fontsize=16,color="blue",shape="box"];3053[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 3053[label="",style="solid", color="blue", weight=9]; 3053 -> 1126[label="",style="solid", color="blue", weight=3]; 3054[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 3054[label="",style="solid", color="blue", weight=9]; 3054 -> 1127[label="",style="solid", color="blue", weight=3]; 3055[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 3055[label="",style="solid", color="blue", weight=9]; 3055 -> 1128[label="",style="solid", color="blue", weight=3]; 3056[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 3056[label="",style="solid", color="blue", weight=9]; 3056 -> 1129[label="",style="solid", color="blue", weight=3]; 3057[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 3057[label="",style="solid", color="blue", weight=9]; 3057 -> 1130[label="",style="solid", color="blue", weight=3]; 3058[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 3058[label="",style="solid", color="blue", weight=9]; 3058 -> 1131[label="",style="solid", color="blue", weight=3]; 3059[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 3059[label="",style="solid", color="blue", weight=9]; 3059 -> 1132[label="",style="solid", color="blue", weight=3]; 3060[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 3060[label="",style="solid", color="blue", weight=9]; 3060 -> 1133[label="",style="solid", color="blue", weight=3]; 3061[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 3061[label="",style="solid", color="blue", weight=9]; 3061 -> 1134[label="",style="solid", color="blue", weight=3]; 3062[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 3062[label="",style="solid", color="blue", weight=9]; 3062 -> 1135[label="",style="solid", color="blue", weight=3]; 3063[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 3063[label="",style="solid", color="blue", weight=9]; 3063 -> 1136[label="",style="solid", color="blue", weight=3]; 3064[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 3064[label="",style="solid", color="blue", weight=9]; 3064 -> 1137[label="",style="solid", color="blue", weight=3]; 3065[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 3065[label="",style="solid", color="blue", weight=9]; 3065 -> 1138[label="",style="solid", color="blue", weight=3]; 3066[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];959 -> 3066[label="",style="solid", color="blue", weight=9]; 3066 -> 1139[label="",style="solid", color="blue", weight=3]; 960[label="compare1 (Left vwx104) (Left vwx105) False",fontsize=16,color="black",shape="box"];960 -> 1140[label="",style="solid", color="black", weight=3]; 961[label="compare1 (Left vwx104) (Left vwx105) True",fontsize=16,color="black",shape="box"];961 -> 1141[label="",style="solid", color="black", weight=3]; 962[label="GT",fontsize=16,color="green",shape="box"];970[label="vwx50 <= vwx51",fontsize=16,color="blue",shape="box"];3067[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 3067[label="",style="solid", color="blue", weight=9]; 3067 -> 1142[label="",style="solid", color="blue", weight=3]; 3068[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 3068[label="",style="solid", color="blue", weight=9]; 3068 -> 1143[label="",style="solid", color="blue", weight=3]; 3069[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 3069[label="",style="solid", color="blue", weight=9]; 3069 -> 1144[label="",style="solid", color="blue", weight=3]; 3070[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 3070[label="",style="solid", color="blue", weight=9]; 3070 -> 1145[label="",style="solid", color="blue", weight=3]; 3071[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 3071[label="",style="solid", color="blue", weight=9]; 3071 -> 1146[label="",style="solid", color="blue", weight=3]; 3072[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 3072[label="",style="solid", color="blue", weight=9]; 3072 -> 1147[label="",style="solid", color="blue", weight=3]; 3073[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 3073[label="",style="solid", color="blue", weight=9]; 3073 -> 1148[label="",style="solid", color="blue", weight=3]; 3074[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 3074[label="",style="solid", color="blue", weight=9]; 3074 -> 1149[label="",style="solid", color="blue", weight=3]; 3075[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 3075[label="",style="solid", color="blue", weight=9]; 3075 -> 1150[label="",style="solid", color="blue", weight=3]; 3076[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 3076[label="",style="solid", color="blue", weight=9]; 3076 -> 1151[label="",style="solid", color="blue", weight=3]; 3077[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 3077[label="",style="solid", color="blue", weight=9]; 3077 -> 1152[label="",style="solid", color="blue", weight=3]; 3078[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 3078[label="",style="solid", color="blue", weight=9]; 3078 -> 1153[label="",style="solid", color="blue", weight=3]; 3079[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 3079[label="",style="solid", color="blue", weight=9]; 3079 -> 1154[label="",style="solid", color="blue", weight=3]; 3080[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];970 -> 3080[label="",style="solid", color="blue", weight=9]; 3080 -> 1155[label="",style="solid", color="blue", weight=3]; 971[label="compare1 (Right vwx112) (Right vwx113) False",fontsize=16,color="black",shape="box"];971 -> 1156[label="",style="solid", color="black", weight=3]; 972[label="compare1 (Right vwx112) (Right vwx113) True",fontsize=16,color="black",shape="box"];972 -> 1157[label="",style="solid", color="black", weight=3]; 973[label="vwx302",fontsize=16,color="green",shape="box"];974[label="vwx402",fontsize=16,color="green",shape="box"];975[label="vwx302",fontsize=16,color="green",shape="box"];976[label="vwx402",fontsize=16,color="green",shape="box"];977[label="vwx302",fontsize=16,color="green",shape="box"];978[label="vwx402",fontsize=16,color="green",shape="box"];979[label="vwx302",fontsize=16,color="green",shape="box"];980[label="vwx402",fontsize=16,color="green",shape="box"];981[label="vwx302",fontsize=16,color="green",shape="box"];982[label="vwx402",fontsize=16,color="green",shape="box"];983[label="vwx302",fontsize=16,color="green",shape="box"];984[label="vwx402",fontsize=16,color="green",shape="box"];985[label="vwx302",fontsize=16,color="green",shape="box"];986[label="vwx402",fontsize=16,color="green",shape="box"];987[label="vwx302",fontsize=16,color="green",shape="box"];988[label="vwx402",fontsize=16,color="green",shape="box"];989[label="vwx302",fontsize=16,color="green",shape="box"];990[label="vwx402",fontsize=16,color="green",shape="box"];991[label="vwx302",fontsize=16,color="green",shape="box"];992[label="vwx402",fontsize=16,color="green",shape="box"];993[label="vwx302",fontsize=16,color="green",shape="box"];994[label="vwx402",fontsize=16,color="green",shape="box"];995[label="vwx302",fontsize=16,color="green",shape="box"];996[label="vwx402",fontsize=16,color="green",shape="box"];997[label="vwx302",fontsize=16,color="green",shape="box"];998[label="vwx402",fontsize=16,color="green",shape="box"];999[label="vwx302",fontsize=16,color="green",shape="box"];1000[label="vwx402",fontsize=16,color="green",shape="box"];1001[label="vwx301",fontsize=16,color="green",shape="box"];1002[label="vwx401",fontsize=16,color="green",shape="box"];1003[label="vwx301",fontsize=16,color="green",shape="box"];1004[label="vwx401",fontsize=16,color="green",shape="box"];1005[label="vwx301",fontsize=16,color="green",shape="box"];1006[label="vwx401",fontsize=16,color="green",shape="box"];1007[label="vwx301",fontsize=16,color="green",shape="box"];1008[label="vwx401",fontsize=16,color="green",shape="box"];1009[label="vwx301",fontsize=16,color="green",shape="box"];1010[label="vwx401",fontsize=16,color="green",shape="box"];1011[label="vwx301",fontsize=16,color="green",shape="box"];1012[label="vwx401",fontsize=16,color="green",shape="box"];1013[label="vwx301",fontsize=16,color="green",shape="box"];1014[label="vwx401",fontsize=16,color="green",shape="box"];1015[label="vwx301",fontsize=16,color="green",shape="box"];1016[label="vwx401",fontsize=16,color="green",shape="box"];1017[label="vwx301",fontsize=16,color="green",shape="box"];1018[label="vwx401",fontsize=16,color="green",shape="box"];1019[label="vwx301",fontsize=16,color="green",shape="box"];1020[label="vwx401",fontsize=16,color="green",shape="box"];1021[label="vwx301",fontsize=16,color="green",shape="box"];1022[label="vwx401",fontsize=16,color="green",shape="box"];1023[label="vwx301",fontsize=16,color="green",shape="box"];1024[label="vwx401",fontsize=16,color="green",shape="box"];1025[label="vwx301",fontsize=16,color="green",shape="box"];1026[label="vwx401",fontsize=16,color="green",shape="box"];1027[label="vwx301",fontsize=16,color="green",shape="box"];1028[label="vwx401",fontsize=16,color="green",shape="box"];1161[label="vwx63",fontsize=16,color="green",shape="box"];1162[label="vwx62",fontsize=16,color="green",shape="box"];1163[label="vwx65",fontsize=16,color="green",shape="box"];1164[label="vwx61",fontsize=16,color="green",shape="box"];1165[label="vwx64",fontsize=16,color="green",shape="box"];1166 -> 782[label="",style="dashed", color="red", weight=0]; 1166[label="vwx61 == vwx64 && (vwx62 < vwx65 || vwx62 == vwx65 && vwx63 <= vwx66)",fontsize=16,color="magenta"];1166 -> 1177[label="",style="dashed", color="magenta", weight=3]; 1166 -> 1178[label="",style="dashed", color="magenta", weight=3]; 1167[label="vwx61 < vwx64",fontsize=16,color="blue",shape="box"];3081[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3081[label="",style="solid", color="blue", weight=9]; 3081 -> 1179[label="",style="solid", color="blue", weight=3]; 3082[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3082[label="",style="solid", color="blue", weight=9]; 3082 -> 1180[label="",style="solid", color="blue", weight=3]; 3083[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3083[label="",style="solid", color="blue", weight=9]; 3083 -> 1181[label="",style="solid", color="blue", weight=3]; 3084[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3084[label="",style="solid", color="blue", weight=9]; 3084 -> 1182[label="",style="solid", color="blue", weight=3]; 3085[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3085[label="",style="solid", color="blue", weight=9]; 3085 -> 1183[label="",style="solid", color="blue", weight=3]; 3086[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3086[label="",style="solid", color="blue", weight=9]; 3086 -> 1184[label="",style="solid", color="blue", weight=3]; 3087[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3087[label="",style="solid", color="blue", weight=9]; 3087 -> 1185[label="",style="solid", color="blue", weight=3]; 3088[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3088[label="",style="solid", color="blue", weight=9]; 3088 -> 1186[label="",style="solid", color="blue", weight=3]; 3089[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3089[label="",style="solid", color="blue", weight=9]; 3089 -> 1187[label="",style="solid", color="blue", weight=3]; 3090[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3090[label="",style="solid", color="blue", weight=9]; 3090 -> 1188[label="",style="solid", color="blue", weight=3]; 3091[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3091[label="",style="solid", color="blue", weight=9]; 3091 -> 1189[label="",style="solid", color="blue", weight=3]; 3092[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3092[label="",style="solid", color="blue", weight=9]; 3092 -> 1190[label="",style="solid", color="blue", weight=3]; 3093[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3093[label="",style="solid", color="blue", weight=9]; 3093 -> 1191[label="",style="solid", color="blue", weight=3]; 3094[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1167 -> 3094[label="",style="solid", color="blue", weight=9]; 3094 -> 1192[label="",style="solid", color="blue", weight=3]; 1168[label="vwx66",fontsize=16,color="green",shape="box"];1160[label="compare1 (vwx139,vwx140,vwx141) (vwx142,vwx143,vwx144) (vwx145 || vwx146)",fontsize=16,color="burlywood",shape="triangle"];3095[label="vwx145/False",fontsize=10,color="white",style="solid",shape="box"];1160 -> 3095[label="",style="solid", color="burlywood", weight=9]; 3095 -> 1193[label="",style="solid", color="burlywood", weight=3]; 3096[label="vwx145/True",fontsize=10,color="white",style="solid",shape="box"];1160 -> 3096[label="",style="solid", color="burlywood", weight=9]; 3096 -> 1194[label="",style="solid", color="burlywood", weight=3]; 1031[label="GT",fontsize=16,color="green",shape="box"];1032[label="GT",fontsize=16,color="green",shape="box"];1033[label="GT",fontsize=16,color="green",shape="box"];1034[label="primMulNat (Succ vwx30000) vwx4010",fontsize=16,color="burlywood",shape="box"];3097[label="vwx4010/Succ vwx40100",fontsize=10,color="white",style="solid",shape="box"];1034 -> 3097[label="",style="solid", color="burlywood", weight=9]; 3097 -> 1195[label="",style="solid", color="burlywood", weight=3]; 3098[label="vwx4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1034 -> 3098[label="",style="solid", color="burlywood", weight=9]; 3098 -> 1196[label="",style="solid", color="burlywood", weight=3]; 1035[label="primMulNat Zero vwx4010",fontsize=16,color="burlywood",shape="box"];3099[label="vwx4010/Succ vwx40100",fontsize=10,color="white",style="solid",shape="box"];1035 -> 3099[label="",style="solid", color="burlywood", weight=9]; 3099 -> 1197[label="",style="solid", color="burlywood", weight=3]; 3100[label="vwx4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1035 -> 3100[label="",style="solid", color="burlywood", weight=9]; 3100 -> 1198[label="",style="solid", color="burlywood", weight=3]; 1036[label="vwx4010",fontsize=16,color="green",shape="box"];1037[label="vwx3000",fontsize=16,color="green",shape="box"];1038[label="vwx4010",fontsize=16,color="green",shape="box"];1039[label="vwx3000",fontsize=16,color="green",shape="box"];1055[label="vwx74 < vwx76",fontsize=16,color="black",shape="triangle"];1055 -> 1199[label="",style="solid", color="black", weight=3]; 1056[label="vwx74 < vwx76",fontsize=16,color="black",shape="triangle"];1056 -> 1200[label="",style="solid", color="black", weight=3]; 1057[label="vwx74 < vwx76",fontsize=16,color="black",shape="triangle"];1057 -> 1201[label="",style="solid", color="black", weight=3]; 1058 -> 4[label="",style="dashed", color="red", weight=0]; 1058[label="vwx74 < vwx76",fontsize=16,color="magenta"];1058 -> 1202[label="",style="dashed", color="magenta", weight=3]; 1058 -> 1203[label="",style="dashed", color="magenta", weight=3]; 1059[label="vwx74 < vwx76",fontsize=16,color="black",shape="triangle"];1059 -> 1204[label="",style="solid", color="black", weight=3]; 1060[label="vwx74 < vwx76",fontsize=16,color="black",shape="triangle"];1060 -> 1205[label="",style="solid", color="black", weight=3]; 1061[label="vwx74 < vwx76",fontsize=16,color="black",shape="triangle"];1061 -> 1206[label="",style="solid", color="black", weight=3]; 1062[label="vwx74 < vwx76",fontsize=16,color="black",shape="triangle"];1062 -> 1207[label="",style="solid", color="black", weight=3]; 1063[label="vwx74 < vwx76",fontsize=16,color="black",shape="triangle"];1063 -> 1208[label="",style="solid", color="black", weight=3]; 1064[label="vwx74 < vwx76",fontsize=16,color="black",shape="triangle"];1064 -> 1209[label="",style="solid", color="black", weight=3]; 1065[label="vwx74 < vwx76",fontsize=16,color="black",shape="triangle"];1065 -> 1210[label="",style="solid", color="black", weight=3]; 1066[label="vwx74 < vwx76",fontsize=16,color="black",shape="triangle"];1066 -> 1211[label="",style="solid", color="black", weight=3]; 1067[label="vwx74 < vwx76",fontsize=16,color="black",shape="triangle"];1067 -> 1212[label="",style="solid", color="black", weight=3]; 1068[label="vwx74 < vwx76",fontsize=16,color="black",shape="triangle"];1068 -> 1213[label="",style="solid", color="black", weight=3]; 1069[label="vwx75 <= vwx77",fontsize=16,color="blue",shape="box"];3101[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3101[label="",style="solid", color="blue", weight=9]; 3101 -> 1214[label="",style="solid", color="blue", weight=3]; 3102[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3102[label="",style="solid", color="blue", weight=9]; 3102 -> 1215[label="",style="solid", color="blue", weight=3]; 3103[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3103[label="",style="solid", color="blue", weight=9]; 3103 -> 1216[label="",style="solid", color="blue", weight=3]; 3104[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3104[label="",style="solid", color="blue", weight=9]; 3104 -> 1217[label="",style="solid", color="blue", weight=3]; 3105[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3105[label="",style="solid", color="blue", weight=9]; 3105 -> 1218[label="",style="solid", color="blue", weight=3]; 3106[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3106[label="",style="solid", color="blue", weight=9]; 3106 -> 1219[label="",style="solid", color="blue", weight=3]; 3107[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3107[label="",style="solid", color="blue", weight=9]; 3107 -> 1220[label="",style="solid", color="blue", weight=3]; 3108[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3108[label="",style="solid", color="blue", weight=9]; 3108 -> 1221[label="",style="solid", color="blue", weight=3]; 3109[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3109[label="",style="solid", color="blue", weight=9]; 3109 -> 1222[label="",style="solid", color="blue", weight=3]; 3110[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3110[label="",style="solid", color="blue", weight=9]; 3110 -> 1223[label="",style="solid", color="blue", weight=3]; 3111[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3111[label="",style="solid", color="blue", weight=9]; 3111 -> 1224[label="",style="solid", color="blue", weight=3]; 3112[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3112[label="",style="solid", color="blue", weight=9]; 3112 -> 1225[label="",style="solid", color="blue", weight=3]; 3113[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3113[label="",style="solid", color="blue", weight=9]; 3113 -> 1226[label="",style="solid", color="blue", weight=3]; 3114[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3114[label="",style="solid", color="blue", weight=9]; 3114 -> 1227[label="",style="solid", color="blue", weight=3]; 1070[label="vwx74 == vwx76",fontsize=16,color="blue",shape="box"];3115[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3115[label="",style="solid", color="blue", weight=9]; 3115 -> 1228[label="",style="solid", color="blue", weight=3]; 3116[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3116[label="",style="solid", color="blue", weight=9]; 3116 -> 1229[label="",style="solid", color="blue", weight=3]; 3117[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3117[label="",style="solid", color="blue", weight=9]; 3117 -> 1230[label="",style="solid", color="blue", weight=3]; 3118[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3118[label="",style="solid", color="blue", weight=9]; 3118 -> 1231[label="",style="solid", color="blue", weight=3]; 3119[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3119[label="",style="solid", color="blue", weight=9]; 3119 -> 1232[label="",style="solid", color="blue", weight=3]; 3120[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3120[label="",style="solid", color="blue", weight=9]; 3120 -> 1233[label="",style="solid", color="blue", weight=3]; 3121[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3121[label="",style="solid", color="blue", weight=9]; 3121 -> 1234[label="",style="solid", color="blue", weight=3]; 3122[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3122[label="",style="solid", color="blue", weight=9]; 3122 -> 1235[label="",style="solid", color="blue", weight=3]; 3123[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3123[label="",style="solid", color="blue", weight=9]; 3123 -> 1236[label="",style="solid", color="blue", weight=3]; 3124[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3124[label="",style="solid", color="blue", weight=9]; 3124 -> 1237[label="",style="solid", color="blue", weight=3]; 3125[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3125[label="",style="solid", color="blue", weight=9]; 3125 -> 1238[label="",style="solid", color="blue", weight=3]; 3126[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3126[label="",style="solid", color="blue", weight=9]; 3126 -> 1239[label="",style="solid", color="blue", weight=3]; 3127[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3127[label="",style="solid", color="blue", weight=9]; 3127 -> 1240[label="",style="solid", color="blue", weight=3]; 3128[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3128[label="",style="solid", color="blue", weight=9]; 3128 -> 1241[label="",style="solid", color="blue", weight=3]; 1071[label="compare1 (vwx124,vwx125) (vwx126,vwx127) (False || vwx129)",fontsize=16,color="black",shape="box"];1071 -> 1242[label="",style="solid", color="black", weight=3]; 1072[label="compare1 (vwx124,vwx125) (vwx126,vwx127) (True || vwx129)",fontsize=16,color="black",shape="box"];1072 -> 1243[label="",style="solid", color="black", weight=3]; 1073[label="True",fontsize=16,color="green",shape="box"];1074[label="False",fontsize=16,color="green",shape="box"];1075[label="False",fontsize=16,color="green",shape="box"];1076[label="True",fontsize=16,color="green",shape="box"];1077[label="True",fontsize=16,color="green",shape="box"];1078[label="False",fontsize=16,color="green",shape="box"];1079[label="False",fontsize=16,color="green",shape="box"];1080[label="False",fontsize=16,color="green",shape="box"];1081[label="True",fontsize=16,color="green",shape="box"];1082[label="False",fontsize=16,color="green",shape="box"];1083[label="False",fontsize=16,color="green",shape="box"];1084[label="False",fontsize=16,color="green",shape="box"];1085[label="True",fontsize=16,color="green",shape="box"];1086 -> 488[label="",style="dashed", color="red", weight=0]; 1086[label="primEqInt vwx3000 vwx4000",fontsize=16,color="magenta"];1086 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1086 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1087[label="primEqChar (Char vwx3000) (Char vwx4000)",fontsize=16,color="black",shape="box"];1087 -> 1246[label="",style="solid", color="black", weight=3]; 1088 -> 782[label="",style="dashed", color="red", weight=0]; 1088[label="vwx3000 == vwx4000 && vwx3001 == vwx4001",fontsize=16,color="magenta"];1088 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1088 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1089[label="False",fontsize=16,color="green",shape="box"];1090[label="False",fontsize=16,color="green",shape="box"];1091[label="True",fontsize=16,color="green",shape="box"];1092[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3129[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3129[label="",style="solid", color="blue", weight=9]; 3129 -> 1249[label="",style="solid", color="blue", weight=3]; 3130[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3130[label="",style="solid", color="blue", weight=9]; 3130 -> 1250[label="",style="solid", color="blue", weight=3]; 3131[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3131[label="",style="solid", color="blue", weight=9]; 3131 -> 1251[label="",style="solid", color="blue", weight=3]; 3132[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3132[label="",style="solid", color="blue", weight=9]; 3132 -> 1252[label="",style="solid", color="blue", weight=3]; 3133[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3133[label="",style="solid", color="blue", weight=9]; 3133 -> 1253[label="",style="solid", color="blue", weight=3]; 3134[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3134[label="",style="solid", color="blue", weight=9]; 3134 -> 1254[label="",style="solid", color="blue", weight=3]; 3135[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3135[label="",style="solid", color="blue", weight=9]; 3135 -> 1255[label="",style="solid", color="blue", weight=3]; 3136[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3136[label="",style="solid", color="blue", weight=9]; 3136 -> 1256[label="",style="solid", color="blue", weight=3]; 3137[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3137[label="",style="solid", color="blue", weight=9]; 3137 -> 1257[label="",style="solid", color="blue", weight=3]; 3138[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3138[label="",style="solid", color="blue", weight=9]; 3138 -> 1258[label="",style="solid", color="blue", weight=3]; 3139[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3139[label="",style="solid", color="blue", weight=9]; 3139 -> 1259[label="",style="solid", color="blue", weight=3]; 3140[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3140[label="",style="solid", color="blue", weight=9]; 3140 -> 1260[label="",style="solid", color="blue", weight=3]; 3141[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3141[label="",style="solid", color="blue", weight=9]; 3141 -> 1261[label="",style="solid", color="blue", weight=3]; 3142[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3142[label="",style="solid", color="blue", weight=9]; 3142 -> 1262[label="",style="solid", color="blue", weight=3]; 1093[label="False",fontsize=16,color="green",shape="box"];1094[label="False",fontsize=16,color="green",shape="box"];1095[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3143[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3143[label="",style="solid", color="blue", weight=9]; 3143 -> 1263[label="",style="solid", color="blue", weight=3]; 3144[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3144[label="",style="solid", color="blue", weight=9]; 3144 -> 1264[label="",style="solid", color="blue", weight=3]; 3145[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3145[label="",style="solid", color="blue", weight=9]; 3145 -> 1265[label="",style="solid", color="blue", weight=3]; 3146[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3146[label="",style="solid", color="blue", weight=9]; 3146 -> 1266[label="",style="solid", color="blue", weight=3]; 3147[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3147[label="",style="solid", color="blue", weight=9]; 3147 -> 1267[label="",style="solid", color="blue", weight=3]; 3148[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3148[label="",style="solid", color="blue", weight=9]; 3148 -> 1268[label="",style="solid", color="blue", weight=3]; 3149[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3149[label="",style="solid", color="blue", weight=9]; 3149 -> 1269[label="",style="solid", color="blue", weight=3]; 3150[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3150[label="",style="solid", color="blue", weight=9]; 3150 -> 1270[label="",style="solid", color="blue", weight=3]; 3151[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3151[label="",style="solid", color="blue", weight=9]; 3151 -> 1271[label="",style="solid", color="blue", weight=3]; 3152[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3152[label="",style="solid", color="blue", weight=9]; 3152 -> 1272[label="",style="solid", color="blue", weight=3]; 3153[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3153[label="",style="solid", color="blue", weight=9]; 3153 -> 1273[label="",style="solid", color="blue", weight=3]; 3154[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3154[label="",style="solid", color="blue", weight=9]; 3154 -> 1274[label="",style="solid", color="blue", weight=3]; 3155[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3155[label="",style="solid", color="blue", weight=9]; 3155 -> 1275[label="",style="solid", color="blue", weight=3]; 3156[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1095 -> 3156[label="",style="solid", color="blue", weight=9]; 3156 -> 1276[label="",style="solid", color="blue", weight=3]; 1096[label="True",fontsize=16,color="green",shape="box"];1097 -> 782[label="",style="dashed", color="red", weight=0]; 1097[label="vwx3000 == vwx4000 && vwx3001 == vwx4001",fontsize=16,color="magenta"];1097 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1097 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1098 -> 782[label="",style="dashed", color="red", weight=0]; 1098[label="vwx3000 == vwx4000 && vwx3001 == vwx4001",fontsize=16,color="magenta"];1098 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1098 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1099[label="True",fontsize=16,color="green",shape="box"];1100[label="False",fontsize=16,color="green",shape="box"];1101[label="False",fontsize=16,color="green",shape="box"];1102[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3157[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3157[label="",style="solid", color="blue", weight=9]; 3157 -> 1281[label="",style="solid", color="blue", weight=3]; 3158[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3158[label="",style="solid", color="blue", weight=9]; 3158 -> 1282[label="",style="solid", color="blue", weight=3]; 3159[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3159[label="",style="solid", color="blue", weight=9]; 3159 -> 1283[label="",style="solid", color="blue", weight=3]; 3160[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3160[label="",style="solid", color="blue", weight=9]; 3160 -> 1284[label="",style="solid", color="blue", weight=3]; 3161[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3161[label="",style="solid", color="blue", weight=9]; 3161 -> 1285[label="",style="solid", color="blue", weight=3]; 3162[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3162[label="",style="solid", color="blue", weight=9]; 3162 -> 1286[label="",style="solid", color="blue", weight=3]; 3163[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3163[label="",style="solid", color="blue", weight=9]; 3163 -> 1287[label="",style="solid", color="blue", weight=3]; 3164[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3164[label="",style="solid", color="blue", weight=9]; 3164 -> 1288[label="",style="solid", color="blue", weight=3]; 3165[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3165[label="",style="solid", color="blue", weight=9]; 3165 -> 1289[label="",style="solid", color="blue", weight=3]; 3166[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3166[label="",style="solid", color="blue", weight=9]; 3166 -> 1290[label="",style="solid", color="blue", weight=3]; 3167[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3167[label="",style="solid", color="blue", weight=9]; 3167 -> 1291[label="",style="solid", color="blue", weight=3]; 3168[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3168[label="",style="solid", color="blue", weight=9]; 3168 -> 1292[label="",style="solid", color="blue", weight=3]; 3169[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3169[label="",style="solid", color="blue", weight=9]; 3169 -> 1293[label="",style="solid", color="blue", weight=3]; 3170[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3170[label="",style="solid", color="blue", weight=9]; 3170 -> 1294[label="",style="solid", color="blue", weight=3]; 1103[label="primEqDouble (Double vwx3000 vwx3001) (Double vwx4000 vwx4001)",fontsize=16,color="black",shape="box"];1103 -> 1295[label="",style="solid", color="black", weight=3]; 1104[label="primEqInt (Pos (Succ vwx30000)) vwx400",fontsize=16,color="burlywood",shape="box"];3171[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3171[label="",style="solid", color="burlywood", weight=9]; 3171 -> 1296[label="",style="solid", color="burlywood", weight=3]; 3172[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3172[label="",style="solid", color="burlywood", weight=9]; 3172 -> 1297[label="",style="solid", color="burlywood", weight=3]; 1105[label="primEqInt (Pos Zero) vwx400",fontsize=16,color="burlywood",shape="box"];3173[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];1105 -> 3173[label="",style="solid", color="burlywood", weight=9]; 3173 -> 1298[label="",style="solid", color="burlywood", weight=3]; 3174[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];1105 -> 3174[label="",style="solid", color="burlywood", weight=9]; 3174 -> 1299[label="",style="solid", color="burlywood", weight=3]; 1106[label="primEqInt (Neg (Succ vwx30000)) vwx400",fontsize=16,color="burlywood",shape="box"];3175[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];1106 -> 3175[label="",style="solid", color="burlywood", weight=9]; 3175 -> 1300[label="",style="solid", color="burlywood", weight=3]; 3176[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];1106 -> 3176[label="",style="solid", color="burlywood", weight=9]; 3176 -> 1301[label="",style="solid", color="burlywood", weight=3]; 1107[label="primEqInt (Neg Zero) vwx400",fontsize=16,color="burlywood",shape="box"];3177[label="vwx400/Pos vwx4000",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3177[label="",style="solid", color="burlywood", weight=9]; 3177 -> 1302[label="",style="solid", color="burlywood", weight=3]; 3178[label="vwx400/Neg vwx4000",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3178[label="",style="solid", color="burlywood", weight=9]; 3178 -> 1303[label="",style="solid", color="burlywood", weight=3]; 1108 -> 782[label="",style="dashed", color="red", weight=0]; 1108[label="vwx3000 == vwx4000 && vwx3001 == vwx4001 && vwx3002 == vwx4002",fontsize=16,color="magenta"];1108 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1108 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1109[label="primEqFloat (Float vwx3000 vwx3001) (Float vwx4000 vwx4001)",fontsize=16,color="black",shape="box"];1109 -> 1306[label="",style="solid", color="black", weight=3]; 1110[label="vwx36 <= vwx37",fontsize=16,color="black",shape="triangle"];1110 -> 1307[label="",style="solid", color="black", weight=3]; 1111[label="vwx36 <= vwx37",fontsize=16,color="black",shape="triangle"];1111 -> 1308[label="",style="solid", color="black", weight=3]; 1112[label="vwx36 <= vwx37",fontsize=16,color="burlywood",shape="triangle"];3179[label="vwx36/(vwx360,vwx361)",fontsize=10,color="white",style="solid",shape="box"];1112 -> 3179[label="",style="solid", color="burlywood", weight=9]; 3179 -> 1309[label="",style="solid", color="burlywood", weight=3]; 1113[label="vwx36 <= vwx37",fontsize=16,color="black",shape="triangle"];1113 -> 1310[label="",style="solid", color="black", weight=3]; 1114[label="vwx36 <= vwx37",fontsize=16,color="black",shape="triangle"];1114 -> 1311[label="",style="solid", color="black", weight=3]; 1115[label="vwx36 <= vwx37",fontsize=16,color="burlywood",shape="triangle"];3180[label="vwx36/Nothing",fontsize=10,color="white",style="solid",shape="box"];1115 -> 3180[label="",style="solid", color="burlywood", weight=9]; 3180 -> 1312[label="",style="solid", color="burlywood", weight=3]; 3181[label="vwx36/Just vwx360",fontsize=10,color="white",style="solid",shape="box"];1115 -> 3181[label="",style="solid", color="burlywood", weight=9]; 3181 -> 1313[label="",style="solid", color="burlywood", weight=3]; 1116[label="vwx36 <= vwx37",fontsize=16,color="burlywood",shape="triangle"];3182[label="vwx36/False",fontsize=10,color="white",style="solid",shape="box"];1116 -> 3182[label="",style="solid", color="burlywood", weight=9]; 3182 -> 1314[label="",style="solid", color="burlywood", weight=3]; 3183[label="vwx36/True",fontsize=10,color="white",style="solid",shape="box"];1116 -> 3183[label="",style="solid", color="burlywood", weight=9]; 3183 -> 1315[label="",style="solid", color="burlywood", weight=3]; 1117[label="vwx36 <= vwx37",fontsize=16,color="black",shape="triangle"];1117 -> 1316[label="",style="solid", color="black", weight=3]; 1118[label="vwx36 <= vwx37",fontsize=16,color="burlywood",shape="triangle"];3184[label="vwx36/Left vwx360",fontsize=10,color="white",style="solid",shape="box"];1118 -> 3184[label="",style="solid", color="burlywood", weight=9]; 3184 -> 1317[label="",style="solid", color="burlywood", weight=3]; 3185[label="vwx36/Right vwx360",fontsize=10,color="white",style="solid",shape="box"];1118 -> 3185[label="",style="solid", color="burlywood", weight=9]; 3185 -> 1318[label="",style="solid", color="burlywood", weight=3]; 1119[label="vwx36 <= vwx37",fontsize=16,color="burlywood",shape="triangle"];3186[label="vwx36/(vwx360,vwx361,vwx362)",fontsize=10,color="white",style="solid",shape="box"];1119 -> 3186[label="",style="solid", color="burlywood", weight=9]; 3186 -> 1319[label="",style="solid", color="burlywood", weight=3]; 1120[label="vwx36 <= vwx37",fontsize=16,color="black",shape="triangle"];1120 -> 1320[label="",style="solid", color="black", weight=3]; 1121[label="vwx36 <= vwx37",fontsize=16,color="burlywood",shape="triangle"];3187[label="vwx36/LT",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3187[label="",style="solid", color="burlywood", weight=9]; 3187 -> 1321[label="",style="solid", color="burlywood", weight=3]; 3188[label="vwx36/EQ",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3188[label="",style="solid", color="burlywood", weight=9]; 3188 -> 1322[label="",style="solid", color="burlywood", weight=3]; 3189[label="vwx36/GT",fontsize=10,color="white",style="solid",shape="box"];1121 -> 3189[label="",style="solid", color="burlywood", weight=9]; 3189 -> 1323[label="",style="solid", color="burlywood", weight=3]; 1122[label="vwx36 <= vwx37",fontsize=16,color="black",shape="triangle"];1122 -> 1324[label="",style="solid", color="black", weight=3]; 1123[label="vwx36 <= vwx37",fontsize=16,color="black",shape="triangle"];1123 -> 1325[label="",style="solid", color="black", weight=3]; 1124[label="compare0 (Just vwx97) (Just vwx98) otherwise",fontsize=16,color="black",shape="box"];1124 -> 1326[label="",style="solid", color="black", weight=3]; 1125[label="LT",fontsize=16,color="green",shape="box"];1126 -> 1110[label="",style="dashed", color="red", weight=0]; 1126[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1126 -> 1327[label="",style="dashed", color="magenta", weight=3]; 1126 -> 1328[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1111[label="",style="dashed", color="red", weight=0]; 1127[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1127 -> 1329[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1330[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1112[label="",style="dashed", color="red", weight=0]; 1128[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1128 -> 1331[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1332[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1113[label="",style="dashed", color="red", weight=0]; 1129[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1129 -> 1333[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1334[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1114[label="",style="dashed", color="red", weight=0]; 1130[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1130 -> 1335[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1336[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1115[label="",style="dashed", color="red", weight=0]; 1131[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1131 -> 1337[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1338[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1116[label="",style="dashed", color="red", weight=0]; 1132[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1132 -> 1339[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1340[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1117[label="",style="dashed", color="red", weight=0]; 1133[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1133 -> 1341[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1342[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1118[label="",style="dashed", color="red", weight=0]; 1134[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1134 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1344[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1119[label="",style="dashed", color="red", weight=0]; 1135[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1135 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1346[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1120[label="",style="dashed", color="red", weight=0]; 1136[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1136 -> 1347[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1121[label="",style="dashed", color="red", weight=0]; 1137[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1137 -> 1349[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1122[label="",style="dashed", color="red", weight=0]; 1138[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1138 -> 1351[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1139 -> 1123[label="",style="dashed", color="red", weight=0]; 1139[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1139 -> 1353[label="",style="dashed", color="magenta", weight=3]; 1139 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1140[label="compare0 (Left vwx104) (Left vwx105) otherwise",fontsize=16,color="black",shape="box"];1140 -> 1355[label="",style="solid", color="black", weight=3]; 1141[label="LT",fontsize=16,color="green",shape="box"];1142 -> 1110[label="",style="dashed", color="red", weight=0]; 1142[label="vwx50 <= vwx51",fontsize=16,color="magenta"];1142 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1142 -> 1357[label="",style="dashed", color="magenta", weight=3]; 1143 -> 1111[label="",style="dashed", color="red", weight=0]; 1143[label="vwx50 <= vwx51",fontsize=16,color="magenta"];1143 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1143 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1144 -> 1112[label="",style="dashed", color="red", weight=0]; 1144[label="vwx50 <= vwx51",fontsize=16,color="magenta"];1144 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1144 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1145 -> 1113[label="",style="dashed", color="red", weight=0]; 1145[label="vwx50 <= vwx51",fontsize=16,color="magenta"];1145 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1145 -> 1363[label="",style="dashed", color="magenta", weight=3]; 1146 -> 1114[label="",style="dashed", color="red", weight=0]; 1146[label="vwx50 <= vwx51",fontsize=16,color="magenta"];1146 -> 1364[label="",style="dashed", color="magenta", weight=3]; 1146 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1147 -> 1115[label="",style="dashed", color="red", weight=0]; 1147[label="vwx50 <= vwx51",fontsize=16,color="magenta"];1147 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1147 -> 1367[label="",style="dashed", color="magenta", weight=3]; 1148 -> 1116[label="",style="dashed", color="red", weight=0]; 1148[label="vwx50 <= vwx51",fontsize=16,color="magenta"];1148 -> 1368[label="",style="dashed", color="magenta", weight=3]; 1148 -> 1369[label="",style="dashed", color="magenta", weight=3]; 1149 -> 1117[label="",style="dashed", color="red", weight=0]; 1149[label="vwx50 <= vwx51",fontsize=16,color="magenta"];1149 -> 1370[label="",style="dashed", color="magenta", weight=3]; 1149 -> 1371[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1118[label="",style="dashed", color="red", weight=0]; 1150[label="vwx50 <= vwx51",fontsize=16,color="magenta"];1150 -> 1372[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1373[label="",style="dashed", color="magenta", weight=3]; 1151 -> 1119[label="",style="dashed", color="red", weight=0]; 1151[label="vwx50 <= vwx51",fontsize=16,color="magenta"];1151 -> 1374[label="",style="dashed", color="magenta", weight=3]; 1151 -> 1375[label="",style="dashed", color="magenta", weight=3]; 1152 -> 1120[label="",style="dashed", color="red", weight=0]; 1152[label="vwx50 <= vwx51",fontsize=16,color="magenta"];1152 -> 1376[label="",style="dashed", color="magenta", weight=3]; 1152 -> 1377[label="",style="dashed", color="magenta", weight=3]; 1153 -> 1121[label="",style="dashed", color="red", weight=0]; 1153[label="vwx50 <= vwx51",fontsize=16,color="magenta"];1153 -> 1378[label="",style="dashed", color="magenta", weight=3]; 1153 -> 1379[label="",style="dashed", color="magenta", weight=3]; 1154 -> 1122[label="",style="dashed", color="red", weight=0]; 1154[label="vwx50 <= vwx51",fontsize=16,color="magenta"];1154 -> 1380[label="",style="dashed", color="magenta", weight=3]; 1154 -> 1381[label="",style="dashed", color="magenta", weight=3]; 1155 -> 1123[label="",style="dashed", color="red", weight=0]; 1155[label="vwx50 <= vwx51",fontsize=16,color="magenta"];1155 -> 1382[label="",style="dashed", color="magenta", weight=3]; 1155 -> 1383[label="",style="dashed", color="magenta", weight=3]; 1156[label="compare0 (Right vwx112) (Right vwx113) otherwise",fontsize=16,color="black",shape="box"];1156 -> 1384[label="",style="solid", color="black", weight=3]; 1157[label="LT",fontsize=16,color="green",shape="box"];1177 -> 1725[label="",style="dashed", color="red", weight=0]; 1177[label="vwx62 < vwx65 || vwx62 == vwx65 && vwx63 <= vwx66",fontsize=16,color="magenta"];1177 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1177 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1178[label="vwx61 == vwx64",fontsize=16,color="blue",shape="box"];3190[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 3190[label="",style="solid", color="blue", weight=9]; 3190 -> 1387[label="",style="solid", color="blue", weight=3]; 3191[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 3191[label="",style="solid", color="blue", weight=9]; 3191 -> 1388[label="",style="solid", color="blue", weight=3]; 3192[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 3192[label="",style="solid", color="blue", weight=9]; 3192 -> 1389[label="",style="solid", color="blue", weight=3]; 3193[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 3193[label="",style="solid", color="blue", weight=9]; 3193 -> 1390[label="",style="solid", color="blue", weight=3]; 3194[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 3194[label="",style="solid", color="blue", weight=9]; 3194 -> 1391[label="",style="solid", color="blue", weight=3]; 3195[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 3195[label="",style="solid", color="blue", weight=9]; 3195 -> 1392[label="",style="solid", color="blue", weight=3]; 3196[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 3196[label="",style="solid", color="blue", weight=9]; 3196 -> 1393[label="",style="solid", color="blue", weight=3]; 3197[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 3197[label="",style="solid", color="blue", weight=9]; 3197 -> 1394[label="",style="solid", color="blue", weight=3]; 3198[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 3198[label="",style="solid", color="blue", weight=9]; 3198 -> 1395[label="",style="solid", color="blue", weight=3]; 3199[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 3199[label="",style="solid", color="blue", weight=9]; 3199 -> 1396[label="",style="solid", color="blue", weight=3]; 3200[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 3200[label="",style="solid", color="blue", weight=9]; 3200 -> 1397[label="",style="solid", color="blue", weight=3]; 3201[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 3201[label="",style="solid", color="blue", weight=9]; 3201 -> 1398[label="",style="solid", color="blue", weight=3]; 3202[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 3202[label="",style="solid", color="blue", weight=9]; 3202 -> 1399[label="",style="solid", color="blue", weight=3]; 3203[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1178 -> 3203[label="",style="solid", color="blue", weight=9]; 3203 -> 1400[label="",style="solid", color="blue", weight=3]; 1179 -> 1055[label="",style="dashed", color="red", weight=0]; 1179[label="vwx61 < vwx64",fontsize=16,color="magenta"];1179 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1179 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1180 -> 1056[label="",style="dashed", color="red", weight=0]; 1180[label="vwx61 < vwx64",fontsize=16,color="magenta"];1180 -> 1403[label="",style="dashed", color="magenta", weight=3]; 1180 -> 1404[label="",style="dashed", color="magenta", weight=3]; 1181 -> 1057[label="",style="dashed", color="red", weight=0]; 1181[label="vwx61 < vwx64",fontsize=16,color="magenta"];1181 -> 1405[label="",style="dashed", color="magenta", weight=3]; 1181 -> 1406[label="",style="dashed", color="magenta", weight=3]; 1182 -> 4[label="",style="dashed", color="red", weight=0]; 1182[label="vwx61 < vwx64",fontsize=16,color="magenta"];1182 -> 1407[label="",style="dashed", color="magenta", weight=3]; 1182 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1183 -> 1059[label="",style="dashed", color="red", weight=0]; 1183[label="vwx61 < vwx64",fontsize=16,color="magenta"];1183 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1183 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1184 -> 1060[label="",style="dashed", color="red", weight=0]; 1184[label="vwx61 < vwx64",fontsize=16,color="magenta"];1184 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1184 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1185 -> 1061[label="",style="dashed", color="red", weight=0]; 1185[label="vwx61 < vwx64",fontsize=16,color="magenta"];1185 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1185 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1062[label="",style="dashed", color="red", weight=0]; 1186[label="vwx61 < vwx64",fontsize=16,color="magenta"];1186 -> 1415[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1416[label="",style="dashed", color="magenta", weight=3]; 1187 -> 1063[label="",style="dashed", color="red", weight=0]; 1187[label="vwx61 < vwx64",fontsize=16,color="magenta"];1187 -> 1417[label="",style="dashed", color="magenta", weight=3]; 1187 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1188 -> 1064[label="",style="dashed", color="red", weight=0]; 1188[label="vwx61 < vwx64",fontsize=16,color="magenta"];1188 -> 1419[label="",style="dashed", color="magenta", weight=3]; 1188 -> 1420[label="",style="dashed", color="magenta", weight=3]; 1189 -> 1065[label="",style="dashed", color="red", weight=0]; 1189[label="vwx61 < vwx64",fontsize=16,color="magenta"];1189 -> 1421[label="",style="dashed", color="magenta", weight=3]; 1189 -> 1422[label="",style="dashed", color="magenta", weight=3]; 1190 -> 1066[label="",style="dashed", color="red", weight=0]; 1190[label="vwx61 < vwx64",fontsize=16,color="magenta"];1190 -> 1423[label="",style="dashed", color="magenta", weight=3]; 1190 -> 1424[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1067[label="",style="dashed", color="red", weight=0]; 1191[label="vwx61 < vwx64",fontsize=16,color="magenta"];1191 -> 1425[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1426[label="",style="dashed", color="magenta", weight=3]; 1192 -> 1068[label="",style="dashed", color="red", weight=0]; 1192[label="vwx61 < vwx64",fontsize=16,color="magenta"];1192 -> 1427[label="",style="dashed", color="magenta", weight=3]; 1192 -> 1428[label="",style="dashed", color="magenta", weight=3]; 1193[label="compare1 (vwx139,vwx140,vwx141) (vwx142,vwx143,vwx144) (False || vwx146)",fontsize=16,color="black",shape="box"];1193 -> 1429[label="",style="solid", color="black", weight=3]; 1194[label="compare1 (vwx139,vwx140,vwx141) (vwx142,vwx143,vwx144) (True || vwx146)",fontsize=16,color="black",shape="box"];1194 -> 1430[label="",style="solid", color="black", weight=3]; 1195[label="primMulNat (Succ vwx30000) (Succ vwx40100)",fontsize=16,color="black",shape="box"];1195 -> 1431[label="",style="solid", color="black", weight=3]; 1196[label="primMulNat (Succ vwx30000) Zero",fontsize=16,color="black",shape="box"];1196 -> 1432[label="",style="solid", color="black", weight=3]; 1197[label="primMulNat Zero (Succ vwx40100)",fontsize=16,color="black",shape="box"];1197 -> 1433[label="",style="solid", color="black", weight=3]; 1198[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1198 -> 1434[label="",style="solid", color="black", weight=3]; 1199 -> 351[label="",style="dashed", color="red", weight=0]; 1199[label="compare vwx74 vwx76 == LT",fontsize=16,color="magenta"];1199 -> 1435[label="",style="dashed", color="magenta", weight=3]; 1199 -> 1436[label="",style="dashed", color="magenta", weight=3]; 1200 -> 351[label="",style="dashed", color="red", weight=0]; 1200[label="compare vwx74 vwx76 == LT",fontsize=16,color="magenta"];1200 -> 1437[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1201 -> 351[label="",style="dashed", color="red", weight=0]; 1201[label="compare vwx74 vwx76 == LT",fontsize=16,color="magenta"];1201 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1202[label="vwx74",fontsize=16,color="green",shape="box"];1203[label="vwx76",fontsize=16,color="green",shape="box"];1204 -> 351[label="",style="dashed", color="red", weight=0]; 1204[label="compare vwx74 vwx76 == LT",fontsize=16,color="magenta"];1204 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1442[label="",style="dashed", color="magenta", weight=3]; 1205 -> 351[label="",style="dashed", color="red", weight=0]; 1205[label="compare vwx74 vwx76 == LT",fontsize=16,color="magenta"];1205 -> 1443[label="",style="dashed", color="magenta", weight=3]; 1205 -> 1444[label="",style="dashed", color="magenta", weight=3]; 1206 -> 351[label="",style="dashed", color="red", weight=0]; 1206[label="compare vwx74 vwx76 == LT",fontsize=16,color="magenta"];1206 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1206 -> 1446[label="",style="dashed", color="magenta", weight=3]; 1207 -> 351[label="",style="dashed", color="red", weight=0]; 1207[label="compare vwx74 vwx76 == LT",fontsize=16,color="magenta"];1207 -> 1447[label="",style="dashed", color="magenta", weight=3]; 1207 -> 1448[label="",style="dashed", color="magenta", weight=3]; 1208 -> 351[label="",style="dashed", color="red", weight=0]; 1208[label="compare vwx74 vwx76 == LT",fontsize=16,color="magenta"];1208 -> 1449[label="",style="dashed", color="magenta", weight=3]; 1208 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1209 -> 351[label="",style="dashed", color="red", weight=0]; 1209[label="compare vwx74 vwx76 == LT",fontsize=16,color="magenta"];1209 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1209 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1210 -> 351[label="",style="dashed", color="red", weight=0]; 1210[label="compare vwx74 vwx76 == LT",fontsize=16,color="magenta"];1210 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1210 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1211 -> 351[label="",style="dashed", color="red", weight=0]; 1211[label="compare vwx74 vwx76 == LT",fontsize=16,color="magenta"];1211 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1211 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1212 -> 351[label="",style="dashed", color="red", weight=0]; 1212[label="compare vwx74 vwx76 == LT",fontsize=16,color="magenta"];1212 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1212 -> 1458[label="",style="dashed", color="magenta", weight=3]; 1213 -> 351[label="",style="dashed", color="red", weight=0]; 1213[label="compare vwx74 vwx76 == LT",fontsize=16,color="magenta"];1213 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1213 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1214 -> 1110[label="",style="dashed", color="red", weight=0]; 1214[label="vwx75 <= vwx77",fontsize=16,color="magenta"];1214 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1214 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1215 -> 1111[label="",style="dashed", color="red", weight=0]; 1215[label="vwx75 <= vwx77",fontsize=16,color="magenta"];1215 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1215 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1216 -> 1112[label="",style="dashed", color="red", weight=0]; 1216[label="vwx75 <= vwx77",fontsize=16,color="magenta"];1216 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1216 -> 1466[label="",style="dashed", color="magenta", weight=3]; 1217 -> 1113[label="",style="dashed", color="red", weight=0]; 1217[label="vwx75 <= vwx77",fontsize=16,color="magenta"];1217 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1217 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1218 -> 1114[label="",style="dashed", color="red", weight=0]; 1218[label="vwx75 <= vwx77",fontsize=16,color="magenta"];1218 -> 1469[label="",style="dashed", color="magenta", weight=3]; 1218 -> 1470[label="",style="dashed", color="magenta", weight=3]; 1219 -> 1115[label="",style="dashed", color="red", weight=0]; 1219[label="vwx75 <= vwx77",fontsize=16,color="magenta"];1219 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1219 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1220 -> 1116[label="",style="dashed", color="red", weight=0]; 1220[label="vwx75 <= vwx77",fontsize=16,color="magenta"];1220 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1220 -> 1474[label="",style="dashed", color="magenta", weight=3]; 1221 -> 1117[label="",style="dashed", color="red", weight=0]; 1221[label="vwx75 <= vwx77",fontsize=16,color="magenta"];1221 -> 1475[label="",style="dashed", color="magenta", weight=3]; 1221 -> 1476[label="",style="dashed", color="magenta", weight=3]; 1222 -> 1118[label="",style="dashed", color="red", weight=0]; 1222[label="vwx75 <= vwx77",fontsize=16,color="magenta"];1222 -> 1477[label="",style="dashed", color="magenta", weight=3]; 1222 -> 1478[label="",style="dashed", color="magenta", weight=3]; 1223 -> 1119[label="",style="dashed", color="red", weight=0]; 1223[label="vwx75 <= vwx77",fontsize=16,color="magenta"];1223 -> 1479[label="",style="dashed", color="magenta", weight=3]; 1223 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1120[label="",style="dashed", color="red", weight=0]; 1224[label="vwx75 <= vwx77",fontsize=16,color="magenta"];1224 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1225 -> 1121[label="",style="dashed", color="red", weight=0]; 1225[label="vwx75 <= vwx77",fontsize=16,color="magenta"];1225 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1225 -> 1484[label="",style="dashed", color="magenta", weight=3]; 1226 -> 1122[label="",style="dashed", color="red", weight=0]; 1226[label="vwx75 <= vwx77",fontsize=16,color="magenta"];1226 -> 1485[label="",style="dashed", color="magenta", weight=3]; 1226 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1227 -> 1123[label="",style="dashed", color="red", weight=0]; 1227[label="vwx75 <= vwx77",fontsize=16,color="magenta"];1227 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1227 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1228 -> 357[label="",style="dashed", color="red", weight=0]; 1228[label="vwx74 == vwx76",fontsize=16,color="magenta"];1228 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1228 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1229 -> 352[label="",style="dashed", color="red", weight=0]; 1229[label="vwx74 == vwx76",fontsize=16,color="magenta"];1229 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1229 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1230 -> 358[label="",style="dashed", color="red", weight=0]; 1230[label="vwx74 == vwx76",fontsize=16,color="magenta"];1230 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1230 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1231 -> 354[label="",style="dashed", color="red", weight=0]; 1231[label="vwx74 == vwx76",fontsize=16,color="magenta"];1231 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1231 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1232 -> 363[label="",style="dashed", color="red", weight=0]; 1232[label="vwx74 == vwx76",fontsize=16,color="magenta"];1232 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1232 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1233 -> 359[label="",style="dashed", color="red", weight=0]; 1233[label="vwx74 == vwx76",fontsize=16,color="magenta"];1233 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1233 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1234 -> 350[label="",style="dashed", color="red", weight=0]; 1234[label="vwx74 == vwx76",fontsize=16,color="magenta"];1234 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1234 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1235 -> 356[label="",style="dashed", color="red", weight=0]; 1235[label="vwx74 == vwx76",fontsize=16,color="magenta"];1235 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1236 -> 355[label="",style="dashed", color="red", weight=0]; 1236[label="vwx74 == vwx76",fontsize=16,color="magenta"];1236 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1237 -> 362[label="",style="dashed", color="red", weight=0]; 1237[label="vwx74 == vwx76",fontsize=16,color="magenta"];1237 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1237 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1238 -> 353[label="",style="dashed", color="red", weight=0]; 1238[label="vwx74 == vwx76",fontsize=16,color="magenta"];1238 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1238 -> 1510[label="",style="dashed", color="magenta", weight=3]; 1239 -> 351[label="",style="dashed", color="red", weight=0]; 1239[label="vwx74 == vwx76",fontsize=16,color="magenta"];1239 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1239 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1240 -> 361[label="",style="dashed", color="red", weight=0]; 1240[label="vwx74 == vwx76",fontsize=16,color="magenta"];1240 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1240 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1241 -> 360[label="",style="dashed", color="red", weight=0]; 1241[label="vwx74 == vwx76",fontsize=16,color="magenta"];1241 -> 1515[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1516[label="",style="dashed", color="magenta", weight=3]; 1242[label="compare1 (vwx124,vwx125) (vwx126,vwx127) vwx129",fontsize=16,color="burlywood",shape="triangle"];3204[label="vwx129/False",fontsize=10,color="white",style="solid",shape="box"];1242 -> 3204[label="",style="solid", color="burlywood", weight=9]; 3204 -> 1517[label="",style="solid", color="burlywood", weight=3]; 3205[label="vwx129/True",fontsize=10,color="white",style="solid",shape="box"];1242 -> 3205[label="",style="solid", color="burlywood", weight=9]; 3205 -> 1518[label="",style="solid", color="burlywood", weight=3]; 1243 -> 1242[label="",style="dashed", color="red", weight=0]; 1243[label="compare1 (vwx124,vwx125) (vwx126,vwx127) True",fontsize=16,color="magenta"];1243 -> 1519[label="",style="dashed", color="magenta", weight=3]; 1244[label="vwx3000",fontsize=16,color="green",shape="box"];1245[label="vwx4000",fontsize=16,color="green",shape="box"];1246[label="primEqNat vwx3000 vwx4000",fontsize=16,color="burlywood",shape="triangle"];3206[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];1246 -> 3206[label="",style="solid", color="burlywood", weight=9]; 3206 -> 1520[label="",style="solid", color="burlywood", weight=3]; 3207[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1246 -> 3207[label="",style="solid", color="burlywood", weight=9]; 3207 -> 1521[label="",style="solid", color="burlywood", weight=3]; 1247 -> 354[label="",style="dashed", color="red", weight=0]; 1247[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1247 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1247 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1248[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3208[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3208[label="",style="solid", color="blue", weight=9]; 3208 -> 1524[label="",style="solid", color="blue", weight=3]; 3209[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3209[label="",style="solid", color="blue", weight=9]; 3209 -> 1525[label="",style="solid", color="blue", weight=3]; 3210[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3210[label="",style="solid", color="blue", weight=9]; 3210 -> 1526[label="",style="solid", color="blue", weight=3]; 3211[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3211[label="",style="solid", color="blue", weight=9]; 3211 -> 1527[label="",style="solid", color="blue", weight=3]; 3212[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3212[label="",style="solid", color="blue", weight=9]; 3212 -> 1528[label="",style="solid", color="blue", weight=3]; 3213[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3213[label="",style="solid", color="blue", weight=9]; 3213 -> 1529[label="",style="solid", color="blue", weight=3]; 3214[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3214[label="",style="solid", color="blue", weight=9]; 3214 -> 1530[label="",style="solid", color="blue", weight=3]; 3215[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3215[label="",style="solid", color="blue", weight=9]; 3215 -> 1531[label="",style="solid", color="blue", weight=3]; 3216[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3216[label="",style="solid", color="blue", weight=9]; 3216 -> 1532[label="",style="solid", color="blue", weight=3]; 3217[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3217[label="",style="solid", color="blue", weight=9]; 3217 -> 1533[label="",style="solid", color="blue", weight=3]; 3218[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3218[label="",style="solid", color="blue", weight=9]; 3218 -> 1534[label="",style="solid", color="blue", weight=3]; 3219[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3219[label="",style="solid", color="blue", weight=9]; 3219 -> 1535[label="",style="solid", color="blue", weight=3]; 3220[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3220[label="",style="solid", color="blue", weight=9]; 3220 -> 1536[label="",style="solid", color="blue", weight=3]; 3221[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3221[label="",style="solid", color="blue", weight=9]; 3221 -> 1537[label="",style="solid", color="blue", weight=3]; 1249 -> 350[label="",style="dashed", color="red", weight=0]; 1249[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1249 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1249 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1250 -> 351[label="",style="dashed", color="red", weight=0]; 1250[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1250 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1250 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1251 -> 352[label="",style="dashed", color="red", weight=0]; 1251[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1251 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1251 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1252 -> 353[label="",style="dashed", color="red", weight=0]; 1252[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1252 -> 1544[label="",style="dashed", color="magenta", weight=3]; 1252 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1253 -> 354[label="",style="dashed", color="red", weight=0]; 1253[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1253 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1253 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1254 -> 355[label="",style="dashed", color="red", weight=0]; 1254[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1254 -> 1548[label="",style="dashed", color="magenta", weight=3]; 1254 -> 1549[label="",style="dashed", color="magenta", weight=3]; 1255 -> 356[label="",style="dashed", color="red", weight=0]; 1255[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1255 -> 1550[label="",style="dashed", color="magenta", weight=3]; 1255 -> 1551[label="",style="dashed", color="magenta", weight=3]; 1256 -> 357[label="",style="dashed", color="red", weight=0]; 1256[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1256 -> 1552[label="",style="dashed", color="magenta", weight=3]; 1256 -> 1553[label="",style="dashed", color="magenta", weight=3]; 1257 -> 358[label="",style="dashed", color="red", weight=0]; 1257[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1257 -> 1554[label="",style="dashed", color="magenta", weight=3]; 1257 -> 1555[label="",style="dashed", color="magenta", weight=3]; 1258 -> 359[label="",style="dashed", color="red", weight=0]; 1258[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1258 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1258 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1259 -> 360[label="",style="dashed", color="red", weight=0]; 1259[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1259 -> 1558[label="",style="dashed", color="magenta", weight=3]; 1259 -> 1559[label="",style="dashed", color="magenta", weight=3]; 1260 -> 361[label="",style="dashed", color="red", weight=0]; 1260[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1260 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1260 -> 1561[label="",style="dashed", color="magenta", weight=3]; 1261 -> 362[label="",style="dashed", color="red", weight=0]; 1261[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1261 -> 1562[label="",style="dashed", color="magenta", weight=3]; 1261 -> 1563[label="",style="dashed", color="magenta", weight=3]; 1262 -> 363[label="",style="dashed", color="red", weight=0]; 1262[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1262 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1262 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1263 -> 350[label="",style="dashed", color="red", weight=0]; 1263[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1263 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1263 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1264 -> 351[label="",style="dashed", color="red", weight=0]; 1264[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1264 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1264 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1265 -> 352[label="",style="dashed", color="red", weight=0]; 1265[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1265 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1265 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1266 -> 353[label="",style="dashed", color="red", weight=0]; 1266[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1266 -> 1572[label="",style="dashed", color="magenta", weight=3]; 1266 -> 1573[label="",style="dashed", color="magenta", weight=3]; 1267 -> 354[label="",style="dashed", color="red", weight=0]; 1267[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1267 -> 1574[label="",style="dashed", color="magenta", weight=3]; 1267 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1268 -> 355[label="",style="dashed", color="red", weight=0]; 1268[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1268 -> 1576[label="",style="dashed", color="magenta", weight=3]; 1268 -> 1577[label="",style="dashed", color="magenta", weight=3]; 1269 -> 356[label="",style="dashed", color="red", weight=0]; 1269[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1269 -> 1578[label="",style="dashed", color="magenta", weight=3]; 1269 -> 1579[label="",style="dashed", color="magenta", weight=3]; 1270 -> 357[label="",style="dashed", color="red", weight=0]; 1270[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1270 -> 1580[label="",style="dashed", color="magenta", weight=3]; 1270 -> 1581[label="",style="dashed", color="magenta", weight=3]; 1271 -> 358[label="",style="dashed", color="red", weight=0]; 1271[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1271 -> 1582[label="",style="dashed", color="magenta", weight=3]; 1271 -> 1583[label="",style="dashed", color="magenta", weight=3]; 1272 -> 359[label="",style="dashed", color="red", weight=0]; 1272[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1272 -> 1584[label="",style="dashed", color="magenta", weight=3]; 1272 -> 1585[label="",style="dashed", color="magenta", weight=3]; 1273 -> 360[label="",style="dashed", color="red", weight=0]; 1273[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1273 -> 1586[label="",style="dashed", color="magenta", weight=3]; 1273 -> 1587[label="",style="dashed", color="magenta", weight=3]; 1274 -> 361[label="",style="dashed", color="red", weight=0]; 1274[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1274 -> 1588[label="",style="dashed", color="magenta", weight=3]; 1274 -> 1589[label="",style="dashed", color="magenta", weight=3]; 1275 -> 362[label="",style="dashed", color="red", weight=0]; 1275[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1275 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1275 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1276 -> 363[label="",style="dashed", color="red", weight=0]; 1276[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1276 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1276 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1277[label="vwx3001 == vwx4001",fontsize=16,color="blue",shape="box"];3222[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3222[label="",style="solid", color="blue", weight=9]; 3222 -> 1594[label="",style="solid", color="blue", weight=3]; 3223[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1277 -> 3223[label="",style="solid", color="blue", weight=9]; 3223 -> 1595[label="",style="solid", color="blue", weight=3]; 1278[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3224[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1278 -> 3224[label="",style="solid", color="blue", weight=9]; 3224 -> 1596[label="",style="solid", color="blue", weight=3]; 3225[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1278 -> 3225[label="",style="solid", color="blue", weight=9]; 3225 -> 1597[label="",style="solid", color="blue", weight=3]; 1279[label="vwx3001 == vwx4001",fontsize=16,color="blue",shape="box"];3226[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 3226[label="",style="solid", color="blue", weight=9]; 3226 -> 1598[label="",style="solid", color="blue", weight=3]; 3227[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 3227[label="",style="solid", color="blue", weight=9]; 3227 -> 1599[label="",style="solid", color="blue", weight=3]; 3228[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 3228[label="",style="solid", color="blue", weight=9]; 3228 -> 1600[label="",style="solid", color="blue", weight=3]; 3229[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 3229[label="",style="solid", color="blue", weight=9]; 3229 -> 1601[label="",style="solid", color="blue", weight=3]; 3230[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 3230[label="",style="solid", color="blue", weight=9]; 3230 -> 1602[label="",style="solid", color="blue", weight=3]; 3231[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 3231[label="",style="solid", color="blue", weight=9]; 3231 -> 1603[label="",style="solid", color="blue", weight=3]; 3232[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 3232[label="",style="solid", color="blue", weight=9]; 3232 -> 1604[label="",style="solid", color="blue", weight=3]; 3233[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 3233[label="",style="solid", color="blue", weight=9]; 3233 -> 1605[label="",style="solid", color="blue", weight=3]; 3234[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 3234[label="",style="solid", color="blue", weight=9]; 3234 -> 1606[label="",style="solid", color="blue", weight=3]; 3235[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 3235[label="",style="solid", color="blue", weight=9]; 3235 -> 1607[label="",style="solid", color="blue", weight=3]; 3236[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 3236[label="",style="solid", color="blue", weight=9]; 3236 -> 1608[label="",style="solid", color="blue", weight=3]; 3237[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 3237[label="",style="solid", color="blue", weight=9]; 3237 -> 1609[label="",style="solid", color="blue", weight=3]; 3238[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 3238[label="",style="solid", color="blue", weight=9]; 3238 -> 1610[label="",style="solid", color="blue", weight=3]; 3239[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1279 -> 3239[label="",style="solid", color="blue", weight=9]; 3239 -> 1611[label="",style="solid", color="blue", weight=3]; 1280[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3240[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3240[label="",style="solid", color="blue", weight=9]; 3240 -> 1612[label="",style="solid", color="blue", weight=3]; 3241[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3241[label="",style="solid", color="blue", weight=9]; 3241 -> 1613[label="",style="solid", color="blue", weight=3]; 3242[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3242[label="",style="solid", color="blue", weight=9]; 3242 -> 1614[label="",style="solid", color="blue", weight=3]; 3243[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3243[label="",style="solid", color="blue", weight=9]; 3243 -> 1615[label="",style="solid", color="blue", weight=3]; 3244[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3244[label="",style="solid", color="blue", weight=9]; 3244 -> 1616[label="",style="solid", color="blue", weight=3]; 3245[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3245[label="",style="solid", color="blue", weight=9]; 3245 -> 1617[label="",style="solid", color="blue", weight=3]; 3246[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3246[label="",style="solid", color="blue", weight=9]; 3246 -> 1618[label="",style="solid", color="blue", weight=3]; 3247[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3247[label="",style="solid", color="blue", weight=9]; 3247 -> 1619[label="",style="solid", color="blue", weight=3]; 3248[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3248[label="",style="solid", color="blue", weight=9]; 3248 -> 1620[label="",style="solid", color="blue", weight=3]; 3249[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3249[label="",style="solid", color="blue", weight=9]; 3249 -> 1621[label="",style="solid", color="blue", weight=3]; 3250[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3250[label="",style="solid", color="blue", weight=9]; 3250 -> 1622[label="",style="solid", color="blue", weight=3]; 3251[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3251[label="",style="solid", color="blue", weight=9]; 3251 -> 1623[label="",style="solid", color="blue", weight=3]; 3252[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3252[label="",style="solid", color="blue", weight=9]; 3252 -> 1624[label="",style="solid", color="blue", weight=3]; 3253[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1280 -> 3253[label="",style="solid", color="blue", weight=9]; 3253 -> 1625[label="",style="solid", color="blue", weight=3]; 1281 -> 350[label="",style="dashed", color="red", weight=0]; 1281[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1281 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1281 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1282 -> 351[label="",style="dashed", color="red", weight=0]; 1282[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1282 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1282 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1283 -> 352[label="",style="dashed", color="red", weight=0]; 1283[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1283 -> 1630[label="",style="dashed", color="magenta", weight=3]; 1283 -> 1631[label="",style="dashed", color="magenta", weight=3]; 1284 -> 353[label="",style="dashed", color="red", weight=0]; 1284[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1284 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1284 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1285 -> 354[label="",style="dashed", color="red", weight=0]; 1285[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1285 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1285 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1286 -> 355[label="",style="dashed", color="red", weight=0]; 1286[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1286 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1286 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1287 -> 356[label="",style="dashed", color="red", weight=0]; 1287[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1287 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1287 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1288 -> 357[label="",style="dashed", color="red", weight=0]; 1288[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1288 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1288 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1289 -> 358[label="",style="dashed", color="red", weight=0]; 1289[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1289 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1289 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1290 -> 359[label="",style="dashed", color="red", weight=0]; 1290[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1290 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1290 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1291 -> 360[label="",style="dashed", color="red", weight=0]; 1291[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1291 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1291 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1292 -> 361[label="",style="dashed", color="red", weight=0]; 1292[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1292 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1292 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1293 -> 362[label="",style="dashed", color="red", weight=0]; 1293[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1293 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1293 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1294 -> 363[label="",style="dashed", color="red", weight=0]; 1294[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1294 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1294 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1295 -> 361[label="",style="dashed", color="red", weight=0]; 1295[label="vwx3000 * vwx4001 == vwx3001 * vwx4000",fontsize=16,color="magenta"];1295 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1295 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1296[label="primEqInt (Pos (Succ vwx30000)) (Pos vwx4000)",fontsize=16,color="burlywood",shape="box"];3254[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1296 -> 3254[label="",style="solid", color="burlywood", weight=9]; 3254 -> 1656[label="",style="solid", color="burlywood", weight=3]; 3255[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1296 -> 3255[label="",style="solid", color="burlywood", weight=9]; 3255 -> 1657[label="",style="solid", color="burlywood", weight=3]; 1297[label="primEqInt (Pos (Succ vwx30000)) (Neg vwx4000)",fontsize=16,color="black",shape="box"];1297 -> 1658[label="",style="solid", color="black", weight=3]; 1298[label="primEqInt (Pos Zero) (Pos vwx4000)",fontsize=16,color="burlywood",shape="box"];3256[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1298 -> 3256[label="",style="solid", color="burlywood", weight=9]; 3256 -> 1659[label="",style="solid", color="burlywood", weight=3]; 3257[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1298 -> 3257[label="",style="solid", color="burlywood", weight=9]; 3257 -> 1660[label="",style="solid", color="burlywood", weight=3]; 1299[label="primEqInt (Pos Zero) (Neg vwx4000)",fontsize=16,color="burlywood",shape="box"];3258[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1299 -> 3258[label="",style="solid", color="burlywood", weight=9]; 3258 -> 1661[label="",style="solid", color="burlywood", weight=3]; 3259[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1299 -> 3259[label="",style="solid", color="burlywood", weight=9]; 3259 -> 1662[label="",style="solid", color="burlywood", weight=3]; 1300[label="primEqInt (Neg (Succ vwx30000)) (Pos vwx4000)",fontsize=16,color="black",shape="box"];1300 -> 1663[label="",style="solid", color="black", weight=3]; 1301[label="primEqInt (Neg (Succ vwx30000)) (Neg vwx4000)",fontsize=16,color="burlywood",shape="box"];3260[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1301 -> 3260[label="",style="solid", color="burlywood", weight=9]; 3260 -> 1664[label="",style="solid", color="burlywood", weight=3]; 3261[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1301 -> 3261[label="",style="solid", color="burlywood", weight=9]; 3261 -> 1665[label="",style="solid", color="burlywood", weight=3]; 1302[label="primEqInt (Neg Zero) (Pos vwx4000)",fontsize=16,color="burlywood",shape="box"];3262[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1302 -> 3262[label="",style="solid", color="burlywood", weight=9]; 3262 -> 1666[label="",style="solid", color="burlywood", weight=3]; 3263[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1302 -> 3263[label="",style="solid", color="burlywood", weight=9]; 3263 -> 1667[label="",style="solid", color="burlywood", weight=3]; 1303[label="primEqInt (Neg Zero) (Neg vwx4000)",fontsize=16,color="burlywood",shape="box"];3264[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3264[label="",style="solid", color="burlywood", weight=9]; 3264 -> 1668[label="",style="solid", color="burlywood", weight=3]; 3265[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1303 -> 3265[label="",style="solid", color="burlywood", weight=9]; 3265 -> 1669[label="",style="solid", color="burlywood", weight=3]; 1304 -> 782[label="",style="dashed", color="red", weight=0]; 1304[label="vwx3001 == vwx4001 && vwx3002 == vwx4002",fontsize=16,color="magenta"];1304 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1304 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1305[label="vwx3000 == vwx4000",fontsize=16,color="blue",shape="box"];3266[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3266[label="",style="solid", color="blue", weight=9]; 3266 -> 1672[label="",style="solid", color="blue", weight=3]; 3267[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3267[label="",style="solid", color="blue", weight=9]; 3267 -> 1673[label="",style="solid", color="blue", weight=3]; 3268[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3268[label="",style="solid", color="blue", weight=9]; 3268 -> 1674[label="",style="solid", color="blue", weight=3]; 3269[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3269[label="",style="solid", color="blue", weight=9]; 3269 -> 1675[label="",style="solid", color="blue", weight=3]; 3270[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3270[label="",style="solid", color="blue", weight=9]; 3270 -> 1676[label="",style="solid", color="blue", weight=3]; 3271[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3271[label="",style="solid", color="blue", weight=9]; 3271 -> 1677[label="",style="solid", color="blue", weight=3]; 3272[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3272[label="",style="solid", color="blue", weight=9]; 3272 -> 1678[label="",style="solid", color="blue", weight=3]; 3273[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3273[label="",style="solid", color="blue", weight=9]; 3273 -> 1679[label="",style="solid", color="blue", weight=3]; 3274[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3274[label="",style="solid", color="blue", weight=9]; 3274 -> 1680[label="",style="solid", color="blue", weight=3]; 3275[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3275[label="",style="solid", color="blue", weight=9]; 3275 -> 1681[label="",style="solid", color="blue", weight=3]; 3276[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3276[label="",style="solid", color="blue", weight=9]; 3276 -> 1682[label="",style="solid", color="blue", weight=3]; 3277[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3277[label="",style="solid", color="blue", weight=9]; 3277 -> 1683[label="",style="solid", color="blue", weight=3]; 3278[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3278[label="",style="solid", color="blue", weight=9]; 3278 -> 1684[label="",style="solid", color="blue", weight=3]; 3279[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1305 -> 3279[label="",style="solid", color="blue", weight=9]; 3279 -> 1685[label="",style="solid", color="blue", weight=3]; 1306 -> 361[label="",style="dashed", color="red", weight=0]; 1306[label="vwx3000 * vwx4001 == vwx3001 * vwx4000",fontsize=16,color="magenta"];1306 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1306 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1307 -> 1688[label="",style="dashed", color="red", weight=0]; 1307[label="compare vwx36 vwx37 /= GT",fontsize=16,color="magenta"];1307 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1308 -> 1688[label="",style="dashed", color="red", weight=0]; 1308[label="compare vwx36 vwx37 /= GT",fontsize=16,color="magenta"];1308 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1309[label="(vwx360,vwx361) <= vwx37",fontsize=16,color="burlywood",shape="box"];3280[label="vwx37/(vwx370,vwx371)",fontsize=10,color="white",style="solid",shape="box"];1309 -> 3280[label="",style="solid", color="burlywood", weight=9]; 3280 -> 1697[label="",style="solid", color="burlywood", weight=3]; 1310 -> 1688[label="",style="dashed", color="red", weight=0]; 1310[label="compare vwx36 vwx37 /= GT",fontsize=16,color="magenta"];1310 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1311 -> 1688[label="",style="dashed", color="red", weight=0]; 1311[label="compare vwx36 vwx37 /= GT",fontsize=16,color="magenta"];1311 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1312[label="Nothing <= vwx37",fontsize=16,color="burlywood",shape="box"];3281[label="vwx37/Nothing",fontsize=10,color="white",style="solid",shape="box"];1312 -> 3281[label="",style="solid", color="burlywood", weight=9]; 3281 -> 1698[label="",style="solid", color="burlywood", weight=3]; 3282[label="vwx37/Just vwx370",fontsize=10,color="white",style="solid",shape="box"];1312 -> 3282[label="",style="solid", color="burlywood", weight=9]; 3282 -> 1699[label="",style="solid", color="burlywood", weight=3]; 1313[label="Just vwx360 <= vwx37",fontsize=16,color="burlywood",shape="box"];3283[label="vwx37/Nothing",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3283[label="",style="solid", color="burlywood", weight=9]; 3283 -> 1700[label="",style="solid", color="burlywood", weight=3]; 3284[label="vwx37/Just vwx370",fontsize=10,color="white",style="solid",shape="box"];1313 -> 3284[label="",style="solid", color="burlywood", weight=9]; 3284 -> 1701[label="",style="solid", color="burlywood", weight=3]; 1314[label="False <= vwx37",fontsize=16,color="burlywood",shape="box"];3285[label="vwx37/False",fontsize=10,color="white",style="solid",shape="box"];1314 -> 3285[label="",style="solid", color="burlywood", weight=9]; 3285 -> 1702[label="",style="solid", color="burlywood", weight=3]; 3286[label="vwx37/True",fontsize=10,color="white",style="solid",shape="box"];1314 -> 3286[label="",style="solid", color="burlywood", weight=9]; 3286 -> 1703[label="",style="solid", color="burlywood", weight=3]; 1315[label="True <= vwx37",fontsize=16,color="burlywood",shape="box"];3287[label="vwx37/False",fontsize=10,color="white",style="solid",shape="box"];1315 -> 3287[label="",style="solid", color="burlywood", weight=9]; 3287 -> 1704[label="",style="solid", color="burlywood", weight=3]; 3288[label="vwx37/True",fontsize=10,color="white",style="solid",shape="box"];1315 -> 3288[label="",style="solid", color="burlywood", weight=9]; 3288 -> 1705[label="",style="solid", color="burlywood", weight=3]; 1316 -> 1688[label="",style="dashed", color="red", weight=0]; 1316[label="compare vwx36 vwx37 /= GT",fontsize=16,color="magenta"];1316 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1317[label="Left vwx360 <= vwx37",fontsize=16,color="burlywood",shape="box"];3289[label="vwx37/Left vwx370",fontsize=10,color="white",style="solid",shape="box"];1317 -> 3289[label="",style="solid", color="burlywood", weight=9]; 3289 -> 1706[label="",style="solid", color="burlywood", weight=3]; 3290[label="vwx37/Right vwx370",fontsize=10,color="white",style="solid",shape="box"];1317 -> 3290[label="",style="solid", color="burlywood", weight=9]; 3290 -> 1707[label="",style="solid", color="burlywood", weight=3]; 1318[label="Right vwx360 <= vwx37",fontsize=16,color="burlywood",shape="box"];3291[label="vwx37/Left vwx370",fontsize=10,color="white",style="solid",shape="box"];1318 -> 3291[label="",style="solid", color="burlywood", weight=9]; 3291 -> 1708[label="",style="solid", color="burlywood", weight=3]; 3292[label="vwx37/Right vwx370",fontsize=10,color="white",style="solid",shape="box"];1318 -> 3292[label="",style="solid", color="burlywood", weight=9]; 3292 -> 1709[label="",style="solid", color="burlywood", weight=3]; 1319[label="(vwx360,vwx361,vwx362) <= vwx37",fontsize=16,color="burlywood",shape="box"];3293[label="vwx37/(vwx370,vwx371,vwx372)",fontsize=10,color="white",style="solid",shape="box"];1319 -> 3293[label="",style="solid", color="burlywood", weight=9]; 3293 -> 1710[label="",style="solid", color="burlywood", weight=3]; 1320 -> 1688[label="",style="dashed", color="red", weight=0]; 1320[label="compare vwx36 vwx37 /= GT",fontsize=16,color="magenta"];1320 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1321[label="LT <= vwx37",fontsize=16,color="burlywood",shape="box"];3294[label="vwx37/LT",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3294[label="",style="solid", color="burlywood", weight=9]; 3294 -> 1711[label="",style="solid", color="burlywood", weight=3]; 3295[label="vwx37/EQ",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3295[label="",style="solid", color="burlywood", weight=9]; 3295 -> 1712[label="",style="solid", color="burlywood", weight=3]; 3296[label="vwx37/GT",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3296[label="",style="solid", color="burlywood", weight=9]; 3296 -> 1713[label="",style="solid", color="burlywood", weight=3]; 1322[label="EQ <= vwx37",fontsize=16,color="burlywood",shape="box"];3297[label="vwx37/LT",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3297[label="",style="solid", color="burlywood", weight=9]; 3297 -> 1714[label="",style="solid", color="burlywood", weight=3]; 3298[label="vwx37/EQ",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3298[label="",style="solid", color="burlywood", weight=9]; 3298 -> 1715[label="",style="solid", color="burlywood", weight=3]; 3299[label="vwx37/GT",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3299[label="",style="solid", color="burlywood", weight=9]; 3299 -> 1716[label="",style="solid", color="burlywood", weight=3]; 1323[label="GT <= vwx37",fontsize=16,color="burlywood",shape="box"];3300[label="vwx37/LT",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3300[label="",style="solid", color="burlywood", weight=9]; 3300 -> 1717[label="",style="solid", color="burlywood", weight=3]; 3301[label="vwx37/EQ",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3301[label="",style="solid", color="burlywood", weight=9]; 3301 -> 1718[label="",style="solid", color="burlywood", weight=3]; 3302[label="vwx37/GT",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3302[label="",style="solid", color="burlywood", weight=9]; 3302 -> 1719[label="",style="solid", color="burlywood", weight=3]; 1324 -> 1688[label="",style="dashed", color="red", weight=0]; 1324[label="compare vwx36 vwx37 /= GT",fontsize=16,color="magenta"];1324 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1325 -> 1688[label="",style="dashed", color="red", weight=0]; 1325[label="compare vwx36 vwx37 /= GT",fontsize=16,color="magenta"];1325 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1326[label="compare0 (Just vwx97) (Just vwx98) True",fontsize=16,color="black",shape="box"];1326 -> 1720[label="",style="solid", color="black", weight=3]; 1327[label="vwx44",fontsize=16,color="green",shape="box"];1328[label="vwx43",fontsize=16,color="green",shape="box"];1329[label="vwx44",fontsize=16,color="green",shape="box"];1330[label="vwx43",fontsize=16,color="green",shape="box"];1331[label="vwx44",fontsize=16,color="green",shape="box"];1332[label="vwx43",fontsize=16,color="green",shape="box"];1333[label="vwx44",fontsize=16,color="green",shape="box"];1334[label="vwx43",fontsize=16,color="green",shape="box"];1335[label="vwx44",fontsize=16,color="green",shape="box"];1336[label="vwx43",fontsize=16,color="green",shape="box"];1337[label="vwx44",fontsize=16,color="green",shape="box"];1338[label="vwx43",fontsize=16,color="green",shape="box"];1339[label="vwx44",fontsize=16,color="green",shape="box"];1340[label="vwx43",fontsize=16,color="green",shape="box"];1341[label="vwx44",fontsize=16,color="green",shape="box"];1342[label="vwx43",fontsize=16,color="green",shape="box"];1343[label="vwx44",fontsize=16,color="green",shape="box"];1344[label="vwx43",fontsize=16,color="green",shape="box"];1345[label="vwx44",fontsize=16,color="green",shape="box"];1346[label="vwx43",fontsize=16,color="green",shape="box"];1347[label="vwx44",fontsize=16,color="green",shape="box"];1348[label="vwx43",fontsize=16,color="green",shape="box"];1349[label="vwx44",fontsize=16,color="green",shape="box"];1350[label="vwx43",fontsize=16,color="green",shape="box"];1351[label="vwx44",fontsize=16,color="green",shape="box"];1352[label="vwx43",fontsize=16,color="green",shape="box"];1353[label="vwx44",fontsize=16,color="green",shape="box"];1354[label="vwx43",fontsize=16,color="green",shape="box"];1355[label="compare0 (Left vwx104) (Left vwx105) True",fontsize=16,color="black",shape="box"];1355 -> 1721[label="",style="solid", color="black", weight=3]; 1356[label="vwx51",fontsize=16,color="green",shape="box"];1357[label="vwx50",fontsize=16,color="green",shape="box"];1358[label="vwx51",fontsize=16,color="green",shape="box"];1359[label="vwx50",fontsize=16,color="green",shape="box"];1360[label="vwx51",fontsize=16,color="green",shape="box"];1361[label="vwx50",fontsize=16,color="green",shape="box"];1362[label="vwx51",fontsize=16,color="green",shape="box"];1363[label="vwx50",fontsize=16,color="green",shape="box"];1364[label="vwx51",fontsize=16,color="green",shape="box"];1365[label="vwx50",fontsize=16,color="green",shape="box"];1366[label="vwx51",fontsize=16,color="green",shape="box"];1367[label="vwx50",fontsize=16,color="green",shape="box"];1368[label="vwx51",fontsize=16,color="green",shape="box"];1369[label="vwx50",fontsize=16,color="green",shape="box"];1370[label="vwx51",fontsize=16,color="green",shape="box"];1371[label="vwx50",fontsize=16,color="green",shape="box"];1372[label="vwx51",fontsize=16,color="green",shape="box"];1373[label="vwx50",fontsize=16,color="green",shape="box"];1374[label="vwx51",fontsize=16,color="green",shape="box"];1375[label="vwx50",fontsize=16,color="green",shape="box"];1376[label="vwx51",fontsize=16,color="green",shape="box"];1377[label="vwx50",fontsize=16,color="green",shape="box"];1378[label="vwx51",fontsize=16,color="green",shape="box"];1379[label="vwx50",fontsize=16,color="green",shape="box"];1380[label="vwx51",fontsize=16,color="green",shape="box"];1381[label="vwx50",fontsize=16,color="green",shape="box"];1382[label="vwx51",fontsize=16,color="green",shape="box"];1383[label="vwx50",fontsize=16,color="green",shape="box"];1384[label="compare0 (Right vwx112) (Right vwx113) True",fontsize=16,color="black",shape="box"];1384 -> 1722[label="",style="solid", color="black", weight=3]; 1726[label="vwx62 < vwx65",fontsize=16,color="blue",shape="box"];3303[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3303[label="",style="solid", color="blue", weight=9]; 3303 -> 1730[label="",style="solid", color="blue", weight=3]; 3304[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3304[label="",style="solid", color="blue", weight=9]; 3304 -> 1731[label="",style="solid", color="blue", weight=3]; 3305[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3305[label="",style="solid", color="blue", weight=9]; 3305 -> 1732[label="",style="solid", color="blue", weight=3]; 3306[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3306[label="",style="solid", color="blue", weight=9]; 3306 -> 1733[label="",style="solid", color="blue", weight=3]; 3307[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3307[label="",style="solid", color="blue", weight=9]; 3307 -> 1734[label="",style="solid", color="blue", weight=3]; 3308[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3308[label="",style="solid", color="blue", weight=9]; 3308 -> 1735[label="",style="solid", color="blue", weight=3]; 3309[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3309[label="",style="solid", color="blue", weight=9]; 3309 -> 1736[label="",style="solid", color="blue", weight=3]; 3310[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3310[label="",style="solid", color="blue", weight=9]; 3310 -> 1737[label="",style="solid", color="blue", weight=3]; 3311[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3311[label="",style="solid", color="blue", weight=9]; 3311 -> 1738[label="",style="solid", color="blue", weight=3]; 3312[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3312[label="",style="solid", color="blue", weight=9]; 3312 -> 1739[label="",style="solid", color="blue", weight=3]; 3313[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3313[label="",style="solid", color="blue", weight=9]; 3313 -> 1740[label="",style="solid", color="blue", weight=3]; 3314[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3314[label="",style="solid", color="blue", weight=9]; 3314 -> 1741[label="",style="solid", color="blue", weight=3]; 3315[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3315[label="",style="solid", color="blue", weight=9]; 3315 -> 1742[label="",style="solid", color="blue", weight=3]; 3316[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1726 -> 3316[label="",style="solid", color="blue", weight=9]; 3316 -> 1743[label="",style="solid", color="blue", weight=3]; 1727 -> 782[label="",style="dashed", color="red", weight=0]; 1727[label="vwx62 == vwx65 && vwx63 <= vwx66",fontsize=16,color="magenta"];1727 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1727 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1725[label="vwx152 || vwx153",fontsize=16,color="burlywood",shape="triangle"];3317[label="vwx152/False",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3317[label="",style="solid", color="burlywood", weight=9]; 3317 -> 1746[label="",style="solid", color="burlywood", weight=3]; 3318[label="vwx152/True",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3318[label="",style="solid", color="burlywood", weight=9]; 3318 -> 1747[label="",style="solid", color="burlywood", weight=3]; 1387 -> 357[label="",style="dashed", color="red", weight=0]; 1387[label="vwx61 == vwx64",fontsize=16,color="magenta"];1387 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1387 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1388 -> 352[label="",style="dashed", color="red", weight=0]; 1388[label="vwx61 == vwx64",fontsize=16,color="magenta"];1388 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1388 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1389 -> 358[label="",style="dashed", color="red", weight=0]; 1389[label="vwx61 == vwx64",fontsize=16,color="magenta"];1389 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1390 -> 354[label="",style="dashed", color="red", weight=0]; 1390[label="vwx61 == vwx64",fontsize=16,color="magenta"];1390 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1390 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1391 -> 363[label="",style="dashed", color="red", weight=0]; 1391[label="vwx61 == vwx64",fontsize=16,color="magenta"];1391 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1391 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1392 -> 359[label="",style="dashed", color="red", weight=0]; 1392[label="vwx61 == vwx64",fontsize=16,color="magenta"];1392 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1392 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1393 -> 350[label="",style="dashed", color="red", weight=0]; 1393[label="vwx61 == vwx64",fontsize=16,color="magenta"];1393 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1393 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1394 -> 356[label="",style="dashed", color="red", weight=0]; 1394[label="vwx61 == vwx64",fontsize=16,color="magenta"];1394 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1394 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1395 -> 355[label="",style="dashed", color="red", weight=0]; 1395[label="vwx61 == vwx64",fontsize=16,color="magenta"];1395 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1395 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1396 -> 362[label="",style="dashed", color="red", weight=0]; 1396[label="vwx61 == vwx64",fontsize=16,color="magenta"];1396 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1396 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1397 -> 353[label="",style="dashed", color="red", weight=0]; 1397[label="vwx61 == vwx64",fontsize=16,color="magenta"];1397 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1397 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1398 -> 351[label="",style="dashed", color="red", weight=0]; 1398[label="vwx61 == vwx64",fontsize=16,color="magenta"];1398 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1399 -> 361[label="",style="dashed", color="red", weight=0]; 1399[label="vwx61 == vwx64",fontsize=16,color="magenta"];1399 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1399 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1400 -> 360[label="",style="dashed", color="red", weight=0]; 1400[label="vwx61 == vwx64",fontsize=16,color="magenta"];1400 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1400 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1401[label="vwx64",fontsize=16,color="green",shape="box"];1402[label="vwx61",fontsize=16,color="green",shape="box"];1403[label="vwx64",fontsize=16,color="green",shape="box"];1404[label="vwx61",fontsize=16,color="green",shape="box"];1405[label="vwx64",fontsize=16,color="green",shape="box"];1406[label="vwx61",fontsize=16,color="green",shape="box"];1407[label="vwx61",fontsize=16,color="green",shape="box"];1408[label="vwx64",fontsize=16,color="green",shape="box"];1409[label="vwx64",fontsize=16,color="green",shape="box"];1410[label="vwx61",fontsize=16,color="green",shape="box"];1411[label="vwx64",fontsize=16,color="green",shape="box"];1412[label="vwx61",fontsize=16,color="green",shape="box"];1413[label="vwx64",fontsize=16,color="green",shape="box"];1414[label="vwx61",fontsize=16,color="green",shape="box"];1415[label="vwx64",fontsize=16,color="green",shape="box"];1416[label="vwx61",fontsize=16,color="green",shape="box"];1417[label="vwx64",fontsize=16,color="green",shape="box"];1418[label="vwx61",fontsize=16,color="green",shape="box"];1419[label="vwx64",fontsize=16,color="green",shape="box"];1420[label="vwx61",fontsize=16,color="green",shape="box"];1421[label="vwx64",fontsize=16,color="green",shape="box"];1422[label="vwx61",fontsize=16,color="green",shape="box"];1423[label="vwx64",fontsize=16,color="green",shape="box"];1424[label="vwx61",fontsize=16,color="green",shape="box"];1425[label="vwx64",fontsize=16,color="green",shape="box"];1426[label="vwx61",fontsize=16,color="green",shape="box"];1427[label="vwx64",fontsize=16,color="green",shape="box"];1428[label="vwx61",fontsize=16,color="green",shape="box"];1429[label="compare1 (vwx139,vwx140,vwx141) (vwx142,vwx143,vwx144) vwx146",fontsize=16,color="burlywood",shape="triangle"];3319[label="vwx146/False",fontsize=10,color="white",style="solid",shape="box"];1429 -> 3319[label="",style="solid", color="burlywood", weight=9]; 3319 -> 1776[label="",style="solid", color="burlywood", weight=3]; 3320[label="vwx146/True",fontsize=10,color="white",style="solid",shape="box"];1429 -> 3320[label="",style="solid", color="burlywood", weight=9]; 3320 -> 1777[label="",style="solid", color="burlywood", weight=3]; 1430 -> 1429[label="",style="dashed", color="red", weight=0]; 1430[label="compare1 (vwx139,vwx140,vwx141) (vwx142,vwx143,vwx144) True",fontsize=16,color="magenta"];1430 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1431 -> 1779[label="",style="dashed", color="red", weight=0]; 1431[label="primPlusNat (primMulNat vwx30000 (Succ vwx40100)) (Succ vwx40100)",fontsize=16,color="magenta"];1431 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1432[label="Zero",fontsize=16,color="green",shape="box"];1433[label="Zero",fontsize=16,color="green",shape="box"];1434[label="Zero",fontsize=16,color="green",shape="box"];1435 -> 112[label="",style="dashed", color="red", weight=0]; 1435[label="compare vwx74 vwx76",fontsize=16,color="magenta"];1435 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1436[label="LT",fontsize=16,color="green",shape="box"];1437 -> 113[label="",style="dashed", color="red", weight=0]; 1437[label="compare vwx74 vwx76",fontsize=16,color="magenta"];1437 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1438[label="LT",fontsize=16,color="green",shape="box"];1439 -> 114[label="",style="dashed", color="red", weight=0]; 1439[label="compare vwx74 vwx76",fontsize=16,color="magenta"];1439 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1440[label="LT",fontsize=16,color="green",shape="box"];1441 -> 116[label="",style="dashed", color="red", weight=0]; 1441[label="compare vwx74 vwx76",fontsize=16,color="magenta"];1441 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1442[label="LT",fontsize=16,color="green",shape="box"];1443 -> 117[label="",style="dashed", color="red", weight=0]; 1443[label="compare vwx74 vwx76",fontsize=16,color="magenta"];1443 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1444[label="LT",fontsize=16,color="green",shape="box"];1445 -> 118[label="",style="dashed", color="red", weight=0]; 1445[label="compare vwx74 vwx76",fontsize=16,color="magenta"];1445 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1446[label="LT",fontsize=16,color="green",shape="box"];1447 -> 119[label="",style="dashed", color="red", weight=0]; 1447[label="compare vwx74 vwx76",fontsize=16,color="magenta"];1447 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1447 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1448[label="LT",fontsize=16,color="green",shape="box"];1449 -> 120[label="",style="dashed", color="red", weight=0]; 1449[label="compare vwx74 vwx76",fontsize=16,color="magenta"];1449 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1449 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1450[label="LT",fontsize=16,color="green",shape="box"];1451 -> 121[label="",style="dashed", color="red", weight=0]; 1451[label="compare vwx74 vwx76",fontsize=16,color="magenta"];1451 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1451 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1452[label="LT",fontsize=16,color="green",shape="box"];1453 -> 122[label="",style="dashed", color="red", weight=0]; 1453[label="compare vwx74 vwx76",fontsize=16,color="magenta"];1453 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1453 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1454[label="LT",fontsize=16,color="green",shape="box"];1455 -> 123[label="",style="dashed", color="red", weight=0]; 1455[label="compare vwx74 vwx76",fontsize=16,color="magenta"];1455 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1455 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1456[label="LT",fontsize=16,color="green",shape="box"];1457 -> 124[label="",style="dashed", color="red", weight=0]; 1457[label="compare vwx74 vwx76",fontsize=16,color="magenta"];1457 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1457 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1458[label="LT",fontsize=16,color="green",shape="box"];1459 -> 125[label="",style="dashed", color="red", weight=0]; 1459[label="compare vwx74 vwx76",fontsize=16,color="magenta"];1459 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1459 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1460[label="LT",fontsize=16,color="green",shape="box"];1461[label="vwx77",fontsize=16,color="green",shape="box"];1462[label="vwx75",fontsize=16,color="green",shape="box"];1463[label="vwx77",fontsize=16,color="green",shape="box"];1464[label="vwx75",fontsize=16,color="green",shape="box"];1465[label="vwx77",fontsize=16,color="green",shape="box"];1466[label="vwx75",fontsize=16,color="green",shape="box"];1467[label="vwx77",fontsize=16,color="green",shape="box"];1468[label="vwx75",fontsize=16,color="green",shape="box"];1469[label="vwx77",fontsize=16,color="green",shape="box"];1470[label="vwx75",fontsize=16,color="green",shape="box"];1471[label="vwx77",fontsize=16,color="green",shape="box"];1472[label="vwx75",fontsize=16,color="green",shape="box"];1473[label="vwx77",fontsize=16,color="green",shape="box"];1474[label="vwx75",fontsize=16,color="green",shape="box"];1475[label="vwx77",fontsize=16,color="green",shape="box"];1476[label="vwx75",fontsize=16,color="green",shape="box"];1477[label="vwx77",fontsize=16,color="green",shape="box"];1478[label="vwx75",fontsize=16,color="green",shape="box"];1479[label="vwx77",fontsize=16,color="green",shape="box"];1480[label="vwx75",fontsize=16,color="green",shape="box"];1481[label="vwx77",fontsize=16,color="green",shape="box"];1482[label="vwx75",fontsize=16,color="green",shape="box"];1483[label="vwx77",fontsize=16,color="green",shape="box"];1484[label="vwx75",fontsize=16,color="green",shape="box"];1485[label="vwx77",fontsize=16,color="green",shape="box"];1486[label="vwx75",fontsize=16,color="green",shape="box"];1487[label="vwx77",fontsize=16,color="green",shape="box"];1488[label="vwx75",fontsize=16,color="green",shape="box"];1489[label="vwx74",fontsize=16,color="green",shape="box"];1490[label="vwx76",fontsize=16,color="green",shape="box"];1491[label="vwx74",fontsize=16,color="green",shape="box"];1492[label="vwx76",fontsize=16,color="green",shape="box"];1493[label="vwx74",fontsize=16,color="green",shape="box"];1494[label="vwx76",fontsize=16,color="green",shape="box"];1495[label="vwx74",fontsize=16,color="green",shape="box"];1496[label="vwx76",fontsize=16,color="green",shape="box"];1497[label="vwx74",fontsize=16,color="green",shape="box"];1498[label="vwx76",fontsize=16,color="green",shape="box"];1499[label="vwx74",fontsize=16,color="green",shape="box"];1500[label="vwx76",fontsize=16,color="green",shape="box"];1501[label="vwx74",fontsize=16,color="green",shape="box"];1502[label="vwx76",fontsize=16,color="green",shape="box"];1503[label="vwx74",fontsize=16,color="green",shape="box"];1504[label="vwx76",fontsize=16,color="green",shape="box"];1505[label="vwx74",fontsize=16,color="green",shape="box"];1506[label="vwx76",fontsize=16,color="green",shape="box"];1507[label="vwx74",fontsize=16,color="green",shape="box"];1508[label="vwx76",fontsize=16,color="green",shape="box"];1509[label="vwx74",fontsize=16,color="green",shape="box"];1510[label="vwx76",fontsize=16,color="green",shape="box"];1511[label="vwx74",fontsize=16,color="green",shape="box"];1512[label="vwx76",fontsize=16,color="green",shape="box"];1513[label="vwx74",fontsize=16,color="green",shape="box"];1514[label="vwx76",fontsize=16,color="green",shape="box"];1515[label="vwx74",fontsize=16,color="green",shape="box"];1516[label="vwx76",fontsize=16,color="green",shape="box"];1517[label="compare1 (vwx124,vwx125) (vwx126,vwx127) False",fontsize=16,color="black",shape="box"];1517 -> 1807[label="",style="solid", color="black", weight=3]; 1518[label="compare1 (vwx124,vwx125) (vwx126,vwx127) True",fontsize=16,color="black",shape="box"];1518 -> 1808[label="",style="solid", color="black", weight=3]; 1519[label="True",fontsize=16,color="green",shape="box"];1520[label="primEqNat (Succ vwx30000) vwx4000",fontsize=16,color="burlywood",shape="box"];3321[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1520 -> 3321[label="",style="solid", color="burlywood", weight=9]; 3321 -> 1809[label="",style="solid", color="burlywood", weight=3]; 3322[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1520 -> 3322[label="",style="solid", color="burlywood", weight=9]; 3322 -> 1810[label="",style="solid", color="burlywood", weight=3]; 1521[label="primEqNat Zero vwx4000",fontsize=16,color="burlywood",shape="box"];3323[label="vwx4000/Succ vwx40000",fontsize=10,color="white",style="solid",shape="box"];1521 -> 3323[label="",style="solid", color="burlywood", weight=9]; 3323 -> 1811[label="",style="solid", color="burlywood", weight=3]; 3324[label="vwx4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1521 -> 3324[label="",style="solid", color="burlywood", weight=9]; 3324 -> 1812[label="",style="solid", color="burlywood", weight=3]; 1522[label="vwx3001",fontsize=16,color="green",shape="box"];1523[label="vwx4001",fontsize=16,color="green",shape="box"];1524 -> 350[label="",style="dashed", color="red", weight=0]; 1524[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1524 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1524 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1525 -> 351[label="",style="dashed", color="red", weight=0]; 1525[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1525 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1525 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1526 -> 352[label="",style="dashed", color="red", weight=0]; 1526[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1526 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1526 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1527 -> 353[label="",style="dashed", color="red", weight=0]; 1527[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1527 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1527 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1528 -> 354[label="",style="dashed", color="red", weight=0]; 1528[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1528 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1528 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1529 -> 355[label="",style="dashed", color="red", weight=0]; 1529[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1529 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1529 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1530 -> 356[label="",style="dashed", color="red", weight=0]; 1530[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1530 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1530 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1531 -> 357[label="",style="dashed", color="red", weight=0]; 1531[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1531 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1531 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1532 -> 358[label="",style="dashed", color="red", weight=0]; 1532[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1532 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1532 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1533 -> 359[label="",style="dashed", color="red", weight=0]; 1533[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1533 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1533 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1534 -> 360[label="",style="dashed", color="red", weight=0]; 1534[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1534 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1534 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1535 -> 361[label="",style="dashed", color="red", weight=0]; 1535[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1535 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1535 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1536 -> 362[label="",style="dashed", color="red", weight=0]; 1536[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1536 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1536 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1537 -> 363[label="",style="dashed", color="red", weight=0]; 1537[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1537 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1538[label="vwx3000",fontsize=16,color="green",shape="box"];1539[label="vwx4000",fontsize=16,color="green",shape="box"];1540[label="vwx3000",fontsize=16,color="green",shape="box"];1541[label="vwx4000",fontsize=16,color="green",shape="box"];1542[label="vwx3000",fontsize=16,color="green",shape="box"];1543[label="vwx4000",fontsize=16,color="green",shape="box"];1544[label="vwx3000",fontsize=16,color="green",shape="box"];1545[label="vwx4000",fontsize=16,color="green",shape="box"];1546[label="vwx3000",fontsize=16,color="green",shape="box"];1547[label="vwx4000",fontsize=16,color="green",shape="box"];1548[label="vwx3000",fontsize=16,color="green",shape="box"];1549[label="vwx4000",fontsize=16,color="green",shape="box"];1550[label="vwx3000",fontsize=16,color="green",shape="box"];1551[label="vwx4000",fontsize=16,color="green",shape="box"];1552[label="vwx3000",fontsize=16,color="green",shape="box"];1553[label="vwx4000",fontsize=16,color="green",shape="box"];1554[label="vwx3000",fontsize=16,color="green",shape="box"];1555[label="vwx4000",fontsize=16,color="green",shape="box"];1556[label="vwx3000",fontsize=16,color="green",shape="box"];1557[label="vwx4000",fontsize=16,color="green",shape="box"];1558[label="vwx3000",fontsize=16,color="green",shape="box"];1559[label="vwx4000",fontsize=16,color="green",shape="box"];1560[label="vwx3000",fontsize=16,color="green",shape="box"];1561[label="vwx4000",fontsize=16,color="green",shape="box"];1562[label="vwx3000",fontsize=16,color="green",shape="box"];1563[label="vwx4000",fontsize=16,color="green",shape="box"];1564[label="vwx3000",fontsize=16,color="green",shape="box"];1565[label="vwx4000",fontsize=16,color="green",shape="box"];1566[label="vwx3000",fontsize=16,color="green",shape="box"];1567[label="vwx4000",fontsize=16,color="green",shape="box"];1568[label="vwx3000",fontsize=16,color="green",shape="box"];1569[label="vwx4000",fontsize=16,color="green",shape="box"];1570[label="vwx3000",fontsize=16,color="green",shape="box"];1571[label="vwx4000",fontsize=16,color="green",shape="box"];1572[label="vwx3000",fontsize=16,color="green",shape="box"];1573[label="vwx4000",fontsize=16,color="green",shape="box"];1574[label="vwx3000",fontsize=16,color="green",shape="box"];1575[label="vwx4000",fontsize=16,color="green",shape="box"];1576[label="vwx3000",fontsize=16,color="green",shape="box"];1577[label="vwx4000",fontsize=16,color="green",shape="box"];1578[label="vwx3000",fontsize=16,color="green",shape="box"];1579[label="vwx4000",fontsize=16,color="green",shape="box"];1580[label="vwx3000",fontsize=16,color="green",shape="box"];1581[label="vwx4000",fontsize=16,color="green",shape="box"];1582[label="vwx3000",fontsize=16,color="green",shape="box"];1583[label="vwx4000",fontsize=16,color="green",shape="box"];1584[label="vwx3000",fontsize=16,color="green",shape="box"];1585[label="vwx4000",fontsize=16,color="green",shape="box"];1586[label="vwx3000",fontsize=16,color="green",shape="box"];1587[label="vwx4000",fontsize=16,color="green",shape="box"];1588[label="vwx3000",fontsize=16,color="green",shape="box"];1589[label="vwx4000",fontsize=16,color="green",shape="box"];1590[label="vwx3000",fontsize=16,color="green",shape="box"];1591[label="vwx4000",fontsize=16,color="green",shape="box"];1592[label="vwx3000",fontsize=16,color="green",shape="box"];1593[label="vwx4000",fontsize=16,color="green",shape="box"];1594 -> 352[label="",style="dashed", color="red", weight=0]; 1594[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1594 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1594 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1595 -> 361[label="",style="dashed", color="red", weight=0]; 1595[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1595 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1595 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1596 -> 352[label="",style="dashed", color="red", weight=0]; 1596[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1596 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1596 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1597 -> 361[label="",style="dashed", color="red", weight=0]; 1597[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1597 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1598 -> 350[label="",style="dashed", color="red", weight=0]; 1598[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1598 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1599 -> 351[label="",style="dashed", color="red", weight=0]; 1599[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1599 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1600 -> 352[label="",style="dashed", color="red", weight=0]; 1600[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1600 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1600 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1601 -> 353[label="",style="dashed", color="red", weight=0]; 1601[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1601 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1601 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1602 -> 354[label="",style="dashed", color="red", weight=0]; 1602[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1602 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1602 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1603 -> 355[label="",style="dashed", color="red", weight=0]; 1603[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1603 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1603 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1604 -> 356[label="",style="dashed", color="red", weight=0]; 1604[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1604 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1604 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1605 -> 357[label="",style="dashed", color="red", weight=0]; 1605[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1605 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1605 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1606 -> 358[label="",style="dashed", color="red", weight=0]; 1606[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1606 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1606 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1607 -> 359[label="",style="dashed", color="red", weight=0]; 1607[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1607 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1607 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1608 -> 360[label="",style="dashed", color="red", weight=0]; 1608[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1608 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1608 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1609 -> 361[label="",style="dashed", color="red", weight=0]; 1609[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1609 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1609 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1610 -> 362[label="",style="dashed", color="red", weight=0]; 1610[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1610 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1610 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1611 -> 363[label="",style="dashed", color="red", weight=0]; 1611[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1611 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1611 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1612 -> 350[label="",style="dashed", color="red", weight=0]; 1612[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1612 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1612 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1613 -> 351[label="",style="dashed", color="red", weight=0]; 1613[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1613 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1613 -> 1880[label="",style="dashed", color="magenta", weight=3]; 1614 -> 352[label="",style="dashed", color="red", weight=0]; 1614[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1614 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1614 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1615 -> 353[label="",style="dashed", color="red", weight=0]; 1615[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1615 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1615 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1616 -> 354[label="",style="dashed", color="red", weight=0]; 1616[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1616 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1616 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1617 -> 355[label="",style="dashed", color="red", weight=0]; 1617[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1617 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1617 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1618 -> 356[label="",style="dashed", color="red", weight=0]; 1618[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1618 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1618 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1619 -> 357[label="",style="dashed", color="red", weight=0]; 1619[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1619 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1619 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1620 -> 358[label="",style="dashed", color="red", weight=0]; 1620[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1620 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1620 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1621 -> 359[label="",style="dashed", color="red", weight=0]; 1621[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1621 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1621 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1622 -> 360[label="",style="dashed", color="red", weight=0]; 1622[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1622 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1622 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1623 -> 361[label="",style="dashed", color="red", weight=0]; 1623[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1623 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1623 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1624 -> 362[label="",style="dashed", color="red", weight=0]; 1624[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1624 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1624 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1625 -> 363[label="",style="dashed", color="red", weight=0]; 1625[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1625 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1625 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1626[label="vwx3000",fontsize=16,color="green",shape="box"];1627[label="vwx4000",fontsize=16,color="green",shape="box"];1628[label="vwx3000",fontsize=16,color="green",shape="box"];1629[label="vwx4000",fontsize=16,color="green",shape="box"];1630[label="vwx3000",fontsize=16,color="green",shape="box"];1631[label="vwx4000",fontsize=16,color="green",shape="box"];1632[label="vwx3000",fontsize=16,color="green",shape="box"];1633[label="vwx4000",fontsize=16,color="green",shape="box"];1634[label="vwx3000",fontsize=16,color="green",shape="box"];1635[label="vwx4000",fontsize=16,color="green",shape="box"];1636[label="vwx3000",fontsize=16,color="green",shape="box"];1637[label="vwx4000",fontsize=16,color="green",shape="box"];1638[label="vwx3000",fontsize=16,color="green",shape="box"];1639[label="vwx4000",fontsize=16,color="green",shape="box"];1640[label="vwx3000",fontsize=16,color="green",shape="box"];1641[label="vwx4000",fontsize=16,color="green",shape="box"];1642[label="vwx3000",fontsize=16,color="green",shape="box"];1643[label="vwx4000",fontsize=16,color="green",shape="box"];1644[label="vwx3000",fontsize=16,color="green",shape="box"];1645[label="vwx4000",fontsize=16,color="green",shape="box"];1646[label="vwx3000",fontsize=16,color="green",shape="box"];1647[label="vwx4000",fontsize=16,color="green",shape="box"];1648[label="vwx3000",fontsize=16,color="green",shape="box"];1649[label="vwx4000",fontsize=16,color="green",shape="box"];1650[label="vwx3000",fontsize=16,color="green",shape="box"];1651[label="vwx4000",fontsize=16,color="green",shape="box"];1652[label="vwx3000",fontsize=16,color="green",shape="box"];1653[label="vwx4000",fontsize=16,color="green",shape="box"];1654 -> 226[label="",style="dashed", color="red", weight=0]; 1654[label="vwx3000 * vwx4001",fontsize=16,color="magenta"];1654 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1655 -> 226[label="",style="dashed", color="red", weight=0]; 1655[label="vwx3001 * vwx4000",fontsize=16,color="magenta"];1655 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1655 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1656[label="primEqInt (Pos (Succ vwx30000)) (Pos (Succ vwx40000))",fontsize=16,color="black",shape="box"];1656 -> 1909[label="",style="solid", color="black", weight=3]; 1657[label="primEqInt (Pos (Succ vwx30000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1657 -> 1910[label="",style="solid", color="black", weight=3]; 1658[label="False",fontsize=16,color="green",shape="box"];1659[label="primEqInt (Pos Zero) (Pos (Succ vwx40000))",fontsize=16,color="black",shape="box"];1659 -> 1911[label="",style="solid", color="black", weight=3]; 1660[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1660 -> 1912[label="",style="solid", color="black", weight=3]; 1661[label="primEqInt (Pos Zero) (Neg (Succ vwx40000))",fontsize=16,color="black",shape="box"];1661 -> 1913[label="",style="solid", color="black", weight=3]; 1662[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1662 -> 1914[label="",style="solid", color="black", weight=3]; 1663[label="False",fontsize=16,color="green",shape="box"];1664[label="primEqInt (Neg (Succ vwx30000)) (Neg (Succ vwx40000))",fontsize=16,color="black",shape="box"];1664 -> 1915[label="",style="solid", color="black", weight=3]; 1665[label="primEqInt (Neg (Succ vwx30000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1665 -> 1916[label="",style="solid", color="black", weight=3]; 1666[label="primEqInt (Neg Zero) (Pos (Succ vwx40000))",fontsize=16,color="black",shape="box"];1666 -> 1917[label="",style="solid", color="black", weight=3]; 1667[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1667 -> 1918[label="",style="solid", color="black", weight=3]; 1668[label="primEqInt (Neg Zero) (Neg (Succ vwx40000))",fontsize=16,color="black",shape="box"];1668 -> 1919[label="",style="solid", color="black", weight=3]; 1669[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1669 -> 1920[label="",style="solid", color="black", weight=3]; 1670[label="vwx3002 == vwx4002",fontsize=16,color="blue",shape="box"];3325[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3325[label="",style="solid", color="blue", weight=9]; 3325 -> 1921[label="",style="solid", color="blue", weight=3]; 3326[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3326[label="",style="solid", color="blue", weight=9]; 3326 -> 1922[label="",style="solid", color="blue", weight=3]; 3327[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3327[label="",style="solid", color="blue", weight=9]; 3327 -> 1923[label="",style="solid", color="blue", weight=3]; 3328[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3328[label="",style="solid", color="blue", weight=9]; 3328 -> 1924[label="",style="solid", color="blue", weight=3]; 3329[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3329[label="",style="solid", color="blue", weight=9]; 3329 -> 1925[label="",style="solid", color="blue", weight=3]; 3330[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3330[label="",style="solid", color="blue", weight=9]; 3330 -> 1926[label="",style="solid", color="blue", weight=3]; 3331[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3331[label="",style="solid", color="blue", weight=9]; 3331 -> 1927[label="",style="solid", color="blue", weight=3]; 3332[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3332[label="",style="solid", color="blue", weight=9]; 3332 -> 1928[label="",style="solid", color="blue", weight=3]; 3333[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3333[label="",style="solid", color="blue", weight=9]; 3333 -> 1929[label="",style="solid", color="blue", weight=3]; 3334[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3334[label="",style="solid", color="blue", weight=9]; 3334 -> 1930[label="",style="solid", color="blue", weight=3]; 3335[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3335[label="",style="solid", color="blue", weight=9]; 3335 -> 1931[label="",style="solid", color="blue", weight=3]; 3336[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3336[label="",style="solid", color="blue", weight=9]; 3336 -> 1932[label="",style="solid", color="blue", weight=3]; 3337[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3337[label="",style="solid", color="blue", weight=9]; 3337 -> 1933[label="",style="solid", color="blue", weight=3]; 3338[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1670 -> 3338[label="",style="solid", color="blue", weight=9]; 3338 -> 1934[label="",style="solid", color="blue", weight=3]; 1671[label="vwx3001 == vwx4001",fontsize=16,color="blue",shape="box"];3339[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3339[label="",style="solid", color="blue", weight=9]; 3339 -> 1935[label="",style="solid", color="blue", weight=3]; 3340[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3340[label="",style="solid", color="blue", weight=9]; 3340 -> 1936[label="",style="solid", color="blue", weight=3]; 3341[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3341[label="",style="solid", color="blue", weight=9]; 3341 -> 1937[label="",style="solid", color="blue", weight=3]; 3342[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3342[label="",style="solid", color="blue", weight=9]; 3342 -> 1938[label="",style="solid", color="blue", weight=3]; 3343[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3343[label="",style="solid", color="blue", weight=9]; 3343 -> 1939[label="",style="solid", color="blue", weight=3]; 3344[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3344[label="",style="solid", color="blue", weight=9]; 3344 -> 1940[label="",style="solid", color="blue", weight=3]; 3345[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3345[label="",style="solid", color="blue", weight=9]; 3345 -> 1941[label="",style="solid", color="blue", weight=3]; 3346[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3346[label="",style="solid", color="blue", weight=9]; 3346 -> 1942[label="",style="solid", color="blue", weight=3]; 3347[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3347[label="",style="solid", color="blue", weight=9]; 3347 -> 1943[label="",style="solid", color="blue", weight=3]; 3348[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3348[label="",style="solid", color="blue", weight=9]; 3348 -> 1944[label="",style="solid", color="blue", weight=3]; 3349[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3349[label="",style="solid", color="blue", weight=9]; 3349 -> 1945[label="",style="solid", color="blue", weight=3]; 3350[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3350[label="",style="solid", color="blue", weight=9]; 3350 -> 1946[label="",style="solid", color="blue", weight=3]; 3351[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3351[label="",style="solid", color="blue", weight=9]; 3351 -> 1947[label="",style="solid", color="blue", weight=3]; 3352[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1671 -> 3352[label="",style="solid", color="blue", weight=9]; 3352 -> 1948[label="",style="solid", color="blue", weight=3]; 1672 -> 350[label="",style="dashed", color="red", weight=0]; 1672[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1672 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1672 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1673 -> 351[label="",style="dashed", color="red", weight=0]; 1673[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1673 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1673 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1674 -> 352[label="",style="dashed", color="red", weight=0]; 1674[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1674 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1674 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1675 -> 353[label="",style="dashed", color="red", weight=0]; 1675[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1675 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1675 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1676 -> 354[label="",style="dashed", color="red", weight=0]; 1676[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1676 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1676 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1677 -> 355[label="",style="dashed", color="red", weight=0]; 1677[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1677 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1677 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1678 -> 356[label="",style="dashed", color="red", weight=0]; 1678[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1678 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1678 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1679 -> 357[label="",style="dashed", color="red", weight=0]; 1679[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1679 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1679 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1680 -> 358[label="",style="dashed", color="red", weight=0]; 1680[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1680 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1680 -> 1966[label="",style="dashed", color="magenta", weight=3]; 1681 -> 359[label="",style="dashed", color="red", weight=0]; 1681[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1681 -> 1967[label="",style="dashed", color="magenta", weight=3]; 1681 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1682 -> 360[label="",style="dashed", color="red", weight=0]; 1682[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1682 -> 1969[label="",style="dashed", color="magenta", weight=3]; 1682 -> 1970[label="",style="dashed", color="magenta", weight=3]; 1683 -> 361[label="",style="dashed", color="red", weight=0]; 1683[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1683 -> 1971[label="",style="dashed", color="magenta", weight=3]; 1683 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1684 -> 362[label="",style="dashed", color="red", weight=0]; 1684[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1684 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1684 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1685 -> 363[label="",style="dashed", color="red", weight=0]; 1685[label="vwx3000 == vwx4000",fontsize=16,color="magenta"];1685 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1685 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1686 -> 226[label="",style="dashed", color="red", weight=0]; 1686[label="vwx3000 * vwx4001",fontsize=16,color="magenta"];1686 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1686 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1687 -> 226[label="",style="dashed", color="red", weight=0]; 1687[label="vwx3001 * vwx4000",fontsize=16,color="magenta"];1687 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1687 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1689 -> 112[label="",style="dashed", color="red", weight=0]; 1689[label="compare vwx36 vwx37",fontsize=16,color="magenta"];1689 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1689 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1688[label="vwx148 /= GT",fontsize=16,color="black",shape="triangle"];1688 -> 1983[label="",style="solid", color="black", weight=3]; 1690 -> 113[label="",style="dashed", color="red", weight=0]; 1690[label="compare vwx36 vwx37",fontsize=16,color="magenta"];1690 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1690 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1697[label="(vwx360,vwx361) <= (vwx370,vwx371)",fontsize=16,color="black",shape="box"];1697 -> 1986[label="",style="solid", color="black", weight=3]; 1691 -> 78[label="",style="dashed", color="red", weight=0]; 1691[label="compare vwx36 vwx37",fontsize=16,color="magenta"];1691 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1691 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1692 -> 116[label="",style="dashed", color="red", weight=0]; 1692[label="compare vwx36 vwx37",fontsize=16,color="magenta"];1692 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1692 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1698[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1698 -> 1991[label="",style="solid", color="black", weight=3]; 1699[label="Nothing <= Just vwx370",fontsize=16,color="black",shape="box"];1699 -> 1992[label="",style="solid", color="black", weight=3]; 1700[label="Just vwx360 <= Nothing",fontsize=16,color="black",shape="box"];1700 -> 1993[label="",style="solid", color="black", weight=3]; 1701[label="Just vwx360 <= Just vwx370",fontsize=16,color="black",shape="box"];1701 -> 1994[label="",style="solid", color="black", weight=3]; 1702[label="False <= False",fontsize=16,color="black",shape="box"];1702 -> 1995[label="",style="solid", color="black", weight=3]; 1703[label="False <= True",fontsize=16,color="black",shape="box"];1703 -> 1996[label="",style="solid", color="black", weight=3]; 1704[label="True <= False",fontsize=16,color="black",shape="box"];1704 -> 1997[label="",style="solid", color="black", weight=3]; 1705[label="True <= True",fontsize=16,color="black",shape="box"];1705 -> 1998[label="",style="solid", color="black", weight=3]; 1693 -> 119[label="",style="dashed", color="red", weight=0]; 1693[label="compare vwx36 vwx37",fontsize=16,color="magenta"];1693 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1693 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1706[label="Left vwx360 <= Left vwx370",fontsize=16,color="black",shape="box"];1706 -> 2001[label="",style="solid", color="black", weight=3]; 1707[label="Left vwx360 <= Right vwx370",fontsize=16,color="black",shape="box"];1707 -> 2002[label="",style="solid", color="black", weight=3]; 1708[label="Right vwx360 <= Left vwx370",fontsize=16,color="black",shape="box"];1708 -> 2003[label="",style="solid", color="black", weight=3]; 1709[label="Right vwx360 <= Right vwx370",fontsize=16,color="black",shape="box"];1709 -> 2004[label="",style="solid", color="black", weight=3]; 1710[label="(vwx360,vwx361,vwx362) <= (vwx370,vwx371,vwx372)",fontsize=16,color="black",shape="box"];1710 -> 2005[label="",style="solid", color="black", weight=3]; 1694 -> 122[label="",style="dashed", color="red", weight=0]; 1694[label="compare vwx36 vwx37",fontsize=16,color="magenta"];1694 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1694 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1711[label="LT <= LT",fontsize=16,color="black",shape="box"];1711 -> 2008[label="",style="solid", color="black", weight=3]; 1712[label="LT <= EQ",fontsize=16,color="black",shape="box"];1712 -> 2009[label="",style="solid", color="black", weight=3]; 1713[label="LT <= GT",fontsize=16,color="black",shape="box"];1713 -> 2010[label="",style="solid", color="black", weight=3]; 1714[label="EQ <= LT",fontsize=16,color="black",shape="box"];1714 -> 2011[label="",style="solid", color="black", weight=3]; 1715[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1715 -> 2012[label="",style="solid", color="black", weight=3]; 1716[label="EQ <= GT",fontsize=16,color="black",shape="box"];1716 -> 2013[label="",style="solid", color="black", weight=3]; 1717[label="GT <= LT",fontsize=16,color="black",shape="box"];1717 -> 2014[label="",style="solid", color="black", weight=3]; 1718[label="GT <= EQ",fontsize=16,color="black",shape="box"];1718 -> 2015[label="",style="solid", color="black", weight=3]; 1719[label="GT <= GT",fontsize=16,color="black",shape="box"];1719 -> 2016[label="",style="solid", color="black", weight=3]; 1695 -> 124[label="",style="dashed", color="red", weight=0]; 1695[label="compare vwx36 vwx37",fontsize=16,color="magenta"];1695 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1695 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1696 -> 125[label="",style="dashed", color="red", weight=0]; 1696[label="compare vwx36 vwx37",fontsize=16,color="magenta"];1696 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1696 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1720[label="GT",fontsize=16,color="green",shape="box"];1721[label="GT",fontsize=16,color="green",shape="box"];1722[label="GT",fontsize=16,color="green",shape="box"];1730 -> 1055[label="",style="dashed", color="red", weight=0]; 1730[label="vwx62 < vwx65",fontsize=16,color="magenta"];1730 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1730 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1731 -> 1056[label="",style="dashed", color="red", weight=0]; 1731[label="vwx62 < vwx65",fontsize=16,color="magenta"];1731 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1731 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1732 -> 1057[label="",style="dashed", color="red", weight=0]; 1732[label="vwx62 < vwx65",fontsize=16,color="magenta"];1732 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1732 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1733 -> 4[label="",style="dashed", color="red", weight=0]; 1733[label="vwx62 < vwx65",fontsize=16,color="magenta"];1733 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1733 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1734 -> 1059[label="",style="dashed", color="red", weight=0]; 1734[label="vwx62 < vwx65",fontsize=16,color="magenta"];1734 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1734 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1735 -> 1060[label="",style="dashed", color="red", weight=0]; 1735[label="vwx62 < vwx65",fontsize=16,color="magenta"];1735 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1735 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1736 -> 1061[label="",style="dashed", color="red", weight=0]; 1736[label="vwx62 < vwx65",fontsize=16,color="magenta"];1736 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1736 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1737 -> 1062[label="",style="dashed", color="red", weight=0]; 1737[label="vwx62 < vwx65",fontsize=16,color="magenta"];1737 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1737 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1738 -> 1063[label="",style="dashed", color="red", weight=0]; 1738[label="vwx62 < vwx65",fontsize=16,color="magenta"];1738 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1738 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1739 -> 1064[label="",style="dashed", color="red", weight=0]; 1739[label="vwx62 < vwx65",fontsize=16,color="magenta"];1739 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1739 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1740 -> 1065[label="",style="dashed", color="red", weight=0]; 1740[label="vwx62 < vwx65",fontsize=16,color="magenta"];1740 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1740 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1741 -> 1066[label="",style="dashed", color="red", weight=0]; 1741[label="vwx62 < vwx65",fontsize=16,color="magenta"];1741 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1741 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1742 -> 1067[label="",style="dashed", color="red", weight=0]; 1742[label="vwx62 < vwx65",fontsize=16,color="magenta"];1742 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1742 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1743 -> 1068[label="",style="dashed", color="red", weight=0]; 1743[label="vwx62 < vwx65",fontsize=16,color="magenta"];1743 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1743 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1744[label="vwx63 <= vwx66",fontsize=16,color="blue",shape="box"];3353[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3353[label="",style="solid", color="blue", weight=9]; 3353 -> 2049[label="",style="solid", color="blue", weight=3]; 3354[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3354[label="",style="solid", color="blue", weight=9]; 3354 -> 2050[label="",style="solid", color="blue", weight=3]; 3355[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3355[label="",style="solid", color="blue", weight=9]; 3355 -> 2051[label="",style="solid", color="blue", weight=3]; 3356[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3356[label="",style="solid", color="blue", weight=9]; 3356 -> 2052[label="",style="solid", color="blue", weight=3]; 3357[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3357[label="",style="solid", color="blue", weight=9]; 3357 -> 2053[label="",style="solid", color="blue", weight=3]; 3358[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3358[label="",style="solid", color="blue", weight=9]; 3358 -> 2054[label="",style="solid", color="blue", weight=3]; 3359[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3359[label="",style="solid", color="blue", weight=9]; 3359 -> 2055[label="",style="solid", color="blue", weight=3]; 3360[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3360[label="",style="solid", color="blue", weight=9]; 3360 -> 2056[label="",style="solid", color="blue", weight=3]; 3361[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3361[label="",style="solid", color="blue", weight=9]; 3361 -> 2057[label="",style="solid", color="blue", weight=3]; 3362[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3362[label="",style="solid", color="blue", weight=9]; 3362 -> 2058[label="",style="solid", color="blue", weight=3]; 3363[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3363[label="",style="solid", color="blue", weight=9]; 3363 -> 2059[label="",style="solid", color="blue", weight=3]; 3364[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3364[label="",style="solid", color="blue", weight=9]; 3364 -> 2060[label="",style="solid", color="blue", weight=3]; 3365[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3365[label="",style="solid", color="blue", weight=9]; 3365 -> 2061[label="",style="solid", color="blue", weight=3]; 3366[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1744 -> 3366[label="",style="solid", color="blue", weight=9]; 3366 -> 2062[label="",style="solid", color="blue", weight=3]; 1745[label="vwx62 == vwx65",fontsize=16,color="blue",shape="box"];3367[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3367[label="",style="solid", color="blue", weight=9]; 3367 -> 2063[label="",style="solid", color="blue", weight=3]; 3368[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3368[label="",style="solid", color="blue", weight=9]; 3368 -> 2064[label="",style="solid", color="blue", weight=3]; 3369[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3369[label="",style="solid", color="blue", weight=9]; 3369 -> 2065[label="",style="solid", color="blue", weight=3]; 3370[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3370[label="",style="solid", color="blue", weight=9]; 3370 -> 2066[label="",style="solid", color="blue", weight=3]; 3371[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3371[label="",style="solid", color="blue", weight=9]; 3371 -> 2067[label="",style="solid", color="blue", weight=3]; 3372[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 2068[label="",style="solid", color="blue", weight=3]; 3373[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 2069[label="",style="solid", color="blue", weight=3]; 3374[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 2070[label="",style="solid", color="blue", weight=3]; 3375[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3375[label="",style="solid", color="blue", weight=9]; 3375 -> 2071[label="",style="solid", color="blue", weight=3]; 3376[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3376[label="",style="solid", color="blue", weight=9]; 3376 -> 2072[label="",style="solid", color="blue", weight=3]; 3377[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3377[label="",style="solid", color="blue", weight=9]; 3377 -> 2073[label="",style="solid", color="blue", weight=3]; 3378[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3378[label="",style="solid", color="blue", weight=9]; 3378 -> 2074[label="",style="solid", color="blue", weight=3]; 3379[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3379[label="",style="solid", color="blue", weight=9]; 3379 -> 2075[label="",style="solid", color="blue", weight=3]; 3380[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 3380[label="",style="solid", color="blue", weight=9]; 3380 -> 2076[label="",style="solid", color="blue", weight=3]; 1746[label="False || vwx153",fontsize=16,color="black",shape="box"];1746 -> 2077[label="",style="solid", color="black", weight=3]; 1747[label="True || vwx153",fontsize=16,color="black",shape="box"];1747 -> 2078[label="",style="solid", color="black", weight=3]; 1748[label="vwx61",fontsize=16,color="green",shape="box"];1749[label="vwx64",fontsize=16,color="green",shape="box"];1750[label="vwx61",fontsize=16,color="green",shape="box"];1751[label="vwx64",fontsize=16,color="green",shape="box"];1752[label="vwx61",fontsize=16,color="green",shape="box"];1753[label="vwx64",fontsize=16,color="green",shape="box"];1754[label="vwx61",fontsize=16,color="green",shape="box"];1755[label="vwx64",fontsize=16,color="green",shape="box"];1756[label="vwx61",fontsize=16,color="green",shape="box"];1757[label="vwx64",fontsize=16,color="green",shape="box"];1758[label="vwx61",fontsize=16,color="green",shape="box"];1759[label="vwx64",fontsize=16,color="green",shape="box"];1760[label="vwx61",fontsize=16,color="green",shape="box"];1761[label="vwx64",fontsize=16,color="green",shape="box"];1762[label="vwx61",fontsize=16,color="green",shape="box"];1763[label="vwx64",fontsize=16,color="green",shape="box"];1764[label="vwx61",fontsize=16,color="green",shape="box"];1765[label="vwx64",fontsize=16,color="green",shape="box"];1766[label="vwx61",fontsize=16,color="green",shape="box"];1767[label="vwx64",fontsize=16,color="green",shape="box"];1768[label="vwx61",fontsize=16,color="green",shape="box"];1769[label="vwx64",fontsize=16,color="green",shape="box"];1770[label="vwx61",fontsize=16,color="green",shape="box"];1771[label="vwx64",fontsize=16,color="green",shape="box"];1772[label="vwx61",fontsize=16,color="green",shape="box"];1773[label="vwx64",fontsize=16,color="green",shape="box"];1774[label="vwx61",fontsize=16,color="green",shape="box"];1775[label="vwx64",fontsize=16,color="green",shape="box"];1776[label="compare1 (vwx139,vwx140,vwx141) (vwx142,vwx143,vwx144) False",fontsize=16,color="black",shape="box"];1776 -> 2079[label="",style="solid", color="black", weight=3]; 1777[label="compare1 (vwx139,vwx140,vwx141) (vwx142,vwx143,vwx144) True",fontsize=16,color="black",shape="box"];1777 -> 2080[label="",style="solid", color="black", weight=3]; 1778[label="True",fontsize=16,color="green",shape="box"];1780 -> 846[label="",style="dashed", color="red", weight=0]; 1780[label="primMulNat vwx30000 (Succ vwx40100)",fontsize=16,color="magenta"];1780 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1780 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1779[label="primPlusNat vwx154 (Succ vwx40100)",fontsize=16,color="burlywood",shape="triangle"];3381[label="vwx154/Succ vwx1540",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3381[label="",style="solid", color="burlywood", weight=9]; 3381 -> 2083[label="",style="solid", color="burlywood", weight=3]; 3382[label="vwx154/Zero",fontsize=10,color="white",style="solid",shape="box"];1779 -> 3382[label="",style="solid", color="burlywood", weight=9]; 3382 -> 2084[label="",style="solid", color="burlywood", weight=3]; 1781[label="vwx74",fontsize=16,color="green",shape="box"];1782[label="vwx76",fontsize=16,color="green",shape="box"];1783[label="vwx74",fontsize=16,color="green",shape="box"];1784[label="vwx76",fontsize=16,color="green",shape="box"];1785[label="vwx74",fontsize=16,color="green",shape="box"];1786[label="vwx76",fontsize=16,color="green",shape="box"];1787[label="vwx74",fontsize=16,color="green",shape="box"];1788[label="vwx76",fontsize=16,color="green",shape="box"];1789[label="vwx74",fontsize=16,color="green",shape="box"];1790[label="vwx76",fontsize=16,color="green",shape="box"];1791[label="vwx74",fontsize=16,color="green",shape="box"];1792[label="vwx76",fontsize=16,color="green",shape="box"];1793[label="vwx74",fontsize=16,color="green",shape="box"];1794[label="vwx76",fontsize=16,color="green",shape="box"];1795[label="vwx74",fontsize=16,color="green",shape="box"];1796[label="vwx76",fontsize=16,color="green",shape="box"];1797[label="vwx74",fontsize=16,color="green",shape="box"];1798[label="vwx76",fontsize=16,color="green",shape="box"];1799[label="vwx74",fontsize=16,color="green",shape="box"];1800[label="vwx76",fontsize=16,color="green",shape="box"];1801[label="vwx74",fontsize=16,color="green",shape="box"];1802[label="vwx76",fontsize=16,color="green",shape="box"];1803[label="vwx74",fontsize=16,color="green",shape="box"];1804[label="vwx76",fontsize=16,color="green",shape="box"];1805[label="vwx74",fontsize=16,color="green",shape="box"];1806[label="vwx76",fontsize=16,color="green",shape="box"];1807[label="compare0 (vwx124,vwx125) (vwx126,vwx127) otherwise",fontsize=16,color="black",shape="box"];1807 -> 2085[label="",style="solid", color="black", weight=3]; 1808[label="LT",fontsize=16,color="green",shape="box"];1809[label="primEqNat (Succ vwx30000) (Succ vwx40000)",fontsize=16,color="black",shape="box"];1809 -> 2086[label="",style="solid", color="black", weight=3]; 1810[label="primEqNat (Succ vwx30000) Zero",fontsize=16,color="black",shape="box"];1810 -> 2087[label="",style="solid", color="black", weight=3]; 1811[label="primEqNat Zero (Succ vwx40000)",fontsize=16,color="black",shape="box"];1811 -> 2088[label="",style="solid", color="black", weight=3]; 1812[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1812 -> 2089[label="",style="solid", color="black", weight=3]; 1813[label="vwx3000",fontsize=16,color="green",shape="box"];1814[label="vwx4000",fontsize=16,color="green",shape="box"];1815[label="vwx3000",fontsize=16,color="green",shape="box"];1816[label="vwx4000",fontsize=16,color="green",shape="box"];1817[label="vwx3000",fontsize=16,color="green",shape="box"];1818[label="vwx4000",fontsize=16,color="green",shape="box"];1819[label="vwx3000",fontsize=16,color="green",shape="box"];1820[label="vwx4000",fontsize=16,color="green",shape="box"];1821[label="vwx3000",fontsize=16,color="green",shape="box"];1822[label="vwx4000",fontsize=16,color="green",shape="box"];1823[label="vwx3000",fontsize=16,color="green",shape="box"];1824[label="vwx4000",fontsize=16,color="green",shape="box"];1825[label="vwx3000",fontsize=16,color="green",shape="box"];1826[label="vwx4000",fontsize=16,color="green",shape="box"];1827[label="vwx3000",fontsize=16,color="green",shape="box"];1828[label="vwx4000",fontsize=16,color="green",shape="box"];1829[label="vwx3000",fontsize=16,color="green",shape="box"];1830[label="vwx4000",fontsize=16,color="green",shape="box"];1831[label="vwx3000",fontsize=16,color="green",shape="box"];1832[label="vwx4000",fontsize=16,color="green",shape="box"];1833[label="vwx3000",fontsize=16,color="green",shape="box"];1834[label="vwx4000",fontsize=16,color="green",shape="box"];1835[label="vwx3000",fontsize=16,color="green",shape="box"];1836[label="vwx4000",fontsize=16,color="green",shape="box"];1837[label="vwx3000",fontsize=16,color="green",shape="box"];1838[label="vwx4000",fontsize=16,color="green",shape="box"];1839[label="vwx3000",fontsize=16,color="green",shape="box"];1840[label="vwx4000",fontsize=16,color="green",shape="box"];1841[label="vwx3001",fontsize=16,color="green",shape="box"];1842[label="vwx4001",fontsize=16,color="green",shape="box"];1843[label="vwx3001",fontsize=16,color="green",shape="box"];1844[label="vwx4001",fontsize=16,color="green",shape="box"];1845[label="vwx3000",fontsize=16,color="green",shape="box"];1846[label="vwx4000",fontsize=16,color="green",shape="box"];1847[label="vwx3000",fontsize=16,color="green",shape="box"];1848[label="vwx4000",fontsize=16,color="green",shape="box"];1849[label="vwx3001",fontsize=16,color="green",shape="box"];1850[label="vwx4001",fontsize=16,color="green",shape="box"];1851[label="vwx3001",fontsize=16,color="green",shape="box"];1852[label="vwx4001",fontsize=16,color="green",shape="box"];1853[label="vwx3001",fontsize=16,color="green",shape="box"];1854[label="vwx4001",fontsize=16,color="green",shape="box"];1855[label="vwx3001",fontsize=16,color="green",shape="box"];1856[label="vwx4001",fontsize=16,color="green",shape="box"];1857[label="vwx3001",fontsize=16,color="green",shape="box"];1858[label="vwx4001",fontsize=16,color="green",shape="box"];1859[label="vwx3001",fontsize=16,color="green",shape="box"];1860[label="vwx4001",fontsize=16,color="green",shape="box"];1861[label="vwx3001",fontsize=16,color="green",shape="box"];1862[label="vwx4001",fontsize=16,color="green",shape="box"];1863[label="vwx3001",fontsize=16,color="green",shape="box"];1864[label="vwx4001",fontsize=16,color="green",shape="box"];1865[label="vwx3001",fontsize=16,color="green",shape="box"];1866[label="vwx4001",fontsize=16,color="green",shape="box"];1867[label="vwx3001",fontsize=16,color="green",shape="box"];1868[label="vwx4001",fontsize=16,color="green",shape="box"];1869[label="vwx3001",fontsize=16,color="green",shape="box"];1870[label="vwx4001",fontsize=16,color="green",shape="box"];1871[label="vwx3001",fontsize=16,color="green",shape="box"];1872[label="vwx4001",fontsize=16,color="green",shape="box"];1873[label="vwx3001",fontsize=16,color="green",shape="box"];1874[label="vwx4001",fontsize=16,color="green",shape="box"];1875[label="vwx3001",fontsize=16,color="green",shape="box"];1876[label="vwx4001",fontsize=16,color="green",shape="box"];1877[label="vwx3000",fontsize=16,color="green",shape="box"];1878[label="vwx4000",fontsize=16,color="green",shape="box"];1879[label="vwx3000",fontsize=16,color="green",shape="box"];1880[label="vwx4000",fontsize=16,color="green",shape="box"];1881[label="vwx3000",fontsize=16,color="green",shape="box"];1882[label="vwx4000",fontsize=16,color="green",shape="box"];1883[label="vwx3000",fontsize=16,color="green",shape="box"];1884[label="vwx4000",fontsize=16,color="green",shape="box"];1885[label="vwx3000",fontsize=16,color="green",shape="box"];1886[label="vwx4000",fontsize=16,color="green",shape="box"];1887[label="vwx3000",fontsize=16,color="green",shape="box"];1888[label="vwx4000",fontsize=16,color="green",shape="box"];1889[label="vwx3000",fontsize=16,color="green",shape="box"];1890[label="vwx4000",fontsize=16,color="green",shape="box"];1891[label="vwx3000",fontsize=16,color="green",shape="box"];1892[label="vwx4000",fontsize=16,color="green",shape="box"];1893[label="vwx3000",fontsize=16,color="green",shape="box"];1894[label="vwx4000",fontsize=16,color="green",shape="box"];1895[label="vwx3000",fontsize=16,color="green",shape="box"];1896[label="vwx4000",fontsize=16,color="green",shape="box"];1897[label="vwx3000",fontsize=16,color="green",shape="box"];1898[label="vwx4000",fontsize=16,color="green",shape="box"];1899[label="vwx3000",fontsize=16,color="green",shape="box"];1900[label="vwx4000",fontsize=16,color="green",shape="box"];1901[label="vwx3000",fontsize=16,color="green",shape="box"];1902[label="vwx4000",fontsize=16,color="green",shape="box"];1903[label="vwx3000",fontsize=16,color="green",shape="box"];1904[label="vwx4000",fontsize=16,color="green",shape="box"];1905[label="vwx3000",fontsize=16,color="green",shape="box"];1906[label="vwx4001",fontsize=16,color="green",shape="box"];1907[label="vwx3001",fontsize=16,color="green",shape="box"];1908[label="vwx4000",fontsize=16,color="green",shape="box"];1909 -> 1246[label="",style="dashed", color="red", weight=0]; 1909[label="primEqNat vwx30000 vwx40000",fontsize=16,color="magenta"];1909 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1909 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1910[label="False",fontsize=16,color="green",shape="box"];1911[label="False",fontsize=16,color="green",shape="box"];1912[label="True",fontsize=16,color="green",shape="box"];1913[label="False",fontsize=16,color="green",shape="box"];1914[label="True",fontsize=16,color="green",shape="box"];1915 -> 1246[label="",style="dashed", color="red", weight=0]; 1915[label="primEqNat vwx30000 vwx40000",fontsize=16,color="magenta"];1915 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1915 -> 2093[label="",style="dashed", color="magenta", weight=3]; 1916[label="False",fontsize=16,color="green",shape="box"];1917[label="False",fontsize=16,color="green",shape="box"];1918[label="True",fontsize=16,color="green",shape="box"];1919[label="False",fontsize=16,color="green",shape="box"];1920[label="True",fontsize=16,color="green",shape="box"];1921 -> 350[label="",style="dashed", color="red", weight=0]; 1921[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1921 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1921 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1922 -> 351[label="",style="dashed", color="red", weight=0]; 1922[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1922 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1922 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1923 -> 352[label="",style="dashed", color="red", weight=0]; 1923[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1923 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1923 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1924 -> 353[label="",style="dashed", color="red", weight=0]; 1924[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1924 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1924 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1925 -> 354[label="",style="dashed", color="red", weight=0]; 1925[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1925 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1925 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1926 -> 355[label="",style="dashed", color="red", weight=0]; 1926[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1926 -> 2104[label="",style="dashed", color="magenta", weight=3]; 1926 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1927 -> 356[label="",style="dashed", color="red", weight=0]; 1927[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1927 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1927 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1928 -> 357[label="",style="dashed", color="red", weight=0]; 1928[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1928 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1928 -> 2109[label="",style="dashed", color="magenta", weight=3]; 1929 -> 358[label="",style="dashed", color="red", weight=0]; 1929[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1929 -> 2110[label="",style="dashed", color="magenta", weight=3]; 1929 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1930 -> 359[label="",style="dashed", color="red", weight=0]; 1930[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1930 -> 2112[label="",style="dashed", color="magenta", weight=3]; 1930 -> 2113[label="",style="dashed", color="magenta", weight=3]; 1931 -> 360[label="",style="dashed", color="red", weight=0]; 1931[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1931 -> 2114[label="",style="dashed", color="magenta", weight=3]; 1931 -> 2115[label="",style="dashed", color="magenta", weight=3]; 1932 -> 361[label="",style="dashed", color="red", weight=0]; 1932[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1932 -> 2116[label="",style="dashed", color="magenta", weight=3]; 1932 -> 2117[label="",style="dashed", color="magenta", weight=3]; 1933 -> 362[label="",style="dashed", color="red", weight=0]; 1933[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1933 -> 2118[label="",style="dashed", color="magenta", weight=3]; 1933 -> 2119[label="",style="dashed", color="magenta", weight=3]; 1934 -> 363[label="",style="dashed", color="red", weight=0]; 1934[label="vwx3002 == vwx4002",fontsize=16,color="magenta"];1934 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1934 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1935 -> 350[label="",style="dashed", color="red", weight=0]; 1935[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1935 -> 2122[label="",style="dashed", color="magenta", weight=3]; 1935 -> 2123[label="",style="dashed", color="magenta", weight=3]; 1936 -> 351[label="",style="dashed", color="red", weight=0]; 1936[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1936 -> 2124[label="",style="dashed", color="magenta", weight=3]; 1936 -> 2125[label="",style="dashed", color="magenta", weight=3]; 1937 -> 352[label="",style="dashed", color="red", weight=0]; 1937[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1937 -> 2126[label="",style="dashed", color="magenta", weight=3]; 1937 -> 2127[label="",style="dashed", color="magenta", weight=3]; 1938 -> 353[label="",style="dashed", color="red", weight=0]; 1938[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1938 -> 2128[label="",style="dashed", color="magenta", weight=3]; 1938 -> 2129[label="",style="dashed", color="magenta", weight=3]; 1939 -> 354[label="",style="dashed", color="red", weight=0]; 1939[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1939 -> 2130[label="",style="dashed", color="magenta", weight=3]; 1939 -> 2131[label="",style="dashed", color="magenta", weight=3]; 1940 -> 355[label="",style="dashed", color="red", weight=0]; 1940[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1940 -> 2132[label="",style="dashed", color="magenta", weight=3]; 1940 -> 2133[label="",style="dashed", color="magenta", weight=3]; 1941 -> 356[label="",style="dashed", color="red", weight=0]; 1941[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1941 -> 2134[label="",style="dashed", color="magenta", weight=3]; 1941 -> 2135[label="",style="dashed", color="magenta", weight=3]; 1942 -> 357[label="",style="dashed", color="red", weight=0]; 1942[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1942 -> 2136[label="",style="dashed", color="magenta", weight=3]; 1942 -> 2137[label="",style="dashed", color="magenta", weight=3]; 1943 -> 358[label="",style="dashed", color="red", weight=0]; 1943[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1943 -> 2138[label="",style="dashed", color="magenta", weight=3]; 1943 -> 2139[label="",style="dashed", color="magenta", weight=3]; 1944 -> 359[label="",style="dashed", color="red", weight=0]; 1944[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1944 -> 2140[label="",style="dashed", color="magenta", weight=3]; 1944 -> 2141[label="",style="dashed", color="magenta", weight=3]; 1945 -> 360[label="",style="dashed", color="red", weight=0]; 1945[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1945 -> 2142[label="",style="dashed", color="magenta", weight=3]; 1945 -> 2143[label="",style="dashed", color="magenta", weight=3]; 1946 -> 361[label="",style="dashed", color="red", weight=0]; 1946[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1946 -> 2144[label="",style="dashed", color="magenta", weight=3]; 1946 -> 2145[label="",style="dashed", color="magenta", weight=3]; 1947 -> 362[label="",style="dashed", color="red", weight=0]; 1947[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1947 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1947 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1948 -> 363[label="",style="dashed", color="red", weight=0]; 1948[label="vwx3001 == vwx4001",fontsize=16,color="magenta"];1948 -> 2148[label="",style="dashed", color="magenta", weight=3]; 1948 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1949[label="vwx3000",fontsize=16,color="green",shape="box"];1950[label="vwx4000",fontsize=16,color="green",shape="box"];1951[label="vwx3000",fontsize=16,color="green",shape="box"];1952[label="vwx4000",fontsize=16,color="green",shape="box"];1953[label="vwx3000",fontsize=16,color="green",shape="box"];1954[label="vwx4000",fontsize=16,color="green",shape="box"];1955[label="vwx3000",fontsize=16,color="green",shape="box"];1956[label="vwx4000",fontsize=16,color="green",shape="box"];1957[label="vwx3000",fontsize=16,color="green",shape="box"];1958[label="vwx4000",fontsize=16,color="green",shape="box"];1959[label="vwx3000",fontsize=16,color="green",shape="box"];1960[label="vwx4000",fontsize=16,color="green",shape="box"];1961[label="vwx3000",fontsize=16,color="green",shape="box"];1962[label="vwx4000",fontsize=16,color="green",shape="box"];1963[label="vwx3000",fontsize=16,color="green",shape="box"];1964[label="vwx4000",fontsize=16,color="green",shape="box"];1965[label="vwx3000",fontsize=16,color="green",shape="box"];1966[label="vwx4000",fontsize=16,color="green",shape="box"];1967[label="vwx3000",fontsize=16,color="green",shape="box"];1968[label="vwx4000",fontsize=16,color="green",shape="box"];1969[label="vwx3000",fontsize=16,color="green",shape="box"];1970[label="vwx4000",fontsize=16,color="green",shape="box"];1971[label="vwx3000",fontsize=16,color="green",shape="box"];1972[label="vwx4000",fontsize=16,color="green",shape="box"];1973[label="vwx3000",fontsize=16,color="green",shape="box"];1974[label="vwx4000",fontsize=16,color="green",shape="box"];1975[label="vwx3000",fontsize=16,color="green",shape="box"];1976[label="vwx4000",fontsize=16,color="green",shape="box"];1977[label="vwx3000",fontsize=16,color="green",shape="box"];1978[label="vwx4001",fontsize=16,color="green",shape="box"];1979[label="vwx3001",fontsize=16,color="green",shape="box"];1980[label="vwx4000",fontsize=16,color="green",shape="box"];1981[label="vwx36",fontsize=16,color="green",shape="box"];1982[label="vwx37",fontsize=16,color="green",shape="box"];1983 -> 2150[label="",style="dashed", color="red", weight=0]; 1983[label="not (vwx148 == GT)",fontsize=16,color="magenta"];1983 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1984[label="vwx36",fontsize=16,color="green",shape="box"];1985[label="vwx37",fontsize=16,color="green",shape="box"];1986 -> 1725[label="",style="dashed", color="red", weight=0]; 1986[label="vwx360 < vwx370 || vwx360 == vwx370 && vwx361 <= vwx371",fontsize=16,color="magenta"];1986 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2153[label="",style="dashed", color="magenta", weight=3]; 1987[label="vwx36",fontsize=16,color="green",shape="box"];1988[label="vwx37",fontsize=16,color="green",shape="box"];1989[label="vwx36",fontsize=16,color="green",shape="box"];1990[label="vwx37",fontsize=16,color="green",shape="box"];1991[label="True",fontsize=16,color="green",shape="box"];1992[label="True",fontsize=16,color="green",shape="box"];1993[label="False",fontsize=16,color="green",shape="box"];1994[label="vwx360 <= vwx370",fontsize=16,color="blue",shape="box"];3383[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 3383[label="",style="solid", color="blue", weight=9]; 3383 -> 2154[label="",style="solid", color="blue", weight=3]; 3384[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 3384[label="",style="solid", color="blue", weight=9]; 3384 -> 2155[label="",style="solid", color="blue", weight=3]; 3385[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 3385[label="",style="solid", color="blue", weight=9]; 3385 -> 2156[label="",style="solid", color="blue", weight=3]; 3386[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 3386[label="",style="solid", color="blue", weight=9]; 3386 -> 2157[label="",style="solid", color="blue", weight=3]; 3387[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 3387[label="",style="solid", color="blue", weight=9]; 3387 -> 2158[label="",style="solid", color="blue", weight=3]; 3388[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 3388[label="",style="solid", color="blue", weight=9]; 3388 -> 2159[label="",style="solid", color="blue", weight=3]; 3389[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 3389[label="",style="solid", color="blue", weight=9]; 3389 -> 2160[label="",style="solid", color="blue", weight=3]; 3390[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 3390[label="",style="solid", color="blue", weight=9]; 3390 -> 2161[label="",style="solid", color="blue", weight=3]; 3391[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 3391[label="",style="solid", color="blue", weight=9]; 3391 -> 2162[label="",style="solid", color="blue", weight=3]; 3392[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 3392[label="",style="solid", color="blue", weight=9]; 3392 -> 2163[label="",style="solid", color="blue", weight=3]; 3393[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 3393[label="",style="solid", color="blue", weight=9]; 3393 -> 2164[label="",style="solid", color="blue", weight=3]; 3394[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 3394[label="",style="solid", color="blue", weight=9]; 3394 -> 2165[label="",style="solid", color="blue", weight=3]; 3395[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 3395[label="",style="solid", color="blue", weight=9]; 3395 -> 2166[label="",style="solid", color="blue", weight=3]; 3396[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1994 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 2167[label="",style="solid", color="blue", weight=3]; 1995[label="True",fontsize=16,color="green",shape="box"];1996[label="True",fontsize=16,color="green",shape="box"];1997[label="False",fontsize=16,color="green",shape="box"];1998[label="True",fontsize=16,color="green",shape="box"];1999[label="vwx36",fontsize=16,color="green",shape="box"];2000[label="vwx37",fontsize=16,color="green",shape="box"];2001[label="vwx360 <= vwx370",fontsize=16,color="blue",shape="box"];3397[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3397[label="",style="solid", color="blue", weight=9]; 3397 -> 2168[label="",style="solid", color="blue", weight=3]; 3398[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3398[label="",style="solid", color="blue", weight=9]; 3398 -> 2169[label="",style="solid", color="blue", weight=3]; 3399[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3399[label="",style="solid", color="blue", weight=9]; 3399 -> 2170[label="",style="solid", color="blue", weight=3]; 3400[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3400[label="",style="solid", color="blue", weight=9]; 3400 -> 2171[label="",style="solid", color="blue", weight=3]; 3401[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3401[label="",style="solid", color="blue", weight=9]; 3401 -> 2172[label="",style="solid", color="blue", weight=3]; 3402[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3402[label="",style="solid", color="blue", weight=9]; 3402 -> 2173[label="",style="solid", color="blue", weight=3]; 3403[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3403[label="",style="solid", color="blue", weight=9]; 3403 -> 2174[label="",style="solid", color="blue", weight=3]; 3404[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3404[label="",style="solid", color="blue", weight=9]; 3404 -> 2175[label="",style="solid", color="blue", weight=3]; 3405[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 2176[label="",style="solid", color="blue", weight=3]; 3406[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 2177[label="",style="solid", color="blue", weight=3]; 3407[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 2178[label="",style="solid", color="blue", weight=3]; 3408[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 2179[label="",style="solid", color="blue", weight=3]; 3409[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 2180[label="",style="solid", color="blue", weight=3]; 3410[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 2181[label="",style="solid", color="blue", weight=3]; 2002[label="True",fontsize=16,color="green",shape="box"];2003[label="False",fontsize=16,color="green",shape="box"];2004[label="vwx360 <= vwx370",fontsize=16,color="blue",shape="box"];3411[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 2182[label="",style="solid", color="blue", weight=3]; 3412[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 2183[label="",style="solid", color="blue", weight=3]; 3413[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 2184[label="",style="solid", color="blue", weight=3]; 3414[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 2185[label="",style="solid", color="blue", weight=3]; 3415[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 2186[label="",style="solid", color="blue", weight=3]; 3416[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3416[label="",style="solid", color="blue", weight=9]; 3416 -> 2187[label="",style="solid", color="blue", weight=3]; 3417[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 2188[label="",style="solid", color="blue", weight=3]; 3418[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3418[label="",style="solid", color="blue", weight=9]; 3418 -> 2189[label="",style="solid", color="blue", weight=3]; 3419[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3419[label="",style="solid", color="blue", weight=9]; 3419 -> 2190[label="",style="solid", color="blue", weight=3]; 3420[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3420[label="",style="solid", color="blue", weight=9]; 3420 -> 2191[label="",style="solid", color="blue", weight=3]; 3421[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3421[label="",style="solid", color="blue", weight=9]; 3421 -> 2192[label="",style="solid", color="blue", weight=3]; 3422[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3422[label="",style="solid", color="blue", weight=9]; 3422 -> 2193[label="",style="solid", color="blue", weight=3]; 3423[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3423[label="",style="solid", color="blue", weight=9]; 3423 -> 2194[label="",style="solid", color="blue", weight=3]; 3424[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3424[label="",style="solid", color="blue", weight=9]; 3424 -> 2195[label="",style="solid", color="blue", weight=3]; 2005 -> 1725[label="",style="dashed", color="red", weight=0]; 2005[label="vwx360 < vwx370 || vwx360 == vwx370 && (vwx361 < vwx371 || vwx361 == vwx371 && vwx362 <= vwx372)",fontsize=16,color="magenta"];2005 -> 2196[label="",style="dashed", color="magenta", weight=3]; 2005 -> 2197[label="",style="dashed", color="magenta", weight=3]; 2006[label="vwx36",fontsize=16,color="green",shape="box"];2007[label="vwx37",fontsize=16,color="green",shape="box"];2008[label="True",fontsize=16,color="green",shape="box"];2009[label="True",fontsize=16,color="green",shape="box"];2010[label="True",fontsize=16,color="green",shape="box"];2011[label="False",fontsize=16,color="green",shape="box"];2012[label="True",fontsize=16,color="green",shape="box"];2013[label="True",fontsize=16,color="green",shape="box"];2014[label="False",fontsize=16,color="green",shape="box"];2015[label="False",fontsize=16,color="green",shape="box"];2016[label="True",fontsize=16,color="green",shape="box"];2017[label="vwx36",fontsize=16,color="green",shape="box"];2018[label="vwx37",fontsize=16,color="green",shape="box"];2019[label="vwx36",fontsize=16,color="green",shape="box"];2020[label="vwx37",fontsize=16,color="green",shape="box"];2021[label="vwx65",fontsize=16,color="green",shape="box"];2022[label="vwx62",fontsize=16,color="green",shape="box"];2023[label="vwx65",fontsize=16,color="green",shape="box"];2024[label="vwx62",fontsize=16,color="green",shape="box"];2025[label="vwx65",fontsize=16,color="green",shape="box"];2026[label="vwx62",fontsize=16,color="green",shape="box"];2027[label="vwx62",fontsize=16,color="green",shape="box"];2028[label="vwx65",fontsize=16,color="green",shape="box"];2029[label="vwx65",fontsize=16,color="green",shape="box"];2030[label="vwx62",fontsize=16,color="green",shape="box"];2031[label="vwx65",fontsize=16,color="green",shape="box"];2032[label="vwx62",fontsize=16,color="green",shape="box"];2033[label="vwx65",fontsize=16,color="green",shape="box"];2034[label="vwx62",fontsize=16,color="green",shape="box"];2035[label="vwx65",fontsize=16,color="green",shape="box"];2036[label="vwx62",fontsize=16,color="green",shape="box"];2037[label="vwx65",fontsize=16,color="green",shape="box"];2038[label="vwx62",fontsize=16,color="green",shape="box"];2039[label="vwx65",fontsize=16,color="green",shape="box"];2040[label="vwx62",fontsize=16,color="green",shape="box"];2041[label="vwx65",fontsize=16,color="green",shape="box"];2042[label="vwx62",fontsize=16,color="green",shape="box"];2043[label="vwx65",fontsize=16,color="green",shape="box"];2044[label="vwx62",fontsize=16,color="green",shape="box"];2045[label="vwx65",fontsize=16,color="green",shape="box"];2046[label="vwx62",fontsize=16,color="green",shape="box"];2047[label="vwx65",fontsize=16,color="green",shape="box"];2048[label="vwx62",fontsize=16,color="green",shape="box"];2049 -> 1110[label="",style="dashed", color="red", weight=0]; 2049[label="vwx63 <= vwx66",fontsize=16,color="magenta"];2049 -> 2198[label="",style="dashed", color="magenta", weight=3]; 2049 -> 2199[label="",style="dashed", color="magenta", weight=3]; 2050 -> 1111[label="",style="dashed", color="red", weight=0]; 2050[label="vwx63 <= vwx66",fontsize=16,color="magenta"];2050 -> 2200[label="",style="dashed", color="magenta", weight=3]; 2050 -> 2201[label="",style="dashed", color="magenta", weight=3]; 2051 -> 1112[label="",style="dashed", color="red", weight=0]; 2051[label="vwx63 <= vwx66",fontsize=16,color="magenta"];2051 -> 2202[label="",style="dashed", color="magenta", weight=3]; 2051 -> 2203[label="",style="dashed", color="magenta", weight=3]; 2052 -> 1113[label="",style="dashed", color="red", weight=0]; 2052[label="vwx63 <= vwx66",fontsize=16,color="magenta"];2052 -> 2204[label="",style="dashed", color="magenta", weight=3]; 2052 -> 2205[label="",style="dashed", color="magenta", weight=3]; 2053 -> 1114[label="",style="dashed", color="red", weight=0]; 2053[label="vwx63 <= vwx66",fontsize=16,color="magenta"];2053 -> 2206[label="",style="dashed", color="magenta", weight=3]; 2053 -> 2207[label="",style="dashed", color="magenta", weight=3]; 2054 -> 1115[label="",style="dashed", color="red", weight=0]; 2054[label="vwx63 <= vwx66",fontsize=16,color="magenta"];2054 -> 2208[label="",style="dashed", color="magenta", weight=3]; 2054 -> 2209[label="",style="dashed", color="magenta", weight=3]; 2055 -> 1116[label="",style="dashed", color="red", weight=0]; 2055[label="vwx63 <= vwx66",fontsize=16,color="magenta"];2055 -> 2210[label="",style="dashed", color="magenta", weight=3]; 2055 -> 2211[label="",style="dashed", color="magenta", weight=3]; 2056 -> 1117[label="",style="dashed", color="red", weight=0]; 2056[label="vwx63 <= vwx66",fontsize=16,color="magenta"];2056 -> 2212[label="",style="dashed", color="magenta", weight=3]; 2056 -> 2213[label="",style="dashed", color="magenta", weight=3]; 2057 -> 1118[label="",style="dashed", color="red", weight=0]; 2057[label="vwx63 <= vwx66",fontsize=16,color="magenta"];2057 -> 2214[label="",style="dashed", color="magenta", weight=3]; 2057 -> 2215[label="",style="dashed", color="magenta", weight=3]; 2058 -> 1119[label="",style="dashed", color="red", weight=0]; 2058[label="vwx63 <= vwx66",fontsize=16,color="magenta"];2058 -> 2216[label="",style="dashed", color="magenta", weight=3]; 2058 -> 2217[label="",style="dashed", color="magenta", weight=3]; 2059 -> 1120[label="",style="dashed", color="red", weight=0]; 2059[label="vwx63 <= vwx66",fontsize=16,color="magenta"];2059 -> 2218[label="",style="dashed", color="magenta", weight=3]; 2059 -> 2219[label="",style="dashed", color="magenta", weight=3]; 2060 -> 1121[label="",style="dashed", color="red", weight=0]; 2060[label="vwx63 <= vwx66",fontsize=16,color="magenta"];2060 -> 2220[label="",style="dashed", color="magenta", weight=3]; 2060 -> 2221[label="",style="dashed", color="magenta", weight=3]; 2061 -> 1122[label="",style="dashed", color="red", weight=0]; 2061[label="vwx63 <= vwx66",fontsize=16,color="magenta"];2061 -> 2222[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2223[label="",style="dashed", color="magenta", weight=3]; 2062 -> 1123[label="",style="dashed", color="red", weight=0]; 2062[label="vwx63 <= vwx66",fontsize=16,color="magenta"];2062 -> 2224[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2225[label="",style="dashed", color="magenta", weight=3]; 2063 -> 357[label="",style="dashed", color="red", weight=0]; 2063[label="vwx62 == vwx65",fontsize=16,color="magenta"];2063 -> 2226[label="",style="dashed", color="magenta", weight=3]; 2063 -> 2227[label="",style="dashed", color="magenta", weight=3]; 2064 -> 352[label="",style="dashed", color="red", weight=0]; 2064[label="vwx62 == vwx65",fontsize=16,color="magenta"];2064 -> 2228[label="",style="dashed", color="magenta", weight=3]; 2064 -> 2229[label="",style="dashed", color="magenta", weight=3]; 2065 -> 358[label="",style="dashed", color="red", weight=0]; 2065[label="vwx62 == vwx65",fontsize=16,color="magenta"];2065 -> 2230[label="",style="dashed", color="magenta", weight=3]; 2065 -> 2231[label="",style="dashed", color="magenta", weight=3]; 2066 -> 354[label="",style="dashed", color="red", weight=0]; 2066[label="vwx62 == vwx65",fontsize=16,color="magenta"];2066 -> 2232[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2233[label="",style="dashed", color="magenta", weight=3]; 2067 -> 363[label="",style="dashed", color="red", weight=0]; 2067[label="vwx62 == vwx65",fontsize=16,color="magenta"];2067 -> 2234[label="",style="dashed", color="magenta", weight=3]; 2067 -> 2235[label="",style="dashed", color="magenta", weight=3]; 2068 -> 359[label="",style="dashed", color="red", weight=0]; 2068[label="vwx62 == vwx65",fontsize=16,color="magenta"];2068 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2068 -> 2237[label="",style="dashed", color="magenta", weight=3]; 2069 -> 350[label="",style="dashed", color="red", weight=0]; 2069[label="vwx62 == vwx65",fontsize=16,color="magenta"];2069 -> 2238[label="",style="dashed", color="magenta", weight=3]; 2069 -> 2239[label="",style="dashed", color="magenta", weight=3]; 2070 -> 356[label="",style="dashed", color="red", weight=0]; 2070[label="vwx62 == vwx65",fontsize=16,color="magenta"];2070 -> 2240[label="",style="dashed", color="magenta", weight=3]; 2070 -> 2241[label="",style="dashed", color="magenta", weight=3]; 2071 -> 355[label="",style="dashed", color="red", weight=0]; 2071[label="vwx62 == vwx65",fontsize=16,color="magenta"];2071 -> 2242[label="",style="dashed", color="magenta", weight=3]; 2071 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2072 -> 362[label="",style="dashed", color="red", weight=0]; 2072[label="vwx62 == vwx65",fontsize=16,color="magenta"];2072 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2072 -> 2245[label="",style="dashed", color="magenta", weight=3]; 2073 -> 353[label="",style="dashed", color="red", weight=0]; 2073[label="vwx62 == vwx65",fontsize=16,color="magenta"];2073 -> 2246[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2074 -> 351[label="",style="dashed", color="red", weight=0]; 2074[label="vwx62 == vwx65",fontsize=16,color="magenta"];2074 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2074 -> 2249[label="",style="dashed", color="magenta", weight=3]; 2075 -> 361[label="",style="dashed", color="red", weight=0]; 2075[label="vwx62 == vwx65",fontsize=16,color="magenta"];2075 -> 2250[label="",style="dashed", color="magenta", weight=3]; 2075 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2076 -> 360[label="",style="dashed", color="red", weight=0]; 2076[label="vwx62 == vwx65",fontsize=16,color="magenta"];2076 -> 2252[label="",style="dashed", color="magenta", weight=3]; 2076 -> 2253[label="",style="dashed", color="magenta", weight=3]; 2077[label="vwx153",fontsize=16,color="green",shape="box"];2078[label="True",fontsize=16,color="green",shape="box"];2079[label="compare0 (vwx139,vwx140,vwx141) (vwx142,vwx143,vwx144) otherwise",fontsize=16,color="black",shape="box"];2079 -> 2254[label="",style="solid", color="black", weight=3]; 2080[label="LT",fontsize=16,color="green",shape="box"];2081[label="Succ vwx40100",fontsize=16,color="green",shape="box"];2082[label="vwx30000",fontsize=16,color="green",shape="box"];2083[label="primPlusNat (Succ vwx1540) (Succ vwx40100)",fontsize=16,color="black",shape="box"];2083 -> 2255[label="",style="solid", color="black", weight=3]; 2084[label="primPlusNat Zero (Succ vwx40100)",fontsize=16,color="black",shape="box"];2084 -> 2256[label="",style="solid", color="black", weight=3]; 2085[label="compare0 (vwx124,vwx125) (vwx126,vwx127) True",fontsize=16,color="black",shape="box"];2085 -> 2257[label="",style="solid", color="black", weight=3]; 2086 -> 1246[label="",style="dashed", color="red", weight=0]; 2086[label="primEqNat vwx30000 vwx40000",fontsize=16,color="magenta"];2086 -> 2258[label="",style="dashed", color="magenta", weight=3]; 2086 -> 2259[label="",style="dashed", color="magenta", weight=3]; 2087[label="False",fontsize=16,color="green",shape="box"];2088[label="False",fontsize=16,color="green",shape="box"];2089[label="True",fontsize=16,color="green",shape="box"];2090[label="vwx40000",fontsize=16,color="green",shape="box"];2091[label="vwx30000",fontsize=16,color="green",shape="box"];2092[label="vwx40000",fontsize=16,color="green",shape="box"];2093[label="vwx30000",fontsize=16,color="green",shape="box"];2094[label="vwx3002",fontsize=16,color="green",shape="box"];2095[label="vwx4002",fontsize=16,color="green",shape="box"];2096[label="vwx3002",fontsize=16,color="green",shape="box"];2097[label="vwx4002",fontsize=16,color="green",shape="box"];2098[label="vwx3002",fontsize=16,color="green",shape="box"];2099[label="vwx4002",fontsize=16,color="green",shape="box"];2100[label="vwx3002",fontsize=16,color="green",shape="box"];2101[label="vwx4002",fontsize=16,color="green",shape="box"];2102[label="vwx3002",fontsize=16,color="green",shape="box"];2103[label="vwx4002",fontsize=16,color="green",shape="box"];2104[label="vwx3002",fontsize=16,color="green",shape="box"];2105[label="vwx4002",fontsize=16,color="green",shape="box"];2106[label="vwx3002",fontsize=16,color="green",shape="box"];2107[label="vwx4002",fontsize=16,color="green",shape="box"];2108[label="vwx3002",fontsize=16,color="green",shape="box"];2109[label="vwx4002",fontsize=16,color="green",shape="box"];2110[label="vwx3002",fontsize=16,color="green",shape="box"];2111[label="vwx4002",fontsize=16,color="green",shape="box"];2112[label="vwx3002",fontsize=16,color="green",shape="box"];2113[label="vwx4002",fontsize=16,color="green",shape="box"];2114[label="vwx3002",fontsize=16,color="green",shape="box"];2115[label="vwx4002",fontsize=16,color="green",shape="box"];2116[label="vwx3002",fontsize=16,color="green",shape="box"];2117[label="vwx4002",fontsize=16,color="green",shape="box"];2118[label="vwx3002",fontsize=16,color="green",shape="box"];2119[label="vwx4002",fontsize=16,color="green",shape="box"];2120[label="vwx3002",fontsize=16,color="green",shape="box"];2121[label="vwx4002",fontsize=16,color="green",shape="box"];2122[label="vwx3001",fontsize=16,color="green",shape="box"];2123[label="vwx4001",fontsize=16,color="green",shape="box"];2124[label="vwx3001",fontsize=16,color="green",shape="box"];2125[label="vwx4001",fontsize=16,color="green",shape="box"];2126[label="vwx3001",fontsize=16,color="green",shape="box"];2127[label="vwx4001",fontsize=16,color="green",shape="box"];2128[label="vwx3001",fontsize=16,color="green",shape="box"];2129[label="vwx4001",fontsize=16,color="green",shape="box"];2130[label="vwx3001",fontsize=16,color="green",shape="box"];2131[label="vwx4001",fontsize=16,color="green",shape="box"];2132[label="vwx3001",fontsize=16,color="green",shape="box"];2133[label="vwx4001",fontsize=16,color="green",shape="box"];2134[label="vwx3001",fontsize=16,color="green",shape="box"];2135[label="vwx4001",fontsize=16,color="green",shape="box"];2136[label="vwx3001",fontsize=16,color="green",shape="box"];2137[label="vwx4001",fontsize=16,color="green",shape="box"];2138[label="vwx3001",fontsize=16,color="green",shape="box"];2139[label="vwx4001",fontsize=16,color="green",shape="box"];2140[label="vwx3001",fontsize=16,color="green",shape="box"];2141[label="vwx4001",fontsize=16,color="green",shape="box"];2142[label="vwx3001",fontsize=16,color="green",shape="box"];2143[label="vwx4001",fontsize=16,color="green",shape="box"];2144[label="vwx3001",fontsize=16,color="green",shape="box"];2145[label="vwx4001",fontsize=16,color="green",shape="box"];2146[label="vwx3001",fontsize=16,color="green",shape="box"];2147[label="vwx4001",fontsize=16,color="green",shape="box"];2148[label="vwx3001",fontsize=16,color="green",shape="box"];2149[label="vwx4001",fontsize=16,color="green",shape="box"];2151 -> 351[label="",style="dashed", color="red", weight=0]; 2151[label="vwx148 == GT",fontsize=16,color="magenta"];2151 -> 2260[label="",style="dashed", color="magenta", weight=3]; 2151 -> 2261[label="",style="dashed", color="magenta", weight=3]; 2150[label="not vwx155",fontsize=16,color="burlywood",shape="triangle"];3425[label="vwx155/False",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3425[label="",style="solid", color="burlywood", weight=9]; 3425 -> 2262[label="",style="solid", color="burlywood", weight=3]; 3426[label="vwx155/True",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3426[label="",style="solid", color="burlywood", weight=9]; 3426 -> 2263[label="",style="solid", color="burlywood", weight=3]; 2152[label="vwx360 < vwx370",fontsize=16,color="blue",shape="box"];3427[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3427[label="",style="solid", color="blue", weight=9]; 3427 -> 2264[label="",style="solid", color="blue", weight=3]; 3428[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3428[label="",style="solid", color="blue", weight=9]; 3428 -> 2265[label="",style="solid", color="blue", weight=3]; 3429[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3429[label="",style="solid", color="blue", weight=9]; 3429 -> 2266[label="",style="solid", color="blue", weight=3]; 3430[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3430[label="",style="solid", color="blue", weight=9]; 3430 -> 2267[label="",style="solid", color="blue", weight=3]; 3431[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3431[label="",style="solid", color="blue", weight=9]; 3431 -> 2268[label="",style="solid", color="blue", weight=3]; 3432[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3432[label="",style="solid", color="blue", weight=9]; 3432 -> 2269[label="",style="solid", color="blue", weight=3]; 3433[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3433[label="",style="solid", color="blue", weight=9]; 3433 -> 2270[label="",style="solid", color="blue", weight=3]; 3434[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3434[label="",style="solid", color="blue", weight=9]; 3434 -> 2271[label="",style="solid", color="blue", weight=3]; 3435[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3435[label="",style="solid", color="blue", weight=9]; 3435 -> 2272[label="",style="solid", color="blue", weight=3]; 3436[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3436[label="",style="solid", color="blue", weight=9]; 3436 -> 2273[label="",style="solid", color="blue", weight=3]; 3437[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3437[label="",style="solid", color="blue", weight=9]; 3437 -> 2274[label="",style="solid", color="blue", weight=3]; 3438[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3438[label="",style="solid", color="blue", weight=9]; 3438 -> 2275[label="",style="solid", color="blue", weight=3]; 3439[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3439[label="",style="solid", color="blue", weight=9]; 3439 -> 2276[label="",style="solid", color="blue", weight=3]; 3440[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3440[label="",style="solid", color="blue", weight=9]; 3440 -> 2277[label="",style="solid", color="blue", weight=3]; 2153 -> 782[label="",style="dashed", color="red", weight=0]; 2153[label="vwx360 == vwx370 && vwx361 <= vwx371",fontsize=16,color="magenta"];2153 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2153 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2154 -> 1110[label="",style="dashed", color="red", weight=0]; 2154[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2154 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2154 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2155 -> 1111[label="",style="dashed", color="red", weight=0]; 2155[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2155 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2155 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2156 -> 1112[label="",style="dashed", color="red", weight=0]; 2156[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2156 -> 2284[label="",style="dashed", color="magenta", weight=3]; 2156 -> 2285[label="",style="dashed", color="magenta", weight=3]; 2157 -> 1113[label="",style="dashed", color="red", weight=0]; 2157[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2157 -> 2286[label="",style="dashed", color="magenta", weight=3]; 2157 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2158 -> 1114[label="",style="dashed", color="red", weight=0]; 2158[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2158 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2158 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2159 -> 1115[label="",style="dashed", color="red", weight=0]; 2159[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2159 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2159 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2160 -> 1116[label="",style="dashed", color="red", weight=0]; 2160[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2160 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2160 -> 2293[label="",style="dashed", color="magenta", weight=3]; 2161 -> 1117[label="",style="dashed", color="red", weight=0]; 2161[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2161 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2161 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2162 -> 1118[label="",style="dashed", color="red", weight=0]; 2162[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2162 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2162 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2163 -> 1119[label="",style="dashed", color="red", weight=0]; 2163[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2163 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2163 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2164 -> 1120[label="",style="dashed", color="red", weight=0]; 2164[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2164 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2164 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2165 -> 1121[label="",style="dashed", color="red", weight=0]; 2165[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2165 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2165 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2166 -> 1122[label="",style="dashed", color="red", weight=0]; 2166[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2166 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2166 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2167 -> 1123[label="",style="dashed", color="red", weight=0]; 2167[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2167 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2167 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2168 -> 1110[label="",style="dashed", color="red", weight=0]; 2168[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2168 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2168 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2169 -> 1111[label="",style="dashed", color="red", weight=0]; 2169[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2169 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2169 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2170 -> 1112[label="",style="dashed", color="red", weight=0]; 2170[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2170 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2170 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2171 -> 1113[label="",style="dashed", color="red", weight=0]; 2171[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2171 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2171 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2172 -> 1114[label="",style="dashed", color="red", weight=0]; 2172[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2172 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2172 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2173 -> 1115[label="",style="dashed", color="red", weight=0]; 2173[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2173 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2173 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2174 -> 1116[label="",style="dashed", color="red", weight=0]; 2174[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2174 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2174 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2175 -> 1117[label="",style="dashed", color="red", weight=0]; 2175[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2175 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2175 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2176 -> 1118[label="",style="dashed", color="red", weight=0]; 2176[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2176 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2176 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2177 -> 1119[label="",style="dashed", color="red", weight=0]; 2177[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2177 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2177 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2178 -> 1120[label="",style="dashed", color="red", weight=0]; 2178[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2178 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2179 -> 1121[label="",style="dashed", color="red", weight=0]; 2179[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2179 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2179 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2180 -> 1122[label="",style="dashed", color="red", weight=0]; 2180[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2180 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2180 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2181 -> 1123[label="",style="dashed", color="red", weight=0]; 2181[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2181 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2181 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2182 -> 1110[label="",style="dashed", color="red", weight=0]; 2182[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2182 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2182 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2183 -> 1111[label="",style="dashed", color="red", weight=0]; 2183[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2183 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2183 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2184 -> 1112[label="",style="dashed", color="red", weight=0]; 2184[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2184 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2184 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2185 -> 1113[label="",style="dashed", color="red", weight=0]; 2185[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2185 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2185 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2186 -> 1114[label="",style="dashed", color="red", weight=0]; 2186[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2186 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2186 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2187 -> 1115[label="",style="dashed", color="red", weight=0]; 2187[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2187 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2187 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2188 -> 1116[label="",style="dashed", color="red", weight=0]; 2188[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2188 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2188 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2189 -> 1117[label="",style="dashed", color="red", weight=0]; 2189[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2189 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2189 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2190 -> 1118[label="",style="dashed", color="red", weight=0]; 2190[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2190 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2190 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2191 -> 1119[label="",style="dashed", color="red", weight=0]; 2191[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2191 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2191 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2192 -> 1120[label="",style="dashed", color="red", weight=0]; 2192[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2192 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2192 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2193 -> 1121[label="",style="dashed", color="red", weight=0]; 2193[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2193 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2193 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2194 -> 1122[label="",style="dashed", color="red", weight=0]; 2194[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2194 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2194 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2195 -> 1123[label="",style="dashed", color="red", weight=0]; 2195[label="vwx360 <= vwx370",fontsize=16,color="magenta"];2195 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2195 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2196[label="vwx360 < vwx370",fontsize=16,color="blue",shape="box"];3441[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2196 -> 3441[label="",style="solid", color="blue", weight=9]; 3441 -> 2364[label="",style="solid", color="blue", weight=3]; 3442[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2196 -> 3442[label="",style="solid", color="blue", weight=9]; 3442 -> 2365[label="",style="solid", color="blue", weight=3]; 3443[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2196 -> 3443[label="",style="solid", color="blue", weight=9]; 3443 -> 2366[label="",style="solid", color="blue", weight=3]; 3444[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2196 -> 3444[label="",style="solid", color="blue", weight=9]; 3444 -> 2367[label="",style="solid", color="blue", weight=3]; 3445[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2196 -> 3445[label="",style="solid", color="blue", weight=9]; 3445 -> 2368[label="",style="solid", color="blue", weight=3]; 3446[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2196 -> 3446[label="",style="solid", color="blue", weight=9]; 3446 -> 2369[label="",style="solid", color="blue", weight=3]; 3447[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2196 -> 3447[label="",style="solid", color="blue", weight=9]; 3447 -> 2370[label="",style="solid", color="blue", weight=3]; 3448[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2196 -> 3448[label="",style="solid", color="blue", weight=9]; 3448 -> 2371[label="",style="solid", color="blue", weight=3]; 3449[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2196 -> 3449[label="",style="solid", color="blue", weight=9]; 3449 -> 2372[label="",style="solid", color="blue", weight=3]; 3450[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2196 -> 3450[label="",style="solid", color="blue", weight=9]; 3450 -> 2373[label="",style="solid", color="blue", weight=3]; 3451[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2196 -> 3451[label="",style="solid", color="blue", weight=9]; 3451 -> 2374[label="",style="solid", color="blue", weight=3]; 3452[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2196 -> 3452[label="",style="solid", color="blue", weight=9]; 3452 -> 2375[label="",style="solid", color="blue", weight=3]; 3453[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2196 -> 3453[label="",style="solid", color="blue", weight=9]; 3453 -> 2376[label="",style="solid", color="blue", weight=3]; 3454[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2196 -> 3454[label="",style="solid", color="blue", weight=9]; 3454 -> 2377[label="",style="solid", color="blue", weight=3]; 2197 -> 782[label="",style="dashed", color="red", weight=0]; 2197[label="vwx360 == vwx370 && (vwx361 < vwx371 || vwx361 == vwx371 && vwx362 <= vwx372)",fontsize=16,color="magenta"];2197 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2197 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2198[label="vwx66",fontsize=16,color="green",shape="box"];2199[label="vwx63",fontsize=16,color="green",shape="box"];2200[label="vwx66",fontsize=16,color="green",shape="box"];2201[label="vwx63",fontsize=16,color="green",shape="box"];2202[label="vwx66",fontsize=16,color="green",shape="box"];2203[label="vwx63",fontsize=16,color="green",shape="box"];2204[label="vwx66",fontsize=16,color="green",shape="box"];2205[label="vwx63",fontsize=16,color="green",shape="box"];2206[label="vwx66",fontsize=16,color="green",shape="box"];2207[label="vwx63",fontsize=16,color="green",shape="box"];2208[label="vwx66",fontsize=16,color="green",shape="box"];2209[label="vwx63",fontsize=16,color="green",shape="box"];2210[label="vwx66",fontsize=16,color="green",shape="box"];2211[label="vwx63",fontsize=16,color="green",shape="box"];2212[label="vwx66",fontsize=16,color="green",shape="box"];2213[label="vwx63",fontsize=16,color="green",shape="box"];2214[label="vwx66",fontsize=16,color="green",shape="box"];2215[label="vwx63",fontsize=16,color="green",shape="box"];2216[label="vwx66",fontsize=16,color="green",shape="box"];2217[label="vwx63",fontsize=16,color="green",shape="box"];2218[label="vwx66",fontsize=16,color="green",shape="box"];2219[label="vwx63",fontsize=16,color="green",shape="box"];2220[label="vwx66",fontsize=16,color="green",shape="box"];2221[label="vwx63",fontsize=16,color="green",shape="box"];2222[label="vwx66",fontsize=16,color="green",shape="box"];2223[label="vwx63",fontsize=16,color="green",shape="box"];2224[label="vwx66",fontsize=16,color="green",shape="box"];2225[label="vwx63",fontsize=16,color="green",shape="box"];2226[label="vwx62",fontsize=16,color="green",shape="box"];2227[label="vwx65",fontsize=16,color="green",shape="box"];2228[label="vwx62",fontsize=16,color="green",shape="box"];2229[label="vwx65",fontsize=16,color="green",shape="box"];2230[label="vwx62",fontsize=16,color="green",shape="box"];2231[label="vwx65",fontsize=16,color="green",shape="box"];2232[label="vwx62",fontsize=16,color="green",shape="box"];2233[label="vwx65",fontsize=16,color="green",shape="box"];2234[label="vwx62",fontsize=16,color="green",shape="box"];2235[label="vwx65",fontsize=16,color="green",shape="box"];2236[label="vwx62",fontsize=16,color="green",shape="box"];2237[label="vwx65",fontsize=16,color="green",shape="box"];2238[label="vwx62",fontsize=16,color="green",shape="box"];2239[label="vwx65",fontsize=16,color="green",shape="box"];2240[label="vwx62",fontsize=16,color="green",shape="box"];2241[label="vwx65",fontsize=16,color="green",shape="box"];2242[label="vwx62",fontsize=16,color="green",shape="box"];2243[label="vwx65",fontsize=16,color="green",shape="box"];2244[label="vwx62",fontsize=16,color="green",shape="box"];2245[label="vwx65",fontsize=16,color="green",shape="box"];2246[label="vwx62",fontsize=16,color="green",shape="box"];2247[label="vwx65",fontsize=16,color="green",shape="box"];2248[label="vwx62",fontsize=16,color="green",shape="box"];2249[label="vwx65",fontsize=16,color="green",shape="box"];2250[label="vwx62",fontsize=16,color="green",shape="box"];2251[label="vwx65",fontsize=16,color="green",shape="box"];2252[label="vwx62",fontsize=16,color="green",shape="box"];2253[label="vwx65",fontsize=16,color="green",shape="box"];2254[label="compare0 (vwx139,vwx140,vwx141) (vwx142,vwx143,vwx144) True",fontsize=16,color="black",shape="box"];2254 -> 2380[label="",style="solid", color="black", weight=3]; 2255[label="Succ (Succ (primPlusNat vwx1540 vwx40100))",fontsize=16,color="green",shape="box"];2255 -> 2381[label="",style="dashed", color="green", weight=3]; 2256[label="Succ vwx40100",fontsize=16,color="green",shape="box"];2257[label="GT",fontsize=16,color="green",shape="box"];2258[label="vwx40000",fontsize=16,color="green",shape="box"];2259[label="vwx30000",fontsize=16,color="green",shape="box"];2260[label="vwx148",fontsize=16,color="green",shape="box"];2261[label="GT",fontsize=16,color="green",shape="box"];2262[label="not False",fontsize=16,color="black",shape="box"];2262 -> 2382[label="",style="solid", color="black", weight=3]; 2263[label="not True",fontsize=16,color="black",shape="box"];2263 -> 2383[label="",style="solid", color="black", weight=3]; 2264 -> 1055[label="",style="dashed", color="red", weight=0]; 2264[label="vwx360 < vwx370",fontsize=16,color="magenta"];2264 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2264 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2265 -> 1056[label="",style="dashed", color="red", weight=0]; 2265[label="vwx360 < vwx370",fontsize=16,color="magenta"];2265 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2265 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2266 -> 1057[label="",style="dashed", color="red", weight=0]; 2266[label="vwx360 < vwx370",fontsize=16,color="magenta"];2266 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2266 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2267 -> 4[label="",style="dashed", color="red", weight=0]; 2267[label="vwx360 < vwx370",fontsize=16,color="magenta"];2267 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2267 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2268 -> 1059[label="",style="dashed", color="red", weight=0]; 2268[label="vwx360 < vwx370",fontsize=16,color="magenta"];2268 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2268 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2269 -> 1060[label="",style="dashed", color="red", weight=0]; 2269[label="vwx360 < vwx370",fontsize=16,color="magenta"];2269 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2269 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2270 -> 1061[label="",style="dashed", color="red", weight=0]; 2270[label="vwx360 < vwx370",fontsize=16,color="magenta"];2270 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2270 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2271 -> 1062[label="",style="dashed", color="red", weight=0]; 2271[label="vwx360 < vwx370",fontsize=16,color="magenta"];2271 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2271 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2272 -> 1063[label="",style="dashed", color="red", weight=0]; 2272[label="vwx360 < vwx370",fontsize=16,color="magenta"];2272 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2272 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2273 -> 1064[label="",style="dashed", color="red", weight=0]; 2273[label="vwx360 < vwx370",fontsize=16,color="magenta"];2273 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2273 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2274 -> 1065[label="",style="dashed", color="red", weight=0]; 2274[label="vwx360 < vwx370",fontsize=16,color="magenta"];2274 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2274 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2275 -> 1066[label="",style="dashed", color="red", weight=0]; 2275[label="vwx360 < vwx370",fontsize=16,color="magenta"];2275 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2275 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2276 -> 1067[label="",style="dashed", color="red", weight=0]; 2276[label="vwx360 < vwx370",fontsize=16,color="magenta"];2276 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2276 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2277 -> 1068[label="",style="dashed", color="red", weight=0]; 2277[label="vwx360 < vwx370",fontsize=16,color="magenta"];2277 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2277 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2278[label="vwx361 <= vwx371",fontsize=16,color="blue",shape="box"];3455[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2278 -> 3455[label="",style="solid", color="blue", weight=9]; 3455 -> 2412[label="",style="solid", color="blue", weight=3]; 3456[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2278 -> 3456[label="",style="solid", color="blue", weight=9]; 3456 -> 2413[label="",style="solid", color="blue", weight=3]; 3457[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2278 -> 3457[label="",style="solid", color="blue", weight=9]; 3457 -> 2414[label="",style="solid", color="blue", weight=3]; 3458[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2278 -> 3458[label="",style="solid", color="blue", weight=9]; 3458 -> 2415[label="",style="solid", color="blue", weight=3]; 3459[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2278 -> 3459[label="",style="solid", color="blue", weight=9]; 3459 -> 2416[label="",style="solid", color="blue", weight=3]; 3460[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2278 -> 3460[label="",style="solid", color="blue", weight=9]; 3460 -> 2417[label="",style="solid", color="blue", weight=3]; 3461[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2278 -> 3461[label="",style="solid", color="blue", weight=9]; 3461 -> 2418[label="",style="solid", color="blue", weight=3]; 3462[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2278 -> 3462[label="",style="solid", color="blue", weight=9]; 3462 -> 2419[label="",style="solid", color="blue", weight=3]; 3463[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2278 -> 3463[label="",style="solid", color="blue", weight=9]; 3463 -> 2420[label="",style="solid", color="blue", weight=3]; 3464[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2278 -> 3464[label="",style="solid", color="blue", weight=9]; 3464 -> 2421[label="",style="solid", color="blue", weight=3]; 3465[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2278 -> 3465[label="",style="solid", color="blue", weight=9]; 3465 -> 2422[label="",style="solid", color="blue", weight=3]; 3466[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2278 -> 3466[label="",style="solid", color="blue", weight=9]; 3466 -> 2423[label="",style="solid", color="blue", weight=3]; 3467[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2278 -> 3467[label="",style="solid", color="blue", weight=9]; 3467 -> 2424[label="",style="solid", color="blue", weight=3]; 3468[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2278 -> 3468[label="",style="solid", color="blue", weight=9]; 3468 -> 2425[label="",style="solid", color="blue", weight=3]; 2279[label="vwx360 == vwx370",fontsize=16,color="blue",shape="box"];3469[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3469[label="",style="solid", color="blue", weight=9]; 3469 -> 2426[label="",style="solid", color="blue", weight=3]; 3470[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3470[label="",style="solid", color="blue", weight=9]; 3470 -> 2427[label="",style="solid", color="blue", weight=3]; 3471[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3471[label="",style="solid", color="blue", weight=9]; 3471 -> 2428[label="",style="solid", color="blue", weight=3]; 3472[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3472[label="",style="solid", color="blue", weight=9]; 3472 -> 2429[label="",style="solid", color="blue", weight=3]; 3473[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3473[label="",style="solid", color="blue", weight=9]; 3473 -> 2430[label="",style="solid", color="blue", weight=3]; 3474[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3474[label="",style="solid", color="blue", weight=9]; 3474 -> 2431[label="",style="solid", color="blue", weight=3]; 3475[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3475[label="",style="solid", color="blue", weight=9]; 3475 -> 2432[label="",style="solid", color="blue", weight=3]; 3476[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3476[label="",style="solid", color="blue", weight=9]; 3476 -> 2433[label="",style="solid", color="blue", weight=3]; 3477[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3477[label="",style="solid", color="blue", weight=9]; 3477 -> 2434[label="",style="solid", color="blue", weight=3]; 3478[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3478[label="",style="solid", color="blue", weight=9]; 3478 -> 2435[label="",style="solid", color="blue", weight=3]; 3479[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3479[label="",style="solid", color="blue", weight=9]; 3479 -> 2436[label="",style="solid", color="blue", weight=3]; 3480[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3480[label="",style="solid", color="blue", weight=9]; 3480 -> 2437[label="",style="solid", color="blue", weight=3]; 3481[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3481[label="",style="solid", color="blue", weight=9]; 3481 -> 2438[label="",style="solid", color="blue", weight=3]; 3482[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2279 -> 3482[label="",style="solid", color="blue", weight=9]; 3482 -> 2439[label="",style="solid", color="blue", weight=3]; 2280[label="vwx370",fontsize=16,color="green",shape="box"];2281[label="vwx360",fontsize=16,color="green",shape="box"];2282[label="vwx370",fontsize=16,color="green",shape="box"];2283[label="vwx360",fontsize=16,color="green",shape="box"];2284[label="vwx370",fontsize=16,color="green",shape="box"];2285[label="vwx360",fontsize=16,color="green",shape="box"];2286[label="vwx370",fontsize=16,color="green",shape="box"];2287[label="vwx360",fontsize=16,color="green",shape="box"];2288[label="vwx370",fontsize=16,color="green",shape="box"];2289[label="vwx360",fontsize=16,color="green",shape="box"];2290[label="vwx370",fontsize=16,color="green",shape="box"];2291[label="vwx360",fontsize=16,color="green",shape="box"];2292[label="vwx370",fontsize=16,color="green",shape="box"];2293[label="vwx360",fontsize=16,color="green",shape="box"];2294[label="vwx370",fontsize=16,color="green",shape="box"];2295[label="vwx360",fontsize=16,color="green",shape="box"];2296[label="vwx370",fontsize=16,color="green",shape="box"];2297[label="vwx360",fontsize=16,color="green",shape="box"];2298[label="vwx370",fontsize=16,color="green",shape="box"];2299[label="vwx360",fontsize=16,color="green",shape="box"];2300[label="vwx370",fontsize=16,color="green",shape="box"];2301[label="vwx360",fontsize=16,color="green",shape="box"];2302[label="vwx370",fontsize=16,color="green",shape="box"];2303[label="vwx360",fontsize=16,color="green",shape="box"];2304[label="vwx370",fontsize=16,color="green",shape="box"];2305[label="vwx360",fontsize=16,color="green",shape="box"];2306[label="vwx370",fontsize=16,color="green",shape="box"];2307[label="vwx360",fontsize=16,color="green",shape="box"];2308[label="vwx370",fontsize=16,color="green",shape="box"];2309[label="vwx360",fontsize=16,color="green",shape="box"];2310[label="vwx370",fontsize=16,color="green",shape="box"];2311[label="vwx360",fontsize=16,color="green",shape="box"];2312[label="vwx370",fontsize=16,color="green",shape="box"];2313[label="vwx360",fontsize=16,color="green",shape="box"];2314[label="vwx370",fontsize=16,color="green",shape="box"];2315[label="vwx360",fontsize=16,color="green",shape="box"];2316[label="vwx370",fontsize=16,color="green",shape="box"];2317[label="vwx360",fontsize=16,color="green",shape="box"];2318[label="vwx370",fontsize=16,color="green",shape="box"];2319[label="vwx360",fontsize=16,color="green",shape="box"];2320[label="vwx370",fontsize=16,color="green",shape="box"];2321[label="vwx360",fontsize=16,color="green",shape="box"];2322[label="vwx370",fontsize=16,color="green",shape="box"];2323[label="vwx360",fontsize=16,color="green",shape="box"];2324[label="vwx370",fontsize=16,color="green",shape="box"];2325[label="vwx360",fontsize=16,color="green",shape="box"];2326[label="vwx370",fontsize=16,color="green",shape="box"];2327[label="vwx360",fontsize=16,color="green",shape="box"];2328[label="vwx370",fontsize=16,color="green",shape="box"];2329[label="vwx360",fontsize=16,color="green",shape="box"];2330[label="vwx370",fontsize=16,color="green",shape="box"];2331[label="vwx360",fontsize=16,color="green",shape="box"];2332[label="vwx370",fontsize=16,color="green",shape="box"];2333[label="vwx360",fontsize=16,color="green",shape="box"];2334[label="vwx370",fontsize=16,color="green",shape="box"];2335[label="vwx360",fontsize=16,color="green",shape="box"];2336[label="vwx370",fontsize=16,color="green",shape="box"];2337[label="vwx360",fontsize=16,color="green",shape="box"];2338[label="vwx370",fontsize=16,color="green",shape="box"];2339[label="vwx360",fontsize=16,color="green",shape="box"];2340[label="vwx370",fontsize=16,color="green",shape="box"];2341[label="vwx360",fontsize=16,color="green",shape="box"];2342[label="vwx370",fontsize=16,color="green",shape="box"];2343[label="vwx360",fontsize=16,color="green",shape="box"];2344[label="vwx370",fontsize=16,color="green",shape="box"];2345[label="vwx360",fontsize=16,color="green",shape="box"];2346[label="vwx370",fontsize=16,color="green",shape="box"];2347[label="vwx360",fontsize=16,color="green",shape="box"];2348[label="vwx370",fontsize=16,color="green",shape="box"];2349[label="vwx360",fontsize=16,color="green",shape="box"];2350[label="vwx370",fontsize=16,color="green",shape="box"];2351[label="vwx360",fontsize=16,color="green",shape="box"];2352[label="vwx370",fontsize=16,color="green",shape="box"];2353[label="vwx360",fontsize=16,color="green",shape="box"];2354[label="vwx370",fontsize=16,color="green",shape="box"];2355[label="vwx360",fontsize=16,color="green",shape="box"];2356[label="vwx370",fontsize=16,color="green",shape="box"];2357[label="vwx360",fontsize=16,color="green",shape="box"];2358[label="vwx370",fontsize=16,color="green",shape="box"];2359[label="vwx360",fontsize=16,color="green",shape="box"];2360[label="vwx370",fontsize=16,color="green",shape="box"];2361[label="vwx360",fontsize=16,color="green",shape="box"];2362[label="vwx370",fontsize=16,color="green",shape="box"];2363[label="vwx360",fontsize=16,color="green",shape="box"];2364 -> 1055[label="",style="dashed", color="red", weight=0]; 2364[label="vwx360 < vwx370",fontsize=16,color="magenta"];2364 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2364 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2365 -> 1056[label="",style="dashed", color="red", weight=0]; 2365[label="vwx360 < vwx370",fontsize=16,color="magenta"];2365 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2365 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2366 -> 1057[label="",style="dashed", color="red", weight=0]; 2366[label="vwx360 < vwx370",fontsize=16,color="magenta"];2366 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2366 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2367 -> 4[label="",style="dashed", color="red", weight=0]; 2367[label="vwx360 < vwx370",fontsize=16,color="magenta"];2367 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2367 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2368 -> 1059[label="",style="dashed", color="red", weight=0]; 2368[label="vwx360 < vwx370",fontsize=16,color="magenta"];2368 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2368 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2369 -> 1060[label="",style="dashed", color="red", weight=0]; 2369[label="vwx360 < vwx370",fontsize=16,color="magenta"];2369 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2369 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2370 -> 1061[label="",style="dashed", color="red", weight=0]; 2370[label="vwx360 < vwx370",fontsize=16,color="magenta"];2370 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2370 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2371 -> 1062[label="",style="dashed", color="red", weight=0]; 2371[label="vwx360 < vwx370",fontsize=16,color="magenta"];2371 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2371 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2372 -> 1063[label="",style="dashed", color="red", weight=0]; 2372[label="vwx360 < vwx370",fontsize=16,color="magenta"];2372 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2372 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2373 -> 1064[label="",style="dashed", color="red", weight=0]; 2373[label="vwx360 < vwx370",fontsize=16,color="magenta"];2373 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2373 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2374 -> 1065[label="",style="dashed", color="red", weight=0]; 2374[label="vwx360 < vwx370",fontsize=16,color="magenta"];2374 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2374 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2375 -> 1066[label="",style="dashed", color="red", weight=0]; 2375[label="vwx360 < vwx370",fontsize=16,color="magenta"];2375 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2375 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2376 -> 1067[label="",style="dashed", color="red", weight=0]; 2376[label="vwx360 < vwx370",fontsize=16,color="magenta"];2376 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2376 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2377 -> 1068[label="",style="dashed", color="red", weight=0]; 2377[label="vwx360 < vwx370",fontsize=16,color="magenta"];2377 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2377 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2378 -> 1725[label="",style="dashed", color="red", weight=0]; 2378[label="vwx361 < vwx371 || vwx361 == vwx371 && vwx362 <= vwx372",fontsize=16,color="magenta"];2378 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2378 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2379[label="vwx360 == vwx370",fontsize=16,color="blue",shape="box"];3483[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 3483[label="",style="solid", color="blue", weight=9]; 3483 -> 2470[label="",style="solid", color="blue", weight=3]; 3484[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 3484[label="",style="solid", color="blue", weight=9]; 3484 -> 2471[label="",style="solid", color="blue", weight=3]; 3485[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 3485[label="",style="solid", color="blue", weight=9]; 3485 -> 2472[label="",style="solid", color="blue", weight=3]; 3486[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 3486[label="",style="solid", color="blue", weight=9]; 3486 -> 2473[label="",style="solid", color="blue", weight=3]; 3487[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 3487[label="",style="solid", color="blue", weight=9]; 3487 -> 2474[label="",style="solid", color="blue", weight=3]; 3488[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 3488[label="",style="solid", color="blue", weight=9]; 3488 -> 2475[label="",style="solid", color="blue", weight=3]; 3489[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 3489[label="",style="solid", color="blue", weight=9]; 3489 -> 2476[label="",style="solid", color="blue", weight=3]; 3490[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 3490[label="",style="solid", color="blue", weight=9]; 3490 -> 2477[label="",style="solid", color="blue", weight=3]; 3491[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 3491[label="",style="solid", color="blue", weight=9]; 3491 -> 2478[label="",style="solid", color="blue", weight=3]; 3492[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 3492[label="",style="solid", color="blue", weight=9]; 3492 -> 2479[label="",style="solid", color="blue", weight=3]; 3493[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 3493[label="",style="solid", color="blue", weight=9]; 3493 -> 2480[label="",style="solid", color="blue", weight=3]; 3494[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 3494[label="",style="solid", color="blue", weight=9]; 3494 -> 2481[label="",style="solid", color="blue", weight=3]; 3495[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 3495[label="",style="solid", color="blue", weight=9]; 3495 -> 2482[label="",style="solid", color="blue", weight=3]; 3496[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2379 -> 3496[label="",style="solid", color="blue", weight=9]; 3496 -> 2483[label="",style="solid", color="blue", weight=3]; 2380[label="GT",fontsize=16,color="green",shape="box"];2381[label="primPlusNat vwx1540 vwx40100",fontsize=16,color="burlywood",shape="triangle"];3497[label="vwx1540/Succ vwx15400",fontsize=10,color="white",style="solid",shape="box"];2381 -> 3497[label="",style="solid", color="burlywood", weight=9]; 3497 -> 2484[label="",style="solid", color="burlywood", weight=3]; 3498[label="vwx1540/Zero",fontsize=10,color="white",style="solid",shape="box"];2381 -> 3498[label="",style="solid", color="burlywood", weight=9]; 3498 -> 2485[label="",style="solid", color="burlywood", weight=3]; 2382[label="True",fontsize=16,color="green",shape="box"];2383[label="False",fontsize=16,color="green",shape="box"];2384[label="vwx370",fontsize=16,color="green",shape="box"];2385[label="vwx360",fontsize=16,color="green",shape="box"];2386[label="vwx370",fontsize=16,color="green",shape="box"];2387[label="vwx360",fontsize=16,color="green",shape="box"];2388[label="vwx370",fontsize=16,color="green",shape="box"];2389[label="vwx360",fontsize=16,color="green",shape="box"];2390[label="vwx360",fontsize=16,color="green",shape="box"];2391[label="vwx370",fontsize=16,color="green",shape="box"];2392[label="vwx370",fontsize=16,color="green",shape="box"];2393[label="vwx360",fontsize=16,color="green",shape="box"];2394[label="vwx370",fontsize=16,color="green",shape="box"];2395[label="vwx360",fontsize=16,color="green",shape="box"];2396[label="vwx370",fontsize=16,color="green",shape="box"];2397[label="vwx360",fontsize=16,color="green",shape="box"];2398[label="vwx370",fontsize=16,color="green",shape="box"];2399[label="vwx360",fontsize=16,color="green",shape="box"];2400[label="vwx370",fontsize=16,color="green",shape="box"];2401[label="vwx360",fontsize=16,color="green",shape="box"];2402[label="vwx370",fontsize=16,color="green",shape="box"];2403[label="vwx360",fontsize=16,color="green",shape="box"];2404[label="vwx370",fontsize=16,color="green",shape="box"];2405[label="vwx360",fontsize=16,color="green",shape="box"];2406[label="vwx370",fontsize=16,color="green",shape="box"];2407[label="vwx360",fontsize=16,color="green",shape="box"];2408[label="vwx370",fontsize=16,color="green",shape="box"];2409[label="vwx360",fontsize=16,color="green",shape="box"];2410[label="vwx370",fontsize=16,color="green",shape="box"];2411[label="vwx360",fontsize=16,color="green",shape="box"];2412 -> 1110[label="",style="dashed", color="red", weight=0]; 2412[label="vwx361 <= vwx371",fontsize=16,color="magenta"];2412 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2412 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2413 -> 1111[label="",style="dashed", color="red", weight=0]; 2413[label="vwx361 <= vwx371",fontsize=16,color="magenta"];2413 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2413 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2414 -> 1112[label="",style="dashed", color="red", weight=0]; 2414[label="vwx361 <= vwx371",fontsize=16,color="magenta"];2414 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2414 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2415 -> 1113[label="",style="dashed", color="red", weight=0]; 2415[label="vwx361 <= vwx371",fontsize=16,color="magenta"];2415 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2415 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2416 -> 1114[label="",style="dashed", color="red", weight=0]; 2416[label="vwx361 <= vwx371",fontsize=16,color="magenta"];2416 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2416 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2417 -> 1115[label="",style="dashed", color="red", weight=0]; 2417[label="vwx361 <= vwx371",fontsize=16,color="magenta"];2417 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2417 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2418 -> 1116[label="",style="dashed", color="red", weight=0]; 2418[label="vwx361 <= vwx371",fontsize=16,color="magenta"];2418 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2418 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2419 -> 1117[label="",style="dashed", color="red", weight=0]; 2419[label="vwx361 <= vwx371",fontsize=16,color="magenta"];2419 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2419 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2420 -> 1118[label="",style="dashed", color="red", weight=0]; 2420[label="vwx361 <= vwx371",fontsize=16,color="magenta"];2420 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2420 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2421 -> 1119[label="",style="dashed", color="red", weight=0]; 2421[label="vwx361 <= vwx371",fontsize=16,color="magenta"];2421 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2421 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2422 -> 1120[label="",style="dashed", color="red", weight=0]; 2422[label="vwx361 <= vwx371",fontsize=16,color="magenta"];2422 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2422 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2423 -> 1121[label="",style="dashed", color="red", weight=0]; 2423[label="vwx361 <= vwx371",fontsize=16,color="magenta"];2423 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2423 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2424 -> 1122[label="",style="dashed", color="red", weight=0]; 2424[label="vwx361 <= vwx371",fontsize=16,color="magenta"];2424 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2424 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2425 -> 1123[label="",style="dashed", color="red", weight=0]; 2425[label="vwx361 <= vwx371",fontsize=16,color="magenta"];2425 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2425 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2426 -> 357[label="",style="dashed", color="red", weight=0]; 2426[label="vwx360 == vwx370",fontsize=16,color="magenta"];2426 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2426 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2427 -> 352[label="",style="dashed", color="red", weight=0]; 2427[label="vwx360 == vwx370",fontsize=16,color="magenta"];2427 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2427 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2428 -> 358[label="",style="dashed", color="red", weight=0]; 2428[label="vwx360 == vwx370",fontsize=16,color="magenta"];2428 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2428 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2429 -> 354[label="",style="dashed", color="red", weight=0]; 2429[label="vwx360 == vwx370",fontsize=16,color="magenta"];2429 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2430 -> 363[label="",style="dashed", color="red", weight=0]; 2430[label="vwx360 == vwx370",fontsize=16,color="magenta"];2430 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2431 -> 359[label="",style="dashed", color="red", weight=0]; 2431[label="vwx360 == vwx370",fontsize=16,color="magenta"];2431 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2432 -> 350[label="",style="dashed", color="red", weight=0]; 2432[label="vwx360 == vwx370",fontsize=16,color="magenta"];2432 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2433 -> 356[label="",style="dashed", color="red", weight=0]; 2433[label="vwx360 == vwx370",fontsize=16,color="magenta"];2433 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2434 -> 355[label="",style="dashed", color="red", weight=0]; 2434[label="vwx360 == vwx370",fontsize=16,color="magenta"];2434 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2435 -> 362[label="",style="dashed", color="red", weight=0]; 2435[label="vwx360 == vwx370",fontsize=16,color="magenta"];2435 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2436 -> 353[label="",style="dashed", color="red", weight=0]; 2436[label="vwx360 == vwx370",fontsize=16,color="magenta"];2436 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2437 -> 351[label="",style="dashed", color="red", weight=0]; 2437[label="vwx360 == vwx370",fontsize=16,color="magenta"];2437 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2438 -> 361[label="",style="dashed", color="red", weight=0]; 2438[label="vwx360 == vwx370",fontsize=16,color="magenta"];2438 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2439 -> 360[label="",style="dashed", color="red", weight=0]; 2439[label="vwx360 == vwx370",fontsize=16,color="magenta"];2439 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2440[label="vwx370",fontsize=16,color="green",shape="box"];2441[label="vwx360",fontsize=16,color="green",shape="box"];2442[label="vwx370",fontsize=16,color="green",shape="box"];2443[label="vwx360",fontsize=16,color="green",shape="box"];2444[label="vwx370",fontsize=16,color="green",shape="box"];2445[label="vwx360",fontsize=16,color="green",shape="box"];2446[label="vwx360",fontsize=16,color="green",shape="box"];2447[label="vwx370",fontsize=16,color="green",shape="box"];2448[label="vwx370",fontsize=16,color="green",shape="box"];2449[label="vwx360",fontsize=16,color="green",shape="box"];2450[label="vwx370",fontsize=16,color="green",shape="box"];2451[label="vwx360",fontsize=16,color="green",shape="box"];2452[label="vwx370",fontsize=16,color="green",shape="box"];2453[label="vwx360",fontsize=16,color="green",shape="box"];2454[label="vwx370",fontsize=16,color="green",shape="box"];2455[label="vwx360",fontsize=16,color="green",shape="box"];2456[label="vwx370",fontsize=16,color="green",shape="box"];2457[label="vwx360",fontsize=16,color="green",shape="box"];2458[label="vwx370",fontsize=16,color="green",shape="box"];2459[label="vwx360",fontsize=16,color="green",shape="box"];2460[label="vwx370",fontsize=16,color="green",shape="box"];2461[label="vwx360",fontsize=16,color="green",shape="box"];2462[label="vwx370",fontsize=16,color="green",shape="box"];2463[label="vwx360",fontsize=16,color="green",shape="box"];2464[label="vwx370",fontsize=16,color="green",shape="box"];2465[label="vwx360",fontsize=16,color="green",shape="box"];2466[label="vwx370",fontsize=16,color="green",shape="box"];2467[label="vwx360",fontsize=16,color="green",shape="box"];2468[label="vwx361 < vwx371",fontsize=16,color="blue",shape="box"];3499[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3499[label="",style="solid", color="blue", weight=9]; 3499 -> 2542[label="",style="solid", color="blue", weight=3]; 3500[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3500[label="",style="solid", color="blue", weight=9]; 3500 -> 2543[label="",style="solid", color="blue", weight=3]; 3501[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3501[label="",style="solid", color="blue", weight=9]; 3501 -> 2544[label="",style="solid", color="blue", weight=3]; 3502[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3502[label="",style="solid", color="blue", weight=9]; 3502 -> 2545[label="",style="solid", color="blue", weight=3]; 3503[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3503[label="",style="solid", color="blue", weight=9]; 3503 -> 2546[label="",style="solid", color="blue", weight=3]; 3504[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3504[label="",style="solid", color="blue", weight=9]; 3504 -> 2547[label="",style="solid", color="blue", weight=3]; 3505[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3505[label="",style="solid", color="blue", weight=9]; 3505 -> 2548[label="",style="solid", color="blue", weight=3]; 3506[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3506[label="",style="solid", color="blue", weight=9]; 3506 -> 2549[label="",style="solid", color="blue", weight=3]; 3507[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3507[label="",style="solid", color="blue", weight=9]; 3507 -> 2550[label="",style="solid", color="blue", weight=3]; 3508[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3508[label="",style="solid", color="blue", weight=9]; 3508 -> 2551[label="",style="solid", color="blue", weight=3]; 3509[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3509[label="",style="solid", color="blue", weight=9]; 3509 -> 2552[label="",style="solid", color="blue", weight=3]; 3510[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3510[label="",style="solid", color="blue", weight=9]; 3510 -> 2553[label="",style="solid", color="blue", weight=3]; 3511[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3511[label="",style="solid", color="blue", weight=9]; 3511 -> 2554[label="",style="solid", color="blue", weight=3]; 3512[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2468 -> 3512[label="",style="solid", color="blue", weight=9]; 3512 -> 2555[label="",style="solid", color="blue", weight=3]; 2469 -> 782[label="",style="dashed", color="red", weight=0]; 2469[label="vwx361 == vwx371 && vwx362 <= vwx372",fontsize=16,color="magenta"];2469 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2469 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2470 -> 357[label="",style="dashed", color="red", weight=0]; 2470[label="vwx360 == vwx370",fontsize=16,color="magenta"];2470 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2470 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2471 -> 352[label="",style="dashed", color="red", weight=0]; 2471[label="vwx360 == vwx370",fontsize=16,color="magenta"];2471 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2471 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2472 -> 358[label="",style="dashed", color="red", weight=0]; 2472[label="vwx360 == vwx370",fontsize=16,color="magenta"];2472 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2472 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2473 -> 354[label="",style="dashed", color="red", weight=0]; 2473[label="vwx360 == vwx370",fontsize=16,color="magenta"];2473 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2473 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2474 -> 363[label="",style="dashed", color="red", weight=0]; 2474[label="vwx360 == vwx370",fontsize=16,color="magenta"];2474 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2474 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2475 -> 359[label="",style="dashed", color="red", weight=0]; 2475[label="vwx360 == vwx370",fontsize=16,color="magenta"];2475 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2475 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2476 -> 350[label="",style="dashed", color="red", weight=0]; 2476[label="vwx360 == vwx370",fontsize=16,color="magenta"];2476 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2476 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2477 -> 356[label="",style="dashed", color="red", weight=0]; 2477[label="vwx360 == vwx370",fontsize=16,color="magenta"];2477 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2477 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2478 -> 355[label="",style="dashed", color="red", weight=0]; 2478[label="vwx360 == vwx370",fontsize=16,color="magenta"];2478 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2478 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2479 -> 362[label="",style="dashed", color="red", weight=0]; 2479[label="vwx360 == vwx370",fontsize=16,color="magenta"];2479 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2479 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2480 -> 353[label="",style="dashed", color="red", weight=0]; 2480[label="vwx360 == vwx370",fontsize=16,color="magenta"];2480 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2480 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2481 -> 351[label="",style="dashed", color="red", weight=0]; 2481[label="vwx360 == vwx370",fontsize=16,color="magenta"];2481 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2481 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2482 -> 361[label="",style="dashed", color="red", weight=0]; 2482[label="vwx360 == vwx370",fontsize=16,color="magenta"];2482 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2483 -> 360[label="",style="dashed", color="red", weight=0]; 2483[label="vwx360 == vwx370",fontsize=16,color="magenta"];2483 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2483 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2484[label="primPlusNat (Succ vwx15400) vwx40100",fontsize=16,color="burlywood",shape="box"];3513[label="vwx40100/Succ vwx401000",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3513[label="",style="solid", color="burlywood", weight=9]; 3513 -> 2586[label="",style="solid", color="burlywood", weight=3]; 3514[label="vwx40100/Zero",fontsize=10,color="white",style="solid",shape="box"];2484 -> 3514[label="",style="solid", color="burlywood", weight=9]; 3514 -> 2587[label="",style="solid", color="burlywood", weight=3]; 2485[label="primPlusNat Zero vwx40100",fontsize=16,color="burlywood",shape="box"];3515[label="vwx40100/Succ vwx401000",fontsize=10,color="white",style="solid",shape="box"];2485 -> 3515[label="",style="solid", color="burlywood", weight=9]; 3515 -> 2588[label="",style="solid", color="burlywood", weight=3]; 3516[label="vwx40100/Zero",fontsize=10,color="white",style="solid",shape="box"];2485 -> 3516[label="",style="solid", color="burlywood", weight=9]; 3516 -> 2589[label="",style="solid", color="burlywood", weight=3]; 2486[label="vwx371",fontsize=16,color="green",shape="box"];2487[label="vwx361",fontsize=16,color="green",shape="box"];2488[label="vwx371",fontsize=16,color="green",shape="box"];2489[label="vwx361",fontsize=16,color="green",shape="box"];2490[label="vwx371",fontsize=16,color="green",shape="box"];2491[label="vwx361",fontsize=16,color="green",shape="box"];2492[label="vwx371",fontsize=16,color="green",shape="box"];2493[label="vwx361",fontsize=16,color="green",shape="box"];2494[label="vwx371",fontsize=16,color="green",shape="box"];2495[label="vwx361",fontsize=16,color="green",shape="box"];2496[label="vwx371",fontsize=16,color="green",shape="box"];2497[label="vwx361",fontsize=16,color="green",shape="box"];2498[label="vwx371",fontsize=16,color="green",shape="box"];2499[label="vwx361",fontsize=16,color="green",shape="box"];2500[label="vwx371",fontsize=16,color="green",shape="box"];2501[label="vwx361",fontsize=16,color="green",shape="box"];2502[label="vwx371",fontsize=16,color="green",shape="box"];2503[label="vwx361",fontsize=16,color="green",shape="box"];2504[label="vwx371",fontsize=16,color="green",shape="box"];2505[label="vwx361",fontsize=16,color="green",shape="box"];2506[label="vwx371",fontsize=16,color="green",shape="box"];2507[label="vwx361",fontsize=16,color="green",shape="box"];2508[label="vwx371",fontsize=16,color="green",shape="box"];2509[label="vwx361",fontsize=16,color="green",shape="box"];2510[label="vwx371",fontsize=16,color="green",shape="box"];2511[label="vwx361",fontsize=16,color="green",shape="box"];2512[label="vwx371",fontsize=16,color="green",shape="box"];2513[label="vwx361",fontsize=16,color="green",shape="box"];2514[label="vwx360",fontsize=16,color="green",shape="box"];2515[label="vwx370",fontsize=16,color="green",shape="box"];2516[label="vwx360",fontsize=16,color="green",shape="box"];2517[label="vwx370",fontsize=16,color="green",shape="box"];2518[label="vwx360",fontsize=16,color="green",shape="box"];2519[label="vwx370",fontsize=16,color="green",shape="box"];2520[label="vwx360",fontsize=16,color="green",shape="box"];2521[label="vwx370",fontsize=16,color="green",shape="box"];2522[label="vwx360",fontsize=16,color="green",shape="box"];2523[label="vwx370",fontsize=16,color="green",shape="box"];2524[label="vwx360",fontsize=16,color="green",shape="box"];2525[label="vwx370",fontsize=16,color="green",shape="box"];2526[label="vwx360",fontsize=16,color="green",shape="box"];2527[label="vwx370",fontsize=16,color="green",shape="box"];2528[label="vwx360",fontsize=16,color="green",shape="box"];2529[label="vwx370",fontsize=16,color="green",shape="box"];2530[label="vwx360",fontsize=16,color="green",shape="box"];2531[label="vwx370",fontsize=16,color="green",shape="box"];2532[label="vwx360",fontsize=16,color="green",shape="box"];2533[label="vwx370",fontsize=16,color="green",shape="box"];2534[label="vwx360",fontsize=16,color="green",shape="box"];2535[label="vwx370",fontsize=16,color="green",shape="box"];2536[label="vwx360",fontsize=16,color="green",shape="box"];2537[label="vwx370",fontsize=16,color="green",shape="box"];2538[label="vwx360",fontsize=16,color="green",shape="box"];2539[label="vwx370",fontsize=16,color="green",shape="box"];2540[label="vwx360",fontsize=16,color="green",shape="box"];2541[label="vwx370",fontsize=16,color="green",shape="box"];2542 -> 1055[label="",style="dashed", color="red", weight=0]; 2542[label="vwx361 < vwx371",fontsize=16,color="magenta"];2542 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2542 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2543 -> 1056[label="",style="dashed", color="red", weight=0]; 2543[label="vwx361 < vwx371",fontsize=16,color="magenta"];2543 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2543 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2544 -> 1057[label="",style="dashed", color="red", weight=0]; 2544[label="vwx361 < vwx371",fontsize=16,color="magenta"];2544 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2544 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2545 -> 4[label="",style="dashed", color="red", weight=0]; 2545[label="vwx361 < vwx371",fontsize=16,color="magenta"];2545 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2545 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2546 -> 1059[label="",style="dashed", color="red", weight=0]; 2546[label="vwx361 < vwx371",fontsize=16,color="magenta"];2546 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2546 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2547 -> 1060[label="",style="dashed", color="red", weight=0]; 2547[label="vwx361 < vwx371",fontsize=16,color="magenta"];2547 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2547 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2548 -> 1061[label="",style="dashed", color="red", weight=0]; 2548[label="vwx361 < vwx371",fontsize=16,color="magenta"];2548 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2548 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2549 -> 1062[label="",style="dashed", color="red", weight=0]; 2549[label="vwx361 < vwx371",fontsize=16,color="magenta"];2549 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2549 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2550 -> 1063[label="",style="dashed", color="red", weight=0]; 2550[label="vwx361 < vwx371",fontsize=16,color="magenta"];2550 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2551 -> 1064[label="",style="dashed", color="red", weight=0]; 2551[label="vwx361 < vwx371",fontsize=16,color="magenta"];2551 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2551 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2552 -> 1065[label="",style="dashed", color="red", weight=0]; 2552[label="vwx361 < vwx371",fontsize=16,color="magenta"];2552 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2553 -> 1066[label="",style="dashed", color="red", weight=0]; 2553[label="vwx361 < vwx371",fontsize=16,color="magenta"];2553 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2553 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2554 -> 1067[label="",style="dashed", color="red", weight=0]; 2554[label="vwx361 < vwx371",fontsize=16,color="magenta"];2554 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2554 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2555 -> 1068[label="",style="dashed", color="red", weight=0]; 2555[label="vwx361 < vwx371",fontsize=16,color="magenta"];2555 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2555 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2556[label="vwx362 <= vwx372",fontsize=16,color="blue",shape="box"];3517[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2556 -> 3517[label="",style="solid", color="blue", weight=9]; 3517 -> 2618[label="",style="solid", color="blue", weight=3]; 3518[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2556 -> 3518[label="",style="solid", color="blue", weight=9]; 3518 -> 2619[label="",style="solid", color="blue", weight=3]; 3519[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2556 -> 3519[label="",style="solid", color="blue", weight=9]; 3519 -> 2620[label="",style="solid", color="blue", weight=3]; 3520[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2556 -> 3520[label="",style="solid", color="blue", weight=9]; 3520 -> 2621[label="",style="solid", color="blue", weight=3]; 3521[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2556 -> 3521[label="",style="solid", color="blue", weight=9]; 3521 -> 2622[label="",style="solid", color="blue", weight=3]; 3522[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2556 -> 3522[label="",style="solid", color="blue", weight=9]; 3522 -> 2623[label="",style="solid", color="blue", weight=3]; 3523[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2556 -> 3523[label="",style="solid", color="blue", weight=9]; 3523 -> 2624[label="",style="solid", color="blue", weight=3]; 3524[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2556 -> 3524[label="",style="solid", color="blue", weight=9]; 3524 -> 2625[label="",style="solid", color="blue", weight=3]; 3525[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2556 -> 3525[label="",style="solid", color="blue", weight=9]; 3525 -> 2626[label="",style="solid", color="blue", weight=3]; 3526[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2556 -> 3526[label="",style="solid", color="blue", weight=9]; 3526 -> 2627[label="",style="solid", color="blue", weight=3]; 3527[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2556 -> 3527[label="",style="solid", color="blue", weight=9]; 3527 -> 2628[label="",style="solid", color="blue", weight=3]; 3528[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2556 -> 3528[label="",style="solid", color="blue", weight=9]; 3528 -> 2629[label="",style="solid", color="blue", weight=3]; 3529[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2556 -> 3529[label="",style="solid", color="blue", weight=9]; 3529 -> 2630[label="",style="solid", color="blue", weight=3]; 3530[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2556 -> 3530[label="",style="solid", color="blue", weight=9]; 3530 -> 2631[label="",style="solid", color="blue", weight=3]; 2557[label="vwx361 == vwx371",fontsize=16,color="blue",shape="box"];3531[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3531[label="",style="solid", color="blue", weight=9]; 3531 -> 2632[label="",style="solid", color="blue", weight=3]; 3532[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3532[label="",style="solid", color="blue", weight=9]; 3532 -> 2633[label="",style="solid", color="blue", weight=3]; 3533[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3533[label="",style="solid", color="blue", weight=9]; 3533 -> 2634[label="",style="solid", color="blue", weight=3]; 3534[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3534[label="",style="solid", color="blue", weight=9]; 3534 -> 2635[label="",style="solid", color="blue", weight=3]; 3535[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3535[label="",style="solid", color="blue", weight=9]; 3535 -> 2636[label="",style="solid", color="blue", weight=3]; 3536[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3536[label="",style="solid", color="blue", weight=9]; 3536 -> 2637[label="",style="solid", color="blue", weight=3]; 3537[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3537[label="",style="solid", color="blue", weight=9]; 3537 -> 2638[label="",style="solid", color="blue", weight=3]; 3538[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3538[label="",style="solid", color="blue", weight=9]; 3538 -> 2639[label="",style="solid", color="blue", weight=3]; 3539[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3539[label="",style="solid", color="blue", weight=9]; 3539 -> 2640[label="",style="solid", color="blue", weight=3]; 3540[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3540[label="",style="solid", color="blue", weight=9]; 3540 -> 2641[label="",style="solid", color="blue", weight=3]; 3541[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3541[label="",style="solid", color="blue", weight=9]; 3541 -> 2642[label="",style="solid", color="blue", weight=3]; 3542[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3542[label="",style="solid", color="blue", weight=9]; 3542 -> 2643[label="",style="solid", color="blue", weight=3]; 3543[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3543[label="",style="solid", color="blue", weight=9]; 3543 -> 2644[label="",style="solid", color="blue", weight=3]; 3544[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2557 -> 3544[label="",style="solid", color="blue", weight=9]; 3544 -> 2645[label="",style="solid", color="blue", weight=3]; 2558[label="vwx360",fontsize=16,color="green",shape="box"];2559[label="vwx370",fontsize=16,color="green",shape="box"];2560[label="vwx360",fontsize=16,color="green",shape="box"];2561[label="vwx370",fontsize=16,color="green",shape="box"];2562[label="vwx360",fontsize=16,color="green",shape="box"];2563[label="vwx370",fontsize=16,color="green",shape="box"];2564[label="vwx360",fontsize=16,color="green",shape="box"];2565[label="vwx370",fontsize=16,color="green",shape="box"];2566[label="vwx360",fontsize=16,color="green",shape="box"];2567[label="vwx370",fontsize=16,color="green",shape="box"];2568[label="vwx360",fontsize=16,color="green",shape="box"];2569[label="vwx370",fontsize=16,color="green",shape="box"];2570[label="vwx360",fontsize=16,color="green",shape="box"];2571[label="vwx370",fontsize=16,color="green",shape="box"];2572[label="vwx360",fontsize=16,color="green",shape="box"];2573[label="vwx370",fontsize=16,color="green",shape="box"];2574[label="vwx360",fontsize=16,color="green",shape="box"];2575[label="vwx370",fontsize=16,color="green",shape="box"];2576[label="vwx360",fontsize=16,color="green",shape="box"];2577[label="vwx370",fontsize=16,color="green",shape="box"];2578[label="vwx360",fontsize=16,color="green",shape="box"];2579[label="vwx370",fontsize=16,color="green",shape="box"];2580[label="vwx360",fontsize=16,color="green",shape="box"];2581[label="vwx370",fontsize=16,color="green",shape="box"];2582[label="vwx360",fontsize=16,color="green",shape="box"];2583[label="vwx370",fontsize=16,color="green",shape="box"];2584[label="vwx360",fontsize=16,color="green",shape="box"];2585[label="vwx370",fontsize=16,color="green",shape="box"];2586[label="primPlusNat (Succ vwx15400) (Succ vwx401000)",fontsize=16,color="black",shape="box"];2586 -> 2646[label="",style="solid", color="black", weight=3]; 2587[label="primPlusNat (Succ vwx15400) Zero",fontsize=16,color="black",shape="box"];2587 -> 2647[label="",style="solid", color="black", weight=3]; 2588[label="primPlusNat Zero (Succ vwx401000)",fontsize=16,color="black",shape="box"];2588 -> 2648[label="",style="solid", color="black", weight=3]; 2589[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2589 -> 2649[label="",style="solid", color="black", weight=3]; 2590[label="vwx371",fontsize=16,color="green",shape="box"];2591[label="vwx361",fontsize=16,color="green",shape="box"];2592[label="vwx371",fontsize=16,color="green",shape="box"];2593[label="vwx361",fontsize=16,color="green",shape="box"];2594[label="vwx371",fontsize=16,color="green",shape="box"];2595[label="vwx361",fontsize=16,color="green",shape="box"];2596[label="vwx361",fontsize=16,color="green",shape="box"];2597[label="vwx371",fontsize=16,color="green",shape="box"];2598[label="vwx371",fontsize=16,color="green",shape="box"];2599[label="vwx361",fontsize=16,color="green",shape="box"];2600[label="vwx371",fontsize=16,color="green",shape="box"];2601[label="vwx361",fontsize=16,color="green",shape="box"];2602[label="vwx371",fontsize=16,color="green",shape="box"];2603[label="vwx361",fontsize=16,color="green",shape="box"];2604[label="vwx371",fontsize=16,color="green",shape="box"];2605[label="vwx361",fontsize=16,color="green",shape="box"];2606[label="vwx371",fontsize=16,color="green",shape="box"];2607[label="vwx361",fontsize=16,color="green",shape="box"];2608[label="vwx371",fontsize=16,color="green",shape="box"];2609[label="vwx361",fontsize=16,color="green",shape="box"];2610[label="vwx371",fontsize=16,color="green",shape="box"];2611[label="vwx361",fontsize=16,color="green",shape="box"];2612[label="vwx371",fontsize=16,color="green",shape="box"];2613[label="vwx361",fontsize=16,color="green",shape="box"];2614[label="vwx371",fontsize=16,color="green",shape="box"];2615[label="vwx361",fontsize=16,color="green",shape="box"];2616[label="vwx371",fontsize=16,color="green",shape="box"];2617[label="vwx361",fontsize=16,color="green",shape="box"];2618 -> 1110[label="",style="dashed", color="red", weight=0]; 2618[label="vwx362 <= vwx372",fontsize=16,color="magenta"];2618 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2619 -> 1111[label="",style="dashed", color="red", weight=0]; 2619[label="vwx362 <= vwx372",fontsize=16,color="magenta"];2619 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2620 -> 1112[label="",style="dashed", color="red", weight=0]; 2620[label="vwx362 <= vwx372",fontsize=16,color="magenta"];2620 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2621 -> 1113[label="",style="dashed", color="red", weight=0]; 2621[label="vwx362 <= vwx372",fontsize=16,color="magenta"];2621 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2622 -> 1114[label="",style="dashed", color="red", weight=0]; 2622[label="vwx362 <= vwx372",fontsize=16,color="magenta"];2622 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2623 -> 1115[label="",style="dashed", color="red", weight=0]; 2623[label="vwx362 <= vwx372",fontsize=16,color="magenta"];2623 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2624 -> 1116[label="",style="dashed", color="red", weight=0]; 2624[label="vwx362 <= vwx372",fontsize=16,color="magenta"];2624 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2625 -> 1117[label="",style="dashed", color="red", weight=0]; 2625[label="vwx362 <= vwx372",fontsize=16,color="magenta"];2625 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2626 -> 1118[label="",style="dashed", color="red", weight=0]; 2626[label="vwx362 <= vwx372",fontsize=16,color="magenta"];2626 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2627 -> 1119[label="",style="dashed", color="red", weight=0]; 2627[label="vwx362 <= vwx372",fontsize=16,color="magenta"];2627 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2628 -> 1120[label="",style="dashed", color="red", weight=0]; 2628[label="vwx362 <= vwx372",fontsize=16,color="magenta"];2628 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2629 -> 1121[label="",style="dashed", color="red", weight=0]; 2629[label="vwx362 <= vwx372",fontsize=16,color="magenta"];2629 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2630 -> 1122[label="",style="dashed", color="red", weight=0]; 2630[label="vwx362 <= vwx372",fontsize=16,color="magenta"];2630 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2630 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2631 -> 1123[label="",style="dashed", color="red", weight=0]; 2631[label="vwx362 <= vwx372",fontsize=16,color="magenta"];2631 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2632 -> 357[label="",style="dashed", color="red", weight=0]; 2632[label="vwx361 == vwx371",fontsize=16,color="magenta"];2632 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2632 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2633 -> 352[label="",style="dashed", color="red", weight=0]; 2633[label="vwx361 == vwx371",fontsize=16,color="magenta"];2633 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2633 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2634 -> 358[label="",style="dashed", color="red", weight=0]; 2634[label="vwx361 == vwx371",fontsize=16,color="magenta"];2634 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2634 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2635 -> 354[label="",style="dashed", color="red", weight=0]; 2635[label="vwx361 == vwx371",fontsize=16,color="magenta"];2635 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2635 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2636 -> 363[label="",style="dashed", color="red", weight=0]; 2636[label="vwx361 == vwx371",fontsize=16,color="magenta"];2636 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2636 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2637 -> 359[label="",style="dashed", color="red", weight=0]; 2637[label="vwx361 == vwx371",fontsize=16,color="magenta"];2637 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2637 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2638 -> 350[label="",style="dashed", color="red", weight=0]; 2638[label="vwx361 == vwx371",fontsize=16,color="magenta"];2638 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2638 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2639 -> 356[label="",style="dashed", color="red", weight=0]; 2639[label="vwx361 == vwx371",fontsize=16,color="magenta"];2639 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2639 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2640 -> 355[label="",style="dashed", color="red", weight=0]; 2640[label="vwx361 == vwx371",fontsize=16,color="magenta"];2640 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2640 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2641 -> 362[label="",style="dashed", color="red", weight=0]; 2641[label="vwx361 == vwx371",fontsize=16,color="magenta"];2641 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2641 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2642 -> 353[label="",style="dashed", color="red", weight=0]; 2642[label="vwx361 == vwx371",fontsize=16,color="magenta"];2642 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2642 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2643 -> 351[label="",style="dashed", color="red", weight=0]; 2643[label="vwx361 == vwx371",fontsize=16,color="magenta"];2643 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2643 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2644 -> 361[label="",style="dashed", color="red", weight=0]; 2644[label="vwx361 == vwx371",fontsize=16,color="magenta"];2644 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2644 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2645 -> 360[label="",style="dashed", color="red", weight=0]; 2645[label="vwx361 == vwx371",fontsize=16,color="magenta"];2645 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2645 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2646[label="Succ (Succ (primPlusNat vwx15400 vwx401000))",fontsize=16,color="green",shape="box"];2646 -> 2706[label="",style="dashed", color="green", weight=3]; 2647[label="Succ vwx15400",fontsize=16,color="green",shape="box"];2648[label="Succ vwx401000",fontsize=16,color="green",shape="box"];2649[label="Zero",fontsize=16,color="green",shape="box"];2650[label="vwx372",fontsize=16,color="green",shape="box"];2651[label="vwx362",fontsize=16,color="green",shape="box"];2652[label="vwx372",fontsize=16,color="green",shape="box"];2653[label="vwx362",fontsize=16,color="green",shape="box"];2654[label="vwx372",fontsize=16,color="green",shape="box"];2655[label="vwx362",fontsize=16,color="green",shape="box"];2656[label="vwx372",fontsize=16,color="green",shape="box"];2657[label="vwx362",fontsize=16,color="green",shape="box"];2658[label="vwx372",fontsize=16,color="green",shape="box"];2659[label="vwx362",fontsize=16,color="green",shape="box"];2660[label="vwx372",fontsize=16,color="green",shape="box"];2661[label="vwx362",fontsize=16,color="green",shape="box"];2662[label="vwx372",fontsize=16,color="green",shape="box"];2663[label="vwx362",fontsize=16,color="green",shape="box"];2664[label="vwx372",fontsize=16,color="green",shape="box"];2665[label="vwx362",fontsize=16,color="green",shape="box"];2666[label="vwx372",fontsize=16,color="green",shape="box"];2667[label="vwx362",fontsize=16,color="green",shape="box"];2668[label="vwx372",fontsize=16,color="green",shape="box"];2669[label="vwx362",fontsize=16,color="green",shape="box"];2670[label="vwx372",fontsize=16,color="green",shape="box"];2671[label="vwx362",fontsize=16,color="green",shape="box"];2672[label="vwx372",fontsize=16,color="green",shape="box"];2673[label="vwx362",fontsize=16,color="green",shape="box"];2674[label="vwx372",fontsize=16,color="green",shape="box"];2675[label="vwx362",fontsize=16,color="green",shape="box"];2676[label="vwx372",fontsize=16,color="green",shape="box"];2677[label="vwx362",fontsize=16,color="green",shape="box"];2678[label="vwx361",fontsize=16,color="green",shape="box"];2679[label="vwx371",fontsize=16,color="green",shape="box"];2680[label="vwx361",fontsize=16,color="green",shape="box"];2681[label="vwx371",fontsize=16,color="green",shape="box"];2682[label="vwx361",fontsize=16,color="green",shape="box"];2683[label="vwx371",fontsize=16,color="green",shape="box"];2684[label="vwx361",fontsize=16,color="green",shape="box"];2685[label="vwx371",fontsize=16,color="green",shape="box"];2686[label="vwx361",fontsize=16,color="green",shape="box"];2687[label="vwx371",fontsize=16,color="green",shape="box"];2688[label="vwx361",fontsize=16,color="green",shape="box"];2689[label="vwx371",fontsize=16,color="green",shape="box"];2690[label="vwx361",fontsize=16,color="green",shape="box"];2691[label="vwx371",fontsize=16,color="green",shape="box"];2692[label="vwx361",fontsize=16,color="green",shape="box"];2693[label="vwx371",fontsize=16,color="green",shape="box"];2694[label="vwx361",fontsize=16,color="green",shape="box"];2695[label="vwx371",fontsize=16,color="green",shape="box"];2696[label="vwx361",fontsize=16,color="green",shape="box"];2697[label="vwx371",fontsize=16,color="green",shape="box"];2698[label="vwx361",fontsize=16,color="green",shape="box"];2699[label="vwx371",fontsize=16,color="green",shape="box"];2700[label="vwx361",fontsize=16,color="green",shape="box"];2701[label="vwx371",fontsize=16,color="green",shape="box"];2702[label="vwx361",fontsize=16,color="green",shape="box"];2703[label="vwx371",fontsize=16,color="green",shape="box"];2704[label="vwx361",fontsize=16,color="green",shape="box"];2705[label="vwx371",fontsize=16,color="green",shape="box"];2706 -> 2381[label="",style="dashed", color="red", weight=0]; 2706[label="primPlusNat vwx15400 vwx401000",fontsize=16,color="magenta"];2706 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2707[label="vwx15400",fontsize=16,color="green",shape="box"];2708[label="vwx401000",fontsize=16,color="green",shape="box"];} ---------------------------------------- (14) Complex Obligation (AND) ---------------------------------------- (15) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vwx3000), Succ(vwx4000)) -> new_primCmpNat(vwx3000, vwx4000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (16) 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(vwx3000), Succ(vwx4000)) -> new_primCmpNat(vwx3000, vwx4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (17) YES ---------------------------------------- (18) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, cbe, app(app(app(ty_@3, ccd), cce), ccf)) -> new_ltEs3(vwx63, vwx66, ccd, cce, ccf) new_compare21(vwx43, vwx44, False, app(app(ty_Either, bhe), bhf), bhb) -> new_ltEs2(vwx43, vwx44, bhe, bhf) new_compare20(Left(vwx360), Left(vwx370), False, app(app(ty_Either, app(app(app(ty_@3, bbe), bbf), bbg)), bah)) -> new_ltEs3(vwx360, vwx370, bbe, bbf, bbg) new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), app(app(ty_@2, bdb), bdc), bdd, bde) -> new_lt0(vwx360, vwx370, bdb, bdc) new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), app(app(ty_@2, bef), beg)), bde)) -> new_lt0(vwx361, vwx371, bef, beg) new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, app(ty_[], fb)), fa)) -> new_lt(vwx360, vwx370, fb) new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, app(ty_[], beh), bde) -> new_lt(vwx361, vwx371, beh) new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, app(ty_Maybe, cdb), cbe, cae) -> new_lt1(vwx61, vwx64, cdb) new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, gb), app(ty_Maybe, gf))) -> new_ltEs1(vwx361, vwx371, gf) new_compare20(Right(vwx360), Right(vwx370), False, app(app(ty_Either, bbh), app(ty_Maybe, bcd))) -> new_ltEs1(vwx360, vwx370, bcd) new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, app(ty_[], bdf)), bdd), bde)) -> new_lt(vwx360, vwx370, bdf) new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, app(app(app(ty_@3, beb), bec), bed)), bdd), bde)) -> new_lt3(vwx360, vwx370, beb, bec, bed) new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), app(ty_Maybe, bdg), bdd, bde) -> new_lt1(vwx360, vwx370, bdg) new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, app(app(ty_@2, ccg), cch), cbe, cae) -> new_lt0(vwx61, vwx64, ccg, cch) new_lt1(vwx74, vwx76, cf) -> new_compare3(vwx74, vwx76, cf) new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), gb, app(ty_[], ge)) -> new_ltEs0(vwx361, vwx371, ge) new_ltEs1(Just(vwx360), Just(vwx370), app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs3(vwx360, vwx370, bac, bad, bae) new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, bdd, app(ty_[], bga)) -> new_ltEs0(vwx362, vwx372, bga) new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, app(ty_Maybe, bdg)), bdd), bde)) -> new_lt1(vwx360, vwx370, bdg) new_compare20(Right(vwx360), Right(vwx370), False, app(app(ty_Either, bbh), app(ty_[], bcc))) -> new_ltEs0(vwx360, vwx370, bcc) new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), bdd), app(ty_Maybe, bgb))) -> new_ltEs1(vwx362, vwx372, bgb) new_compare2(vwx74, vwx75, vwx76, vwx77, False, app(app(app(ty_@3, db), dc), dd), cd) -> new_compare5(vwx74, vwx76, db, dc, dd) new_compare20(Right(vwx360), Right(vwx370), False, app(app(ty_Either, bbh), app(app(ty_Either, bce), bcf))) -> new_ltEs2(vwx360, vwx370, bce, bcf) new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, cbe, app(app(ty_@2, cbf), cbg)) -> new_ltEs(vwx63, vwx66, cbf, cbg) new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, gb), app(app(ty_Either, gg), gh))) -> new_ltEs2(vwx361, vwx371, gg, gh) new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), bdd), app(ty_[], bga))) -> new_ltEs0(vwx362, vwx372, bga) new_lt3(vwx74, vwx76, db, dc, dd) -> new_compare5(vwx74, vwx76, db, dc, dd) new_compare21(vwx43, vwx44, False, app(ty_Maybe, bhd), bhb) -> new_ltEs1(vwx43, vwx44, bhd) new_compare22(vwx50, vwx51, False, cdh, app(ty_Maybe, ced)) -> new_ltEs1(vwx50, vwx51, ced) new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, app(ty_[], caf), cae) -> new_lt(vwx62, vwx65, caf) new_compare2(vwx74, vwx75, vwx76, vwx77, False, de, app(app(ty_Either, eb), ec)) -> new_ltEs2(vwx75, vwx77, eb, ec) new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, app(app(app(ty_@3, cde), cdf), cdg), cbe, cae) -> new_lt3(vwx61, vwx64, cde, cdf, cdg) new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, cbe, app(ty_[], cbh)) -> new_ltEs0(vwx63, vwx66, cbh) new_compare20(Right(vwx360), Right(vwx370), False, app(app(ty_Either, bbh), app(app(app(ty_@3, bcg), bch), bda))) -> new_ltEs3(vwx360, vwx370, bcg, bch, bda) new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, bdd, app(app(ty_@2, bfg), bfh)) -> new_ltEs(vwx362, vwx372, bfg, bfh) new_compare2(vwx74, vwx75, vwx76, vwx77, False, de, app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs3(vwx75, vwx77, ed, ee, ef) new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, bdd, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs3(vwx362, vwx372, bge, bgf, bgg) new_ltEs2(Right(vwx360), Right(vwx370), bbh, app(app(ty_@2, bca), bcb)) -> new_ltEs(vwx360, vwx370, bca, bcb) new_compare1(@2(vwx300, vwx301), @2(vwx400, vwx401), ba, bb) -> new_compare2(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs5(vwx300, vwx400, ba), new_esEs4(vwx301, vwx401, bb)), ba, bb) new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), bdd), app(app(ty_Either, bgc), bgd))) -> new_ltEs2(vwx362, vwx372, bgc, bgd) new_compare20(Left(vwx360), Left(vwx370), False, app(app(ty_Either, app(ty_[], bba)), bah)) -> new_ltEs0(vwx360, vwx370, bba) new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), bdd), app(app(app(ty_@3, bge), bgf), bgg))) -> new_ltEs3(vwx362, vwx372, bge, bgf, bgg) new_compare2(vwx74, vwx75, vwx76, vwx77, False, app(app(ty_@2, cb), cc), cd) -> new_compare1(vwx74, vwx76, cb, cc) new_compare20(Right(vwx360), Right(vwx370), False, app(app(ty_Either, bbh), app(app(ty_@2, bca), bcb))) -> new_ltEs(vwx360, vwx370, bca, bcb) new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, app(app(ty_@2, bdb), bdc)), bdd), bde)) -> new_lt0(vwx360, vwx370, bdb, bdc) new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), app(ty_[], beh)), bde)) -> new_lt(vwx361, vwx371, beh) new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, app(app(ty_Either, cdc), cdd), cbe, cae) -> new_lt2(vwx61, vwx64, cdc, cdd) new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, app(app(ty_@2, bef), beg), bde) -> new_lt0(vwx361, vwx371, bef, beg) new_compare20(vwx36, vwx37, False, app(ty_[], hd)) -> new_compare(vwx36, vwx37, hd) new_primCompAux(Just(vwx300), Just(vwx400), vwx15, app(ty_Maybe, bd)) -> new_compare20(vwx300, vwx400, new_esEs6(vwx300, vwx400, bd), bd) new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, app(app(app(ty_@3, fg), fh), ga)), fa)) -> new_lt3(vwx360, vwx370, fg, fh, ga) new_ltEs2(Right(vwx360), Right(vwx370), bbh, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs3(vwx360, vwx370, bcg, bch, bda) new_compare2(vwx74, vwx75, vwx76, vwx77, False, de, app(ty_Maybe, ea)) -> new_ltEs1(vwx75, vwx77, ea) new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, cbe, app(app(ty_Either, ccb), ccc)) -> new_ltEs2(vwx63, vwx66, ccb, ccc) new_compare20(Just(vwx360), Just(vwx370), False, app(ty_Maybe, app(app(ty_Either, baa), bab))) -> new_ltEs2(vwx360, vwx370, baa, bab) new_ltEs2(Right(vwx360), Right(vwx370), bbh, app(ty_Maybe, bcd)) -> new_ltEs1(vwx360, vwx370, bcd) new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), app(app(app(ty_@3, bfd), bfe), bff)), bde)) -> new_lt3(vwx361, vwx371, bfd, bfe, bff) new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), app(ty_Maybe, bfa)), bde)) -> new_lt1(vwx361, vwx371, bfa) new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, cbe, app(ty_Maybe, cca)) -> new_ltEs1(vwx63, vwx66, cca) new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), gb, app(app(ty_@2, gc), gd)) -> new_ltEs(vwx361, vwx371, gc, gd) new_ltEs0(vwx36, vwx37, hd) -> new_compare(vwx36, vwx37, hd) new_compare4(Left(vwx300), Left(vwx400), be, bf) -> new_compare21(vwx300, vwx400, new_esEs7(vwx300, vwx400, be), be, bf) new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), app(app(app(ty_@3, beb), bec), bed), bdd, bde) -> new_lt3(vwx360, vwx370, beb, bec, bed) new_lt(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_compare(vwx31, vwx41, h) new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, app(ty_Maybe, fc)), fa)) -> new_lt1(vwx360, vwx370, fc) new_compare21(vwx43, vwx44, False, app(app(app(ty_@3, bhg), bhh), caa), bhb) -> new_ltEs3(vwx43, vwx44, bhg, bhh, caa) new_ltEs1(Just(vwx360), Just(vwx370), app(ty_Maybe, hh)) -> new_ltEs1(vwx360, vwx370, hh) new_lt2(vwx74, vwx76, cg, da) -> new_compare4(vwx74, vwx76, cg, da) new_ltEs2(Left(vwx360), Left(vwx370), app(ty_Maybe, bbb), bah) -> new_ltEs1(vwx360, vwx370, bbb) new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), app(app(ty_Either, bdh), bea), bdd, bde) -> new_lt2(vwx360, vwx370, bdh, bea) new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, app(app(ty_Either, cah), cba), cae) -> new_lt2(vwx62, vwx65, cah, cba) new_compare20(Just(vwx360), Just(vwx370), False, app(ty_Maybe, app(ty_[], hg))) -> new_ltEs0(vwx360, vwx370, hg) new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, app(app(ty_Either, bdh), bea)), bdd), bde)) -> new_lt2(vwx360, vwx370, bdh, bea) new_compare4(Right(vwx300), Right(vwx400), be, bf) -> new_compare22(vwx300, vwx400, new_esEs8(vwx300, vwx400, bf), be, bf) new_compare20(Left(vwx360), Left(vwx370), False, app(app(ty_Either, app(app(ty_@2, baf), bag)), bah)) -> new_ltEs(vwx360, vwx370, baf, bag) new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, app(ty_Maybe, cag), cae) -> new_lt1(vwx62, vwx65, cag) new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, bdd, app(ty_Maybe, bgb)) -> new_ltEs1(vwx362, vwx372, bgb) new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), bdd), app(app(ty_@2, bfg), bfh))) -> new_ltEs(vwx362, vwx372, bfg, bfh) new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), app(ty_[], bdf), bdd, bde) -> new_lt(vwx360, vwx370, bdf) new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, app(ty_Maybe, bfa), bde) -> new_lt1(vwx361, vwx371, bfa) new_compare3(Just(vwx300), Just(vwx400), bd) -> new_compare20(vwx300, vwx400, new_esEs6(vwx300, vwx400, bd), bd) new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), app(app(ty_@2, eg), eh), fa) -> new_lt0(vwx360, vwx370, eg, eh) new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, app(app(ty_Either, fd), ff)), fa)) -> new_lt2(vwx360, vwx370, fd, ff) new_compare21(vwx43, vwx44, False, app(ty_[], bhc), bhb) -> new_ltEs0(vwx43, vwx44, bhc) new_compare22(vwx50, vwx51, False, cdh, app(ty_[], cec)) -> new_ltEs0(vwx50, vwx51, cec) new_primCompAux(Right(vwx300), Right(vwx400), vwx15, app(app(ty_Either, be), bf)) -> new_compare22(vwx300, vwx400, new_esEs8(vwx300, vwx400, bf), be, bf) new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), gb, app(app(ty_Either, gg), gh)) -> new_ltEs2(vwx361, vwx371, gg, gh) new_compare21(vwx43, vwx44, False, app(app(ty_@2, bgh), bha), bhb) -> new_ltEs(vwx43, vwx44, bgh, bha) new_compare20(Just(vwx360), Just(vwx370), False, app(ty_Maybe, app(ty_Maybe, hh))) -> new_ltEs1(vwx360, vwx370, hh) new_compare2(vwx74, vwx75, vwx76, vwx77, False, de, app(app(ty_@2, df), dg)) -> new_ltEs(vwx75, vwx77, df, dg) new_compare20(Left(vwx360), Left(vwx370), False, app(app(ty_Either, app(app(ty_Either, bbc), bbd)), bah)) -> new_ltEs2(vwx360, vwx370, bbc, bbd) new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, app(app(ty_Either, bfb), bfc), bde) -> new_lt2(vwx361, vwx371, bfb, bfc) new_compare2(vwx74, vwx75, vwx76, vwx77, False, de, app(ty_[], dh)) -> new_ltEs0(vwx75, vwx77, dh) new_compare22(vwx50, vwx51, False, cdh, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs3(vwx50, vwx51, ceg, ceh, cfa) new_lt0(vwx74, vwx76, cb, cc) -> new_compare1(vwx74, vwx76, cb, cc) new_ltEs2(Left(vwx360), Left(vwx370), app(app(app(ty_@3, bbe), bbf), bbg), bah) -> new_ltEs3(vwx360, vwx370, bbe, bbf, bbg) new_compare(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_primCompAux(vwx30, vwx40, new_compare0(vwx31, vwx41, h), h) new_compare2(vwx74, vwx75, vwx76, vwx77, False, app(app(ty_Either, cg), da), cd) -> new_compare4(vwx74, vwx76, cg, da) new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), app(app(app(ty_@3, fg), fh), ga), fa) -> new_lt3(vwx360, vwx370, fg, fh, ga) new_ltEs2(Right(vwx360), Right(vwx370), bbh, app(app(ty_Either, bce), bcf)) -> new_ltEs2(vwx360, vwx370, bce, bcf) new_compare2(vwx74, vwx75, vwx76, vwx77, False, app(ty_[], ce), cd) -> new_lt(vwx74, vwx76, ce) new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, bdd, app(app(ty_Either, bgc), bgd)) -> new_ltEs2(vwx362, vwx372, bgc, bgd) new_compare22(vwx50, vwx51, False, cdh, app(app(ty_Either, cee), cef)) -> new_ltEs2(vwx50, vwx51, cee, cef) new_compare20(Just(vwx360), Just(vwx370), False, app(ty_Maybe, app(app(ty_@2, he), hf))) -> new_ltEs(vwx360, vwx370, he, hf) new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), app(app(ty_Either, fd), ff), fa) -> new_lt2(vwx360, vwx370, fd, ff) new_primCompAux(vwx30, vwx40, vwx15, app(ty_[], bc)) -> new_compare(vwx30, vwx40, bc) new_ltEs2(Left(vwx360), Left(vwx370), app(ty_[], bba), bah) -> new_ltEs0(vwx360, vwx370, bba) new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, app(app(ty_@2, eg), eh)), fa)) -> new_lt0(vwx360, vwx370, eg, eh) new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), app(ty_Maybe, fc), fa) -> new_lt1(vwx360, vwx370, fc) new_compare5(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bg, bh, ca) -> new_compare23(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs11(vwx300, vwx400, bg), new_asAs(new_esEs10(vwx301, vwx401, bh), new_esEs9(vwx302, vwx402, ca))), bg, bh, ca) new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, gb), app(app(ty_@2, gc), gd))) -> new_ltEs(vwx361, vwx371, gc, gd) new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs3(vwx361, vwx371, ha, hb, hc) new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, app(app(ty_@2, cac), cad), cae) -> new_lt0(vwx62, vwx65, cac, cad) new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, gb), app(ty_[], ge))) -> new_ltEs0(vwx361, vwx371, ge) new_compare22(vwx50, vwx51, False, cdh, app(app(ty_@2, cea), ceb)) -> new_ltEs(vwx50, vwx51, cea, ceb) new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, app(app(app(ty_@3, cbb), cbc), cbd), cae) -> new_lt3(vwx62, vwx65, cbb, cbc, cbd) new_primCompAux(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), vwx15, app(app(app(ty_@3, bg), bh), ca)) -> new_compare23(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs11(vwx300, vwx400, bg), new_asAs(new_esEs10(vwx301, vwx401, bh), new_esEs9(vwx302, vwx402, ca))), bg, bh, ca) new_primCompAux(Left(vwx300), Left(vwx400), vwx15, app(app(ty_Either, be), bf)) -> new_compare21(vwx300, vwx400, new_esEs7(vwx300, vwx400, be), be, bf) new_compare20(Left(vwx360), Left(vwx370), False, app(app(ty_Either, app(ty_Maybe, bbb)), bah)) -> new_ltEs1(vwx360, vwx370, bbb) new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, gb), app(app(app(ty_@3, ha), hb), hc))) -> new_ltEs3(vwx361, vwx371, ha, hb, hc) new_compare(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_compare(vwx31, vwx41, h) new_compare20(Just(vwx360), Just(vwx370), False, app(ty_Maybe, app(app(app(ty_@3, bac), bad), bae))) -> new_ltEs3(vwx360, vwx370, bac, bad, bae) new_ltEs1(Just(vwx360), Just(vwx370), app(ty_[], hg)) -> new_ltEs0(vwx360, vwx370, hg) new_ltEs2(Left(vwx360), Left(vwx370), app(app(ty_Either, bbc), bbd), bah) -> new_ltEs2(vwx360, vwx370, bbc, bbd) new_lt(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_primCompAux(vwx30, vwx40, new_compare0(vwx31, vwx41, h), h) new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, app(ty_[], cda), cbe, cae) -> new_lt(vwx61, vwx64, cda) new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), app(app(ty_Either, bfb), bfc)), bde)) -> new_lt2(vwx361, vwx371, bfb, bfc) new_ltEs2(Left(vwx360), Left(vwx370), app(app(ty_@2, baf), bag), bah) -> new_ltEs(vwx360, vwx370, baf, bag) new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), app(ty_[], fb), fa) -> new_lt(vwx360, vwx370, fb) new_primCompAux(@2(vwx300, vwx301), @2(vwx400, vwx401), vwx15, app(app(ty_@2, ba), bb)) -> new_compare2(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs5(vwx300, vwx400, ba), new_esEs4(vwx301, vwx401, bb)), ba, bb) new_ltEs1(Just(vwx360), Just(vwx370), app(app(ty_@2, he), hf)) -> new_ltEs(vwx360, vwx370, he, hf) new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), gb, app(ty_Maybe, gf)) -> new_ltEs1(vwx361, vwx371, gf) new_compare2(vwx74, vwx75, vwx76, vwx77, False, app(ty_Maybe, cf), cd) -> new_compare3(vwx74, vwx76, cf) new_ltEs1(Just(vwx360), Just(vwx370), app(app(ty_Either, baa), bab)) -> new_ltEs2(vwx360, vwx370, baa, bab) new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, app(app(app(ty_@3, bfd), bfe), bff), bde) -> new_lt3(vwx361, vwx371, bfd, bfe, bff) new_ltEs2(Right(vwx360), Right(vwx370), bbh, app(ty_[], bcc)) -> new_ltEs0(vwx360, vwx370, bcc) The TRS R consists of the following rules: new_esEs39(vwx3000, vwx4000, ty_Bool) -> new_esEs13(vwx3000, vwx4000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs22(vwx63, vwx66, app(ty_[], cbh)) -> new_ltEs8(vwx63, vwx66, cbh) new_primCmpInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> LT new_esEs26(vwx3001, vwx4001, app(ty_Ratio, chc)) -> new_esEs19(vwx3001, vwx4001, chc) new_primPlusNat0(Zero, Zero) -> Zero new_lt23(vwx74, vwx76, app(ty_[], ce)) -> new_lt8(vwx74, vwx76, ce) new_pePe(True, vwx153) -> True new_esEs40(vwx74, vwx76, ty_@0) -> new_esEs18(vwx74, vwx76) new_compare11(vwx97, vwx98, True, fgb) -> LT new_esEs32(vwx361, vwx371, ty_Integer) -> new_esEs14(vwx361, vwx371) new_ltEs20(vwx362, vwx372, ty_Ordering) -> new_ltEs15(vwx362, vwx372) new_ltEs8(vwx36, vwx37, hd) -> new_fsEs(new_compare0(vwx36, vwx37, hd)) new_esEs30(vwx3001, vwx4001, ty_Bool) -> new_esEs13(vwx3001, vwx4001) new_esEs5(vwx300, vwx400, app(ty_Maybe, eag)) -> new_esEs21(vwx300, vwx400, eag) new_compare210(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, cbe, cae) -> new_compare12(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, new_lt22(vwx61, vwx64, cab), new_asAs(new_esEs36(vwx61, vwx64, cab), new_pePe(new_lt21(vwx62, vwx65, cbe), new_asAs(new_esEs35(vwx62, vwx65, cbe), new_ltEs22(vwx63, vwx66, cae)))), cab, cbe, cae) new_lt12(vwx361, vwx371, ty_Integer) -> new_lt6(vwx361, vwx371) new_esEs32(vwx361, vwx371, app(ty_Maybe, bfa)) -> new_esEs21(vwx361, vwx371, bfa) new_esEs7(vwx300, vwx400, ty_@0) -> new_esEs18(vwx300, vwx400) new_esEs21(Just(vwx3000), Just(vwx4000), app(app(app(ty_@3, ebg), ebh), eca)) -> new_esEs24(vwx3000, vwx4000, ebg, ebh, eca) new_esEs17(Left(vwx3000), Left(vwx4000), ty_Float, fag) -> new_esEs25(vwx3000, vwx4000) new_esEs27(vwx3000, vwx4000, app(ty_[], dab)) -> new_esEs16(vwx3000, vwx4000, dab) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs32(vwx361, vwx371, app(ty_Ratio, ehf)) -> new_esEs19(vwx361, vwx371, ehf) new_ltEs22(vwx63, vwx66, ty_Char) -> new_ltEs14(vwx63, vwx66) new_primCmpInt(Pos(Zero), Neg(Succ(vwx4000))) -> GT new_esEs5(vwx300, vwx400, app(ty_Ratio, fah)) -> new_esEs19(vwx300, vwx400, fah) new_lt20(vwx360, vwx370, app(app(ty_Either, fd), ff)) -> new_lt17(vwx360, vwx370, fd, ff) new_compare26(vwx50, vwx51, True, cdh, ffg) -> EQ new_esEs11(vwx300, vwx400, app(ty_Ratio, cfe)) -> new_esEs19(vwx300, vwx400, cfe) new_esEs17(Left(vwx3000), Left(vwx4000), ty_Int, fag) -> new_esEs23(vwx3000, vwx4000) new_lt23(vwx74, vwx76, app(ty_Ratio, dbd)) -> new_lt5(vwx74, vwx76, dbd) new_lt20(vwx360, vwx370, ty_Ordering) -> new_lt7(vwx360, vwx370) new_ltEs21(vwx361, vwx371, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs13(vwx361, vwx371, ha, hb, hc) new_esEs18(@0, @0) -> True new_esEs31(vwx3000, vwx4000, ty_Int) -> new_esEs23(vwx3000, vwx4000) new_primCmpInt(Neg(Succ(vwx3000)), Neg(vwx400)) -> new_primCmpNat0(vwx400, Succ(vwx3000)) new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_primCompAux1(vwx30, vwx40, new_compare0(vwx31, vwx41, h), h) new_esEs9(vwx302, vwx402, app(app(app(ty_@3, eda), edb), edc)) -> new_esEs24(vwx302, vwx402, eda, edb, edc) new_esEs4(vwx301, vwx401, ty_Int) -> new_esEs23(vwx301, vwx401) new_esEs16(:(vwx3000, vwx3001), :(vwx4000, vwx4001), fae) -> new_asAs(new_esEs39(vwx3000, vwx4000, fae), new_esEs16(vwx3001, vwx4001, fae)) new_esEs36(vwx61, vwx64, ty_Double) -> new_esEs22(vwx61, vwx64) new_lt23(vwx74, vwx76, app(ty_Maybe, cf)) -> new_lt15(vwx74, vwx76, cf) new_compare19(True, True) -> EQ new_esEs36(vwx61, vwx64, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs24(vwx61, vwx64, cde, cdf, cdg) new_primMulNat0(Succ(vwx30000), Succ(vwx40100)) -> new_primPlusNat1(new_primMulNat0(vwx30000, Succ(vwx40100)), vwx40100) new_compare111(vwx124, vwx125, vwx126, vwx127, False, ehh, faa) -> GT new_ltEs20(vwx362, vwx372, ty_Integer) -> new_ltEs4(vwx362, vwx372) new_ltEs15(EQ, LT) -> False new_esEs40(vwx74, vwx76, app(app(ty_@2, cb), cc)) -> new_esEs20(vwx74, vwx76, cb, cc) new_esEs6(vwx300, vwx400, app(ty_[], dbe)) -> new_esEs16(vwx300, vwx400, dbe) new_lt19(vwx74, vwx76) -> new_esEs12(new_compare16(vwx74, vwx76), LT) new_lt15(vwx74, vwx76, cf) -> new_esEs12(new_compare10(vwx74, vwx76, cf), LT) new_lt11(vwx360, vwx370, ty_Bool) -> new_lt10(vwx360, vwx370) new_ltEs4(vwx36, vwx37) -> new_fsEs(new_compare7(vwx36, vwx37)) new_esEs33(vwx360, vwx370, app(ty_[], bdf)) -> new_esEs16(vwx360, vwx370, bdf) new_primCompAux0(vwx19, GT) -> GT new_lt22(vwx61, vwx64, ty_Integer) -> new_lt6(vwx61, vwx64) new_ltEs5(Left(vwx360), Right(vwx370), bbh, bah) -> True new_esEs5(vwx300, vwx400, ty_Char) -> new_esEs15(vwx300, vwx400) new_ltEs19(vwx43, vwx44, ty_Ordering) -> new_ltEs15(vwx43, vwx44) new_primEqInt(Pos(Succ(vwx30000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx40000))) -> False new_ltEs15(GT, LT) -> False new_compare16(Double(vwx300, Pos(vwx3010)), Double(vwx400, Pos(vwx4010))) -> new_compare6(new_sr(vwx300, Pos(vwx4010)), new_sr(Pos(vwx3010), vwx400)) new_ltEs19(vwx43, vwx44, ty_Integer) -> new_ltEs4(vwx43, vwx44) new_ltEs21(vwx361, vwx371, app(app(ty_@2, gc), gd)) -> new_ltEs7(vwx361, vwx371, gc, gd) new_esEs10(vwx301, vwx401, ty_Int) -> new_esEs23(vwx301, vwx401) new_esEs32(vwx361, vwx371, ty_Char) -> new_esEs15(vwx361, vwx371) new_compare110(vwx124, vwx125, vwx126, vwx127, False, vwx129, ehh, faa) -> new_compare111(vwx124, vwx125, vwx126, vwx127, vwx129, ehh, faa) new_esEs9(vwx302, vwx402, app(ty_Ratio, ece)) -> new_esEs19(vwx302, vwx402, ece) new_esEs26(vwx3001, vwx4001, ty_Char) -> new_esEs15(vwx3001, vwx4001) new_esEs36(vwx61, vwx64, app(ty_Ratio, fbe)) -> new_esEs19(vwx61, vwx64, fbe) new_lt20(vwx360, vwx370, app(app(ty_@2, eg), eh)) -> new_lt13(vwx360, vwx370, eg, eh) new_ltEs19(vwx43, vwx44, ty_@0) -> new_ltEs12(vwx43, vwx44) new_ltEs14(vwx36, vwx37) -> new_fsEs(new_compare18(vwx36, vwx37)) new_compare19(True, False) -> GT new_ltEs23(vwx50, vwx51, ty_Int) -> new_ltEs16(vwx50, vwx51) new_ltEs5(Left(vwx360), Left(vwx370), ty_Ordering, bah) -> new_ltEs15(vwx360, vwx370) new_esEs34(vwx360, vwx370, app(app(ty_@2, eg), eh)) -> new_esEs20(vwx360, vwx370, eg, eh) new_esEs34(vwx360, vwx370, ty_@0) -> new_esEs18(vwx360, vwx370) new_compare17(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bg, bh, ca) -> new_compare210(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs11(vwx300, vwx400, bg), new_asAs(new_esEs10(vwx301, vwx401, bh), new_esEs9(vwx302, vwx402, ca))), bg, bh, ca) new_lt10(vwx74, vwx76) -> new_esEs12(new_compare19(vwx74, vwx76), LT) new_esEs36(vwx61, vwx64, ty_Int) -> new_esEs23(vwx61, vwx64) new_esEs17(Left(vwx3000), Left(vwx4000), ty_Double, fag) -> new_esEs22(vwx3000, vwx4000) new_ltEs23(vwx50, vwx51, app(app(ty_Either, cee), cef)) -> new_ltEs5(vwx50, vwx51, cee, cef) new_ltEs10(Just(vwx360), Just(vwx370), ty_@0) -> new_ltEs12(vwx360, vwx370) new_esEs7(vwx300, vwx400, app(app(ty_@2, dfc), dfd)) -> new_esEs20(vwx300, vwx400, dfc, dfd) new_ltEs10(Just(vwx360), Just(vwx370), ty_Ordering) -> new_ltEs15(vwx360, vwx370) new_compare8(GT, GT) -> EQ new_primEqNat0(Succ(vwx30000), Succ(vwx40000)) -> new_primEqNat0(vwx30000, vwx40000) new_ltEs22(vwx63, vwx66, app(ty_Maybe, cca)) -> new_ltEs10(vwx63, vwx66, cca) new_esEs39(vwx3000, vwx4000, ty_@0) -> new_esEs18(vwx3000, vwx4000) new_esEs9(vwx302, vwx402, ty_Int) -> new_esEs23(vwx302, vwx402) new_esEs26(vwx3001, vwx4001, ty_Integer) -> new_esEs14(vwx3001, vwx4001) new_ltEs5(Right(vwx360), Right(vwx370), bbh, ty_Int) -> new_ltEs16(vwx360, vwx370) new_primCompAux0(vwx19, LT) -> LT new_esEs5(vwx300, vwx400, ty_Integer) -> new_esEs14(vwx300, vwx400) new_ltEs23(vwx50, vwx51, app(ty_Ratio, ffh)) -> new_ltEs6(vwx50, vwx51, ffh) new_ltEs5(Left(vwx360), Left(vwx370), ty_@0, bah) -> new_ltEs12(vwx360, vwx370) new_lt22(vwx61, vwx64, ty_@0) -> new_lt16(vwx61, vwx64) new_compare12(vwx139, vwx140, vwx141, vwx142, vwx143, vwx144, False, vwx146, ddb, ddc, ddd) -> new_compare13(vwx139, vwx140, vwx141, vwx142, vwx143, vwx144, vwx146, ddb, ddc, ddd) new_compare30(vwx30, vwx40, ty_@0) -> new_compare27(vwx30, vwx40) new_not(True) -> False new_ltEs24(vwx75, vwx77, ty_Double) -> new_ltEs17(vwx75, vwx77) new_ltEs18(vwx36, vwx37, ty_Double) -> new_ltEs17(vwx36, vwx37) new_ltEs23(vwx50, vwx51, ty_Bool) -> new_ltEs11(vwx50, vwx51) new_esEs35(vwx62, vwx65, ty_Int) -> new_esEs23(vwx62, vwx65) new_esEs10(vwx301, vwx401, ty_Double) -> new_esEs22(vwx301, vwx401) new_primCmpNat0(Zero, Zero) -> EQ new_esEs10(vwx301, vwx401, app(app(ty_Either, dhf), dhg)) -> new_esEs17(vwx301, vwx401, dhf, dhg) new_esEs37(vwx3001, vwx4001, ty_Integer) -> new_esEs14(vwx3001, vwx4001) new_lt12(vwx361, vwx371, ty_@0) -> new_lt16(vwx361, vwx371) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Integer) -> new_esEs14(vwx3000, vwx4000) new_esEs32(vwx361, vwx371, ty_Ordering) -> new_esEs12(vwx361, vwx371) new_esEs10(vwx301, vwx401, ty_Float) -> new_esEs25(vwx301, vwx401) new_lt12(vwx361, vwx371, ty_Char) -> new_lt18(vwx361, vwx371) new_ltEs21(vwx361, vwx371, ty_Float) -> new_ltEs9(vwx361, vwx371) new_lt8(vwx3, vwx4, h) -> new_esEs28(new_compare0(vwx3, vwx4, h)) new_compare13(vwx139, vwx140, vwx141, vwx142, vwx143, vwx144, True, ddb, ddc, ddd) -> LT new_esEs10(vwx301, vwx401, app(app(app(ty_@3, ead), eae), eaf)) -> new_esEs24(vwx301, vwx401, ead, eae, eaf) new_esEs34(vwx360, vwx370, ty_Bool) -> new_esEs13(vwx360, vwx370) new_esEs36(vwx61, vwx64, app(ty_Maybe, cdb)) -> new_esEs21(vwx61, vwx64, cdb) new_ltEs24(vwx75, vwx77, ty_Bool) -> new_ltEs11(vwx75, vwx77) new_ltEs19(vwx43, vwx44, ty_Double) -> new_ltEs17(vwx43, vwx44) new_esEs17(Left(vwx3000), Left(vwx4000), app(app(app(ty_@3, fce), fcf), fcg), fag) -> new_esEs24(vwx3000, vwx4000, fce, fcf, fcg) new_ltEs5(Left(vwx360), Left(vwx370), app(ty_Ratio, cgd), bah) -> new_ltEs6(vwx360, vwx370, cgd) new_ltEs19(vwx43, vwx44, app(app(app(ty_@3, bhg), bhh), caa)) -> new_ltEs13(vwx43, vwx44, bhg, bhh, caa) new_lt12(vwx361, vwx371, app(ty_[], beh)) -> new_lt8(vwx361, vwx371, beh) new_esEs12(LT, LT) -> True new_esEs8(vwx300, vwx400, app(app(ty_Either, dgb), dgc)) -> new_esEs17(vwx300, vwx400, dgb, dgc) new_lt11(vwx360, vwx370, ty_Int) -> new_lt4(vwx360, vwx370) new_esEs36(vwx61, vwx64, ty_Char) -> new_esEs15(vwx61, vwx64) new_esEs5(vwx300, vwx400, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs24(vwx300, vwx400, edd, ede, edf) new_lt20(vwx360, vwx370, ty_Double) -> new_lt19(vwx360, vwx370) new_esEs11(vwx300, vwx400, app(app(ty_Either, cfc), cfd)) -> new_esEs17(vwx300, vwx400, cfc, cfd) new_esEs11(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_esEs32(vwx361, vwx371, app(ty_[], beh)) -> new_esEs16(vwx361, vwx371, beh) new_primEqNat0(Succ(vwx30000), Zero) -> False new_primEqNat0(Zero, Succ(vwx40000)) -> False new_ltEs5(Right(vwx360), Right(vwx370), bbh, ty_Char) -> new_ltEs14(vwx360, vwx370) new_lt11(vwx360, vwx370, ty_@0) -> new_lt16(vwx360, vwx370) new_ltEs10(Just(vwx360), Just(vwx370), app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs13(vwx360, vwx370, bac, bad, bae) new_esEs29(vwx3002, vwx4002, ty_Int) -> new_esEs23(vwx3002, vwx4002) new_lt23(vwx74, vwx76, ty_Integer) -> new_lt6(vwx74, vwx76) new_ltEs24(vwx75, vwx77, ty_Integer) -> new_ltEs4(vwx75, vwx77) new_esEs11(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs5(vwx300, vwx400, ty_Double) -> new_esEs22(vwx300, vwx400) new_esEs29(vwx3002, vwx4002, ty_Bool) -> new_esEs13(vwx3002, vwx4002) new_ltEs15(GT, EQ) -> False new_lt21(vwx62, vwx65, ty_Bool) -> new_lt10(vwx62, vwx65) new_esEs39(vwx3000, vwx4000, app(app(ty_@2, ffa), ffb)) -> new_esEs20(vwx3000, vwx4000, ffa, ffb) new_esEs6(vwx300, vwx400, ty_Char) -> new_esEs15(vwx300, vwx400) new_esEs21(Just(vwx3000), Just(vwx4000), app(ty_Maybe, ebf)) -> new_esEs21(vwx3000, vwx4000, ebf) new_esEs35(vwx62, vwx65, ty_Bool) -> new_esEs13(vwx62, vwx65) new_ltEs18(vwx36, vwx37, ty_Integer) -> new_ltEs4(vwx36, vwx37) new_esEs4(vwx301, vwx401, app(ty_Ratio, ddh)) -> new_esEs19(vwx301, vwx401, ddh) new_ltEs5(Left(vwx360), Left(vwx370), app(app(ty_Either, bbc), bbd), bah) -> new_ltEs5(vwx360, vwx370, bbc, bbd) new_esEs9(vwx302, vwx402, ty_Double) -> new_esEs22(vwx302, vwx402) new_ltEs21(vwx361, vwx371, ty_Char) -> new_ltEs14(vwx361, vwx371) new_esEs27(vwx3000, vwx4000, ty_Ordering) -> new_esEs12(vwx3000, vwx4000) new_ltEs10(Nothing, Just(vwx370), dda) -> True new_esEs26(vwx3001, vwx4001, app(ty_Maybe, chf)) -> new_esEs21(vwx3001, vwx4001, chf) new_lt5(vwx74, vwx76, dbd) -> new_esEs12(new_compare9(vwx74, vwx76, dbd), LT) new_esEs33(vwx360, vwx370, app(app(ty_@2, bdb), bdc)) -> new_esEs20(vwx360, vwx370, bdb, bdc) new_esEs4(vwx301, vwx401, ty_Double) -> new_esEs22(vwx301, vwx401) new_compare210(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, True, cab, cbe, cae) -> EQ new_compare15(vwx104, vwx105, True, fec, fed) -> LT new_ltEs20(vwx362, vwx372, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs13(vwx362, vwx372, bge, bgf, bgg) new_esEs4(vwx301, vwx401, app(app(ty_Either, ddf), ddg)) -> new_esEs17(vwx301, vwx401, ddf, ddg) new_lt22(vwx61, vwx64, ty_Bool) -> new_lt10(vwx61, vwx64) new_primCmpInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> GT new_esEs4(vwx301, vwx401, app(app(app(ty_@3, ded), dee), def)) -> new_esEs24(vwx301, vwx401, ded, dee, def) new_ltEs18(vwx36, vwx37, ty_Bool) -> new_ltEs11(vwx36, vwx37) new_esEs30(vwx3001, vwx4001, ty_@0) -> new_esEs18(vwx3001, vwx4001) new_compare30(vwx30, vwx40, app(app(ty_Either, be), bf)) -> new_compare14(vwx30, vwx40, be, bf) new_esEs4(vwx301, vwx401, ty_Float) -> new_esEs25(vwx301, vwx401) new_esEs40(vwx74, vwx76, ty_Bool) -> new_esEs13(vwx74, vwx76) new_esEs11(vwx300, vwx400, ty_Double) -> new_esEs22(vwx300, vwx400) new_lt23(vwx74, vwx76, ty_Char) -> new_lt18(vwx74, vwx76) new_esEs36(vwx61, vwx64, ty_Integer) -> new_esEs14(vwx61, vwx64) new_ltEs5(Left(vwx360), Left(vwx370), ty_Double, bah) -> new_ltEs17(vwx360, vwx370) new_lt16(vwx74, vwx76) -> new_esEs12(new_compare27(vwx74, vwx76), LT) new_esEs5(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs27(vwx3000, vwx4000, app(app(ty_@2, daf), dag)) -> new_esEs20(vwx3000, vwx4000, daf, dag) new_esEs9(vwx302, vwx402, ty_Ordering) -> new_esEs12(vwx302, vwx402) new_ltEs21(vwx361, vwx371, ty_@0) -> new_ltEs12(vwx361, vwx371) new_ltEs21(vwx361, vwx371, ty_Ordering) -> new_ltEs15(vwx361, vwx371) new_ltEs9(vwx36, vwx37) -> new_fsEs(new_compare31(vwx36, vwx37)) new_ltEs5(Right(vwx360), Right(vwx370), bbh, ty_Float) -> new_ltEs9(vwx360, vwx370) new_esEs31(vwx3000, vwx4000, ty_Integer) -> new_esEs14(vwx3000, vwx4000) new_esEs33(vwx360, vwx370, ty_Ordering) -> new_esEs12(vwx360, vwx370) new_primCmpNat0(Zero, Succ(vwx4000)) -> LT new_ltEs22(vwx63, vwx66, app(app(ty_@2, cbf), cbg)) -> new_ltEs7(vwx63, vwx66, cbf, cbg) new_esEs29(vwx3002, vwx4002, ty_@0) -> new_esEs18(vwx3002, vwx4002) new_esEs35(vwx62, vwx65, ty_@0) -> new_esEs18(vwx62, vwx65) new_esEs11(vwx300, vwx400, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs24(vwx300, vwx400, cga, cgb, cgc) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Char) -> new_esEs15(vwx3000, vwx4000) new_ltEs20(vwx362, vwx372, ty_Double) -> new_ltEs17(vwx362, vwx372) new_ltEs5(Right(vwx360), Right(vwx370), bbh, app(ty_Ratio, cge)) -> new_ltEs6(vwx360, vwx370, cge) new_esEs9(vwx302, vwx402, app(app(ty_Either, ecc), ecd)) -> new_esEs17(vwx302, vwx402, ecc, ecd) new_esEs9(vwx302, vwx402, ty_Float) -> new_esEs25(vwx302, vwx402) new_esEs12(EQ, GT) -> False new_esEs12(GT, EQ) -> False new_ltEs10(Just(vwx360), Just(vwx370), ty_Double) -> new_ltEs17(vwx360, vwx370) new_esEs31(vwx3000, vwx4000, app(ty_Maybe, eha)) -> new_esEs21(vwx3000, vwx4000, eha) new_primCmpNat0(Succ(vwx3000), Zero) -> GT new_esEs33(vwx360, vwx370, ty_@0) -> new_esEs18(vwx360, vwx370) new_esEs8(vwx300, vwx400, app(app(ty_@2, dge), dgf)) -> new_esEs20(vwx300, vwx400, dge, dgf) new_pePe(False, vwx153) -> vwx153 new_esEs4(vwx301, vwx401, app(ty_Maybe, dec)) -> new_esEs21(vwx301, vwx401, dec) new_lt22(vwx61, vwx64, app(ty_Ratio, fbe)) -> new_lt5(vwx61, vwx64, fbe) new_esEs6(vwx300, vwx400, ty_Integer) -> new_esEs14(vwx300, vwx400) new_ltEs10(Just(vwx360), Just(vwx370), app(ty_Maybe, hh)) -> new_ltEs10(vwx360, vwx370, hh) new_esEs17(Left(vwx3000), Left(vwx4000), ty_Bool, fag) -> new_esEs13(vwx3000, vwx4000) new_ltEs10(Just(vwx360), Just(vwx370), ty_Float) -> new_ltEs9(vwx360, vwx370) new_esEs10(vwx301, vwx401, ty_@0) -> new_esEs18(vwx301, vwx401) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Ordering) -> new_esEs12(vwx3000, vwx4000) new_lt9(vwx74, vwx76, db, dc, dd) -> new_esEs12(new_compare17(vwx74, vwx76, db, dc, dd), LT) new_ltEs5(Left(vwx360), Left(vwx370), ty_Float, bah) -> new_ltEs9(vwx360, vwx370) new_compare25(vwx43, vwx44, True, dhc, bhb) -> EQ new_esEs39(vwx3000, vwx4000, ty_Int) -> new_esEs23(vwx3000, vwx4000) new_esEs39(vwx3000, vwx4000, app(app(ty_Either, fef), feg)) -> new_esEs17(vwx3000, vwx4000, fef, feg) new_compare10(Nothing, Just(vwx400), bd) -> LT new_ltEs18(vwx36, vwx37, ty_Int) -> new_ltEs16(vwx36, vwx37) new_ltEs23(vwx50, vwx51, ty_Double) -> new_ltEs17(vwx50, vwx51) new_lt20(vwx360, vwx370, app(app(app(ty_@3, fg), fh), ga)) -> new_lt9(vwx360, vwx370, fg, fh, ga) new_compare112(vwx112, vwx113, True, fab, fac) -> LT new_lt22(vwx61, vwx64, app(ty_Maybe, cdb)) -> new_lt15(vwx61, vwx64, cdb) new_ltEs21(vwx361, vwx371, ty_Double) -> new_ltEs17(vwx361, vwx371) new_esEs17(Right(vwx3000), Right(vwx4000), faf, ty_Char) -> new_esEs15(vwx3000, vwx4000) new_esEs4(vwx301, vwx401, ty_Bool) -> new_esEs13(vwx301, vwx401) new_esEs30(vwx3001, vwx4001, app(app(ty_Either, efb), efc)) -> new_esEs17(vwx3001, vwx4001, efb, efc) new_compare110(vwx124, vwx125, vwx126, vwx127, True, vwx129, ehh, faa) -> new_compare111(vwx124, vwx125, vwx126, vwx127, True, ehh, faa) new_compare7(Integer(vwx300), Integer(vwx400)) -> new_primCmpInt(vwx300, vwx400) new_esEs29(vwx3002, vwx4002, app(app(ty_@2, eec), eed)) -> new_esEs20(vwx3002, vwx4002, eec, eed) new_esEs17(Right(vwx3000), Right(vwx4000), faf, ty_Integer) -> new_esEs14(vwx3000, vwx4000) new_esEs27(vwx3000, vwx4000, ty_Integer) -> new_esEs14(vwx3000, vwx4000) new_primEqInt(Pos(Zero), Neg(Succ(vwx40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx40000))) -> False new_esEs17(Right(vwx3000), Right(vwx4000), faf, ty_@0) -> new_esEs18(vwx3000, vwx4000) new_lt6(vwx74, vwx76) -> new_esEs12(new_compare7(vwx74, vwx76), LT) new_compare24(vwx36, vwx37, True, dcg) -> EQ new_esEs6(vwx300, vwx400, ty_@0) -> new_esEs18(vwx300, vwx400) new_esEs11(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_esEs28(GT) -> False new_compare16(Double(vwx300, Neg(vwx3010)), Double(vwx400, Neg(vwx4010))) -> new_compare6(new_sr(vwx300, Neg(vwx4010)), new_sr(Neg(vwx3010), vwx400)) new_esEs35(vwx62, vwx65, app(ty_Ratio, fbc)) -> new_esEs19(vwx62, vwx65, fbc) new_esEs29(vwx3002, vwx4002, app(app(ty_Either, edh), eea)) -> new_esEs17(vwx3002, vwx4002, edh, eea) new_esEs26(vwx3001, vwx4001, app(ty_[], cgh)) -> new_esEs16(vwx3001, vwx4001, cgh) new_esEs17(Left(vwx3000), Left(vwx4000), ty_Ordering, fag) -> new_esEs12(vwx3000, vwx4000) new_ltEs20(vwx362, vwx372, ty_@0) -> new_ltEs12(vwx362, vwx372) new_lt4(vwx74, vwx76) -> new_esEs12(new_compare6(vwx74, vwx76), LT) new_ltEs18(vwx36, vwx37, app(app(app(ty_@3, bee), bdd), bde)) -> new_ltEs13(vwx36, vwx37, bee, bdd, bde) new_primEqInt(Neg(Succ(vwx30000)), Neg(Succ(vwx40000))) -> new_primEqNat0(vwx30000, vwx40000) new_ltEs5(Left(vwx360), Left(vwx370), ty_Bool, bah) -> new_ltEs11(vwx360, vwx370) new_esEs34(vwx360, vwx370, ty_Ordering) -> new_esEs12(vwx360, vwx370) new_lt23(vwx74, vwx76, app(app(ty_@2, cb), cc)) -> new_lt13(vwx74, vwx76, cb, cc) new_esEs36(vwx61, vwx64, ty_Bool) -> new_esEs13(vwx61, vwx64) new_primCmpInt(Neg(Zero), Pos(Succ(vwx4000))) -> LT new_compare9(:%(vwx300, vwx301), :%(vwx400, vwx401), ty_Integer) -> new_compare7(new_sr0(vwx300, vwx401), new_sr0(vwx400, vwx301)) new_ltEs19(vwx43, vwx44, ty_Char) -> new_ltEs14(vwx43, vwx44) new_lt22(vwx61, vwx64, ty_Int) -> new_lt4(vwx61, vwx64) new_primMulInt(Pos(vwx3000), Pos(vwx4010)) -> Pos(new_primMulNat0(vwx3000, vwx4010)) new_esEs8(vwx300, vwx400, app(app(app(ty_@3, dgh), dha), dhb)) -> new_esEs24(vwx300, vwx400, dgh, dha, dhb) new_esEs8(vwx300, vwx400, ty_Double) -> new_esEs22(vwx300, vwx400) new_esEs29(vwx3002, vwx4002, ty_Double) -> new_esEs22(vwx3002, vwx4002) new_compare19(False, False) -> EQ new_ltEs10(Just(vwx360), Just(vwx370), ty_Bool) -> new_ltEs11(vwx360, vwx370) new_esEs29(vwx3002, vwx4002, app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs24(vwx3002, vwx4002, eef, eeg, eeh) new_lt11(vwx360, vwx370, app(app(ty_@2, bdb), bdc)) -> new_lt13(vwx360, vwx370, bdb, bdc) new_esEs17(Left(vwx3000), Left(vwx4000), app(ty_[], fbf), fag) -> new_esEs16(vwx3000, vwx4000, fbf) new_esEs26(vwx3001, vwx4001, ty_Ordering) -> new_esEs12(vwx3001, vwx4001) new_primCompAux1(vwx30, vwx40, vwx15, h) -> new_primCompAux0(vwx15, new_compare30(vwx30, vwx40, h)) new_esEs30(vwx3001, vwx4001, ty_Double) -> new_esEs22(vwx3001, vwx4001) new_esEs35(vwx62, vwx65, ty_Float) -> new_esEs25(vwx62, vwx65) new_esEs27(vwx3000, vwx4000, app(ty_Ratio, dae)) -> new_esEs19(vwx3000, vwx4000, dae) new_primMulNat0(Succ(vwx30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx40100)) -> Zero new_esEs29(vwx3002, vwx4002, ty_Integer) -> new_esEs14(vwx3002, vwx4002) new_ltEs11(False, False) -> True new_compare31(Float(vwx300, Neg(vwx3010)), Float(vwx400, Neg(vwx4010))) -> new_compare6(new_sr(vwx300, Neg(vwx4010)), new_sr(Neg(vwx3010), vwx400)) new_esEs6(vwx300, vwx400, app(ty_Maybe, dcc)) -> new_esEs21(vwx300, vwx400, dcc) new_esEs26(vwx3001, vwx4001, ty_Float) -> new_esEs25(vwx3001, vwx4001) new_esEs32(vwx361, vwx371, app(app(ty_Either, bfb), bfc)) -> new_esEs17(vwx361, vwx371, bfb, bfc) new_esEs27(vwx3000, vwx4000, app(ty_Maybe, dah)) -> new_esEs21(vwx3000, vwx4000, dah) new_esEs5(vwx300, vwx400, app(app(ty_Either, faf), fag)) -> new_esEs17(vwx300, vwx400, faf, fag) new_esEs30(vwx3001, vwx4001, app(app(app(ty_@3, efh), ega), egb)) -> new_esEs24(vwx3001, vwx4001, efh, ega, egb) new_esEs31(vwx3000, vwx4000, ty_@0) -> new_esEs18(vwx3000, vwx4000) new_primPlusNat1(Succ(vwx1540), vwx40100) -> Succ(Succ(new_primPlusNat0(vwx1540, vwx40100))) new_compare9(:%(vwx300, vwx301), :%(vwx400, vwx401), ty_Int) -> new_compare6(new_sr(vwx300, vwx401), new_sr(vwx400, vwx301)) new_lt17(vwx74, vwx76, cg, da) -> new_esEs12(new_compare14(vwx74, vwx76, cg, da), LT) new_compare12(vwx139, vwx140, vwx141, vwx142, vwx143, vwx144, True, vwx146, ddb, ddc, ddd) -> new_compare13(vwx139, vwx140, vwx141, vwx142, vwx143, vwx144, True, ddb, ddc, ddd) new_compare14(Left(vwx300), Left(vwx400), be, bf) -> new_compare25(vwx300, vwx400, new_esEs7(vwx300, vwx400, be), be, bf) new_ltEs21(vwx361, vwx371, app(ty_Ratio, fbb)) -> new_ltEs6(vwx361, vwx371, fbb) new_esEs7(vwx300, vwx400, app(app(ty_Either, deh), dfa)) -> new_esEs17(vwx300, vwx400, deh, dfa) new_primPlusNat0(Succ(vwx15400), Zero) -> Succ(vwx15400) new_primPlusNat0(Zero, Succ(vwx401000)) -> Succ(vwx401000) new_esEs6(vwx300, vwx400, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs24(vwx300, vwx400, dcd, dce, dcf) new_ltEs5(Left(vwx360), Left(vwx370), app(app(app(ty_@3, bbe), bbf), bbg), bah) -> new_ltEs13(vwx360, vwx370, bbe, bbf, bbg) new_esEs30(vwx3001, vwx4001, app(app(ty_@2, efe), eff)) -> new_esEs20(vwx3001, vwx4001, efe, eff) new_ltEs22(vwx63, vwx66, ty_Float) -> new_ltEs9(vwx63, vwx66) new_primPlusNat1(Zero, vwx40100) -> Succ(vwx40100) new_esEs6(vwx300, vwx400, ty_Double) -> new_esEs22(vwx300, vwx400) new_esEs38(vwx3000, vwx4000, ty_Integer) -> new_esEs14(vwx3000, vwx4000) new_esEs6(vwx300, vwx400, app(app(ty_Either, dbf), dbg)) -> new_esEs17(vwx300, vwx400, dbf, dbg) new_ltEs22(vwx63, vwx66, app(ty_Ratio, fbd)) -> new_ltEs6(vwx63, vwx66, fbd) new_lt20(vwx360, vwx370, ty_Bool) -> new_lt10(vwx360, vwx370) new_lt20(vwx360, vwx370, ty_Int) -> new_lt4(vwx360, vwx370) new_esEs26(vwx3001, vwx4001, ty_Bool) -> new_esEs13(vwx3001, vwx4001) new_ltEs10(Just(vwx360), Just(vwx370), ty_Integer) -> new_ltEs4(vwx360, vwx370) new_esEs21(Just(vwx3000), Just(vwx4000), app(ty_Ratio, ebc)) -> new_esEs19(vwx3000, vwx4000, ebc) new_ltEs11(True, True) -> True new_ltEs16(vwx36, vwx37) -> new_fsEs(new_compare6(vwx36, vwx37)) new_esEs5(vwx300, vwx400, app(ty_[], fae)) -> new_esEs16(vwx300, vwx400, fae) new_ltEs5(Left(vwx360), Left(vwx370), ty_Integer, bah) -> new_ltEs4(vwx360, vwx370) new_compare8(LT, GT) -> LT new_esEs21(Just(vwx3000), Just(vwx4000), ty_Int) -> new_esEs23(vwx3000, vwx4000) new_esEs5(vwx300, vwx400, app(app(ty_@2, cgf), cgg)) -> new_esEs20(vwx300, vwx400, cgf, cgg) new_esEs27(vwx3000, vwx4000, ty_Char) -> new_esEs15(vwx3000, vwx4000) new_esEs31(vwx3000, vwx4000, app(app(ty_@2, egg), egh)) -> new_esEs20(vwx3000, vwx4000, egg, egh) new_lt21(vwx62, vwx65, ty_Int) -> new_lt4(vwx62, vwx65) new_esEs13(True, True) -> True new_esEs29(vwx3002, vwx4002, app(ty_Maybe, eee)) -> new_esEs21(vwx3002, vwx4002, eee) new_esEs32(vwx361, vwx371, ty_Double) -> new_esEs22(vwx361, vwx371) new_esEs32(vwx361, vwx371, app(app(app(ty_@3, bfd), bfe), bff)) -> new_esEs24(vwx361, vwx371, bfd, bfe, bff) new_esEs6(vwx300, vwx400, app(app(ty_@2, dca), dcb)) -> new_esEs20(vwx300, vwx400, dca, dcb) new_esEs36(vwx61, vwx64, ty_Float) -> new_esEs25(vwx61, vwx64) new_esEs31(vwx3000, vwx4000, ty_Double) -> new_esEs22(vwx3000, vwx4000) new_ltEs20(vwx362, vwx372, app(app(ty_@2, bfg), bfh)) -> new_ltEs7(vwx362, vwx372, bfg, bfh) new_esEs17(Left(vwx3000), Left(vwx4000), app(ty_Maybe, fcd), fag) -> new_esEs21(vwx3000, vwx4000, fcd) new_lt14(vwx74, vwx76) -> new_esEs12(new_compare31(vwx74, vwx76), LT) new_esEs40(vwx74, vwx76, app(ty_[], ce)) -> new_esEs16(vwx74, vwx76, ce) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Bool) -> new_esEs13(vwx3000, vwx4000) new_lt12(vwx361, vwx371, app(ty_Maybe, bfa)) -> new_lt15(vwx361, vwx371, bfa) new_esEs16([], [], fae) -> True new_compare31(Float(vwx300, Pos(vwx3010)), Float(vwx400, Pos(vwx4010))) -> new_compare6(new_sr(vwx300, Pos(vwx4010)), new_sr(Pos(vwx3010), vwx400)) new_fsEs(vwx148) -> new_not(new_esEs12(vwx148, GT)) new_esEs26(vwx3001, vwx4001, ty_Int) -> new_esEs23(vwx3001, vwx4001) new_ltEs18(vwx36, vwx37, ty_@0) -> new_ltEs12(vwx36, vwx37) new_primMulInt(Neg(vwx3000), Neg(vwx4010)) -> Pos(new_primMulNat0(vwx3000, vwx4010)) new_esEs4(vwx301, vwx401, ty_Integer) -> new_esEs14(vwx301, vwx401) new_primCmpInt(Pos(Zero), Pos(Succ(vwx4000))) -> new_primCmpNat0(Zero, Succ(vwx4000)) new_esEs31(vwx3000, vwx4000, app(app(app(ty_@3, ehb), ehc), ehd)) -> new_esEs24(vwx3000, vwx4000, ehb, ehc, ehd) new_esEs40(vwx74, vwx76, ty_Char) -> new_esEs15(vwx74, vwx76) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Float) -> new_esEs25(vwx3000, vwx4000) new_esEs37(vwx3001, vwx4001, ty_Int) -> new_esEs23(vwx3001, vwx4001) new_compare8(EQ, GT) -> LT new_lt20(vwx360, vwx370, app(ty_Ratio, fba)) -> new_lt5(vwx360, vwx370, fba) new_esEs31(vwx3000, vwx4000, app(app(ty_Either, egd), ege)) -> new_esEs17(vwx3000, vwx4000, egd, ege) new_esEs40(vwx74, vwx76, app(ty_Maybe, cf)) -> new_esEs21(vwx74, vwx76, cf) new_ltEs11(False, True) -> True new_ltEs19(vwx43, vwx44, app(app(ty_@2, bgh), bha)) -> new_ltEs7(vwx43, vwx44, bgh, bha) new_esEs7(vwx300, vwx400, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs24(vwx300, vwx400, dff, dfg, dfh) new_ltEs15(EQ, GT) -> True new_ltEs23(vwx50, vwx51, ty_Float) -> new_ltEs9(vwx50, vwx51) new_esEs39(vwx3000, vwx4000, app(ty_[], fee)) -> new_esEs16(vwx3000, vwx4000, fee) new_compare30(vwx30, vwx40, ty_Float) -> new_compare31(vwx30, vwx40) new_ltEs18(vwx36, vwx37, ty_Ordering) -> new_ltEs15(vwx36, vwx37) new_compare30(vwx30, vwx40, app(app(ty_@2, ba), bb)) -> new_compare28(vwx30, vwx40, ba, bb) new_esEs39(vwx3000, vwx4000, ty_Integer) -> new_esEs14(vwx3000, vwx4000) new_ltEs18(vwx36, vwx37, ty_Char) -> new_ltEs14(vwx36, vwx37) new_esEs8(vwx300, vwx400, ty_@0) -> new_esEs18(vwx300, vwx400) new_esEs36(vwx61, vwx64, ty_Ordering) -> new_esEs12(vwx61, vwx64) new_esEs7(vwx300, vwx400, ty_Double) -> new_esEs22(vwx300, vwx400) new_compare6(vwx30, vwx40) -> new_primCmpInt(vwx30, vwx40) new_esEs4(vwx301, vwx401, app(ty_[], dde)) -> new_esEs16(vwx301, vwx401, dde) new_compare28(@2(vwx300, vwx301), @2(vwx400, vwx401), ba, bb) -> new_compare29(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs5(vwx300, vwx400, ba), new_esEs4(vwx301, vwx401, bb)), ba, bb) new_compare30(vwx30, vwx40, app(ty_Ratio, feb)) -> new_compare9(vwx30, vwx40, feb) new_esEs4(vwx301, vwx401, ty_Char) -> new_esEs15(vwx301, vwx401) new_esEs30(vwx3001, vwx4001, ty_Char) -> new_esEs15(vwx3001, vwx4001) new_esEs26(vwx3001, vwx4001, ty_@0) -> new_esEs18(vwx3001, vwx4001) new_ltEs10(Just(vwx360), Just(vwx370), app(ty_Ratio, fad)) -> new_ltEs6(vwx360, vwx370, fad) new_compare30(vwx30, vwx40, ty_Int) -> new_compare6(vwx30, vwx40) new_ltEs19(vwx43, vwx44, app(app(ty_Either, bhe), bhf)) -> new_ltEs5(vwx43, vwx44, bhe, bhf) new_lt20(vwx360, vwx370, ty_Integer) -> new_lt6(vwx360, vwx370) new_ltEs7(@2(vwx360, vwx361), @2(vwx370, vwx371), gb, fa) -> new_pePe(new_lt20(vwx360, vwx370, gb), new_asAs(new_esEs34(vwx360, vwx370, gb), new_ltEs21(vwx361, vwx371, fa))) new_compare11(vwx97, vwx98, False, fgb) -> GT new_lt21(vwx62, vwx65, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_lt9(vwx62, vwx65, cbb, cbc, cbd) new_ltEs23(vwx50, vwx51, ty_@0) -> new_ltEs12(vwx50, vwx51) new_ltEs10(Just(vwx360), Just(vwx370), app(app(ty_Either, baa), bab)) -> new_ltEs5(vwx360, vwx370, baa, bab) new_esEs17(Left(vwx3000), Left(vwx4000), app(ty_Ratio, fca), fag) -> new_esEs19(vwx3000, vwx4000, fca) new_ltEs23(vwx50, vwx51, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs13(vwx50, vwx51, ceg, ceh, cfa) new_primMulInt(Pos(vwx3000), Neg(vwx4010)) -> Neg(new_primMulNat0(vwx3000, vwx4010)) new_primMulInt(Neg(vwx3000), Pos(vwx4010)) -> Neg(new_primMulNat0(vwx3000, vwx4010)) new_esEs29(vwx3002, vwx4002, ty_Ordering) -> new_esEs12(vwx3002, vwx4002) new_esEs35(vwx62, vwx65, app(ty_[], caf)) -> new_esEs16(vwx62, vwx65, caf) new_esEs39(vwx3000, vwx4000, ty_Char) -> new_esEs15(vwx3000, vwx4000) new_ltEs18(vwx36, vwx37, app(ty_Maybe, dda)) -> new_ltEs10(vwx36, vwx37, dda) new_esEs9(vwx302, vwx402, app(app(ty_@2, ecf), ecg)) -> new_esEs20(vwx302, vwx402, ecf, ecg) new_lt12(vwx361, vwx371, ty_Ordering) -> new_lt7(vwx361, vwx371) new_esEs7(vwx300, vwx400, app(ty_Ratio, dfb)) -> new_esEs19(vwx300, vwx400, dfb) new_esEs40(vwx74, vwx76, ty_Integer) -> new_esEs14(vwx74, vwx76) new_esEs34(vwx360, vwx370, app(ty_Ratio, fba)) -> new_esEs19(vwx360, vwx370, fba) new_esEs36(vwx61, vwx64, app(app(ty_@2, ccg), cch)) -> new_esEs20(vwx61, vwx64, ccg, cch) new_esEs40(vwx74, vwx76, app(ty_Ratio, dbd)) -> new_esEs19(vwx74, vwx76, dbd) new_lt12(vwx361, vwx371, app(app(ty_Either, bfb), bfc)) -> new_lt17(vwx361, vwx371, bfb, bfc) new_esEs11(vwx300, vwx400, app(app(ty_@2, cff), cfg)) -> new_esEs20(vwx300, vwx400, cff, cfg) new_compare27(@0, @0) -> EQ new_esEs32(vwx361, vwx371, ty_@0) -> new_esEs18(vwx361, vwx371) new_lt22(vwx61, vwx64, app(app(ty_@2, ccg), cch)) -> new_lt13(vwx61, vwx64, ccg, cch) new_sr0(Integer(vwx3000), Integer(vwx4010)) -> Integer(new_primMulInt(vwx3000, vwx4010)) new_esEs34(vwx360, vwx370, ty_Integer) -> new_esEs14(vwx360, vwx370) new_ltEs24(vwx75, vwx77, app(ty_Maybe, ea)) -> new_ltEs10(vwx75, vwx77, ea) new_ltEs5(Left(vwx360), Left(vwx370), ty_Int, bah) -> new_ltEs16(vwx360, vwx370) new_esEs7(vwx300, vwx400, ty_Integer) -> new_esEs14(vwx300, vwx400) new_esEs35(vwx62, vwx65, ty_Ordering) -> new_esEs12(vwx62, vwx65) new_ltEs15(LT, GT) -> True new_esEs13(False, False) -> True new_esEs8(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_ltEs19(vwx43, vwx44, ty_Int) -> new_ltEs16(vwx43, vwx44) new_esEs21(Just(vwx3000), Just(vwx4000), app(app(ty_@2, ebd), ebe)) -> new_esEs20(vwx3000, vwx4000, ebd, ebe) new_esEs38(vwx3000, vwx4000, ty_Int) -> new_esEs23(vwx3000, vwx4000) new_lt12(vwx361, vwx371, app(app(ty_@2, bef), beg)) -> new_lt13(vwx361, vwx371, bef, beg) new_ltEs18(vwx36, vwx37, app(app(ty_@2, gb), fa)) -> new_ltEs7(vwx36, vwx37, gb, fa) new_ltEs19(vwx43, vwx44, app(ty_Ratio, dhd)) -> new_ltEs6(vwx43, vwx44, dhd) new_esEs39(vwx3000, vwx4000, app(ty_Maybe, ffc)) -> new_esEs21(vwx3000, vwx4000, ffc) new_compare14(Left(vwx300), Right(vwx400), be, bf) -> LT new_ltEs22(vwx63, vwx66, ty_Double) -> new_ltEs17(vwx63, vwx66) new_ltEs22(vwx63, vwx66, ty_Ordering) -> new_ltEs15(vwx63, vwx66) new_esEs6(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_ltEs24(vwx75, vwx77, ty_Float) -> new_ltEs9(vwx75, vwx77) new_compare111(vwx124, vwx125, vwx126, vwx127, True, ehh, faa) -> LT new_esEs12(GT, GT) -> True new_esEs33(vwx360, vwx370, ty_Int) -> new_esEs23(vwx360, vwx370) new_compare0([], :(vwx40, vwx41), h) -> LT new_asAs(True, vwx92) -> vwx92 new_ltEs5(Right(vwx360), Left(vwx370), bbh, bah) -> False new_ltEs5(Right(vwx360), Right(vwx370), bbh, ty_Ordering) -> new_ltEs15(vwx360, vwx370) new_esEs30(vwx3001, vwx4001, ty_Integer) -> new_esEs14(vwx3001, vwx4001) new_esEs26(vwx3001, vwx4001, app(app(ty_@2, chd), che)) -> new_esEs20(vwx3001, vwx4001, chd, che) new_esEs36(vwx61, vwx64, ty_@0) -> new_esEs18(vwx61, vwx64) new_lt22(vwx61, vwx64, app(app(ty_Either, cdc), cdd)) -> new_lt17(vwx61, vwx64, cdc, cdd) new_esEs10(vwx301, vwx401, app(ty_[], dhe)) -> new_esEs16(vwx301, vwx401, dhe) new_esEs30(vwx3001, vwx4001, app(ty_Ratio, efd)) -> new_esEs19(vwx3001, vwx4001, efd) new_esEs9(vwx302, vwx402, ty_@0) -> new_esEs18(vwx302, vwx402) new_ltEs10(Just(vwx360), Just(vwx370), ty_Int) -> new_ltEs16(vwx360, vwx370) new_esEs17(Right(vwx3000), Right(vwx4000), faf, ty_Double) -> new_esEs22(vwx3000, vwx4000) new_esEs28(LT) -> True new_lt11(vwx360, vwx370, ty_Float) -> new_lt14(vwx360, vwx370) new_esEs21(Just(vwx3000), Just(vwx4000), ty_@0) -> new_esEs18(vwx3000, vwx4000) new_esEs30(vwx3001, vwx4001, app(ty_Maybe, efg)) -> new_esEs21(vwx3001, vwx4001, efg) new_lt22(vwx61, vwx64, ty_Double) -> new_lt19(vwx61, vwx64) new_lt11(vwx360, vwx370, app(ty_Maybe, bdg)) -> new_lt15(vwx360, vwx370, bdg) new_esEs29(vwx3002, vwx4002, app(ty_[], edg)) -> new_esEs16(vwx3002, vwx4002, edg) new_ltEs20(vwx362, vwx372, app(app(ty_Either, bgc), bgd)) -> new_ltEs5(vwx362, vwx372, bgc, bgd) new_esEs11(vwx300, vwx400, ty_@0) -> new_esEs18(vwx300, vwx400) new_ltEs20(vwx362, vwx372, ty_Char) -> new_ltEs14(vwx362, vwx372) new_lt22(vwx61, vwx64, ty_Ordering) -> new_lt7(vwx61, vwx64) new_esEs17(Right(vwx3000), Right(vwx4000), faf, ty_Int) -> new_esEs23(vwx3000, vwx4000) new_compare14(Right(vwx300), Right(vwx400), be, bf) -> new_compare26(vwx300, vwx400, new_esEs8(vwx300, vwx400, bf), be, bf) new_esEs27(vwx3000, vwx4000, ty_Int) -> new_esEs23(vwx3000, vwx4000) new_ltEs18(vwx36, vwx37, ty_Float) -> new_ltEs9(vwx36, vwx37) new_ltEs24(vwx75, vwx77, app(ty_[], dh)) -> new_ltEs8(vwx75, vwx77, dh) new_compare30(vwx30, vwx40, app(ty_Maybe, bd)) -> new_compare10(vwx30, vwx40, bd) new_esEs8(vwx300, vwx400, app(ty_[], dga)) -> new_esEs16(vwx300, vwx400, dga) new_primCmpInt(Pos(Succ(vwx3000)), Pos(vwx400)) -> new_primCmpNat0(Succ(vwx3000), vwx400) new_ltEs5(Right(vwx360), Right(vwx370), bbh, app(app(ty_Either, bce), bcf)) -> new_ltEs5(vwx360, vwx370, bce, bcf) new_ltEs18(vwx36, vwx37, app(ty_[], hd)) -> new_ltEs8(vwx36, vwx37, hd) new_lt21(vwx62, vwx65, app(ty_Ratio, fbc)) -> new_lt5(vwx62, vwx65, fbc) new_ltEs22(vwx63, vwx66, ty_Integer) -> new_ltEs4(vwx63, vwx66) new_ltEs5(Left(vwx360), Left(vwx370), app(ty_Maybe, bbb), bah) -> new_ltEs10(vwx360, vwx370, bbb) new_esEs29(vwx3002, vwx4002, ty_Char) -> new_esEs15(vwx3002, vwx4002) new_lt7(vwx74, vwx76) -> new_esEs12(new_compare8(vwx74, vwx76), LT) new_esEs12(EQ, EQ) -> True new_compare0([], [], h) -> EQ new_sr(vwx300, vwx401) -> new_primMulInt(vwx300, vwx401) new_compare10(Nothing, Nothing, bd) -> EQ new_esEs8(vwx300, vwx400, ty_Char) -> new_esEs15(vwx300, vwx400) new_compare8(GT, EQ) -> GT new_ltEs5(Right(vwx360), Right(vwx370), bbh, app(ty_Maybe, bcd)) -> new_ltEs10(vwx360, vwx370, bcd) new_esEs27(vwx3000, vwx4000, ty_Bool) -> new_esEs13(vwx3000, vwx4000) new_primMulNat0(Zero, Zero) -> Zero new_esEs4(vwx301, vwx401, app(app(ty_@2, dea), deb)) -> new_esEs20(vwx301, vwx401, dea, deb) new_lt23(vwx74, vwx76, ty_Ordering) -> new_lt7(vwx74, vwx76) new_ltEs5(Right(vwx360), Right(vwx370), bbh, ty_@0) -> new_ltEs12(vwx360, vwx370) new_compare8(LT, LT) -> EQ new_ltEs23(vwx50, vwx51, app(app(ty_@2, cea), ceb)) -> new_ltEs7(vwx50, vwx51, cea, ceb) new_esEs30(vwx3001, vwx4001, app(ty_[], efa)) -> new_esEs16(vwx3001, vwx4001, efa) new_esEs27(vwx3000, vwx4000, ty_Double) -> new_esEs22(vwx3000, vwx4000) new_esEs25(Float(vwx3000, vwx3001), Float(vwx4000, vwx4001)) -> new_esEs23(new_sr(vwx3000, vwx4001), new_sr(vwx3001, vwx4000)) new_esEs27(vwx3000, vwx4000, app(app(ty_Either, dac), dad)) -> new_esEs17(vwx3000, vwx4000, dac, dad) new_ltEs19(vwx43, vwx44, app(ty_[], bhc)) -> new_ltEs8(vwx43, vwx44, bhc) new_esEs33(vwx360, vwx370, ty_Float) -> new_esEs25(vwx360, vwx370) new_compare8(LT, EQ) -> LT new_esEs20(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), cgf, cgg) -> new_asAs(new_esEs27(vwx3000, vwx4000, cgf), new_esEs26(vwx3001, vwx4001, cgg)) new_ltEs20(vwx362, vwx372, ty_Int) -> new_ltEs16(vwx362, vwx372) new_esEs11(vwx300, vwx400, ty_Bool) -> new_esEs13(vwx300, vwx400) new_esEs7(vwx300, vwx400, ty_Char) -> new_esEs15(vwx300, vwx400) new_esEs33(vwx360, vwx370, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs24(vwx360, vwx370, beb, bec, bed) new_esEs33(vwx360, vwx370, ty_Double) -> new_esEs22(vwx360, vwx370) new_esEs27(vwx3000, vwx4000, ty_Float) -> new_esEs25(vwx3000, vwx4000) new_lt12(vwx361, vwx371, ty_Int) -> new_lt4(vwx361, vwx371) new_esEs33(vwx360, vwx370, app(app(ty_Either, bdh), bea)) -> new_esEs17(vwx360, vwx370, bdh, bea) new_ltEs5(Right(vwx360), Right(vwx370), bbh, ty_Double) -> new_ltEs17(vwx360, vwx370) new_esEs39(vwx3000, vwx4000, app(ty_Ratio, feh)) -> new_esEs19(vwx3000, vwx4000, feh) new_compare10(Just(vwx300), Just(vwx400), bd) -> new_compare24(vwx300, vwx400, new_esEs6(vwx300, vwx400, bd), bd) new_esEs21(Nothing, Just(vwx4000), eag) -> False new_esEs21(Just(vwx3000), Nothing, eag) -> False new_ltEs20(vwx362, vwx372, app(ty_Ratio, ehg)) -> new_ltEs6(vwx362, vwx372, ehg) new_esEs34(vwx360, vwx370, ty_Int) -> new_esEs23(vwx360, vwx370) new_ltEs11(True, False) -> False new_esEs17(Right(vwx3000), Right(vwx4000), faf, app(app(app(ty_@3, fdg), fdh), fea)) -> new_esEs24(vwx3000, vwx4000, fdg, fdh, fea) new_esEs40(vwx74, vwx76, ty_Ordering) -> new_esEs12(vwx74, vwx76) new_esEs27(vwx3000, vwx4000, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs24(vwx3000, vwx4000, dba, dbb, dbc) new_esEs4(vwx301, vwx401, ty_Ordering) -> new_esEs12(vwx301, vwx401) new_esEs21(Nothing, Nothing, eag) -> True new_compare26(vwx50, vwx51, False, cdh, ffg) -> new_compare112(vwx50, vwx51, new_ltEs23(vwx50, vwx51, ffg), cdh, ffg) new_esEs32(vwx361, vwx371, app(app(ty_@2, bef), beg)) -> new_esEs20(vwx361, vwx371, bef, beg) new_ltEs15(EQ, EQ) -> True new_esEs40(vwx74, vwx76, ty_Float) -> new_esEs25(vwx74, vwx76) new_lt11(vwx360, vwx370, ty_Char) -> new_lt18(vwx360, vwx370) new_esEs29(vwx3002, vwx4002, app(ty_Ratio, eeb)) -> new_esEs19(vwx3002, vwx4002, eeb) new_esEs34(vwx360, vwx370, ty_Float) -> new_esEs25(vwx360, vwx370) new_esEs8(vwx300, vwx400, app(ty_Maybe, dgg)) -> new_esEs21(vwx300, vwx400, dgg) new_esEs40(vwx74, vwx76, app(app(ty_Either, cg), da)) -> new_esEs17(vwx74, vwx76, cg, da) new_lt12(vwx361, vwx371, ty_Float) -> new_lt14(vwx361, vwx371) new_esEs34(vwx360, vwx370, app(app(ty_Either, fd), ff)) -> new_esEs17(vwx360, vwx370, fd, ff) new_lt21(vwx62, vwx65, ty_Double) -> new_lt19(vwx62, vwx65) new_ltEs6(vwx36, vwx37, dch) -> new_fsEs(new_compare9(vwx36, vwx37, dch)) new_ltEs5(Left(vwx360), Left(vwx370), app(ty_[], bba), bah) -> new_ltEs8(vwx360, vwx370, bba) new_primCompAux0(vwx19, EQ) -> vwx19 new_esEs40(vwx74, vwx76, ty_Int) -> new_esEs23(vwx74, vwx76) new_ltEs20(vwx362, vwx372, app(ty_[], bga)) -> new_ltEs8(vwx362, vwx372, bga) new_ltEs24(vwx75, vwx77, app(app(ty_Either, eb), ec)) -> new_ltEs5(vwx75, vwx77, eb, ec) new_esEs39(vwx3000, vwx4000, ty_Ordering) -> new_esEs12(vwx3000, vwx4000) new_lt18(vwx74, vwx76) -> new_esEs12(new_compare18(vwx74, vwx76), LT) new_ltEs23(vwx50, vwx51, app(ty_Maybe, ced)) -> new_ltEs10(vwx50, vwx51, ced) new_esEs5(vwx300, vwx400, ty_Bool) -> new_esEs13(vwx300, vwx400) new_primEqInt(Neg(Succ(vwx30000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx40000))) -> False new_esEs7(vwx300, vwx400, app(ty_Maybe, dfe)) -> new_esEs21(vwx300, vwx400, dfe) new_ltEs15(LT, EQ) -> True new_esEs39(vwx3000, vwx4000, app(app(app(ty_@3, ffd), ffe), fff)) -> new_esEs24(vwx3000, vwx4000, ffd, ffe, fff) new_esEs10(vwx301, vwx401, ty_Ordering) -> new_esEs12(vwx301, vwx401) new_ltEs24(vwx75, vwx77, app(ty_Ratio, fga)) -> new_ltEs6(vwx75, vwx77, fga) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_primEqInt(Pos(Succ(vwx30000)), Pos(Succ(vwx40000))) -> new_primEqNat0(vwx30000, vwx40000) new_esEs17(Left(vwx3000), Right(vwx4000), faf, fag) -> False new_esEs17(Right(vwx3000), Left(vwx4000), faf, fag) -> False new_ltEs23(vwx50, vwx51, ty_Integer) -> new_ltEs4(vwx50, vwx51) new_esEs5(vwx300, vwx400, ty_@0) -> new_esEs18(vwx300, vwx400) new_ltEs10(Just(vwx360), Just(vwx370), app(ty_[], hg)) -> new_ltEs8(vwx360, vwx370, hg) new_lt23(vwx74, vwx76, ty_Int) -> new_lt4(vwx74, vwx76) new_esEs7(vwx300, vwx400, app(ty_[], deg)) -> new_esEs16(vwx300, vwx400, deg) new_esEs21(Just(vwx3000), Just(vwx4000), app(ty_[], eah)) -> new_esEs16(vwx3000, vwx4000, eah) new_esEs17(Right(vwx3000), Right(vwx4000), faf, app(ty_Ratio, fdc)) -> new_esEs19(vwx3000, vwx4000, fdc) new_ltEs18(vwx36, vwx37, app(app(ty_Either, bbh), bah)) -> new_ltEs5(vwx36, vwx37, bbh, bah) new_primEqInt(Pos(Succ(vwx30000)), Neg(vwx4000)) -> False new_primEqInt(Neg(Succ(vwx30000)), Pos(vwx4000)) -> False new_ltEs20(vwx362, vwx372, ty_Float) -> new_ltEs9(vwx362, vwx372) new_esEs39(vwx3000, vwx4000, ty_Float) -> new_esEs25(vwx3000, vwx4000) new_compare24(vwx36, vwx37, False, dcg) -> new_compare11(vwx36, vwx37, new_ltEs18(vwx36, vwx37, dcg), dcg) new_esEs34(vwx360, vwx370, ty_Double) -> new_esEs22(vwx360, vwx370) new_lt21(vwx62, vwx65, app(ty_Maybe, cag)) -> new_lt15(vwx62, vwx65, cag) new_compare30(vwx30, vwx40, app(ty_[], bc)) -> new_compare0(vwx30, vwx40, bc) new_esEs31(vwx3000, vwx4000, app(ty_[], egc)) -> new_esEs16(vwx3000, vwx4000, egc) new_primCmpInt(Neg(Zero), Neg(Succ(vwx4000))) -> new_primCmpNat0(Succ(vwx4000), Zero) new_lt23(vwx74, vwx76, app(app(ty_Either, cg), da)) -> new_lt17(vwx74, vwx76, cg, da) new_esEs22(Double(vwx3000, vwx3001), Double(vwx4000, vwx4001)) -> new_esEs23(new_sr(vwx3000, vwx4001), new_sr(vwx3001, vwx4000)) new_esEs31(vwx3000, vwx4000, ty_Char) -> new_esEs15(vwx3000, vwx4000) new_esEs40(vwx74, vwx76, app(app(app(ty_@3, db), dc), dd)) -> new_esEs24(vwx74, vwx76, db, dc, dd) new_esEs10(vwx301, vwx401, app(app(ty_@2, eaa), eab)) -> new_esEs20(vwx301, vwx401, eaa, eab) new_esEs40(vwx74, vwx76, ty_Double) -> new_esEs22(vwx74, vwx76) new_ltEs15(GT, GT) -> True new_esEs17(Left(vwx3000), Left(vwx4000), ty_@0, fag) -> new_esEs18(vwx3000, vwx4000) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_lt11(vwx360, vwx370, app(ty_Ratio, ehe)) -> new_lt5(vwx360, vwx370, ehe) new_esEs34(vwx360, vwx370, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs24(vwx360, vwx370, fg, fh, ga) new_esEs35(vwx62, vwx65, app(app(ty_@2, cac), cad)) -> new_esEs20(vwx62, vwx65, cac, cad) new_ltEs23(vwx50, vwx51, ty_Char) -> new_ltEs14(vwx50, vwx51) new_lt23(vwx74, vwx76, ty_Double) -> new_lt19(vwx74, vwx76) new_ltEs19(vwx43, vwx44, ty_Float) -> new_ltEs9(vwx43, vwx44) new_lt21(vwx62, vwx65, app(app(ty_@2, cac), cad)) -> new_lt13(vwx62, vwx65, cac, cad) new_esEs30(vwx3001, vwx4001, ty_Int) -> new_esEs23(vwx3001, vwx4001) new_esEs33(vwx360, vwx370, ty_Integer) -> new_esEs14(vwx360, vwx370) new_ltEs19(vwx43, vwx44, app(ty_Maybe, bhd)) -> new_ltEs10(vwx43, vwx44, bhd) new_compare19(False, True) -> LT new_esEs9(vwx302, vwx402, app(ty_[], ecb)) -> new_esEs16(vwx302, vwx402, ecb) new_compare8(GT, LT) -> GT new_ltEs18(vwx36, vwx37, app(ty_Ratio, dch)) -> new_ltEs6(vwx36, vwx37, dch) new_ltEs13(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, bdd, bde) -> new_pePe(new_lt11(vwx360, vwx370, bee), new_asAs(new_esEs33(vwx360, vwx370, bee), new_pePe(new_lt12(vwx361, vwx371, bdd), new_asAs(new_esEs32(vwx361, vwx371, bdd), new_ltEs20(vwx362, vwx372, bde))))) new_ltEs23(vwx50, vwx51, app(ty_[], cec)) -> new_ltEs8(vwx50, vwx51, cec) new_lt23(vwx74, vwx76, ty_@0) -> new_lt16(vwx74, vwx76) new_compare112(vwx112, vwx113, False, fab, fac) -> GT new_compare30(vwx30, vwx40, ty_Integer) -> new_compare7(vwx30, vwx40) new_esEs39(vwx3000, vwx4000, ty_Double) -> new_esEs22(vwx3000, vwx4000) new_ltEs24(vwx75, vwx77, ty_Int) -> new_ltEs16(vwx75, vwx77) new_compare30(vwx30, vwx40, ty_Ordering) -> new_compare8(vwx30, vwx40) new_ltEs21(vwx361, vwx371, ty_Integer) -> new_ltEs4(vwx361, vwx371) new_esEs17(Right(vwx3000), Right(vwx4000), faf, app(ty_[], fch)) -> new_esEs16(vwx3000, vwx4000, fch) new_esEs10(vwx301, vwx401, ty_Integer) -> new_esEs14(vwx301, vwx401) new_esEs28(EQ) -> False new_esEs31(vwx3000, vwx4000, ty_Bool) -> new_esEs13(vwx3000, vwx4000) new_ltEs10(Just(vwx360), Just(vwx370), app(app(ty_@2, he), hf)) -> new_ltEs7(vwx360, vwx370, he, hf) new_not(False) -> True new_ltEs5(Right(vwx360), Right(vwx370), bbh, app(ty_[], bcc)) -> new_ltEs8(vwx360, vwx370, bcc) new_compare8(EQ, LT) -> GT new_ltEs24(vwx75, vwx77, app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs13(vwx75, vwx77, ed, ee, ef) new_esEs36(vwx61, vwx64, app(ty_[], cda)) -> new_esEs16(vwx61, vwx64, cda) new_ltEs5(Right(vwx360), Right(vwx370), bbh, ty_Bool) -> new_ltEs11(vwx360, vwx370) new_lt11(vwx360, vwx370, ty_Ordering) -> new_lt7(vwx360, vwx370) new_lt22(vwx61, vwx64, app(ty_[], cda)) -> new_lt8(vwx61, vwx64, cda) new_ltEs22(vwx63, vwx66, ty_@0) -> new_ltEs12(vwx63, vwx66) new_esEs8(vwx300, vwx400, app(ty_Ratio, dgd)) -> new_esEs19(vwx300, vwx400, dgd) new_lt21(vwx62, vwx65, app(app(ty_Either, cah), cba)) -> new_lt17(vwx62, vwx65, cah, cba) new_compare0(:(vwx30, vwx31), [], h) -> GT new_esEs12(LT, EQ) -> False new_esEs12(EQ, LT) -> False new_compare18(Char(vwx300), Char(vwx400)) -> new_primCmpNat0(vwx300, vwx400) new_primPlusNat0(Succ(vwx15400), Succ(vwx401000)) -> Succ(Succ(new_primPlusNat0(vwx15400, vwx401000))) new_esEs31(vwx3000, vwx4000, app(ty_Ratio, egf)) -> new_esEs19(vwx3000, vwx4000, egf) new_esEs27(vwx3000, vwx4000, ty_@0) -> new_esEs18(vwx3000, vwx4000) new_esEs30(vwx3001, vwx4001, ty_Float) -> new_esEs25(vwx3001, vwx4001) new_lt11(vwx360, vwx370, app(app(ty_Either, bdh), bea)) -> new_lt17(vwx360, vwx370, bdh, bea) new_compare16(Double(vwx300, Pos(vwx3010)), Double(vwx400, Neg(vwx4010))) -> new_compare6(new_sr(vwx300, Pos(vwx4010)), new_sr(Neg(vwx3010), vwx400)) new_compare16(Double(vwx300, Neg(vwx3010)), Double(vwx400, Pos(vwx4010))) -> new_compare6(new_sr(vwx300, Neg(vwx4010)), new_sr(Pos(vwx3010), vwx400)) new_ltEs10(Just(vwx360), Just(vwx370), ty_Char) -> new_ltEs14(vwx360, vwx370) new_ltEs5(Left(vwx360), Left(vwx370), ty_Char, bah) -> new_ltEs14(vwx360, vwx370) new_esEs35(vwx62, vwx65, ty_Integer) -> new_esEs14(vwx62, vwx65) new_esEs10(vwx301, vwx401, app(ty_Maybe, eac)) -> new_esEs21(vwx301, vwx401, eac) new_esEs29(vwx3002, vwx4002, ty_Float) -> new_esEs25(vwx3002, vwx4002) new_lt22(vwx61, vwx64, ty_Char) -> new_lt18(vwx61, vwx64) new_ltEs12(vwx36, vwx37) -> new_fsEs(new_compare27(vwx36, vwx37)) new_ltEs10(Just(vwx360), Nothing, dda) -> False new_lt20(vwx360, vwx370, app(ty_[], fb)) -> new_lt8(vwx360, vwx370, fb) new_ltEs10(Nothing, Nothing, dda) -> True new_lt23(vwx74, vwx76, ty_Float) -> new_lt14(vwx74, vwx76) new_esEs8(vwx300, vwx400, ty_Integer) -> new_esEs14(vwx300, vwx400) new_esEs19(:%(vwx3000, vwx3001), :%(vwx4000, vwx4001), fah) -> new_asAs(new_esEs38(vwx3000, vwx4000, fah), new_esEs37(vwx3001, vwx4001, fah)) new_esEs7(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_ltEs20(vwx362, vwx372, ty_Bool) -> new_ltEs11(vwx362, vwx372) new_esEs12(LT, GT) -> False new_esEs12(GT, LT) -> False new_esEs17(Left(vwx3000), Left(vwx4000), ty_Integer, fag) -> new_esEs14(vwx3000, vwx4000) new_esEs9(vwx302, vwx402, ty_Bool) -> new_esEs13(vwx302, vwx402) new_esEs17(Left(vwx3000), Left(vwx4000), app(app(ty_@2, fcb), fcc), fag) -> new_esEs20(vwx3000, vwx4000, fcb, fcc) new_esEs35(vwx62, vwx65, app(app(ty_Either, cah), cba)) -> new_esEs17(vwx62, vwx65, cah, cba) new_lt12(vwx361, vwx371, app(ty_Ratio, ehf)) -> new_lt5(vwx361, vwx371, ehf) new_esEs35(vwx62, vwx65, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs24(vwx62, vwx65, cbb, cbc, cbd) new_lt20(vwx360, vwx370, app(ty_Maybe, fc)) -> new_lt15(vwx360, vwx370, fc) new_esEs35(vwx62, vwx65, ty_Double) -> new_esEs22(vwx62, vwx65) new_esEs17(Left(vwx3000), Left(vwx4000), app(app(ty_Either, fbg), fbh), fag) -> new_esEs17(vwx3000, vwx4000, fbg, fbh) new_esEs8(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_ltEs22(vwx63, vwx66, ty_Bool) -> new_ltEs11(vwx63, vwx66) new_esEs33(vwx360, vwx370, ty_Bool) -> new_esEs13(vwx360, vwx370) new_ltEs21(vwx361, vwx371, app(ty_[], ge)) -> new_ltEs8(vwx361, vwx371, ge) new_lt22(vwx61, vwx64, app(app(app(ty_@3, cde), cdf), cdg)) -> new_lt9(vwx61, vwx64, cde, cdf, cdg) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs6(vwx300, vwx400, ty_Bool) -> new_esEs13(vwx300, vwx400) new_compare30(vwx30, vwx40, app(app(app(ty_@3, bg), bh), ca)) -> new_compare17(vwx30, vwx40, bg, bh, ca) new_esEs26(vwx3001, vwx4001, app(app(ty_Either, cha), chb)) -> new_esEs17(vwx3001, vwx4001, cha, chb) new_ltEs22(vwx63, vwx66, app(app(app(ty_@3, ccd), cce), ccf)) -> new_ltEs13(vwx63, vwx66, ccd, cce, ccf) new_ltEs19(vwx43, vwx44, ty_Bool) -> new_ltEs11(vwx43, vwx44) new_lt11(vwx360, vwx370, ty_Integer) -> new_lt6(vwx360, vwx370) new_esEs10(vwx301, vwx401, app(ty_Ratio, dhh)) -> new_esEs19(vwx301, vwx401, dhh) new_esEs32(vwx361, vwx371, ty_Float) -> new_esEs25(vwx361, vwx371) new_esEs6(vwx300, vwx400, app(ty_Ratio, dbh)) -> new_esEs19(vwx300, vwx400, dbh) new_lt20(vwx360, vwx370, ty_Float) -> new_lt14(vwx360, vwx370) new_compare14(Right(vwx300), Left(vwx400), be, bf) -> GT new_esEs33(vwx360, vwx370, app(ty_Maybe, bdg)) -> new_esEs21(vwx360, vwx370, bdg) new_esEs17(Right(vwx3000), Right(vwx4000), faf, ty_Bool) -> new_esEs13(vwx3000, vwx4000) new_esEs10(vwx301, vwx401, ty_Bool) -> new_esEs13(vwx301, vwx401) new_esEs33(vwx360, vwx370, app(ty_Ratio, ehe)) -> new_esEs19(vwx360, vwx370, ehe) new_lt23(vwx74, vwx76, ty_Bool) -> new_lt10(vwx74, vwx76) new_esEs4(vwx301, vwx401, ty_@0) -> new_esEs18(vwx301, vwx401) new_esEs17(Left(vwx3000), Left(vwx4000), ty_Char, fag) -> new_esEs15(vwx3000, vwx4000) new_esEs5(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_ltEs15(LT, LT) -> True new_compare13(vwx139, vwx140, vwx141, vwx142, vwx143, vwx144, False, ddb, ddc, ddd) -> GT new_esEs23(vwx300, vwx400) -> new_primEqInt(vwx300, vwx400) new_esEs9(vwx302, vwx402, app(ty_Maybe, ech)) -> new_esEs21(vwx302, vwx402, ech) new_ltEs5(Right(vwx360), Right(vwx370), bbh, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs13(vwx360, vwx370, bcg, bch, bda) new_esEs5(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_esEs26(vwx3001, vwx4001, ty_Double) -> new_esEs22(vwx3001, vwx4001) new_esEs8(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs35(vwx62, vwx65, ty_Char) -> new_esEs15(vwx62, vwx65) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs11(vwx300, vwx400, ty_Char) -> new_esEs15(vwx300, vwx400) new_ltEs21(vwx361, vwx371, app(app(ty_Either, gg), gh)) -> new_ltEs5(vwx361, vwx371, gg, gh) new_ltEs21(vwx361, vwx371, app(ty_Maybe, gf)) -> new_ltEs10(vwx361, vwx371, gf) new_esEs24(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), edd, ede, edf) -> new_asAs(new_esEs31(vwx3000, vwx4000, edd), new_asAs(new_esEs30(vwx3001, vwx4001, ede), new_esEs29(vwx3002, vwx4002, edf))) new_ltEs22(vwx63, vwx66, app(app(ty_Either, ccb), ccc)) -> new_ltEs5(vwx63, vwx66, ccb, ccc) new_esEs7(vwx300, vwx400, ty_Bool) -> new_esEs13(vwx300, vwx400) new_lt21(vwx62, vwx65, ty_Float) -> new_lt14(vwx62, vwx65) new_esEs34(vwx360, vwx370, ty_Char) -> new_esEs15(vwx360, vwx370) new_esEs6(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_primCmpNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primCmpNat0(vwx3000, vwx4000) new_compare10(Just(vwx300), Nothing, bd) -> GT new_lt12(vwx361, vwx371, ty_Double) -> new_lt19(vwx361, vwx371) new_lt13(vwx74, vwx76, cb, cc) -> new_esEs12(new_compare28(vwx74, vwx76, cb, cc), LT) new_lt11(vwx360, vwx370, app(ty_[], bdf)) -> new_lt8(vwx360, vwx370, bdf) new_lt20(vwx360, vwx370, ty_@0) -> new_lt16(vwx360, vwx370) new_esEs9(vwx302, vwx402, ty_Char) -> new_esEs15(vwx302, vwx402) new_lt12(vwx361, vwx371, ty_Bool) -> new_lt10(vwx361, vwx371) new_compare8(EQ, EQ) -> EQ new_esEs11(vwx300, vwx400, app(ty_Maybe, cfh)) -> new_esEs21(vwx300, vwx400, cfh) new_esEs31(vwx3000, vwx4000, ty_Ordering) -> new_esEs12(vwx3000, vwx4000) new_ltEs20(vwx362, vwx372, app(ty_Maybe, bgb)) -> new_ltEs10(vwx362, vwx372, bgb) new_compare29(vwx74, vwx75, vwx76, vwx77, True, de, cd) -> EQ new_lt22(vwx61, vwx64, ty_Float) -> new_lt14(vwx61, vwx64) new_ltEs23(vwx50, vwx51, ty_Ordering) -> new_ltEs15(vwx50, vwx51) new_esEs7(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs10(vwx301, vwx401, ty_Char) -> new_esEs15(vwx301, vwx401) new_esEs16(:(vwx3000, vwx3001), [], fae) -> False new_esEs16([], :(vwx4000, vwx4001), fae) -> False new_compare15(vwx104, vwx105, False, fec, fed) -> GT new_compare29(vwx74, vwx75, vwx76, vwx77, False, de, cd) -> new_compare110(vwx74, vwx75, vwx76, vwx77, new_lt23(vwx74, vwx76, de), new_asAs(new_esEs40(vwx74, vwx76, de), new_ltEs24(vwx75, vwx77, cd)), de, cd) new_esEs17(Right(vwx3000), Right(vwx4000), faf, app(app(ty_Either, fda), fdb)) -> new_esEs17(vwx3000, vwx4000, fda, fdb) new_ltEs24(vwx75, vwx77, app(app(ty_@2, df), dg)) -> new_ltEs7(vwx75, vwx77, df, dg) new_esEs26(vwx3001, vwx4001, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs24(vwx3001, vwx4001, chg, chh, daa) new_esEs8(vwx300, vwx400, ty_Bool) -> new_esEs13(vwx300, vwx400) new_esEs33(vwx360, vwx370, ty_Char) -> new_esEs15(vwx360, vwx370) new_lt20(vwx360, vwx370, ty_Char) -> new_lt18(vwx360, vwx370) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs21(vwx361, vwx371, ty_Int) -> new_ltEs16(vwx361, vwx371) new_lt11(vwx360, vwx370, app(app(app(ty_@3, beb), bec), bed)) -> new_lt9(vwx360, vwx370, beb, bec, bed) new_ltEs5(Right(vwx360), Right(vwx370), bbh, app(app(ty_@2, bca), bcb)) -> new_ltEs7(vwx360, vwx370, bca, bcb) new_esEs7(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_lt11(vwx360, vwx370, ty_Double) -> new_lt19(vwx360, vwx370) new_esEs35(vwx62, vwx65, app(ty_Maybe, cag)) -> new_esEs21(vwx62, vwx65, cag) new_compare31(Float(vwx300, Pos(vwx3010)), Float(vwx400, Neg(vwx4010))) -> new_compare6(new_sr(vwx300, Pos(vwx4010)), new_sr(Neg(vwx3010), vwx400)) new_compare31(Float(vwx300, Neg(vwx3010)), Float(vwx400, Pos(vwx4010))) -> new_compare6(new_sr(vwx300, Neg(vwx4010)), new_sr(Pos(vwx3010), vwx400)) new_lt21(vwx62, vwx65, ty_Ordering) -> new_lt7(vwx62, vwx65) new_esEs36(vwx61, vwx64, app(app(ty_Either, cdc), cdd)) -> new_esEs17(vwx61, vwx64, cdc, cdd) new_compare30(vwx30, vwx40, ty_Char) -> new_compare18(vwx30, vwx40) new_lt21(vwx62, vwx65, ty_@0) -> new_lt16(vwx62, vwx65) new_ltEs22(vwx63, vwx66, ty_Int) -> new_ltEs16(vwx63, vwx66) new_esEs17(Right(vwx3000), Right(vwx4000), faf, ty_Float) -> new_esEs25(vwx3000, vwx4000) new_lt23(vwx74, vwx76, app(app(app(ty_@3, db), dc), dd)) -> new_lt9(vwx74, vwx76, db, dc, dd) new_compare25(vwx43, vwx44, False, dhc, bhb) -> new_compare15(vwx43, vwx44, new_ltEs19(vwx43, vwx44, dhc), dhc, bhb) new_esEs32(vwx361, vwx371, ty_Bool) -> new_esEs13(vwx361, vwx371) new_primEqNat0(Zero, Zero) -> True new_esEs15(Char(vwx3000), Char(vwx4000)) -> new_primEqNat0(vwx3000, vwx4000) new_esEs30(vwx3001, vwx4001, ty_Ordering) -> new_esEs12(vwx3001, vwx4001) new_lt21(vwx62, vwx65, app(ty_[], caf)) -> new_lt8(vwx62, vwx65, caf) new_lt21(vwx62, vwx65, ty_Char) -> new_lt18(vwx62, vwx65) new_esEs11(vwx300, vwx400, ty_Integer) -> new_esEs14(vwx300, vwx400) new_compare30(vwx30, vwx40, ty_Double) -> new_compare16(vwx30, vwx40) new_ltEs5(Right(vwx360), Right(vwx370), bbh, ty_Integer) -> new_ltEs4(vwx360, vwx370) new_asAs(False, vwx92) -> False new_esEs31(vwx3000, vwx4000, ty_Float) -> new_esEs25(vwx3000, vwx4000) new_esEs21(Just(vwx3000), Just(vwx4000), app(app(ty_Either, eba), ebb)) -> new_esEs17(vwx3000, vwx4000, eba, ebb) new_esEs21(Just(vwx3000), Just(vwx4000), ty_Double) -> new_esEs22(vwx3000, vwx4000) new_ltEs17(vwx36, vwx37) -> new_fsEs(new_compare16(vwx36, vwx37)) new_lt12(vwx361, vwx371, app(app(app(ty_@3, bfd), bfe), bff)) -> new_lt9(vwx361, vwx371, bfd, bfe, bff) new_esEs34(vwx360, vwx370, app(ty_Maybe, fc)) -> new_esEs21(vwx360, vwx370, fc) new_lt21(vwx62, vwx65, ty_Integer) -> new_lt6(vwx62, vwx65) new_ltEs5(Left(vwx360), Left(vwx370), app(app(ty_@2, baf), bag), bah) -> new_ltEs7(vwx360, vwx370, baf, bag) new_ltEs24(vwx75, vwx77, ty_@0) -> new_ltEs12(vwx75, vwx77) new_esEs14(Integer(vwx3000), Integer(vwx4000)) -> new_primEqInt(vwx3000, vwx4000) new_esEs6(vwx300, vwx400, ty_Ordering) -> new_esEs12(vwx300, vwx400) new_compare30(vwx30, vwx40, ty_Bool) -> new_compare19(vwx30, vwx40) new_esEs17(Right(vwx3000), Right(vwx4000), faf, ty_Ordering) -> new_esEs12(vwx3000, vwx4000) new_esEs9(vwx302, vwx402, ty_Integer) -> new_esEs14(vwx302, vwx402) new_esEs32(vwx361, vwx371, ty_Int) -> new_esEs23(vwx361, vwx371) new_esEs34(vwx360, vwx370, app(ty_[], fb)) -> new_esEs16(vwx360, vwx370, fb) new_esEs17(Right(vwx3000), Right(vwx4000), faf, app(app(ty_@2, fdd), fde)) -> new_esEs20(vwx3000, vwx4000, fdd, fde) new_esEs17(Right(vwx3000), Right(vwx4000), faf, app(ty_Maybe, fdf)) -> new_esEs21(vwx3000, vwx4000, fdf) new_ltEs24(vwx75, vwx77, ty_Ordering) -> new_ltEs15(vwx75, vwx77) new_esEs11(vwx300, vwx400, app(ty_[], cfb)) -> new_esEs16(vwx300, vwx400, cfb) new_ltEs24(vwx75, vwx77, ty_Char) -> new_ltEs14(vwx75, vwx77) new_ltEs21(vwx361, vwx371, ty_Bool) -> new_ltEs11(vwx361, vwx371) The set Q consists of the following terms: new_compare10(Just(x0), Just(x1), x2) new_esEs21(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Integer) new_esEs17(Left(x0), Left(x1), ty_@0, x2) new_lt20(x0, x1, ty_Ordering) new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Integer) new_ltEs10(Just(x0), Just(x1), ty_@0) new_compare26(x0, x1, False, x2, x3) new_ltEs21(x0, x1, ty_@0) new_lt23(x0, x1, ty_Char) new_lt22(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_compare8(LT, GT) new_compare8(GT, LT) new_esEs12(EQ, EQ) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Double) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare28(@2(x0, x1), @2(x2, x3), x4, x5) new_lt11(x0, x1, ty_Integer) new_esEs40(x0, x1, ty_Float) new_lt23(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Bool) new_lt21(x0, x1, ty_Char) new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Float) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt22(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs33(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Integer) new_esEs8(x0, x1, app(ty_[], x2)) new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_@0) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(Just(x0), Just(x1), ty_Bool) new_compare111(x0, x1, x2, x3, False, x4, x5) new_lt20(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs5(x0, x1, ty_Float) new_ltEs16(x0, x1) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Ordering) new_esEs17(Right(x0), Right(x1), x2, ty_Float) new_esEs29(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Float) new_esEs11(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Left(x0), Left(x1), ty_Bool, x2) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Bool) new_lt17(x0, x1, x2, x3) new_compare13(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs39(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_compare30(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Bool) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Char) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1, ty_Integer) new_lt11(x0, x1, ty_Bool) new_lt23(x0, x1, ty_@0) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt11(x0, x1, ty_Float) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_[], x2)) new_ltEs11(True, True) new_esEs33(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, ty_Integer) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Float) new_compare17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs8(x0, x1, x2) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Double) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Int) new_lt15(x0, x1, x2) new_compare10(Nothing, Nothing, x0) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Right(x0), Right(x1), x2, ty_Bool) new_ltEs12(x0, x1) new_esEs32(x0, x1, ty_@0) new_lt22(x0, x1, ty_Int) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs17(Left(x0), Left(x1), ty_Char, x2) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_compare0([], :(x0, x1), x2) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare8(EQ, EQ) new_ltEs22(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, Succ(x0)) new_esEs12(LT, GT) new_esEs12(GT, LT) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Bool) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Bool) new_compare11(x0, x1, True, x2) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Float) new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs17(Left(x0), Left(x1), ty_Int, x2) new_lt12(x0, x1, app(ty_Maybe, x2)) new_lt9(x0, x1, x2, x3, x4) new_esEs17(Left(x0), Right(x1), x2, x3) new_esEs17(Right(x0), Left(x1), x2, x3) new_esEs11(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Char) new_ltEs22(x0, x1, ty_Float) new_ltEs4(x0, x1) new_ltEs24(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare8(EQ, GT) new_compare8(GT, EQ) new_lt11(x0, x1, ty_@0) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs15(EQ, EQ) new_lt23(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Ordering) new_ltEs18(x0, x1, ty_Double) new_compare0([], [], x0) new_compare10(Nothing, Just(x0), x1) new_compare26(x0, x1, True, x2, x3) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Just(x0), Just(x1), ty_Int) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Int) new_lt11(x0, x1, ty_Char) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Double) new_primCompAux0(x0, EQ) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_lt23(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Double) new_lt6(x0, x1) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(x0, x1, True, x2, x3) new_ltEs10(Just(x0), Just(x1), ty_Float) new_esEs34(x0, x1, ty_Double) new_primCmpNat0(Zero, Succ(x0)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt22(x0, x1, ty_Bool) new_ltEs5(Left(x0), Left(x1), ty_Double, x2) new_esEs17(Right(x0), Right(x1), x2, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, True, x4, x5) new_esEs28(EQ) new_ltEs23(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs9(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Char) new_lt20(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs8(x0, x1, ty_Char) new_esEs32(x0, x1, ty_Int) new_ltEs10(Just(x0), Just(x1), ty_Ordering) new_esEs27(x0, x1, ty_Double) new_esEs21(Just(x0), Just(x1), ty_Ordering) new_ltEs23(x0, x1, ty_Ordering) new_esEs21(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Integer(x0), Integer(x1)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs9(x0, x1, ty_Bool) new_ltEs6(x0, x1, x2) new_esEs12(GT, GT) new_lt14(x0, x1) new_esEs12(LT, EQ) new_esEs12(EQ, LT) new_esEs29(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt7(x0, x1) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_compare30(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Double) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_esEs31(x0, x1, ty_Char) new_esEs7(x0, x1, ty_@0) new_esEs20(@2(x0, x1), @2(x2, x3), x4, x5) new_lt12(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Double) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_@0) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, ty_@0) new_ltEs10(Just(x0), Just(x1), ty_Int) new_compare19(False, False) new_esEs40(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Float) new_compare19(True, True) new_esEs21(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Float) new_esEs21(Just(x0), Just(x1), ty_Char) new_lt11(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs19(x0, x1, ty_Float) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs31(x0, x1, ty_Bool) new_compare29(x0, x1, x2, x3, True, x4, x5) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_@0) new_esEs39(x0, x1, ty_Ordering) new_lt21(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs30(x0, x1, ty_@0) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs10(Just(x0), Just(x1), ty_Char) new_sr(x0, x1) new_compare30(x0, x1, app(ty_Maybe, x2)) new_esEs13(False, True) new_esEs13(True, False) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Bool) new_ltEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs31(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(ty_[], x2)) new_lt12(x0, x1, ty_Int) new_lt13(x0, x1, x2, x3) new_esEs17(Left(x0), Left(x1), ty_Integer, x2) new_lt21(x0, x1, ty_@0) new_ltEs10(Just(x0), Just(x1), ty_Integer) new_ltEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs10(Nothing, Nothing, x0) new_compare24(x0, x1, True, x2) new_esEs5(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt19(x0, x1) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt12(x0, x1, ty_Char) new_esEs16([], [], x0) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Double) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_lt12(x0, x1, ty_Float) new_esEs6(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare6(x0, x1) new_esEs17(Right(x0), Right(x1), x2, ty_Bool) new_esEs21(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs14(x0, x1) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux0(x0, LT) new_esEs26(x0, x1, ty_Char) new_lt21(x0, x1, ty_Double) new_pePe(True, x0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs23(x0, x1, ty_Int) new_esEs23(x0, x1) new_ltEs24(x0, x1, ty_@0) new_esEs27(x0, x1, app(ty_[], x2)) new_lt11(x0, x1, ty_Ordering) new_esEs21(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Integer) new_esEs28(LT) new_ltEs11(False, True) new_ltEs11(True, False) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt23(x0, x1, app(ty_Maybe, x2)) new_compare13(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs5(Left(x0), Right(x1), x2, x3) new_esEs38(x0, x1, ty_Integer) new_ltEs5(Right(x0), Left(x1), x2, x3) new_ltEs20(x0, x1, ty_Float) new_lt22(x0, x1, app(ty_[], x2)) new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) new_compare27(@0, @0) new_esEs17(Right(x0), Right(x1), x2, ty_Char) new_asAs(True, x0) new_ltEs23(x0, x1, ty_Char) new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt12(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(Left(x0), Right(x1), x2, x3) new_compare14(Right(x0), Left(x1), x2, x3) new_esEs34(x0, x1, ty_@0) new_lt23(x0, x1, app(ty_Ratio, x2)) new_lt11(x0, x1, app(ty_Maybe, x2)) new_compare15(x0, x1, False, x2, x3) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Just(x0), Just(x1), ty_Integer) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primPlusNat0(Succ(x0), Zero) new_esEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs40(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Ordering) new_ltEs5(Left(x0), Left(x1), ty_@0, x2) new_ltEs10(Just(x0), Nothing, x1) new_primMulNat0(Zero, Succ(x0)) new_esEs36(x0, x1, ty_@0) new_esEs4(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs4(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Bool) new_ltEs5(Left(x0), Left(x1), ty_Bool, x2) new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Double) new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Double) new_ltEs18(x0, x1, ty_@0) new_ltEs17(x0, x1) new_esEs9(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Integer) new_ltEs5(Right(x0), Right(x1), x2, ty_Double) new_lt12(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Char) new_ltEs5(Right(x0), Right(x1), x2, ty_Ordering) new_lt5(x0, x1, x2) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_@0) new_esEs21(Just(x0), Just(x1), ty_Bool) new_esEs39(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Integer) new_esEs9(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_compare25(x0, x1, True, x2, x3) new_esEs11(x0, x1, ty_Ordering) new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt23(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, ty_Double) new_compare30(x0, x1, ty_@0) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs9(x0, x1) new_esEs7(x0, x1, ty_Double) new_esEs30(x0, x1, ty_Int) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Integer) new_lt12(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, ty_Int) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_compare8(LT, LT) new_compare31(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt21(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Float) new_primPlusNat1(Succ(x0), x1) new_primPlusNat0(Zero, Zero) new_esEs37(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Ordering) new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare112(x0, x1, False, x2, x3) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_compare31(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare30(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Int) new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_not(True) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux1(x0, x1, x2, x3) new_ltEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs12(EQ, GT) new_esEs12(GT, EQ) new_esEs11(x0, x1, ty_Int) new_compare8(GT, GT) new_compare30(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare31(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare8(LT, EQ) new_compare8(EQ, LT) new_esEs16(:(x0, x1), :(x2, x3), x4) new_lt11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Int) new_compare30(x0, x1, ty_Double) new_lt23(x0, x1, app(ty_[], x2)) new_ltEs15(GT, EQ) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(EQ, GT) new_esEs13(True, True) new_esEs5(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs5(Left(x0), Left(x1), ty_Integer, x2) new_esEs11(x0, x1, ty_Char) new_lt11(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Double) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Double) new_esEs35(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Char) new_esEs36(x0, x1, ty_Bool) new_compare7(Integer(x0), Integer(x1)) new_compare18(Char(x0), Char(x1)) new_compare14(Right(x0), Right(x1), x2, x3) new_compare112(x0, x1, True, x2, x3) new_lt12(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Just(x0), Just(x1), ty_Float) new_esEs36(x0, x1, ty_Double) new_lt11(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, ty_@0) new_compare29(x0, x1, x2, x3, False, x4, x5) new_fsEs(x0) new_esEs22(Double(x0, x1), Double(x2, x3)) new_esEs5(x0, x1, ty_Char) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Char) new_ltEs5(Left(x0), Left(x1), ty_Ordering, x2) new_esEs26(x0, x1, ty_Ordering) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_ltEs24(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Double) new_esEs12(LT, LT) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_lt18(x0, x1) new_esEs31(x0, x1, ty_Ordering) new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Float) new_esEs10(x0, x1, ty_@0) new_lt22(x0, x1, ty_Float) new_ltEs10(Nothing, Just(x0), x1) new_primCmpNat0(Succ(x0), Zero) new_ltEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs18(x0, x1, ty_Char) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Bool) new_lt12(x0, x1, ty_Ordering) new_esEs15(Char(x0), Char(x1)) new_esEs10(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Bool) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt22(x0, x1, ty_@0) new_lt21(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Int) new_ltEs10(Just(x0), Just(x1), ty_Double) new_primEqNat0(Succ(x0), Zero) new_lt20(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_Bool) new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs40(x0, x1, app(ty_[], x2)) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Float) new_esEs16(:(x0, x1), [], x2) new_ltEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs35(x0, x1, ty_Int) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs21(Just(x0), Just(x1), app(ty_[], x2)) new_esEs17(Left(x0), Left(x1), ty_Float, x2) new_ltEs22(x0, x1, ty_Ordering) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primEqNat0(Zero, Succ(x0)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_lt4(x0, x1) new_ltEs21(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Float) new_compare25(x0, x1, False, x2, x3) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(Left(x0), Left(x1), ty_Float, x2) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_sr0(Integer(x0), Integer(x1)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs17(Left(x0), Left(x1), ty_Double, x2) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs22(x0, x1, ty_Int) new_compare14(Left(x0), Left(x1), x2, x3) new_ltEs22(x0, x1, ty_Char) new_pePe(False, x0) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt11(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs21(Just(x0), Just(x1), ty_Double) new_asAs(False, x0) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs5(Right(x0), Right(x1), x2, ty_Char) new_lt16(x0, x1) new_ltEs24(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Int) new_esEs9(x0, x1, ty_@0) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_compare24(x0, x1, False, x2) new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(GT, GT) new_esEs6(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Integer) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Int) new_esEs25(Float(x0, x1), Float(x2, x3)) new_esEs34(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Char) new_esEs27(x0, x1, ty_Ordering) new_esEs18(@0, @0) new_esEs4(x0, x1, ty_Bool) new_ltEs11(False, False) new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt10(x0, x1) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_lt8(x0, x1, x2) new_esEs36(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Double) new_primEqNat0(Zero, Zero) new_esEs13(False, False) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs37(x0, x1, ty_Int) new_ltEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Char) new_not(False) new_esEs24(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Char) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Just(x0), Nothing, x1) new_esEs28(GT) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare11(x0, x1, False, x2) new_esEs7(x0, x1, ty_Bool) new_esEs34(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt12(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs27(x0, x1, ty_Integer) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Ordering) new_esEs17(Right(x0), Right(x1), x2, ty_@0) new_primMulNat0(Succ(x0), Zero) new_compare30(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Int) new_esEs32(x0, x1, ty_Ordering) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs15(LT, LT) new_compare10(Just(x0), Nothing, x1) new_esEs17(Right(x0), Right(x1), x2, ty_Double) new_esEs10(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Float) new_ltEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Char) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs40(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_esEs26(x0, x1, ty_Double) new_esEs31(x0, x1, ty_@0) new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs6(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_@0) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs21(Nothing, Just(x0), x1) new_ltEs22(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Integer) new_ltEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs35(x0, x1, ty_Ordering) new_esEs6(x0, x1, ty_Int) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_primCompAux0(x0, GT) new_lt20(x0, x1, ty_Float) new_lt12(x0, x1, ty_@0) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Bool) new_primCmpNat0(Zero, Zero) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Integer) new_compare19(True, False) new_ltEs23(x0, x1, ty_Double) new_compare19(False, True) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Bool) new_esEs21(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs16([], :(x0, x1), x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (19) 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_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, bdd, app(app(app(ty_@3, bge), bgf), bgg)) -> new_ltEs3(vwx362, vwx372, bge, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt0(vwx74, vwx76, cb, cc) -> new_compare1(vwx74, vwx76, cb, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_lt1(vwx74, vwx76, cf) -> new_compare3(vwx74, vwx76, cf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs1(Just(vwx360), Just(vwx370), app(app(app(ty_@3, bac), bad), bae)) -> new_ltEs3(vwx360, vwx370, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_lt3(vwx74, vwx76, db, dc, dd) -> new_compare5(vwx74, vwx76, db, dc, dd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_compare3(Just(vwx300), Just(vwx400), bd) -> new_compare20(vwx300, vwx400, new_esEs6(vwx300, vwx400, bd), bd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_primCompAux(Just(vwx300), Just(vwx400), vwx15, app(ty_Maybe, bd)) -> new_compare20(vwx300, vwx400, new_esEs6(vwx300, vwx400, bd), bd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, bdd, app(app(ty_@2, bfg), bfh)) -> new_ltEs(vwx362, vwx372, bfg, bfh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(Just(vwx360), Just(vwx370), app(app(ty_@2, he), hf)) -> new_ltEs(vwx360, vwx370, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(vwx36, vwx37, hd) -> new_compare(vwx36, vwx37, hd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, bdd, app(ty_Maybe, bgb)) -> new_ltEs1(vwx362, vwx372, bgb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(Just(vwx360), Just(vwx370), app(ty_Maybe, hh)) -> new_ltEs1(vwx360, vwx370, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare5(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bg, bh, ca) -> new_compare23(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs11(vwx300, vwx400, bg), new_asAs(new_esEs10(vwx301, vwx401, bh), new_esEs9(vwx302, vwx402, ca))), bg, bh, ca) 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(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), vwx15, app(app(app(ty_@3, bg), bh), ca)) -> new_compare23(vwx300, vwx301, vwx302, vwx400, vwx401, vwx402, new_asAs(new_esEs11(vwx300, vwx400, bg), new_asAs(new_esEs10(vwx301, vwx401, bh), new_esEs9(vwx302, vwx402, ca))), bg, bh, ca) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 4 > 8, 4 > 9, 4 > 10 *new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs3(vwx361, vwx371, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), app(ty_Maybe, fc), fa) -> new_lt1(vwx360, vwx370, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), gb, app(app(ty_@2, gc), gd)) -> new_ltEs(vwx361, vwx371, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), gb, app(ty_Maybe, gf)) -> new_ltEs1(vwx361, vwx371, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), app(app(app(ty_@3, fg), fh), ga), fa) -> new_lt3(vwx360, vwx370, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, bdd, app(app(ty_Either, bgc), bgd)) -> new_ltEs2(vwx362, vwx372, bgc, bgd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(Just(vwx360), Just(vwx370), app(app(ty_Either, baa), bab)) -> new_ltEs2(vwx360, vwx370, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(vwx360), Just(vwx370), app(ty_[], hg)) -> new_ltEs0(vwx360, vwx370, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), gb, app(app(ty_Either, gg), gh)) -> new_ltEs2(vwx361, vwx371, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(vwx74, vwx75, vwx76, vwx77, False, de, app(app(app(ty_@3, ed), ee), ef)) -> new_ltEs3(vwx75, vwx77, ed, ee, ef) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare2(vwx74, vwx75, vwx76, vwx77, False, de, app(app(ty_@2, df), dg)) -> new_ltEs(vwx75, vwx77, df, dg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare2(vwx74, vwx75, vwx76, vwx77, False, de, app(ty_Maybe, ea)) -> new_ltEs1(vwx75, vwx77, ea) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare2(vwx74, vwx75, vwx76, vwx77, False, de, app(app(ty_Either, eb), ec)) -> new_ltEs2(vwx75, vwx77, eb, ec) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare2(vwx74, vwx75, vwx76, vwx77, False, app(app(ty_@2, cb), cc), cd) -> new_compare1(vwx74, vwx76, cb, cc) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare1(@2(vwx300, vwx301), @2(vwx400, vwx401), ba, bb) -> new_compare2(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs5(vwx300, vwx400, ba), new_esEs4(vwx301, vwx401, bb)), ba, bb) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_primCompAux(@2(vwx300, vwx301), @2(vwx400, vwx401), vwx15, app(app(ty_@2, ba), bb)) -> new_compare2(vwx300, vwx301, vwx400, vwx401, new_asAs(new_esEs5(vwx300, vwx400, ba), new_esEs4(vwx301, vwx401, bb)), ba, bb) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 4 > 6, 4 > 7 *new_lt2(vwx74, vwx76, cg, da) -> new_compare4(vwx74, vwx76, cg, da) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_lt(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_primCompAux(vwx30, vwx40, new_compare0(vwx31, vwx41, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_compare(vwx31, vwx41, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_primCompAux(vwx30, vwx40, new_compare0(vwx31, vwx41, h), h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(vwx30, vwx31), :(vwx40, vwx41), h) -> new_compare(vwx31, vwx41, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, bdd, app(ty_[], bga)) -> new_ltEs0(vwx362, vwx372, bga) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), gb, app(ty_[], ge)) -> new_ltEs0(vwx361, vwx371, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(vwx74, vwx75, vwx76, vwx77, False, de, app(ty_[], dh)) -> new_ltEs0(vwx75, vwx77, dh) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare21(vwx43, vwx44, False, app(app(app(ty_@3, bhg), bhh), caa), bhb) -> new_ltEs3(vwx43, vwx44, bhg, bhh, caa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(vwx43, vwx44, False, app(app(ty_@2, bgh), bha), bhb) -> new_ltEs(vwx43, vwx44, bgh, bha) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(vwx43, vwx44, False, app(ty_Maybe, bhd), bhb) -> new_ltEs1(vwx43, vwx44, bhd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(vwx43, vwx44, False, app(app(ty_Either, bhe), bhf), bhb) -> new_ltEs2(vwx43, vwx44, bhe, bhf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare2(vwx74, vwx75, vwx76, vwx77, False, app(app(ty_Either, cg), da), cd) -> new_compare4(vwx74, vwx76, cg, da) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare21(vwx43, vwx44, False, app(ty_[], bhc), bhb) -> new_ltEs0(vwx43, vwx44, bhc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), app(ty_[], fb), fa) -> new_lt(vwx360, vwx370, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare2(vwx74, vwx75, vwx76, vwx77, False, app(ty_[], ce), cd) -> new_lt(vwx74, vwx76, ce) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare4(Left(vwx300), Left(vwx400), be, bf) -> new_compare21(vwx300, vwx400, new_esEs7(vwx300, vwx400, be), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_primCompAux(Left(vwx300), Left(vwx400), vwx15, app(app(ty_Either, be), bf)) -> new_compare21(vwx300, vwx400, new_esEs7(vwx300, vwx400, be), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), app(app(ty_Either, fd), ff), fa) -> new_lt2(vwx360, vwx370, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@2(vwx360, vwx361), @2(vwx370, vwx371), app(app(ty_@2, eg), eh), fa) -> new_lt0(vwx360, vwx370, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare4(Right(vwx300), Right(vwx400), be, bf) -> new_compare22(vwx300, vwx400, new_esEs8(vwx300, vwx400, bf), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_primCompAux(Right(vwx300), Right(vwx400), vwx15, app(app(ty_Either, be), bf)) -> new_compare22(vwx300, vwx400, new_esEs8(vwx300, vwx400, bf), be, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare22(vwx50, vwx51, False, cdh, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs3(vwx50, vwx51, ceg, ceh, cfa) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, cbe, app(app(app(ty_@3, ccd), cce), ccf)) -> new_ltEs3(vwx63, vwx66, ccd, cce, ccf) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare22(vwx50, vwx51, False, cdh, app(app(ty_@2, cea), ceb)) -> new_ltEs(vwx50, vwx51, cea, ceb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, cbe, app(app(ty_@2, cbf), cbg)) -> new_ltEs(vwx63, vwx66, cbf, cbg) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare22(vwx50, vwx51, False, cdh, app(ty_Maybe, ced)) -> new_ltEs1(vwx50, vwx51, ced) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, cbe, app(ty_Maybe, cca)) -> new_ltEs1(vwx63, vwx66, cca) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare22(vwx50, vwx51, False, cdh, app(app(ty_Either, cee), cef)) -> new_ltEs2(vwx50, vwx51, cee, cef) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, cbe, app(app(ty_Either, ccb), ccc)) -> new_ltEs2(vwx63, vwx66, ccb, ccc) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare22(vwx50, vwx51, False, cdh, app(ty_[], cec)) -> new_ltEs0(vwx50, vwx51, cec) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, cbe, app(ty_[], cbh)) -> new_ltEs0(vwx63, vwx66, cbh) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare2(vwx74, vwx75, vwx76, vwx77, False, app(ty_Maybe, cf), cd) -> new_compare3(vwx74, vwx76, cf) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare2(vwx74, vwx75, vwx76, vwx77, False, app(app(app(ty_@3, db), dc), dd), cd) -> new_compare5(vwx74, vwx76, db, dc, dd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare20(vwx36, vwx37, False, app(ty_[], hd)) -> new_compare(vwx36, vwx37, hd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vwx30, vwx40, vwx15, app(ty_[], bc)) -> new_compare(vwx30, vwx40, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), app(ty_Maybe, bdg), bdd, bde) -> new_lt1(vwx360, vwx370, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, app(ty_Maybe, bfa), bde) -> new_lt1(vwx361, vwx371, bfa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), app(app(app(ty_@3, beb), bec), bed), bdd, bde) -> new_lt3(vwx360, vwx370, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, app(app(app(ty_@3, bfd), bfe), bff), bde) -> new_lt3(vwx361, vwx371, bfd, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, app(ty_[], beh), bde) -> new_lt(vwx361, vwx371, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), app(ty_[], bdf), bdd, bde) -> new_lt(vwx360, vwx370, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), app(app(ty_Either, bdh), bea), bdd, bde) -> new_lt2(vwx360, vwx370, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, app(app(ty_Either, bfb), bfc), bde) -> new_lt2(vwx361, vwx371, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), app(app(ty_@2, bdb), bdc), bdd, bde) -> new_lt0(vwx360, vwx370, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), bee, app(app(ty_@2, bef), beg), bde) -> new_lt0(vwx361, vwx371, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Right(vwx360), Right(vwx370), bbh, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs3(vwx360, vwx370, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Left(vwx360), Left(vwx370), app(app(app(ty_@3, bbe), bbf), bbg), bah) -> new_ltEs3(vwx360, vwx370, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(Right(vwx360), Right(vwx370), bbh, app(app(ty_@2, bca), bcb)) -> new_ltEs(vwx360, vwx370, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(vwx360), Left(vwx370), app(app(ty_@2, baf), bag), bah) -> new_ltEs(vwx360, vwx370, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Right(vwx360), Right(vwx370), bbh, app(ty_Maybe, bcd)) -> new_ltEs1(vwx360, vwx370, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(vwx360), Left(vwx370), app(ty_Maybe, bbb), bah) -> new_ltEs1(vwx360, vwx370, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(vwx360), Right(vwx370), bbh, app(app(ty_Either, bce), bcf)) -> new_ltEs2(vwx360, vwx370, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(vwx360), Left(vwx370), app(app(ty_Either, bbc), bbd), bah) -> new_ltEs2(vwx360, vwx370, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Left(vwx360), Left(vwx370), app(ty_[], bba), bah) -> new_ltEs0(vwx360, vwx370, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(vwx360), Right(vwx370), bbh, app(ty_[], bcc)) -> new_ltEs0(vwx360, vwx370, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vwx360), Left(vwx370), False, app(app(ty_Either, app(app(app(ty_@3, bbe), bbf), bbg)), bah)) -> new_ltEs3(vwx360, vwx370, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(vwx360), Right(vwx370), False, app(app(ty_Either, bbh), app(app(app(ty_@3, bcg), bch), bda))) -> new_ltEs3(vwx360, vwx370, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), bdd), app(app(app(ty_@3, bge), bgf), bgg))) -> new_ltEs3(vwx362, vwx372, bge, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, gb), app(app(app(ty_@3, ha), hb), hc))) -> new_ltEs3(vwx361, vwx371, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(vwx360), Just(vwx370), False, app(ty_Maybe, app(app(app(ty_@3, bac), bad), bae))) -> new_ltEs3(vwx360, vwx370, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, app(ty_Maybe, bdg)), bdd), bde)) -> new_lt1(vwx360, vwx370, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), app(ty_Maybe, bfa)), bde)) -> new_lt1(vwx361, vwx371, bfa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, app(ty_Maybe, fc)), fa)) -> new_lt1(vwx360, vwx370, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, app(ty_Maybe, cdb), cbe, cae) -> new_lt1(vwx61, vwx64, cdb) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, app(ty_Maybe, cag), cae) -> new_lt1(vwx62, vwx65, cag) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare20(Right(vwx360), Right(vwx370), False, app(app(ty_Either, bbh), app(app(ty_@2, bca), bcb))) -> new_ltEs(vwx360, vwx370, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vwx360), Left(vwx370), False, app(app(ty_Either, app(app(ty_@2, baf), bag)), bah)) -> new_ltEs(vwx360, vwx370, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), bdd), app(app(ty_@2, bfg), bfh))) -> new_ltEs(vwx362, vwx372, bfg, bfh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vwx360), Just(vwx370), False, app(ty_Maybe, app(app(ty_@2, he), hf))) -> new_ltEs(vwx360, vwx370, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, gb), app(app(ty_@2, gc), gd))) -> new_ltEs(vwx361, vwx371, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, gb), app(ty_Maybe, gf))) -> new_ltEs1(vwx361, vwx371, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vwx360), Right(vwx370), False, app(app(ty_Either, bbh), app(ty_Maybe, bcd))) -> new_ltEs1(vwx360, vwx370, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), bdd), app(ty_Maybe, bgb))) -> new_ltEs1(vwx362, vwx372, bgb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vwx360), Just(vwx370), False, app(ty_Maybe, app(ty_Maybe, hh))) -> new_ltEs1(vwx360, vwx370, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vwx360), Left(vwx370), False, app(app(ty_Either, app(ty_Maybe, bbb)), bah)) -> new_ltEs1(vwx360, vwx370, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, app(app(app(ty_@3, beb), bec), bed)), bdd), bde)) -> new_lt3(vwx360, vwx370, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, app(app(app(ty_@3, fg), fh), ga)), fa)) -> new_lt3(vwx360, vwx370, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), app(app(app(ty_@3, bfd), bfe), bff)), bde)) -> new_lt3(vwx361, vwx371, bfd, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, app(app(app(ty_@3, cde), cdf), cdg), cbe, cae) -> new_lt3(vwx61, vwx64, cde, cdf, cdg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, app(app(app(ty_@3, cbb), cbc), cbd), cae) -> new_lt3(vwx62, vwx65, cbb, cbc, cbd) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare20(Right(vwx360), Right(vwx370), False, app(app(ty_Either, bbh), app(app(ty_Either, bce), bcf))) -> new_ltEs2(vwx360, vwx370, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, gb), app(app(ty_Either, gg), gh))) -> new_ltEs2(vwx361, vwx371, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), bdd), app(app(ty_Either, bgc), bgd))) -> new_ltEs2(vwx362, vwx372, bgc, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vwx360), Just(vwx370), False, app(ty_Maybe, app(app(ty_Either, baa), bab))) -> new_ltEs2(vwx360, vwx370, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vwx360), Left(vwx370), False, app(app(ty_Either, app(app(ty_Either, bbc), bbd)), bah)) -> new_ltEs2(vwx360, vwx370, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(vwx360), Right(vwx370), False, app(app(ty_Either, bbh), app(ty_[], bcc))) -> new_ltEs0(vwx360, vwx370, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), bdd), app(ty_[], bga))) -> new_ltEs0(vwx362, vwx372, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vwx360), Left(vwx370), False, app(app(ty_Either, app(ty_[], bba)), bah)) -> new_ltEs0(vwx360, vwx370, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vwx360), Just(vwx370), False, app(ty_Maybe, app(ty_[], hg))) -> new_ltEs0(vwx360, vwx370, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, gb), app(ty_[], ge))) -> new_ltEs0(vwx361, vwx371, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, app(ty_[], fb)), fa)) -> new_lt(vwx360, vwx370, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, app(ty_[], bdf)), bdd), bde)) -> new_lt(vwx360, vwx370, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), app(ty_[], beh)), bde)) -> new_lt(vwx361, vwx371, beh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, app(app(ty_Either, bdh), bea)), bdd), bde)) -> new_lt2(vwx360, vwx370, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, app(app(ty_Either, fd), ff)), fa)) -> new_lt2(vwx360, vwx370, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), app(app(ty_Either, bfb), bfc)), bde)) -> new_lt2(vwx361, vwx371, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, bee), app(app(ty_@2, bef), beg)), bde)) -> new_lt0(vwx361, vwx371, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx360, vwx361, vwx362), @3(vwx370, vwx371, vwx372), False, app(app(app(ty_@3, app(app(ty_@2, bdb), bdc)), bdd), bde)) -> new_lt0(vwx360, vwx370, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx360, vwx361), @2(vwx370, vwx371), False, app(app(ty_@2, app(app(ty_@2, eg), eh)), fa)) -> new_lt0(vwx360, vwx370, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, app(ty_[], caf), cae) -> new_lt(vwx62, vwx65, caf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, app(ty_[], cda), cbe, cae) -> new_lt(vwx61, vwx64, cda) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, app(app(ty_Either, cdc), cdd), cbe, cae) -> new_lt2(vwx61, vwx64, cdc, cdd) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, app(app(ty_Either, cah), cba), cae) -> new_lt2(vwx62, vwx65, cah, cba) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, app(app(ty_@2, ccg), cch), cbe, cae) -> new_lt0(vwx61, vwx64, ccg, cch) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare23(vwx61, vwx62, vwx63, vwx64, vwx65, vwx66, False, cab, app(app(ty_@2, cac), cad), cae) -> new_lt0(vwx62, vwx65, cac, cad) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(Just(vwx3000), Just(vwx4000), app(app(ty_@2, hg), hh)) -> new_esEs1(vwx3000, vwx4000, hg, hh) new_esEs0(Left(vwx3000), Left(vwx4000), app(app(ty_@2, cf), cg), cc) -> new_esEs1(vwx3000, vwx4000, cf, cg) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), eg, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs3(vwx3001, vwx4001, fg, fh, ga) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_Either, bdc), bdd), baf, bca) -> new_esEs0(vwx3000, vwx4000, bdc, bdd) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), eg, app(app(ty_Either, fa), fb)) -> new_esEs0(vwx3001, vwx4001, fa, fb) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, app(app(ty_Either, bcb), bcc), bca) -> new_esEs0(vwx3001, vwx4001, bcb, bcc) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_Either, gd), ge), gc) -> new_esEs0(vwx3000, vwx4000, gd, ge) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, baf, app(app(ty_Either, bah), bba)) -> new_esEs0(vwx3002, vwx4002, bah, bba) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_@2, bd), be)) -> new_esEs1(vwx3000, vwx4000, bd, be) new_esEs2(Just(vwx3000), Just(vwx4000), app(ty_[], hd)) -> new_esEs(vwx3000, vwx4000, hd) new_esEs0(Left(vwx3000), Left(vwx4000), app(ty_Maybe, da), cc) -> new_esEs2(vwx3000, vwx4000, da) new_esEs2(Just(vwx3000), Just(vwx4000), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx3000, vwx4000, bab, bac, bad) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(app(ty_@3, bdh), bea), beb), baf, bca) -> new_esEs3(vwx3000, vwx4000, bdh, bea, beb) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs3(vwx3000, vwx4000, bg, bh, ca) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_[], gb), gc) -> new_esEs(vwx3000, vwx4000, gb) new_esEs0(Right(vwx3000), Right(vwx4000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(vwx3000, vwx4000, dg, dh) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), h) -> new_esEs(vwx3001, vwx4001, h) new_esEs2(Just(vwx3000), Just(vwx4000), app(ty_Maybe, baa)) -> new_esEs2(vwx3000, vwx4000, baa) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_[], ba)) -> new_esEs(vwx3000, vwx4000, ba) new_esEs0(Right(vwx3000), Right(vwx4000), de, app(ty_[], df)) -> new_esEs(vwx3000, vwx4000, df) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vwx3002, vwx4002, bbe, bbf, bbg) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), eg, app(ty_Maybe, ff)) -> new_esEs2(vwx3001, vwx4001, ff) new_esEs0(Right(vwx3000), Right(vwx4000), de, app(ty_Maybe, ec)) -> new_esEs2(vwx3000, vwx4000, ec) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_Maybe, gh), gc) -> new_esEs2(vwx3000, vwx4000, gh) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_Maybe, bf)) -> new_esEs2(vwx3000, vwx4000, bf) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_@2, bde), bdf), baf, bca) -> new_esEs1(vwx3000, vwx4000, bde, bdf) new_esEs0(Left(vwx3000), Left(vwx4000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(vwx3000, vwx4000, cd, ce) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(app(ty_@3, ha), hb), hc), gc) -> new_esEs3(vwx3000, vwx4000, ha, hb, hc) new_esEs0(Left(vwx3000), Left(vwx4000), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(vwx3000, vwx4000, db, dc, dd) new_esEs2(Just(vwx3000), Just(vwx4000), app(app(ty_Either, he), hf)) -> new_esEs0(vwx3000, vwx4000, he, hf) new_esEs0(Right(vwx3000), Right(vwx4000), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx3000, vwx4000, ed, ee, ef) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, app(app(app(ty_@3, bcg), bch), bda), bca) -> new_esEs3(vwx3001, vwx4001, bcg, bch, bda) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, app(ty_[], bbh), bca) -> new_esEs(vwx3001, vwx4001, bbh) new_esEs0(Right(vwx3000), Right(vwx4000), de, app(app(ty_@2, ea), eb)) -> new_esEs1(vwx3000, vwx4000, ea, eb) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, app(app(ty_@2, bcd), bce), bca) -> new_esEs1(vwx3001, vwx4001, bcd, bce) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, baf, app(ty_[], bag)) -> new_esEs(vwx3002, vwx4002, bag) new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_Either, bb), bc)) -> new_esEs0(vwx3000, vwx4000, bb, bc) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_@2, gf), gg), gc) -> new_esEs1(vwx3000, vwx4000, gf, gg) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), eg, app(ty_[], eh)) -> new_esEs(vwx3001, vwx4001, eh) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, baf, app(ty_Maybe, bbd)) -> new_esEs2(vwx3002, vwx4002, bbd) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_[], bdb), baf, bca) -> new_esEs(vwx3000, vwx4000, bdb) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, baf, app(app(ty_@2, bbb), bbc)) -> new_esEs1(vwx3002, vwx4002, bbb, bbc) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_Maybe, bdg), baf, bca) -> new_esEs2(vwx3000, vwx4000, bdg) new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), eg, app(app(ty_@2, fc), fd)) -> new_esEs1(vwx3001, vwx4001, fc, fd) new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, app(ty_Maybe, bcf), bca) -> new_esEs2(vwx3001, vwx4001, bcf) new_esEs0(Left(vwx3000), Left(vwx4000), app(ty_[], cb), cc) -> new_esEs(vwx3000, vwx4000, cb) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (22) 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(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_Maybe, bf)) -> new_esEs2(vwx3000, vwx4000, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(vwx3000), Just(vwx4000), app(ty_Maybe, baa)) -> new_esEs2(vwx3000, vwx4000, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_Either, bb), bc)) -> new_esEs0(vwx3000, vwx4000, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx3000), Just(vwx4000), app(app(ty_Either, he), hf)) -> new_esEs0(vwx3000, vwx4000, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(ty_@2, bd), be)) -> new_esEs1(vwx3000, vwx4000, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx3000), Just(vwx4000), app(app(ty_@2, hg), hh)) -> new_esEs1(vwx3000, vwx4000, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(app(app(ty_@3, bg), bh), ca)) -> new_esEs3(vwx3000, vwx4000, bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vwx3000), Just(vwx4000), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx3000, vwx4000, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vwx3000), Just(vwx4000), app(ty_[], hd)) -> new_esEs(vwx3000, vwx4000, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), eg, app(ty_Maybe, ff)) -> new_esEs2(vwx3001, vwx4001, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_Maybe, gh), gc) -> new_esEs2(vwx3000, vwx4000, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), eg, app(app(ty_Either, fa), fb)) -> new_esEs0(vwx3001, vwx4001, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_Either, gd), ge), gc) -> new_esEs0(vwx3000, vwx4000, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(ty_@2, gf), gg), gc) -> new_esEs1(vwx3000, vwx4000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), eg, app(app(ty_@2, fc), fd)) -> new_esEs1(vwx3001, vwx4001, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), eg, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs3(vwx3001, vwx4001, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(app(app(ty_@3, ha), hb), hc), gc) -> new_esEs3(vwx3000, vwx4000, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), app(ty_[], gb), gc) -> new_esEs(vwx3000, vwx4000, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx3000, vwx3001), @2(vwx4000, vwx4001), eg, app(ty_[], eh)) -> new_esEs(vwx3001, vwx4001, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, baf, app(ty_Maybe, bbd)) -> new_esEs2(vwx3002, vwx4002, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_Maybe, bdg), baf, bca) -> new_esEs2(vwx3000, vwx4000, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, app(ty_Maybe, bcf), bca) -> new_esEs2(vwx3001, vwx4001, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(vwx3000), Left(vwx4000), app(ty_Maybe, da), cc) -> new_esEs2(vwx3000, vwx4000, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(vwx3000), Right(vwx4000), de, app(ty_Maybe, ec)) -> new_esEs2(vwx3000, vwx4000, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_Either, bdc), bdd), baf, bca) -> new_esEs0(vwx3000, vwx4000, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, app(app(ty_Either, bcb), bcc), bca) -> new_esEs0(vwx3001, vwx4001, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, baf, app(app(ty_Either, bah), bba)) -> new_esEs0(vwx3002, vwx4002, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(Right(vwx3000), Right(vwx4000), de, app(app(ty_Either, dg), dh)) -> new_esEs0(vwx3000, vwx4000, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(vwx3000), Left(vwx4000), app(app(ty_Either, cd), ce), cc) -> new_esEs0(vwx3000, vwx4000, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(ty_@2, bde), bdf), baf, bca) -> new_esEs1(vwx3000, vwx4000, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, app(app(ty_@2, bcd), bce), bca) -> new_esEs1(vwx3001, vwx4001, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, baf, app(app(ty_@2, bbb), bbc)) -> new_esEs1(vwx3002, vwx4002, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(app(app(ty_@3, bdh), bea), beb), baf, bca) -> new_esEs3(vwx3000, vwx4000, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vwx3002, vwx4002, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, app(app(app(ty_@3, bcg), bch), bda), bca) -> new_esEs3(vwx3001, vwx4001, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, app(ty_[], bbh), bca) -> new_esEs(vwx3001, vwx4001, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), bae, baf, app(ty_[], bag)) -> new_esEs(vwx3002, vwx4002, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx3000, vwx3001, vwx3002), @3(vwx4000, vwx4001, vwx4002), app(ty_[], bdb), baf, bca) -> new_esEs(vwx3000, vwx4000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Left(vwx3000), Left(vwx4000), app(app(ty_@2, cf), cg), cc) -> new_esEs1(vwx3000, vwx4000, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Right(vwx3000), Right(vwx4000), de, app(app(ty_@2, ea), eb)) -> new_esEs1(vwx3000, vwx4000, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(vwx3000), Left(vwx4000), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(vwx3000, vwx4000, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(vwx3000), Right(vwx4000), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx3000, vwx4000, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(Right(vwx3000), Right(vwx4000), de, app(ty_[], df)) -> new_esEs(vwx3000, vwx4000, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(vwx3000), Left(vwx4000), app(ty_[], cb), cc) -> new_esEs(vwx3000, vwx4000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), h) -> new_esEs(vwx3001, vwx4001, h) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(vwx3000, vwx3001), :(vwx4000, vwx4001), app(ty_[], ba)) -> new_esEs(vwx3000, vwx4000, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (23) YES ---------------------------------------- (24) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vwx30000), Succ(vwx40100)) -> new_primMulNat(vwx30000, Succ(vwx40100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (25) 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(vwx30000), Succ(vwx40100)) -> new_primMulNat(vwx30000, Succ(vwx40100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vwx30000), Succ(vwx40000)) -> new_primEqNat(vwx30000, vwx40000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (28) 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(vwx30000), Succ(vwx40000)) -> new_primEqNat(vwx30000, vwx40000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (29) YES ---------------------------------------- (30) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vwx15400), Succ(vwx401000)) -> new_primPlusNat(vwx15400, vwx401000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (31) 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(vwx15400), Succ(vwx401000)) -> new_primPlusNat(vwx15400, vwx401000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES