project.pbxproj 81.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 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 45;
	objects = {

/* Begin PBXBuildFile section */
		B50C1823121C26DB0055FCAB /* ClientCertificateTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B50C1822121C26DB0055FCAB /* ClientCertificateTests.m */; };
		B50C182C121C26FA0055FCAB /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B50C182B121C26FA0055FCAB /* Security.framework */; };
		B50C1848121C27510055FCAB /* client.p12 in Resources */ = {isa = PBXBuildFile; fileRef = B50C1847121C27510055FCAB /* client.p12 */; };
		B50D532C126C87ED0022EA6F /* BlocksTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B50D532B126C87ED0022EA6F /* BlocksTests.m */; };
		B51791A31024C3E800583567 /* AuthenticationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B51791A21024C3E800583567 /* AuthenticationViewController.m */; };
		B51A1A9B11DDF85100ED75CF /* ASIDownloadCacheTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B51A1A7A11DDF7BF00ED75CF /* ASIDownloadCacheTests.m */; };
		B522DACE1030B2AB009A2D22 /* ASIInputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = B522DACD1030B2AB009A2D22 /* ASIInputStream.m */; };
		B522DACF1030B2AB009A2D22 /* ASIInputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = B522DACD1030B2AB009A2D22 /* ASIInputStream.m */; };
		B523254211CA01F1006C6E5A /* Sample.xib in Resources */ = {isa = PBXBuildFile; fileRef = B523254111CA01F1006C6E5A /* Sample.xib */; };
		B523254311CA01F1006C6E5A /* Sample.xib in Resources */ = {isa = PBXBuildFile; fileRef = B523254111CA01F1006C6E5A /* Sample.xib */; };
		B52325AD11CA05A8006C6E5A /* info.png in Resources */ = {isa = PBXBuildFile; fileRef = B52325AC11CA05A8006C6E5A /* info.png */; };
		B5254FF91025F9BF00CF7BC4 /* ProxyTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B5254FF71025F9BF00CF7BC4 /* ProxyTests.m */; };
		B52D4A2F10DA4ED5008E8365 /* PerformanceTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B52D4A2E10DA4ED5008E8365 /* PerformanceTests.m */; };
		B53E6D951257B45800C1E79A /* ASIDataDecompressor.m in Sources */ = {isa = PBXBuildFile; fileRef = B53E6D911257B45800C1E79A /* ASIDataDecompressor.m */; };
		B53E6D961257B45800C1E79A /* ASIDataCompressor.m in Sources */ = {isa = PBXBuildFile; fileRef = B53E6D931257B45800C1E79A /* ASIDataCompressor.m */; };
		B53E6D971257B45800C1E79A /* ASIDataDecompressor.m in Sources */ = {isa = PBXBuildFile; fileRef = B53E6D911257B45800C1E79A /* ASIDataDecompressor.m */; };
		B53E6D981257B45800C1E79A /* ASIDataCompressor.m in Sources */ = {isa = PBXBuildFile; fileRef = B53E6D931257B45800C1E79A /* ASIDataCompressor.m */; };
		B53E6D991257B45800C1E79A /* ASIDataDecompressor.m in Sources */ = {isa = PBXBuildFile; fileRef = B53E6D911257B45800C1E79A /* ASIDataDecompressor.m */; };
		B53E6D9A1257B45800C1E79A /* ASIDataCompressor.m in Sources */ = {isa = PBXBuildFile; fileRef = B53E6D931257B45800C1E79A /* ASIDataCompressor.m */; };
		B53E6D9D1257B46100C1E79A /* ASIWebPageRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B53E6D9C1257B46100C1E79A /* ASIWebPageRequest.m */; };
		B53E6D9E1257B46100C1E79A /* ASIWebPageRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B53E6D9C1257B46100C1E79A /* ASIWebPageRequest.m */; };
		B53E6D9F1257B46100C1E79A /* ASIWebPageRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B53E6D9C1257B46100C1E79A /* ASIWebPageRequest.m */; };
		B53E6DD41257B5C900C1E79A /* libxml2.2.7.3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = B53E6DD31257B5C900C1E79A /* libxml2.2.7.3.dylib */; };
		B53E6DEB1257B64100C1E79A /* libxml2.2.7.3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = B53E6DEA1257B64100C1E79A /* libxml2.2.7.3.dylib */; };
		B540400B115114BA00D8BE63 /* ASIS3Bucket.m in Sources */ = {isa = PBXBuildFile; fileRef = B5404000115114BA00D8BE63 /* ASIS3Bucket.m */; };
		B540400C115114BA00D8BE63 /* ASIS3BucketRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B5404002115114BA00D8BE63 /* ASIS3BucketRequest.m */; };
		B540400D115114BA00D8BE63 /* ASIS3ObjectRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B5404004115114BA00D8BE63 /* ASIS3ObjectRequest.m */; };
		B540400E115114BA00D8BE63 /* ASIS3ServiceRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B5404006115114BA00D8BE63 /* ASIS3ServiceRequest.m */; };
		B54043B11151542C00D8BE63 /* GHUnitIPhoneTestMain.m in Sources */ = {isa = PBXBuildFile; fileRef = B54043AB1151542C00D8BE63 /* GHUnitIPhoneTestMain.m */; };
		B54043BB1151546F00D8BE63 /* libGHUnitIPhone3_0.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B54043BA1151546F00D8BE63 /* libGHUnitIPhone3_0.a */; };
		B552511411D20FC200F9B170 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B552511311D20FC200F9B170 /* CoreGraphics.framework */; };
		B55251A111D2174C00F9B170 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B55251A011D2174C00F9B170 /* CoreGraphics.framework */; };
		B55252B411D22E2200F9B170 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = B55252B311D22E2200F9B170 /* Reachability.m */; };
		B55252B511D22E2200F9B170 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = B55252B311D22E2200F9B170 /* Reachability.m */; };
		B55252B611D22E2200F9B170 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = B55252B311D22E2200F9B170 /* Reachability.m */; };
		B558B5EB11C7F9C8009B4627 /* iPadMainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = B576D76311C7F4D40059B815 /* iPadMainWindow.xib */; };
		B55B604D0F765A320064029C /* ASIFormDataRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B60460F765A320064029C /* ASIFormDataRequest.m */; };
		B55B604E0F765A320064029C /* ASIHTTPRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B60480F765A320064029C /* ASIHTTPRequest.m */; };
		B55B604F0F765A320064029C /* ASINetworkQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B604A0F765A320064029C /* ASINetworkQueue.m */; };
		B55B60620F765A750064029C /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B60600F765A750064029C /* main.m */; };
		B55B606F0F765A930064029C /* QueueViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B60670F765A930064029C /* QueueViewController.m */; };
		B55B60700F765A930064029C /* SynchronousViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B606A0F765A930064029C /* SynchronousViewController.m */; };
		B55B60710F765A930064029C /* iPhoneSampleAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B606B0F765A930064029C /* iPhoneSampleAppDelegate.m */; };
		B55B60720F765A930064029C /* UploadViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B606C0F765A930064029C /* UploadViewController.m */; };
		B55B60740F765A990064029C /* iphone-icon.png in Resources */ = {isa = PBXBuildFile; fileRef = B55B60730F765A990064029C /* iphone-icon.png */; };
		B55B60CF0F765BBA0064029C /* ASIFormDataRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B60460F765A320064029C /* ASIFormDataRequest.m */; };
		B55B60D00F765BBD0064029C /* ASIHTTPRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B60480F765A320064029C /* ASIHTTPRequest.m */; };
		B55B60D10F765BC00064029C /* ASINetworkQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B604A0F765A320064029C /* ASINetworkQueue.m */; };
		B55B60D30F765BC90064029C /* ASIFormDataRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B60530F765A3C0064029C /* ASIFormDataRequestTests.m */; };
		B55B60D40F765BCD0064029C /* ASIHTTPRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B60550F765A3C0064029C /* ASIHTTPRequestTests.m */; };
		B55B60D50F765BD00064029C /* ASINetworkQueueTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B60570F765A3C0064029C /* ASINetworkQueueTests.m */; };
		B5652920101C8BD7000499CF /* ASITestCase.m in Sources */ = {isa = PBXBuildFile; fileRef = B565291F101C8BD7000499CF /* ASITestCase.m */; };
		B56529A3101C8EDA000499CF /* iphone-tests-icon.png in Resources */ = {isa = PBXBuildFile; fileRef = B56529A2101C8EDA000499CF /* iphone-tests-icon.png */; };
		B576D4C111C7CC970059B815 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D4C011C7CC970059B815 /* CFNetwork.framework */; };
		B576D4C411C7CC9C0059B815 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D4C311C7CC9C0059B815 /* UIKit.framework */; };
		B576D4C711C7CC9F0059B815 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D4C611C7CC9F0059B815 /* MobileCoreServices.framework */; };
		B576D4CA11C7CCA60059B815 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D4C911C7CCA60059B815 /* SystemConfiguration.framework */; };
		B576D4D111C7CCBC0059B815 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D4D011C7CCBC0059B815 /* CoreGraphics.framework */; };
		B576D51411C7CE6D0059B815 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D51311C7CE6D0059B815 /* Foundation.framework */; };
		B576D51F11C7CEB20059B815 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D51E11C7CEB20059B815 /* CFNetwork.framework */; };
		B576D52111C7CEB70059B815 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D52011C7CEB70059B815 /* SystemConfiguration.framework */; };
		B576D52311C7CEBC0059B815 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D52211C7CEBC0059B815 /* MobileCoreServices.framework */; };
		B576D52511C7CEC00059B815 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D52411C7CEC00059B815 /* UIKit.framework */; };
		B576D52D11C7CEFA0059B815 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D52C11C7CEFA0059B815 /* Foundation.framework */; };
		B576D53E11C7CF350059B815 /* libz.1.2.3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D53D11C7CF350059B815 /* libz.1.2.3.dylib */; };
		B576D70411C7F34D0059B815 /* iphone-icon.png in Resources */ = {isa = PBXBuildFile; fileRef = B55B60730F765A990064029C /* iphone-icon.png */; };
		B576D70B11C7F34D0059B815 /* ASIFormDataRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B60460F765A320064029C /* ASIFormDataRequest.m */; };
		B576D70C11C7F34D0059B815 /* ASIHTTPRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B60480F765A320064029C /* ASIHTTPRequest.m */; };
		B576D70D11C7F34D0059B815 /* ASINetworkQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B604A0F765A320064029C /* ASINetworkQueue.m */; };
		B576D70F11C7F34D0059B815 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B60600F765A750064029C /* main.m */; };
		B576D71011C7F34D0059B815 /* QueueViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B60670F765A930064029C /* QueueViewController.m */; };
		B576D71111C7F34D0059B815 /* SynchronousViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B606A0F765A930064029C /* SynchronousViewController.m */; };
		B576D71211C7F34D0059B815 /* iPhoneSampleAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B606B0F765A930064029C /* iPhoneSampleAppDelegate.m */; };
		B576D71311C7F34D0059B815 /* UploadViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B55B606C0F765A930064029C /* UploadViewController.m */; };
		B576D71411C7F34D0059B815 /* AuthenticationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B51791A21024C3E800583567 /* AuthenticationViewController.m */; };
		B576D71511C7F34D0059B815 /* ASIInputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = B522DACD1030B2AB009A2D22 /* ASIInputStream.m */; };
		B576D71611C7F34D0059B815 /* ASIAuthenticationDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = B59A87C1103EC6F200300252 /* ASIAuthenticationDialog.m */; };
		B576D71911C7F34D0059B815 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D51E11C7CEB20059B815 /* CFNetwork.framework */; };
		B576D71A11C7F34D0059B815 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D52011C7CEB70059B815 /* SystemConfiguration.framework */; };
		B576D71B11C7F34D0059B815 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D52211C7CEBC0059B815 /* MobileCoreServices.framework */; };
		B576D71C11C7F34D0059B815 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D52411C7CEC00059B815 /* UIKit.framework */; };
		B576D71D11C7F34D0059B815 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D52C11C7CEFA0059B815 /* Foundation.framework */; };
		B576D76611C7F4D90059B815 /* iPhoneMainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = B576D76511C7F4D90059B815 /* iPhoneMainWindow.xib */; };
		B576D77611C7F5810059B815 /* libz.1.2.3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D53D11C7CF350059B815 /* libz.1.2.3.dylib */; };
		B576D77711C7F5810059B815 /* libz.1.2.3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = B576D53D11C7CF350059B815 /* libz.1.2.3.dylib */; };
		B57AF06A125873F4002A1F0C /* libxml2.2.7.3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = B57AF069125873F4002A1F0C /* libxml2.2.7.3.dylib */; };
		B57AF5921258B3F1002A1F0C /* WebPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B57AF5911258B3F1002A1F0C /* WebPageViewController.m */; };
		B57AF5931258B3F1002A1F0C /* WebPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B57AF5911258B3F1002A1F0C /* WebPageViewController.m */; };
		B57AF5961258B401002A1F0C /* RequestProgressCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B57AF5951258B401002A1F0C /* RequestProgressCell.m */; };
		B57AF5971258B401002A1F0C /* RequestProgressCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B57AF5951258B401002A1F0C /* RequestProgressCell.m */; };
		B5873FD610FF28CA001E145F /* ASIS3BucketObject.m in Sources */ = {isa = PBXBuildFile; fileRef = B5873FC210FF28CA001E145F /* ASIS3BucketObject.m */; };
		B5873FD810FF28CA001E145F /* ASIS3Request.m in Sources */ = {isa = PBXBuildFile; fileRef = B5873FC610FF28CA001E145F /* ASIS3Request.m */; };
		B5873FD910FF28CA001E145F /* ASICloudFilesCDNRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B5873FC910FF28CA001E145F /* ASICloudFilesCDNRequest.m */; };
		B5873FDA10FF28CA001E145F /* ASICloudFilesContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = B5873FCB10FF28CA001E145F /* ASICloudFilesContainer.m */; };
		B5873FDB10FF28CA001E145F /* ASICloudFilesContainerRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B5873FCD10FF28CA001E145F /* ASICloudFilesContainerRequest.m */; };
		B5873FDC10FF28CA001E145F /* ASICloudFilesContainerXMLParserDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B5873FCF10FF28CA001E145F /* ASICloudFilesContainerXMLParserDelegate.m */; };
		B5873FDD10FF28CA001E145F /* ASICloudFilesObject.m in Sources */ = {isa = PBXBuildFile; fileRef = B5873FD110FF28CA001E145F /* ASICloudFilesObject.m */; };
		B5873FDE10FF28CA001E145F /* ASICloudFilesObjectRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B5873FD310FF28CA001E145F /* ASICloudFilesObjectRequest.m */; };
		B5873FDF10FF28CA001E145F /* ASICloudFilesRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B5873FD510FF28CA001E145F /* ASICloudFilesRequest.m */; };
		B5873FF510FF2904001E145F /* ASICloudFilesRequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B5873FF310FF2904001E145F /* ASICloudFilesRequestTests.m */; };
		B59A87C2103EC6F200300252 /* ASIAuthenticationDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = B59A87C1103EC6F200300252 /* ASIAuthenticationDialog.m */; };
		B59A87C3103EC6F200300252 /* ASIAuthenticationDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = B59A87C1103EC6F200300252 /* ASIAuthenticationDialog.m */; };
		B5BD2AFA11CA541100D7C426 /* iPadSampleAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B5BD2AF911CA541100D7C426 /* iPadSampleAppDelegate.m */; };
		B5BD2B0111CA542000D7C426 /* DetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B5BD2AFC11CA542000D7C426 /* DetailCell.m */; };
		B5BD2B0211CA542000D7C426 /* InfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B5BD2AFE11CA542000D7C426 /* InfoCell.m */; };
		B5BD2B0311CA542000D7C426 /* ToggleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B5BD2B0011CA542000D7C426 /* ToggleCell.m */; };
		B5BD2B0411CA542000D7C426 /* DetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B5BD2AFC11CA542000D7C426 /* DetailCell.m */; };
		B5BD2B0511CA542000D7C426 /* InfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B5BD2AFE11CA542000D7C426 /* InfoCell.m */; };
		B5BD2B0611CA542000D7C426 /* ToggleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B5BD2B0011CA542000D7C426 /* ToggleCell.m */; };
		B5BD2B0B11CA542700D7C426 /* RootViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B5BD2B0811CA542700D7C426 /* RootViewController.m */; };
		B5BD2B0C11CA542700D7C426 /* SampleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B5BD2B0A11CA542700D7C426 /* SampleViewController.m */; };
		B5BD2B0E11CA542700D7C426 /* SampleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B5BD2B0A11CA542700D7C426 /* SampleViewController.m */; };
		B5C6663E100A82D7004F3C96 /* ASIS3RequestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B5C6663D100A82D7004F3C96 /* ASIS3RequestTests.m */; };
		B5EA45AA109B56D800E920CB /* StressTests.m in Sources */ = {isa = PBXBuildFile; fileRef = B5EA45A9109B56D800E920CB /* StressTests.m */; };
		B5F95171115237C800EDED69 /* libGHUnitIPhone3_0.a in CopyFiles */ = {isa = PBXBuildFile; fileRef = B54043751151538A00D8BE63 /* libGHUnitIPhone3_0.a */; };
		B5FE752711DBBA6400F898C8 /* ASIDownloadCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B5FE752511DBBA6400F898C8 /* ASIDownloadCache.m */; };
		B5FE752811DBBA6400F898C8 /* ASIDownloadCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B5FE752511DBBA6400F898C8 /* ASIDownloadCache.m */; };
		B5FE752911DBBA6400F898C8 /* ASIDownloadCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B5FE752511DBBA6400F898C8 /* ASIDownloadCache.m */; };
