1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
|
interface Prelude where {
infixr 5 ++;
infix 4 `elem`;
infix 4 `notElem`;
infixl 9 !!;
infixl 7 Ratio.%;
infixr 0 $;
infixr 2 ||;
infixr 0 `seq`;
infixr 0 $!;
infixr 9 .;
infixr 8 ^;
infixr 8 ^^;
infixr 3 &&;
infixr 1 =<<;
infixl 1 >>;
infixl 1 >>=;
infixr 8 **;
infixl 7 /;
infixl 7 `quot`;
infixl 7 `rem`;
infixl 7 `div`;
infixl 7 `mod`;
infix 4 <=;
infix 4 <;
infix 4 >=;
infix 4 >;
prefix negate 6 -;
infixl 6 +;
infixl 7 *;
infix 4 ==;
infix 4 /=;
infixr 5 :;
{-# NEED #-}
instance Functor NHC.Internal.IO;
{-# NEED #-}
instance Functor Maybe;
{-# NEED #-}
instance Functor [];
{-# NEED #-}
instance Monad NHC.Internal.IO;
{-# NEED #-}
instance Monad Maybe;
{-# NEED #-}
instance Monad [];
{-# NEED #-}
instance Floating Float;
{-# NEED #-}
instance Floating Double;
{-# NEED #-}
instance RealFloat Float;
{-# NEED #-}
instance RealFloat Double;
{-# NEED #-}
instance Fractional Float;
{-# NEED #-}
instance Fractional Double;
{-# NEED #-}
instance RealFrac Float;
{-# NEED #-}
instance RealFrac Double;
{-# NEED #-}
instance (Read a) => Read (Maybe a);
{-# NEED #-}
instance (Read a,Read b) => Read (Either a b);
{-# NEED #-}
instance Read Integer;
{-# NEED #-}
instance Read Bool;
{-# NEED #-}
instance Read Float;
{-# NEED #-}
instance Read Double;
{-# NEED #-}
instance Read Int;
{-# NEED #-}
instance Read ();
{-# NEED #-}
instance (Read a) => Read [a];
{-# NEED #-}
instance Read Ordering;
{-# NEED #-}
instance Read Char;
{-# NEED #-}
instance Eq IOError;
{-# NEED #-}
instance (Eq a) => Eq (Maybe a);
{-# NEED #-}
instance (Eq a,Eq b) => Eq (Either a b);
{-# NEED #-}
instance Eq Integer;
{-# NEED #-}
instance Eq Bool;
{-# NEED #-}
instance Eq Float;
{-# NEED #-}
instance Eq Double;
{-# NEED #-}
instance Eq Int;
{-# NEED #-}
instance Eq ();
{-# NEED #-}
instance (Eq a) => Eq [a];
{-# NEED #-}
instance Eq Ordering;
{-# NEED #-}
instance Eq Char;
{-# NEED #-}
instance Num Integer;
{-# NEED #-}
instance Num Float;
{-# NEED #-}
instance Num Double;
{-# NEED #-}
instance Num Int;
{-# NEED #-}
instance (Ord a) => Ord (Maybe a);
{-# NEED #-}
instance (Ord a,Ord b) => Ord (Either a b);
{-# NEED #-}
instance Ord Integer;
{-# NEED #-}
instance Ord Bool;
{-# NEED #-}
instance Ord Float;
{-# NEED #-}
instance Ord Double;
{-# NEED #-}
instance Ord Int;
{-# NEED #-}
instance Ord ();
{-# NEED #-}
instance (Ord a) => Ord [a];
{-# NEED #-}
instance Ord Ordering;
{-# NEED #-}
instance Ord Char;
{-# NEED #-}
instance Integral Integer;
{-# NEED #-}
instance Integral Int;
{-# NEED #-}
instance Enum Integer;
{-# NEED #-}
instance Enum Bool;
{-# NEED #-}
instance Enum Float;
{-# NEED #-}
instance Enum Double;
{-# NEED #-}
instance Enum Int;
{-# NEED #-}
instance Enum ();
{-# NEED #-}
instance Enum Ordering;
{-# NEED #-}
instance Enum Char;
{-# NEED #-}
instance Real Integer;
{-# NEED #-}
instance Real Float;
{-# NEED #-}
instance Real Double;
{-# NEED #-}
instance Real Int;
{-# NEED #-}
instance (Show a) => Show (NHC.Internal.IO a);
{-# NEED #-}
instance Show IOError;
{-# NEED #-}
instance (Show a) => Show (Maybe a);
{-# NEED #-}
instance (Show a,Show b) => Show (Either a b);
{-# NEED #-}
instance Show Integer;
{-# NEED #-}
instance Show Bool;
{-# NEED #-}
instance Show Float;
{-# NEED #-}
instance Show Double;
{-# NEED #-}
instance Show Int;
{-# NEED #-}
instance Show ();
{-# NEED #-}
instance (Show a) => Show [a];
{-# NEED #-}
instance Show Ordering;
{-# NEED #-}
instance Show Char;
{-# NEED #-}
instance (Show a,Show b) => Show (a -> b);
{-# NEED #-}
instance Bounded Bool;
{-# NEED #-}
instance Bounded Int;
{-# NEED #-}
instance Bounded ();
{-# NEED #-}
instance Bounded Ordering;
{-# NEED #-}
instance Bounded Char;
{-# NEED #-}
instance (Integral a) => Fractional (Ratio.Ratio a);
{-# NEED #-}
instance (Integral a) => RealFrac (Ratio.Ratio a);
{-# NEED #-}
instance (Integral a) => Num (Ratio.Ratio a);
{-# NEED #-}
instance (Integral a) => Real (Ratio.Ratio a);
{-# NEED #-}
instance (Integral a) => Enum (Ratio.Ratio a);
{-# NEED #-}
instance (Integral a) => Show (Ratio.Ratio a);
{-# NEED #-}
instance (Integral a) => Ord (Ratio.Ratio a);
{-# NEED #-}
instance (Integral a) => Eq (Ratio.Ratio a);
{-# NEED #-}
instance (Read a,Integral a) => Read (Ratio.Ratio a);
interface NHC.Internal
{-# NEED World #-}
data World;
interface IO
{-# NEED SocketType #-}
data SocketType;
interface ! Prelude
{-# NEED uncurry #-}
uncurry{-# 2 #-}::((a -> (b -> c)) -> ((a,b) -> c));
{-# NEED curry #-}
curry{-# 3 #-}::(((a,b) -> c) -> (a -> (b -> c)));
{-# NEED _enumIndex #-}
_enumIndex{-# 3 #-}::(String -> ((a,a) -> (a -> Int)));
{-# NEED _readCon0 #-}
_readCon0{-# 3 #-}::(Bool -> (a -> (String -> (ReadS a))));
{-# NEED read #-}
read{-# 1 #-}::(Read a) => (String -> a);
{-# NEED showType #-}
showType{-# 1 #-}::(Show a) => (a -> String);
{-# NEED showString #-}
showString{-# 0 #-}::(String -> ShowS);
{-# NEED _readConArg #-}
_readConArg{-# 1 #-}::(Read a) => ((String -> [((a -> b),String)]) -> (ReadS b));
{-# NEED _readFinal #-}
_readFinal{-# 2 #-}::(String -> ((a -> [(b,String)]) -> (a -> [(b,String)])));
{-# NEED _readField #-}
_readField{-# 3 #-}::(Read a) => (String -> (String -> ((String -> [((a -> b),String)]) -> (ReadS b))));
{-# NEED readParen #-}
readParen{-# 2 #-}::(Bool -> ((ReadS a) -> (ReadS a)));
{-# NEED showParen #-}
showParen{-# 2 #-}::(Bool -> (ShowS -> ShowS));
{-# NEED _readCon #-}
_readCon{-# 2 #-}::(a -> (String -> (ReadS a)));
{-# NEED showChar #-}
showChar{-# 0 #-}::(Char -> ShowS);
{-# NEED reads #-}
reads{-# 0 #-}::(Read a) => (ReadS a);
{-# NEED shows #-}
shows{-# 0 #-}::(Show a) => (a -> ShowS);
{-# NEED lex #-}
lex{-# 1 #-}::(ReadS String);
{-# NEED _readConInfix #-}
_readConInfix{-# 6 #-}::(Read a,Read b) => (Int -> (Int -> (Int -> (Int -> ((a -> (b -> c)) -> (String -> (ReadS c)))))));
{-# NEED const #-}
const{-# 2 #-}::(a -> (b -> a));
{-# NEED foldl1 #-}
foldl1{-# 2 #-}::((a -> (a -> a)) -> ([a] -> a));
{-# NEED scanl1 #-}
scanl1{-# 2 #-}::((a -> (a -> a)) -> ([a] -> [a]));
{-# NEED foldr1 #-}
foldr1{-# 2 #-}::((a -> (a -> a)) -> ([a] -> a));
{-# NEED scanr1 #-}
scanr1{-# 2 #-}::((a -> (a -> a)) -> ([a] -> [a]));
{-# NEED zipWith3 #-}
zipWith3{-# 4 #-}::((a -> (b -> (c -> d))) -> ([a] -> ([b] -> ([c] -> [d]))));
{-# NEED zip3 #-}
zip3{-# 0 #-}::([a] -> ([b] -> ([c] -> [(a,b,c)])));
{-# NEED unzip3 #-}
unzip3{-# 0 #-}::([(a,b,c)] -> ([a],[b],[c]));
{-# NEED head #-}
head{-# 1 #-}::([a] -> a);
{-# NEED and #-}
and{-# 0 #-}::([Bool] -> Bool);
{-# NEED (++) #-}
(++){-# 2 #-}::([a] -> ([a] -> [a]));
{-# NEED take #-}
take{-# 2 #-}::(Int -> ([a] -> [a]));
{-# NEED cycle #-}
cycle{-# 1 #-}::([a] -> [a]);
{-# NEED takeWhile #-}
takeWhile{-# 2 #-}::((a -> Bool) -> ([a] -> [a]));
{-# NEED dropWhile #-}
dropWhile{-# 2 #-}::((a -> Bool) -> ([a] -> [a]));
{-# NEED reverse #-}
reverse{-# 0 #-}::([a] -> [a]);
{-# NEED replicate #-}
replicate{-# 2 #-}::(Int -> (a -> [a]));
{-# NEED iterate #-}
iterate{-# 2 #-}::((a -> a) -> (a -> [a]));
{-# NEED length #-}
length{-# 1 #-}::([a] -> Int);
{-# NEED zipWith #-}
zipWith{-# 3 #-}::((a -> (b -> c)) -> ([a] -> ([b] -> [c])));
{-# NEED break #-}
break{-# 1 #-}::((a -> Bool) -> ([a] -> ([a],[a])));
{-# NEED foldl #-}
foldl{-# 3 #-}::((a -> (b -> a)) -> (a -> ([b] -> a)));
{-# NEED tail #-}
tail{-# 1 #-}::([a] -> [a]);
{-# NEED all #-}
all{-# 1 #-}::((a -> Bool) -> ([a] -> Bool));
{-# NEED null #-}
null{-# 1 #-}::([a] -> Bool);
{-# NEED scanl #-}
scanl{-# 3 #-}::((a -> (b -> a)) -> (a -> ([b] -> [a])));
{-# NEED elem #-}
elem{-# 1 #-}::(Eq a) => (a -> ([a] -> Bool));
{-# NEED notElem #-}
notElem{-# 1 #-}::(Eq a) => (a -> ([a] -> Bool));
{-# NEED sum #-}
sum{-# 0 #-}::(Num a) => ([a] -> a);
{-# NEED minimum #-}
minimum{-# 1 #-}::(Ord a) => ([a] -> a);
{-# NEED maximum #-}
maximum{-# 1 #-}::(Ord a) => ([a] -> a);
{-# NEED gcd #-}
gcd{-# 2 #-}::(Integral a) => (a -> (a ->a));
{-# NEED lcm #-}
lcm{-# 2 #-}::(Integral a) => (a -> (a ->a));
{-# NEED span #-}
span{-# 2 #-}::((a -> Bool) -> ([a] -> ([a],[a])));
{-# NEED map #-}
map{-# 2 #-}::((a -> b) -> ([a] -> [b]));
{-# NEED concatMap #-}
concatMap{-# 1 #-}::((a -> [b]) -> ([a] -> [b]));
{-# NEED zip #-}
zip{-# 0 #-}::([a] -> ([b] -> [(a,b)]));
{-# NEED unzip #-}
unzip{-# 0 #-}::([(a,b)] -> ([a],[b]));
{-# NEED drop #-}
drop{-# 2 #-}::(Int -> ([a] -> [a]));
{-# NEED lookup #-}
lookup{-# 2 #-}::(Eq a) => (a -> ([(a,b)] -> (Maybe b)));
{-# NEED or #-}
or{-# 0 #-}::([Bool] -> Bool);
{-# NEED foldr #-}
foldr{-# 3 #-}::((a -> (b -> b)) -> (b -> ([a] -> b)));
{-# NEED filter #-}
filter{-# 2 #-}::((a -> Bool) -> ([a] -> [a]));
{-# NEED scanr #-}
scanr{-# 3 #-}::((a -> (b -> b)) -> (b -> ([a] -> [b])));
{-# NEED words #-}
words{-# 1 #-}::(String -> [String]);
{-# NEED unwords #-}
unwords{-# 1 #-}::([String] -> String);
{-# NEED lines #-}
lines{-# 1 #-}::(String -> [String]);
{-# NEED unlines #-}
unlines{-# 0 #-}::([String] -> String);
{-# NEED splitAt #-}
splitAt{-# 2 #-}::(Int -> ([a] -> ([a],[a])));
{-# NEED concat #-}
concat{-# 0 #-}::([[a]] -> [a]);
{-# NEED repeat #-}
repeat{-# 1 #-}::(a -> [a]);
{-# NEED product #-}
product{-# 0 #-}::(Num a) => ([a] -> a);
{-# NEED init #-}
init{-# 1 #-}::([a] -> [a]);
{-# NEED last #-}
last{-# 1 #-}::([a] -> a);
{-# NEED (!!) #-}
(!!){-# 2 #-}::([a] -> (Int -> a));
{-# NEED any #-}
any{-# 1 #-}::((a -> Bool) -> ([a] -> Bool));
{-# NEED fst #-}
fst{-# 1 #-}::((a,b) -> a);
{-# NEED not #-}
not{-# 1 #-}::(Bool -> Bool);
{-# NEED subtract #-}
subtract{-# 0 #-}::(Num a) => (a -> (a -> a));
{-# NEED error #-}
error{-# 1 #-}::(String -> a);
{-# NEED _filter #-}
_filter{-# 3 #-}::(Bool -> (([a] -> [a]) -> ([a] -> [a])));
{-# NEED either #-}
either{-# 3 #-}::((a -> b) -> ((c -> b) -> ((Either a c) -> b)));
{-# NEED _foldr #-}
_foldr{-# 3 #-}::((a -> (b -> b)) -> ([a] -> (b -> b)));
{-# NEED ($) #-}
($){-# 2 #-}::((a -> b) -> (a -> b));
{-# NEED (||) #-}
(||){-# 2 #-}::(Bool -> (Bool -> Bool));
{-# NEED seq #-}
seq{-# 2 #-}::(a -> (b -> b));
{-# NEED flip #-}
flip{-# 3 #-}::((a -> (b -> c)) -> (b -> (a -> c)));
{-# NEED _enumFromThenTo #-}
_enumFromThenTo{-# 3 #-}::(a -> (a -> (Int -> [a])));
{-# NEED _enumFromTo #-}
_enumFromTo{-# 2 #-}::(a -> (Int -> [a]));
{-# NEED _enumFromTo' #-}
_enumFromTo'{-# 2 #-}::(Int -> (Int -> [a]));
{-# NEED _seq #-}
_seq{-# 2 #-}::(a -> (b -> b));
{-# NEED _hGetStr #-}
_hGetStr{-# 1 #-}::(NHC.Internal.IO.Handle -> [Char]);
{-# NEED _hGetChar #-}
_hGetChar{-# 1 #-}::(NHC.Internal.IO.Handle -> Int);
{-# NEED _hPutChar #-}
_hPutChar{-# 2 #-}::(NHC.Internal.IO.Handle -> (Char -> (Either IOError ())));
interface IO
{-# NEED Handle #-}
newtype {-# #-} Handle;
interface ! Prelude
{-# NEED _eqInteger #-}
_eqInteger{-# 2 #-}::(Integer -> (Integer -> Bool));
{-# NEED _eqFloat #-}
_eqFloat{-# 2 #-}::(Float -> (Float -> Bool));
{-# NEED _eqDouble #-}
_eqDouble{-# 2 #-}::(Double -> (Double -> Bool));
{-# NEED _leInteger #-}
_leInteger{-# 2 #-}::(Integer -> (Integer -> Bool));
{-# NEED _subInteger #-}
_subInteger{-# 2 #-}::(Integer -> (Integer -> Integer));
{-# NEED even #-}
even{-# 1 #-}::(Integral a) => (a -> Bool);
{-# NEED numericEnumFromThen #-}
numericEnumFromThen{-# 2 #-}::(Fractional a) => (a -> (a -> [a]));
{-# NEED numericEnumFromThenTo #-}
numericEnumFromThenTo{-# 3 #-}::(Fractional a, Ord a) => (a -> (a -> (a -> [a])));
{-# NEED _enumFromThen #-}
_enumFromThen{-# 3 #-}::(a -> (a -> (Int -> [a])));
{-# NEED _toEnum #-}
_toEnum{-# 1 #-}::(Int -> a);
{-# NEED _fromEnum #-}
_fromEnum{-# 1 #-}::(a -> Int);
{-# NEED numericEnumFrom #-}
numericEnumFrom{-# 1 #-}::(Fractional a) => (a -> [a]);
{-# NEED numericEnumFromTo #-}
numericEnumFromTo{-# 2 #-}::(Fractional a, Ord a) => (a -> (a -> [a]));
{-# NEED until #-}
until{-# 3 #-}::((a -> Bool) -> ((a -> a) -> (a -> a)));
{-# NEED fromIntegral #-}
fromIntegral{-# 0 #-}::(Integral a,Num b) => (a -> b);
{-# NEED ($!) #-}
($!){-# 2 #-}::((a -> b) -> (a -> b));
{-# NEED asTypeOf #-}
asTypeOf{-# 0 #-}::(a -> (a -> a));
{-# NEED (.) #-}
(.){-# 2 #-}::((a -> b) -> ((c -> a) -> (c -> b)));
{-# NEED otherwise #-}
otherwise{-# 0 #-}::Bool;
{-# NEED (^) #-}
(^){-# 2 #-}::(Num a,Integral b) => (a -> (b -> a));
{-# NEED (^^) #-}
(^^){-# 2 #-}::(Fractional a,Integral b) => (a -> (b -> a));
{-# NEED _enumInRange #-}
_enumInRange{-# 2 #-}::((a,a) -> (a -> Bool));
{-# NEED _enumRange #-}
_enumRange{-# 1 #-}::((a,a) -> [a]);
{-# NEED sequence #-}
sequence{-# 0 #-}::(Monad a) => ([(a b)] -> (a [b]));
{-# NEED maybe #-}
maybe{-# 3 #-}::(a -> ((b -> a) -> ((Maybe b) -> a)));
{-# NEED snd #-}
snd{-# 1 #-}::((a,b) -> b);
{-# NEED (&&) #-}
(&&){-# 2 #-}::(Bool -> (Bool -> Bool));
{-# NEED undefined #-}
undefined{-# 0 #-}::a;
{-# NEED odd #-}
odd{-# 0 #-}::(Integral a) => (a -> Bool);
{-# NEED id #-}
id{-# 1 #-}::(a -> a);
{-# NEED _id #-}
_id{-# 1 #-}::(a -> a);
{-# NEED _enumFromToInc #-}
_enumFromToInc{-# 3 #-}::(Int -> (Int -> (Int -> [a])));
{-# NEED _enumFromToDec #-}
_enumFromToDec{-# 3 #-}::(Int -> (Int -> (Int -> [a])));
{-# NEED realToFrac #-}
realToFrac{-# 0 #-}::(Real a,Fractional b) => (a -> b);
{-# NEED sequence_ #-}
sequence_{-# 0 #-}::(Monad a) => ([(a b)] -> (a ()));
{-# NEED mapM_ #-}
mapM_{-# 2 #-}::(Monad b) => ((a -> (b c)) -> ([a] -> (b ())));
{-# NEED readIO #-}
readIO{-# 1 #-}::(Read a) => (String -> (NHC.Internal.IO a));
{-# NEED readFile #-}
readFile{-# 1 #-}::(FilePath -> (NHC.Internal.IO String));
{-# NEED appendFile #-}
appendFile{-# 2 #-}::(FilePath -> (String -> (NHC.Internal.IO ())));
{-# NEED writeFile #-}
writeFile{-# 2 #-}::(FilePath -> (String -> (NHC.Internal.IO ())));
{-# NEED FilePath #-}
type {-# 2 #-} FilePath = String;
{-# NEED getLine #-}
getLine{-# 0 #-}::(NHC.Internal.IO String);
{-# NEED catch #-}
catch{-# 2 #-}::((NHC.Internal.IO a) -> ((IOError -> (NHC.Internal.IO a)) -> (NHC.Internal.IO a)));
{-# NEED readLn #-}
readLn{-# 0 #-}::(Read a) => (NHC.Internal.IO a);
{-# NEED putStrLn #-}
putStrLn{-# 1 #-}::(String -> (NHC.Internal.IO ()));
{-# NEED getChar #-}
getChar{-# 0 #-}::(NHC.Internal.IO Char);
{-# NEED putChar #-}
putChar{-# 1 #-}::(Char -> (NHC.Internal.IO ()));
{-# NEED userError #-}
userError{-# 1 #-}::(String -> IOError);
{-# NEED putStr #-}
putStr{-# 0 #-}::(String -> (NHC.Internal.IO ()));
{-# NEED getContents #-}
getContents{-# 0 #-}::(NHC.Internal.IO [Char]);
{-# NEED interact #-}
interact{-# 1 #-}::((String -> String) -> (NHC.Internal.IO ()));
{-# NEED print #-}
print{-# 1 #-}::(Show a) => (a -> (NHC.Internal.IO ()));
{-# NEED (=<<) #-}
(=<<){-# 2 #-}::(Monad b) => ((a -> (b c)) -> ((b a) -> (b c)));
{-# NEED ioError #-}
ioError{-# 1 #-}::(IOError -> (NHC.Internal.IO a));
{-# NEED mapM #-}
mapM{-# 2 #-}::(Monad b) => ((a -> (b c)) -> ([a] -> (b [c])));
{-# NEED {Functor fmap} #-}
class Functor a where {
fmap{-# 2 #-}::((b -> c) -> ((a b) -> (a c)));
};
{-# NEED {Monad (>>) fail (>>=) return} #-}
class Monad a where {
(>>){-# 2 #-}::((a b) -> ((a c) -> (a c)));
fail{-# 1 #-}::(String -> (a b));
(>>=){-# 2 #-}::((a b) -> ((b -> (a c)) -> (a c)));
return{-# 1 #-}::(b -> (a b));
};
interface ! NHC.Internal
{-# NEED IO #-}
newtype {-# #-} IO a;
interface ! Prelude
{-# NEED IOError #-}
data IOError;
{-# NEED {Maybe Nothing Just} #-}
data Maybe a
= Nothing
| Just a;
{-# NEED {Either Left Right} #-}
data Either a b
= Left a
| Right b;
{-# NEED {(,,,,,,,,,,,,,,) (,,,,,,,,,,,,,,)} #-}
data (,,,,,,,,,,,,,,) a b c d e f g h i j k l m n o
= (,,,,,,,,,,,,,,) a b c d e f g h i j k l m n o;
{-# NEED {(,,,,,,,,,,,,,) (,,,,,,,,,,,,,)} #-}
data (,,,,,,,,,,,,,) a b c d e f g h i j k l m n
= (,,,,,,,,,,,,,) a b c d e f g h i j k l m n;
{-# NEED {(,,,,,,,,,,,,) (,,,,,,,,,,,,)} #-}
data (,,,,,,,,,,,,) a b c d e f g h i j k l m
= (,,,,,,,,,,,,) a b c d e f g h i j k l m;
{-# NEED {(,,,,,,,,,,,) (,,,,,,,,,,,)} #-}
data (,,,,,,,,,,,) a b c d e f g h i j k l
= (,,,,,,,,,,,) a b c d e f g h i j k l;
{-# NEED {(,,,,,,,,,,) (,,,,,,,,,,)} #-}
data (,,,,,,,,,,) a b c d e f g h i j k
= (,,,,,,,,,,) a b c d e f g h i j k;
{-# NEED {(,,,,,,,,,) (,,,,,,,,,)} #-}
data (,,,,,,,,,) a b c d e f g h i j
= (,,,,,,,,,) a b c d e f g h i j;
{-# NEED {(,,,,,,,,) (,,,,,,,,)} #-}
data (,,,,,,,,) a b c d e f g h i
= (,,,,,,,,) a b c d e f g h i;
{-# NEED {(,,,,,,,) (,,,,,,,)} #-}
data (,,,,,,,) a b c d e f g h
= (,,,,,,,) a b c d e f g h;
{-# NEED {(,,,,,,) (,,,,,,)} #-}
data (,,,,,,) a b c d e f g
= (,,,,,,) a b c d e f g;
{-# NEED {(,,,,,) (,,,,,)} #-}
data (,,,,,) a b c d e f
= (,,,,,) a b c d e f;
{-# NEED {(,,,,) (,,,,)} #-}
data (,,,,) a b c d e
= (,,,,) a b c d e;
{-# NEED {(,,,) (,,,)} #-}
data (,,,) a b c d
= (,,,) a b c d;
{-# NEED {(,,) (,,)} #-}
data (,,) a b c
= (,,) a b c;
{-# NEED {(,) (,)} #-}
data (,) a b
= (,) a b;
{-# NEED {() ()} #-}
data ()
= ();
interface ! NHC.Internal
{-# NEED _apply4 #-}
_apply4{-# 5 #-}::((a -> (b -> (c -> (d -> e)))) -> (a -> (b -> (c -> (d -> e)))));
{-# NEED _apply3 #-}
_apply3{-# 4 #-}::((a -> (b -> (c -> d))) -> (a -> (b -> (c -> d))));
{-# NEED _apply2 #-}
_apply2{-# 3 #-}::((a -> (b -> c)) -> (a -> (b -> c)));
{-# NEED _apply1 #-}
_apply1{-# 2 #-}::((a -> b) -> (a -> b));
interface ! Prelude
{-# NEED Float #-}
data Float;
{-# NEED {RealFloat exponent significand scaleFloat atan2 floatRadix floatDigits floatRange decodeFloat encodeFloat isNaN isInfinite isDenormalized isNegativeZero isIEEE} #-}
class (RealFrac a,Floating a) => RealFloat a where {
exponent{-# 1 #-}::(a -> Int);
significand{-# 1 #-}::(a -> a);
scaleFloat{-# 2 #-}::(Int -> (a -> a));
atan2{-# 2 #-}::(a -> (a -> a));
floatRadix{-# 1 #-}::(a -> Integer);
floatDigits{-# 1 #-}::(a -> Int);
floatRange{-# 1 #-}::(a -> (Int,Int));
decodeFloat{-# 1 #-}::(a -> (Integer,Int));
encodeFloat{-# 2 #-}::(Integer -> (Int -> a));
isNaN{-# 1 #-}::(a -> Bool);
isInfinite{-# 1 #-}::(a -> Bool);
isDenormalized{-# 1 #-}::(a -> Bool);
isNegativeZero{-# 1 #-}::(a -> Bool);
isIEEE{-# 1 #-}::(a -> Bool);
};
{-# NEED {Floating (**) logBase sqrt tan tanh pi exp log sin cos asin acos atan sinh cosh asinh acosh atanh} #-}
class (Fractional a) => Floating a where {
(**){-# 2 #-}::(a -> (a -> a));
logBase{-# 2 #-}::(a -> (a -> a));
sqrt{-# 1 #-}::(a -> a);
tan{-# 1 #-}::(a -> a);
tanh{-# 1 #-}::(a -> a);
pi{-# 0 #-}::a;
exp{-# 1 #-}::(a -> a);
log{-# 1 #-}::(a -> a);
sin{-# 1 #-}::(a -> a);
cos{-# 1 #-}::(a -> a);
asin{-# 1 #-}::(a -> a);
acos{-# 1 #-}::(a -> a);
atan{-# 1 #-}::(a -> a);
sinh{-# 1 #-}::(a -> a);
cosh{-# 1 #-}::(a -> a);
asinh{-# 1 #-}::(a -> a);
acosh{-# 1 #-}::(a -> a);
atanh{-# 1 #-}::(a -> a);
};
{-# NEED Double #-}
data Double;
{-# NEED {RealFrac truncate round ceiling floor properFraction} #-}
class (Real a,Fractional a) => RealFrac a where {
truncate{-# 1 #-}::(Integral b) => (a -> b);
round{-# 1 #-}::(Integral b) => (a -> b);
ceiling{-# 1 #-}::(Integral b) => (a -> b);
floor{-# 1 #-}::(Integral b) => (a -> b);
properFraction{-# 1 #-}::(Integral b) => (a -> (b,a));
};
{-# NEED {Fractional (/) recip fromRational} #-}
class (Num a) => Fractional a where {
(/){-# 2 #-}::(a -> (a -> a));
recip{-# 1 #-}::(a -> a);
fromRational{-# 1 #-}::(Ratio.Rational -> a);
};
{-# NEED {Read readsPrec readList} #-}
class Read a where {
readsPrec{-# 1 #-}::(Int -> (ReadS a));
readList{-# 0 #-}::(ReadS [a]);
};
{-# NEED ReadS #-}
type {-# 2 #-} ReadS a = (String -> [(a,String)]);
{-# NEED {Integral quot rem div mod divMod quotRem toInteger} #-}
class (Real a,Enum a) => Integral a where {
quot{-# 2 #-}::(a -> (a -> a));
rem{-# 2 #-}::(a -> (a -> a));
div{-# 2 #-}::(a -> (a -> a));
mod{-# 2 #-}::(a -> (a -> a));
divMod{-# 2 #-}::(a -> (a -> (a,a)));
quotRem{-# 2 #-}::(a -> (a -> (a,a)));
toInteger{-# 1 #-}::(a -> Integer);
};
{-# NEED {Enum pred succ toEnum fromEnum enumFrom enumFromThen enumFromTo enumFromThenTo} #-}
class Enum a where {
pred{-# 1 #-}::(a -> a);
succ{-# 1 #-}::(a -> a);
toEnum{-# 1 #-}::(Int -> a);
fromEnum{-# 1 #-}::(a -> Int);
enumFrom{-# 1 #-}::(a -> [a]);
enumFromThen{-# 2 #-}::(a -> (a -> [a]));
enumFromTo{-# 2 #-}::(a -> (a -> [a]));
enumFromThenTo{-# 3 #-}::(a -> (a -> (a -> [a])));
};
{-# NEED {Real toRational} #-}
class (Num a,Ord a) => Real a where {
toRational{-# 1 #-}::(a -> Ratio.Rational);
};
interface ! Ratio
{-# NEED Rational #-}
type {-# 1 #-} Rational = (Ratio Prelude.Integer);
{-# NEED (%) #-}
(%){-# 2 #-}::(Prelude.Integral a) => (a -> (a -> (Ratio a)));
interface Ratio
{-# NEED Ratio #-}
data Ratio a;
interface ! Prelude
{-# NEED {Ord compare (<=) (<) (>=) (>) max min} #-}
class (Eq a) => Ord a where {
compare{-# 2 #-}::(a -> (a -> Ordering));
(<=){-# 2 #-}::(a -> (a -> Bool));
(<){-# 2 #-}::(a -> (a -> Bool));
(>=){-# 2 #-}::(a -> (a -> Bool));
(>){-# 2 #-}::(a -> (a -> Bool));
max{-# 2 #-}::(a -> (a -> a));
min{-# 2 #-}::(a -> (a -> a));
};
{-# NEED {Ordering LT EQ GT} #-}
data Ordering
= LT
| EQ
| GT ;
{-# NEED {Num (-) (+) (*) negate abs signum fromInteger} #-}
class (Eq a,Show a) => Num a where {
(-){-# 2 #-}::(a -> (a -> a));
(+){-# 2 #-}::(a -> (a -> a));
(*){-# 2 #-}::(a -> (a -> a));
negate{-# 1 #-}::(a -> a);
abs{-# 1 #-}::(a -> a);
signum{-# 1 #-}::(a -> a);
fromInteger{-# 1 #-}::(Integer -> a);
};
{-# NEED Integer #-}
data Integer;
{-# NEED {Eq (==) (/=)} #-}
class Eq a where {
(==){-# 2 #-}::(a -> (a -> Bool));
(/=){-# 2 #-}::(a -> (a -> Bool));
};
{-# NEED {Bool False True} #-}
data Bool
= False
| True ;
{-# NEED {Show showsPrec showList showsType show} #-}
class Show a where {
showsPrec{-# 2 #-}::(Int -> (a -> ShowS));
showList{-# 1 #-}::([a] -> ShowS);
showsType{-# 1 #-}::(a -> ShowS);
show{-# 1 #-}::(a -> String);
};
{-# NEED ShowS #-}
type {-# 2 #-} ShowS = (String -> String);
{-# NEED String #-}
type {-# 1 #-} String = [Char];
{-# NEED Char #-}
data Char;
{-# NEED {[] [] (:)} #-}
data [] a
= []
| (:) a [a];
{-# NEED Int #-}
data Int;
{-# NEED (->) #-}
data (->) a b;
{-# NEED {Bounded minBound maxBound} #-}
class Bounded a where {
minBound{-# 0 #-}::a;
maxBound{-# 0 #-}::a;
};
}
|