Ben Copsey

Added operation queue tests

@@ -78,9 +78,6 @@ @@ -78,9 +78,6 @@
78 CFHTTPAuthenticationRef requestAuthentication; 78 CFHTTPAuthenticationRef requestAuthentication;
79 NSMutableDictionary *requestCredentials; 79 NSMutableDictionary *requestCredentials;
80 80
81 - // Credentials associated with the authentication (reused until server says no)  
82 - //CFMutableDictionaryRef credentials;  
83 -  
84 // HTTP status code, eg: 200 = OK, 404 = Not found etc 81 // HTTP status code, eg: 200 = OK, 404 = Not found etc
85 int responseStatusCode; 82 int responseStatusCode;
86 83
@@ -13,5 +13,6 @@ @@ -13,5 +13,6 @@
13 } 13 }
14 14
15 - (void)testBasicDownload; 15 - (void)testBasicDownload;
  16 +- (void)testOperationQueue;
16 17
17 @end 18 @end
@@ -11,6 +11,18 @@ @@ -11,6 +11,18 @@
11 11
12 @implementation ASIHTTPRequestTests 12 @implementation ASIHTTPRequestTests
13 13
  14 +/*
  15 +More tests needed for:
  16 + - Delegates
  17 + - Progress delegates
  18 + - Content length
  19 + - POSTing
  20 + - File downloads
  21 + - Authentication
  22 + - Keychains
  23 + - Session persistence
  24 +*/
  25 +
14 - (void)testBasicDownload 26 - (void)testBasicDownload
15 { 27 {
16 //Grab data 28 //Grab data
@@ -45,4 +57,62 @@ @@ -45,4 +57,62 @@
45 STAssertNotNil(error,@"Failed to generate an error for a bad host"); 57 STAssertNotNil(error,@"Failed to generate an error for a bad host");
46 } 58 }
47 59
  60 +- (void)testOperationQueue
  61 +{
  62 + NSOperationQueue *queue = [[[NSOperationQueue alloc] init] autorelease];
  63 +
  64 + NSURL *url;
  65 + url = [[[NSURL alloc] initWithString:@"http://asi/asi-http-request-tests/first"] autorelease];
  66 + ASIHTTPRequest *request1 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
  67 + [queue addOperation:request1];
  68 +
  69 + url = [[[NSURL alloc] initWithString:@"http://asi/asi-http-request-tests/second"] autorelease];
  70 + ASIHTTPRequest *request2 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
  71 + [queue addOperation:request2];
  72 +
  73 + url = [[[NSURL alloc] initWithString:@"http://asi/asi-http-request-tests/third"] autorelease];
  74 + ASIHTTPRequest *request3 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
  75 + [queue addOperation:request3];
  76 +
  77 + url = [[[NSURL alloc] initWithString:@"http://aaaaaaaaaaaaaaaaaaaaaaaaaaaaab.com"] autorelease];
  78 + ASIHTTPRequest *request4 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
  79 + [queue addOperation:request4];
  80 +
  81 + url = [[[NSURL alloc] initWithString:@"http://asi/asi-http-request-tests/broken"] autorelease];
  82 + ASIHTTPRequest *request5 = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
  83 + [queue addOperation:request5];
  84 +
  85 + [queue waitUntilAllOperationsAreFinished];
  86 +
  87 + BOOL success;
  88 +
  89 + success = ([request1 error] == nil);
  90 + STAssertTrue(success,@"Request 1 failed");
  91 +
  92 + success = [[request1 dataString] isEqualToString:@"This is the expected content for the first string"];
  93 + STAssertTrue(success,@"Failed to download the correct data for request 1");
  94 +
  95 + success = ([request2 error] == nil);
  96 + STAssertTrue(success,@"Request 2 failed");
  97 +
  98 + success = [[request2 dataString] isEqualToString:@"This is the expected content for the second string"];
  99 + STAssertTrue(success,@"Failed to download the correct data for request 2");
  100 +
  101 + success = ([request3 error] == nil);
  102 + STAssertTrue(success,@"Request 3 failed");
  103 +
  104 + success = [[request3 dataString] isEqualToString:@"This is the expected content for the third string"];
  105 + STAssertTrue(success,@"Failed to download the correct data for request 3");
  106 +
  107 + success = ([request4 error] != nil);
  108 + STAssertTrue(success,@"Request 4 succeed when it should have failed");
  109 +
  110 + success = ([request5 error] == nil);
  111 + STAssertTrue(success,@"Request 5 failed");
  112 +
  113 + success = ([request5 responseStatusCode] == 404);
  114 + STAssertTrue(success,@"Failed to obtain the correct status code for request 5");
  115 +
  116 +}
  117 +
48 @end 118 @end
@@ -197,7 +197,88 @@ @@ -197,7 +197,88 @@
197 <key>Notifications</key> 197 <key>Notifications</key>
198 <array/> 198 <array/>
199 <key>OpenEditors</key> 199 <key>OpenEditors</key>
200 - <array/> 200 + <array>
  201 + <dict>
  202 + <key>Content</key>
  203 + <dict>
  204 + <key>PBXProjectModuleGUID</key>
  205 + <string>B5731E470E4344F90008024F</string>
  206 + <key>PBXProjectModuleLabel</key>
  207 + <string>ASIHTTPRequest.h</string>
  208 + <key>PBXSplitModuleInNavigatorKey</key>
  209 + <dict>
  210 + <key>Split0</key>
  211 + <dict>
  212 + <key>PBXProjectModuleGUID</key>
  213 + <string>B5731E480E4344F90008024F</string>
  214 + <key>PBXProjectModuleLabel</key>
  215 + <string>ASIHTTPRequest.h</string>
  216 + <key>_historyCapacity</key>
  217 + <integer>0</integer>
  218 + <key>bookmark</key>
  219 + <string>B5731E490E4344F90008024F</string>
  220 + <key>history</key>
  221 + <array>
  222 + <string>B5731E2C0E43448A0008024F</string>
  223 + </array>
  224 + </dict>
  225 + <key>SplitCount</key>
  226 + <string>1</string>
  227 + </dict>
  228 + <key>StatusBarVisibility</key>
  229 + <true/>
  230 + </dict>
  231 + <key>Geometry</key>
  232 + <dict>
  233 + <key>Frame</key>
  234 + <string>{{0, 20}, {1475, 777}}</string>
  235 + <key>PBXModuleWindowStatusBarHidden2</key>
  236 + <false/>
  237 + <key>RubberWindowFrame</key>
  238 + <string>19 360 1475 818 0 0 1920 1178 </string>
  239 + </dict>
  240 + </dict>
  241 + <dict>
  242 + <key>Content</key>
  243 + <dict>
  244 + <key>PBXProjectModuleGUID</key>
  245 + <string>B5731E4A0E4344F90008024F</string>
  246 + <key>PBXProjectModuleLabel</key>
  247 + <string>AppDelegate.h</string>
  248 + <key>PBXSplitModuleInNavigatorKey</key>
  249 + <dict>
  250 + <key>Split0</key>
  251 + <dict>
  252 + <key>PBXProjectModuleGUID</key>
  253 + <string>B5731E4B0E4344F90008024F</string>
  254 + <key>PBXProjectModuleLabel</key>
  255 + <string>AppDelegate.h</string>
  256 + <key>_historyCapacity</key>
  257 + <integer>0</integer>
  258 + <key>bookmark</key>
  259 + <string>B5731E4C0E4344F90008024F</string>
  260 + <key>history</key>
  261 + <array>
  262 + <string>B5731E2A0E43441F0008024F</string>
  263 + </array>
  264 + </dict>
  265 + <key>SplitCount</key>
  266 + <string>1</string>
  267 + </dict>
  268 + <key>StatusBarVisibility</key>
  269 + <true/>
  270 + </dict>
  271 + <key>Geometry</key>
  272 + <dict>
  273 + <key>Frame</key>
  274 + <string>{{0, 20}, {1475, 777}}</string>
  275 + <key>PBXModuleWindowStatusBarHidden2</key>
  276 + <false/>
  277 + <key>RubberWindowFrame</key>
  278 + <string>15 55 1475 818 0 0 1920 1178 </string>
  279 + </dict>
  280 + </dict>
  281 + </array>
201 <key>PerspectiveWidths</key> 282 <key>PerspectiveWidths</key>
202 <array> 283 <array>
203 <integer>-1</integer> 284 <integer>-1</integer>
@@ -337,22 +418,22 @@ @@ -337,22 +418,22 @@
337 <key>_historyCapacity</key> 418 <key>_historyCapacity</key>
338 <integer>0</integer> 419 <integer>0</integer>
339 <key>bookmark</key> 420 <key>bookmark</key>
340 - <string>B5731DB10E433BDB0008024F</string> 421 + <string>B5731E460E4344F90008024F</string>
341 <key>history</key> 422 <key>history</key>
342 <array> 423 <array>
343 - <string>B5127C400E41C09D00D266C2</string>  
344 - <string>B5731B350E430D310008024F</string>  
345 <string>B5731B8B0E4310180008024F</string> 424 <string>B5731B8B0E4310180008024F</string>
346 <string>B5731BBE0E4319180008024F</string> 425 <string>B5731BBE0E4319180008024F</string>
347 <string>B5731BEE0E431A050008024F</string> 426 <string>B5731BEE0E431A050008024F</string>
348 <string>B5731BEF0E431A050008024F</string> 427 <string>B5731BEF0E431A050008024F</string>
349 <string>B5731BF00E431A050008024F</string> 428 <string>B5731BF00E431A050008024F</string>
350 - <string>B5731C780E4333810008024F</string> 429 + <string>B5731E180E43424A0008024F</string>
351 - <string>B5731C790E4333810008024F</string> 430 + <string>B5731E2E0E4344F90008024F</string>
352 - <string>B5731D960E433A750008024F</string> 431 + <string>B5731E2F0E4344F90008024F</string>
353 - <string>B5731D970E433A750008024F</string> 432 + <string>B5731E300E4344F90008024F</string>
354 - <string>B5731DA30E433B550008024F</string> 433 + <string>B5731E310E4344F90008024F</string>
355 - <string>B5731DB00E433BDB0008024F</string> 434 + <string>B5731E320E4344F90008024F</string>
  435 + <string>B5731E330E4344F90008024F</string>
  436 + <string>B5731E340E4344F90008024F</string>
356 </array> 437 </array>
357 <key>prevStack</key> 438 <key>prevStack</key>
358 <array> 439 <array>
@@ -409,6 +490,41 @@ @@ -409,6 +490,41 @@
409 <string>B5731D9C0E433A750008024F</string> 490 <string>B5731D9C0E433A750008024F</string>
410 <string>B5731DA50E433B550008024F</string> 491 <string>B5731DA50E433B550008024F</string>
411 <string>B5731DA60E433B550008024F</string> 492 <string>B5731DA60E433B550008024F</string>
  493 + <string>B5731DBB0E433E280008024F</string>
  494 + <string>B5731DBC0E433E280008024F</string>
  495 + <string>B5731DBD0E433E280008024F</string>
  496 + <string>B5731DBE0E433E280008024F</string>
  497 + <string>B5731DBF0E433E280008024F</string>
  498 + <string>B5731DC00E433E280008024F</string>
  499 + <string>B5731DC10E433E280008024F</string>
  500 + <string>B5731DC20E433E280008024F</string>
  501 + <string>B5731DC30E433E280008024F</string>
  502 + <string>B5731DC40E433E280008024F</string>
  503 + <string>B5731DDC0E433E990008024F</string>
  504 + <string>B5731DEA0E4340CF0008024F</string>
  505 + <string>B5731DEB0E4340CF0008024F</string>
  506 + <string>B5731DEC0E4340CF0008024F</string>
  507 + <string>B5731DED0E4340CF0008024F</string>
  508 + <string>B5731DEE0E4340CF0008024F</string>
  509 + <string>B5731E1A0E43424A0008024F</string>
  510 + <string>B5731E1B0E43424A0008024F</string>
  511 + <string>B5731E350E4344F90008024F</string>
  512 + <string>B5731E360E4344F90008024F</string>
  513 + <string>B5731E370E4344F90008024F</string>
  514 + <string>B5731E380E4344F90008024F</string>
  515 + <string>B5731E390E4344F90008024F</string>
  516 + <string>B5731E3A0E4344F90008024F</string>
  517 + <string>B5731E3B0E4344F90008024F</string>
  518 + <string>B5731E3C0E4344F90008024F</string>
  519 + <string>B5731E3D0E4344F90008024F</string>
  520 + <string>B5731E3E0E4344F90008024F</string>
  521 + <string>B5731E3F0E4344F90008024F</string>
  522 + <string>B5731E400E4344F90008024F</string>
  523 + <string>B5731E410E4344F90008024F</string>
  524 + <string>B5731E420E4344F90008024F</string>
  525 + <string>B5731E430E4344F90008024F</string>
  526 + <string>B5731E440E4344F90008024F</string>
  527 + <string>B5731E450E4344F90008024F</string>
412 </array> 528 </array>
413 </dict> 529 </dict>
414 <key>SplitCount</key> 530 <key>SplitCount</key>
@@ -602,11 +718,14 @@ @@ -602,11 +718,14 @@
602 <integer>5</integer> 718 <integer>5</integer>
603 <key>WindowOrderList</key> 719 <key>WindowOrderList</key>
604 <array> 720 <array>
  721 + <string>B5731E4D0E4344F90008024F</string>
605 <string>B5731C3B0E431B3F0008024F</string> 722 <string>B5731C3B0E431B3F0008024F</string>
606 <string>B5731C3C0E431B3F0008024F</string> 723 <string>B5731C3C0E431B3F0008024F</string>
607 - <string>B5ABC8410E24CDE70072F422</string>  
608 <string>1CD10A99069EF8BA00B06720</string> 724 <string>1CD10A99069EF8BA00B06720</string>
609 <string>1C78EAAD065D492600B07095</string> 725 <string>1C78EAAD065D492600B07095</string>
  726 + <string>B5ABC8410E24CDE70072F422</string>
  727 + <string>B5731E4A0E4344F90008024F</string>
  728 + <string>B5731E470E4344F90008024F</string>
