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 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
|
/****************************************************************************
** Resource object code
**
** Created by: The Resource Compiler for Qt version 5.10.1
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
static const unsigned char qt_resource_data[] = {
// C:/work/IfcPlusPlus/trunk/examples/SimpleViewerExampleQt/Resources/styles.css
0x0,0x0,0x13,0x10,
0x51,
0x46,0x72,0x61,0x6d,0x65,0x20,0x7b,0xd,0xa,0x9,0x62,0x6f,0x72,0x64,0x65,0x72,
0x3a,0x20,0x23,0x65,0x63,0x65,0x63,0x65,0x63,0x20,0x31,0x70,0x78,0x20,0x73,0x6f,
0x6c,0x69,0x64,0x3b,0xd,0xa,0x9,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,
0x30,0x70,0x78,0x3b,0xd,0xa,0x7d,0xd,0xa,0xd,0xa,0x51,0x54,0x65,0x78,0x74,
0x45,0x64,0x69,0x74,0xd,0xa,0x7b,0xd,0xa,0x9,0x62,0x6f,0x72,0x64,0x65,0x72,
0x3a,0x20,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x63,0x65,0x63,
0x65,0x63,0x65,0x3b,0xd,0xa,0x9,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,
0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x64,0x66,0x64,0x66,0x64,
0x3b,0x20,0xd,0xa,0x7d,0xd,0xa,0xd,0xa,0x51,0x54,0x65,0x78,0x74,0x42,0x72,
0x6f,0x77,0x73,0x65,0x72,0xd,0xa,0x7b,0xd,0xa,0x9,0x62,0x6f,0x72,0x64,0x65,
0x72,0x3a,0x20,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x63,0x65,
0x63,0x65,0x63,0x65,0x3b,0xd,0xa,0x7d,0xd,0xa,0xd,0xa,0x2f,0x2a,0x20,0x51,
0x47,0x72,0x6f,0x75,0x70,0x42,0x6f,0x78,0x20,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2f,
0xd,0xa,0x51,0x47,0x72,0x6f,0x75,0x70,0x42,0x6f,0x78,0x20,0x7b,0xd,0xa,0x9,
0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x20,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,
0x64,0x20,0x23,0x62,0x32,0x62,0x37,0x62,0x62,0x3b,0xd,0xa,0x9,0x6d,0x61,0x72,
0x67,0x69,0x6e,0x2d,0x74,0x6f,0x70,0x3a,0x20,0x31,0x65,0x78,0x3b,0xd,0xa,0x7d,
0xd,0xa,0xd,0xa,0x51,0x47,0x72,0x6f,0x75,0x70,0x42,0x6f,0x78,0x3a,0x3a,0x74,
0x69,0x74,0x6c,0x65,0x20,0x7b,0xd,0xa,0x9,0x20,0x73,0x75,0x62,0x63,0x6f,0x6e,
0x74,0x72,0x6f,0x6c,0x2d,0x6f,0x72,0x69,0x67,0x69,0x6e,0x3a,0x20,0x6d,0x61,0x72,
0x67,0x69,0x6e,0x3b,0xd,0xa,0x9,0x20,0x73,0x75,0x62,0x63,0x6f,0x6e,0x74,0x72,
0x6f,0x6c,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x74,0x6f,0x70,
0x20,0x6c,0x65,0x66,0x74,0x3b,0xd,0xa,0x9,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,
0x67,0x3a,0x20,0x30,0x20,0x33,0x70,0x78,0x3b,0xd,0xa,0x9,0x20,0x6c,0x65,0x66,
0x74,0x3a,0x20,0x37,0x70,0x78,0x3b,0xd,0xa,0x9,0x20,0x74,0x6f,0x70,0x3a,0x20,
0x2d,0x32,0x70,0x78,0x3b,0xd,0xa,0x9,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,
0x23,0x38,0x32,0x38,0x37,0x38,0x62,0x3b,0xd,0xa,0x20,0x7d,0xd,0xa,0x20,0xd,
0xa,0x2f,0x2a,0x20,0x51,0x4c,0x69,0x6e,0x65,0x45,0x64,0x69,0x74,0x20,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2f,0xd,0xa,0x51,0x4c,0x69,0x6e,0x65,0x45,0x64,0x69,0x74,
0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,
0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x64,0x66,0x64,0x66,0x64,0x3b,0x20,0x62,0x6f,
0x72,0x64,0x65,0x72,0x3a,0x20,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,
0x23,0x62,0x30,0x62,0x30,0x62,0x30,0x3b,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,
0x20,0x31,0x36,0x70,0x78,0x3b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x31,
0x20,0x31,0x20,0x31,0x20,0x31,0x3b,0x20,0x7d,0xd,0xa,0x51,0x4c,0x69,0x6e,0x65,
0x45,0x64,0x69,0x74,0x3a,0x3a,0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x7b,
0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x39,0x36,0x39,0x36,0x39,0x36,0x3b,0x20,
0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,
0x3a,0x20,0x23,0x65,0x61,0x65,0x61,0x65,0x61,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,
0x72,0x3a,0x20,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x62,0x30,
0x62,0x30,0x62,0x30,0x3b,0x20,0x7d,0xd,0xa,0xd,0xa,0x2f,0x2a,0x20,0x51,0x50,
0x75,0x73,0x68,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2f,0xd,0xa,0x51,0x50,0x75,0x73,0x68,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x7b,
0xd,0xa,0x9,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x35,0x35,0x35,0x35,0x35,
0x35,0x3b,0xd,0xa,0x9,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x20,0x31,0x70,0x78,
0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x61,0x66,0x61,0x66,0x62,0x31,0x3b,0xd,
0xa,0x9,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,
0x6f,0x72,0x3a,0x20,0x71,0x6c,0x69,0x6e,0x65,0x61,0x72,0x67,0x72,0x61,0x64,0x69,
0x65,0x6e,0x74,0x28,0x78,0x31,0x3a,0x20,0x30,0x2c,0x20,0x79,0x31,0x3a,0x20,0x30,
0x2c,0x20,0x78,0x32,0x3a,0x20,0x30,0x2c,0x20,0x79,0x32,0x3a,0x20,0x31,0x2c,0x20,
0x73,0x74,0x6f,0x70,0x3a,0x20,0x30,0x20,0x23,0x65,0x65,0x65,0x65,0x65,0x65,0x2c,
0x20,0x73,0x74,0x6f,0x70,0x3a,0x20,0x31,0x20,0x23,0x64,0x36,0x64,0x37,0x64,0x61,
0x29,0x3b,0x20,0x2f,0x2a,0x63,0x61,0x63,0x62,0x63,0x65,0x2a,0x2f,0xd,0xa,0x9,
0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x32,0x70,0x78,0x20,0x34,0x70,0x78,
0x20,0x32,0x70,0x78,0x20,0x34,0x70,0x78,0x3b,0xd,0xa,0x9,0x6d,0x69,0x6e,0x2d,
0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x35,0x30,0x70,0x78,0x3b,0xd,0xa,0x7d,0xd,
0xa,0xd,0xa,0x51,0x50,0x75,0x73,0x68,0x42,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x3a,
0x64,0x69,0x73,0x61,0x62,0x6c,0x65,0x64,0x20,0x7b,0x9,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x71,0x6c,0x69,
0x6e,0x65,0x61,0x72,0x67,0x72,0x61,0x64,0x69,0x65,0x6e,0x74,0x28,0x78,0x31,0x3a,
0x20,0x30,0x2c,0x20,0x79,0x31,0x3a,0x20,0x30,0x2c,0x20,0x78,0x32,0x3a,0x20,0x30,
0x2c,0x20,0x79,0x32,0x3a,0x20,0x31,0x2c,0x20,0x73,0x74,0x6f,0x70,0x3a,0x20,0x30,
0x20,0x23,0x64,0x36,0x64,0x37,0x64,0x61,0x2c,0x20,0x73,0x74,0x6f,0x70,0x3a,0x20,
0x31,0x20,0x23,0x63,0x61,0x63,0x62,0x63,0x65,0x29,0x3b,0x20,0x7d,0xd,0xa,0xd,
0xa,0x51,0x50,0x75,0x73,0x68,0x42,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x3a,0x65,0x6e,
0x61,0x62,0x6c,0x65,0x64,0x3a,0x68,0x6f,0x76,0x65,0x72,0x20,0x7b,0x20,0x62,0x61,
0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,
0x71,0x6c,0x69,0x6e,0x65,0x61,0x72,0x67,0x72,0x61,0x64,0x69,0x65,0x6e,0x74,0x28,
0x78,0x31,0x3a,0x20,0x30,0x2c,0x20,0x79,0x31,0x3a,0x20,0x30,0x2c,0x20,0x78,0x32,
0x3a,0x20,0x30,0x2c,0x20,0x79,0x32,0x3a,0x20,0x31,0x2c,0x20,0x20,0x73,0x74,0x6f,
0x70,0x3a,0x20,0x30,0x20,0x23,0x65,0x36,0x65,0x37,0x65,0x61,0x2c,0x20,0x73,0x74,
0x6f,0x70,0x3a,0x20,0x31,0x20,0x23,0x64,0x61,0x64,0x62,0x64,0x65,0x29,0x3b,0x20,
0x7d,0xd,0xa,0x51,0x50,0x75,0x73,0x68,0x42,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x3a,
0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x20,
0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,
0x6f,0x72,0x3a,0x20,0x23,0x66,0x36,0x66,0x37,0x66,0x61,0x3b,0x20,0x7d,0x2f,0x2a,
0x71,0x6c,0x69,0x6e,0x65,0x61,0x72,0x67,0x72,0x61,0x64,0x69,0x65,0x6e,0x74,0x28,
0x78,0x31,0x3a,0x20,0x30,0x2c,0x20,0x79,0x31,0x3a,0x20,0x30,0x2c,0x20,0x78,0x32,
0x3a,0x20,0x30,0x2c,0x20,0x79,0x32,0x3a,0x20,0x31,0x2c,0x20,0x20,0x73,0x74,0x6f,
0x70,0x3a,0x20,0x30,0x20,0x23,0x66,0x36,0x66,0x37,0x66,0x61,0x2c,0x20,0x73,0x74,
0x6f,0x70,0x3a,0x20,0x31,0x20,0x23,0x64,0x61,0x64,0x62,0x64,0x65,0x29,0x3b,0x20,
0x7d,0x2a,0x2f,0xd,0xa,0x51,0x50,0x75,0x73,0x68,0x42,0x75,0x74,0x74,0x6f,0x6e,
0x3a,0x3a,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x70,0x72,0x65,0x73,0x73,0x65,
0x64,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,
0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x71,0x6c,0x69,0x6e,0x65,0x61,0x72,0x67,0x72,0x61,
0x64,0x69,0x65,0x6e,0x74,0x28,0x78,0x31,0x3a,0x20,0x30,0x2c,0x20,0x79,0x31,0x3a,
0x20,0x30,0x2c,0x20,0x78,0x32,0x3a,0x20,0x30,0x2c,0x20,0x79,0x32,0x3a,0x20,0x31,
0x2c,0x20,0x20,0x73,0x74,0x6f,0x70,0x3a,0x20,0x30,0x20,0x23,0x64,0x61,0x64,0x62,
0x64,0x65,0x2c,0x20,0x73,0x74,0x6f,0x70,0x3a,0x20,0x31,0x20,0x23,0x66,0x36,0x66,
0x37,0x66,0x61,0x29,0x3b,0x20,0x7d,0xd,0xa,0x51,0x50,0x75,0x73,0x68,0x42,0x75,
0x74,0x74,0x6f,0x6e,0x3a,0x66,0x6c,0x61,0x74,0x20,0x7b,0x20,0x62,0x6f,0x72,0x64,
0x65,0x72,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x20,0x7d,0xd,0xa,0x51,0x50,0x75,
0x73,0x68,0x42,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,
0x20,0x7b,0x20,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,0x72,
0x3a,0x20,0x6e,0x61,0x76,0x79,0x3b,0x20,0x7d,0xd,0xa,0x51,0x50,0x75,0x73,0x68,
0x42,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x66,0x6f,0x63,0x75,0x73,0x20,0x7b,0x20,0x63,
0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x30,0x30,0x30,0x3b,0x20,0x7d,0xd,0xa,0xd,
0xa,0x2f,0x2a,0x20,0x51,0x54,0x6f,0x6f,0x6c,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2f,0xd,0xa,0x51,0x54,0x6f,0x6f,0x6c,0x42,0x75,
0x74,0x74,0x6f,0x6e,0xd,0xa,0x7b,0xd,0xa,0x9,0x62,0x6f,0x72,0x64,0x65,0x72,
0x3a,0x20,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x63,0x63,0x63,
0x63,0x63,0x63,0x3b,0xd,0xa,0x9,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,
0x64,0x3a,0x20,0x23,0x64,0x66,0x64,0x66,0x64,0x66,0x3b,0xd,0xa,0x7d,0xd,0xa,
0x51,0x54,0x6f,0x6f,0x6c,0x42,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x3a,0x64,0x69,0x73,
0x61,0x62,0x6c,0x65,0x64,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,
0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x64,0x65,0x64,0x62,0x64,0x35,
0x3b,0x20,0x7d,0xd,0xa,0x51,0x54,0x6f,0x6f,0x6c,0x42,0x75,0x74,0x74,0x6f,0x6e,
0x3a,0x3a,0x65,0x6e,0x61,0x62,0x6c,0x65,0x64,0x3a,0x68,0x6f,0x76,0x65,0x72,0x20,
0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,
0x6f,0x72,0x3a,0x20,0x23,0x65,0x63,0x65,0x61,0x65,0x37,0x3b,0x20,0x7d,0xd,0xa,
0x51,0x54,0x6f,0x6f,0x6c,0x42,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x63,0x68,0x65,0x63,
0x6b,0x65,0x64,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,
0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x65,0x63,0x65,0x61,0x65,0x37,0x3b,
0x20,0x7d,0xd,0xa,0x51,0x54,0x6f,0x6f,0x6c,0x42,0x75,0x74,0x74,0x6f,0x6e,0x3a,
0x70,0x72,0x65,0x73,0x73,0x65,0x64,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,
0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x65,0x63,0x65,
0x61,0x65,0x37,0x3b,0x20,0x7d,0xd,0xa,0x51,0x54,0x6f,0x6f,0x6c,0x42,0x75,0x74,
0x74,0x6f,0x6e,0x3a,0x66,0x6c,0x61,0x74,0x20,0x7b,0x20,0x62,0x6f,0x72,0x64,0x65,
0x72,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x20,0x7d,0xd,0xa,0xd,0xa,0x2f,0x2a,
0x20,0x51,0x54,0x61,0x62,0x57,0x69,0x64,0x67,0x65,0x74,0x20,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2f,0xd,0xa,0x51,0x54,0x61,0x62,0x57,0x69,0x64,0x67,0x65,0x74,0x20,
0x7b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,
0x69,0x6e,0x73,0x65,0x74,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x77,0x69,
0x64,0x74,0x68,0x3a,0x20,0x31,0x70,0x78,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,
0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x66,0x62,0x30,0x62,0x30,0x3b,
0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x66,0x35,
0x66,0x35,0x66,0x35,0x3b,0x7d,0xd,0xa,0x51,0x54,0x61,0x62,0x57,0x69,0x64,0x67,
0x65,0x74,0x3a,0x3a,0x70,0x61,0x6e,0x65,0x20,0x7b,0x20,0x62,0x6f,0x72,0x64,0x65,
0x72,0x3a,0x30,0x70,0x78,0x3b,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,
0x3a,0x20,0x23,0x66,0x35,0x66,0x35,0x66,0x35,0x3b,0x20,0x7d,0xd,0xa,0xd,0xa,
0xd,0xa,0x2f,0x2a,0x20,0x51,0x54,0x61,0x62,0x42,0x61,0x72,0x20,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2f,0xd,0xa,0x51,0x54,0x61,0x62,0x42,0x61,0x72,0x3a,0x3a,0x74,
0x61,0x62,0x20,0xd,0xa,0x7b,0xd,0xa,0x9,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,
0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x20,0x31,0x70,0x78,0x3b,0x20,0xd,0xa,0x9,
0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x66,0x35,0x66,
0x35,0x66,0x35,0x3b,0xd,0xa,0x9,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x20,0x31,
0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x43,0x34,0x43,0x34,0x43,0x33,
0x3b,0xd,0xa,0x9,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,
0x6d,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x62,0x32,0x62,0x37,0x62,0x62,
0x3b,0xd,0xa,0x9,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x6c,
0x65,0x66,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x20,0x32,0x70,0x78,0x3b,
0xd,0xa,0x9,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x74,0x6f,0x70,0x2d,0x72,0x69,
0x67,0x68,0x74,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x20,0x32,0x70,0x78,0x3b,
0xd,0xa,0x9,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x32,0x70,0x78,0x20,
0x36,0x70,0x78,0x3b,0xd,0xa,0x7d,0xd,0xa,0xd,0xa,0x51,0x54,0x61,0x62,0x42,
0x61,0x72,0x3a,0x3a,0x74,0x61,0x62,0x3a,0x68,0x6f,0x76,0x65,0x72,0x20,0x7b,0x20,
0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x65,0x63,0x65,
0x63,0x65,0x63,0x3b,0x20,0x7d,0xd,0xa,0x51,0x54,0x61,0x62,0x42,0x61,0x72,0x3a,
0x3a,0x74,0x61,0x62,0x3a,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x7b,0x20,
0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x66,0x35,0x66,
0x35,0x66,0x35,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,
0x72,0x3a,0x20,0x23,0x39,0x42,0x39,0x42,0x39,0x42,0x3b,0x20,0x62,0x6f,0x72,0x64,
0x65,0x72,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x20,0x30,0x70,0x78,0x3b,0x20,
0x7d,0xd,0xa,0x51,0x54,0x61,0x62,0x42,0x61,0x72,0x3a,0x3a,0x74,0x61,0x62,0x3a,
0x66,0x69,0x72,0x73,0x74,0x3a,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x7b,
0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x20,0x30,0x3b,
0x20,0x20,0x7d,0xd,0xa,0x51,0x54,0x61,0x62,0x42,0x61,0x72,0x3a,0x3a,0x74,0x61,
0x62,0x3a,0x6c,0x61,0x73,0x74,0x3a,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,
0x7b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x72,0x69,0x67,0x68,0x74,0x3a,0x20,
0x30,0x3b,0x20,0x20,0x7d,0xd,0xa,0x51,0x54,0x61,0x62,0x42,0x61,0x72,0x3a,0x3a,
0x74,0x61,0x62,0x3a,0x6f,0x6e,0x6c,0x79,0x2d,0x6f,0x6e,0x65,0x20,0x7b,0x20,0x20,
0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x3b,0x20,0x7d,0xd,0xa,0xd,0xa,
0xd,0xa,0x2f,0x2a,0x51,0x54,0x61,0x62,0x57,0x69,0x64,0x67,0x65,0x74,0x3a,0x3a,
0x74,0x61,0x62,0x2d,0x62,0x61,0x72,0x20,0x7b,0x73,0x75,0x62,0x63,0x6f,0x6e,0x74,
0x72,0x6f,0x6c,0x2d,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x63,0x65,
0x6e,0x74,0x65,0x72,0x3b,0x7d,0x2a,0x2f,0xd,0xa,0x51,0x54,0x72,0x65,0x65,0x56,
0x69,0x65,0x77,0xd,0xa,0x7b,0xd,0xa,0x9,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,
0x23,0x35,0x35,0x35,0x35,0x35,0x35,0x3b,0xd,0xa,0x9,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x64,
0x66,0x64,0x66,0x64,0x3b,0xd,0xa,0x9,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,
0x6e,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,
0x6f,0x72,0x3a,0x20,0x23,0x61,0x64,0x62,0x63,0x63,0x64,0x3b,0xd,0xa,0x9,0x67,
0x72,0x69,0x64,0x6c,0x69,0x6e,0x65,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,
0x63,0x63,0x63,0x63,0x63,0x63,0x3b,0xd,0xa,0x7d,0xd,0xa,0xd,0xa,0x2f,0x2a,
0x20,0x51,0x54,0x61,0x62,0x6c,0x65,0x57,0x69,0x64,0x67,0x65,0x74,0x20,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2f,0xd,0xa,0x51,0x54,0x61,0x62,0x6c,0x65,0x57,0x69,0x64,
0x67,0x65,0x74,0xd,0xa,0x7b,0xd,0xa,0x9,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,
0x23,0x35,0x35,0x35,0x35,0x35,0x35,0x3b,0xd,0xa,0x9,0x62,0x61,0x63,0x6b,0x67,
0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x64,
0x66,0x64,0x66,0x64,0x3b,0xd,0xa,0x9,0x73,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,
0x6e,0x2d,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,
0x6f,0x72,0x3a,0x20,0x23,0x61,0x64,0x62,0x63,0x63,0x64,0x3b,0xd,0xa,0x9,0x67,
0x72,0x69,0x64,0x6c,0x69,0x6e,0x65,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,
0x63,0x63,0x63,0x63,0x63,0x63,0x3b,0xd,0xa,0x7d,0xd,0xa,0xd,0xa,0x51,0x48,
0x65,0x61,0x64,0x65,0x72,0x56,0x69,0x65,0x77,0x20,0xd,0xa,0x7b,0xd,0xa,0x9,
0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,
0x3a,0x20,0x23,0x63,0x63,0x63,0x63,0x63,0x63,0x3b,0xd,0xa,0x9,0x62,0x6f,0x72,
0x64,0x65,0x72,0x3a,0x20,0x30,0x70,0x78,0x3b,0xd,0xa,0x7d,0xd,0xa,0x20,0xd,
0xa,0x51,0x48,0x65,0x61,0x64,0x65,0x72,0x56,0x69,0x65,0x77,0x3a,0x3a,0x73,0x65,
0x63,0x74,0x69,0x6f,0x6e,0x20,0xd,0xa,0x7b,0xd,0xa,0x9,0x62,0x61,0x63,0x6b,
0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x64,
0x63,0x64,0x63,0x64,0x63,0x3b,0xd,0xa,0x9,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,
0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x31,0x70,0x78,0x3b,0xd,0xa,0x9,0x62,0x6f,
0x72,0x64,0x65,0x72,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x73,0x6f,0x6c,0x69,
0x64,0x3b,0xd,0xa,0x9,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x63,0x6f,0x6c,0x6f,
0x72,0x3a,0x20,0x23,0x62,0x63,0x62,0x63,0x62,0x63,0x3b,0xd,0xa,0x7d,0xd,0xa,
0xd,0xa,0xd,0xa,0x2f,0x2a,0x20,0x51,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,
0x56,0x69,0x65,0x77,0x20,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2f,0xd,0xa,0x51,0x47,
0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x53,0x63,0x65,0x6e,0x65,0x20,0x7b,0x20,0x62,
0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,
0x20,0x23,0x66,0x37,0x66,0x38,0x66,0x38,0x3b,0x20,0x7d,0xd,0xa,0x51,0x47,0x72,
0x61,0x70,0x68,0x69,0x63,0x73,0x56,0x69,0x65,0x77,0x20,0x7b,0x20,0x62,0x61,0x63,
0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,
0x65,0x65,0x66,0x30,0x66,0x32,0x3b,0x20,0x7d,0xd,0xa,0xd,0xa,0xd,0xa,0x2f,
0x2a,0x20,0x51,0x43,0x6f,0x6d,0x62,0x6f,0x42,0x6f,0x78,0x20,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2f,0xd,0xa,0x51,0x43,0x6f,0x6d,0x62,0x6f,0x42,0x6f,0x78,0x20,0x7b,
0xd,0xa,0x9,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x20,0x31,0x70,0x78,0x20,
0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x63,0x63,0x63,0x63,0x63,0x63,0x3b,0xd,0xa,
0x9,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x31,0x70,0x78,0x20,0x31,
0x38,0x70,0x78,0x20,0x31,0x70,0x78,0x20,0x33,0x70,0x78,0x3b,0xd,0xa,0x9,0x20,
0x6d,0x69,0x6e,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x36,0x65,0x6d,0x3b,0xd,
0xa,0x9,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x71,
0x6c,0x69,0x6e,0x65,0x61,0x72,0x67,0x72,0x61,0x64,0x69,0x65,0x6e,0x74,0x28,0x78,
0x31,0x3a,0x20,0x30,0x2c,0x20,0x79,0x31,0x3a,0x20,0x30,0x2c,0x20,0x78,0x32,0x3a,
0x20,0x30,0x2c,0x20,0x79,0x32,0x3a,0x20,0x31,0x2c,0xd,0xa,0x9,0x9,0x9,0x9,
0x9,0x9,0x9,0x9,0x20,0x20,0x73,0x74,0x6f,0x70,0x3a,0x20,0x30,0x20,0x23,0x45,
0x31,0x45,0x31,0x45,0x31,0x2c,0x20,0x73,0x74,0x6f,0x70,0x3a,0x20,0x30,0x2e,0x34,
0x20,0x23,0x44,0x44,0x44,0x44,0x44,0x44,0x2c,0xd,0xa,0x9,0x9,0x9,0x9,0x9,
0x9,0x9,0x9,0x20,0x20,0x73,0x74,0x6f,0x70,0x3a,0x20,0x30,0x2e,0x35,0x20,0x23,
0x44,0x38,0x44,0x38,0x44,0x38,0x2c,0x20,0x73,0x74,0x6f,0x70,0x3a,0x20,0x31,0x2e,
0x30,0x20,0x23,0x44,0x33,0x44,0x33,0x44,0x33,0x29,0x3b,0xd,0xa,0x20,0x7d,0xd,
0xa,0x20,0xd,0xa,0x51,0x43,0x6f,0x6d,0x62,0x6f,0x42,0x6f,0x78,0x3a,0x21,0x65,
0x64,0x69,0x74,0x61,0x62,0x6c,0x65,0x2c,0x20,0x51,0x43,0x6f,0x6d,0x62,0x6f,0x42,
0x6f,0x78,0x3a,0x3a,0x64,0x72,0x6f,0x70,0x2d,0x64,0x6f,0x77,0x6e,0x3a,0x65,0x64,
0x69,0x74,0x61,0x62,0x6c,0x65,0x20,0x7b,0xd,0xa,0x9,0x20,0x20,0x62,0x61,0x63,
0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x71,0x6c,0x69,0x6e,0x65,0x61,0x72,
0x67,0x72,0x61,0x64,0x69,0x65,0x6e,0x74,0x28,0x78,0x31,0x3a,0x20,0x30,0x2c,0x20,
0x79,0x31,0x3a,0x20,0x30,0x2c,0x20,0x78,0x32,0x3a,0x20,0x30,0x2c,0x20,0x79,0x32,
0x3a,0x20,0x31,0x2c,0xd,0xa,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0x20,0x20,
0x73,0x74,0x6f,0x70,0x3a,0x20,0x30,0x20,0x23,0x45,0x31,0x45,0x31,0x45,0x31,0x2c,
0x20,0x73,0x74,0x6f,0x70,0x3a,0x20,0x30,0x2e,0x34,0x20,0x23,0x44,0x44,0x44,0x44,
0x44,0x44,0x2c,0xd,0xa,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0x20,0x20,0x73,
0x74,0x6f,0x70,0x3a,0x20,0x30,0x2e,0x35,0x20,0x23,0x44,0x38,0x44,0x38,0x44,0x38,
0x2c,0x20,0x73,0x74,0x6f,0x70,0x3a,0x20,0x31,0x2e,0x30,0x20,0x23,0x44,0x33,0x44,
0x33,0x44,0x33,0x29,0x3b,0xd,0xa,0x7d,0xd,0xa,0xd,0xa,0xd,0xa,0x51,0x43,
0x6f,0x6d,0x62,0x6f,0x42,0x6f,0x78,0x3a,0x21,0x65,0x64,0x69,0x74,0x61,0x62,0x6c,
0x65,0x3a,0x6f,0x6e,0x2c,0x20,0x51,0x43,0x6f,0x6d,0x62,0x6f,0x42,0x6f,0x78,0x3a,
0x3a,0x64,0x72,0x6f,0x70,0x2d,0x64,0x6f,0x77,0x6e,0x3a,0x65,0x64,0x69,0x74,0x61,
0x62,0x6c,0x65,0x3a,0x6f,0x6e,0x20,0x7b,0xd,0xa,0x9,0x20,0x62,0x61,0x63,0x6b,
0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x71,0x6c,0x69,0x6e,0x65,0x61,0x72,0x67,
0x72,0x61,0x64,0x69,0x65,0x6e,0x74,0x28,0x78,0x31,0x3a,0x20,0x30,0x2c,0x20,0x79,
0x31,0x3a,0x20,0x30,0x2c,0x20,0x78,0x32,0x3a,0x20,0x30,0x2c,0x20,0x79,0x32,0x3a,
0x20,0x31,0x2c,0xd,0xa,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0x20,0x73,0x74,
0x6f,0x70,0x3a,0x20,0x30,0x20,0x23,0x44,0x33,0x44,0x33,0x44,0x33,0x2c,0x20,0x73,
0x74,0x6f,0x70,0x3a,0x20,0x30,0x2e,0x34,0x20,0x23,0x44,0x38,0x44,0x38,0x44,0x38,
0x2c,0xd,0xa,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0x9,0x20,0x73,0x74,0x6f,0x70,
0x3a,0x20,0x30,0x2e,0x35,0x20,0x23,0x44,0x44,0x44,0x44,0x44,0x44,0x2c,0x20,0x73,
0x74,0x6f,0x70,0x3a,0x20,0x31,0x2e,0x30,0x20,0x23,0x45,0x31,0x45,0x31,0x45,0x31,
0x29,0x3b,0xd,0xa,0x20,0x7d,0xd,0xa,0xd,0xa,0x51,0x43,0x6f,0x6d,0x62,0x6f,
0x42,0x6f,0x78,0x3a,0x6f,0x6e,0x20,0x7b,0xd,0xa,0x9,0x20,0x70,0x61,0x64,0x64,
0x69,0x6e,0x67,0x2d,0x74,0x6f,0x70,0x3a,0x20,0x33,0x70,0x78,0x3b,0xd,0xa,0x9,
0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x20,0x34,
0x70,0x78,0x3b,0xd,0xa,0x20,0x7d,0xd,0xa,0xd,0xa,0x51,0x43,0x6f,0x6d,0x62,
0x6f,0x42,0x6f,0x78,0x3a,0x3a,0x64,0x72,0x6f,0x70,0x2d,0x64,0x6f,0x77,0x6e,0x20,
0x7b,0xd,0xa,0x9,0x73,0x75,0x62,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x6f,
0x72,0x69,0x67,0x69,0x6e,0x3a,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3b,0xd,
0xa,0x9,0x73,0x75,0x62,0x63,0x6f,0x6e,0x74,0x72,0x6f,0x6c,0x2d,0x70,0x6f,0x73,
0x69,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x74,0x6f,0x70,0x20,0x72,0x69,0x67,0x68,0x74,
0x3b,0xd,0xa,0x9,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x31,0x35,0x70,0x78,0x3b,
0xd,0xa,0x9,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x77,
0x69,0x64,0x74,0x68,0x3a,0x20,0x31,0x70,0x78,0x3b,0xd,0xa,0x9,0x62,0x6f,0x72,
0x64,0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,
0x64,0x61,0x72,0x6b,0x67,0x72,0x61,0x79,0x3b,0xd,0xa,0x9,0x62,0x6f,0x72,0x64,
0x65,0x72,0x2d,0x6c,0x65,0x66,0x74,0x2d,0x73,0x74,0x79,0x6c,0x65,0x3a,0x20,0x73,
0x6f,0x6c,0x69,0x64,0x3b,0xd,0xa,0x9,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,
0x6e,0x64,0x2d,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x65,0x66,0x65,0x66,0x65,0x66,
0x3b,0xd,0xa,0x7d,0xd,0xa,0xd,0xa,0x20,0x51,0x43,0x6f,0x6d,0x62,0x6f,0x42,
0x6f,0x78,0x3a,0x3a,0x64,0x6f,0x77,0x6e,0x2d,0x61,0x72,0x72,0x6f,0x77,0x20,0x7b,
0xd,0xa,0x9,0x20,0x69,0x6d,0x61,0x67,0x65,0x3a,0x20,0x75,0x72,0x6c,0x28,0x3a,
0x69,0x6d,0x67,0x2f,0x64,0x72,0x6f,0x70,0x44,0x6f,0x77,0x6e,0x41,0x72,0x72,0x6f,
0x77,0x2e,0x70,0x6e,0x67,0x29,0x3b,0xd,0xa,0x20,0x7d,0xd,0xa,0xd,0xa,0x20,
0x51,0x43,0x6f,0x6d,0x62,0x6f,0x42,0x6f,0x78,0x3a,0x3a,0x64,0x6f,0x77,0x6e,0x2d,
0x61,0x72,0x72,0x6f,0x77,0x3a,0x6f,0x6e,0x20,0x7b,0xd,0xa,0x9,0x20,0x74,0x6f,
0x70,0x3a,0x20,0x31,0x70,0x78,0x3b,0xd,0xa,0x9,0x20,0x6c,0x65,0x66,0x74,0x3a,
0x20,0x31,0x70,0x78,0x3b,0xd,0xa,0x20,0x7d,0xd,0xa,0x20,0xd,0xa,0x20,0xd,
0xa,0x2f,0x2a,0x20,0x51,0x53,0x70,0x6c,0x69,0x74,0x74,0x65,0x72,0x20,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a,
0x2a,0x2a,0x2a,0x2a,0x2f,0xd,0xa,0x51,0x53,0x70,0x6c,0x69,0x74,0x74,0x65,0x72,
0x3a,0x3a,0x68,0x61,0x6e,0x64,0x6c,0x65,0x3a,0x68,0x6f,0x72,0x69,0x7a,0x6f,0x6e,
0x74,0x61,0x6c,0x20,0x7b,0xd,0xa,0x9,0x69,0x6d,0x61,0x67,0x65,0x3a,0x20,0x75,
0x72,0x6c,0x28,0x3a,0x69,0x6d,0x67,0x2f,0x73,0x70,0x6c,0x69,0x74,0x74,0x65,0x72,
0x68,0x2e,0x70,0x6e,0x67,0x29,0x3b,0xd,0xa,0x7d,0xd,0xa,0x51,0x53,0x70,0x6c,
0x69,0x74,0x74,0x65,0x72,0x3a,0x3a,0x68,0x61,0x6e,0x64,0x6c,0x65,0x3a,0x76,0x65,
0x72,0x74,0x69,0x63,0x61,0x6c,0x20,0x7b,0xd,0xa,0x9,0x69,0x6d,0x61,0x67,0x65,
0x3a,0x20,0x75,0x72,0x6c,0x28,0x3a,0x69,0x6d,0x67,0x2f,0x73,0x70,0x6c,0x69,0x74,
0x74,0x65,0x72,0x76,0x2e,0x70,0x6e,0x67,0x29,0x3b,0xd,0xa,0x7d,0xd,0xa,
// C:/work/IfcPlusPlus/trunk/examples/SimpleViewerExampleQt/Resources/appicon.rc
0x0,0x0,0x0,0x32,
0x49,
0x44,0x49,0x5f,0x49,0x43,0x4f,0x4e,0x31,0x9,0x9,0x9,0x20,0x20,0x20,0x49,0x43,
0x4f,0x4e,0x9,0x44,0x49,0x53,0x43,0x41,0x52,0x44,0x41,0x42,0x4c,0x45,0x9,0x20,
0x22,0x69,0x6d,0x67,0x2f,0x61,0x70,0x70,0x69,0x63,0x6f,0x6e,0x2e,0x69,0x63,0x6f,
0x22,
// C:/work/IfcPlusPlus/trunk/examples/SimpleViewerExampleQt/Resources/img/RemoveSelectedObjects.png
0x0,0x0,0x3,0x23,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x18,0x0,0x0,0x0,0x18,0x8,0x6,0x0,0x0,0x0,0xe0,0x77,0x3d,0xf8,
0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,0xa7,0x93,0x0,
0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1,
0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xdb,0xc,0x5,
0x16,0x17,0x8,0x55,0xf0,0x88,0x19,0x0,0x0,0x2,0xa3,0x49,0x44,0x41,0x54,0x48,
0x4b,0x9d,0x95,0x4b,0x4f,0x13,0x51,0x14,0x80,0xbf,0x3b,0xd3,0x96,0xd2,0x42,0x2d,
0x6,0x54,0x5e,0xf1,0xb1,0x20,0x98,0x18,0x75,0x5,0x26,0x6,0xb7,0xca,0x82,0x28,
0xc4,0xad,0x31,0x31,0x2e,0x4c,0x34,0xc4,0xe8,0x9f,0x30,0x71,0x89,0xcf,0x68,0xd8,
0xea,0xce,0xb8,0x42,0x25,0x80,0x44,0x8d,0x89,0x1a,0x82,0xd1,0xc4,0x98,0xf8,0x20,
0x50,0xa8,0x40,0x1,0xb,0xa5,0xb5,0xd3,0x99,0x7b,0x5d,0xc,0xa5,0xed,0xd0,0xe,
0xa3,0x5f,0x32,0xc9,0xf4,0x9c,0x7b,0xcf,0xd7,0xb9,0x77,0xe6,0x1e,0xb1,0xbe,0xbe,
0xae,0xf8,0x7,0x94,0xb2,0x87,0xb,0x21,0x40,0x29,0x54,0xfe,0xbe,0x2,0x9a,0x33,
0x50,0x8e,0x7c,0x51,0x80,0xd8,0x6c,0x9c,0xe9,0xd8,0x1c,0x39,0xd3,0x44,0x68,0xf6,
0xf4,0xe2,0xbc,0x13,0x4f,0x2,0x21,0x4,0x52,0x4a,0x2,0x1,0x3f,0xd3,0xb1,0x59,
0x6,0xee,0xd,0xf2,0x6c,0x78,0x9c,0x85,0xc5,0x25,0x84,0x10,0xae,0x4f,0xe0,0x73,
0x6,0xca,0xe1,0xf3,0xf9,0x78,0xf3,0xf6,0x1d,0x8,0x8d,0x6f,0x3f,0xa6,0x58,0x4b,
0xa5,0x18,0x1d,0x7f,0x4d,0x74,0x47,0x2d,0xbb,0x1a,0x3a,0x5d,0x9f,0xc0,0x93,0x40,
0xd7,0x34,0xe6,0x7e,0xcd,0x33,0xf1,0xf1,0x33,0xa6,0x69,0x12,0xaa,0xae,0x46,0xd3,
0x85,0x6b,0xe1,0x3c,0x9e,0x4,0x0,0xba,0xae,0x63,0x18,0x6,0x52,0x4a,0xec,0x15,
0x11,0x80,0xc2,0xde,0xe6,0xca,0x78,0xda,0x3,0xd8,0xfa,0xa6,0x8,0x36,0x36,0xd7,
0xbd,0x7e,0x65,0x81,0x92,0x12,0x23,0x1e,0x47,0x66,0xfe,0x94,0x7d,0x15,0xf3,0xff,
0x5d,0x59,0x16,0xd9,0x99,0x18,0xd2,0x30,0x4a,0xf2,0x79,0x2a,0xa,0xb0,0x2c,0x92,
0x43,0xcf,0x49,0x3c,0x7a,0x8c,0xcc,0x64,0xb6,0x8,0x0,0x50,0x8a,0x95,0x27,0x4f,
0x59,0x7c,0x38,0x88,0x4c,0xa7,0x9d,0x59,0xc0,0x45,0x20,0xfc,0x7e,0x76,0x9e,0xed,
0x43,0xa6,0x52,0xc4,0x1f,0xc,0x22,0x2c,0xcb,0x39,0x84,0xd0,0xcb,0x71,0x52,0xef,
0x3f,0x50,0x7f,0xfe,0x1c,0xbe,0x68,0xd4,0x99,0x6,0x5c,0x4,0x0,0x7a,0x24,0x42,
0xc3,0xc5,0xb,0x28,0x23,0x4b,0xc3,0xc8,0xc8,0x66,0x5c,0x49,0xc5,0xd1,0x99,0x69,
0x2,0xb1,0x18,0xbb,0x2f,0x5f,0x22,0x78,0x60,0x7f,0xd1,0xac,0x52,0x5c,0x5,0x0,
0x7a,0x28,0x44,0xf3,0xf5,0xab,0x8,0xcb,0xe2,0xc4,0xd7,0x2f,0x0,0x1c,0x9e,0x8f,
0xd3,0xf2,0x7b,0x85,0x64,0x77,0x37,0x81,0xd6,0x56,0xc7,0x8c,0x52,0xb6,0x15,0x80,
0xbd,0xc1,0xcb,0x3d,0x3d,0x20,0x4,0xbd,0x93,0x13,0xb4,0x2d,0x2e,0x30,0xda,0xd6,
0x8e,0x55,0x57,0x7e,0x59,0x8a,0xf1,0x24,0x0,0x10,0x28,0x12,0x35,0xb5,0xf8,0xcd,
0x1c,0x4b,0xe1,0x30,0x39,0x5d,0xc7,0xc3,0x77,0xe6,0x4d,0x20,0xb3,0x6,0xd1,0xb1,
0x31,0x5a,0x97,0x12,0xc,0x1d,0x3a,0x42,0x32,0x18,0xe4,0xf8,0xcf,0xef,0x88,0xd5,
0xa4,0x73,0xe8,0x16,0xb6,0x15,0xc8,0x6c,0x96,0xb9,0x5b,0x77,0xd0,0x93,0xab,0xbc,
0x6a,0x3f,0xc8,0x5a,0x30,0xc8,0x64,0x53,0xb,0xcb,0xa1,0x30,0xd1,0x17,0xc3,0x98,
0x2b,0x2b,0xce,0x29,0x25,0xb8,0xa,0x54,0x2e,0xc7,0xc2,0xdd,0xfb,0xc8,0x74,0x9a,
0xb5,0x53,0x27,0xc9,0x4,0xaa,0xec,0xb8,0x10,0x7c,0x6a,0x6a,0x26,0xdb,0xd2,0x4c,
0xfc,0xc6,0x4d,0x64,0x26,0xe3,0x98,0x59,0xa0,0xa2,0x40,0xe5,0x72,0xcc,0xf,0xdc,
0x26,0x97,0x58,0xa2,0xb1,0xff,0xa,0x2a,0x12,0x29,0xcd,0x23,0x48,0x75,0x76,0x10,
0x3e,0xd6,0xc1,0x54,0xff,0x35,0xac,0x54,0xaa,0x24,0x9f,0xa7,0xf2,0x61,0xa7,0x69,
0xd4,0xf5,0xf5,0xe2,0x6f,0xdc,0x83,0xaf,0xa6,0x66,0xeb,0x97,0x6c,0x37,0x34,0xea,
0xce,0x9c,0x26,0xd2,0xd5,0x85,0x32,0xcd,0xd2,0xfc,0x6,0x15,0x5,0x42,0xd7,0xa9,
0xda,0xb7,0xb7,0xf0,0xdb,0x29,0x80,0xcd,0x83,0xce,0xdf,0x50,0x5f,0x1a,0x2f,0xa2,
0xe2,0x12,0x39,0x29,0x16,0xd8,0xfd,0x18,0xb6,0x3d,0x4a,0xf9,0x4f,0x41,0xbe,0xae,
0x52,0xf6,0xe5,0x86,0x47,0x81,0x42,0xdb,0x68,0xf0,0x80,0xdd,0xc,0xa,0x7,0x76,
0x21,0x5e,0x6,0x8f,0x2,0x36,0xba,0x98,0x3,0xf7,0xda,0x0,0xfc,0x5,0x26,0xb,
0xfd,0x21,0xca,0x11,0xc9,0xee,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,
0x60,0x82,
// C:/work/IfcPlusPlus/trunk/examples/SimpleViewerExampleQt/Resources/img/zoomBoundings.png
0x0,0x0,0x1,0x49,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x19,0x0,0x0,0x0,0x19,0x8,0x6,0x0,0x0,0x0,0xc4,0xe9,0x85,0x63,
0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,
0xb,0x13,0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,
0xd9,0x4,0x7,0x8,0x1,0x24,0xba,0xb9,0xfd,0x16,0x0,0x0,0x0,0xd6,0x49,0x44,
0x41,0x54,0x78,0xda,0xed,0x95,0x31,0xe,0x83,0x30,0xc,0x45,0x4d,0x94,0x2b,0x64,
0x89,0x80,0x25,0x47,0xe8,0xd0,0xb1,0x67,0x67,0x64,0xe0,0x8,0xc,0x24,0x88,0x85,
0x43,0xb4,0x53,0x2a,0x63,0x39,0x89,0x89,0xd4,0xe,0x88,0x3f,0x59,0x20,0xf9,0xc9,
0x8e,0xf2,0xd2,0x2c,0x3e,0xbc,0xe1,0xc7,0x51,0xf0,0x87,0xe8,0x58,0x4c,0xe3,0x70,
0xf8,0xd1,0x77,0x2d,0x18,0xeb,0xc4,0x8d,0xf6,0x6d,0x6,0x1f,0xd6,0xc3,0xb7,0xc7,
0xf3,0x75,0x84,0xd4,0x36,0x8f,0x31,0xd6,0x81,0xb1,0x8e,0x85,0x29,0xa,0xf0,0x61,
0x85,0x7d,0x9b,0xab,0xd6,0x12,0x1,0x7d,0xd7,0xa6,0x21,0xc6,0xba,0x6a,0x10,0x6,
0xd0,0x4d,0x68,0x3c,0x45,0x4,0x1,0xc0,0x77,0x64,0xc9,0xea,0x38,0x0,0x9e,0x46,
0xe3,0x29,0x68,0x2d,0x1,0xa5,0x26,0xc0,0xb5,0xce,0x1d,0x64,0x4,0xe5,0x20,0xa9,
0x15,0xe1,0x34,0x97,0xb9,0x8c,0x37,0xe4,0x86,0xf0,0x17,0x8d,0xda,0x99,0x66,0x1a,
0x87,0xa2,0x82,0xd4,0x59,0xd9,0x71,0xd6,0x2e,0xb9,0x4e,0xe1,0xa6,0x12,0xd9,0x71,
0x66,0xe0,0x40,0xb8,0x56,0x58,0xf,0x67,0x1,0x39,0x10,0x7e,0x53,0xb4,0x54,0xd7,
0x12,0x10,0x6d,0xce,0x42,0x6a,0x1,0x25,0x90,0xe6,0xac,0x5a,0x3,0xe3,0x9e,0xdd,
0xeb,0x59,0xf8,0x3,0xed,0xe4,0x9f,0x68,0x11,0x34,0x4f,0x2f,0x0,0x0,0x0,0x0,
0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// C:/work/IfcPlusPlus/trunk/examples/SimpleViewerExampleQt/Resources/img/dropDownArrow.png
0x0,0x0,0x0,0xd9,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0xb,0x0,0x0,0x0,0xc,0x8,0x6,0x0,0x0,0x0,0xb4,0xa9,0x47,0x9e,
0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,
0xb,0x13,0x1,0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,
0xd8,0x1,0xe,0xc,0x5,0x27,0x3e,0x61,0xd2,0x2b,0x0,0x0,0x0,0x66,0x49,0x44,
0x41,0x54,0x78,0xda,0xb5,0x90,0xc1,0x9,0xc0,0x30,0xc,0x3,0xe5,0xd2,0x4d,0x82,
0x31,0xce,0xfe,0xb3,0x64,0x8e,0x4c,0x20,0xf5,0x15,0x68,0x4a,0xa,0xe9,0xa3,0x6,
0x7f,0xac,0x93,0x41,0xb2,0xde,0x3b,0x76,0xe7,0x94,0xb4,0xf,0x93,0xfc,0xe9,0xf3,
0x27,0x78,0x4,0x6c,0xad,0xbd,0xba,0x6a,0xad,0x6,0x0,0x87,0x24,0x48,0x42,0x66,
0xda,0xa,0xcc,0x4c,0x1b,0xcc,0x41,0x12,0x63,0x23,0x62,0x32,0x44,0x84,0xdd,0xf5,
0x9,0x26,0x9,0x77,0x37,0x0,0x70,0x77,0x7b,0x6a,0xcb,0xea,0x4a,0x29,0xb6,0xba,
0xff,0xd7,0xf3,0x5,0x43,0xca,0x5a,0x72,0xdd,0x8f,0xc1,0x77,0x0,0x0,0x0,0x0,
0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// C:/work/IfcPlusPlus/trunk/examples/SimpleViewerExampleQt/Resources/img/bulb.png
0x0,0x0,0x3,0xb2,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x14,0x0,0x0,0x0,0x16,0x8,0x6,0x0,0x0,0x0,0xc0,0x41,0xbc,0x6,
0x0,0x0,0x0,0x1,0x73,0x52,0x47,0x42,0x0,0xae,0xce,0x1c,0xe9,0x0,0x0,0x0,
0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,0xa7,0x93,0x0,
0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0xb,0x13,0x0,0x0,0xb,0x13,0x1,
0x0,0x9a,0x9c,0x18,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,0xdb,0x1,0x7,
0x13,0x1b,0x21,0xef,0xa5,0x91,0xa8,0x0,0x0,0x0,0x1d,0x69,0x54,0x58,0x74,0x43,
0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x0,0x0,0x0,0x0,0x0,0x43,0x72,0x65,0x61,0x74,
0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x47,0x49,0x4d,0x50,0x64,0x2e,0x65,0x7,
0x0,0x0,0x3,0x9,0x49,0x44,0x41,0x54,0x38,0xcb,0x95,0x94,0xbb,0x6f,0x5c,0x45,
0x14,0xc6,0x7f,0x67,0xe6,0xbe,0xf6,0x71,0xbd,0xf,0x3f,0xb0,0x63,0x17,0x46,0x11,
0x72,0x50,0x8a,0x40,0x24,0x28,0x10,0x54,0x14,0x54,0x34,0x94,0x48,0x14,0x88,0xff,
0x81,0x7f,0x81,0xa,0x89,0x2,0x89,0x96,0x92,0x1e,0x21,0xa,0x88,0x22,0x41,0x13,
0x2,0x14,0x89,0x84,0x90,0x12,0xec,0x8,0x11,0xc7,0x24,0xb6,0xb3,0x76,0x96,0xdd,
0xbd,0xcf,0x39,0x14,0x5e,0xef,0x3a,0xbb,0xd7,0x16,0x7c,0x53,0xdc,0x91,0x66,0xee,
0x37,0xe7,0x9c,0xef,0x3b,0x47,0x54,0x55,0xa9,0x80,0xaa,0x22,0x22,0x28,0x20,0x30,
0xf9,0x4e,0x37,0xd5,0xf0,0xce,0x23,0x12,0x11,0x54,0x61,0x30,0xfa,0x95,0xdc,0xfd,
0x84,0x11,0x8b,0xc8,0x9b,0x2c,0xd4,0xaf,0x8e,0x2f,0x2,0x32,0xcf,0x2e,0x67,0x23,
0x54,0x14,0x41,0x28,0x55,0xe9,0x8f,0x3e,0x25,0xe7,0x33,0x5c,0xe0,0x83,0x6c,0xe1,
0xc8,0x31,0xee,0x1e,0x92,0x37,0x89,0xe4,0x63,0x16,0x6a,0x1f,0x72,0x86,0xb9,0x8a,
0xf0,0xe4,0xa0,0x74,0x39,0xfb,0x47,0xef,0x52,0xeb,0xdc,0x41,0x5c,0x93,0xd2,0x6c,
0xa2,0x12,0xa3,0x4e,0x31,0xf4,0x11,0x1e,0x10,0x88,0xf2,0x4f,0xef,0x1d,0x96,0x3a,
0x5f,0x60,0x66,0xd2,0x37,0xd3,0x54,0x85,0x42,0x61,0xd8,0xff,0x9c,0xa0,0xbd,0x47,
0xa8,0x80,0x8e,0xf0,0xe8,0x41,0xf9,0x14,0xf4,0x10,0xd1,0x3,0x44,0xb,0x4a,0x27,
0x34,0x5b,0x77,0xe9,0xf7,0xbf,0x44,0xc7,0x6b,0x8e,0x10,0x1,0xdc,0x88,0x44,0xbe,
0xc6,0x57,0x87,0x95,0x2e,0xe2,0x5d,0xa2,0x60,0x9,0x27,0xcb,0x94,0xb2,0x4c,0x29,
0x5d,0x44,0x56,0x51,0x6d,0xe1,0xdb,0x67,0x64,0xe5,0x57,0x94,0x6e,0x9c,0xdc,0xac,
0x28,0x2,0xf4,0x7b,0xdf,0x12,0xc6,0xb,0x4,0x32,0x20,0x75,0x5d,0x32,0xb9,0x8e,
0xf2,0x3a,0x35,0xf3,0x22,0x82,0x25,0x75,0xf,0x48,0xf5,0x7,0x42,0x7b,0x7,0xf4,
0x11,0xb5,0xe0,0x90,0x74,0x74,0x97,0x46,0xe3,0x5a,0x45,0x84,0x40,0x91,0xdd,0xa3,
0xa4,0x85,0x23,0xc4,0x98,0x1a,0xa5,0xeb,0x22,0x6a,0xc8,0x8b,0x1e,0x79,0xf9,0x18,
0xc7,0x8,0x25,0x46,0x34,0x42,0x9d,0xc5,0x60,0x49,0x46,0xf,0xcf,0xb7,0x8d,0xb0,
0x8e,0x71,0xf7,0xb1,0x4e,0xb0,0xee,0x6f,0xa,0xfb,0x33,0x89,0xee,0x52,0x10,0x63,
0x5,0x8c,0x1e,0x52,0xd7,0x5d,0x22,0xe9,0x21,0x85,0x25,0x19,0x8e,0xf0,0xc3,0x95,
0xf3,0x6d,0x93,0x64,0xc7,0x1c,0x3f,0xfe,0x88,0x78,0x75,0x81,0x60,0x78,0x1b,0x87,
0xe0,0xbc,0x8,0xc5,0x3,0x14,0xab,0x19,0x86,0x1c,0x91,0x0,0x9c,0xcf,0xfe,0x23,
0x8f,0xe5,0xad,0x1f,0xb1,0x2a,0x13,0xe7,0x78,0x9c,0x71,0x93,0xef,0xb7,0xa0,0xb8,
0x8e,0xa3,0x87,0xe,0x3b,0x98,0xec,0x2f,0xc4,0x24,0xa8,0x8c,0xab,0x2c,0x2,0xd6,
0xc7,0x89,0xe2,0xb0,0x18,0xff,0xbd,0x39,0x6f,0x4f,0x23,0x54,0x5,0x11,0x46,0xc9,
0x13,0x9e,0x6e,0x7f,0xc0,0xa5,0xcd,0x75,0xb2,0xdf,0x6f,0xa2,0x79,0xa,0xc6,0xe0,
0x50,0xc4,0x58,0xfc,0x85,0x36,0xd2,0x88,0xd8,0xfe,0x23,0xe1,0xf2,0x5b,0xbf,0x60,
0x6d,0x30,0xe9,0xae,0x19,0xdb,0x9c,0xf4,0x6d,0x2d,0x5a,0xa1,0xbe,0xf4,0x9,0xfd,
0x81,0xa0,0x8d,0x75,0x5c,0xa2,0x94,0xc3,0x2,0x1d,0x38,0xf2,0x32,0x40,0x6d,0x48,
0x6f,0xaf,0x60,0xe3,0xb5,0x6f,0x4e,0xc8,0x98,0x92,0xcd,0xa9,0x2c,0xe3,0xe4,0x5b,
0x2b,0xaf,0x92,0x67,0xaf,0xe0,0x75,0xd6,0x50,0xad,0x51,0x14,0x96,0x34,0xf3,0xa0,
0xf0,0x31,0x9e,0x25,0xaf,0xbd,0x4f,0x54,0x5f,0x1b,0xff,0x23,0xd5,0x9d,0x32,0xad,
0xa5,0x60,0x44,0x10,0x79,0x19,0xeb,0x2b,0x36,0x2e,0x31,0x71,0x86,0x46,0x3,0x6c,
0x2d,0xc5,0x15,0x19,0x61,0xf7,0x6d,0x44,0xec,0x7f,0x9b,0x36,0xa7,0xef,0x59,0xbb,
0xc1,0xe0,0xd9,0x1,0xba,0x58,0x22,0x3a,0x44,0x72,0x25,0xcd,0xfb,0xc,0xf7,0x23,
0x9a,0xd7,0x2e,0xcf,0x45,0x56,0x69,0x9b,0x59,0xec,0xed,0xfe,0x46,0x96,0x1e,0xd1,
0x7b,0xf2,0x90,0x9d,0xed,0x1d,0x3a,0xed,0x17,0x78,0xe9,0xea,0x1b,0x6c,0x6c,0x5e,
0x39,0x77,0x1e,0x56,0x12,0x9e,0x8e,0xb1,0x34,0x49,0xb9,0xbf,0xf3,0x27,0xfd,0xa3,
0x63,0x16,0x17,0x3b,0xd4,0x9b,0x11,0x9d,0x76,0x9b,0x46,0xa3,0x39,0xb9,0x33,0xb,
0x53,0xf9,0xca,0x44,0x9e,0x53,0x5,0x95,0xb2,0x70,0x50,0x9c,0xc,0xdd,0x2a,0x31,
0x2e,0x24,0x9c,0x3a,0x49,0x8,0x7c,0x43,0x1c,0xc7,0xe4,0x59,0xca,0x61,0xef,0xe0,
0xb9,0xc9,0xf2,0xbf,0x8,0x55,0x95,0x30,0xc,0x59,0x5b,0x5d,0xe1,0xc6,0xf7,0xdf,
0x71,0xeb,0xf6,0x2d,0xb6,0xae,0x6c,0xd1,0x8c,0x9b,0x5c,0x50,0xf6,0x8b,0x45,0x39,
0x45,0x9e,0xe7,0x88,0x8,0x9e,0xe7,0x3d,0xd7,0x15,0x55,0xf8,0x17,0xff,0xb4,0x72,
0xb7,0xea,0x55,0xcf,0xbb,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,
0x82,
// C:/work/IfcPlusPlus/trunk/examples/SimpleViewerExampleQt/Resources/img/IfcPlusPlusViewerWindowIcon.png
0x0,0x0,0x3,0x7f,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x8,0x6,0x0,0x0,0x0,0x1f,0xf3,0xff,0x61,
0x0,0x0,0x0,0x6,0x62,0x4b,0x47,0x44,0x0,0xff,0x0,0xff,0x0,0xff,0xa0,0xbd,
0xa7,0x93,0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x0,0x2e,0x23,0x0,0x0,
0x2e,0x23,0x1,0x78,0xa5,0x3f,0x76,0x0,0x0,0x0,0x7,0x74,0x49,0x4d,0x45,0x7,
0xdd,0xc,0x1e,0xb,0x18,0x39,0xc6,0x9,0x97,0x4c,0x0,0x0,0x0,0x1d,0x69,0x54,
0x58,0x74,0x43,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x0,0x0,0x0,0x0,0x0,0x43,0x72,
0x65,0x61,0x74,0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x47,0x49,0x4d,0x50,0x64,
0x2e,0x65,0x7,0x0,0x0,0x2,0xe3,0x49,0x44,0x41,0x54,0x38,0xcb,0x75,0x92,0x4b,
0x68,0x9c,0x65,0x14,0x86,0x9f,0x73,0xbe,0x7f,0x26,0x63,0x33,0x93,0x49,0xd3,0x84,
0xc4,0x24,0xea,0xa2,0x62,0x49,0x1a,0x8b,0x1b,0xdd,0xa8,0xb8,0x51,0x2c,0xae,0x74,
0xd1,0xb4,0x60,0x8,0xb4,0x4d,0x42,0x13,0xa1,0x42,0xb0,0x49,0xa1,0x42,0xa6,0x9,
0xa,0xc6,0xa0,0x22,0x98,0x44,0x69,0xad,0x5a,0xc1,0x50,0x10,0xd1,0x8d,0xe0,0x42,
0xba,0xa8,0x8b,0xe0,0xb5,0xba,0xb1,0x56,0x42,0xd3,0x66,0xa6,0xb4,0x96,0x99,0xb6,
0x99,0x69,0xe6,0xf2,0xff,0xdf,0x71,0x11,0x5b,0x2f,0x98,0x3,0x67,0xf9,0x3c,0xe7,
0xc0,0xfb,0xca,0xfe,0x89,0x77,0x0,0x76,0xa8,0xb,0xba,0x2f,0x47,0xb9,0x2f,0x5a,
0xe9,0x6c,0x77,0xe2,0x1f,0x5,0x53,0x0,0x6f,0x7e,0xf9,0xd8,0xd1,0x91,0xaf,0x1,
0xd9,0x37,0x31,0xff,0x78,0x20,0x3c,0xe8,0x81,0xc8,0xe4,0xec,0xfb,0x99,0xa1,0x33,
0x32,0x90,0x99,0x7,0x18,0x57,0x95,0x21,0xc1,0xef,0xf4,0xa6,0x4f,0x89,0x30,0x3,
0xf6,0x23,0x50,0xc3,0xf8,0xaa,0xe0,0x2f,0xcf,0x34,0xba,0xf6,0x61,0x8c,0x43,0x22,
0x64,0xc1,0xd6,0x30,0xa9,0xd4,0x7c,0x34,0x1c,0xa8,0x0,0xe0,0xfe,0x5a,0x30,0x62,
0x8,0x85,0x5a,0x14,0x8e,0xc7,0xca,0xb1,0x5f,0xa,0x89,0x5a,0x94,0xa2,0xf5,0x1,
0x31,0x86,0xd,0x3b,0x1d,0x56,0xc2,0x23,0x54,0x4b,0xf9,0x20,0xd9,0xd8,0xed,0xb9,
0x2b,0x17,0xf0,0xff,0xa3,0x4e,0x83,0x1e,0x9f,0x94,0x78,0x43,0xc8,0x45,0xa7,0xae,
0xb,0xa1,0xc3,0xbc,0x4d,0xbd,0x37,0x39,0xbc,0x5c,0x2c,0xad,0xb1,0xe7,0xc4,0x43,
0x8b,0x40,0xdd,0x46,0x82,0x16,0x41,0x86,0x30,0x8b,0x44,0xdd,0x9,0x13,0xca,0x22,
0x82,0x19,0x5,0xa7,0x4a,0x3a,0x55,0x4f,0x4b,0x22,0x8e,0x99,0x54,0x74,0x3,0xc1,
0x15,0xf1,0x1c,0xae,0x94,0xfd,0xb3,0x51,0x31,0x76,0x32,0x32,0xae,0x60,0x86,0xaa,
0xf6,0x0,0xf4,0x66,0x32,0x94,0x73,0xbb,0xe2,0x66,0xb0,0x91,0x80,0x90,0x28,0xf7,
0xc6,0xa1,0xe7,0xb3,0x61,0xac,0xb6,0x1a,0x56,0xfc,0x4f,0xc0,0x37,0x22,0xb2,0x77,
0x70,0xf2,0xdd,0xd1,0xb4,0x6b,0xeb,0x4f,0xcb,0xdd,0x47,0xea,0xaf,0x1d,0xdc,0xaa,
0x98,0x80,0x49,0xd6,0x8c,0xef,0x23,0x71,0x21,0xeb,0xd7,0xbe,0x53,0x82,0xea,0x96,
0xc6,0x14,0x1f,0xbe,0x72,0x80,0x20,0x26,0xd9,0x30,0xb2,0x57,0xc1,0x16,0x5,0xe9,
0x57,0xf4,0x5,0x51,0x49,0x16,0x4b,0x51,0x5e,0x6,0x27,0xe6,0x0,0xf6,0x7b,0x82,
0xcf,0x7e,0x67,0x25,0xf,0x4,0xf7,0xd3,0xd9,0xf0,0xd6,0x58,0x5f,0x3e,0xb9,0x29,
0xb1,0xfe,0x4d,0x14,0x31,0x30,0x35,0x5,0x90,0x70,0x34,0x37,0x45,0x88,0xbf,0xc0,
0x1f,0xd7,0x4e,0x67,0x32,0x61,0x20,0xaa,0xdc,0xba,0x79,0x73,0xe1,0xcd,0x97,0xf,
0x94,0x5e,0x3c,0xf5,0xc8,0x93,0x82,0xe5,0xa7,0x77,0x7f,0xfb,0xc3,0x6d,0x18,0xa0,
0xff,0xf8,0x8e,0xc7,0x68,0x87,0xb7,0x7b,0x17,0xcf,0x94,0x2b,0x95,0xdc,0xa6,0x44,
0x9c,0xa6,0x74,0x6a,0x3d,0xae,0x55,0x4f,0xf3,0xc9,0x99,0x97,0x4a,0x3b,0x4f,0xa5,
0x62,0x6a,0xba,0x4f,0xcc,0x3d,0xd3,0x94,0x4e,0xde,0x81,0x25,0x23,0xaa,0x26,0xbb,
0x3,0x64,0x57,0xcb,0xe6,0x94,0x74,0xb6,0x6e,0xb9,0x3,0x3,0x88,0x99,0xd1,0x37,
0xbb,0xed,0x61,0x9,0x62,0xf7,0xa,0x1c,0x4,0xb2,0x1e,0x5b,0x50,0xf1,0xbf,0xd6,
0x6a,0x3e,0xe1,0x54,0xb7,0x8a,0xba,0x1,0x1,0x33,0xfc,0xb1,0x30,0x8c,0x96,0x3e,
0x19,0x39,0xf7,0xf3,0x6d,0x41,0xd0,0x9b,0x91,0x78,0x5d,0x5b,0xd7,0x13,0x18,0x4f,
0x23,0xd2,0x83,0xd0,0xa1,0x46,0xb3,0x45,0xee,0xe3,0x20,0x90,0x7a,0x41,0x9f,0x43,
0xa4,0x7,0x3,0x41,0x47,0x5c,0x20,0x9f,0x2,0x7f,0xb,0x52,0x6e,0xb6,0x7a,0xa9,
0x78,0x74,0xae,0xb9,0x21,0xfd,0x41,0x60,0xf1,0x79,0xc4,0x7e,0x2b,0xb3,0xf6,0xda,
0x66,0x5d,0xba,0x75,0x2e,0x7e,0x9f,0xeb,0x58,0xb3,0x5,0x75,0xc9,0x69,0x4c,0x6c,
0xb5,0xae,0x38,0x76,0xfd,0x2,0xe5,0x7f,0xc6,0x1d,0xa8,0x29,0xf7,0x5c,0x1d,0x2d,
0x9d,0x6d,0x18,0xaf,0x76,0xc9,0xf6,0xf3,0xe2,0xfd,0xc5,0x85,0xc1,0xf3,0x37,0x54,
0x15,0xef,0x7d,0xcd,0x4d,0xba,0x6a,0x5f,0x5b,0xf7,0x92,0xa9,0xd9,0xe7,0x7b,0x97,
0x6f,0x98,0x99,0xfd,0xab,0xf3,0xe2,0x85,0xe3,0xd3,0x63,0x7c,0xb9,0x67,0xa5,0x56,
0x51,0x7b,0xbd,0x20,0xd7,0x3f,0x52,0x5d,0xef,0x97,0xaa,0x72,0x75,0x74,0xc5,0x57,
0xb4,0x3c,0x5b,0xa5,0x3c,0xf7,0x5f,0x18,0xe0,0x4f,0x6c,0xd3,0x42,0xbe,0xd9,0x24,
0xbb,0xa0,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// C:/work/IfcPlusPlus/trunk/examples/SimpleViewerExampleQt/Resources/img/appicon.ico
0x0,0x0,0x1c,0xee,
0x0,
0x0,0x1,0x0,0x3,0x0,0x10,0x10,0x0,0x0,0x1,0x0,0x8,0x0,0x68,0x5,0x0,
0x0,0x36,0x0,0x0,0x0,0x20,0x20,0x0,0x0,0x1,0x0,0x8,0x0,0xa8,0x8,0x0,
0x0,0x9e,0x5,0x0,0x0,0x30,0x30,0x0,0x0,0x1,0x0,0x8,0x0,0xa8,0xe,0x0,
0x0,0x46,0xe,0x0,0x0,0x28,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x20,0x0,0x0,
0x0,0x1,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0x83,0x67,
0x0,0x9c,0x86,0x6b,0x0,0x9d,0x87,0x6d,0x0,0x9e,0x88,0x6d,0x0,0xa2,0x8d,0x74,
0x0,0xa3,0x8e,0x75,0x0,0x3a,0xa0,0x68,0x0,0xa5,0x91,0x78,0x0,0xa6,0x92,0x7a,
0x0,0x40,0xa3,0x6c,0x0,0xa8,0x94,0x7d,0x0,0xa9,0x95,0x7e,0x0,0xab,0x98,0x81,
0x0,0x48,0xa7,0x73,0x0,0xac,0x99,0x82,0x0,0xad,0x9b,0x84,0x0,0xae,0x9c,0x86,
0x0,0xaf,0x9e,0x88,0x0,0xb1,0xa0,0x8b,0x0,0xb5,0xa3,0x90,0x0,0xb5,0xa4,0x90,
0x0,0x5e,0xb1,0x84,0x0,0x63,0xb3,0x87,0x0,0xb7,0xa7,0x94,0x0,0x64,0xb4,0x88,
0x0,0xb9,0xa9,0x96,0x0,0x68,0xb6,0x8b,0x0,0x69,0xb6,0x8c,0x0,0xbc,0xad,0x9b,
0x0,0x70,0xb9,0x91,0x0,0xbf,0xb0,0x9f,0x0,0x74,0xbb,0x94,0x0,0x74,0xbc,0x95,
0x0,0x7d,0xc0,0x9b,0x0,0x7e,0xc0,0x9c,0x0,0xc6,0xb9,0xa9,0x0,0x84,0xc3,0xa0,
0x0,0x86,0xc5,0xa2,0x0,0xca,0xbe,0xb0,0x0,0x8e,0xc9,0xa8,0x0,0x8f,0xc9,0xa9,
0x0,0xcd,0xc2,0xb5,0x0,0xce,0xc3,0xb6,0x0,0x97,0xcc,0xaf,0x0,0xcf,0xc4,0xb7,
0x0,0x99,0xcd,0xb1,0x0,0xd0,0xc6,0xb9,0x0,0x9a,0xcf,0xb1,0x0,0xd2,0xc7,0xbb,
0x0,0x9d,0xcf,0xb4,0x0,0xd2,0xc8,0xbb,0x0,0xd3,0xc9,0xbd,0x0,0xd3,0xc9,0xbe,
0x0,0xd3,0xca,0xbe,0x0,0xd4,0xca,0xbe,0x0,0xd4,0xcb,0xbf,0x0,0xd6,0xcd,0xc3,
0x0,0xa7,0xd4,0xbc,0x0,0xa6,0xd5,0xbb,0x0,0xd7,0xce,0xc3,0x0,0xa8,0xd5,0xbc,
0x0,0xd7,0xce,0xc4,0x0,0xd9,0xcf,0xc6,0x0,0xd8,0xd0,0xc5,0x0,0xd9,0xd1,0xc7,
0x0,0xb0,0xd8,0xc2,0x0,0xdb,0xd2,0xc9,0x0,0xdb,0xd3,0xc9,0x0,0xdd,0xd5,0xcc,
0x0,0xb9,0xdd,0xc9,0x0,0xba,0xdd,0xca,0x0,0xe0,0xd9,0xd0,0x0,0xe0,0xd9,0xd1,
0x0,0xbb,0xdf,0xcb,0x0,0xbd,0xdf,0xcc,0x0,0xe3,0xdb,0xd5,0x0,0xe3,0xdd,0xd6,
0x0,0xe4,0xde,0xd6,0x0,0xc5,0xe3,0xd3,0x0,0xe5,0xdf,0xd8,0x0,0xe5,0xe0,0xd9,
0x0,0xe7,0xe0,0xd9,0x0,0xcc,0xe7,0xd7,0x0,0xe9,0xe3,0xde,0x0,0xd1,0xe8,0xdc,
0x0,0xeb,0xe7,0xe2,0x0,0xd4,0xeb,0xde,0x0,0xd7,0xeb,0xe0,0x0,0xec,0xe8,0xe3,
0x0,0xef,0xeb,0xe7,0x0,0xef,0xec,0xe8,0x0,0xf0,0xec,0xe8,0x0,0xde,0xef,0xe6,
0x0,0xf1,0xed,0xe9,0x0,0xf1,0xed,0xea,0x0,0xf1,0xee,0xea,0x0,0xf1,0xee,0xeb,
0x0,0xf3,0xf0,0xed,0x0,0xf3,0xf1,0xee,0x0,0xf4,0xf2,0xef,0x0,0xf6,0xf4,0xf1,
0x0,0xf7,0xf5,0xf3,0x0,0xed,0xf7,0xf1,0x0,0xef,0xf7,0xf3,0x0,0xf8,0xf6,0xf4,
0x0,0xf0,0xf8,0xf3,0x0,0xf0,0xf8,0xf4,0x0,0xf8,0xf7,0xf6,0x0,0xf9,0xf7,0xf6,
0x0,0xf2,0xf9,0xf5,0x0,0xf9,0xf8,0xf7,0x0,0xf4,0xf9,0xf6,0x0,0xf9,0xf9,0xf7,
0x0,0xf7,0xfa,0xf8,0x0,0xf5,0xfb,0xf7,0x0,0xfa,0xfa,0xf9,0x0,0xfb,0xfa,0xf9,
0x0,0xf7,0xfb,0xf8,0x0,0xf8,0xfb,0xf9,0x0,0xf9,0xfb,0xfb,0x0,0xfb,0xfb,0xfb,
0x0,0xfc,0xfc,0xfb,0x0,0xfa,0xfd,0xfb,0x0,0xfa,0xfd,0xfc,0x0,0xfd,0xfd,0xfd,
0x0,0xfe,0xfe,0xfe,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x7e,0x7e,
0x67,0x72,0x7e,0x7e,0x7e,0x7d,0x6d,0x6d,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7a,
0x27,0x39,0x7e,0x7e,0x7e,0x7c,0x2d,0x2f,0x7d,0x7e,0x7d,0x7e,0x7e,0x7e,0x6f,0x66,
0x1d,0x28,0x6d,0x7b,0x75,0x6a,0x21,0x22,0x69,0x71,0x7e,0x7e,0x7e,0x77,0x31,0x16,
0x6,0xd,0x18,0x41,0x3a,0x18,0x9,0x9,0x18,0x3c,0x7e,0x7d,0x7e,0x7e,0x54,0x45,
0x15,0x20,0x4a,0x5c,0x57,0x46,0x1a,0x1b,0x49,0x57,0x7e,0x7e,0x7e,0x64,0x7e,0x7a,
0x1f,0x2b,0x7e,0x7e,0x7e,0x7c,0x24,0x25,0x7d,0x7e,0x7e,0x7e,0x7d,0x7e,0x6e,0x7e,
0x4e,0x56,0x7e,0x7e,0x7e,0x7e,0x52,0x52,0x7d,0x7e,0x7e,0x7e,0x7e,0x7e,0x38,0x65,
0x7e,0x79,0x65,0x7e,0x7e,0x7e,0x7e,0x7e,0x73,0x62,0x63,0x79,0x7e,0x7e,0x3e,0x19,
0x5f,0x42,0x17,0x59,0x7e,0x7d,0x7e,0x4f,0x1e,0xc,0x10,0x23,0x68,0x7e,0x29,0x7,
0x5a,0x30,0x5,0x58,0x7e,0x7e,0x61,0x14,0xb,0x2e,0x3f,0x26,0x5e,0x7e,0x29,0x7,
0x5a,0x30,0x5,0x4b,0x61,0x6c,0x47,0x2,0x2c,0x7e,0x7e,0x78,0x7e,0x7e,0x29,0x7,
0x5a,0x30,0x0,0xe,0xf,0x35,0x3b,0x3,0x48,0x7e,0x7e,0x7d,0x7e,0x7e,0x29,0x7,
0x5a,0x30,0x4,0x37,0x4d,0x5a,0x44,0x2,0x40,0x7e,0x7e,0x7e,0x76,0x7d,0x29,0x7,
0x5a,0x30,0x5,0x50,0x6c,0x6e,0x58,0xa,0x1c,0x60,0x6b,0x53,0x74,0x7e,0x2a,0x8,
0x5a,0x36,0x1,0x11,0x12,0x29,0x78,0x32,0x5,0x10,0x12,0x13,0x5d,0x7e,0x55,0x43,
0x70,0x5b,0x3e,0x3d,0x3d,0x4c,0x7e,0x7d,0x4f,0x34,0x33,0x51,0x7e,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x0,0x0,
0x0,0x20,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x1,0x0,0x8,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x9a,0x84,0x68,0x0,0x9c,0x86,0x6a,0x0,0x9d,0x87,0x6c,
0x0,0x9e,0x88,0x6e,0x0,0x9f,0x89,0x6e,0x0,0x9f,0x89,0x6f,0x0,0x2d,0x9a,0x5e,
0x0,0xa2,0x8d,0x74,0x0,0xa3,0x8e,0x75,0x0,0xa4,0x90,0x77,0x0,0xa6,0x92,0x79,
0x0,0xa6,0x92,0x7a,0x0,0x3e,0xa2,0x6b,0x0,0x3f,0xa2,0x6b,0x0,0xa7,0x93,0x7b,
0x0,0xa8,0x94,0x7c,0x0,0xa9,0x95,0x7d,0x0,0x44,0xa4,0x6f,0x0,0xa9,0x96,0x7e,
0x0,0x45,0xa5,0x70,0x0,0x47,0xa6,0x72,0x0,0x48,0xa6,0x72,0x0,0x48,0xa7,0x73,
0x0,0x49,0xa7,0x73,0x0,0xab,0x99,0x82,0x0,0x4b,0xa8,0x74,0x0,0xad,0x9a,0x83,
0x0,0x4d,0xa9,0x76,0x0,0xad,0x9b,0x85,0x0,0xae,0x9b,0x86,0x0,0xae,0x9c,0x86,
0x0,0xaf,0x9d,0x87,0x0,0xb3,0xa3,0x8e,0x0,0xb5,0xa4,0x90,0x0,0x5e,0xb1,0x83,
0x0,0x5f,0xb1,0x84,0x0,0xb6,0xa5,0x92,0x0,0xb7,0xa6,0x93,0x0,0xb7,0xa7,0x93,
0x0,0xb7,0xa7,0x94,0x0,0xb8,0xa8,0x95,0x0,0xb9,0xaa,0x96,0x0,0xba,0xaa,0x97,
0x0,0xbd,0xae,0x9d,0x0,0xbe,0xaf,0x9e,0x0,0x73,0xbb,0x93,0x0,0x74,0xbb,0x94,
0x0,0x75,0xbc,0x94,0x0,0xbf,0xb1,0xa0,0x0,0x75,0xbc,0x95,0x0,0xc0,0xb2,0xa1,
0x0,0xc1,0xb3,0xa2,0x0,0xc2,0xb5,0xa5,0x0,0xc3,0xb5,0xa5,0x0,0xc3,0xb6,0xa6,
0x0,0xc4,0xb7,0xa7,0x0,0xc4,0xb7,0xa8,0x0,0xc5,0xb8,0xa8,0x0,0x82,0xc2,0x9f,
0x0,0xc7,0xba,0xab,0x0,0xc8,0xbc,0xad,0x0,0xc9,0xbd,0xaf,0x0,0x8b,0xc6,0xa6,
0x0,0xca,0xbe,0xb0,0x0,0x8d,0xc7,0xa7,0x0,0xcc,0xc0,0xb3,0x0,0x93,0xca,0xac,
0x0,0xcd,0xc2,0xb4,0x0,0x94,0xcb,0xad,0x0,0x95,0xcb,0xad,0x0,0xce,0xc4,0xb6,
0x0,0xcf,0xc4,0xb7,0x0,0xcf,0xc5,0xb8,0x0,0x9c,0xcc,0xb2,0x0,0xd3,0xc9,0xbd,
0x0,0xa2,0xd1,0xb7,0x0,0xd4,0xca,0xbe,0x0,0xd5,0xcb,0xc0,0x0,0xa4,0xd3,0xb9,
0x0,0xd6,0xcc,0xc2,0x0,0xac,0xd6,0xbf,0x0,0xd9,0xd0,0xc6,0x0,0xad,0xd7,0xc0,
0x0,0xae,0xd7,0xc0,0x0,0xd9,0xd1,0xc6,0x0,0xda,0xd2,0xc7,0x0,0xaf,0xd8,0xc2,
0x0,0xda,0xd2,0xc8,0x0,0xb5,0xdb,0xc6,0x0,0xb7,0xdc,0xc7,0x0,0xde,0xd7,0xce,
0x0,0xbe,0xdf,0xcd,0x0,0xbf,0xdf,0xce,0x0,0xe1,0xdb,0xd3,0x0,0xc1,0xe0,0xcf,
0x0,0xe3,0xdc,0xd5,0x0,0xe4,0xde,0xd7,0x0,0xe5,0xdf,0xd9,0x0,0xe5,0xe0,0xd9,
0x0,0xe6,0xe0,0xd9,0x0,0xe6,0xe0,0xda,0x0,0xcf,0xe4,0xd8,0x0,0xe6,0xe1,0xdb,
0x0,0xe7,0xe2,0xdc,0x0,0xe8,0xe3,0xdd,0x0,0xd1,0xe8,0xdb,0x0,0xea,0xe6,0xe0,
0x0,0xeb,0xe7,0xe1,0x0,0xd5,0xea,0xdf,0x0,0xd5,0xeb,0xdf,0x0,0xd7,0xeb,0xe0,
0x0,0xed,0xe8,0xe4,0x0,0xd9,0xec,0xe1,0x0,0xed,0xea,0xe5,0x0,0xee,0xea,0xe5,
0x0,0xdb,0xed,0xe3,0x0,0xdc,0xed,0xe4,0x0,0xee,0xeb,0xe7,0x0,0xef,0xeb,0xe7,
0x0,0xdd,0xee,0xe5,0x0,0xef,0xec,0xe8,0x0,0xde,0xef,0xe5,0x0,0xe4,0xef,0xea,
0x0,0xe4,0xf1,0xea,0x0,0xe5,0xf2,0xeb,0x0,0xf4,0xf1,0xef,0x0,0xf4,0xf2,0xf0,
0x0,0xea,0xf4,0xef,0x0,0xf5,0xf3,0xf0,0x0,0xf5,0xf3,0xf1,0x0,0xf6,0xf3,0xf1,
0x0,0xf6,0xf4,0xf2,0x0,0xed,0xf6,0xf1,0x0,0xf7,0xf5,0xf3,0x0,0xf7,0xf6,0xf4,
0x0,0xf8,0xf6,0xf5,0x0,0xf2,0xf8,0xf5,0x0,0xf9,0xf7,0xf6,0x0,0xf9,0xf8,0xf6,
0x0,0xf3,0xf9,0xf5,0x0,0xf9,0xf8,0xf7,0x0,0xfa,0xf9,0xf7,0x0,0xfa,0xf9,0xf8,
0x0,0xfa,0xf9,0xf9,0x0,0xfb,0xfa,0xf9,0x0,0xfb,0xfa,0xfa,0x0,0xfb,0xfb,0xfa,
0x0,0xfc,0xfb,0xfa,0x0,0xfa,0xfc,0xfb,0x0,0xfc,0xfc,0xfb,0x0,0xfd,0xfc,0xfc,
0x0,0xfb,0xfd,0xfc,0x0,0xfd,0xfd,0xfc,0x0,0xfc,0xfd,0xfd,0x0,0xfd,0xfd,0xfd,
0x0,0xfd,0xfe,0xfd,0x0,0xfd,0xfe,0xfe,0x0,0xfe,0xfe,0xfe,0x0,0xfe,0xff,0xff,
0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9d,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9d,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x98,0x9a,0x9f,0x9f,0x98,0x9a,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9a,0x91,0x92,0x9a,0x9d,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x78,0x47,0x5d,0x9a,0x72,0x46,0x60,0x9d,0x9f,0x9f,0x9f,
0x9d,0x76,0x4c,0x39,0x3b,0x51,0x81,0x9f,0x9f,0x97,0x88,0x9d,0x9f,0x9f,0x9f,0x9f,
0x97,0x88,0x9d,0x9f,0x9f,0x5a,0x5,0x36,0x93,0x57,0x3,0x3c,0x96,0x9f,0x9f,0x9d,
0x67,0x21,0x1,0x9,0xf,0x8,0x48,0x98,0x9c,0x5c,0x3a,0x7c,0x9f,0x9f,0x9f,0x9c,
0x5e,0x3a,0x7b,0x9f,0x9f,0x5a,0x5,0x34,0x93,0x55,0x3,0x3b,0x96,0x9f,0x9f,0x8d,
0x32,0x0,0x2b,0x62,0x71,0x54,0x5a,0x98,0x9b,0x4b,0x15,0x73,0x9f,0x9f,0x9f,0x9b,
0x4e,0x14,0x70,0x9f,0x9f,0x5a,0x5,0x34,0x93,0x55,0x3,0x37,0x85,0x89,0x92,0x78,
0x12,0x9,0x64,0x9f,0x9f,0x9d,0x95,0x79,0x6c,0x3e,0x13,0x59,0x6e,0x7f,0x79,0x6d,
0x40,0x11,0x58,0x6e,0x7a,0x5a,0x5,0x34,0x93,0x55,0x2,0xb,0x26,0x28,0x4f,0x63,
0x7,0x1c,0x80,0x9f,0x9f,0x9f,0x84,0x2f,0x19,0xc,0x6,0x17,0x1b,0x42,0x2d,0x19,
0xc,0x6,0x16,0x1b,0x49,0x5a,0x5,0x34,0x93,0x55,0x2,0xa,0x24,0x25,0x4d,0x61,
0x7,0x1e,0x83,0x9f,0x9f,0x9f,0x94,0x5b,0x50,0x2e,0xd,0x45,0x53,0x69,0x5b,0x50,
0x31,0xc,0x44,0x53,0x65,0x5a,0x5,0x34,0x93,0x55,0x3,0x38,0x85,0x8a,0x92,0x75,
0x10,0xf,0x6f,0x9f,0x9f,0x9d,0x9d,0x9f,0x9b,0x4b,0x15,0x73,0x9f,0x9f,0x9f,0x9b,
0x4e,0x14,0x70,0x9f,0x9f,0x5a,0x5,0x34,0x93,0x55,0x3,0x37,0x85,0x89,0x8e,0x8a,
0x2c,0x1,0x3f,0x82,0x8d,0x6b,0x6a,0x9d,0x9b,0x52,0x23,0x77,0x9f,0x9f,0x9f,0x9b,
0x56,0x22,0x74,0x9f,0x9f,0x5a,0x5,0x35,0x93,0x57,0x2,0xe,0x27,0x28,0x41,0x90,
0x5f,0x1a,0x4,0x21,0x2a,0x18,0x43,0x96,0x9f,0x88,0x77,0x99,0x9f,0x9f,0x9f,0x9f,
0x8b,0x77,0x99,0x9f,0x9f,0x66,0x28,0x4a,0x95,0x64,0x29,0x20,0x20,0x20,0x3d,0x8e,
0x9d,0x60,0x33,0x1f,0x1d,0x30,0x68,0x9d,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9a,0x86,0x8f,0x9f,0x98,0x87,0x86,0x86,0x86,0x8a,0x9f,
0x9f,0x9f,0x8e,0x7e,0x7d,0x8c,0x9d,0x9d,0x9f,0x9f,0x9a,0x9e,0x9f,0x9d,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9d,0x9f,0x9f,0x9d,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9d,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,0x9f,
0x9f,0x9f,0x9f,0x9f,0x9f,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x60,0x0,0x0,
0x0,0x1,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x99,0x82,0x67,
0x0,0x9a,0x83,0x67,0x0,0x9a,0x83,0x68,0x0,0x9b,0x85,0x6a,0x0,0x9d,0x87,0x6c,
0x0,0x9d,0x87,0x6d,0x0,0x2d,0x9a,0x5e,0x0,0x9f,0x8a,0x70,0x0,0x2f,0x9b,0x60,
0x0,0xa0,0x8b,0x71,0x0,0xa1,0x8b,0x71,0x0,0x32,0x9c,0x61,0x0,0xa1,0x8c,0x72,
0x0,0xa1,0x8c,0x73,0x0,0xa2,0x8d,0x74,0x0,0xa3,0x8e,0x74,0x0,0xa4,0x90,0x77,
0x0,0xac,0x94,0x77,0x0,0xa7,0x94,0x7b,0x0,0xa8,0x94,0x7d,0x0,0xa9,0x95,0x7e,
0x0,0xab,0x98,0x81,0x0,0xb1,0xa0,0x8a,0x0,0xb2,0xa1,0x8c,0x0,0xb4,0xa4,0x8f,
0x0,0xbf,0xa8,0x8c,0x0,0xb8,0xa8,0x95,0x0,0xb9,0xa9,0x96,0x0,0xbd,0xae,0x9c,
0x0,0xbd,0xaf,0x9d,0x0,0xbf,0xb0,0x9f,0x0,0xbf,0xb1,0xa0,0x0,0xc0,0xb2,0xa1,
0x0,0xc2,0xb5,0xa4,0x0,0xc3,0xb6,0xa6,0x0,0xc4,0xb7,0xa6,0x0,0x80,0xc1,0x9d,
0x0,0x84,0xc3,0xa1,0x0,0xc9,0xbd,0xaf,0x0,0xca,0xbe,0xaf,0x0,0xce,0xc4,0xb6,
0x0,0xd0,0xc6,0xb9,0x0,0x9c,0xcf,0xb3,0x0,0xd2,0xc8,0xbb,0x0,0xd3,0xc9,0xbd,
0x0,0xa3,0xd2,0xb9,0x0,0xd5,0xcc,0xc1,0x0,0xb0,0xd8,0xc2,0x0,0xda,0xd2,0xc8,
0x0,0xdb,0xd3,0xca,0x0,0xdc,0xd4,0xca,0x0,0xb6,0xdb,0xc6,0x0,0xe3,0xdd,0xd5,
0x0,0xe5,0xe0,0xd9,0x0,0xca,0xe5,0xd6,0x0,0xe6,0xe1,0xda,0x0,0xe7,0xe1,0xdb,
0x0,0xe7,0xe2,0xdc,0x0,0xcd,0xe7,0xd9,0x0,0xcf,0xe7,0xda,0x0,0xe9,0xe4,0xde,
0x0,0xeb,0xe6,0xe1,0x0,0xd6,0xeb,0xdf,0x0,0xec,0xe8,0xe3,0x0,0xef,0xec,0xe7,
0x0,0xf0,0xec,0xe9,0x0,0xf1,0xed,0xea,0x0,0xf1,0xee,0xea,0x0,0xf3,0xf0,0xed,
0x0,0xf3,0xf1,0xee,0x0,0xe7,0xf3,0xec,0x0,0xf4,0xf2,0xf0,0x0,0xea,0xf4,0xef,
0x0,0xf5,0xf3,0xf0,0x0,0xf5,0xf3,0xf1,0x0,0xf7,0xf5,0xf3,0x0,0xf7,0xf6,0xf4,
0x0,0xf8,0xf6,0xf4,0x0,0xf8,0xf7,0xf5,0x0,0xf9,0xf8,0xf7,0x0,0xf4,0xf9,0xf6,
0x0,0xf5,0xfa,0xf7,0x0,0xf7,0xfa,0xf8,0x0,0xf7,0xfb,0xf9,0x0,0xfb,0xfb,0xfa,
0x0,0xfc,0xfc,0xfb,0x0,0xfc,0xfc,0xfc,0x0,0xfd,0xfd,0xfc,0x0,0xfd,0xfd,0xfd,
0x0,0xfe,0xfe,0xfe,0x0,0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x11,0x11,0x11,
0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,
0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x11,0x19,0x19,0x19,
0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,
0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x19,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x4f,0x57,0x5a,0x5a,0x5a,0x4f,0x57,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x59,0x43,0x3f,0x47,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x22,
0x1,0xe,0x5a,0x5a,0x23,0x1,0xf,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x54,0x27,
0xc,0x1,0x1,0x1,0x12,0x2e,0x5a,0x5a,0x5a,0x5a,0x5a,0x52,0x53,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x52,0x53,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x1e,
0x1,0x5,0x5a,0x5a,0x1e,0x1,0x5,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x56,0x17,0x1,
0x1,0x1,0x1,0x1,0x1,0x1,0x4a,0x5a,0x5a,0x5a,0x52,0x8,0xb,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x52,0x8,0xb,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x1e,
0x1,0x5,0x5a,0x5a,0x1e,0x1,0x5,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x29,0x1,0x1,
0x13,0x37,0x58,0x4e,0x32,0x14,0x4b,0x5a,0x5a,0x5a,0x50,0x6,0x6,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x50,0x6,0x6,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x1e,
0x1,0x5,0x5a,0x5a,0x1e,0x1,0x5,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x12,0x1,0x2,
0x40,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x50,0x6,0x6,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x50,0x6,0x6,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x1e,
0x1,0x5,0x5a,0x5a,0x1e,0x1,0x5,0x5a,0x5a,0x5a,0x5a,0x5a,0x49,0x1,0x1,0x17,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x46,0x33,0x33,0x2f,0x6,0x6,0x33,0x33,0x33,
0x48,0x46,0x33,0x33,0x2f,0x6,0x6,0x33,0x33,0x33,0x48,0x5a,0x5a,0x5a,0x5a,0x1e,
0x1,0x5,0x5a,0x5a,0x1e,0x1,0x1,0xa,0xa,0xa,0xd,0x43,0x3d,0x1,0x1,0x21,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x2a,0x6,0x6,0x6,0x6,0x6,0x6,0x6,0x6,
0x2d,0x2a,0x6,0x6,0x6,0x6,0x6,0x6,0x6,0x6,0x2d,0x5a,0x5a,0x5a,0x5a,0x1e,
0x1,0x5,0x5a,0x5a,0x1e,0x1,0x1,0x1,0x1,0x1,0x1,0x3f,0x3c,0x1,0x1,0x23,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x3b,0x25,0x25,0x24,0x6,0x6,0x25,0x25,0x25,
0x3e,0x3b,0x25,0x25,0x24,0x6,0x6,0x25,0x25,0x25,0x3e,0x5a,0x5a,0x5a,0x5a,0x1e,
0x1,0x5,0x5a,0x5a,0x1e,0x1,0x4,0x41,0x41,0x41,0x42,0x5a,0x42,0x1,0x1,0x1b,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x50,0x6,0x6,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x50,0x6,0x6,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x1e,
0x1,0x5,0x5a,0x5a,0x1e,0x1,0x5,0x5a,0x5a,0x5a,0x5a,0x5a,0x59,0x9,0x1,0x10,
0x58,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x50,0x6,0x6,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x50,0x6,0x6,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x1e,
0x1,0x5,0x5a,0x5a,0x1e,0x1,0x5,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x21,0x1,0x1,
0x2b,0x5a,0x5a,0x5a,0x5a,0x34,0x5a,0x5a,0x5a,0x5a,0x51,0x6,0x6,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x51,0x6,0x6,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x1e,
0x1,0x5,0x5a,0x5a,0x1e,0x1,0x3,0x28,0x28,0x28,0x28,0x40,0x5a,0x44,0x7,0x1,
0x0,0x20,0x31,0x2c,0x16,0x1,0x4d,0x5a,0x5a,0x5a,0x5a,0x36,0x3a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x36,0x3a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x1e,
0x1,0x5,0x5a,0x5a,0x1f,0x1,0x1,0x1,0x1,0x1,0x1,0x29,0x5a,0x5a,0x38,0xa,
0x1,0x1,0x1,0x1,0x1,0xc,0x55,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x30,
0x1a,0x23,0x5a,0x5a,0x35,0x1d,0x1c,0x1c,0x1c,0x1c,0x1c,0x39,0x5a,0x5a,0x5a,0x4c,
0x28,0x18,0x15,0x17,0x26,0x45,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,
0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x5a,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
};
static const unsigned char qt_resource_name[] = {
// styles.css
0x0,0xa,
0x2,0xcd,0x12,0xa3,
0x0,0x73,
0x0,0x74,0x0,0x79,0x0,0x6c,0x0,0x65,0x0,0x73,0x0,0x2e,0x0,0x63,0x0,0x73,0x0,0x73,
// img
0x0,0x3,
0x0,0x0,0x70,0x37,
0x0,0x69,
0x0,0x6d,0x0,0x67,
// appicon.rc
0x0,0xa,
0xf,0xab,0x1b,0x43,
0x0,0x61,
0x0,0x70,0x0,0x70,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x72,0x0,0x63,
// RemoveSelectedObjects.png
0x0,0x19,
0xc,0xb8,0xfc,0x47,
0x0,0x52,
0x0,0x65,0x0,0x6d,0x0,0x6f,0x0,0x76,0x0,0x65,0x0,0x53,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x65,0x0,0x64,0x0,0x4f,0x0,0x62,0x0,0x6a,
0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x73,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// zoomBoundings.png
0x0,0x11,
0x4,0x33,0x5a,0xa7,
0x0,0x7a,
0x0,0x6f,0x0,0x6f,0x0,0x6d,0x0,0x42,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x73,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// dropDownArrow.png
0x0,0x11,
0xe,0x14,0x5f,0x47,
0x0,0x64,
0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x44,0x0,0x6f,0x0,0x77,0x0,0x6e,0x0,0x41,0x0,0x72,0x0,0x72,0x0,0x6f,0x0,0x77,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// bulb.png
0x0,0x8,
0xc,0x25,0x5a,0x67,
0x0,0x62,
0x0,0x75,0x0,0x6c,0x0,0x62,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// IfcPlusPlusViewerWindowIcon.png
0x0,0x1f,
0xb,0x19,0xec,0x27,
0x0,0x49,
0x0,0x66,0x0,0x63,0x0,0x50,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x50,0x0,0x6c,0x0,0x75,0x0,0x73,0x0,0x56,0x0,0x69,0x0,0x65,0x0,0x77,0x0,0x65,0x0,0x72,
0x0,0x57,0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x77,0x0,0x49,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// appicon.ico
0x0,0xb,
0xa,0xb1,0xa2,0x7f,
0x0,0x61,
0x0,0x70,0x0,0x70,0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x2e,0x0,0x69,0x0,0x63,0x0,0x6f,
};
static const unsigned char qt_resource_struct[] = {
// :
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x1,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/img
0x0,0x0,0x0,0x1a,0x0,0x2,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/styles.css
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
0x0,0x0,0x1,0x68,0x2e,0x59,0x77,0x24,
// :/appicon.rc
0x0,0x0,0x0,0x26,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x13,0x14,
0x0,0x0,0x1,0x68,0x2e,0x59,0x77,0x20,
// :/img/zoomBoundings.png
0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x16,0x71,
0x0,0x0,0x1,0x68,0x2e,0x59,0x77,0x24,
// :/img/appicon.ico
0x0,0x0,0x1,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1f,0xd4,
0x0,0x0,0x1,0x68,0x2e,0x59,0x77,0x22,
// :/img/IfcPlusPlusViewerWindowIcon.png
0x0,0x0,0x0,0xde,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1c,0x51,
0x0,0x0,0x1,0x68,0x2e,0x59,0x77,0x21,
// :/img/bulb.png
0x0,0x0,0x0,0xc8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x18,0x9b,
0x0,0x0,0x1,0x68,0x2e,0x59,0x77,0x23,
// :/img/RemoveSelectedObjects.png
0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x13,0x4a,
0x0,0x0,0x1,0x68,0x2e,0x59,0x77,0x22,
// :/img/dropDownArrow.png
0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x17,0xbe,
0x0,0x0,0x1,0x68,0x2e,0x59,0x77,0x23,
};
#ifdef QT_NAMESPACE
# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name
# define QT_RCC_MANGLE_NAMESPACE0(x) x
# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b
# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b)
# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \
QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE))
#else
# define QT_RCC_PREPEND_NAMESPACE(name) name
# define QT_RCC_MANGLE_NAMESPACE(name) name
#endif
#ifdef QT_NAMESPACE
namespace QT_NAMESPACE {
#endif
bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
#ifdef QT_NAMESPACE
}
#endif
int QT_RCC_MANGLE_NAMESPACE(qInitResources_ifcplusplus)();
int QT_RCC_MANGLE_NAMESPACE(qInitResources_ifcplusplus)()
{
QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData)
(0x2, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_ifcplusplus)();
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_ifcplusplus)()
{
QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData)
(0x2, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
namespace {
struct initializer {
initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_ifcplusplus)(); }
~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_ifcplusplus)(); }
} dummy;
}
|