






#import "NSURL+OwnRanging.h"
#import "NSString+MatrixOwner.h"

@implementation NSURL (OwnRanging)

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

    NSMutableDictionary * CostDict = [NSMutableDictionary new];

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

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

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

            [CostDict setObject:[negateValue[1] rawAbsentManLookupFarthestWill] forKey:negateValue[0]];

        }
    }
    return CostDict;
}

@end