610 <string>/Users/ben/asi-http-request/asi-http-request.xcodeproj</string> 729 <string>/Users/ben/asi-http-request/asi-http-request.xcodeproj</string>
611 </array> 730 </array>
612 <key>WindowString</key> 731 <key>WindowString</key>
@@ -626,14 +745,12 @@ @@ -626,14 +745,12 @@
626 <key>Dock</key> 745 <key>Dock</key>
627 <array> 746 <array>
628 <dict> 747 <dict>
629 - <key>BecomeActive</key>  
630 - <true/>  
631 <key>ContentConfiguration</key> 748 <key>ContentConfiguration</key>
632 <dict> 749 <dict>
633 <key>PBXProjectModuleGUID</key> 750 <key>PBXProjectModuleGUID</key>
634 <string>1CD0528F0623707200166675</string> 751 <string>1CD0528F0623707200166675</string>
635 <key>PBXProjectModuleLabel</key> 752 <key>PBXProjectModuleLabel</key>
636 - <string>RunPlatformUnitTests.include</string> 753 + <string>ASIHTTPRequestTests.m</string>
637 <key>StatusBarVisibility</key> 754 <key>StatusBarVisibility</key>
638 <true/> 755 <true/>
639 </dict> 756 </dict>
@@ -642,7 +759,7 @@ @@ -642,7 +759,7 @@
642 <key>Frame</key> 759 <key>Frame</key>
643 <string>{{0, 0}, {1440, 536}}</string> 760 <string>{{0, 0}, {1440, 536}}</string>
644 <key>RubberWindowFrame</key> 761 <key>RubberWindowFrame</key>
645 - <string>257 107 1440 818 0 0 1920 1178 </string> 762 + <string>241 -125 1440 818 0 0 1920 1178 </string>
646 </dict> 763 </dict>
647 <key>Module</key> 764 <key>Module</key>
648 <string>PBXNavigatorGroup</string> 765 <string>PBXNavigatorGroup</string>
@@ -650,6 +767,8 @@ @@ -650,6 +767,8 @@
650 <string>536pt</string> 767 <string>536pt</string>
651 </dict> 768 </dict>
652 <dict> 769 <dict>
  770 + <key>BecomeActive</key>
  771 + <true/>
653 <key>ContentConfiguration</key> 772 <key>ContentConfiguration</key>
654 <dict> 773 <dict>
655 <key>PBXProjectModuleGUID</key> 774 <key>PBXProjectModuleGUID</key>
@@ -666,7 +785,7 @@ @@ -666,7 +785,7 @@
666 <key>Frame</key> 785 <key>Frame</key>
667 <string>{{0, 541}, {1440, 236}}</string> 786 <string>{{0, 541}, {1440, 236}}</string>
668 <key>RubberWindowFrame</key> 787 <key>RubberWindowFrame</key>
669 - <string>257 107 1440 818 0 0 1920 1178 </string> 788 + <string>241 -125 1440 818 0 0 1920 1178 </string>
670 </dict> 789 </dict>
671 <key>Module</key> 790 <key>Module</key>
672 <string>PBXBuildResultsModule</string> 791 <string>PBXBuildResultsModule</string>
@@ -696,11 +815,11 @@ @@ -696,11 +815,11 @@
696 <key>ToolbarConfiguration</key> 815 <key>ToolbarConfiguration</key>
697 <string>xcode.toolbar.config.buildV3</string> 816 <string>xcode.toolbar.config.buildV3</string>
698 <key>WindowString</key> 817 <key>WindowString</key>
699 - <string>257 107 1440 818 0 0 1920 1178 </string> 818 + <string>241 -125 1440 818 0 0 1920 1178 </string>
700 <key>WindowToolGUID</key> 819 <key>WindowToolGUID</key>
701 <string>B5ABC8410E24CDE70072F422</string> 820 <string>B5ABC8410E24CDE70072F422</string>
702 <key>WindowToolIsVisible</key> 821 <key>WindowToolIsVisible</key>
703 - <false/> 822 + <true/>
704 </dict> 823 </dict>
705 <dict> 824 <dict>
706 <key>FirstTimeWindowDisplayed</key> 825 <key>FirstTimeWindowDisplayed</key>
@@ -775,18 +894,20 @@ @@ -775,18 +894,20 @@
775 <array> 894 <array>
776 <string>Name</string> 895 <string>Name</string>
777 <real>277</real> 896 <real>277</real>
  897 + <string>Type</string>
  898 + <real>208</real>
778 <string>Value</string> 899 <string>Value</string>
779 <real>114</real> 900 <real>114</real>
780 <string>Summary</string> 901 <string>Summary</string>
781 - <real>435</real> 902 + <real>224</real>
782 </array> 903 </array>
783 <key>Frame</key> 904 <key>Frame</key>
784 <string>{{713, 0}, {851, 339}}</string> 905 <string>{{713, 0}, {851, 339}}</string>
785 <key>RubberWindowFrame</key> 906 <key>RubberWindowFrame</key>
786 - <string>103 471 1564 676 0 0 1920 1178 </string> 907 + <string>203 156 1564 676 0 0 1920 1178 </string>
787 </dict> 908 </dict>
788 <key>RubberWindowFrame</key> 909 <key>RubberWindowFrame</key>
789 - <string>103 471 1564 676 0 0 1920 1178 </string> 910 + <string>203 156 1564 676 0 0 1920 1178 </string>
790 </dict> 911 </dict>
791 <key>Module</key> 912 <key>Module</key>
792 <string>PBXDebugSessionModule</string> 913 <string>PBXDebugSessionModule</string>
@@ -820,7 +941,7 @@ @@ -820,7 +941,7 @@
820 <key>ToolbarConfiguration</key> 941 <key>ToolbarConfiguration</key>
821 <string>xcode.toolbar.config.debugV3</string> 942 <string>xcode.toolbar.config.debugV3</string>
822 <key>WindowString</key> 943 <key>WindowString</key>
823 - <string>103 471 1564 676 0 0 1920 1178 </string> 944 + <string>203 156 1564 676 0 0 1920 1178 </string>
824 <key>WindowToolGUID</key> 945 <key>WindowToolGUID</key>
825 <string>1CD10A99069EF8BA00B06720</string> 946 <string>1CD10A99069EF8BA00B06720</string>
826 <key>WindowToolIsVisible</key> 947 <key>WindowToolIsVisible</key>
@@ -946,18 +1067,18 @@ @@ -946,18 +1067,18 @@
946 <key>GeometryConfiguration</key> 1067 <key>GeometryConfiguration</key>
947 <dict> 1068 <dict>
948 <key>Frame</key> 1069 <key>Frame</key>
949 - <string>{{0, 0}, {629, 511}}</string> 1070 + <string>{{0, 0}, {636, 839}}</string>
950 <key>RubberWindowFrame</key> 1071 <key>RubberWindowFrame</key>
951 - <string>67 588 629 552 0 0 1920 1178 </string> 1072 + <string>67 260 636 880 0 0 1920 1178 </string>
952 </dict> 1073 </dict>
953 <key>Module</key> 1074 <key>Module</key>
954 <string>PBXDebugCLIModule</string> 1075 <string>PBXDebugCLIModule</string>
955 <key>Proportion</key> 1076 <key>Proportion</key>
956 - <string>511pt</string> 1077 + <string>839pt</string>
957 </dict> 1078 </dict>
958 </array> 1079 </array>
959 <key>Proportion</key> 1080 <key>Proportion</key>
960 - <string>511pt</string> 1081 + <string>839pt</string>
961 </dict> 1082 </dict>
962 </array> 1083 </array>
963 <key>Name</key> 1084 <key>Name</key>
@@ -977,7 +1098,7 @@ @@ -977,7 +1098,7 @@
977 <key>ToolbarConfiguration</key> 1098 <key>ToolbarConfiguration</key>
978 <string>xcode.toolbar.config.consoleV3</string> 1099 <string>xcode.toolbar.config.consoleV3</string>
979 <key>WindowString</key> 1100 <key>WindowString</key>
980 - <string>67 588 629 552 0 0 1920 1178 </string> 1101 + <string>67 260 636 880 0 0 1920 1178 </string>
981 <key>WindowToolGUID</key> 1102 <key>WindowToolGUID</key>
982 <string>1C78EAAD065D492600B07095</string> 1103 <string>1C78EAAD065D492600B07095</string>
983 <key>WindowToolIsVisible</key> 1104 <key>WindowToolIsVisible</key>
@@ -305,6 +305,78 @@ @@ -305,6 +305,78 @@
305 B5731DA70E433B550008024F /* PBXTextBookmark */ = B5731DA70E433B550008024F /* PBXTextBookmark */; 305 B5731DA70E433B550008024F /* PBXTextBookmark */ = B5731DA70E433B550008024F /* PBXTextBookmark */;
306 B5731DB00E433BDB0008024F /* PBXTextBookmark */ = B5731DB00E433BDB0008024F /* PBXTextBookmark */; 306 B5731DB00E433BDB0008024F /* PBXTextBookmark */ = B5731DB00E433BDB0008024F /* PBXTextBookmark */;
307 B5731DB10E433BDB0008024F /* PBXTextBookmark */ = B5731DB10E433BDB0008024F /* PBXTextBookmark */; 307 B5731DB10E433BDB0008024F /* PBXTextBookmark */ = B5731DB10E433BDB0008024F /* PBXTextBookmark */;
  308 + B5731DB90E433E280008024F /* PBXTextBookmark */ = B5731DB90E433E280008024F /* PBXTextBookmark */;
  309 + B5731DBA0E433E280008024F /* PBXTextBookmark */ = B5731DBA0E433E280008024F /* PBXTextBookmark */;
  310 + B5731DBB0E433E280008024F /* PBXTextBookmark */ = B5731DBB0E433E280008024F /* PBXTextBookmark */;
  311 + B5731DBC0E433E280008024F /* PBXTextBookmark */ = B5731DBC0E433E280008024F /* PBXTextBookmark */;
  312 + B5731DBD0E433E280008024F /* PBXTextBookmark */ = B5731DBD0E433E280008024F /* PBXTextBookmark */;
  313 + B5731DBE0E433E280008024F /* PBXTextBookmark */ = B5731DBE0E433E280008024F /* PBXTextBookmark */;
  314 + B5731DBF0E433E280008024F /* PBXTextBookmark */ = B5731DBF0E433E280008024F /* PBXTextBookmark */;
  315 + B5731DC00E433E280008024F /* PBXTextBookmark */ = B5731DC00E433E280008024F /* PBXTextBookmark */;
  316 + B5731DC10E433E280008024F /* PBXTextBookmark */ = B5731DC10E433E280008024F /* PBXTextBookmark */;
  317 + B5731DC20E433E280008024F /* PBXTextBookmark */ = B5731DC20E433E280008024F /* PBXTextBookmark */;
  318 + B5731DC30E433E280008024F /* PBXTextBookmark */ = B5731DC30E433E280008024F /* PBXTextBookmark */;
  319 + B5731DC40E433E280008024F /* PBXTextBookmark */ = B5731DC40E433E280008024F /* PBXTextBookmark */;
  320 + B5731DC50E433E280008024F /* PBXTextBookmark */ = B5731DC50E433E280008024F /* PBXTextBookmark */;
  321 + B5731DC90E433E320008024F /* PBXTextBookmark */ = B5731DC90E433E320008024F /* PBXTextBookmark */;
  322 + B5731DDA0E433E990008024F /* PBXTextBookmark */ = B5731DDA0E433E990008024F /* PBXTextBookmark */;
  323 + B5731DDB0E433E990008024F /* PBXTextBookmark */ = B5731DDB0E433E990008024F /* PBXTextBookmark */;
  324 + B5731DDC0E433E990008024F /* PBXTextBookmark */ = B5731DDC0E433E990008024F /* PBXTextBookmark */;
  325 + B5731DDD0E433E990008024F /* PBXTextBookmark */ = B5731DDD0E433E990008024F /* PBXTextBookmark */;
  326 + B5731DE70E4340CF0008024F /* PBXTextBookmark */ = B5731DE70E4340CF0008024F /* PBXTextBookmark */;
  327 + B5731DE80E4340CF0008024F /* PBXTextBookmark */ = B5731DE80E4340CF0008024F /* PBXTextBookmark */;
  328 + B5731DE90E4340CF0008024F /* PBXTextBookmark */ = B5731DE90E4340CF0008024F /* PBXTextBookmark */;
  329 + B5731DEA0E4340CF0008024F /* PBXTextBookmark */ = B5731DEA0E4340CF0008024F /* PBXTextBookmark */;
  330 + B5731DEB0E4340CF0008024F /* PBXTextBookmark */ = B5731DEB0E4340CF0008024F /* PBXTextBookmark */;
  331 + B5731DEC0E4340CF0008024F /* PBXTextBookmark */ = B5731DEC0E4340CF0008024F /* PBXTextBookmark */;
  332 + B5731DED0E4340CF0008024F /* PBXTextBookmark */ = B5731DED0E4340CF0008024F /* PBXTextBookmark */;
  333 + B5731DEE0E4340CF0008024F /* PBXTextBookmark */ = B5731DEE0E4340CF0008024F /* PBXTextBookmark */;
  334 + B5731DEF0E4340CF0008024F /* PBXTextBookmark */ = B5731DEF0E4340CF0008024F /* PBXTextBookmark */;
  335 + B5731DF30E43412C0008024F /* PBXTextBookmark */ = B5731DF30E43412C0008024F /* PBXTextBookmark */;
  336 + B5731DF90E4341460008024F /* PBXTextBookmark */ = B5731DF90E4341460008024F /* PBXTextBookmark */;
  337 + B5731E000E4341980008024F /* PBXTextBookmark */ = B5731E000E4341980008024F /* PBXTextBookmark */;
  338 + B5731E050E4341B10008024F /* PBXTextBookmark */ = B5731E050E4341B10008024F /* PBXTextBookmark */;
  339 + B5731E0D0E4342030008024F /* PBXTextBookmark */ = B5731E0D0E4342030008024F /* PBXTextBookmark */;
  340 + B5731E0E0E4342030008024F /* PBXTextBookmark */ = B5731E0E0E4342030008024F /* PBXTextBookmark */;
  341 + B5731E180E43424A0008024F /* PBXTextBookmark */ = B5731E180E43424A0008024F /* PBXTextBookmark */;
  342 + B5731E190E43424A0008024F /* PBXTextBookmark */ = B5731E190E43424A0008024F /* PBXTextBookmark */;
  343 + B5731E1A0E43424A0008024F /* PBXTextBookmark */ = B5731E1A0E43424A0008024F /* PBXTextBookmark */;
  344 + B5731E1B0E43424A0008024F /* PBXTextBookmark */ = B5731E1B0E43424A0008024F /* PBXTextBookmark */;
  345 + B5731E1C0E43424A0008024F /* PBXTextBookmark */ = B5731E1C0E43424A0008024F /* PBXTextBookmark */;
  346 + B5731E1E0E4342E80008024F /* PBXTextBookmark */ = B5731E1E0E4342E80008024F /* PBXTextBookmark */;
  347 + B5731E210E43433B0008024F /* PBXTextBookmark */ = B5731E210E43433B0008024F /* PBXTextBookmark */;
  348 + B5731E220E4343490008024F /* PBXTextBookmark */ = B5731E220E4343490008024F /* PBXTextBookmark */;
  349 + B5731E240E4343530008024F /* PBXTextBookmark */ = B5731E240E4343530008024F /* PBXTextBookmark */;
  350 + B5731E280E4343E50008024F /* PBXTextBookmark */ = B5731E280E4343E50008024F /* PBXTextBookmark */;
  351 + B5731E2A0E43441F0008024F /* PBXBookmark */ = B5731E2A0E43441F0008024F /* PBXBookmark */;
  352 + B5731E2C0E43448A0008024F /* PBXBookmark */ = B5731E2C0E43448A0008024F /* PBXBookmark */;
  353 + B5731E2E0E4344F90008024F /* PBXTextBookmark */ = B5731E2E0E4344F90008024F /* PBXTextBookmark */;
  354 + B5731E2F0E4344F90008024F /* PBXTextBookmark */ = B5731E2F0E4344F90008024F /* PBXTextBookmark */;
  355 + B5731E300E4344F90008024F /* PBXTextBookmark */ = B5731E300E4344F90008024F /* PBXTextBookmark */;
  356 + B5731E310E4344F90008024F /* PBXTextBookmark */ = B5731E310E4344F90008024F /* PBXTextBookmark */;
  357 + B5731E320E4344F90008024F /* PBXTextBookmark */ = B5731E320E4344F90008024F /* PBXTextBookmark */;
  358 + B5731E330E4344F90008024F /* PBXTextBookmark */ = B5731E330E4344F90008024F /* PBXTextBookmark */;
  359 + B5731E340E4344F90008024F /* PBXTextBookmark */ = B5731E340E4344F90008024F /* PBXTextBookmark */;
  360 + B5731E350E4344F90008024F /* PBXTextBookmark */ = B5731E350E4344F90008024F /* PBXTextBookmark */;
  361 + B5731E360E4344F90008024F /* PBXTextBookmark */ = B5731E360E4344F90008024F /* PBXTextBookmark */;
  362 + B5731E370E4344F90008024F /* PBXTextBookmark */ = B5731E370E4344F90008024F /* PBXTextBookmark */;
  363 + B5731E380E4344F90008024F /* PBXTextBookmark */ = B5731E380E4344F90008024F /* PBXTextBookmark */;
  364 + B5731E390E4344F90008024F /* PBXTextBookmark */ = B5731E390E4344F90008024F /* PBXTextBookmark */;
  365 + B5731E3A0E4344F90008024F /* PBXTextBookmark */ = B5731E3A0E4344F90008024F /* PBXTextBookmark */;
  366 + B5731E3B0E4344F90008024F /* PBXTextBookmark */ = B5731E3B0E4344F90008024F /* PBXTextBookmark */;
  367 + B5731E3C0E4344F90008024F /* PBXTextBookmark */ = B5731E3C0E4344F90008024F /* PBXTextBookmark */;
  368 + B5731E3D0E4344F90008024F /* PBXTextBookmark */ = B5731E3D0E4344F90008024F /* PBXTextBookmark */;
  369 + B5731E3E0E4344F90008024F /* PBXTextBookmark */ = B5731E3E0E4344F90008024F /* PBXTextBookmark */;
  370 + B5731E3F0E4344F90008024F /* PBXTextBookmark */ = B5731E3F0E4344F90008024F /* PBXTextBookmark */;
  371 + B5731E400E4344F90008024F /* PBXTextBookmark */ = B5731E400E4344F90008024F /* PBXTextBookmark */;
  372 + B5731E410E4344F90008024F /* PBXTextBookmark */ = B5731E410E4344F90008024F /* PBXTextBookmark */;
  373 + B5731E420E4344F90008024F /* PBXTextBookmark */ = B5731E420E4344F90008024F /* PBXTextBookmark */;
  374 + B5731E430E4344F90008024F /* PBXTextBookmark */ = B5731E430E4344F90008024F /* PBXTextBookmark */;
  375 + B5731E440E4344F90008024F /* PBXTextBookmark */ = B5731E440E4344F90008024F /* PBXTextBookmark */;
  376 + B5731E450E4344F90008024F /* PBXTextBookmark */ = B5731E450E4344F90008024F /* PBXTextBookmark */;
  377 + B5731E460E4344F90008024F /* PBXTextBookmark */ = B5731E460E4344F90008024F /* PBXTextBookmark */;
  378 + B5731E490E4344F90008024F /* PBXTextBookmark */ = B5731E490E4344F90008024F /* PBXTextBookmark */;
  379 + B5731E4C0E4344F90008024F /* PBXTextBookmark */ = B5731E4C0E4344F90008024F /* PBXTextBookmark */;
