project.pbxproj 64.3 KB
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
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 45;
	objects = {

/* Begin PBXBuildFile section */
		8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C165CFE840E0CC02AAC07 /* InfoPlist.strings */; };
		8D11072D0486CEB800E47090 /* Mac-OS-Sample-main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* Mac-OS-Sample-main.m */; settings = {ATTRIBUTES = (); }; };
		B568B0050F49D7CE00FA13C8 /* libz.1.2.3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = B568AFFB0F49D7AE00FA13C8 /* libz.1.2.3.dylib */; };
		B56DBB160F57FCC300963BC5 /* ASIHTTPRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B568B0D10F49FC7900FA13C8 /* ASIHTTPRequestTests.m */; };
		B56DBB170F57FCC600963BC5 /* ASINetworkQueueTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B5B03DA60EC5D0930089D01F /* ASINetworkQueueTests.m */; };
		B56DBB180F57FCC900963BC5 /* ASIFormDataRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B5B03F9B0EC5DEF80089D01F /* ASIFormDataRequestTests.m */; };
		B56DBB9C0F57FF1400963BC5 /* GHLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB6F0F57FF1400963BC5 /* GHLogger.m */; };
		B56DBB9D0F57FF1400963BC5 /* GHNSInvocation+Utils.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB710F57FF1400963BC5 /* GHNSInvocation+Utils.m */; };
		B56DBB9E0F57FF1400963BC5 /* GHNSObject+Invocation.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB730F57FF1400963BC5 /* GHNSObject+Invocation.m */; };
		B56DBB9F0F57FF1400963BC5 /* GTMLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB780F57FF1400963BC5 /* GTMLogger.m */; };
		B56DBBA00F57FF1400963BC5 /* GTMObjC2Runtime.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB7A0F57FF1400963BC5 /* GTMObjC2Runtime.m */; };
		B56DBBA10F57FF1400963BC5 /* GTMStackTrace.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB7C0F57FF1400963BC5 /* GTMStackTrace.m */; };
		B56DBBA20F57FF1400963BC5 /* README.md in Resources */ = {isa = PBXBuildFile; fileRef = B56DBB7E0F57FF1400963BC5 /* README.md */; };
		B56DBBA30F57FF1400963BC5 /* GHTest.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB810F57FF1400963BC5 /* GHTest.m */; };
		B56DBBA40F57FF1400963BC5 /* GHTestCase.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB830F57FF1400963BC5 /* GHTestCase.m */; };
		B56DBBA50F57FF1400963BC5 /* GHTestGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB850F57FF1400963BC5 /* GHTestGroup.m */; };
		B56DBBA60F57FF1400963BC5 /* GHTestMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB870F57FF1400963BC5 /* GHTestMacros.m */; };
		B56DBBA70F57FF1400963BC5 /* GHTestRunner.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB890F57FF1400963BC5 /* GHTestRunner.m */; };
		B56DBBA80F57FF1400963BC5 /* GHTestSuite.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB8B0F57FF1400963BC5 /* GHTestSuite.m */; };
		B56DBBA90F57FF1400963BC5 /* GHTestUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB8D0F57FF1400963BC5 /* GHTestUtils.m */; };
		B56DBBAA0F57FF1400963BC5 /* RunTests.sh in Resources */ = {isa = PBXBuildFile; fileRef = B56DBB8F0F57FF1400963BC5 /* RunTests.sh */; };
		B56DBBAB0F57FF1400963BC5 /* GHTestViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB920F57FF1400963BC5 /* GHTestViewModel.m */; };
		B56DBBAC0F57FF1400963BC5 /* GHUnitIPhone.xib in Resources */ = {isa = PBXBuildFile; fileRef = B56DBB940F57FF1400963BC5 /* GHUnitIPhone.xib */; };
		B56DBBAD0F57FF1400963BC5 /* GHUnitIPhoneAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB960F57FF1400963BC5 /* GHUnitIPhoneAppDelegate.m */; };
		B56DBBAE0F57FF1400963BC5 /* GHUnitIPhoneExceptionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB980F57FF1400963BC5 /* GHUnitIPhoneExceptionViewController.m */; };
		B56DBBAF0F57FF1400963BC5 /* GHUnitIPhoneTestMain.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB990F57FF1400963BC5 /* GHUnitIPhoneTestMain.m */; };
		B56DBBB00F57FF1400963BC5 /* GHUnitIPhoneViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB9B0F57FF1400963BC5 /* GHUnitIPhoneViewController.m */; };
		B56DBBC80F58004600963BC5 /* ASINetworkQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = B5F4C4370EC49EAB00D4F31C /* ASINetworkQueue.m */; };
		B56DBBC90F58004900963BC5 /* NSHTTPCookieAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = B5B3BC470E62D4790071D39F /* NSHTTPCookieAdditions.m */; };
		B56DBBCA0F58004C00963BC5 /* ASIFormDataRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B5CFFA3F0EC45D49009ADE56 /* ASIFormDataRequest.m */; };
		B56DBBCB0F58004F00963BC5 /* ASIHTTPRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */; };
		B56DBBE30F58006100963BC5 /* libz.1.2.3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = B56DBBE20F58006100963BC5 /* libz.1.2.3.dylib */; };
		B56DBBE50F58006B00963BC5 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B56DBBE40F58006B00963BC5 /* CFNetwork.framework */; };
		B56DBD0E0F581BDE00963BC5 /* GHUnitTestMain.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBD010F581BDE00963BC5 /* GHUnitTestMain.m */; };
		B56DBD0F0F581BDE00963BC5 /* GHTestApp.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBD040F581BDE00963BC5 /* GHTestApp.m */; };
		B56DBD100F581BDE00963BC5 /* GHTestApp.xib in Resources */ = {isa = PBXBuildFile; fileRef = B56DBD050F581BDE00963BC5 /* GHTestApp.xib */; };
		B56DBD110F581BDE00963BC5 /* GHTestAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBD070F581BDE00963BC5 /* GHTestAppDelegate.m */; };
		B56DBD120F581BDE00963BC5 /* GHTestView.xib in Resources */ = {isa = PBXBuildFile; fileRef = B56DBD080F581BDE00963BC5 /* GHTestView.xib */; };
		B56DBD130F581BDE00963BC5 /* GHTestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBD0A0F581BDE00963BC5 /* GHTestViewController.m */; };
		B56DBD140F581BDE00963BC5 /* GHTestWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = B56DBD0B0F581BDE00963BC5 /* GHTestWindow.xib */; };
		B56DBD150F581BDE00963BC5 /* GHTestWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBD0D0F581BDE00963BC5 /* GHTestWindowController.m */; };
		B58610B80F4F31E600159EBD /* libz.1.2.3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = B58610B70F4F31E600159EBD /* libz.1.2.3.dylib */; };
		B5ABC7BB0E24C5620072F422 /* ASIHTTPRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */; };
		B5ABC80F0E24CB100072F422 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */; };
		B5ACA6270F581C6F00CF5E19 /* GHTest.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB810F57FF1400963BC5 /* GHTest.m */; };
		B5ACA6280F581C7200CF5E19 /* GHTestCase.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB830F57FF1400963BC5 /* GHTestCase.m */; };
		B5ACA6290F581C7500CF5E19 /* GHTestGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB850F57FF1400963BC5 /* GHTestGroup.m */; };
		B5ACA62A0F581C7900CF5E19 /* GHTestMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB870F57FF1400963BC5 /* GHTestMacros.m */; };
		B5ACA62B0F581C7C00CF5E19 /* GHTestRunner.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB890F57FF1400963BC5 /* GHTestRunner.m */; };
		B5ACA62C0F581C7F00CF5E19 /* GHTestSuite.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB8B0F57FF1400963BC5 /* GHTestSuite.m */; };
		B5ACA62D0F581C8200CF5E19 /* GHTestUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB8D0F57FF1400963BC5 /* GHTestUtils.m */; };
		B5ACA62E0F581C8C00CF5E19 /* GHLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB6F0F57FF1400963BC5 /* GHLogger.m */; };
		B5ACA62F0F581C8F00CF5E19 /* GHNSInvocation+Utils.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB710F57FF1400963BC5 /* GHNSInvocation+Utils.m */; };
		B5ACA6300F581C9200CF5E19 /* GHNSObject+Invocation.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB730F57FF1400963BC5 /* GHNSObject+Invocation.m */; };
		B5ACA6310F581C9700CF5E19 /* GTMLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB780F57FF1400963BC5 /* GTMLogger.m */; };
		B5ACA6320F581C9A00CF5E19 /* GTMObjC2Runtime.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB7A0F57FF1400963BC5 /* GTMObjC2Runtime.m */; };
		B5ACA6330F581C9D00CF5E19 /* GTMStackTrace.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB7C0F57FF1400963BC5 /* GTMStackTrace.m */; };
		B5ACA6380F581CCF00CF5E19 /* GHTestViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = B56DBB920F57FF1400963BC5 /* GHTestViewModel.m */; };
		B5B041810EC5F2850089D01F /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = B5B0417F0EC5F2850089D01F /* MainMenu.xib */; };
		B5B3BC480E62D4790071D39F /* NSHTTPCookieAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = B5B3BC470E62D4790071D39F /* NSHTTPCookieAdditions.m */; };
		B5B532450F0B5BD7007E2A5C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B5731BCF0E4319940008024F /* Cocoa.framework */; };
		B5B532570F0B5CA9007E2A5C /* UploadProgress.xib in Resources */ = {isa = PBXBuildFile; fileRef = B5B532560F0B5CA9007E2A5C /* UploadProgress.xib */; };
		B5B5325D0F0B5D0C007E2A5C /* UploadViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B5B5325C0F0B5D0C007E2A5C /* UploadViewController.m */; };
		B5B532970F0B5F1B007E2A5C /* UploadProgress.xib in Resources */ = {isa = PBXBuildFile; fileRef = B5B532960F0B5F1B007E2A5C /* UploadProgress.xib */; };
		B5CFFA400EC45D49009ADE56 /* ASIFormDataRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B5CFFA3F0EC45D49009ADE56 /* ASIFormDataRequest.m */; };
		B5CFFADB0EC4650A009ADE56 /* NSHTTPCookieAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = B5B3BC470E62D4790071D39F /* NSHTTPCookieAdditions.m */; };
		B5CFFADC0EC46516009ADE56 /* ASIFormDataRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B5CFFA3F0EC45D49009ADE56 /* ASIFormDataRequest.m */; };
		B5CFFADD0EC4651B009ADE56 /* ASIHTTPRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */; };
		B5CFFB4B0EC467DA009ADE56 /* iPhone-Sample-main.m in Sources */ = {isa = PBXBuildFile; fileRef = B5CFFB4A0EC467DA009ADE56 /* iPhone-Sample-main.m */; };
		B5CFFBCE0EC46E20009ADE56 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = B5CFFBCB0EC46E20009ADE56 /* MainWindow.xib */; };
		B5CFFBCF0EC46E20009ADE56 /* Synchronous.xib in Resources */ = {isa = PBXBuildFile; fileRef = B5CFFBCC0EC46E20009ADE56 /* Synchronous.xib */; };
		B5CFFBD00EC46E20009ADE56 /* Queue.xib in Resources */ = {isa = PBXBuildFile; fileRef = B5CFFBCD0EC46E20009ADE56 /* Queue.xib */; };
		B5CFFBD30EC46E41009ADE56 /* iPhoneSampleAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B5CFFBD20EC46E41009ADE56 /* iPhoneSampleAppDelegate.m */; };
		B5E3D9EE0F5305D80098F087 /* ASIFormDataRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B5B03F9B0EC5DEF80089D01F /* ASIFormDataRequestTests.m */; };
		B5E3D9EF0F5305D80098F087 /* ASINetworkQueueTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B5B03DA60EC5D0930089D01F /* ASINetworkQueueTests.m */; };
		B5E3D9F00F5305D80098F087 /* ASIHTTPRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B568B0D10F49FC7900FA13C8 /* ASIHTTPRequestTests.m */; };
		B5E3DA1B0F5306720098F087 /* ASINetworkQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = B5F4C4370EC49EAB00D4F31C /* ASINetworkQueue.m */; };
		B5E3DA1C0F5306720098F087 /* NSHTTPCookieAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = B5B3BC470E62D4790071D39F /* NSHTTPCookieAdditions.m */; };
		B5E3DA1D0F5306720098F087 /* ASIFormDataRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B5CFFA3F0EC45D49009ADE56 /* ASIFormDataRequest.m */; };
		B5E3DA1E0F5306720098F087 /* ASIHTTPRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */; };
		B5E3DA230F5306890098F087 /* libz.1.2.3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = B58610B70F4F31E600159EBD /* libz.1.2.3.dylib */; };
		B5F4C23A0EC4742C00D4F31C /* SynchronousViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B5F4C2390EC4742C00D4F31C /* SynchronousViewController.m */; };
		B5F4C2A30EC4768500D4F31C /* QueueViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B5F4C2A20EC4768500D4F31C /* QueueViewController.m */; };
		B5F4C3C50EC47F6C00D4F31C /* iphone-icon.png in Resources */ = {isa = PBXBuildFile; fileRef = B5F4C3C40EC47F6C00D4F31C /* iphone-icon.png */; };
		B5F4C4380EC49EAB00D4F31C /* ASINetworkQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = B5F4C4370EC49EAB00D4F31C /* ASINetworkQueue.m */; };
		B5F4C7140EC4C9DE00D4F31C /* ASINetworkQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = B5F4C4370EC49EAB00D4F31C /* ASINetworkQueue.m */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
		089C165DFE840E0CC02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
		13E42FB307B3F0F600E4EEF1 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = /System/Library/Frameworks/CoreData.framework; sourceTree = "<absolute>"; };
		29B97316FDCFA39411CA2CEA /* Mac-OS-Sample-main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "Mac-OS-Sample-main.m"; sourceTree = "<group>"; };
		29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
		29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
		32CA4F630368D1EE00C91783 /* Mac-OS-Sample-Application.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Mac-OS-Sample-Application.pch"; sourceTree = "<group>"; };
		8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		8D1107320486CEB800E47090 /* asi-http-request.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "asi-http-request.app"; sourceTree = BUILT_PRODUCTS_DIR; };
		B568AFFB0F49D7AE00FA13C8 /* libz.1.2.3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.1.2.3.dylib; path = usr/lib/libz.1.2.3.dylib; sourceTree = SDKROOT; };
		B568B0D10F49FC7900FA13C8 /* ASIHTTPRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIHTTPRequestTests.m; sourceTree = "<group>"; };
		B56DBB6E0F57FF1400963BC5 /* GHLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHLogger.h; sourceTree = "<group>"; };
		B56DBB6F0F57FF1400963BC5 /* GHLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHLogger.m; sourceTree = "<group>"; };
		B56DBB700F57FF1400963BC5 /* GHNSInvocation+Utils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GHNSInvocation+Utils.h"; sourceTree = "<group>"; };
		B56DBB710F57FF1400963BC5 /* GHNSInvocation+Utils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "GHNSInvocation+Utils.m"; sourceTree = "<group>"; };
		B56DBB720F57FF1400963BC5 /* GHNSObject+Invocation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GHNSObject+Invocation.h"; sourceTree = "<group>"; };
		B56DBB730F57FF1400963BC5 /* GHNSObject+Invocation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "GHNSObject+Invocation.m"; sourceTree = "<group>"; };
		B56DBB760F57FF1400963BC5 /* GTMGarbageCollection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMGarbageCollection.h; sourceTree = "<group>"; };
		B56DBB770F57FF1400963BC5 /* GTMLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMLogger.h; sourceTree = "<group>"; };
		B56DBB780F57FF1400963BC5 /* GTMLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GTMLogger.m; sourceTree = "<group>"; };
		B56DBB790F57FF1400963BC5 /* GTMObjC2Runtime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMObjC2Runtime.h; sourceTree = "<group>"; };
		B56DBB7A0F57FF1400963BC5 /* GTMObjC2Runtime.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GTMObjC2Runtime.m; sourceTree = "<group>"; };
		B56DBB7B0F57FF1400963BC5 /* GTMStackTrace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMStackTrace.h; sourceTree = "<group>"; };
		B56DBB7C0F57FF1400963BC5 /* GTMStackTrace.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GTMStackTrace.m; sourceTree = "<group>"; };
		B56DBB7D0F57FF1400963BC5 /* GTMDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = "<group>"; };
		B56DBB7E0F57FF1400963BC5 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.md; sourceTree = "<group>"; };
		B56DBB800F57FF1400963BC5 /* GHTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHTest.h; sourceTree = "<group>"; };
		B56DBB810F57FF1400963BC5 /* GHTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHTest.m; sourceTree = "<group>"; };
		B56DBB820F57FF1400963BC5 /* GHTestCase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHTestCase.h; sourceTree = "<group>"; };
		B56DBB830F57FF1400963BC5 /* GHTestCase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHTestCase.m; sourceTree = "<group>"; };
		B56DBB840F57FF1400963BC5 /* GHTestGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHTestGroup.h; sourceTree = "<group>"; };
		B56DBB850F57FF1400963BC5 /* GHTestGroup.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHTestGroup.m; sourceTree = "<group>"; };
		B56DBB860F57FF1400963BC5 /* GHTestMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHTestMacros.h; sourceTree = "<group>"; };
		B56DBB870F57FF1400963BC5 /* GHTestMacros.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHTestMacros.m; sourceTree = "<group>"; };
		B56DBB880F57FF1400963BC5 /* GHTestRunner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHTestRunner.h; sourceTree = "<group>"; };
		B56DBB890F57FF1400963BC5 /* GHTestRunner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHTestRunner.m; sourceTree = "<group>"; };
		B56DBB8A0F57FF1400963BC5 /* GHTestSuite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHTestSuite.h; sourceTree = "<group>"; };
		B56DBB8B0F57FF1400963BC5 /* GHTestSuite.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHTestSuite.m; sourceTree = "<group>"; };
		B56DBB8C0F57FF1400963BC5 /* GHTestUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHTestUtils.h; sourceTree = "<group>"; };
		B56DBB8D0F57FF1400963BC5 /* GHTestUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHTestUtils.m; sourceTree = "<group>"; };
		B56DBB8E0F57FF1400963BC5 /* GHUnit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHUnit.h; sourceTree = "<group>"; };
		B56DBB8F0F57FF1400963BC5 /* RunTests.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = RunTests.sh; sourceTree = "<group>"; };
		B56DBB910F57FF1400963BC5 /* GHTestViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHTestViewModel.h; sourceTree = "<group>"; };
		B56DBB920F57FF1400963BC5 /* GHTestViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHTestViewModel.m; sourceTree = "<group>"; };
		B56DBB940F57FF1400963BC5 /* GHUnitIPhone.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = GHUnitIPhone.xib; sourceTree = "<group>"; };
		B56DBB950F57FF1400963BC5 /* GHUnitIPhoneAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHUnitIPhoneAppDelegate.h; sourceTree = "<group>"; };
		B56DBB960F57FF1400963BC5 /* GHUnitIPhoneAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHUnitIPhoneAppDelegate.m; sourceTree = "<group>"; };
		B56DBB970F57FF1400963BC5 /* GHUnitIPhoneExceptionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHUnitIPhoneExceptionViewController.h; sourceTree = "<group>"; };
		B56DBB980F57FF1400963BC5 /* GHUnitIPhoneExceptionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHUnitIPhoneExceptionViewController.m; sourceTree = "<group>"; };
		B56DBB990F57FF1400963BC5 /* GHUnitIPhoneTestMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHUnitIPhoneTestMain.m; sourceTree = "<group>"; };
		B56DBB9A0F57FF1400963BC5 /* GHUnitIPhoneViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHUnitIPhoneViewController.h; sourceTree = "<group>"; };
		B56DBB9B0F57FF1400963BC5 /* GHUnitIPhoneViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHUnitIPhoneViewController.m; sourceTree = "<group>"; };
		B56DBBB40F57FF4200963BC5 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
		B56DBBB60F57FF4700963BC5 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
		B56DBBE20F58006100963BC5 /* libz.1.2.3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.1.2.3.dylib; path = usr/lib/libz.1.2.3.dylib; sourceTree = SDKROOT; };
		B56DBBE40F58006B00963BC5 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
		B56DBD010F581BDE00963BC5 /* GHUnitTestMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHUnitTestMain.m; sourceTree = "<group>"; };
		B56DBD030F581BDE00963BC5 /* GHTestApp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHTestApp.h; sourceTree = "<group>"; };
		B56DBD040F581BDE00963BC5 /* GHTestApp.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHTestApp.m; sourceTree = "<group>"; };
		B56DBD050F581BDE00963BC5 /* GHTestApp.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = GHTestApp.xib; sourceTree = "<group>"; };
		B56DBD060F581BDE00963BC5 /* GHTestAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHTestAppDelegate.h; sourceTree = "<group>"; };
		B56DBD070F581BDE00963BC5 /* GHTestAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHTestAppDelegate.m; sourceTree = "<group>"; };
		B56DBD080F581BDE00963BC5 /* GHTestView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = GHTestView.xib; sourceTree = "<group>"; };
		B56DBD090F581BDE00963BC5 /* GHTestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHTestViewController.h; sourceTree = "<group>"; };
		B56DBD0A0F581BDE00963BC5 /* GHTestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHTestViewController.m; sourceTree = "<group>"; };
		B56DBD0B0F581BDE00963BC5 /* GHTestWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = GHTestWindow.xib; sourceTree = "<group>"; };
		B56DBD0C0F581BDE00963BC5 /* GHTestWindowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GHTestWindowController.h; sourceTree = "<group>"; };
		B56DBD0D0F581BDE00963BC5 /* GHTestWindowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GHTestWindowController.m; sourceTree = "<group>"; };
		B5731AE70E430AC30008024F /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
		B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIHTTPRequestTests.h; sourceTree = "<group>"; };
		B5731B620E430F430008024F /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; };
		B5731BCF0E4319940008024F /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
		B58610B70F4F31E600159EBD /* libz.1.2.3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.1.2.3.dylib; path = usr/lib/libz.1.2.3.dylib; sourceTree = SDKROOT; };
		B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIHTTPRequest.m; sourceTree = "<group>"; };
		B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIHTTPRequest.h; sourceTree = "<group>"; };
		B5ABC80D0E24CB100072F422 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
		B5ABC80E0E24CB100072F422 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
		B5B03DA50EC5D0930089D01F /* ASINetworkQueueTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASINetworkQueueTests.h; sourceTree = "<group>"; };
		B5B03DA60EC5D0930089D01F /* ASINetworkQueueTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASINetworkQueueTests.m; sourceTree = "<group>"; };
		B5B03F9A0EC5DEF80089D01F /* ASIFormDataRequestTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIFormDataRequestTests.h; sourceTree = "<group>"; };
		B5B03F9B0EC5DEF80089D01F /* ASIFormDataRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIFormDataRequestTests.m; sourceTree = "<group>"; };
		B5B041800EC5F2850089D01F /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/MainMenu.xib; sourceTree = "<group>"; };
		B5B3BC460E62D4790071D39F /* NSHTTPCookieAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NSHTTPCookieAdditions.h; sourceTree = "<group>"; };
		B5B3BC470E62D4790071D39F /* NSHTTPCookieAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NSHTTPCookieAdditions.m; sourceTree = "<group>"; };
		B5B5314D0F0B59A1007E2A5C /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = System/Library/Frameworks/CoreServices.framework; sourceTree = SDKROOT; };
		B5B532560F0B5CA9007E2A5C /* UploadProgress.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = UploadProgress.xib; path = "iphone-xibs/UploadProgress.xib"; sourceTree = "<group>"; };
		B5B5325B0F0B5D0C007E2A5C /* UploadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UploadViewController.h; sourceTree = "<group>"; };
		B5B5325C0F0B5D0C007E2A5C /* UploadViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UploadViewController.m; sourceTree = "<group>"; };
		B5B532960F0B5F1B007E2A5C /* UploadProgress.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = UploadProgress.xib; path = "iphone-xibs/UploadProgress.xib"; sourceTree = "<group>"; };
		B5CFFA3E0EC45D49009ADE56 /* ASIFormDataRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIFormDataRequest.h; sourceTree = "<group>"; };
		B5CFFA3F0EC45D49009ADE56 /* ASIFormDataRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIFormDataRequest.m; sourceTree = "<group>"; };
		B5CFFAC90EC464D2009ADE56 /* AHR Sample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "AHR Sample.app"; sourceTree = BUILT_PRODUCTS_DIR; };
		B5CFFACB0EC464D2009ADE56 /* iPhone Sample Application-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "iPhone Sample Application-Info.plist"; sourceTree = "<group>"; };
		B5CFFB4A0EC467DA009ADE56 /* iPhone-Sample-main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "iPhone-Sample-main.m"; sourceTree = "<group>"; };
		B5CFFBCB0EC46E20009ADE56 /* MainWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = MainWindow.xib; path = "iphone-xibs/MainWindow.xib"; sourceTree = "<group>"; };
		B5CFFBCC0EC46E20009ADE56 /* Synchronous.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Synchronous.xib; path = "iphone-xibs/Synchronous.xib"; sourceTree = "<group>"; };
		B5CFFBCD0EC46E20009ADE56 /* Queue.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Queue.xib; path = "iphone-xibs/Queue.xib"; sourceTree = "<group>"; };
		B5CFFBD10EC46E41009ADE56 /* iPhoneSampleAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iPhoneSampleAppDelegate.h; sourceTree = "<group>"; };
		B5CFFBD20EC46E41009ADE56 /* iPhoneSampleAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = iPhoneSampleAppDelegate.m; sourceTree = "<group>"; };
		B5CFFC110EC4710E009ADE56 /* iPhone-Sample-Application.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "iPhone-Sample-Application.pch"; sourceTree = "<group>"; };
		B5E3D9E20F5305B50098F087 /* Tests (GHUnit).app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Tests (GHUnit).app"; sourceTree = BUILT_PRODUCTS_DIR; };
		B5E3D9E40F5305B50098F087 /* Tests (GHUnit)-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests (GHUnit)-Info.plist"; sourceTree = "<group>"; };
		B5E3D9E80F5305C30098F087 /* GHUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GHUnit.framework; path = Library/Frameworks/GHUnit.framework; sourceTree = SDKROOT; };
		B5E3DAE00F5312320098F087 /* iPhone Tests (GHUnit).app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "iPhone Tests (GHUnit).app"; sourceTree = BUILT_PRODUCTS_DIR; };
		B5E3DAE20F5312320098F087 /* iPhone Tests (GHUnit)-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "iPhone Tests (GHUnit)-Info.plist"; sourceTree = "<group>"; };
		B5E3DAE60F5312610098F087 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
		B5F4C2380EC4742C00D4F31C /* SynchronousViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SynchronousViewController.h; sourceTree = "<group>"; };
		B5F4C2390EC4742C00D4F31C /* SynchronousViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SynchronousViewController.m; sourceTree = "<group>"; };
		B5F4C2A10EC4768500D4F31C /* QueueViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QueueViewController.h; sourceTree = "<group>"; };
		B5F4C2A20EC4768500D4F31C /* QueueViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QueueViewController.m; sourceTree = "<group>"; };
		B5F4C3C40EC47F6C00D4F31C /* iphone-icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "iphone-icon.png"; sourceTree = "<group>"; };
		B5F4C4360EC49EAB00D4F31C /* ASINetworkQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASINetworkQueue.h; sourceTree = "<group>"; };
		B5F4C4370EC49EAB00D4F31C /* ASINetworkQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASINetworkQueue.m; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		8D11072E0486CEB800E47090 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B5B532450F0B5BD7007E2A5C /* Cocoa.framework in Frameworks */,
				B568B0050F49D7CE00FA13C8 /* libz.1.2.3.dylib in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5CFFAC70EC464D1009ADE56 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B58610B80F4F31E600159EBD /* libz.1.2.3.dylib in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5E3D9E00F5305B50098F087 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B5E3DA230F5306890098F087 /* libz.1.2.3.dylib in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5E3DADE0F5312320098F087 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B56DBBE30F58006100963BC5 /* libz.1.2.3.dylib in Frameworks */,
				B56DBBE50F58006B00963BC5 /* CFNetwork.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		080E96DDFE201D6D7F000001 /* Classes */ = {
			isa = PBXGroup;
			children = (
				B5F4C4360EC49EAB00D4F31C /* ASINetworkQueue.h */,
				B5F4C4370EC49EAB00D4F31C /* ASINetworkQueue.m */,
				B5B3BC460E62D4790071D39F /* NSHTTPCookieAdditions.h */,
				B5B3BC470E62D4790071D39F /* NSHTTPCookieAdditions.m */,
				B5CFFA3E0EC45D49009ADE56 /* ASIFormDataRequest.h */,
				B5CFFA3F0EC45D49009ADE56 /* ASIFormDataRequest.m */,
				B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */,
				B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */,
			);
			name = Classes;
			sourceTree = "<group>";
		};
		1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */ = {
			isa = PBXGroup;
			children = (
				B5731B620E430F430008024F /* SenTestingKit.framework */,
				1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */,
			);
			name = "Linked Frameworks";
			sourceTree = "<group>";
		};
		1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = {
			isa = PBXGroup;
			children = (
				29B97324FDCFA39411CA2CEA /* AppKit.framework */,
				13E42FB307B3F0F600E4EEF1 /* CoreData.framework */,
				29B97325FDCFA39411CA2CEA /* Foundation.framework */,
			);
			name = "Other Frameworks";
			sourceTree = "<group>";
		};
		19C28FACFE9D520D11CA2CBB /* Products */ = {
			isa = PBXGroup;
			children = (
				8D1107320486CEB800E47090 /* asi-http-request.app */,
				B5CFFAC90EC464D2009ADE56 /* AHR Sample.app */,
				B5E3D9E20F5305B50098F087 /* Tests (GHUnit).app */,
				B5E3DAE00F5312320098F087 /* iPhone Tests (GHUnit).app */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		29B97314FDCFA39411CA2CEA /* asi-http-request */ = {
			isa = PBXGroup;
			children = (
				B56DBB620F57FEEF00963BC5 /* GHUnit */,
				B5CFFBCA0EC46DF0009ADE56 /* Mac OS Sample */,
				B5CFFBC70EC46DDE009ADE56 /* iPhone Sample */,
				B5731AF70E430B020008024F /* Tests */,
				080E96DDFE201D6D7F000001 /* Classes */,
				29B97317FDCFA39411CA2CEA /* Resources */,
				29B97323FDCFA39411CA2CEA /* Frameworks */,
				19C28FACFE9D520D11CA2CBB /* Products */,
				B5731AE70E430AC30008024F /* Tests-Info.plist */,
				B5731BCF0E4319940008024F /* Cocoa.framework */,
				B5CFFACB0EC464D2009ADE56 /* iPhone Sample Application-Info.plist */,
				B5B5314D0F0B59A1007E2A5C /* CoreServices.framework */,
				B5B532560F0B5CA9007E2A5C /* UploadProgress.xib */,
				B568AFFB0F49D7AE00FA13C8 /* libz.1.2.3.dylib */,
				B58610B70F4F31E600159EBD /* libz.1.2.3.dylib */,
				B5E3D9E40F5305B50098F087 /* Tests (GHUnit)-Info.plist */,
				B5E3D9E80F5305C30098F087 /* GHUnit.framework */,
				B5E3DAE20F5312320098F087 /* iPhone Tests (GHUnit)-Info.plist */,
				B5E3DAE60F5312610098F087 /* CoreGraphics.framework */,
				B56DBBB40F57FF4200963BC5 /* Foundation.framework */,
				B56DBBB60F57FF4700963BC5 /* CoreGraphics.framework */,
				B56DBBE20F58006100963BC5 /* libz.1.2.3.dylib */,
				B56DBBE40F58006B00963BC5 /* CFNetwork.framework */,
			);
			name = "asi-http-request";
			sourceTree = "<group>";
		};
		29B97317FDCFA39411CA2CEA /* Resources */ = {
			isa = PBXGroup;
			children = (
				B5B532960F0B5F1B007E2A5C /* UploadProgress.xib */,
				B5B0417F0EC5F2850089D01F /* MainMenu.xib */,
				B5F4C3C40EC47F6C00D4F31C /* iphone-icon.png */,
				B5CFFBCB0EC46E20009ADE56 /* MainWindow.xib */,
				B5CFFBCC0EC46E20009ADE56 /* Synchronous.xib */,
				B5CFFBCD0EC46E20009ADE56 /* Queue.xib */,
				8D1107310486CEB800E47090 /* Info.plist */,
				089C165CFE840E0CC02AAC07 /* InfoPlist.strings */,
			);
			name = Resources;
			sourceTree = "<group>";
		};
		29B97323FDCFA39411CA2CEA /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				1058C7A0FEA54F0111CA2CBB /* Linked Frameworks */,
				1058C7A2FEA54F0111CA2CBB /* Other Frameworks */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		B56DBB620F57FEEF00963BC5 /* GHUnit */ = {
			isa = PBXGroup;
			children = (
				B56DBD000F581BDE00963BC5 /* Classes-MacOSX */,
				B56DBB6C0F57FF1400963BC5 /* Libraries */,
				B56DBB7F0F57FF1400963BC5 /* Classes */,
				B56DBB930F57FF1400963BC5 /* Classes-IPhone */,
			);
			name = GHUnit;
			sourceTree = "<group>";
		};
		B56DBB6C0F57FF1400963BC5 /* Libraries */ = {
			isa = PBXGroup;
			children = (
				B56DBB6D0F57FF1400963BC5 /* GHKit */,
				B56DBB740F57FF1400963BC5 /* GTM */,
				B56DBB7E0F57FF1400963BC5 /* README.md */,
			);
			name = Libraries;
			path = GHUnit/Libraries;
			sourceTree = "<group>";
		};
		B56DBB6D0F57FF1400963BC5 /* GHKit */ = {
			isa = PBXGroup;
			children = (
				B56DBB6E0F57FF1400963BC5 /* GHLogger.h */,
				B56DBB6F0F57FF1400963BC5 /* GHLogger.m */,
				B56DBB700F57FF1400963BC5 /* GHNSInvocation+Utils.h */,
				B56DBB710F57FF1400963BC5 /* GHNSInvocation+Utils.m */,
				B56DBB720F57FF1400963BC5 /* GHNSObject+Invocation.h */,
				B56DBB730F57FF1400963BC5 /* GHNSObject+Invocation.m */,
			);
			path = GHKit;
			sourceTree = "<group>";
		};
		B56DBB740F57FF1400963BC5 /* GTM */ = {
			isa = PBXGroup;
			children = (
				B56DBB750F57FF1400963BC5 /* Foundation */,
				B56DBB7D0F57FF1400963BC5 /* GTMDefines.h */,
			);
			path = GTM;
			sourceTree = "<group>";
		};
		B56DBB750F57FF1400963BC5 /* Foundation */ = {
			isa = PBXGroup;
			children = (
				B56DBB760F57FF1400963BC5 /* GTMGarbageCollection.h */,
				B56DBB770F57FF1400963BC5 /* GTMLogger.h */,
				B56DBB780F57FF1400963BC5 /* GTMLogger.m */,
				B56DBB790F57FF1400963BC5 /* GTMObjC2Runtime.h */,
				B56DBB7A0F57FF1400963BC5 /* GTMObjC2Runtime.m */,
				B56DBB7B0F57FF1400963BC5 /* GTMStackTrace.h */,
				B56DBB7C0F57FF1400963BC5 /* GTMStackTrace.m */,
			);
			path = Foundation;
			sourceTree = "<group>";
		};
		B56DBB7F0F57FF1400963BC5 /* Classes */ = {
			isa = PBXGroup;
			children = (
				B56DBB800F57FF1400963BC5 /* GHTest.h */,
				B56DBB810F57FF1400963BC5 /* GHTest.m */,
				B56DBB820F57FF1400963BC5 /* GHTestCase.h */,
				B56DBB830F57FF1400963BC5 /* GHTestCase.m */,
				B56DBB840F57FF1400963BC5 /* GHTestGroup.h */,
				B56DBB850F57FF1400963BC5 /* GHTestGroup.m */,
				B56DBB860F57FF1400963BC5 /* GHTestMacros.h */,
				B56DBB870F57FF1400963BC5 /* GHTestMacros.m */,
				B56DBB880F57FF1400963BC5 /* GHTestRunner.h */,
				B56DBB890F57FF1400963BC5 /* GHTestRunner.m */,
				B56DBB8A0F57FF1400963BC5 /* GHTestSuite.h */,
				B56DBB8B0F57FF1400963BC5 /* GHTestSuite.m */,
				B56DBB8C0F57FF1400963BC5 /* GHTestUtils.h */,
				B56DBB8D0F57FF1400963BC5 /* GHTestUtils.m */,
				B56DBB8E0F57FF1400963BC5 /* GHUnit.h */,
				B56DBB8F0F57FF1400963BC5 /* RunTests.sh */,
				B56DBB900F57FF1400963BC5 /* SharedUI */,
			);
			name = Classes;
			path = GHUnit/Classes;
			sourceTree = "<group>";
		};
		B56DBB900F57FF1400963BC5 /* SharedUI */ = {
			isa = PBXGroup;
			children = (
				B56DBB910F57FF1400963BC5 /* GHTestViewModel.h */,
				B56DBB920F57FF1400963BC5 /* GHTestViewModel.m */,
			);
			path = SharedUI;
			sourceTree = "<group>";
		};
		B56DBB930F57FF1400963BC5 /* Classes-IPhone */ = {
			isa = PBXGroup;
			children = (
				B56DBB940F57FF1400963BC5 /* GHUnitIPhone.xib */,
				B56DBB950F57FF1400963BC5 /* GHUnitIPhoneAppDelegate.h */,
				B56DBB960F57FF1400963BC5 /* GHUnitIPhoneAppDelegate.m */,
				B56DBB970F57FF1400963BC5 /* GHUnitIPhoneExceptionViewController.h */,
				B56DBB980F57FF1400963BC5 /* GHUnitIPhoneExceptionViewController.m */,
				B56DBB990F57FF1400963BC5 /* GHUnitIPhoneTestMain.m */,
				B56DBB9A0F57FF1400963BC5 /* GHUnitIPhoneViewController.h */,
				B56DBB9B0F57FF1400963BC5 /* GHUnitIPhoneViewController.m */,
			);
			name = "Classes-IPhone";
			path = "GHUnit/Classes-IPhone";
			sourceTree = "<group>";
		};
		B56DBD000F581BDE00963BC5 /* Classes-MacOSX */ = {
			isa = PBXGroup;
			children = (
				B56DBD010F581BDE00963BC5 /* GHUnitTestMain.m */,
				B56DBD020F581BDE00963BC5 /* UI */,
			);
			name = "Classes-MacOSX";
			path = "GHUnit/Classes-MacOSX";
			sourceTree = "<group>";
		};
		B56DBD020F581BDE00963BC5 /* UI */ = {
			isa = PBXGroup;
			children = (
				B56DBD030F581BDE00963BC5 /* GHTestApp.h */,
				B56DBD040F581BDE00963BC5 /* GHTestApp.m */,
				B56DBD050F581BDE00963BC5 /* GHTestApp.xib */,
				B56DBD060F581BDE00963BC5 /* GHTestAppDelegate.h */,
				B56DBD070F581BDE00963BC5 /* GHTestAppDelegate.m */,
				B56DBD080F581BDE00963BC5 /* GHTestView.xib */,
				B56DBD090F581BDE00963BC5 /* GHTestViewController.h */,
				B56DBD0A0F581BDE00963BC5 /* GHTestViewController.m */,
				B56DBD0B0F581BDE00963BC5 /* GHTestWindow.xib */,
				B56DBD0C0F581BDE00963BC5 /* GHTestWindowController.h */,
				B56DBD0D0F581BDE00963BC5 /* GHTestWindowController.m */,
			);
			path = UI;
			sourceTree = "<group>";
		};
		B5731AF70E430B020008024F /* Tests */ = {
			isa = PBXGroup;
			children = (
				B5B03F9A0EC5DEF80089D01F /* ASIFormDataRequestTests.h */,
				B5B03F9B0EC5DEF80089D01F /* ASIFormDataRequestTests.m */,
				B5B03DA50EC5D0930089D01F /* ASINetworkQueueTests.h */,
				B5B03DA60EC5D0930089D01F /* ASINetworkQueueTests.m */,
				B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */,
				B568B0D10F49FC7900FA13C8 /* ASIHTTPRequestTests.m */,
			);
			name = Tests;
			sourceTree = "<group>";
		};
		B5CFFBC70EC46DDE009ADE56 /* iPhone Sample */ = {
			isa = PBXGroup;
			children = (
				B5CFFBD10EC46E41009ADE56 /* iPhoneSampleAppDelegate.h */,
				B5CFFBD20EC46E41009ADE56 /* iPhoneSampleAppDelegate.m */,
				B5F4C2380EC4742C00D4F31C /* SynchronousViewController.h */,
				B5F4C2390EC4742C00D4F31C /* SynchronousViewController.m */,
				B5B5325B0F0B5D0C007E2A5C /* UploadViewController.h */,
				B5B5325C0F0B5D0C007E2A5C /* UploadViewController.m */,
				B5F4C2A10EC4768500D4F31C /* QueueViewController.h */,
				B5F4C2A20EC4768500D4F31C /* QueueViewController.m */,
				B5CFFC110EC4710E009ADE56 /* iPhone-Sample-Application.pch */,
				B5CFFB4A0EC467DA009ADE56 /* iPhone-Sample-main.m */,
			);
			name = "iPhone Sample";
			sourceTree = "<group>";
		};
		B5CFFBCA0EC46DF0009ADE56 /* Mac OS Sample */ = {
			isa = PBXGroup;
			children = (
				B5ABC80D0E24CB100072F422 /* AppDelegate.h */,
				B5ABC80E0E24CB100072F422 /* AppDelegate.m */,
				32CA4F630368D1EE00C91783 /* Mac-OS-Sample-Application.pch */,
				29B97316FDCFA39411CA2CEA /* Mac-OS-Sample-main.m */,
			);
			name = "Mac OS Sample";
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		8D1107260486CEB800E47090 /* Mac OS Sample Application */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "Mac OS Sample Application" */;
			buildPhases = (
				8D1107290486CEB800E47090 /* Resources */,
				8D11072C0486CEB800E47090 /* Sources */,
				8D11072E0486CEB800E47090 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "Mac OS Sample Application";
			productInstallPath = "$(HOME)/Applications";
			productName = "asi-http-request";
			productReference = 8D1107320486CEB800E47090 /* asi-http-request.app */;
			productType = "com.apple.product-type.application";
		};
		B5CFFAC80EC464D1009ADE56 /* iPhone Sample Application */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = B5CFFACE0EC464D2009ADE56 /* Build configuration list for PBXNativeTarget "iPhone Sample Application" */;
			buildPhases = (
				B5CFFAC50EC464D1009ADE56 /* Resources */,
				B5CFFAC60EC464D1009ADE56 /* Sources */,
				B5CFFAC70EC464D1009ADE56 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "iPhone Sample Application";
			productName = "iPhone Sample Application";
			productReference = B5CFFAC90EC464D2009ADE56 /* AHR Sample.app */;
			productType = "com.apple.product-type.application";
		};
		B5E3D9E10F5305B50098F087 /* Tests (GHUnit) */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = B5E3D9E70F5305B60098F087 /* Build configuration list for PBXNativeTarget "Tests (GHUnit)" */;
			buildPhases = (
				B5E3D9DE0F5305B50098F087 /* Resources */,
				B5E3D9DF0F5305B50098F087 /* Sources */,
				B5E3D9E00F5305B50098F087 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "Tests (GHUnit)";
			productName = "Tests (GHUnit)";
			productReference = B5E3D9E20F5305B50098F087 /* Tests (GHUnit).app */;
			productType = "com.apple.product-type.application";
		};
		B5E3DADF0F5312320098F087 /* iPhone Tests (GHUnit) */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = B5E3DAE50F5312330098F087 /* Build configuration list for PBXNativeTarget "iPhone Tests (GHUnit)" */;
			buildPhases = (
				B5E3DADC0F5312320098F087 /* Resources */,
				B5E3DADD0F5312320098F087 /* Sources */,
				B5E3DADE0F5312320098F087 /* Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "iPhone Tests (GHUnit)";
			productName = "iPhone Tests (GHUnit)";
			productReference = B5E3DAE00F5312320098F087 /* iPhone Tests (GHUnit).app */;
			productType = "com.apple.product-type.application";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		29B97313FDCFA39411CA2CEA /* Project object */ = {
			isa = PBXProject;
			buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "asi-http-request" */;
			compatibilityVersion = "Xcode 3.1";
			hasScannedForEncodings = 1;
			mainGroup = 29B97314FDCFA39411CA2CEA /* asi-http-request */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				8D1107260486CEB800E47090 /* Mac OS Sample Application */,
				B5CFFAC80EC464D1009ADE56 /* iPhone Sample Application */,
				B5E3D9E10F5305B50098F087 /* Tests (GHUnit) */,
				B5E3DADF0F5312320098F087 /* iPhone Tests (GHUnit) */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		8D1107290486CEB800E47090 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				8D11072B0486CEB800E47090 /* InfoPlist.strings in Resources */,
				B5B041810EC5F2850089D01F /* MainMenu.xib in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5CFFAC50EC464D1009ADE56 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B5CFFBCE0EC46E20009ADE56 /* MainWindow.xib in Resources */,
				B5CFFBCF0EC46E20009ADE56 /* Synchronous.xib in Resources */,
				B5CFFBD00EC46E20009ADE56 /* Queue.xib in Resources */,
				B5F4C3C50EC47F6C00D4F31C /* iphone-icon.png in Resources */,
				B5B532570F0B5CA9007E2A5C /* UploadProgress.xib in Resources */,
				B5B532970F0B5F1B007E2A5C /* UploadProgress.xib in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5E3D9DE0F5305B50098F087 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B56DBD100F581BDE00963BC5 /* GHTestApp.xib in Resources */,
				B56DBD120F581BDE00963BC5 /* GHTestView.xib in Resources */,
				B56DBD140F581BDE00963BC5 /* GHTestWindow.xib in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5E3DADC0F5312320098F087 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B56DBBA20F57FF1400963BC5 /* README.md in Resources */,
				B56DBBAA0F57FF1400963BC5 /* RunTests.sh in Resources */,
				B56DBBAC0F57FF1400963BC5 /* GHUnitIPhone.xib in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		8D11072C0486CEB800E47090 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				8D11072D0486CEB800E47090 /* Mac-OS-Sample-main.m in Sources */,
				B5ABC7BB0E24C5620072F422 /* ASIHTTPRequest.m in Sources */,
				B5ABC80F0E24CB100072F422 /* AppDelegate.m in Sources */,
				B5B3BC480E62D4790071D39F /* NSHTTPCookieAdditions.m in Sources */,
				B5CFFA400EC45D49009ADE56 /* ASIFormDataRequest.m in Sources */,
				B5F4C4380EC49EAB00D4F31C /* ASINetworkQueue.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5CFFAC60EC464D1009ADE56 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B5CFFADB0EC4650A009ADE56 /* NSHTTPCookieAdditions.m in Sources */,
				B5CFFADC0EC46516009ADE56 /* ASIFormDataRequest.m in Sources */,
				B5CFFADD0EC4651B009ADE56 /* ASIHTTPRequest.m in Sources */,
				B5CFFB4B0EC467DA009ADE56 /* iPhone-Sample-main.m in Sources */,
				B5CFFBD30EC46E41009ADE56 /* iPhoneSampleAppDelegate.m in Sources */,
				B5F4C23A0EC4742C00D4F31C /* SynchronousViewController.m in Sources */,
				B5F4C2A30EC4768500D4F31C /* QueueViewController.m in Sources */,
				B5F4C7140EC4C9DE00D4F31C /* ASINetworkQueue.m in Sources */,
				B5B5325D0F0B5D0C007E2A5C /* UploadViewController.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5E3D9DF0F5305B50098F087 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B5E3D9EE0F5305D80098F087 /* ASIFormDataRequestTests.m in Sources */,
				B5E3D9EF0F5305D80098F087 /* ASINetworkQueueTests.m in Sources */,
				B5E3D9F00F5305D80098F087 /* ASIHTTPRequestTests.m in Sources */,
				B5E3DA1B0F5306720098F087 /* ASINetworkQueue.m in Sources */,
				B5E3DA1C0F5306720098F087 /* NSHTTPCookieAdditions.m in Sources */,
				B5E3DA1D0F5306720098F087 /* ASIFormDataRequest.m in Sources */,
				B5E3DA1E0F5306720098F087 /* ASIHTTPRequest.m in Sources */,
				B56DBD0E0F581BDE00963BC5 /* GHUnitTestMain.m in Sources */,
				B56DBD0F0F581BDE00963BC5 /* GHTestApp.m in Sources */,
				B56DBD110F581BDE00963BC5 /* GHTestAppDelegate.m in Sources */,
				B56DBD130F581BDE00963BC5 /* GHTestViewController.m in Sources */,
				B56DBD150F581BDE00963BC5 /* GHTestWindowController.m in Sources */,
				B5ACA6270F581C6F00CF5E19 /* GHTest.m in Sources */,
				B5ACA6280F581C7200CF5E19 /* GHTestCase.m in Sources */,
				B5ACA6290F581C7500CF5E19 /* GHTestGroup.m in Sources */,
				B5ACA62A0F581C7900CF5E19 /* GHTestMacros.m in Sources */,
				B5ACA62B0F581C7C00CF5E19 /* GHTestRunner.m in Sources */,
				B5ACA62C0F581C7F00CF5E19 /* GHTestSuite.m in Sources */,
				B5ACA62D0F581C8200CF5E19 /* GHTestUtils.m in Sources */,
				B5ACA62E0F581C8C00CF5E19 /* GHLogger.m in Sources */,
				B5ACA62F0F581C8F00CF5E19 /* GHNSInvocation+Utils.m in Sources */,
				B5ACA6300F581C9200CF5E19 /* GHNSObject+Invocation.m in Sources */,
				B5ACA6310F581C9700CF5E19 /* GTMLogger.m in Sources */,
				B5ACA6320F581C9A00CF5E19 /* GTMObjC2Runtime.m in Sources */,
				B5ACA6330F581C9D00CF5E19 /* GTMStackTrace.m in Sources */,
				B5ACA6380F581CCF00CF5E19 /* GHTestViewModel.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B5E3DADD0F5312320098F087 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B56DBB160F57FCC300963BC5 /* ASIHTTPRequestTests.m in Sources */,
				B56DBB170F57FCC600963BC5 /* ASINetworkQueueTests.m in Sources */,
				B56DBB180F57FCC900963BC5 /* ASIFormDataRequestTests.m in Sources */,
				B56DBB9C0F57FF1400963BC5 /* GHLogger.m in Sources */,
				B56DBB9D0F57FF1400963BC5 /* GHNSInvocation+Utils.m in Sources */,
				B56DBB9E0F57FF1400963BC5 /* GHNSObject+Invocation.m in Sources */,
				B56DBB9F0F57FF1400963BC5 /* GTMLogger.m in Sources */,
				B56DBBA00F57FF1400963BC5 /* GTMObjC2Runtime.m in Sources */,
				B56DBBA10F57FF1400963BC5 /* GTMStackTrace.m in Sources */,
				B56DBBA30F57FF1400963BC5 /* GHTest.m in Sources */,
				B56DBBA40F57FF1400963BC5 /* GHTestCase.m in Sources */,
				B56DBBA50F57FF1400963BC5 /* GHTestGroup.m in Sources */,
				B56DBBA60F57FF1400963BC5 /* GHTestMacros.m in Sources */,
				B56DBBA70F57FF1400963BC5 /* GHTestRunner.m in Sources */,
				B56DBBA80F57FF1400963BC5 /* GHTestSuite.m in Sources */,
				B56DBBA90F57FF1400963BC5 /* GHTestUtils.m in Sources */,
				B56DBBAB0F57FF1400963BC5 /* GHTestViewModel.m in Sources */,
				B56DBBAD0F57FF1400963BC5 /* GHUnitIPhoneAppDelegate.m in Sources */,
				B56DBBAE0F57FF1400963BC5 /* GHUnitIPhoneExceptionViewController.m in Sources */,
				B56DBBAF0F57FF1400963BC5 /* GHUnitIPhoneTestMain.m in Sources */,
				B56DBBB00F57FF1400963BC5 /* GHUnitIPhoneViewController.m in Sources */,
				B56DBBC80F58004600963BC5 /* ASINetworkQueue.m in Sources */,
				B56DBBC90F58004900963BC5 /* NSHTTPCookieAdditions.m in Sources */,
				B56DBBCA0F58004C00963BC5 /* ASIFormDataRequest.m in Sources */,
				B56DBBCB0F58004F00963BC5 /* ASIHTTPRequest.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXVariantGroup section */
		089C165CFE840E0CC02AAC07 /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				089C165DFE840E0CC02AAC07 /* English */,
			);
			name = InfoPlist.strings;
			sourceTree = "<group>";
		};
		B5B0417F0EC5F2850089D01F /* MainMenu.xib */ = {
			isa = PBXVariantGroup;
			children = (
				B5B041800EC5F2850089D01F /* English */,
			);
			name = MainMenu.xib;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		B5CFFACC0EC464D2009ADE56 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
				CODE_SIGN_IDENTITY = "";
				COPY_PHASE_STRIP = NO;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "iPhone-Sample-Application.pch";
				INFOPLIST_FILE = "iPhone Sample Application-Info.plist";
				INSTALL_PATH = "$(HOME)/Applications";
				OTHER_LDFLAGS = (
					"-framework",
					Foundation,
					"-framework",
					UIKIT,
					"-framework",
					CFNetwork,
				);
				PREBINDING = NO;
				PRODUCT_NAME = "AHR Sample";
				SDKROOT = iphonesimulator2.2;
			};
			name = Debug;
		};
		B5CFFACD0EC464D2009ADE56 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
				CODE_SIGN_IDENTITY = "iPhone Developer: Ben Copsey";
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_ENABLE_FIX_AND_CONTINUE = NO;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "iPhone-Sample-Application.pch";
				INFOPLIST_FILE = "iPhone Sample Application-Info.plist";
				INSTALL_PATH = "$(HOME)/Applications";
				OTHER_LDFLAGS = (
					"-framework",
					Foundation,
					"-framework",
					UIKIT,
					"-framework",
					CFNetwork,
				);
				PREBINDING = NO;
				PRODUCT_NAME = "AHR Sample";
				PROVISIONING_PROFILE = "117D7881-B33E-4AFD-9EB2-E32F1E6033D8";
				SDKROOT = iphonesimulator2.2;
				ZERO_LINK = NO;
			};
			name = Release;
		};
		B5E3D9E50F5305B60098F087 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				COPY_PHASE_STRIP = NO;
				FRAMEWORK_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(DEVELOPER_FRAMEWORKS_DIR)\"",
				);
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_ENABLE_FIX_AND_CONTINUE = YES;
				GCC_MODEL_TUNING = G5;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "$(SYSTEM_LIBRARY_DIR)/Frameworks/Cocoa.framework/Headers/Cocoa.h";
				INFOPLIST_FILE = "Tests (GHUnit)-Info.plist";
				INSTALL_PATH = "$(HOME)/Applications";
				LD_RUNPATH_SEARCH_PATHS = "";
				OTHER_LDFLAGS = (
					"-framework",
					Cocoa,
				);
				PREBINDING = NO;
				PRODUCT_NAME = "Tests (GHUnit)";
			};
			name = Debug;
		};
		B5E3D9E60F5305B60098F087 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				FRAMEWORK_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(DEVELOPER_FRAMEWORKS_DIR)\"",
				);
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_ENABLE_FIX_AND_CONTINUE = NO;
				GCC_MODEL_TUNING = G5;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "$(SYSTEM_LIBRARY_DIR)/Frameworks/Cocoa.framework/Headers/Cocoa.h";
				INFOPLIST_FILE = "Tests (GHUnit)-Info.plist";
				INSTALL_PATH = "$(HOME)/Applications";
				LD_RUNPATH_SEARCH_PATHS = "";
				OTHER_LDFLAGS = (
					"-framework",
					Cocoa,
				);
				PREBINDING = NO;
				PRODUCT_NAME = "Tests (GHUnit)";
				ZERO_LINK = NO;
			};
			name = Release;
		};
		B5E3DAE30F5312330098F087 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CODE_SIGN_IDENTITY = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				FRAMEWORK_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(DEVELOPER_FRAMEWORKS_DIR)\"",
				);
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "$(SYSTEM_LIBRARY_DIR)/Frameworks/UIKit.framework/Headers/UIKit.h";
				INFOPLIST_FILE = "iPhone Tests (GHUnit)-Info.plist";
				INSTALL_PATH = "$(HOME)/Applications";
				LD_RUNPATH_SEARCH_PATHS = /Developer/Library/Frameworks;
				OTHER_LDFLAGS = (
					"-framework",
					Foundation,
					"-framework",
					UIKit,
					"-framework",
					CoreGraphics,
					"-framework",
					SenTestingKit,
				);
				PREBINDING = NO;
				PRODUCT_NAME = "iPhone Tests (GHUnit)";
				SDKROOT = iphonesimulator2.2.1;
			};
			name = Debug;
		};
		B5E3DAE40F5312330098F087 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CODE_SIGN_IDENTITY = "Don't Code Sign";
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				FRAMEWORK_SEARCH_PATHS = (
					"$(inherited)",
					"\"$(DEVELOPER_FRAMEWORKS_DIR)\"",
				);
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_ENABLE_FIX_AND_CONTINUE = NO;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "$(SYSTEM_LIBRARY_DIR)/Frameworks/UIKit.framework/Headers/UIKit.h";
				INFOPLIST_FILE = "iPhone Tests (GHUnit)-Info.plist";
				INSTALL_PATH = "$(HOME)/Applications";
				LD_RUNPATH_SEARCH_PATHS = /Developer/Library/Frameworks;
				OTHER_LDFLAGS = (
					"-framework",
					Foundation,
					"-framework",
					UIKit,
					"-framework",
					CoreGraphics,
					"-framework",
					SenTestingKit,
				);
				PREBINDING = NO;
				PRODUCT_NAME = "iPhone Tests (GHUnit)";
				SDKROOT = iphonesimulator2.2.1;
				ZERO_LINK = NO;
			};
			name = Release;
		};
		C01FCF4B08A954540054247B /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				COPY_PHASE_STRIP = NO;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_ENABLE_FIX_AND_CONTINUE = YES;
				GCC_MODEL_TUNING = G5;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "Mac-OS-Sample-Application.pch";
				INFOPLIST_FILE = Info.plist;
				INSTALL_PATH = "$(HOME)/Applications";
				OTHER_LDFLAGS = "";
				PRODUCT_NAME = "asi-http-request";
				WRAPPER_EXTENSION = app;
				ZERO_LINK = YES;
			};
			name = Debug;
		};
		C01FCF4C08A954540054247B /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_MODEL_TUNING = G5;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "Mac-OS-Sample-Application.pch";
				INFOPLIST_FILE = Info.plist;
				INSTALL_PATH = "$(HOME)/Applications";
				OTHER_LDFLAGS = "";
				PRODUCT_NAME = "asi-http-request";
				WRAPPER_EXTENSION = app;
			};
			name = Release;
		};
		C01FCF4F08A954540054247B /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				PREBINDING = NO;
				SDKROOT = macosx10.5;
			};
			name = Debug;
		};
		C01FCF5008A954540054247B /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = (
					ppc,
					i386,
				);
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				PREBINDING = NO;
				SDKROOT = macosx10.5;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		B5CFFACE0EC464D2009ADE56 /* Build configuration list for PBXNativeTarget "iPhone Sample Application" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				B5CFFACC0EC464D2009ADE56 /* Debug */,
				B5CFFACD0EC464D2009ADE56 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		B5E3D9E70F5305B60098F087 /* Build configuration list for PBXNativeTarget "Tests (GHUnit)" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				B5E3D9E50F5305B60098F087 /* Debug */,
				B5E3D9E60F5305B60098F087 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		B5E3DAE50F5312330098F087 /* Build configuration list for PBXNativeTarget "iPhone Tests (GHUnit)" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				B5E3DAE30F5312330098F087 /* Debug */,
				B5E3DAE40F5312330098F087 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		C01FCF4A08A954540054247B /* Build configuration list for PBXNativeTarget "Mac OS Sample Application" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				C01FCF4B08A954540054247B /* Debug */,
				C01FCF4C08A954540054247B /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		C01FCF4E08A954540054247B /* Build configuration list for PBXProject "asi-http-request" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				C01FCF4F08A954540054247B /* Debug */,
				C01FCF5008A954540054247B /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
}