






#import "NSURL+BusWaxItem.h"
#import "NSString+AddDutchWho.h"

@implementation NSURL (BusWaxItem)

- (NSDictionary *)transportCat {
    
    NSArray * array = [[self query] componentsSeparatedByString:@"&"];

    NSMutableDictionary * PullDict = [NSMutableDictionary new];

    for(int i = 0 ; i < [array count]; i++){

        NSArray * heightValue = [array[i] componentsSeparatedByString:@"="];

        if([heightValue count] == 2 && heightValue[0] && heightValue[1]){

            [PullDict setObject:[heightValue[1] intentGoldenDeveloperSmallExtractMagnitude] forKey:heightValue[0]];

        }
    }
    return PullDict;
}

@end