308 B5ABC8250E24CDE70072F422 = B5ABC8250E24CDE70072F422 /* PBXTextBookmark */; 380 B5ABC8250E24CDE70072F422 = B5ABC8250E24CDE70072F422 /* PBXTextBookmark */;
309 B5ABC8260E24CDE70072F422 = B5ABC8260E24CDE70072F422 /* PBXTextBookmark */; 381 B5ABC8260E24CDE70072F422 = B5ABC8260E24CDE70072F422 /* PBXTextBookmark */;
310 B5ABC8280E24CDE70072F422 = B5ABC8280E24CDE70072F422 /* PBXTextBookmark */; 382 B5ABC8280E24CDE70072F422 = B5ABC8280E24CDE70072F422 /* PBXTextBookmark */;
@@ -386,7 +458,7 @@ @@ -386,7 +458,7 @@
386 fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */; 458 fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
387 name = "ASIHTTPRequest.h: 154"; 459 name = "ASIHTTPRequest.h: 154";
388 rLen = 0; 460 rLen = 0;
389 - rLoc = 5092; 461 + rLoc = 4969;
390 rType = 0; 462 rType = 0;
391 vrLen = 1758; 463 vrLen = 1758;
392 vrLoc = 4592; 464 vrLoc = 4592;
@@ -396,16 +468,16 @@ @@ -396,16 +468,16 @@
396 }; 468 };
397 B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */ = { 469 B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */ = {
398 uiCtxt = { 470 uiCtxt = {
399 - sepNavIntBoundsRect = "{{0, 0}, {947, 647}}"; 471 + sepNavIntBoundsRect = "{{0, 0}, {947, 624}}";
400 - sepNavSelRange = "{279, 0}"; 472 + sepNavSelRange = "{250, 0}";
401 - sepNavVisRange = "{0, 287}"; 473 + sepNavVisRange = "{0, 315}";
402 }; 474 };
403 }; 475 };
404 B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */ = { 476 B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */ = {
405 uiCtxt = { 477 uiCtxt = {
406 - sepNavIntBoundsRect = "{{0, 0}, {947, 686}}"; 478 + sepNavIntBoundsRect = "{{0, 0}, {947, 1666}}";
407 - sepNavSelRange = "{193, 0}"; 479 + sepNavSelRange = "{289, 0}";
408 - sepNavVisRange = "{3, 1846}"; 480 + sepNavVisRange = "{0, 1392}";
409 }; 481 };
410 }; 482 };
411 B5731B320E430D310008024F /* PBXTextBookmark */ = { 483 B5731B320E430D310008024F /* PBXTextBookmark */ = {
@@ -413,7 +485,7 @@ @@ -413,7 +485,7 @@
413 fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */; 485 fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
414 name = "ASIHTTPRequest.h: 154"; 486 name = "ASIHTTPRequest.h: 154";
415 rLen = 0; 487 rLen = 0;
416 - rLoc = 5092; 488 + rLoc = 4969;
417 rType = 0; 489 rType = 0;
418 vrLen = 1758; 490 vrLen = 1758;
419 vrLoc = 4592; 491 vrLoc = 4592;
@@ -473,7 +545,7 @@ @@ -473,7 +545,7 @@
473 fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */; 545 fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
474 name = "ASIHTTPRequest.h: 154"; 546 name = "ASIHTTPRequest.h: 154";
475 rLen = 0; 547 rLen = 0;
476 - rLoc = 5092; 548 + rLoc = 4969;
477 rType = 0; 549 rType = 0;
478 vrLen = 1758; 550 vrLen = 1758;
479 vrLoc = 4592; 551 vrLoc = 4592;
@@ -513,7 +585,7 @@ @@ -513,7 +585,7 @@
513 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 585 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
514 name = "ASIHTTPRequestTests.m: 16"; 586 name = "ASIHTTPRequestTests.m: 16";
515 rLen = 0; 587 rLen = 0;
516 - rLoc = 401; 588 + rLoc = 567;
517 rType = 0; 589 rType = 0;
518 vrLen = 280; 590 vrLen = 280;
519 vrLoc = 0; 591 vrLoc = 0;
@@ -543,7 +615,7 @@ @@ -543,7 +615,7 @@
543 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 615 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
544 name = "ASIHTTPRequestTests.m: 18"; 616 name = "ASIHTTPRequestTests.m: 18";
545 rLen = 0; 617 rLen = 0;
546 - rLoc = 1840; 618 + rLoc = 2006;
547 rType = 0; 619 rType = 0;
548 vrLen = 434; 620 vrLen = 434;
549 vrLoc = 0; 621 vrLoc = 0;
@@ -563,7 +635,7 @@ @@ -563,7 +635,7 @@
563 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 635 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
564 name = "ASIHTTPRequestTests.m: 20"; 636 name = "ASIHTTPRequestTests.m: 20";
565 rLen = 0; 637 rLen = 0;
566 - rLoc = 1840; 638 + rLoc = 2006;
567 rType = 0; 639 rType = 0;
568 vrLen = 549; 640 vrLen = 549;
569 vrLoc = 0; 641 vrLoc = 0;
@@ -717,7 +789,7 @@ @@ -717,7 +789,7 @@
717 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 789 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
718 name = "ASIHTTPRequestTests.m: 17"; 790 name = "ASIHTTPRequestTests.m: 17";
719 rLen = 83; 791 rLen = 83;
720 - rLoc = 386; 792 + rLoc = 552;
721 rType = 0; 793 rType = 0;
722 vrLen = 575; 794 vrLen = 575;
723 vrLoc = 0; 795 vrLoc = 0;
@@ -745,7 +817,7 @@ @@ -745,7 +817,7 @@
745 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 817 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
746 name = "ASIHTTPRequestTests.m: 17"; 818 name = "ASIHTTPRequestTests.m: 17";
747 rLen = 83; 819 rLen = 83;
748 - rLoc = 386; 820 + rLoc = 552;
749 rType = 0; 821 rType = 0;
750 vrLen = 575; 822 vrLen = 575;
751 vrLoc = 0; 823 vrLoc = 0;
@@ -817,7 +889,7 @@ @@ -817,7 +889,7 @@
817 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 889 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
818 name = "ASIHTTPRequestTests.m: 20"; 890 name = "ASIHTTPRequestTests.m: 20";
819 rLen = 0; 891 rLen = 0;
820 - rLoc = 1840; 892 + rLoc = 2006;
821 rType = 0; 893 rType = 0;
822 vrLen = 575; 894 vrLen = 575;
823 vrLoc = 0; 895 vrLoc = 0;
@@ -879,7 +951,7 @@ @@ -879,7 +951,7 @@
879 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 951 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
880 name = "ASIHTTPRequestTests.m: 20"; 952 name = "ASIHTTPRequestTests.m: 20";
881 rLen = 0; 953 rLen = 0;
882 - rLoc = 1840; 954 + rLoc = 2006;
883 rType = 0; 955 rType = 0;
884 vrLen = 575; 956 vrLen = 575;
885 vrLoc = 0; 957 vrLoc = 0;
@@ -899,7 +971,7 @@ @@ -899,7 +971,7 @@
899 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 971 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
900 name = "ASIHTTPRequestTests.m: 20"; 972 name = "ASIHTTPRequestTests.m: 20";
901 rLen = 0; 973 rLen = 0;
902 - rLoc = 1840; 974 + rLoc = 2006;
903 rType = 0; 975 rType = 0;
904 vrLen = 575; 976 vrLen = 575;
905 vrLoc = 0; 977 vrLoc = 0;
@@ -919,7 +991,7 @@ @@ -919,7 +991,7 @@
919 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 991 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
920 name = "ASIHTTPRequestTests.m: 20"; 992 name = "ASIHTTPRequestTests.m: 20";
921 rLen = 0; 993 rLen = 0;
922 - rLoc = 1840; 994 + rLoc = 2006;
923 rType = 0; 995 rType = 0;
924 vrLen = 575; 996 vrLen = 575;
925 vrLoc = 0; 997 vrLoc = 0;
@@ -949,7 +1021,7 @@ @@ -949,7 +1021,7 @@
949 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1021 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
950 name = "ASIHTTPRequestTests.m: 20"; 1022 name = "ASIHTTPRequestTests.m: 20";
951 rLen = 0; 1023 rLen = 0;
952 - rLoc = 1840; 1024 + rLoc = 2006;
953 rType = 0; 1025 rType = 0;
954 vrLen = 575; 1026 vrLen = 575;
955 vrLoc = 0; 1027 vrLoc = 0;
@@ -969,7 +1041,7 @@ @@ -969,7 +1041,7 @@
969 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1041 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
970 name = "ASIHTTPRequestTests.m: 20"; 1042 name = "ASIHTTPRequestTests.m: 20";
971 rLen = 0; 1043 rLen = 0;
972 - rLoc = 1840; 1044 + rLoc = 2006;
973 rType = 0; 1045 rType = 0;
974 vrLen = 575; 1046 vrLen = 575;
975 vrLoc = 0; 1047 vrLoc = 0;
@@ -979,7 +1051,7 @@ @@ -979,7 +1051,7 @@
979 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1051 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
980 name = "ASIHTTPRequestTests.m: 16"; 1052 name = "ASIHTTPRequestTests.m: 16";
981 rLen = 0; 1053 rLen = 0;
982 - rLoc = 299; 1054 + rLoc = 465;
983 rType = 0; 1055 rType = 0;
984 vrLen = 577; 1056 vrLen = 577;
985 vrLoc = 0; 1057 vrLoc = 0;
@@ -999,7 +1071,7 @@ @@ -999,7 +1071,7 @@
999 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1071 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1000 name = "ASIHTTPRequestTests.m: 16"; 1072 name = "ASIHTTPRequestTests.m: 16";
1001 rLen = 0; 1073 rLen = 0;
1002 - rLoc = 299; 1074 + rLoc = 465;
1003 rType = 0; 1075 rType = 0;
1004 vrLen = 577; 1076 vrLen = 577;
1005 vrLoc = 0; 1077 vrLoc = 0;
@@ -1009,7 +1081,7 @@ @@ -1009,7 +1081,7 @@
1009 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1081 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1010 name = "ASIHTTPRequestTests.m: 16"; 1082 name = "ASIHTTPRequestTests.m: 16";
1011 rLen = 0; 1083 rLen = 0;
1012 - rLoc = 299; 1084 + rLoc = 465;
1013 rType = 0; 1085 rType = 0;
1014 vrLen = 577; 1086 vrLen = 577;
1015 vrLoc = 0; 1087 vrLoc = 0;
@@ -1029,7 +1101,7 @@ @@ -1029,7 +1101,7 @@
1029 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1101 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1030 name = "ASIHTTPRequestTests.m: 16"; 1102 name = "ASIHTTPRequestTests.m: 16";
1031 rLen = 0; 1103 rLen = 0;
1032 - rLoc = 299; 1104 + rLoc = 465;
1033 rType = 0; 1105 rType = 0;
1034 vrLen = 577; 1106 vrLen = 577;
1035 vrLoc = 0; 1107 vrLoc = 0;
@@ -1049,7 +1121,7 @@ @@ -1049,7 +1121,7 @@
1049 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1121 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1050 name = "ASIHTTPRequestTests.m: 16"; 1122 name = "ASIHTTPRequestTests.m: 16";
1051 rLen = 0; 1123 rLen = 0;
1052 - rLoc = 299; 1124 + rLoc = 465;
1053 rType = 0; 1125 rType = 0;
1054 vrLen = 577; 1126 vrLen = 577;
1055 vrLoc = 0; 1127 vrLoc = 0;
@@ -1069,7 +1141,7 @@ @@ -1069,7 +1141,7 @@
1069 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1141 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1070 name = "ASIHTTPRequestTests.m: 21"; 1142 name = "ASIHTTPRequestTests.m: 21";
1071 rLen = 0; 1143 rLen = 0;
1072 - rLoc = 539; 1144 + rLoc = 705;
1073 rType = 0; 1145 rType = 0;
1074 vrLen = 574; 1146 vrLen = 574;
1075 vrLoc = 0; 1147 vrLoc = 0;
@@ -1079,7 +1151,7 @@ @@ -1079,7 +1151,7 @@
1079 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1151 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1080 name = "ASIHTTPRequestTests.m: 21"; 1152 name = "ASIHTTPRequestTests.m: 21";
1081 rLen = 0; 1153 rLen = 0;
1082 - rLoc = 539; 1154 + rLoc = 705;
1083 rType = 0; 1155 rType = 0;
1084 vrLen = 574; 1156 vrLen = 574;
1085 vrLoc = 0; 1157 vrLoc = 0;
@@ -1099,7 +1171,7 @@ @@ -1099,7 +1171,7 @@
1099 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1171 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1100 name = "ASIHTTPRequestTests.m: 21"; 1172 name = "ASIHTTPRequestTests.m: 21";
1101 rLen = 0; 1173 rLen = 0;
1102 - rLoc = 539; 1174 + rLoc = 705;
1103 rType = 0; 1175 rType = 0;
1104 vrLen = 574; 1176 vrLen = 574;
1105 vrLoc = 0; 1177 vrLoc = 0;
@@ -1119,7 +1191,7 @@ @@ -1119,7 +1191,7 @@
1119 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1191 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1120 name = "ASIHTTPRequestTests.m: 21"; 1192 name = "ASIHTTPRequestTests.m: 21";
1121 rLen = 0; 1193 rLen = 0;
1122 - rLoc = 539; 1194 + rLoc = 705;
1123 rType = 0; 1195 rType = 0;
1124 vrLen = 577; 1196 vrLen = 577;
1125 vrLoc = 0; 1197 vrLoc = 0;
@@ -1139,7 +1211,7 @@ @@ -1139,7 +1211,7 @@
1139 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1211 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1140 name = "ASIHTTPRequestTests.m: 14"; 1212 name = "ASIHTTPRequestTests.m: 14";
1141 rLen = 17; 1213 rLen = 17;
1142 - rLoc = 267; 1214 + rLoc = 433;
1143 rType = 0; 1215 rType = 0;
1144 vrLen = 788; 1216 vrLen = 788;
1145 vrLoc = 0; 1217 vrLoc = 0;
@@ -1149,7 +1221,7 @@ @@ -1149,7 +1221,7 @@
1149 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1221 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1150 name = "ASIHTTPRequestTests.m: 14"; 1222 name = "ASIHTTPRequestTests.m: 14";
1151 rLen = 17; 1223 rLen = 17;
1152 - rLoc = 267; 1224 + rLoc = 433;
1153 rType = 0; 1225 rType = 0;
1154 vrLen = 788; 1226 vrLen = 788;
1155 vrLoc = 0; 1227 vrLoc = 0;
@@ -1169,7 +1241,7 @@ @@ -1169,7 +1241,7 @@
1169 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1241 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1170 name = "ASIHTTPRequestTests.m: 29"; 1242 name = "ASIHTTPRequestTests.m: 29";
1171 rLen = 41; 1243 rLen = 41;
1172 - rLoc = 1593; 1244 + rLoc = 1759;
1173 rType = 0; 1245 rType = 0;
1174 vrLen = 1151; 1246 vrLen = 1151;
1175 vrLoc = 0; 1247 vrLoc = 0;
@@ -1179,7 +1251,7 @@ @@ -1179,7 +1251,7 @@
1179 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1251 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1180 name = "ASIHTTPRequestTests.m: 28"; 1252 name = "ASIHTTPRequestTests.m: 28";
1181 rLen = 0; 1253 rLen = 0;
1182 - rLoc = 1552; 1254 + rLoc = 1718;
1183 rType = 0; 1255 rType = 0;
1184 vrLen = 1234; 1256 vrLen = 1234;
1185 vrLoc = 0; 1257 vrLoc = 0;
@@ -1189,7 +1261,7 @@ @@ -1189,7 +1261,7 @@
1189 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1261 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1190 name = "ASIHTTPRequestTests.m: 25"; 1262 name = "ASIHTTPRequestTests.m: 25";
1191 rLen = 0; 1263 rLen = 0;
1192 - rLoc = 822; 1264 + rLoc = 988;
1193 rType = 0; 1265 rType = 0;
1194 vrLen = 1486; 1266 vrLen = 1486;
1195 vrLoc = 0; 1267 vrLoc = 0;
@@ -1199,7 +1271,7 @@ @@ -1199,7 +1271,7 @@
1199 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1271 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1200 name = "ASIHTTPRequestTests.m: 31"; 1272 name = "ASIHTTPRequestTests.m: 31";
1201 rLen = 0; 1273 rLen = 0;
1202 - rLoc = 1224; 1274 + rLoc = 1390;
1203 rType = 0; 1275 rType = 0;
1204 vrLen = 1797; 1276 vrLen = 1797;
1205 vrLoc = 3; 1277 vrLoc = 3;
@@ -1219,7 +1291,7 @@ @@ -1219,7 +1291,7 @@
1219 fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */; 1291 fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
1220 name = "ASIHTTPRequest.h: 233"; 1292 name = "ASIHTTPRequest.h: 233";
1221 rLen = 0; 1293 rLen = 0;
1222 - rLoc = 8229; 1294 + rLoc = 8106;
1223 rType = 0; 1295 rType = 0;
1224 vrLen = 1769; 1296 vrLen = 1769;
1225 vrLoc = 6468; 1297 vrLoc = 6468;
@@ -1239,7 +1311,7 @@ @@ -1239,7 +1311,7 @@
1239 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1311 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1240 name = "ASIHTTPRequestTests.m: 30"; 1312 name = "ASIHTTPRequestTests.m: 30";
1241 rLen = 0; 1313 rLen = 0;
1242 - rLoc = 1166; 1314 + rLoc = 1332;
1243 rType = 0; 1315 rType = 0;
1244 vrLen = 1744; 1316 vrLen = 1744;
1245 vrLoc = 94; 1317 vrLoc = 94;
@@ -1249,7 +1321,7 @@ @@ -1249,7 +1321,7 @@
1249 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1321 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1250 name = "ASIHTTPRequestTests.m: 30"; 1322 name = "ASIHTTPRequestTests.m: 30";
1251 rLen = 0; 1323 rLen = 0;
1252 - rLoc = 1166; 1324 + rLoc = 1332;
1253 rType = 0; 1325 rType = 0;
1254 vrLen = 1744; 1326 vrLen = 1744;
1255 vrLoc = 94; 1327 vrLoc = 94;
@@ -1279,7 +1351,7 @@ @@ -1279,7 +1351,7 @@
1279 fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */; 1351 fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
1280 name = "ASIHTTPRequest.h: 233"; 1352 name = "ASIHTTPRequest.h: 233";
1281 rLen = 0; 1353 rLen = 0;
1282 - rLoc = 8229; 1354 + rLoc = 8106;
1283 rType = 0; 1355 rType = 0;
1284 vrLen = 1799; 1356 vrLen = 1799;
1285 vrLoc = 6433; 1357 vrLoc = 6433;
@@ -1299,7 +1371,7 @@ @@ -1299,7 +1371,7 @@
1299 fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */; 1371 fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
1300 name = "ASIHTTPRequest.h: 233"; 1372 name = "ASIHTTPRequest.h: 233";
1301 rLen = 0; 1373 rLen = 0;
1302 - rLoc = 8229; 1374 + rLoc = 8106;
1303 rType = 0; 1375 rType = 0;
1304 vrLen = 1964; 1376 vrLen = 1964;
1305 vrLoc = 5847; 1377 vrLoc = 5847;
@@ -1319,7 +1391,7 @@ @@ -1319,7 +1391,7 @@
1319 fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */; 1391 fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
1320 name = "ASIHTTPRequest.h: 233"; 1392 name = "ASIHTTPRequest.h: 233";
1321 rLen = 0; 1393 rLen = 0;
1322 - rLoc = 8229; 1394 + rLoc = 8106;
1323 rType = 0; 1395 rType = 0;
1324 vrLen = 1769; 1396 vrLen = 1769;
1325 vrLoc = 6468; 1397 vrLoc = 6468;
@@ -1339,7 +1411,7 @@ @@ -1339,7 +1411,7 @@
1339 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1411 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1340 name = "ASIHTTPRequestTests.m: 29"; 1412 name = "ASIHTTPRequestTests.m: 29";
1341 rLen = 49; 1413 rLen = 49;
1342 - rLoc = 966; 1414 + rLoc = 1132;
1343 rType = 0; 1415 rType = 0;
1344 vrLen = 1797; 1416 vrLen = 1797;
1345 vrLoc = 53; 1417 vrLoc = 53;
@@ -1369,7 +1441,7 @@ @@ -1369,7 +1441,7 @@
1369 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1441 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1370 name = "ASIHTTPRequestTests.m: 29"; 1442 name = "ASIHTTPRequestTests.m: 29";
1371 rLen = 49; 1443 rLen = 49;
1372 - rLoc = 966; 1444 + rLoc = 1132;
1373 rType = 0; 1445 rType = 0;
1374 vrLen = 1797; 1446 vrLen = 1797;
1375 vrLoc = 53; 1447 vrLoc = 53;
@@ -1379,7 +1451,7 @@ @@ -1379,7 +1451,7 @@
1379 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1451 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1380 name = "ASIHTTPRequestTests.m: 29"; 1452 name = "ASIHTTPRequestTests.m: 29";
1381 rLen = 49; 1453 rLen = 49;
1382 - rLoc = 966; 1454 + rLoc = 1132;
1383 rType = 0; 1455 rType = 0;
1384 vrLen = 1797; 1456 vrLen = 1797;
1385 vrLoc = 53; 1457 vrLoc = 53;
@@ -1399,7 +1471,7 @@ @@ -1399,7 +1471,7 @@
1399 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1471 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1400 name = "ASIHTTPRequestTests.m: 29"; 1472 name = "ASIHTTPRequestTests.m: 29";
1401 rLen = 49; 1473 rLen = 49;
1402 - rLoc = 966; 1474 + rLoc = 1132;
1403 rType = 0; 1475 rType = 0;
1404 vrLen = 1797; 1476 vrLen = 1797;
1405 vrLoc = 53; 1477 vrLoc = 53;
@@ -1419,7 +1491,7 @@ @@ -1419,7 +1491,7 @@
1419 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1491 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1420 name = "ASIHTTPRequestTests.m: 31"; 1492 name = "ASIHTTPRequestTests.m: 31";
1421 rLen = 0; 1493 rLen = 0;
1422 - rLoc = 1165; 1494 + rLoc = 1331;
1423 rType = 0; 1495 rType = 0;
1424 vrLen = 1797; 1496 vrLen = 1797;
1425 vrLoc = 53; 1497 vrLoc = 53;
@@ -1429,7 +1501,7 @@ @@ -1429,7 +1501,7 @@
1429 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1501 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1430 name = "ASIHTTPRequestTests.m: 31"; 1502 name = "ASIHTTPRequestTests.m: 31";
1431 rLen = 0; 1503 rLen = 0;
1432 - rLoc = 1165; 1504 + rLoc = 1331;
1433 rType = 0; 1505 rType = 0;
1434 vrLen = 1793; 1506 vrLen = 1793;
1435 vrLoc = 53; 1507 vrLoc = 53;
@@ -1439,7 +1511,7 @@ @@ -1439,7 +1511,7 @@
1439 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1511 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1440 name = "ASIHTTPRequestTests.m: 31"; 1512 name = "ASIHTTPRequestTests.m: 31";
1441 rLen = 0; 1513 rLen = 0;
1442 - rLoc = 1165; 1514 + rLoc = 1331;
1443 rType = 0; 1515 rType = 0;
1444 vrLen = 1793; 1516 vrLen = 1793;
1445 vrLoc = 53; 1517 vrLoc = 53;
@@ -1449,7 +1521,7 @@ @@ -1449,7 +1521,7 @@
1449 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1521 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1450 name = "ASIHTTPRequestTests.m: 31"; 1522 name = "ASIHTTPRequestTests.m: 31";
1451 rLen = 0; 1523 rLen = 0;
1452 - rLoc = 1165; 1524 + rLoc = 1331;
1453 rType = 0; 1525 rType = 0;
1454 vrLen = 1793; 1526 vrLen = 1793;
1455 vrLoc = 53; 1527 vrLoc = 53;
@@ -1459,7 +1531,7 @@ @@ -1459,7 +1531,7 @@
1459 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1531 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1460 name = "ASIHTTPRequestTests.m: 31"; 1532 name = "ASIHTTPRequestTests.m: 31";
1461 rLen = 0; 1533 rLen = 0;
1462 - rLoc = 1165; 1534 + rLoc = 1331;
1463 rType = 0; 1535 rType = 0;
1464 vrLen = 1793; 1536 vrLen = 1793;
1465 vrLoc = 53; 1537 vrLoc = 53;
@@ -1469,7 +1541,7 @@ @@ -1469,7 +1541,7 @@
1469 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1541 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1470 name = "ASIHTTPRequestTests.m: 31"; 1542 name = "ASIHTTPRequestTests.m: 31";
1471 rLen = 0; 1543 rLen = 0;
1472 - rLoc = 1165; 1544 + rLoc = 1331;
1473 rType = 0; 1545 rType = 0;
1474 vrLen = 1793; 1546 vrLen = 1793;
1475 vrLoc = 53; 1547 vrLoc = 53;
@@ -1479,7 +1551,7 @@ @@ -1479,7 +1551,7 @@
1479 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1551 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1480 name = "ASIHTTPRequestTests.m: 17"; 1552 name = "ASIHTTPRequestTests.m: 17";
1481 rLen = 3; 1553 rLen = 3;
1482 - rLoc = 308; 1554 + rLoc = 474;
1483 rType = 0; 1555 rType = 0;
1484 vrLen = 1803; 1556 vrLen = 1803;
1485 vrLoc = 53; 1557 vrLoc = 53;
@@ -1489,7 +1561,7 @@ @@ -1489,7 +1561,7 @@
1489 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1561 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1490 name = "ASIHTTPRequestTests.m: 17"; 1562 name = "ASIHTTPRequestTests.m: 17";
1491 rLen = 3; 1563 rLen = 3;
1492 - rLoc = 308; 1564 + rLoc = 474;
1493 rType = 0; 1565 rType = 0;
1494 vrLen = 1803; 1566 vrLen = 1803;
1495 vrLoc = 53; 1567 vrLoc = 53;
@@ -1499,7 +1571,7 @@ @@ -1499,7 +1571,7 @@
1499 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1571 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1500 name = "ASIHTTPRequestTests.m: 17"; 1572 name = "ASIHTTPRequestTests.m: 17";
1501 rLen = 3; 1573 rLen = 3;
1502 - rLoc = 308; 1574 + rLoc = 474;
1503 rType = 0; 1575 rType = 0;
1504 vrLen = 1797; 1576 vrLen = 1797;
1505 vrLoc = 53; 1577 vrLoc = 53;
@@ -1509,7 +1581,7 @@ @@ -1509,7 +1581,7 @@
1509 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1581 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1510 name = "ASIHTTPRequestTests.m: 17"; 1582 name = "ASIHTTPRequestTests.m: 17";
1511 rLen = 3; 1583 rLen = 3;
1512 - rLoc = 308; 1584 + rLoc = 474;
1513 rType = 0; 1585 rType = 0;
1514 vrLen = 1797; 1586 vrLen = 1797;
1515 vrLoc = 53; 1587 vrLoc = 53;
@@ -1519,7 +1591,7 @@ @@ -1519,7 +1591,7 @@
1519 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1591 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1520 name = "ASIHTTPRequestTests.m: 17"; 1592 name = "ASIHTTPRequestTests.m: 17";
1521 rLen = 3; 1593 rLen = 3;
1522 - rLoc = 308; 1594 + rLoc = 474;
1523 rType = 0; 1595 rType = 0;
1524 vrLen = 1797; 1596 vrLen = 1797;
1525 vrLoc = 53; 1597 vrLoc = 53;
@@ -1529,7 +1601,7 @@ @@ -1529,7 +1601,7 @@
1529 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1601 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1530 name = "ASIHTTPRequestTests.m: 17"; 1602 name = "ASIHTTPRequestTests.m: 17";
1531 rLen = 3; 1603 rLen = 3;
1532 - rLoc = 308; 1604 + rLoc = 474;
1533 rType = 0; 1605 rType = 0;
1534 vrLen = 1797; 1606 vrLen = 1797;
1535 vrLoc = 53; 1607 vrLoc = 53;
@@ -1539,7 +1611,7 @@ @@ -1539,7 +1611,7 @@
1539 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1611 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1540 name = "ASIHTTPRequestTests.m: 31"; 1612 name = "ASIHTTPRequestTests.m: 31";
1541 rLen = 0; 1613 rLen = 0;
1542 - rLoc = 1166; 1614 + rLoc = 1332;
1543 rType = 0; 1615 rType = 0;
1544 vrLen = 1803; 1616 vrLen = 1803;
1545 vrLoc = 53; 1617 vrLoc = 53;
@@ -1549,7 +1621,7 @@ @@ -1549,7 +1621,7 @@
1549 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1621 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1550 name = "ASIHTTPRequestTests.m: 31"; 1622 name = "ASIHTTPRequestTests.m: 31";
1551 rLen = 0; 1623 rLen = 0;
1552 - rLoc = 1166; 1624 + rLoc = 1332;
1553 rType = 0; 1625 rType = 0;
1554 vrLen = 1797; 1626 vrLen = 1797;
1555 vrLoc = 53; 1627 vrLoc = 53;
@@ -1559,7 +1631,7 @@ @@ -1559,7 +1631,7 @@
1559 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1631 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1560 name = "ASIHTTPRequestTests.m: 31"; 1632 name = "ASIHTTPRequestTests.m: 31";
1561 rLen = 0; 1633 rLen = 0;
1562 - rLoc = 1166; 1634 + rLoc = 1332;
1563 rType = 0; 1635 rType = 0;
1564 vrLen = 1797; 1636 vrLen = 1797;
1565 vrLoc = 53; 1637 vrLoc = 53;
@@ -1569,7 +1641,7 @@ @@ -1569,7 +1641,7 @@
1569 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1641 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1570 name = "ASIHTTPRequestTests.m: 31"; 1642 name = "ASIHTTPRequestTests.m: 31";
1571 rLen = 0; 1643 rLen = 0;
1572 - rLoc = 1166; 1644 + rLoc = 1332;
1573 rType = 0; 1645 rType = 0;
1574 vrLen = 1793; 1646 vrLen = 1793;
1575 vrLoc = 53; 1647 vrLoc = 53;
@@ -1579,7 +1651,7 @@ @@ -1579,7 +1651,7 @@
1579 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1651 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1580 name = "ASIHTTPRequestTests.m: 31"; 1652 name = "ASIHTTPRequestTests.m: 31";
1581 rLen = 0; 1653 rLen = 0;
1582 - rLoc = 1166; 1654 + rLoc = 1332;
1583 rType = 0; 1655 rType = 0;
1584 vrLen = 1793; 1656 vrLen = 1793;
1585 vrLoc = 53; 1657 vrLoc = 53;
@@ -1589,7 +1661,7 @@ @@ -1589,7 +1661,7 @@
1589 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1661 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1590 name = "ASIHTTPRequestTests.m: 31"; 1662 name = "ASIHTTPRequestTests.m: 31";
1591 rLen = 0; 1663 rLen = 0;
1592 - rLoc = 1166; 1664 + rLoc = 1332;
1593 rType = 0; 1665 rType = 0;
1594 vrLen = 1793; 1666 vrLen = 1793;
1595 vrLoc = 53; 1667 vrLoc = 53;
@@ -1599,7 +1671,7 @@ @@ -1599,7 +1671,7 @@
1599 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1671 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1600 name = "ASIHTTPRequestTests.m: 31"; 1672 name = "ASIHTTPRequestTests.m: 31";
1601 rLen = 0; 1673 rLen = 0;
1602 - rLoc = 1166; 1674 + rLoc = 1332;
1603 rType = 0; 1675 rType = 0;
1604 vrLen = 1797; 1676 vrLen = 1797;
1605 vrLoc = 53; 1677 vrLoc = 53;
@@ -1609,7 +1681,7 @@ @@ -1609,7 +1681,7 @@
1609 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1681 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1610 name = "ASIHTTPRequestTests.m: 31"; 1682 name = "ASIHTTPRequestTests.m: 31";
1611 rLen = 0; 1683 rLen = 0;
1612 - rLoc = 1166; 1684 + rLoc = 1332;
1613 rType = 0; 1685 rType = 0;
1614 vrLen = 1797; 1686 vrLen = 1797;
1615 vrLoc = 53; 1687 vrLoc = 53;
@@ -1619,7 +1691,7 @@ @@ -1619,7 +1691,7 @@
1619 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1691 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1620 name = "ASIHTTPRequestTests.m: 31"; 1692 name = "ASIHTTPRequestTests.m: 31";
1621 rLen = 0; 1693 rLen = 0;
1622 - rLoc = 1166; 1694 + rLoc = 1332;
1623 rType = 0; 1695 rType = 0;
1624 vrLen = 1797; 1696 vrLen = 1797;
1625 vrLoc = 53; 1697 vrLoc = 53;
@@ -1629,7 +1701,7 @@ @@ -1629,7 +1701,7 @@
1629 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1701 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1630 name = "ASIHTTPRequestTests.m: 31"; 1702 name = "ASIHTTPRequestTests.m: 31";
1631 rLen = 0; 1703 rLen = 0;
1632 - rLoc = 1166; 1704 + rLoc = 1332;
1633 rType = 0; 1705 rType = 0;
1634 vrLen = 1803; 1706 vrLen = 1803;
1635 vrLoc = 53; 1707 vrLoc = 53;
@@ -1639,7 +1711,7 @@ @@ -1639,7 +1711,7 @@
1639 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1711 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1640 name = "ASIHTTPRequestTests.m: 31"; 1712 name = "ASIHTTPRequestTests.m: 31";
1641 rLen = 0; 1713 rLen = 0;
1642 - rLoc = 1166; 1714 + rLoc = 1332;
1643 rType = 0; 1715 rType = 0;
1644 vrLen = 1793; 1716 vrLen = 1793;
1645 vrLoc = 53; 1717 vrLoc = 53;
@@ -1649,7 +1721,7 @@ @@ -1649,7 +1721,7 @@
1649 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1721 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1650 name = "ASIHTTPRequestTests.m: 31"; 1722 name = "ASIHTTPRequestTests.m: 31";
1651 rLen = 0; 1723 rLen = 0;
1652 - rLoc = 1166; 1724 + rLoc = 1332;
1653 rType = 0; 1725 rType = 0;
1654 vrLen = 1793; 1726 vrLen = 1793;
1655 vrLoc = 53; 1727 vrLoc = 53;
@@ -1659,7 +1731,7 @@ @@ -1659,7 +1731,7 @@
1659 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1731 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1660 name = "ASIHTTPRequestTests.m: 31"; 1732 name = "ASIHTTPRequestTests.m: 31";
1661 rLen = 0; 1733 rLen = 0;
1662 - rLoc = 1166; 1734 + rLoc = 1332;
1663 rType = 0; 1735 rType = 0;
1664 vrLen = 1797; 1736 vrLen = 1797;
1665 vrLoc = 53; 1737 vrLoc = 53;
@@ -1669,7 +1741,7 @@ @@ -1669,7 +1741,7 @@
1669 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1741 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1670 name = "ASIHTTPRequestTests.m: 31"; 1742 name = "ASIHTTPRequestTests.m: 31";
1671 rLen = 0; 1743 rLen = 0;
1672 - rLoc = 1166; 1744 + rLoc = 1332;
1673 rType = 0; 1745 rType = 0;
1674 vrLen = 1797; 1746 vrLen = 1797;
1675 vrLoc = 53; 1747 vrLoc = 53;
@@ -1679,7 +1751,7 @@ @@ -1679,7 +1751,7 @@
1679 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1751 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1680 name = "ASIHTTPRequestTests.m: 31"; 1752 name = "ASIHTTPRequestTests.m: 31";
1681 rLen = 0; 1753 rLen = 0;
1682 - rLoc = 1166; 1754 + rLoc = 1332;
1683 rType = 0; 1755 rType = 0;
1684 vrLen = 1797; 1756 vrLen = 1797;
1685 vrLoc = 53; 1757 vrLoc = 53;
@@ -1689,7 +1761,7 @@ @@ -1689,7 +1761,7 @@
1689 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1761 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1690 name = "ASIHTTPRequestTests.m: 31"; 1762 name = "ASIHTTPRequestTests.m: 31";
1691 rLen = 0; 1763 rLen = 0;
1692 - rLoc = 1166; 1764 + rLoc = 1332;
1693 rType = 0; 1765 rType = 0;
1694 vrLen = 1797; 1766 vrLen = 1797;
1695 vrLoc = 53; 1767 vrLoc = 53;
@@ -1699,7 +1771,7 @@ @@ -1699,7 +1771,7 @@
1699 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1771 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1700 name = "ASIHTTPRequestTests.m: 31"; 1772 name = "ASIHTTPRequestTests.m: 31";
1701 rLen = 0; 1773 rLen = 0;
1702 - rLoc = 1166; 1774 + rLoc = 1332;
1703 rType = 0; 1775 rType = 0;
1704 vrLen = 1797; 1776 vrLen = 1797;
1705 vrLoc = 53; 1777 vrLoc = 53;
@@ -1709,7 +1781,7 @@ @@ -1709,7 +1781,7 @@
1709 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1781 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1710 name = "ASIHTTPRequestTests.m: 31"; 1782 name = "ASIHTTPRequestTests.m: 31";
1711 rLen = 0; 1783 rLen = 0;
1712 - rLoc = 1166; 1784 + rLoc = 1332;
1713 rType = 0; 1785 rType = 0;
1714 vrLen = 1793; 1786 vrLen = 1793;
1715 vrLoc = 53; 1787 vrLoc = 53;
@@ -1719,7 +1791,7 @@ @@ -1719,7 +1791,7 @@
1719 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1791 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1720 name = "ASIHTTPRequestTests.m: 31"; 1792 name = "ASIHTTPRequestTests.m: 31";
1721 rLen = 0; 1793 rLen = 0;
1722 - rLoc = 1166; 1794 + rLoc = 1332;
1723 rType = 0; 1795 rType = 0;
1724 vrLen = 1803; 1796 vrLen = 1803;
1725 vrLoc = 53; 1797 vrLoc = 53;
@@ -1729,7 +1801,7 @@ @@ -1729,7 +1801,7 @@
1729 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1801 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1730 name = "ASIHTTPRequestTests.m: 31"; 1802 name = "ASIHTTPRequestTests.m: 31";
1731 rLen = 0; 1803 rLen = 0;
1732 - rLoc = 1166; 1804 + rLoc = 1332;
1733 rType = 0; 1805 rType = 0;
1734 vrLen = 1803; 1806 vrLen = 1803;
1735 vrLoc = 53; 1807 vrLoc = 53;
@@ -1739,7 +1811,7 @@ @@ -1739,7 +1811,7 @@
1739 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1811 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1740 name = "ASIHTTPRequestTests.m: 31"; 1812 name = "ASIHTTPRequestTests.m: 31";
1741 rLen = 0; 1813 rLen = 0;
1742 - rLoc = 1166; 1814 + rLoc = 1332;
1743 rType = 0; 1815 rType = 0;
1744 vrLen = 1797; 1816 vrLen = 1797;
1745 vrLoc = 53; 1817 vrLoc = 53;
@@ -1749,7 +1821,7 @@ @@ -1749,7 +1821,7 @@
1749 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1821 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1750 name = "ASIHTTPRequestTests.m: 31"; 1822 name = "ASIHTTPRequestTests.m: 31";
1751 rLen = 0; 1823 rLen = 0;
1752 - rLoc = 1166; 1824 + rLoc = 1332;
1753 rType = 0; 1825 rType = 0;
1754 vrLen = 1797; 1826 vrLen = 1797;
1755 vrLoc = 53; 1827 vrLoc = 53;
@@ -1759,7 +1831,7 @@ @@ -1759,7 +1831,7 @@
1759 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1831 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1760 name = "ASIHTTPRequestTests.m: 31"; 1832 name = "ASIHTTPRequestTests.m: 31";
1761 rLen = 0; 1833 rLen = 0;
1762 - rLoc = 1166; 1834 + rLoc = 1332;
1763 rType = 0; 1835 rType = 0;
1764 vrLen = 1803; 1836 vrLen = 1803;
1765 vrLoc = 53; 1837 vrLoc = 53;
@@ -1769,7 +1841,7 @@ @@ -1769,7 +1841,7 @@
1769 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1841 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1770 name = "ASIHTTPRequestTests.m: 31"; 1842 name = "ASIHTTPRequestTests.m: 31";
1771 rLen = 0; 1843 rLen = 0;
1772 - rLoc = 1166; 1844 + rLoc = 1332;
1773 rType = 0; 1845 rType = 0;
1774 vrLen = 1797; 1846 vrLen = 1797;
1775 vrLoc = 53; 1847 vrLoc = 53;
@@ -1779,7 +1851,7 @@ @@ -1779,7 +1851,7 @@
1779 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1851 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1780 name = "ASIHTTPRequestTests.m: 31"; 1852 name = "ASIHTTPRequestTests.m: 31";
1781 rLen = 0; 1853 rLen = 0;
1782 - rLoc = 1165; 1854 + rLoc = 1331;
1783 rType = 0; 1855 rType = 0;
1784 vrLen = 1799; 1856 vrLen = 1799;
1785 vrLoc = 53; 1857 vrLoc = 53;
@@ -1835,9 +1907,9 @@ @@ -1835,9 +1907,9 @@
1835 path = /Developer/Tools/RunPlatformUnitTests.include; 1907 path = /Developer/Tools/RunPlatformUnitTests.include;
1836 sourceTree = "<absolute>"; 1908 sourceTree = "<absolute>";
1837 uiCtxt = { 1909 uiCtxt = {
1838 - sepNavIntBoundsRect = "{{0, 0}, {1170, 5558}}"; 1910 + sepNavIntBoundsRect = "{{0, 0}, {1379, 5530}}";
1839 - sepNavSelRange = "{10259, 0}"; 1911 + sepNavSelRange = "{10038, 138}";
1840 - sepNavVisRange = "{9378, 1771}"; 1912 + sepNavVisRange = "{9441, 1405}";
1841 }; 1913 };
1842 }; 1914 };
1843 B5731D7B0E4339C80008024F /* PBXTextBookmark */ = { 1915 B5731D7B0E4339C80008024F /* PBXTextBookmark */ = {
@@ -1845,7 +1917,7 @@ @@ -1845,7 +1917,7 @@
1845 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1917 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1846 name = "ASIHTTPRequestTests.m: 31"; 1918 name = "ASIHTTPRequestTests.m: 31";
1847 rLen = 0; 1919 rLen = 0;
1848 - rLoc = 1165; 1920 + rLoc = 1331;
1849 rType = 0; 1921 rType = 0;
1850 vrLen = 1799; 1922 vrLen = 1799;
1851 vrLoc = 53; 1923 vrLoc = 53;
@@ -1855,7 +1927,7 @@ @@ -1855,7 +1927,7 @@
1855 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1927 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1856 name = "ASIHTTPRequestTests.m: 31"; 1928 name = "ASIHTTPRequestTests.m: 31";
1857 rLen = 0; 1929 rLen = 0;
1858 - rLoc = 1165; 1930 + rLoc = 1331;
1859 rType = 0; 1931 rType = 0;
1860 vrLen = 1805; 1932 vrLen = 1805;
1861 vrLoc = 53; 1933 vrLoc = 53;
@@ -1875,7 +1947,7 @@ @@ -1875,7 +1947,7 @@
1875 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1947 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1876 name = "ASIHTTPRequestTests.m: 31"; 1948 name = "ASIHTTPRequestTests.m: 31";
1877 rLen = 0; 1949 rLen = 0;
1878 - rLoc = 1165; 1950 + rLoc = 1331;
1879 rType = 0; 1951 rType = 0;
1880 vrLen = 1805; 1952 vrLen = 1805;
1881 vrLoc = 53; 1953 vrLoc = 53;
@@ -1915,7 +1987,7 @@ @@ -1915,7 +1987,7 @@
1915 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 1987 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1916 name = "ASIHTTPRequestTests.m: 31"; 1988 name = "ASIHTTPRequestTests.m: 31";
1917 rLen = 0; 1989 rLen = 0;
1918 - rLoc = 1116; 1990 + rLoc = 1282;
1919 rType = 0; 1991 rType = 0;
1920 vrLen = 1815; 1992 vrLen = 1815;
1921 vrLoc = 53; 1993 vrLoc = 53;
@@ -1993,7 +2065,7 @@ @@ -1993,7 +2065,7 @@
1993 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 2065 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
1994 name = "ASIHTTPRequestTests.m: 31"; 2066 name = "ASIHTTPRequestTests.m: 31";
1995 rLen = 0; 2067 rLen = 0;
1996 - rLoc = 1116; 2068 + rLoc = 1282;
1997 rType = 0; 2069 rType = 0;
1998 vrLen = 1815; 2070 vrLen = 1815;
1999 vrLoc = 53; 2071 vrLoc = 53;
@@ -2003,7 +2075,7 @@ @@ -2003,7 +2075,7 @@
2003 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 2075 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
2004 name = "ASIHTTPRequestTests.m: 31"; 2076 name = "ASIHTTPRequestTests.m: 31";
2005 rLen = 0; 2077 rLen = 0;
2006 - rLoc = 1116; 2078 + rLoc = 1282;
2007 rType = 0; 2079 rType = 0;
2008 vrLen = 1815; 2080 vrLen = 1815;
2009 vrLoc = 53; 2081 vrLoc = 53;
@@ -2043,7 +2115,7 @@ @@ -2043,7 +2115,7 @@
2043 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 2115 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
2044 name = "ASIHTTPRequestTests.m: 34"; 2116 name = "ASIHTTPRequestTests.m: 34";
2045 rLen = 0; 2117 rLen = 0;
2046 - rLoc = 1227; 2118 + rLoc = 1393;
2047 rType = 0; 2119 rType = 0;
2048 vrLen = 1718; 2120 vrLen = 1718;
2049 vrLoc = 158; 2121 vrLoc = 158;
@@ -2063,7 +2135,7 @@ @@ -2063,7 +2135,7 @@
2063 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 2135 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
2064 name = "ASIHTTPRequestTests.m: 44"; 2136 name = "ASIHTTPRequestTests.m: 44";
2065 rLen = 0; 2137 rLen = 0;
2066 - rLoc = 1770; 2138 + rLoc = 1936;
2067 rType = 0; 2139 rType = 0;
2068 vrLen = 1801; 2140 vrLen = 1801;
2069 vrLoc = 50; 2141 vrLoc = 50;
@@ -2073,7 +2145,7 @@ @@ -2073,7 +2145,7 @@
2073 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 2145 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
2074 name = "ASIHTTPRequestTests.m: 44"; 2146 name = "ASIHTTPRequestTests.m: 44";
2075 rLen = 0; 2147 rLen = 0;
2076 - rLoc = 1770; 2148 + rLoc = 1936;
2077 rType = 0; 2149 rType = 0;
2078 vrLen = 1801; 2150 vrLen = 1801;
2079 vrLoc = 50; 2151 vrLoc = 50;
@@ -2093,7 +2165,7 @@ @@ -2093,7 +2165,7 @@
2093 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 2165 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
2094 name = "ASIHTTPRequestTests.m: 44"; 2166 name = "ASIHTTPRequestTests.m: 44";
2095 rLen = 0; 2167 rLen = 0;
2096 - rLoc = 1770; 2168 + rLoc = 1936;
2097 rType = 0; 2169 rType = 0;
2098 vrLen = 1801; 2170 vrLen = 1801;
2099 vrLoc = 50; 2171 vrLoc = 50;
@@ -2103,7 +2175,7 @@ @@ -2103,7 +2175,7 @@
2103 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */; 2175 fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
2104 name = "ASIHTTPRequestTests.m: 46"; 2176 name = "ASIHTTPRequestTests.m: 46";
2105 rLen = 0; 2177 rLen = 0;
2106 - rLoc = 1842; 2178 + rLoc = 4393;
2107 rType = 0; 2179 rType = 0;
2108 vrLen = 1846; 2180 vrLen = 1846;
2109 vrLoc = 3; 2181 vrLoc = 3;
@@ -2118,6 +2190,712 @@ @@ -2118,6 +2190,712 @@
2118 vrLen = 1846; 2190 vrLen = 1846;
2119 vrLoc = 3; 2191 vrLoc = 3;
2120 }; 2192 };
  2193 + B5731DB90E433E280008024F /* PBXTextBookmark */ = {
  2194 + isa = PBXTextBookmark;
  2195 + fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
  2196 + name = "ASIHTTPRequestTests.h: 22";
  2197 + rLen = 0;
  2198 + rLoc = 309;
  2199 + rType = 0;
  2200 + vrLen = 462;
  2201 + vrLoc = 0;
  2202 + };
  2203 + B5731DBA0E433E280008024F /* PBXTextBookmark */ = {
  2204 + isa = PBXTextBookmark;
  2205 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2206 + name = "ASIHTTPRequestTests.m: 86";
  2207 + rLen = 0;
  2208 + rLoc = 4393;
  2209 + rType = 0;
  2210 + vrLen = 1333;
  2211 + vrLoc = 1718;
  2212 + };
  2213 + B5731DBB0E433E280008024F /* PBXTextBookmark */ = {
  2214 + isa = PBXTextBookmark;
  2215 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2216 + name = "ASIHTTPRequestTests.m: 73";
  2217 + rLen = 0;
  2218 + rLoc = 4393;
  2219 + rType = 0;
  2220 + vrLen = 1852;
  2221 + vrLoc = 926;
  2222 + };
  2223 + B5731DBC0E433E280008024F /* PBXTextBookmark */ = {
  2224 + isa = PBXTextBookmark;
  2225 + fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
  2226 + name = "ASIHTTPRequestTests.h: 13";
  2227 + rLen = 0;
  2228 + rLoc = 250;
  2229 + rType = 0;
  2230 + vrLen = 324;
  2231 + vrLoc = 0;
  2232 + };
  2233 + B5731DBD0E433E280008024F /* PBXTextBookmark */ = {
  2234 + isa = PBXTextBookmark;
  2235 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2236 + name = "ASIHTTPRequestTests.m: 73";
  2237 + rLen = 0;
  2238 + rLoc = 4393;
  2239 + rType = 0;
  2240 + vrLen = 1904;
  2241 + vrLoc = 874;
  2242 + };
  2243 + B5731DBE0E433E280008024F /* PBXTextBookmark */ = {
  2244 + isa = PBXTextBookmark;
  2245 + fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
  2246 + name = "ASIHTTPRequestTests.h: 13";
  2247 + rLen = 0;
  2248 + rLoc = 250;
  2249 + rType = 0;
  2250 + vrLen = 324;
  2251 + vrLoc = 0;
  2252 + };
  2253 + B5731DBF0E433E280008024F /* PBXTextBookmark */ = {
  2254 + isa = PBXTextBookmark;
  2255 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2256 + name = "ASIHTTPRequestTests.m: 73";
  2257 + rLen = 0;
  2258 + rLoc = 4393;
  2259 + rType = 0;
  2260 + vrLen = 1852;
  2261 + vrLoc = 926;
  2262 + };
  2263 + B5731DC00E433E280008024F /* PBXTextBookmark */ = {
  2264 + isa = PBXTextBookmark;
  2265 + fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
  2266 + name = "ASIHTTPRequestTests.h: 13";
  2267 + rLen = 0;
  2268 + rLoc = 250;
  2269 + rType = 0;
  2270 + vrLen = 324;
  2271 + vrLoc = 0;
  2272 + };
  2273 + B5731DC10E433E280008024F /* PBXTextBookmark */ = {
  2274 + isa = PBXTextBookmark;
  2275 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2276 + name = "ASIHTTPRequestTests.m: 73";
  2277 + rLen = 0;
  2278 + rLoc = 4393;
  2279 + rType = 0;
  2280 + vrLen = 1904;
  2281 + vrLoc = 874;
  2282 + };
  2283 + B5731DC20E433E280008024F /* PBXTextBookmark */ = {
  2284 + isa = PBXTextBookmark;
  2285 + fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
  2286 + name = "ASIHTTPRequestTests.h: 13";
  2287 + rLen = 0;
  2288 + rLoc = 250;
  2289 + rType = 0;
  2290 + vrLen = 347;
  2291 + vrLoc = 0;
  2292 + };
  2293 + B5731DC30E433E280008024F /* PBXTextBookmark */ = {
  2294 + isa = PBXTextBookmark;
  2295 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2296 + name = "ASIHTTPRequestTests.m: 86";
  2297 + rLen = 0;
  2298 + rLoc = 4393;
  2299 + rType = 0;
  2300 + vrLen = 1315;
  2301 + vrLoc = 1736;
  2302 + };
  2303 + B5731DC40E433E280008024F /* PBXTextBookmark */ = {
  2304 + isa = PBXTextBookmark;
  2305 + fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
  2306 + name = "ASIHTTPRequestTests.h: 22";
  2307 + rLen = 0;
  2308 + rLoc = 309;
  2309 + rType = 0;
  2310 + vrLen = 462;
  2311 + vrLoc = 0;
  2312 + };
  2313 + B5731DC50E433E280008024F /* PBXTextBookmark */ = {
  2314 + isa = PBXTextBookmark;
  2315 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2316 + name = "ASIHTTPRequestTests.m: 85";
  2317 + rLen = 0;
  2318 + rLoc = 4389;
  2319 + rType = 0;
  2320 + vrLen = 1664;
  2321 + vrLoc = 1871;
  2322 + };
  2323 + B5731DC90E433E320008024F /* PBXTextBookmark */ = {
  2324 + isa = PBXTextBookmark;
  2325 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2326 + name = "ASIHTTPRequestTests.m: 85";
  2327 + rLen = 0;
  2328 + rLoc = 4389;
  2329 + rType = 0;
  2330 + vrLen = 1664;
  2331 + vrLoc = 1871;
  2332 + };
  2333 + B5731DDA0E433E990008024F /* PBXTextBookmark */ = {
  2334 + isa = PBXTextBookmark;
  2335 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2336 + name = "ASIHTTPRequestTests.m: 48";
  2337 + rLen = 26;
  2338 + rLoc = 2010;
  2339 + rType = 0;
  2340 + vrLen = 2093;
  2341 + vrLoc = 487;
  2342 + };
  2343 + B5731DDB0E433E990008024F /* PBXTextBookmark */ = {
  2344 + isa = PBXTextBookmark;
  2345 + fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
  2346 + name = "ASIHTTPRequestTests.h: 22";
  2347 + rLen = 0;
  2348 + rLoc = 309;
  2349 + rType = 0;
  2350 + vrLen = 462;
  2351 + vrLoc = 0;
  2352 + };
  2353 + B5731DDC0E433E990008024F /* PBXTextBookmark */ = {
  2354 + isa = PBXTextBookmark;
  2355 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2356 + name = "ASIHTTPRequestTests.m: 48";
  2357 + rLen = 26;
  2358 + rLoc = 2010;
  2359 + rType = 0;
  2360 + vrLen = 2093;
  2361 + vrLoc = 487;
  2362 + };
  2363 + B5731DDD0E433E990008024F /* PBXTextBookmark */ = {
  2364 + isa = PBXTextBookmark;
  2365 + fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
  2366 + name = "ASIHTTPRequestTests.h: 20";
  2367 + rLen = 0;
  2368 + rLoc = 309;
  2369 + rType = 0;
  2370 + vrLen = 490;
  2371 + vrLoc = 0;
  2372 + };
  2373 + B5731DE70E4340CF0008024F /* PBXTextBookmark */ = {
  2374 + isa = PBXTextBookmark;
  2375 + fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
  2376 + name = "ASIHTTPRequest.m: 373";
  2377 + rLen = 0;
  2378 + rLoc = 11872;
  2379 + rType = 0;
  2380 + vrLen = 1765;
  2381 + vrLoc = 11652;
  2382 + };
  2383 + B5731DE80E4340CF0008024F /* PBXTextBookmark */ = {
  2384 + isa = PBXTextBookmark;
  2385 + fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
  2386 + name = "ASIHTTPRequestTests.h: 12";
  2387 + rLen = 0;
  2388 + rLoc = 250;
  2389 + rType = 0;
  2390 + vrLen = 315;
  2391 + vrLoc = 0;
  2392 + };
  2393 + B5731DE90E4340CF0008024F /* PBXTextBookmark */ = {
  2394 + isa = PBXTextBookmark;
  2395 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2396 + name = "ASIHTTPRequestTests.m: 80";
  2397 + rLen = 0;
  2398 + rLoc = 4393;
  2399 + rType = 0;
  2400 + vrLen = 1971;
  2401 + vrLoc = 1228;
  2402 + };
  2403 + B5731DEA0E4340CF0008024F /* PBXTextBookmark */ = {
  2404 + isa = PBXTextBookmark;
  2405 + fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
  2406 + name = "ASIHTTPRequestTests.h: 20";
  2407 + rLen = 0;
  2408 + rLoc = 309;
  2409 + rType = 0;
  2410 + vrLen = 490;
  2411 + vrLoc = 0;
  2412 + };
  2413 + B5731DEB0E4340CF0008024F /* PBXTextBookmark */ = {
  2414 + isa = PBXTextBookmark;
  2415 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2416 + name = "ASIHTTPRequestTests.m: 50";
  2417 + rLen = 0;
  2418 + rLoc = 2038;
  2419 + rType = 0;
  2420 + vrLen = 1861;
  2421 + vrLoc = 1553;
  2422 + };
  2423 + B5731DEC0E4340CF0008024F /* PBXTextBookmark */ = {
  2424 + isa = PBXTextBookmark;
  2425 + fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
  2426 + name = "ASIHTTPRequest.m: 373";
  2427 + rLen = 0;
  2428 + rLoc = 11872;
  2429 + rType = 0;
  2430 + vrLen = 1765;
  2431 + vrLoc = 11652;
  2432 + };
  2433 + B5731DED0E4340CF0008024F /* PBXTextBookmark */ = {
  2434 + isa = PBXTextBookmark;
  2435 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2436 + name = "ASIHTTPRequestTests.m: 80";
  2437 + rLen = 0;
  2438 + rLoc = 4393;
  2439 + rType = 0;
  2440 + vrLen = 1971;
  2441 + vrLoc = 1228;
  2442 + };
  2443 + B5731DEE0E4340CF0008024F /* PBXTextBookmark */ = {
  2444 + isa = PBXTextBookmark;
  2445 + fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
  2446 + name = "ASIHTTPRequestTests.h: 12";
  2447 + rLen = 0;
  2448 + rLoc = 250;
  2449 + rType = 0;
  2450 + vrLen = 315;
  2451 + vrLoc = 0;
  2452 + };
  2453 + B5731DEF0E4340CF0008024F /* PBXTextBookmark */ = {
  2454 + isa = PBXTextBookmark;
  2455 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2456 + name = "ASIHTTPRequestTests.m: 71";
  2457 + rLen = 0;
  2458 + rLoc = 2038;
  2459 + rType = 0;
  2460 + vrLen = 1983;
  2461 + vrLoc = 1228;
  2462 + };
  2463 + B5731DF30E43412C0008024F /* PBXTextBookmark */ = {
  2464 + isa = PBXTextBookmark;
  2465 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2466 + name = "ASIHTTPRequestTests.m: 83";
  2467 + rLen = 0;
  2468 + rLoc = 3865;
  2469 + rType = 0;
  2470 + vrLen = 1592;
  2471 + vrLoc = 1843;
  2472 + };
  2473 + B5731DF90E4341460008024F /* PBXTextBookmark */ = {
  2474 + isa = PBXTextBookmark;
  2475 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2476 + name = "ASIHTTPRequestTests.m: 58";
  2477 + rLen = 0;
  2478 + rLoc = 2488;
  2479 + rType = 0;
  2480 + vrLen = 1681;
  2481 + vrLoc = 1736;
  2482 + };
  2483 + B5731E000E4341980008024F /* PBXTextBookmark */ = {
  2484 + isa = PBXTextBookmark;
  2485 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2486 + name = "ASIHTTPRequestTests.m: 58";
  2487 + rLen = 0;
  2488 + rLoc = 2488;
  2489 + rType = 0;
  2490 + vrLen = 1681;
  2491 + vrLoc = 1736;
  2492 + };
  2493 + B5731E050E4341B10008024F /* PBXTextBookmark */ = {
  2494 + isa = PBXTextBookmark;
  2495 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2496 + name = "ASIHTTPRequestTests.m: 58";
  2497 + rLen = 0;
  2498 + rLoc = 2488;
  2499 + rType = 0;
  2500 + vrLen = 1681;
  2501 + vrLoc = 1736;
  2502 + };
  2503 + B5731E0D0E4342030008024F /* PBXTextBookmark */ = {
  2504 + isa = PBXTextBookmark;
  2505 + comments = "error: Test host 'asi-http-request.app/Contents/MacOS/asi-http-request' exited abnormally with code 127 (it may have crashed).";
  2506 + fRef = B5731D760E4339B00008024F /* RunPlatformUnitTests.include */;
  2507 + rLen = 1;
  2508 + rLoc = 303;
  2509 + rType = 1;
  2510 + };
  2511 + B5731E0E0E4342030008024F /* PBXTextBookmark */ = {
  2512 + isa = PBXTextBookmark;
  2513 + fRef = B5731D760E4339B00008024F /* RunPlatformUnitTests.include */;
  2514 + name = "RunPlatformUnitTests.include: 304";
  2515 + rLen = 138;
  2516 + rLoc = 10038;
  2517 + rType = 0;
  2518 + vrLen = 1314;
  2519 + vrLoc = 9441;
  2520 + };
  2521 + B5731E180E43424A0008024F /* PBXTextBookmark */ = {
  2522 + isa = PBXTextBookmark;
  2523 + fRef = B5731D760E4339B00008024F /* RunPlatformUnitTests.include */;
  2524 + name = "RunPlatformUnitTests.include: 304";
  2525 + rLen = 138;
  2526 + rLoc = 10038;
  2527 + rType = 0;
  2528 + vrLen = 1911;
  2529 + vrLoc = 9274;
  2530 + };
  2531 + B5731E190E43424A0008024F /* PBXTextBookmark */ = {
  2532 + isa = PBXTextBookmark;
  2533 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2534 + name = "ASIHTTPRequestTests.m: 75";
  2535 + rLen = 0;
  2536 + rLoc = 3547;
  2537 + rType = 0;
  2538 + vrLen = 1501;
  2539 + vrLoc = 1771;
  2540 + };
  2541 + B5731E1A0E43424A0008024F /* PBXTextBookmark */ = {
  2542 + isa = PBXTextBookmark;
  2543 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2544 + name = "ASIHTTPRequestTests.m: 75";
  2545 + rLen = 0;
  2546 + rLoc = 3547;
  2547 + rType = 0;
  2548 + vrLen = 1705;
  2549 + vrLoc = 1736;
  2550 + };
  2551 + B5731E1B0E43424A0008024F /* PBXTextBookmark */ = {
  2552 + isa = PBXTextBookmark;
  2553 + fRef = B5731D760E4339B00008024F /* RunPlatformUnitTests.include */;
  2554 + name = "RunPlatformUnitTests.include: 304";
  2555 + rLen = 138;
  2556 + rLoc = 10038;
  2557 + rType = 0;
  2558 + vrLen = 1911;
  2559 + vrLoc = 9274;
  2560 + };
  2561 + B5731E1C0E43424A0008024F /* PBXTextBookmark */ = {
  2562 + isa = PBXTextBookmark;
  2563 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2564 + name = "ASIHTTPRequestTests.m: 75";
  2565 + rLen = 0;
  2566 + rLoc = 3547;
  2567 + rType = 0;
  2568 + vrLen = 1432;
  2569 + vrLoc = 1841;
  2570 + };
  2571 + B5731E1E0E4342E80008024F /* PBXTextBookmark */ = {
  2572 + isa = PBXTextBookmark;
  2573 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2574 + name = "ASIHTTPRequestTests.m: 53";
  2575 + rLen = 39;
  2576 + rLoc = 2168;
  2577 + rType = 0;
  2578 + vrLen = 1500;
  2579 + vrLoc = 1736;
  2580 + };
  2581 + B5731E210E43433B0008024F /* PBXTextBookmark */ = {
  2582 + isa = PBXTextBookmark;
  2583 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2584 + name = "ASIHTTPRequestTests.m: 81";
  2585 + rLen = 0;
  2586 + rLoc = 3823;
  2587 + rType = 0;
  2588 + vrLen = 1650;
  2589 + vrLoc = 1736;
  2590 + };
  2591 + B5731E220E4343490008024F /* PBXTextBookmark */ = {
  2592 + isa = PBXTextBookmark;
  2593 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2594 + name = "ASIHTTPRequestTests.m: 84";
  2595 + rLen = 0;
  2596 + rLoc = 3970;
  2597 + rType = 0;
  2598 + vrLen = 1725;
  2599 + vrLoc = 1736;
  2600 + };
  2601 + B5731E240E4343530008024F /* PBXTextBookmark */ = {
  2602 + isa = PBXTextBookmark;
  2603 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2604 + name = "ASIHTTPRequestTests.m: 84";
  2605 + rLen = 0;
  2606 + rLoc = 3970;
  2607 + rType = 0;
  2608 + vrLen = 1736;
  2609 + vrLoc = 1736;
  2610 + };
  2611 + B5731E280E4343E50008024F /* PBXTextBookmark */ = {
  2612 + isa = PBXTextBookmark;
  2613 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2614 + name = "ASIHTTPRequestTests.m: 102";
  2615 + rLen = 0;
  2616 + rLoc = 4384;
  2617 + rType = 0;
  2618 + vrLen = 1839;
  2619 + vrLoc = 2389;
  2620 + };
  2621 + B5731E2A0E43441F0008024F /* PBXBookmark */ = {
  2622 + isa = PBXBookmark;
  2623 + fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
  2624 + };
  2625 + B5731E2C0E43448A0008024F /* PBXBookmark */ = {
  2626 + isa = PBXBookmark;
  2627 + fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
  2628 + };
  2629 + B5731E2E0E4344F90008024F /* PBXTextBookmark */ = {
  2630 + isa = PBXTextBookmark;
  2631 + fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
  2632 + name = "AppDelegate.m: 34";
  2633 + rLen = 96;
  2634 + rLoc = 663;
  2635 + rType = 0;
  2636 + vrLen = 1038;
  2637 + vrLoc = 0;
  2638 + };
  2639 + B5731E2F0E4344F90008024F /* PBXTextBookmark */ = {
  2640 + isa = PBXTextBookmark;
  2641 + fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
  2642 + name = "ASIHTTPRequest.h: 230";
  2643 + rLen = 0;
  2644 + rLoc = 8106;
  2645 + rType = 0;
  2646 + vrLen = 1732;
  2647 + vrLoc = 6382;
  2648 + };
  2649 + B5731E300E4344F90008024F /* PBXTextBookmark */ = {
  2650 + isa = PBXTextBookmark;
  2651 + fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
  2652 + name = "ASIHTTPRequest.m: 373";
  2653 + rLen = 0;
  2654 + rLoc = 11872;
  2655 + rType = 0;
  2656 + vrLen = 1675;
  2657 + vrLoc = 11652;
  2658 + };
  2659 + B5731E310E4344F90008024F /* PBXTextBookmark */ = {
  2660 + isa = PBXTextBookmark;
  2661 + fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
  2662 + name = "ASIProgressDelegate.h: 17";
  2663 + rLen = 0;
  2664 + rLoc = 356;
  2665 + rType = 0;
  2666 + vrLen = 356;
  2667 + vrLoc = 0;
  2668 + };
  2669 + B5731E320E4344F90008024F /* PBXTextBookmark */ = {
  2670 + isa = PBXTextBookmark;
  2671 + fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
  2672 + name = "AppDelegate.h: 4";
  2673 + rLen = 0;
  2674 + rLoc = 42;
  2675 + rType = 0;
  2676 + vrLen = 1083;
  2677 + vrLoc = 0;
  2678 + };
  2679 + B5731E330E4344F90008024F /* PBXTextBookmark */ = {
  2680 + isa = PBXTextBookmark;
  2681 + fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
  2682 + name = "ASIHTTPRequestTests.h: 12";
  2683 + rLen = 0;
  2684 + rLoc = 250;
  2685 + rType = 0;
  2686 + vrLen = 315;
  2687 + vrLoc = 0;
  2688 + };
  2689 + B5731E340E4344F90008024F /* PBXTextBookmark */ = {
  2690 + isa = PBXTextBookmark;
  2691 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2692 + name = "ASIHTTPRequestTests.m: 19";
  2693 + rLen = 0;
  2694 + rLoc = 420;
  2695 + rType = 0;
  2696 + vrLen = 1473;
  2697 + vrLoc = 0;
  2698 + };
  2699 + B5731E350E4344F90008024F /* PBXTextBookmark */ = {
  2700 + isa = PBXTextBookmark;
  2701 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2702 + name = "ASIHTTPRequestTests.m: 102";
  2703 + rLen = 0;
  2704 + rLoc = 4384;
  2705 + rType = 0;
  2706 + vrLen = 1841;
  2707 + vrLoc = 0;
  2708 + };
  2709 + B5731E360E4344F90008024F /* PBXTextBookmark */ = {
  2710 + isa = PBXTextBookmark;
  2711 + fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
  2712 + name = "AppDelegate.h: 4";
  2713 + rLen = 0;
  2714 + rLoc = 42;
  2715 + rType = 0;
  2716 + vrLen = 1083;
  2717 + vrLoc = 0;
  2718 + };
  2719 + B5731E370E4344F90008024F /* PBXTextBookmark */ = {
  2720 + isa = PBXTextBookmark;
  2721 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2722 + name = "ASIHTTPRequestTests.m: 102";
  2723 + rLen = 0;
  2724 + rLoc = 4384;
  2725 + rType = 0;
  2726 + vrLen = 1664;
  2727 + vrLoc = 2569;
  2728 + };
  2729 + B5731E380E4344F90008024F /* PBXTextBookmark */ = {
  2730 + isa = PBXTextBookmark;
  2731 + fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
  2732 + name = "ASIHTTPRequest.h: 233";
  2733 + rLen = 0;
  2734 + rLoc = 8106;
  2735 + rType = 0;
  2736 + vrLen = 1733;
  2737 + vrLoc = 6504;
  2738 + };
  2739 + B5731E390E4344F90008024F /* PBXTextBookmark */ = {
  2740 + isa = PBXTextBookmark;
  2741 + fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
  2742 + name = "ASIHTTPRequestTests.h: 12";
  2743 + rLen = 0;
  2744 + rLoc = 250;
  2745 + rType = 0;
  2746 + vrLen = 315;
  2747 + vrLoc = 0;
  2748 + };
  2749 + B5731E3A0E4344F90008024F /* PBXTextBookmark */ = {
  2750 + isa = PBXTextBookmark;
  2751 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2752 + name = "ASIHTTPRequestTests.m: 19";
  2753 + rLen = 0;
  2754 + rLoc = 420;
  2755 + rType = 0;
  2756 + vrLen = 1473;
  2757 + vrLoc = 0;
  2758 + };
  2759 + B5731E3B0E4344F90008024F /* PBXTextBookmark */ = {
  2760 + isa = PBXTextBookmark;
  2761 + fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
  2762 + name = "ASIHTTPRequestTests.h: 12";
  2763 + rLen = 0;
  2764 + rLoc = 250;
  2765 + rType = 0;
  2766 + vrLen = 315;
  2767 + vrLoc = 0;
  2768 + };
  2769 + B5731E3C0E4344F90008024F /* PBXTextBookmark */ = {
  2770 + isa = PBXTextBookmark;
  2771 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2772 + name = "ASIHTTPRequestTests.m: 19";
  2773 + rLen = 0;
  2774 + rLoc = 420;
  2775 + rType = 0;
  2776 + vrLen = 1473;
  2777 + vrLoc = 0;
  2778 + };
  2779 + B5731E3D0E4344F90008024F /* PBXTextBookmark */ = {
  2780 + isa = PBXTextBookmark;
  2781 + fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
  2782 + name = "AppDelegate.m: 34";
  2783 + rLen = 96;
  2784 + rLoc = 663;
  2785 + rType = 0;
  2786 + vrLen = 1038;
  2787 + vrLoc = 0;
  2788 + };
  2789 + B5731E3E0E4344F90008024F /* PBXTextBookmark */ = {
  2790 + isa = PBXTextBookmark;
  2791 + fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
  2792 + name = "AppDelegate.h: 4";
  2793 + rLen = 0;
  2794 + rLoc = 42;
  2795 + rType = 0;
  2796 + vrLen = 1083;
  2797 + vrLoc = 0;
  2798 + };
  2799 + B5731E3F0E4344F90008024F /* PBXTextBookmark */ = {
  2800 + isa = PBXTextBookmark;
  2801 + fRef = B5ABC80E0E24CB100072F422 /* AppDelegate.m */;
  2802 + name = "AppDelegate.m: 34";
  2803 + rLen = 96;
  2804 + rLoc = 663;
  2805 + rType = 0;
  2806 + vrLen = 1038;
  2807 + vrLoc = 0;
  2808 + };
  2809 + B5731E400E4344F90008024F /* PBXTextBookmark */ = {
  2810 + isa = PBXTextBookmark;
  2811 + fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
  2812 + name = "ASIHTTPRequest.h: 230";
  2813 + rLen = 0;
  2814 + rLoc = 8106;
  2815 + rType = 0;
  2816 + vrLen = 1732;
  2817 + vrLoc = 6382;
  2818 + };
  2819 + B5731E410E4344F90008024F /* PBXTextBookmark */ = {
  2820 + isa = PBXTextBookmark;
  2821 + fRef = B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */;
  2822 + name = "ASIHTTPRequest.m: 373";
  2823 + rLen = 0;
  2824 + rLoc = 11872;
  2825 + rType = 0;
  2826 + vrLen = 1675;
  2827 + vrLoc = 11652;
  2828 + };
  2829 + B5731E420E4344F90008024F /* PBXTextBookmark */ = {
  2830 + isa = PBXTextBookmark;
  2831 + fRef = B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */;
  2832 + name = "ASIProgressDelegate.h: 17";
  2833 + rLen = 0;
  2834 + rLoc = 356;
  2835 + rType = 0;
  2836 + vrLen = 356;
  2837 + vrLoc = 0;
  2838 + };
  2839 + B5731E430E4344F90008024F /* PBXTextBookmark */ = {
  2840 + isa = PBXTextBookmark;
  2841 + fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
  2842 + name = "AppDelegate.h: 4";
  2843 + rLen = 0;
  2844 + rLoc = 42;
  2845 + rType = 0;
  2846 + vrLen = 1083;
  2847 + vrLoc = 0;
  2848 + };
  2849 + B5731E440E4344F90008024F /* PBXTextBookmark */ = {
  2850 + isa = PBXTextBookmark;
  2851 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2852 + name = "ASIHTTPRequestTests.m: 19";
  2853 + rLen = 0;
  2854 + rLoc = 420;
  2855 + rType = 0;
  2856 + vrLen = 1473;
  2857 + vrLoc = 0;
  2858 + };
  2859 + B5731E450E4344F90008024F /* PBXTextBookmark */ = {
  2860 + isa = PBXTextBookmark;
  2861 + fRef = B5731AFA0E430B1F0008024F /* ASIHTTPRequestTests.h */;
  2862 + name = "ASIHTTPRequestTests.h: 12";
  2863 + rLen = 0;
  2864 + rLoc = 250;
  2865 + rType = 0;
  2866 + vrLen = 315;
  2867 + vrLoc = 0;
  2868 + };
  2869 + B5731E460E4344F90008024F /* PBXTextBookmark */ = {
  2870 + isa = PBXTextBookmark;
  2871 + fRef = B5731AFB0E430B1F0008024F /* ASIHTTPRequestTests.m */;
  2872 + name = "ASIHTTPRequestTests.m: 16";
  2873 + rLen = 0;
  2874 + rLoc = 289;
  2875 + rType = 0;
  2876 + vrLen = 1392;
  2877 + vrLoc = 0;
  2878 + };
  2879 + B5731E490E4344F90008024F /* PBXTextBookmark */ = {
  2880 + isa = PBXTextBookmark;
  2881 + fRef = B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */;
  2882 + name = "ASIHTTPRequest.h: 79";
  2883 + rLen = 0;
  2884 + rLoc = 2879;
  2885 + rType = 0;
  2886 + vrLen = 1511;
  2887 + vrLoc = 2838;
  2888 + };
  2889 + B5731E4C0E4344F90008024F /* PBXTextBookmark */ = {
  2890 + isa = PBXTextBookmark;
  2891 + fRef = B5ABC80D0E24CB100072F422 /* AppDelegate.h */;
  2892 + name = "AppDelegate.h: 4";
  2893 + rLen = 0;
  2894 + rLoc = 42;
  2895 + rType = 0;
  2896 + vrLen = 1083;
  2897 + vrLoc = 0;
  2898 + };