/* End PBXBuildFile section */

/* Begin PBXCopyFilesBuildPhase section */
		B5F95181115237CB00EDED69 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = "";
			dstSubfolderSpec = 10;
			files = (
				B5F95171115237C800EDED69 /* libGHUnitIPhone3_0.a in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
		1D6058910D05DD3D006BFB54 /* ASIHTTPRequest iPhone.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "ASIHTTPRequest iPhone.app"; sourceTree = BUILT_PRODUCTS_DIR; };
		B50C1821121C26DB0055FCAB /* ClientCertificateTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClientCertificateTests.h; sourceTree = "<group>"; };
		B50C1822121C26DB0055FCAB /* ClientCertificateTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClientCertificateTests.m; sourceTree = "<group>"; };
		B50C182B121C26FA0055FCAB /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
		B50C1847121C27510055FCAB /* client.p12 */ = {isa = PBXFileReference; lastKnownFileType = file; name = client.p12; path = "iPhone Sample/Resources/client.p12"; sourceTree = "<group>"; };
		B50D532A126C87ED0022EA6F /* BlocksTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BlocksTests.h; sourceTree = "<group>"; };
		B50D532B126C87ED0022EA6F /* BlocksTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BlocksTests.m; sourceTree = "<group>"; };
		B51791A11024C3E800583567 /* AuthenticationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AuthenticationViewController.h; path = "iPhone Sample/AuthenticationViewController.h"; sourceTree = "<group>"; };
		B51791A21024C3E800583567 /* AuthenticationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AuthenticationViewController.m; path = "iPhone Sample/AuthenticationViewController.m"; sourceTree = "<group>"; };
		B51A1A7911DDF7BF00ED75CF /* ASIDownloadCacheTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIDownloadCacheTests.h; sourceTree = "<group>"; };
		B51A1A7A11DDF7BF00ED75CF /* ASIDownloadCacheTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIDownloadCacheTests.m; sourceTree = "<group>"; };
		B522DACC1030B2AB009A2D22 /* ASIInputStream.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIInputStream.h; sourceTree = "<group>"; };
		B522DACD1030B2AB009A2D22 /* ASIInputStream.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIInputStream.m; sourceTree = "<group>"; };
		B523254111CA01F1006C6E5A /* Sample.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Sample.xib; path = "iPhone Sample/Resources/Sample.xib"; sourceTree = "<group>"; };
		B52325AC11CA05A8006C6E5A /* info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = info.png; path = "iPhone Sample/Resources/info.png"; sourceTree = "<group>"; };
		B5254FF71025F9BF00CF7BC4 /* ProxyTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ProxyTests.m; sourceTree = "<group>"; };
		B5254FF81025F9BF00CF7BC4 /* ProxyTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProxyTests.h; sourceTree = "<group>"; };
		B52D4A2D10DA4ED5008E8365 /* PerformanceTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PerformanceTests.h; sourceTree = "<group>"; };
		B52D4A2E10DA4ED5008E8365 /* PerformanceTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PerformanceTests.m; sourceTree = "<group>"; };
		B53E6D911257B45800C1E79A /* ASIDataDecompressor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIDataDecompressor.m; sourceTree = "<group>"; };
		B53E6D921257B45800C1E79A /* ASIDataDecompressor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIDataDecompressor.h; sourceTree = "<group>"; };
		B53E6D931257B45800C1E79A /* ASIDataCompressor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIDataCompressor.m; sourceTree = "<group>"; };
		B53E6D941257B45800C1E79A /* ASIDataCompressor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIDataCompressor.h; sourceTree = "<group>"; };
		B53E6D9B1257B46100C1E79A /* ASIWebPageRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIWebPageRequest.h; sourceTree = "<group>"; };
		B53E6D9C1257B46100C1E79A /* ASIWebPageRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIWebPageRequest.m; sourceTree = "<group>"; };
		B53E6DD31257B5C900C1E79A /* libxml2.2.7.3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libxml2.2.7.3.dylib; path = usr/lib/libxml2.2.7.3.dylib; sourceTree = SDKROOT; };
		B53E6DEA1257B64100C1E79A /* libxml2.2.7.3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libxml2.2.7.3.dylib; path = /usr/lib/libxml2.2.7.3.dylib; sourceTree = "<absolute>"; };
		B5403FFF115114BA00D8BE63 /* ASIS3Bucket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIS3Bucket.h; sourceTree = "<group>"; };
		B5404000115114BA00D8BE63 /* ASIS3Bucket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIS3Bucket.m; sourceTree = "<group>"; };
		B5404001115114BA00D8BE63 /* ASIS3BucketRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIS3BucketRequest.h; sourceTree = "<group>"; };
		B5404002115114BA00D8BE63 /* ASIS3BucketRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIS3BucketRequest.m; sourceTree = "<group>"; };
		B5404003115114BA00D8BE63 /* ASIS3ObjectRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIS3ObjectRequest.h; sourceTree = "<group>"; };
		B5404004115114BA00D8BE63 /* ASIS3ObjectRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIS3ObjectRequest.m; sourceTree = "<group>"; };
		B5404005115114BA00D8BE63 /* ASIS3ServiceRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIS3ServiceRequest.h; sourceTree = "<group>"; };
		B5404006115114BA00D8BE63 /* ASIS3ServiceRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIS3ServiceRequest.m; sourceTree = "<group>"; };
		B54043751151538A00D8BE63 /* libGHUnitIPhone3_0.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libGHUnitIPhone3_0.a; path = "External/GHUnit/Project-IPhone/build/CombinedDebug3_0/libGHUnitIPhone3_0.a"; sourceTree = SOURCE_ROOT; };
		B54043A11151542C00D8BE63 /* GHAsyncTestCase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GHAsyncTestCase.h; path = "External/GHUnit/Project-IPhone/build/Debug-iphonesimulator/GHAsyncTestCase.h"; sourceTree = SOURCE_ROOT; };
		B54043A21151542C00D8BE63 /* GHTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GHTest.h; path = "External/GHUnit/Project-IPhone/build/Debug-iphonesimulator/GHTest.h"; sourceTree = SOURCE_ROOT; };
		B54043A31151542C00D8BE63 /* GHTestCase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GHTestCase.h; path = "External/GHUnit/Project-IPhone/build/Debug-iphonesimulator/GHTestCase.h"; sourceTree = SOURCE_ROOT; };
		B54043A41151542C00D8BE63 /* GHTestGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GHTestGroup.h; path = "External/GHUnit/Project-IPhone/build/Debug-iphonesimulator/GHTestGroup.h"; sourceTree = SOURCE_ROOT; };
		B54043A51151542C00D8BE63 /* GHTesting.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GHTesting.h; path = "External/GHUnit/Project-IPhone/build/Debug-iphonesimulator/GHTesting.h"; sourceTree = SOURCE_ROOT; };
		B54043A61151542C00D8BE63 /* GHTestMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GHTestMacros.h; path = "External/GHUnit/Project-IPhone/build/Debug-iphonesimulator/GHTestMacros.h"; sourceTree = SOURCE_ROOT; };
		B54043A71151542C00D8BE63 /* GHTestRunner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GHTestRunner.h; path = "External/GHUnit/Project-IPhone/build/Debug-iphonesimulator/GHTestRunner.h"; sourceTree = SOURCE_ROOT; };
		B54043A81151542C00D8BE63 /* GHTestSuite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GHTestSuite.h; path = "External/GHUnit/Project-IPhone/build/Debug-iphonesimulator/GHTestSuite.h"; sourceTree = SOURCE_ROOT; };
		B54043A91151542C00D8BE63 /* GHUnit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GHUnit.h; path = "External/GHUnit/Project-IPhone/build/Debug-iphonesimulator/GHUnit.h"; sourceTree = SOURCE_ROOT; };
		B54043AA1151542C00D8BE63 /* GHUnitIPhoneAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GHUnitIPhoneAppDelegate.h; path = "External/GHUnit/Project-IPhone/build/Debug-iphonesimulator/GHUnitIPhoneAppDelegate.h"; sourceTree = SOURCE_ROOT; };
		B54043AB1151542C00D8BE63 /* GHUnitIPhoneTestMain.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GHUnitIPhoneTestMain.m; path = "External/GHUnit/Project-IPhone/build/Debug-iphonesimulator/GHUnitIPhoneTestMain.m"; sourceTree = SOURCE_ROOT; };
		B54043AC1151542C00D8BE63 /* GHUNSObject+Swizzle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "GHUNSObject+Swizzle.h"; path = "External/GHUnit/Project-IPhone/build/Debug-iphonesimulator/GHUNSObject+Swizzle.h"; sourceTree = SOURCE_ROOT; };
		B54043AF1151542C00D8BE63 /* NSException+GHTestFailureExceptions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSException+GHTestFailureExceptions.h"; path = "External/GHUnit/Project-IPhone/build/Debug-iphonesimulator/NSException+GHTestFailureExceptions.h"; sourceTree = SOURCE_ROOT; };
		B54043B01151542C00D8BE63 /* NSValue+GHValueFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSValue+GHValueFormatter.h"; path = "External/GHUnit/Project-IPhone/build/Debug-iphonesimulator/NSValue+GHValueFormatter.h"; sourceTree = SOURCE_ROOT; };
		B54043BA1151546F00D8BE63 /* libGHUnitIPhone3_0.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libGHUnitIPhone3_0.a; path = "External/GHUnit/Project-IPhone/build/CombinedDebug3_0/libGHUnitIPhone3_0.a"; sourceTree = SOURCE_ROOT; };
		B551DB4610D6938500EC1CBF /* ASIHTTPRequestConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIHTTPRequestConfig.h; sourceTree = "<group>"; };
		B552511311D20FC200F9B170 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
		B55251A011D2174C00F9B170 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
		B55252B211D22E2200F9B170 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
		B55252B311D22E2200F9B170 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
		B558B58911C7F637009B4627 /* iPhoneInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = iPhoneInfo.plist; path = "iPhone Sample/iPhoneInfo.plist"; sourceTree = "<group>"; };
		B558B58B11C7F63E009B4627 /* iPadInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = iPadInfo.plist; path = "iPhone Sample/iPadInfo.plist"; sourceTree = "<group>"; };
		B55B60450F765A320064029C /* ASIFormDataRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIFormDataRequest.h; sourceTree = "<group>"; };
		B55B60460F765A320064029C /* ASIFormDataRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIFormDataRequest.m; sourceTree = "<group>"; };
		B55B60470F765A320064029C /* ASIHTTPRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIHTTPRequest.h; sourceTree = "<group>"; };
		B55B60480F765A320064029C /* ASIHTTPRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIHTTPRequest.m; sourceTree = "<group>"; };
		B55B60490F765A320064029C /* ASINetworkQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASINetworkQueue.h; sourceTree = "<group>"; };
		B55B604A0F765A320064029C /* ASINetworkQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASINetworkQueue.m; sourceTree = "<group>"; };
		B55B60520F765A3C0064029C /* ASIFormDataRequestTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIFormDataRequestTests.h; sourceTree = "<group>"; };
		B55B60530F765A3C0064029C /* ASIFormDataRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIFormDataRequestTests.m; sourceTree = "<group>"; };
		B55B60540F765A3C0064029C /* ASIHTTPRequestTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIHTTPRequestTests.h; sourceTree = "<group>"; };
		B55B60550F765A3C0064029C /* ASIHTTPRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIHTTPRequestTests.m; sourceTree = "<group>"; };
		B55B60560F765A3C0064029C /* ASINetworkQueueTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASINetworkQueueTests.h; sourceTree = "<group>"; };
		B55B60570F765A3C0064029C /* ASINetworkQueueTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASINetworkQueueTests.m; sourceTree = "<group>"; };
		B55B605F0F765A750064029C /* iPhone_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iPhone_Prefix.pch; path = "iPhone Sample/iPhone_Prefix.pch"; sourceTree = "<group>"; };
		B55B60600F765A750064029C /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = "iPhone Sample/main.m"; sourceTree = "<group>"; };
		B55B60670F765A930064029C /* QueueViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = QueueViewController.m; path = "iPhone Sample/QueueViewController.m"; sourceTree = "<group>"; };
		B55B60680F765A930064029C /* QueueViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = QueueViewController.h; path = "iPhone Sample/QueueViewController.h"; sourceTree = "<group>"; };
		B55B60690F765A930064029C /* UploadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UploadViewController.h; path = "iPhone Sample/UploadViewController.h"; sourceTree = "<group>"; };
		B55B606A0F765A930064029C /* SynchronousViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SynchronousViewController.m; path = "iPhone Sample/SynchronousViewController.m"; sourceTree = "<group>"; };
		B55B606B0F765A930064029C /* iPhoneSampleAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = iPhoneSampleAppDelegate.m; path = "iPhone Sample/iPhoneSampleAppDelegate.m"; sourceTree = "<group>"; };
		B55B606C0F765A930064029C /* UploadViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = UploadViewController.m; path = "iPhone Sample/UploadViewController.m"; sourceTree = "<group>"; };
		B55B606D0F765A930064029C /* SynchronousViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SynchronousViewController.h; path = "iPhone Sample/SynchronousViewController.h"; sourceTree = "<group>"; };
		B55B606E0F765A930064029C /* iPhoneSampleAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iPhoneSampleAppDelegate.h; path = "iPhone Sample/iPhoneSampleAppDelegate.h"; sourceTree = "<group>"; };
		B55B60730F765A990064029C /* iphone-icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "iphone-icon.png"; path = "iPhone Sample/iphone-icon.png"; sourceTree = "<group>"; };
		B55B60C70F765BB00064029C /* Tests.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Tests.app; sourceTree = BUILT_PRODUCTS_DIR; };
		B55B60CB0F765BB10064029C /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "Tests-Info.plist"; path = "iPhone Sample/Tests-Info.plist"; sourceTree = "<group>"; };
		B565291E101C8BD7000499CF /* ASITestCase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASITestCase.h; sourceTree = "<group>"; };
		B565291F101C8BD7000499CF /* ASITestCase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASITestCase.m; sourceTree = "<group>"; };
		B56529A2101C8EDA000499CF /* iphone-tests-icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "iphone-tests-icon.png"; path = "iPhone Sample/iphone-tests-icon.png"; sourceTree = "<group>"; };
		B5747F271174BB8300C9414E /* ASIHTTPRequestDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIHTTPRequestDelegate.h; sourceTree = "<group>"; };
		B5747F281174BB8300C9414E /* ASIProgressDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIProgressDelegate.h; sourceTree = "<group>"; };
		B576D4C011C7CC970059B815 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
		B576D4C311C7CC9C0059B815 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
		B576D4C611C7CC9F0059B815 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
		B576D4C911C7CCA60059B815 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
		B576D4D011C7CCBC0059B815 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
		B576D51311C7CE6D0059B815 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
		B576D51E11C7CEB20059B815 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
		B576D52011C7CEB70059B815 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
		B576D52211C7CEBC0059B815 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
		B576D52411C7CEC00059B815 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
		B576D52C11C7CEFA0059B815 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
		B576D53D11C7CF350059B815 /* 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; };
		B576D72311C7F34D0059B815 /* ASIHTTPRequest iPad.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "ASIHTTPRequest iPad.app"; sourceTree = BUILT_PRODUCTS_DIR; };
		B576D76311C7F4D40059B815 /* iPadMainWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = iPadMainWindow.xib; path = "iPhone Sample/Resources/iPadMainWindow.xib"; sourceTree = "<group>"; };
		B576D76511C7F4D90059B815 /* iPhoneMainWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = iPhoneMainWindow.xib; path = "iPhone Sample/Resources/iPhoneMainWindow.xib"; sourceTree = "<group>"; };
		B57AF069125873F4002A1F0C /* libxml2.2.7.3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libxml2.2.7.3.dylib; path = usr/lib/libxml2.2.7.3.dylib; sourceTree = SDKROOT; };
		B57AF5901258B3F1002A1F0C /* WebPageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebPageViewController.h; path = "iPhone Sample/WebPageViewController.h"; sourceTree = "<group>"; };
		B57AF5911258B3F1002A1F0C /* WebPageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WebPageViewController.m; path = "iPhone Sample/WebPageViewController.m"; sourceTree = "<group>"; };
		B57AF5941258B401002A1F0C /* RequestProgressCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RequestProgressCell.h; path = "iPhone Sample/RequestProgressCell.h"; sourceTree = "<group>"; };
		B57AF5951258B401002A1F0C /* RequestProgressCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RequestProgressCell.m; path = "iPhone Sample/RequestProgressCell.m"; sourceTree = "<group>"; };
		B5873FC110FF28CA001E145F /* ASIS3BucketObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIS3BucketObject.h; sourceTree = "<group>"; };
		B5873FC210FF28CA001E145F /* ASIS3BucketObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIS3BucketObject.m; sourceTree = "<group>"; };
		B5873FC510FF28CA001E145F /* ASIS3Request.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIS3Request.h; sourceTree = "<group>"; };
		B5873FC610FF28CA001E145F /* ASIS3Request.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIS3Request.m; sourceTree = "<group>"; };
		B5873FC810FF28CA001E145F /* ASICloudFilesCDNRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASICloudFilesCDNRequest.h; sourceTree = "<group>"; };
		B5873FC910FF28CA001E145F /* ASICloudFilesCDNRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASICloudFilesCDNRequest.m; sourceTree = "<group>"; };
		B5873FCA10FF28CA001E145F /* ASICloudFilesContainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASICloudFilesContainer.h; sourceTree = "<group>"; };
		B5873FCB10FF28CA001E145F /* ASICloudFilesContainer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASICloudFilesContainer.m; sourceTree = "<group>"; };
		B5873FCC10FF28CA001E145F /* ASICloudFilesContainerRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASICloudFilesContainerRequest.h; sourceTree = "<group>"; };
		B5873FCD10FF28CA001E145F /* ASICloudFilesContainerRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASICloudFilesContainerRequest.m; sourceTree = "<group>"; };
		B5873FCE10FF28CA001E145F /* ASICloudFilesContainerXMLParserDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASICloudFilesContainerXMLParserDelegate.h; sourceTree = "<group>"; };
		B5873FCF10FF28CA001E145F /* ASICloudFilesContainerXMLParserDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASICloudFilesContainerXMLParserDelegate.m; sourceTree = "<group>"; };
		B5873FD010FF28CA001E145F /* ASICloudFilesObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASICloudFilesObject.h; sourceTree = "<group>"; };
		B5873FD110FF28CA001E145F /* ASICloudFilesObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASICloudFilesObject.m; sourceTree = "<group>"; };
		B5873FD210FF28CA001E145F /* ASICloudFilesObjectRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASICloudFilesObjectRequest.h; sourceTree = "<group>"; };
		B5873FD310FF28CA001E145F /* ASICloudFilesObjectRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASICloudFilesObjectRequest.m; sourceTree = "<group>"; };
		B5873FD410FF28CA001E145F /* ASICloudFilesRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASICloudFilesRequest.h; sourceTree = "<group>"; };
		B5873FD510FF28CA001E145F /* ASICloudFilesRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASICloudFilesRequest.m; sourceTree = "<group>"; };
		B5873FF310FF2904001E145F /* ASICloudFilesRequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASICloudFilesRequestTests.m; sourceTree = "<group>"; };
		B5873FF410FF2904001E145F /* ASICloudFilesRequestTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASICloudFilesRequestTests.h; sourceTree = "<group>"; };
		B59A87C0103EC6F200300252 /* ASIAuthenticationDialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIAuthenticationDialog.h; sourceTree = "<group>"; };
		B59A87C1103EC6F200300252 /* ASIAuthenticationDialog.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIAuthenticationDialog.m; sourceTree = "<group>"; };
		B5BD2AF811CA541100D7C426 /* iPadSampleAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = iPadSampleAppDelegate.h; path = "iPhone Sample/iPadSampleAppDelegate.h"; sourceTree = "<group>"; };
		B5BD2AF911CA541100D7C426 /* iPadSampleAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = iPadSampleAppDelegate.m; path = "iPhone Sample/iPadSampleAppDelegate.m"; sourceTree = "<group>"; };
		B5BD2AFB11CA542000D7C426 /* DetailCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailCell.h; path = "iPhone Sample/DetailCell.h"; sourceTree = "<group>"; };
		B5BD2AFC11CA542000D7C426 /* DetailCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailCell.m; path = "iPhone Sample/DetailCell.m"; sourceTree = "<group>"; };
		B5BD2AFD11CA542000D7C426 /* InfoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = InfoCell.h; path = "iPhone Sample/InfoCell.h"; sourceTree = "<group>"; };
		B5BD2AFE11CA542000D7C426 /* InfoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = InfoCell.m; path = "iPhone Sample/InfoCell.m"; sourceTree = "<group>"; };
		B5BD2AFF11CA542000D7C426 /* ToggleCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ToggleCell.h; path = "iPhone Sample/ToggleCell.h"; sourceTree = "<group>"; };
		B5BD2B0011CA542000D7C426 /* ToggleCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ToggleCell.m; path = "iPhone Sample/ToggleCell.m"; sourceTree = "<group>"; };
		B5BD2B0711CA542700D7C426 /* RootViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RootViewController.h; path = "iPhone Sample/RootViewController.h"; sourceTree = "<group>"; };
		B5BD2B0811CA542700D7C426 /* RootViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = RootViewController.m; path = "iPhone Sample/RootViewController.m"; sourceTree = "<group>"; };
		B5BD2B0911CA542700D7C426 /* SampleViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SampleViewController.h; path = "iPhone Sample/SampleViewController.h"; sourceTree = "<group>"; };
		B5BD2B0A11CA542700D7C426 /* SampleViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SampleViewController.m; path = "iPhone Sample/SampleViewController.m"; sourceTree = "<group>"; };
		B5C6663C100A82D7004F3C96 /* ASIS3RequestTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIS3RequestTests.h; sourceTree = "<group>"; };
		B5C6663D100A82D7004F3C96 /* ASIS3RequestTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIS3RequestTests.m; sourceTree = "<group>"; };
		B5EA45A8109B56D800E920CB /* StressTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StressTests.h; sourceTree = "<group>"; };
		B5EA45A9109B56D800E920CB /* StressTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StressTests.m; sourceTree = "<group>"; };
		B5FE752511DBBA6400F898C8 /* ASIDownloadCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ASIDownloadCache.m; sourceTree = "<group>"; };
		B5FE752611DBBA6400F898C8 /* ASIDownloadCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASIDownloadCache.h; sourceTree = "<group>"; };
		B5FE752A11DBBA6A00F898C8 /* ASICacheDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASICacheDelegate.h; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		1D60588F0D05DD3D006BFB54 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B576D51F11C7CEB20059B815 /* CFNetwork.framework in Frameworks */,
				B576D52111C7CEB70059B815 /* SystemConfiguration.framework in Frameworks */,
				B576D52311C7CEBC0059B815 /* MobileCoreServices.framework in Frameworks */,
				B576D52511C7CEC00059B815 /* UIKit.framework in Frameworks */,
				B576D52D11C7CEFA0059B815 /* Foundation.framework in Frameworks */,
				B576D77711C7F5810059B815 /* libz.1.2.3.dylib in Frameworks */,
				B552511411D20FC200F9B170 /* CoreGraphics.framework in Frameworks */,
				B53E6DD41257B5C900C1E79A /* libxml2.2.7.3.dylib in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B55B60C50F765BB00064029C /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B54043BB1151546F00D8BE63 /* libGHUnitIPhone3_0.a in Frameworks */,
				B576D4C111C7CC970059B815 /* CFNetwork.framework in Frameworks */,
				B576D4C411C7CC9C0059B815 /* UIKit.framework in Frameworks */,
				B576D4C711C7CC9F0059B815 /* MobileCoreServices.framework in Frameworks */,
				B576D4CA11C7CCA60059B815 /* SystemConfiguration.framework in Frameworks */,
				B576D4D111C7CCBC0059B815 /* CoreGraphics.framework in Frameworks */,
				B576D51411C7CE6D0059B815 /* Foundation.framework in Frameworks */,
				B576D53E11C7CF350059B815 /* libz.1.2.3.dylib in Frameworks */,
				B50C182C121C26FA0055FCAB /* Security.framework in Frameworks */,
				B53E6DEB1257B64100C1E79A /* libxml2.2.7.3.dylib in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B576D71811C7F34D0059B815 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B576D71911C7F34D0059B815 /* CFNetwork.framework in Frameworks */,
				B576D71A11C7F34D0059B815 /* SystemConfiguration.framework in Frameworks */,
				B576D71B11C7F34D0059B815 /* MobileCoreServices.framework in Frameworks */,
				B576D71C11C7F34D0059B815 /* UIKit.framework in Frameworks */,
				B576D71D11C7F34D0059B815 /* Foundation.framework in Frameworks */,
				B576D77611C7F5810059B815 /* libz.1.2.3.dylib in Frameworks */,
				B55251A111D2174C00F9B170 /* CoreGraphics.framework in Frameworks */,
				B57AF06A125873F4002A1F0C /* libxml2.2.7.3.dylib in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		080E96DDFE201D6D7F000001 /* Classes */ = {
			isa = PBXGroup;
			children = (
				B551DB4610D6938500EC1CBF /* ASIHTTPRequestConfig.h */,
				B5FE752A11DBBA6A00F898C8 /* ASICacheDelegate.h */,
				B5747F271174BB8300C9414E /* ASIHTTPRequestDelegate.h */,
				B5747F281174BB8300C9414E /* ASIProgressDelegate.h */,
				B59A87C0103EC6F200300252 /* ASIAuthenticationDialog.h */,
				B59A87C1103EC6F200300252 /* ASIAuthenticationDialog.m */,
				B522DACC1030B2AB009A2D22 /* ASIInputStream.h */,
				B522DACD1030B2AB009A2D22 /* ASIInputStream.m */,
				B55B60450F765A320064029C /* ASIFormDataRequest.h */,
				B55B60460F765A320064029C /* ASIFormDataRequest.m */,
				B55B60470F765A320064029C /* ASIHTTPRequest.h */,
				B55B60480F765A320064029C /* ASIHTTPRequest.m */,
				B55B60490F765A320064029C /* ASINetworkQueue.h */,
				B55B604A0F765A320064029C /* ASINetworkQueue.m */,
				B5FE752611DBBA6400F898C8 /* ASIDownloadCache.h */,
				B5FE752511DBBA6400F898C8 /* ASIDownloadCache.m */,
				B53E6D9B1257B46100C1E79A /* ASIWebPageRequest.h */,
				B53E6D9C1257B46100C1E79A /* ASIWebPageRequest.m */,
				B53E6D921257B45800C1E79A /* ASIDataDecompressor.h */,
				B53E6D911257B45800C1E79A /* ASIDataDecompressor.m */,
				B53E6D941257B45800C1E79A /* ASIDataCompressor.h */,
				B53E6D931257B45800C1E79A /* ASIDataCompressor.m */,
				B5873FC010FF28CA001E145F /* S3 */,
				B5873FC710FF28CA001E145F /* CloudFiles */,
				B55B60510F765A3C0064029C /* Tests */,
			);
			path = Classes;
			sourceTree = "<group>";
		};
		19C28FACFE9D520D11CA2CBB /* Products */ = {
			isa = PBXGroup;
			children = (
				1D6058910D05DD3D006BFB54 /* ASIHTTPRequest iPhone.app */,
				B55B60C70F765BB00064029C /* Tests.app */,
				B576D72311C7F34D0059B815 /* ASIHTTPRequest iPad.app */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		29B97314FDCFA39411CA2CEA /* iPhone */ = {
			isa = PBXGroup;
			children = (
				B5D1454E1029E20D004379B8 /* External */,
				080E96DDFE201D6D7F000001 /* Classes */,
				29B97315FDCFA39411CA2CEA /* Other Sources */,
				29B97317FDCFA39411CA2CEA /* Resources */,
				29B97323FDCFA39411CA2CEA /* Frameworks */,
				19C28FACFE9D520D11CA2CBB /* Products */,
				B54043751151538A00D8BE63 /* libGHUnitIPhone3_0.a */,
				B576D4C011C7CC970059B815 /* CFNetwork.framework */,
				B576D4C311C7CC9C0059B815 /* UIKit.framework */,
				B576D4C611C7CC9F0059B815 /* MobileCoreServices.framework */,
				B576D4C911C7CCA60059B815 /* SystemConfiguration.framework */,
				B576D4D011C7CCBC0059B815 /* CoreGraphics.framework */,
				B576D51311C7CE6D0059B815 /* Foundation.framework */,
				B576D51E11C7CEB20059B815 /* CFNetwork.framework */,
				B576D52011C7CEB70059B815 /* SystemConfiguration.framework */,
				B576D52211C7CEBC0059B815 /* MobileCoreServices.framework */,
				B576D52411C7CEC00059B815 /* UIKit.framework */,
				B576D52C11C7CEFA0059B815 /* Foundation.framework */,
				B576D53D11C7CF350059B815 /* libz.1.2.3.dylib */,
				B552511311D20FC200F9B170 /* CoreGraphics.framework */,
				B55251A011D2174C00F9B170 /* CoreGraphics.framework */,
				B50C182B121C26FA0055FCAB /* Security.framework */,
				B53E6DD31257B5C900C1E79A /* libxml2.2.7.3.dylib */,
				B53E6DEA1257B64100C1E79A /* libxml2.2.7.3.dylib */,
				B57AF069125873F4002A1F0C /* libxml2.2.7.3.dylib */,
			);
			name = iPhone;
			sourceTree = "<group>";
		};
		29B97315FDCFA39411CA2CEA /* Other Sources */ = {
			isa = PBXGroup;
			children = (
				B55B606D0F765A930064029C /* SynchronousViewController.h */,
				B55B606A0F765A930064029C /* SynchronousViewController.m */,
				B57AF5901258B3F1002A1F0C /* WebPageViewController.h */,
				B57AF5911258B3F1002A1F0C /* WebPageViewController.m */,
				B55B60680F765A930064029C /* QueueViewController.h */,
				B55B60670F765A930064029C /* QueueViewController.m */,
				B51791A11024C3E800583567 /* AuthenticationViewController.h */,
				B51791A21024C3E800583567 /* AuthenticationViewController.m */,
				B55B60690F765A930064029C /* UploadViewController.h */,
				B55B606C0F765A930064029C /* UploadViewController.m */,
				B55B606E0F765A930064029C /* iPhoneSampleAppDelegate.h */,
				B55B606B0F765A930064029C /* iPhoneSampleAppDelegate.m */,
				B5BD2AF811CA541100D7C426 /* iPadSampleAppDelegate.h */,
				B5BD2AF911CA541100D7C426 /* iPadSampleAppDelegate.m */,
				B55B605F0F765A750064029C /* iPhone_Prefix.pch */,
				B55B60600F765A750064029C /* main.m */,
				B52329A911CA3380006C6E5A /* UI helpers */,
			);
			name = "Other Sources";
			sourceTree = "<group>";
		};
		29B97317FDCFA39411CA2CEA /* Resources */ = {
			isa = PBXGroup;
			children = (
				B52325AC11CA05A8006C6E5A /* info.png */,
				B558B58911C7F637009B4627 /* iPhoneInfo.plist */,
				B558B58B11C7F63E009B4627 /* iPadInfo.plist */,
				B576D76511C7F4D90059B815 /* iPhoneMainWindow.xib */,
				B576D76311C7F4D40059B815 /* iPadMainWindow.xib */,
				B523254111CA01F1006C6E5A /* Sample.xib */,
				B50C1847121C27510055FCAB /* client.p12 */,
				B56529A2101C8EDA000499CF /* iphone-tests-icon.png */,
				B55B60730F765A990064029C /* iphone-icon.png */,
				B55B60CB0F765BB10064029C /* Tests-Info.plist */,
			);
			name = Resources;
			sourceTree = "<group>";
		};
		29B97323FDCFA39411CA2CEA /* Frameworks */ = {
			isa = PBXGroup;
			children = (
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		B52329A911CA3380006C6E5A /* UI helpers */ = {
			isa = PBXGroup;
			children = (
				B5BD2AFB11CA542000D7C426 /* DetailCell.h */,
				B5BD2AFC11CA542000D7C426 /* DetailCell.m */,
				B5BD2AFD11CA542000D7C426 /* InfoCell.h */,
				B5BD2AFE11CA542000D7C426 /* InfoCell.m */,
				B5BD2AFF11CA542000D7C426 /* ToggleCell.h */,
				B5BD2B0011CA542000D7C426 /* ToggleCell.m */,
				B57AF5941258B401002A1F0C /* RequestProgressCell.h */,
				B57AF5951258B401002A1F0C /* RequestProgressCell.m */,
				B5BD2B0711CA542700D7C426 /* RootViewController.h */,
				B5BD2B0811CA542700D7C426 /* RootViewController.m */,
				B5BD2B0911CA542700D7C426 /* SampleViewController.h */,
				B5BD2B0A11CA542700D7C426 /* SampleViewController.m */,
			);
			name = "UI helpers";
			sourceTree = "<group>";
		};
		B55252B111D22E2200F9B170 /* Reachability */ = {
			isa = PBXGroup;
			children = (
				B55252B211D22E2200F9B170 /* Reachability.h */,
				B55252B311D22E2200F9B170 /* Reachability.m */,
			);
			path = Reachability;
			sourceTree = "<group>";
		};
		B55B60510F765A3C0064029C /* Tests */ = {
			isa = PBXGroup;
			children = (
				B565291E101C8BD7000499CF /* ASITestCase.h */,
				B565291F101C8BD7000499CF /* ASITestCase.m */,
				B55B60520F765A3C0064029C /* ASIFormDataRequestTests.h */,
				B55B60530F765A3C0064029C /* ASIFormDataRequestTests.m */,
				B55B60540F765A3C0064029C /* ASIHTTPRequestTests.h */,
				B55B60550F765A3C0064029C /* ASIHTTPRequestTests.m */,
				B55B60560F765A3C0064029C /* ASINetworkQueueTests.h */,
				B55B60570F765A3C0064029C /* ASINetworkQueueTests.m */,
				B5C6663C100A82D7004F3C96 /* ASIS3RequestTests.h */,
				B5C6663D100A82D7004F3C96 /* ASIS3RequestTests.m */,
				B5873FF410FF2904001E145F /* ASICloudFilesRequestTests.h */,
				B5873FF310FF2904001E145F /* ASICloudFilesRequestTests.m */,
				B51A1A7911DDF7BF00ED75CF /* ASIDownloadCacheTests.h */,
				B51A1A7A11DDF7BF00ED75CF /* ASIDownloadCacheTests.m */,
				B5EA45A8109B56D800E920CB /* StressTests.h */,
				B5EA45A9109B56D800E920CB /* StressTests.m */,
				B5254FF81025F9BF00CF7BC4 /* ProxyTests.h */,
				B5254FF71025F9BF00CF7BC4 /* ProxyTests.m */,
				B52D4A2D10DA4ED5008E8365 /* PerformanceTests.h */,
				B52D4A2E10DA4ED5008E8365 /* PerformanceTests.m */,
				B50C1821121C26DB0055FCAB /* ClientCertificateTests.h */,
				B50C1822121C26DB0055FCAB /* ClientCertificateTests.m */,
				B50D532A126C87ED0022EA6F /* BlocksTests.h */,
				B50D532B126C87ED0022EA6F /* BlocksTests.m */,
			);
			path = Tests;
			sourceTree = "<group>";
		};
		B5728DC110AED63D004F4CE6 /* GHUnit */ = {
			isa = PBXGroup;
			children = (
				B54043A11151542C00D8BE63 /* GHAsyncTestCase.h */,
				B54043A21151542C00D8BE63 /* GHTest.h */,
				B54043A31151542C00D8BE63 /* GHTestCase.h */,
				B54043A41151542C00D8BE63 /* GHTestGroup.h */,
				B54043A51151542C00D8BE63 /* GHTesting.h */,
				B54043A61151542C00D8BE63 /* GHTestMacros.h */,
				B54043A71151542C00D8BE63 /* GHTestRunner.h */,
				B54043A81151542C00D8BE63 /* GHTestSuite.h */,
				B54043A91151542C00D8BE63 /* GHUnit.h */,
				B54043AA1151542C00D8BE63 /* GHUnitIPhoneAppDelegate.h */,
				B54043AB1151542C00D8BE63 /* GHUnitIPhoneTestMain.m */,
				B54043AC1151542C00D8BE63 /* GHUNSObject+Swizzle.h */,
				B54043AF1151542C00D8BE63 /* NSException+GHTestFailureExceptions.h */,
				B54043B01151542C00D8BE63 /* NSValue+GHValueFormatter.h */,
				B54043BA1151546F00D8BE63 /* libGHUnitIPhone3_0.a */,
			);
			name = GHUnit;
			sourceTree = "<group>";
		};
		B5873FC010FF28CA001E145F /* S3 */ = {
			isa = PBXGroup;
			children = (
				B5403FFF115114BA00D8BE63 /* ASIS3Bucket.h */,
				B5404000115114BA00D8BE63 /* ASIS3Bucket.m */,
				B5404001115114BA00D8BE63 /* ASIS3BucketRequest.h */,
				B5404002115114BA00D8BE63 /* ASIS3BucketRequest.m */,
				B5404003115114BA00D8BE63 /* ASIS3ObjectRequest.h */,
				B5404004115114BA00D8BE63 /* ASIS3ObjectRequest.m */,
				B5404005115114BA00D8BE63 /* ASIS3ServiceRequest.h */,
				B5404006115114BA00D8BE63 /* ASIS3ServiceRequest.m */,
				B5873FC110FF28CA001E145F /* ASIS3BucketObject.h */,
				B5873FC210FF28CA001E145F /* ASIS3BucketObject.m */,
				B5873FC510FF28CA001E145F /* ASIS3Request.h */,
				B5873FC610FF28CA001E145F /* ASIS3Request.m */,
			);
			path = S3;
			sourceTree = "<group>";
		};
		B5873FC710FF28CA001E145F /* CloudFiles */ = {
			isa = PBXGroup;
			children = (
				B5873FC810FF28CA001E145F /* ASICloudFilesCDNRequest.h */,
				B5873FC910FF28CA001E145F /* ASICloudFilesCDNRequest.m */,
				B5873FCA10FF28CA001E145F /* ASICloudFilesContainer.h */,
				B5873FCB10FF28CA001E145F /* ASICloudFilesContainer.m */,
				B5873FCC10FF28CA001E145F /* ASICloudFilesContainerRequest.h */,
				B5873FCD10FF28CA001E145F /* ASICloudFilesContainerRequest.m */,
				B5873FCE10FF28CA001E145F /* ASICloudFilesContainerXMLParserDelegate.h */,
				B5873FCF10FF28CA001E145F /* ASICloudFilesContainerXMLParserDelegate.m */,
				B5873FD010FF28CA001E145F /* ASICloudFilesObject.h */,
				B5873FD110FF28CA001E145F /* ASICloudFilesObject.m */,
				B5873FD210FF28CA001E145F /* ASICloudFilesObjectRequest.h */,
				B5873FD310FF28CA001E145F /* ASICloudFilesObjectRequest.m */,
				B5873FD410FF28CA001E145F /* ASICloudFilesRequest.h */,
				B5873FD510FF28CA001E145F /* ASICloudFilesRequest.m */,
			);
			path = CloudFiles;
			sourceTree = "<group>";
		};
		B5D1454E1029E20D004379B8 /* External */ = {
			isa = PBXGroup;
			children = (
				B55252B111D22E2200F9B170 /* Reachability */,
				B5728DC110AED63D004F4CE6 /* GHUnit */,
			);
			path = External;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		1D6058900D05DD3D006BFB54 /* iPhone */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "iPhone" */;
			buildPhases = (
				1D60588D0D05DD3D006BFB54 /* Resources */,
				1D60588E0D05DD3D006BFB54 /* Sources */,
				1D60588F0D05DD3D006BFB54 /* Frameworks */,
				B52D492810DA4041008E8365 /* ShellScript */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = iPhone;
			productName = iPhone;
			productReference = 1D6058910D05DD3D006BFB54 /* ASIHTTPRequest iPhone.app */;
			productType = "com.apple.product-type.application";
		};
		B55B60C60F765BB00064029C /* Tests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = B55B60CE0F765BB10064029C /* Build configuration list for PBXNativeTarget "Tests" */;
			buildPhases = (
				B55B60C30F765BB00064029C /* Resources */,
				B55B60C40F765BB00064029C /* Sources */,
				B55B60C50F765BB00064029C /* Frameworks */,
				B5F95181115237CB00EDED69 /* CopyFiles */,
				B52D492410DA403A008E8365 /* ShellScript */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = Tests;
			productName = Tests;
			productReference = B55B60C70F765BB00064029C /* Tests.app */;
			productType = "com.apple.product-type.application";
		};
		B576D70211C7F34D0059B815 /* iPad */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = B576D72011C7F34D0059B815 /* Build configuration list for PBXNativeTarget "iPad" */;
			buildPhases = (
				B576D70311C7F34D0059B815 /* Resources */,
				B576D70A11C7F34D0059B815 /* Sources */,
				B576D71811C7F34D0059B815 /* Frameworks */,
				B576D71F11C7F34D0059B815 /* ShellScript */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = iPad;
			productName = iPhone;
			productReference = B576D72311C7F34D0059B815 /* ASIHTTPRequest iPad.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 "iPhone" */;
			compatibilityVersion = "Xcode 3.1";
			developmentRegion = English;
			hasScannedForEncodings = 1;
			knownRegions = (
				English,
				Japanese,
				French,
				German,
			);
			mainGroup = 29B97314FDCFA39411CA2CEA /* iPhone */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				1D6058900D05DD3D006BFB54 /* iPhone */,
				B55B60C60F765BB00064029C /* Tests */,
				B576D70211C7F34D0059B815 /* iPad */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		1D60588D0D05DD3D006BFB54 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B55B60740F765A990064029C /* iphone-icon.png in Resources */,
				B576D76611C7F4D90059B815 /* iPhoneMainWindow.xib in Resources */,
				B523254311CA01F1006C6E5A /* Sample.xib in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B55B60C30F765BB00064029C /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B56529A3101C8EDA000499CF /* iphone-tests-icon.png in Resources */,
				B50C1848121C27510055FCAB /* client.p12 in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B576D70311C7F34D0059B815 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B576D70411C7F34D0059B815 /* iphone-icon.png in Resources */,
				B558B5EB11C7F9C8009B4627 /* iPadMainWindow.xib in Resources */,
				B523254211CA01F1006C6E5A /* Sample.xib in Resources */,
				B52325AD11CA05A8006C6E5A /* info.png in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		B52D492410DA403A008E8365 /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = ./set_version_number.rb;
		};
		B52D492810DA4041008E8365 /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = ./set_version_number.rb;
		};
		B576D71F11C7F34D0059B815 /* ShellScript */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = ./set_version_number.rb;
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		1D60588E0D05DD3D006BFB54 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B55B604D0F765A320064029C /* ASIFormDataRequest.m in Sources */,
				B55B604E0F765A320064029C /* ASIHTTPRequest.m in Sources */,
				B55B604F0F765A320064029C /* ASINetworkQueue.m in Sources */,
				B55B60620F765A750064029C /* main.m in Sources */,
				B55B606F0F765A930064029C /* QueueViewController.m in Sources */,
				B55B60700F765A930064029C /* SynchronousViewController.m in Sources */,
				B55B60710F765A930064029C /* iPhoneSampleAppDelegate.m in Sources */,
				B55B60720F765A930064029C /* UploadViewController.m in Sources */,
				B51791A31024C3E800583567 /* AuthenticationViewController.m in Sources */,
				B522DACF1030B2AB009A2D22 /* ASIInputStream.m in Sources */,
				B59A87C3103EC6F200300252 /* ASIAuthenticationDialog.m in Sources */,
				B5BD2B0411CA542000D7C426 /* DetailCell.m in Sources */,
				B5BD2B0511CA542000D7C426 /* InfoCell.m in Sources */,
				B5BD2B0611CA542000D7C426 /* ToggleCell.m in Sources */,
				B5BD2B0E11CA542700D7C426 /* SampleViewController.m in Sources */,
				B55252B511D22E2200F9B170 /* Reachability.m in Sources */,
				B5FE752811DBBA6400F898C8 /* ASIDownloadCache.m in Sources */,
				B53E6D971257B45800C1E79A /* ASIDataDecompressor.m in Sources */,
				B53E6D981257B45800C1E79A /* ASIDataCompressor.m in Sources */,
				B53E6D9E1257B46100C1E79A /* ASIWebPageRequest.m in Sources */,
				B57AF5921258B3F1002A1F0C /* WebPageViewController.m in Sources */,
				B57AF5961258B401002A1F0C /* RequestProgressCell.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B55B60C40F765BB00064029C /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B55B60CF0F765BBA0064029C /* ASIFormDataRequest.m in Sources */,
				B55B60D00F765BBD0064029C /* ASIHTTPRequest.m in Sources */,
				B55B60D10F765BC00064029C /* ASINetworkQueue.m in Sources */,
				B55B60D30F765BC90064029C /* ASIFormDataRequestTests.m in Sources */,
				B55B60D40F765BCD0064029C /* ASIHTTPRequestTests.m in Sources */,
				B55B60D50F765BD00064029C /* ASINetworkQueueTests.m in Sources */,
				B5C6663E100A82D7004F3C96 /* ASIS3RequestTests.m in Sources */,
				B5652920101C8BD7000499CF /* ASITestCase.m in Sources */,
				B5254FF91025F9BF00CF7BC4 /* ProxyTests.m in Sources */,
				B522DACE1030B2AB009A2D22 /* ASIInputStream.m in Sources */,
				B59A87C2103EC6F200300252 /* ASIAuthenticationDialog.m in Sources */,
				B5EA45AA109B56D800E920CB /* StressTests.m in Sources */,
				B52D4A2F10DA4ED5008E8365 /* PerformanceTests.m in Sources */,
				B5873FD610FF28CA001E145F /* ASIS3BucketObject.m in Sources */,
				B5873FD810FF28CA001E145F /* ASIS3Request.m in Sources */,
				B5873FD910FF28CA001E145F /* ASICloudFilesCDNRequest.m in Sources */,
				B5873FDA10FF28CA001E145F /* ASICloudFilesContainer.m in Sources */,
				B5873FDB10FF28CA001E145F /* ASICloudFilesContainerRequest.m in Sources */,
				B5873FDC10FF28CA001E145F /* ASICloudFilesContainerXMLParserDelegate.m in Sources */,
				B5873FDD10FF28CA001E145F /* ASICloudFilesObject.m in Sources */,
				B5873FDE10FF28CA001E145F /* ASICloudFilesObjectRequest.m in Sources */,
				B5873FDF10FF28CA001E145F /* ASICloudFilesRequest.m in Sources */,
				B5873FF510FF2904001E145F /* ASICloudFilesRequestTests.m in Sources */,
				B540400B115114BA00D8BE63 /* ASIS3Bucket.m in Sources */,
				B540400C115114BA00D8BE63 /* ASIS3BucketRequest.m in Sources */,
				B540400D115114BA00D8BE63 /* ASIS3ObjectRequest.m in Sources */,
				B540400E115114BA00D8BE63 /* ASIS3ServiceRequest.m in Sources */,
				B54043B11151542C00D8BE63 /* GHUnitIPhoneTestMain.m in Sources */,
				B55252B411D22E2200F9B170 /* Reachability.m in Sources */,
				B5FE752711DBBA6400F898C8 /* ASIDownloadCache.m in Sources */,
				B51A1A9B11DDF85100ED75CF /* ASIDownloadCacheTests.m in Sources */,
				B50C1823121C26DB0055FCAB /* ClientCertificateTests.m in Sources */,
				B53E6D951257B45800C1E79A /* ASIDataDecompressor.m in Sources */,
				B53E6D961257B45800C1E79A /* ASIDataCompressor.m in Sources */,
				B53E6D9D1257B46100C1E79A /* ASIWebPageRequest.m in Sources */,
				B50D532C126C87ED0022EA6F /* BlocksTests.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B576D70A11C7F34D0059B815 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				B576D70B11C7F34D0059B815 /* ASIFormDataRequest.m in Sources */,
				B576D70C11C7F34D0059B815 /* ASIHTTPRequest.m in Sources */,
				B576D70D11C7F34D0059B815 /* ASINetworkQueue.m in Sources */,
				B576D70F11C7F34D0059B815 /* main.m in Sources */,
				B576D71011C7F34D0059B815 /* QueueViewController.m in Sources */,
				B576D71111C7F34D0059B815 /* SynchronousViewController.m in Sources */,
				B576D71211C7F34D0059B815 /* iPhoneSampleAppDelegate.m in Sources */,
				B576D71311C7F34D0059B815 /* UploadViewController.m in Sources */,
				B576D71411C7F34D0059B815 /* AuthenticationViewController.m in Sources */,
				B576D71511C7F34D0059B815 /* ASIInputStream.m in Sources */,
				B576D71611C7F34D0059B815 /* ASIAuthenticationDialog.m in Sources */,
				B5BD2AFA11CA541100D7C426 /* iPadSampleAppDelegate.m in Sources */,
				B5BD2B0111CA542000D7C426 /* DetailCell.m in Sources */,
				B5BD2B0211CA542000D7C426 /* InfoCell.m in Sources */,
				B5BD2B0311CA542000D7C426 /* ToggleCell.m in Sources */,
				B5BD2B0B11CA542700D7C426 /* RootViewController.m in Sources */,
				B5BD2B0C11CA542700D7C426 /* SampleViewController.m in Sources */,
				B55252B611D22E2200F9B170 /* Reachability.m in Sources */,
				B5FE752911DBBA6400F898C8 /* ASIDownloadCache.m in Sources */,
				B53E6D991257B45800C1E79A /* ASIDataDecompressor.m in Sources */,
				B53E6D9A1257B45800C1E79A /* ASIDataCompressor.m in Sources */,
				B53E6D9F1257B46100C1E79A /* ASIWebPageRequest.m in Sources */,
				B57AF5931258B3F1002A1F0C /* WebPageViewController.m in Sources */,
				B57AF5971258B401002A1F0C /* RequestProgressCell.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin XCBuildConfiguration section */
		1D6058940D05DD3E006BFB54 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				GCC_C_LANGUAGE_STANDARD = "compiler-default";
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "iPhone Sample/iPhone_Prefix.pch";
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				HEADER_SEARCH_PATHS = "${SDK_DIR}/usr/include/libxml2";
				INFOPLIST_FILE = "iPhone Sample/iPhoneInfo.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 3.1.3;
				PRODUCT_NAME = "ASIHTTPRequest iPhone";
				"PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
				SDKROOT = iphoneos4.1;
				TARGETED_DEVICE_FAMILY = 1;
			};
			name = Debug;
		};
		1D6058950D05DD3E006BFB54 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = YES;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "iPhone Sample/iPhone_Prefix.pch";
				GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
				HEADER_SEARCH_PATHS = "${SDK_DIR}/usr/include/libxml2";
				INFOPLIST_FILE = "iPhone Sample/iPhoneInfo.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 3.1.3;
				PRODUCT_NAME = "ASIHTTPRequest iPhone";
				"PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
				SDKROOT = iphoneos4.1;
				TARGETED_DEVICE_FAMILY = 1;
			};
			name = Release;
		};
		B55B60CC0F765BB10064029C /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				GCC_C_LANGUAGE_STANDARD = "compiler-default";
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "iPhone Sample/iPhone_Prefix.pch";
				GCC_PREPROCESSOR_DEFINITIONS = "";
				GCC_VERSION = com.apple.compilers.llvmgcc42;
				HEADER_SEARCH_PATHS = "${SDK_DIR}/usr/include/libxml2";
				INFOPLIST_FILE = "iPhone Sample/Tests-Info.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 2.2.1;
				LIBRARY_SEARCH_PATHS = (
					"\"$(SRCROOT)/Frameworks/libGHUnitIPhone\"",
					"\"$(SRCROOT)/Frameworks/libGHUnitIPhone3_0-0\"",
					"\"$(SRCROOT)/External/GHUnit/Project-IPhone/build/CombinedDebug3_0\"",
					"\"$(SRCROOT)/External/GHUnit/Project-IPhone/build/Debug-iphoneos\"",
					"\"$(SRCROOT)/External/GHUnit/Project-IPhone/build/Debug-iphonesimulator\"",
				);
				OTHER_LDFLAGS = (
					"-all_load",
					"-ObjC",
				);
				PRODUCT_NAME = Tests;
				"PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
				SDKROOT = iphoneos;
				WARNING_CFLAGS = "";
			};
			name = Debug;
		};
		B55B60CD0F765BB10064029C /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CODE_SIGN_IDENTITY = "iPhone Developer";
				COPY_PHASE_STRIP = YES;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				GCC_C_LANGUAGE_STANDARD = "compiler-default";
				GCC_ENABLE_FIX_AND_CONTINUE = NO;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "iPhone Sample/iPhone_Prefix.pch";
				GCC_PREPROCESSOR_DEFINITIONS = "";
				GCC_VERSION = com.apple.compilers.llvmgcc42;
				HEADER_SEARCH_PATHS = "${SDK_DIR}/usr/include/libxml2";
				INFOPLIST_FILE = "iPhone Sample/Tests-Info.plist";
				INSTALL_PATH = "$(HOME)/Applications";
				IPHONEOS_DEPLOYMENT_TARGET = 2.2.1;
				LIBRARY_SEARCH_PATHS = (
					"\"$(SRCROOT)/Frameworks/libGHUnitIPhone\"",
					"\"$(SRCROOT)/Frameworks/libGHUnitIPhone3_0-0\"",
					"\"$(SRCROOT)/External/GHUnit/Project-IPhone/build/CombinedDebug3_0\"",
					"\"$(SRCROOT)/External/GHUnit/Project-IPhone/build/Debug-iphoneos\"",
					"\"$(SRCROOT)/External/GHUnit/Project-IPhone/build/Debug-iphonesimulator\"",
				);
				OTHER_LDFLAGS = (
					"-all_load",
					"-ObjC",
				);
				PREBINDING = NO;
				PRODUCT_NAME = Tests;
				PROVISIONING_PROFILE = "";
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
			};
			name = Release;
		};
		B576D72111C7F34D0059B815 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_UNIVERSAL_IPHONE_OS)";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer: Ben Copsey (KRBSUQUP72)";
				COPY_PHASE_STRIP = NO;
				GCC_C_LANGUAGE_STANDARD = "compiler-default";
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "iPhone Sample/iPhone_Prefix.pch";
				GCC_VERSION = com.apple.compilers.llvmgcc42;
				HEADER_SEARCH_PATHS = "${SDK_DIR}/usr/include/libxml2";
				INFOPLIST_FILE = "iPhone Sample/iPadInfo.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 3.2;
				PRODUCT_NAME = "ASIHTTPRequest iPad";
				SDKROOT = iphonesimulator3.2;
				TARGETED_DEVICE_FAMILY = 2;
			};
			name = Debug;
		};
		B576D72211C7F34D0059B815 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				ARCHS = "$(ARCHS_UNIVERSAL_IPHONE_OS)";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer: Ben Copsey (KRBSUQUP72)";
				COPY_PHASE_STRIP = YES;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "iPhone Sample/iPhone_Prefix.pch";
				GCC_VERSION = com.apple.compilers.llvmgcc42;
				HEADER_SEARCH_PATHS = "${SDK_DIR}/usr/include/libxml2";
				INFOPLIST_FILE = "iPhone Sample/iPadInfo.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 3.2;
				PRODUCT_NAME = "ASIHTTPRequest iPad";
				SDKROOT = iphonesimulator3.2;
				TARGETED_DEVICE_FAMILY = 2;
			};
			name = Release;
		};
		C01FCF4F08A954540054247B /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				GCC_C_LANGUAGE_STANDARD = c99;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				ONLY_ACTIVE_ARCH = YES;
				PREBINDING = NO;
				SDKROOT = iphoneos2.2.1;
			};
			name = Debug;
		};
		C01FCF5008A954540054247B /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ARCHS = "$(ARCHS_STANDARD_32_BIT)";
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				GCC_C_LANGUAGE_STANDARD = c99;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				PREBINDING = NO;
				SDKROOT = iphoneos3.0;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "iPhone" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				1D6058940D05DD3E006BFB54 /* Debug */,
				1D6058950D05DD3E006BFB54 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		B55B60CE0F765BB10064029C /* Build configuration list for PBXNativeTarget "Tests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				B55B60CC0F765BB10064029C /* Debug */,
				B55B60CD0F765BB10064029C /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		B576D72011C7F34D0059B815 /* Build configuration list for PBXNativeTarget "iPad" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				B576D72111C7F34D0059B815 /* Debug */,
				B576D72211C7F34D0059B815 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		C01FCF4E08A954540054247B /* Build configuration list for PBXProject "iPhone" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				C01FCF4F08A954540054247B /* Debug */,
				C01FCF5008A954540054247B /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 29B97313FDCFA39411CA2CEA /* Project object */;
}