2121 B5AAC50B0E3F1CC300064080 /* AppDelegate.m:22 */ = { 2899 B5AAC50B0E3F1CC300064080 /* AppDelegate.m:22 */ = {
2122 isa = PBXFileBreakpoint; 2900 isa = PBXFileBreakpoint;
2123 actions = ( 2901 actions = (
@@ -2132,7 +2910,7 @@ @@ -2132,7 +2910,7 @@
2132 ignoreCount = 0; 2910 ignoreCount = 0;
2133 lineNumber = 22; 2911 lineNumber = 22;
2134 location = "asi-http-request"; 2912 location = "asi-http-request";
2135 - modificationTime = 239287151.799814; 2913 + modificationTime = 239289590.084248;
2136 state = 1; 2914 state = 1;
2137 }; 2915 };
2138 B5ABC7A70E24C5280072F422 /* asi-http-request */ = { 2916 B5ABC7A70E24C5280072F422 /* asi-http-request */ = {
@@ -2154,32 +2932,32 @@ @@ -2154,32 +2932,32 @@
2154 enableDebugStr = 1; 2932 enableDebugStr = 1;
2155 environmentEntries = ( 2933 environmentEntries = (
2156 { 2934 {
2157 - active = YES; 2935 + active = NO;
2158 name = CFZombieLevel; 2936 name = CFZombieLevel;
2159 value = 5; 2937 value = 5;
2160 }, 2938 },
2161 { 2939 {
2162 - active = YES; 2940 + active = NO;
2163 name = NSZombieEnabled; 2941 name = NSZombieEnabled;
2164 value = YES; 2942 value = YES;
2165 }, 2943 },
2166 { 2944 {
2167 - active = YES; 2945 + active = NO;
2168 name = XCInjectBundleInto; 2946 name = XCInjectBundleInto;
2169 value = "asi-http-request.app/Contents/MacOS/asi-http-request"; 2947 value = "asi-http-request.app/Contents/MacOS/asi-http-request";
2170 }, 2948 },
2171 { 2949 {
2172 - active = YES; 2950 + active = NO;
2173 name = XCInjectBundle; 2951 name = XCInjectBundle;
2174 value = Tests.octest; 2952 value = Tests.octest;
2175 }, 2953 },
2176 { 2954 {
2177 - active = YES; 2955 + active = NO;
2178 name = DYLD_FALLBACK_FRAMEWORK_PATH; 2956 name = DYLD_FALLBACK_FRAMEWORK_PATH;
2179 value = "$(DEVELOPER_LIBRARY_DIR)/Frameworks"; 2957 value = "$(DEVELOPER_LIBRARY_DIR)/Frameworks";
2180 }, 2958 },
2181 { 2959 {
2182 - active = YES; 2960 + active = NO;
2183 name = DYLD_INSERT_LIBRARIES; 2961 name = DYLD_INSERT_LIBRARIES;
2184 value = "$(DEVELOPER_LIBRARY_DIR)/PrivateFrameworks/DevToolsBundleInjection.framework/DevToolsBundleInjection"; 2962 value = "$(DEVELOPER_LIBRARY_DIR)/PrivateFrameworks/DevToolsBundleInjection.framework/DevToolsBundleInjection";
2185 }, 2963 },
@@ -2208,30 +2986,30 @@ @@ -2208,30 +2986,30 @@
2208 }; 2986 };
2209 B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */ = { 2987 B5ABC7B90E24C5620072F422 /* ASIHTTPRequest.m */ = {
2210 uiCtxt = { 2988 uiCtxt = {
2211 - sepNavIntBoundsRect = "{{0, 0}, {1680, 10542}}"; 2989 + sepNavIntBoundsRect = "{{0, 0}, {947, 10752}}";
2212 - sepNavSelRange = "{13097, 0}"; 2990 + sepNavSelRange = "{11872, 0}";
2213 - sepNavVisRange = "{11882, 1825}"; 2991 + sepNavVisRange = "{11652, 1675}";
2214 sepNavWindowFrame = "{{500, 55}, {1475, 874}}"; 2992 sepNavWindowFrame = "{{500, 55}, {1475, 874}}";
2215 }; 2993 };
2216 }; 2994 };
2217 B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */ = { 2995 B5ABC7BA0E24C5620072F422 /* ASIHTTPRequest.h */ = {
2218 uiCtxt = { 2996 uiCtxt = {
2219 - sepNavIntBoundsRect = "{{0, 0}, {1098, 3262}}"; 2997 + sepNavIntBoundsRect = "{{0, 0}, {1416, 3276}}";
2220 - sepNavSelRange = "{8229, 0}"; 2998 + sepNavSelRange = "{2879, 0}";
2221 - sepNavVisRange = "{6468, 1769}"; 2999 + sepNavVisRange = "{2838, 1511}";
2222 sepNavWindowFrame = "{{19, 304}, {1475, 874}}"; 3000 sepNavWindowFrame = "{{19, 304}, {1475, 874}}";
2223 }; 3001 };
2224 }; 3002 };
2225 B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */ = { 3003 B5ABC7ED0E24C6670072F422 /* ASIProgressDelegate.h */ = {
2226 uiCtxt = { 3004 uiCtxt = {
2227 - sepNavIntBoundsRect = "{{0, 0}, {947, 647}}"; 3005 + sepNavIntBoundsRect = "{{0, 0}, {947, 624}}";
2228 sepNavSelRange = "{356, 0}"; 3006 sepNavSelRange = "{356, 0}";
2229 sepNavVisRange = "{0, 356}"; 3007 sepNavVisRange = "{0, 356}";
2230 }; 3008 };
2231 }; 3009 };
2232 B5ABC80D0E24CB100072F422 /* AppDelegate.h */ = { 3010 B5ABC80D0E24CB100072F422 /* AppDelegate.h */ = {
2233 uiCtxt = { 3011 uiCtxt = {
2234 - sepNavIntBoundsRect = "{{0, 0}, {1073, 647}}"; 3012 + sepNavIntBoundsRect = "{{0, 0}, {1416, 723}}";
2235 sepNavSelRange = "{42, 0}"; 3013 sepNavSelRange = "{42, 0}";
2236 sepNavVisRange = "{0, 1083}"; 3014 sepNavVisRange = "{0, 1083}";
2237 sepNavWindowFrame = "{{15, -1}, {1475, 874}}"; 3015 sepNavWindowFrame = "{{15, -1}, {1475, 874}}";
@@ -2239,9 +3017,9 @@ @@ -2239,9 +3017,9 @@
2239 }; 3017 };
2240 B5ABC80E0E24CB100072F422 /* AppDelegate.m */ = { 3018 B5ABC80E0E24CB100072F422 /* AppDelegate.m */ = {
2241 uiCtxt = { 3019 uiCtxt = {
2242 - sepNavIntBoundsRect = "{{0, 0}, {1073, 2562}}"; 3020 + sepNavIntBoundsRect = "{{0, 0}, {1032, 2716}}";
2243 sepNavSelRange = "{663, 96}"; 3021 sepNavSelRange = "{663, 96}";
2244 - sepNavVisRange = "{0, 1170}"; 3022 + sepNavVisRange = "{0, 1038}";
2245 sepNavWindowFrame = "{{84, 60}, {1475, 1050}}"; 3023 sepNavWindowFrame = "{{84, 60}, {1475, 1050}}";
2246 }; 3024 };
2247 }; 3025 };
This diff was suppressed by a .gitattributes entry.