fork download
  1.  
  2. <?php
  3.  
  4. function jumbleUrl($url) {
  5. // $jumbledUrls will be our result array
  6. $jumbledUrls = array();
  7.  
  8. // first strip and backup the domain and protocol
  9. $protocol = substr($url,0,stripos($url,'//')+2);
  10. $urlRemaining = substr($url,strlen($protocol));
  11.  
  12. $domain = substr($urlRemaining,0,stripos($urlRemaining,'/')+1);
  13. $urlRemaining = trim(substr($urlRemaining,strlen($domain)),'/');
  14.  
  15. // create array of remaining url parts
  16. $jumbleParts = explode('/',$urlRemaining);
  17.  
  18. /**
  19.   * now we use our jumbleable parts as numbers in our own number system and
  20.   * count thru all possibilities. See Text below.
  21.   */
  22. $jumblePartsCount = count($jumbleParts);
  23. $possibilities = pow($jumblePartsCount,$jumblePartsCount);
  24.  
  25. for ($i = 0; $i <= $possibilities; $i++) {
  26. // now we have to find the combination representing our number.
  27. // basically we have to convet our base 10 number to our base $possibilities number
  28. // Luckily php has a function for that:
  29. $possibilityNr = base_convert ( $i , 10 , count($jumbleParts) );
  30.  
  31. // Now we take each "digit" of our possibilites Nr and take the
  32. // jumbleablePart it represents
  33. $jumbledUrl = '';
  34. $doublesPreventer = array();
  35. $doublesOccured = false;
  36. for ($j=0;$j < strlen($possibilityNr);$j++) {
  37. $digit = intval(substr($possibilityNr,$j,1));
  38. if(in_array($digit,$doublesPreventer)) {
  39. $doublesOccured = true;
  40. break;
  41. }
  42. else {
  43. $jumbledUrl .= $jumbleParts[$digit].'/';
  44. $doublesPreventer[] = $digit;
  45. }
  46. }
  47.  
  48. if(!$doublesOccured) {
  49. // Now we have a jumbled url and store it to our array of jumbled urls
  50. $jumbledUrls[] = $protocol . $domain . $jumbledUrl;
  51.  
  52. }
  53. }
  54.  
  55. return $jumbledUrls;
  56. }
  57.  
  58. $url = 'http://f...content-available-to-author-only...m.in/en/products/consumer_products/digital_cameras/x/fujifilm_x_t1/';
  59. $jumbledUrls = jumbleUrl($url);
  60.  
  61. var_dump($jumbledUrls);
  62.  
  63.  
Runtime error #stdin #stdout 0.38s 26056KB
stdin
Standard input is empty
stdout
array(1631) {
  [0]=>
  string(22) "http://f...content-available-to-author-only...m.in/en/"
  [1]=>
  string(28) "http://f...content-available-to-author-only...m.in/products/"
  [2]=>
  string(37) "http://f...content-available-to-author-only...m.in/consumer_products/"
  [3]=>
  string(35) "http://f...content-available-to-author-only...m.in/digital_cameras/"
  [4]=>
  string(21) "http://f...content-available-to-author-only...m.in/x/"
  [5]=>
  string(33) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/"
  [6]=>
  string(31) "http://f...content-available-to-author-only...m.in/products/en/"
  [7]=>
  string(46) "http://f...content-available-to-author-only...m.in/products/consumer_products/"
  [8]=>
  string(44) "http://f...content-available-to-author-only...m.in/products/digital_cameras/"
  [9]=>
  string(30) "http://f...content-available-to-author-only...m.in/products/x/"
  [10]=>
  string(42) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/"
  [11]=>
  string(40) "http://f...content-available-to-author-only...m.in/consumer_products/en/"
  [12]=>
  string(46) "http://f...content-available-to-author-only...m.in/consumer_products/products/"
  [13]=>
  string(53) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/"
  [14]=>
  string(39) "http://f...content-available-to-author-only...m.in/consumer_products/x/"
  [15]=>
  string(51) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/"
  [16]=>
  string(38) "http://f...content-available-to-author-only...m.in/digital_cameras/en/"
  [17]=>
  string(44) "http://f...content-available-to-author-only...m.in/digital_cameras/products/"
  [18]=>
  string(53) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/"
  [19]=>
  string(37) "http://f...content-available-to-author-only...m.in/digital_cameras/x/"
  [20]=>
  string(49) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/"
  [21]=>
  string(24) "http://f...content-available-to-author-only...m.in/x/en/"
  [22]=>
  string(30) "http://f...content-available-to-author-only...m.in/x/products/"
  [23]=>
  string(39) "http://f...content-available-to-author-only...m.in/x/consumer_products/"
  [24]=>
  string(37) "http://f...content-available-to-author-only...m.in/x/digital_cameras/"
  [25]=>
  string(35) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/"
  [26]=>
  string(36) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/"
  [27]=>
  string(42) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/"
  [28]=>
  string(51) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/"
  [29]=>
  string(49) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/"
  [30]=>
  string(35) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/"
  [31]=>
  string(49) "http://f...content-available-to-author-only...m.in/products/en/consumer_products/"
  [32]=>
  string(47) "http://f...content-available-to-author-only...m.in/products/en/digital_cameras/"
  [33]=>
  string(33) "http://f...content-available-to-author-only...m.in/products/en/x/"
  [34]=>
  string(45) "http://f...content-available-to-author-only...m.in/products/en/fujifilm_x_t1/"
  [35]=>
  string(49) "http://f...content-available-to-author-only...m.in/products/consumer_products/en/"
  [36]=>
  string(62) "http://f...content-available-to-author-only...m.in/products/consumer_products/digital_cameras/"
  [37]=>
  string(48) "http://f...content-available-to-author-only...m.in/products/consumer_products/x/"
  [38]=>
  string(60) "http://f...content-available-to-author-only...m.in/products/consumer_products/fujifilm_x_t1/"
  [39]=>
  string(47) "http://f...content-available-to-author-only...m.in/products/digital_cameras/en/"
  [40]=>
  string(62) "http://f...content-available-to-author-only...m.in/products/digital_cameras/consumer_products/"
  [41]=>
  string(46) "http://f...content-available-to-author-only...m.in/products/digital_cameras/x/"
  [42]=>
  string(58) "http://f...content-available-to-author-only...m.in/products/digital_cameras/fujifilm_x_t1/"
  [43]=>
  string(33) "http://f...content-available-to-author-only...m.in/products/x/en/"
  [44]=>
  string(48) "http://f...content-available-to-author-only...m.in/products/x/consumer_products/"
  [45]=>
  string(46) "http://f...content-available-to-author-only...m.in/products/x/digital_cameras/"
  [46]=>
  string(44) "http://f...content-available-to-author-only...m.in/products/x/fujifilm_x_t1/"
  [47]=>
  string(45) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/en/"
  [48]=>
  string(60) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/consumer_products/"
  [49]=>
  string(58) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/digital_cameras/"
  [50]=>
  string(44) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/x/"
  [51]=>
  string(49) "http://f...content-available-to-author-only...m.in/consumer_products/en/products/"
  [52]=>
  string(56) "http://f...content-available-to-author-only...m.in/consumer_products/en/digital_cameras/"
  [53]=>
  string(42) "http://f...content-available-to-author-only...m.in/consumer_products/en/x/"
  [54]=>
  string(54) "http://f...content-available-to-author-only...m.in/consumer_products/en/fujifilm_x_t1/"
  [55]=>
  string(49) "http://f...content-available-to-author-only...m.in/consumer_products/products/en/"
  [56]=>
  string(62) "http://f...content-available-to-author-only...m.in/consumer_products/products/digital_cameras/"
  [57]=>
  string(48) "http://f...content-available-to-author-only...m.in/consumer_products/products/x/"
  [58]=>
  string(60) "http://f...content-available-to-author-only...m.in/consumer_products/products/fujifilm_x_t1/"
  [59]=>
  string(56) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/en/"
  [60]=>
  string(62) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/products/"
  [61]=>
  string(55) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/x/"
  [62]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/fujifilm_x_t1/"
  [63]=>
  string(42) "http://f...content-available-to-author-only...m.in/consumer_products/x/en/"
  [64]=>
  string(48) "http://f...content-available-to-author-only...m.in/consumer_products/x/products/"
  [65]=>
  string(55) "http://f...content-available-to-author-only...m.in/consumer_products/x/digital_cameras/"
  [66]=>
  string(53) "http://f...content-available-to-author-only...m.in/consumer_products/x/fujifilm_x_t1/"
  [67]=>
  string(54) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/en/"
  [68]=>
  string(60) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/products/"
  [69]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/digital_cameras/"
  [70]=>
  string(53) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/x/"
  [71]=>
  string(47) "http://f...content-available-to-author-only...m.in/digital_cameras/en/products/"
  [72]=>
  string(56) "http://f...content-available-to-author-only...m.in/digital_cameras/en/consumer_products/"
  [73]=>
  string(40) "http://f...content-available-to-author-only...m.in/digital_cameras/en/x/"
  [74]=>
  string(52) "http://f...content-available-to-author-only...m.in/digital_cameras/en/fujifilm_x_t1/"
  [75]=>
  string(47) "http://f...content-available-to-author-only...m.in/digital_cameras/products/en/"
  [76]=>
  string(62) "http://f...content-available-to-author-only...m.in/digital_cameras/products/consumer_products/"
  [77]=>
  string(46) "http://f...content-available-to-author-only...m.in/digital_cameras/products/x/"
  [78]=>
  string(58) "http://f...content-available-to-author-only...m.in/digital_cameras/products/fujifilm_x_t1/"
  [79]=>
  string(56) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/en/"
  [80]=>
  string(62) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/products/"
  [81]=>
  string(55) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/x/"
  [82]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/fujifilm_x_t1/"
  [83]=>
  string(40) "http://f...content-available-to-author-only...m.in/digital_cameras/x/en/"
  [84]=>
  string(46) "http://f...content-available-to-author-only...m.in/digital_cameras/x/products/"
  [85]=>
  string(55) "http://f...content-available-to-author-only...m.in/digital_cameras/x/consumer_products/"
  [86]=>
  string(51) "http://f...content-available-to-author-only...m.in/digital_cameras/x/fujifilm_x_t1/"
  [87]=>
  string(52) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/en/"
  [88]=>
  string(58) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/products/"
  [89]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/consumer_products/"
  [90]=>
  string(51) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/x/"
  [91]=>
  string(33) "http://f...content-available-to-author-only...m.in/x/en/products/"
  [92]=>
  string(42) "http://f...content-available-to-author-only...m.in/x/en/consumer_products/"
  [93]=>
  string(40) "http://f...content-available-to-author-only...m.in/x/en/digital_cameras/"
  [94]=>
  string(38) "http://f...content-available-to-author-only...m.in/x/en/fujifilm_x_t1/"
  [95]=>
  string(33) "http://f...content-available-to-author-only...m.in/x/products/en/"
  [96]=>
  string(48) "http://f...content-available-to-author-only...m.in/x/products/consumer_products/"
  [97]=>
  string(46) "http://f...content-available-to-author-only...m.in/x/products/digital_cameras/"
  [98]=>
  string(44) "http://f...content-available-to-author-only...m.in/x/products/fujifilm_x_t1/"
  [99]=>
  string(42) "http://f...content-available-to-author-only...m.in/x/consumer_products/en/"
  [100]=>
  string(48) "http://f...content-available-to-author-only...m.in/x/consumer_products/products/"
  [101]=>
  string(55) "http://f...content-available-to-author-only...m.in/x/consumer_products/digital_cameras/"
  [102]=>
  string(53) "http://f...content-available-to-author-only...m.in/x/consumer_products/fujifilm_x_t1/"
  [103]=>
  string(40) "http://f...content-available-to-author-only...m.in/x/digital_cameras/en/"
  [104]=>
  string(46) "http://f...content-available-to-author-only...m.in/x/digital_cameras/products/"
  [105]=>
  string(55) "http://f...content-available-to-author-only...m.in/x/digital_cameras/consumer_products/"
  [106]=>
  string(51) "http://f...content-available-to-author-only...m.in/x/digital_cameras/fujifilm_x_t1/"
  [107]=>
  string(38) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/en/"
  [108]=>
  string(44) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/products/"
  [109]=>
  string(53) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/consumer_products/"
  [110]=>
  string(51) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/digital_cameras/"
  [111]=>
  string(45) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/products/"
  [112]=>
  string(54) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/consumer_products/"
  [113]=>
  string(52) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/digital_cameras/"
  [114]=>
  string(38) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/x/"
  [115]=>
  string(45) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/en/"
  [116]=>
  string(60) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/consumer_products/"
  [117]=>
  string(58) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/digital_cameras/"
  [118]=>
  string(44) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/x/"
  [119]=>
  string(54) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/en/"
  [120]=>
  string(60) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/products/"
  [121]=>
  string(67) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/digital_cameras/"
  [122]=>
  string(53) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/x/"
  [123]=>
  string(52) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/en/"
  [124]=>
  string(58) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/products/"
  [125]=>
  string(67) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/consumer_products/"
  [126]=>
  string(51) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/x/"
  [127]=>
  string(38) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/en/"
  [128]=>
  string(44) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/products/"
  [129]=>
  string(53) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/consumer_products/"
  [130]=>
  string(51) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/digital_cameras/"
  [131]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/en/consumer_products/digital_cameras/"
  [132]=>
  string(51) "http://f...content-available-to-author-only...m.in/products/en/consumer_products/x/"
  [133]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/en/consumer_products/fujifilm_x_t1/"
  [134]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/en/digital_cameras/consumer_products/"
  [135]=>
  string(49) "http://f...content-available-to-author-only...m.in/products/en/digital_cameras/x/"
  [136]=>
  string(61) "http://f...content-available-to-author-only...m.in/products/en/digital_cameras/fujifilm_x_t1/"
  [137]=>
  string(51) "http://f...content-available-to-author-only...m.in/products/en/x/consumer_products/"
  [138]=>
  string(49) "http://f...content-available-to-author-only...m.in/products/en/x/digital_cameras/"
  [139]=>
  string(47) "http://f...content-available-to-author-only...m.in/products/en/x/fujifilm_x_t1/"
  [140]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/en/fujifilm_x_t1/consumer_products/"
  [141]=>
  string(61) "http://f...content-available-to-author-only...m.in/products/en/fujifilm_x_t1/digital_cameras/"
  [142]=>
  string(47) "http://f...content-available-to-author-only...m.in/products/en/fujifilm_x_t1/x/"
  [143]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/consumer_products/en/digital_cameras/"
  [144]=>
  string(51) "http://f...content-available-to-author-only...m.in/products/consumer_products/en/x/"
  [145]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/consumer_products/en/fujifilm_x_t1/"
  [146]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/consumer_products/digital_cameras/en/"
  [147]=>
  string(64) "http://f...content-available-to-author-only...m.in/products/consumer_products/digital_cameras/x/"
  [148]=>
  string(76) "http://f...content-available-to-author-only...m.in/products/consumer_products/digital_cameras/fujifilm_x_t1/"
  [149]=>
  string(51) "http://f...content-available-to-author-only...m.in/products/consumer_products/x/en/"
  [150]=>
  string(64) "http://f...content-available-to-author-only...m.in/products/consumer_products/x/digital_cameras/"
  [151]=>
  string(62) "http://f...content-available-to-author-only...m.in/products/consumer_products/x/fujifilm_x_t1/"
  [152]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/consumer_products/fujifilm_x_t1/en/"
  [153]=>
  string(76) "http://f...content-available-to-author-only...m.in/products/consumer_products/fujifilm_x_t1/digital_cameras/"
  [154]=>
  string(62) "http://f...content-available-to-author-only...m.in/products/consumer_products/fujifilm_x_t1/x/"
  [155]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/digital_cameras/en/consumer_products/"
  [156]=>
  string(49) "http://f...content-available-to-author-only...m.in/products/digital_cameras/en/x/"
  [157]=>
  string(61) "http://f...content-available-to-author-only...m.in/products/digital_cameras/en/fujifilm_x_t1/"
  [158]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/digital_cameras/consumer_products/en/"
  [159]=>
  string(64) "http://f...content-available-to-author-only...m.in/products/digital_cameras/consumer_products/x/"
  [160]=>
  string(76) "http://f...content-available-to-author-only...m.in/products/digital_cameras/consumer_products/fujifilm_x_t1/"
  [161]=>
  string(49) "http://f...content-available-to-author-only...m.in/products/digital_cameras/x/en/"
  [162]=>
  string(64) "http://f...content-available-to-author-only...m.in/products/digital_cameras/x/consumer_products/"
  [163]=>
  string(60) "http://f...content-available-to-author-only...m.in/products/digital_cameras/x/fujifilm_x_t1/"
  [164]=>
  string(61) "http://f...content-available-to-author-only...m.in/products/digital_cameras/fujifilm_x_t1/en/"
  [165]=>
  string(76) "http://f...content-available-to-author-only...m.in/products/digital_cameras/fujifilm_x_t1/consumer_products/"
  [166]=>
  string(60) "http://f...content-available-to-author-only...m.in/products/digital_cameras/fujifilm_x_t1/x/"
  [167]=>
  string(51) "http://f...content-available-to-author-only...m.in/products/x/en/consumer_products/"
  [168]=>
  string(49) "http://f...content-available-to-author-only...m.in/products/x/en/digital_cameras/"
  [169]=>
  string(47) "http://f...content-available-to-author-only...m.in/products/x/en/fujifilm_x_t1/"
  [170]=>
  string(51) "http://f...content-available-to-author-only...m.in/products/x/consumer_products/en/"
  [171]=>
  string(64) "http://f...content-available-to-author-only...m.in/products/x/consumer_products/digital_cameras/"
  [172]=>
  string(62) "http://f...content-available-to-author-only...m.in/products/x/consumer_products/fujifilm_x_t1/"
  [173]=>
  string(49) "http://f...content-available-to-author-only...m.in/products/x/digital_cameras/en/"
  [174]=>
  string(64) "http://f...content-available-to-author-only...m.in/products/x/digital_cameras/consumer_products/"
  [175]=>
  string(60) "http://f...content-available-to-author-only...m.in/products/x/digital_cameras/fujifilm_x_t1/"
  [176]=>
  string(47) "http://f...content-available-to-author-only...m.in/products/x/fujifilm_x_t1/en/"
  [177]=>
  string(62) "http://f...content-available-to-author-only...m.in/products/x/fujifilm_x_t1/consumer_products/"
  [178]=>
  string(60) "http://f...content-available-to-author-only...m.in/products/x/fujifilm_x_t1/digital_cameras/"
  [179]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/en/consumer_products/"
  [180]=>
  string(61) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/en/digital_cameras/"
  [181]=>
  string(47) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/en/x/"
  [182]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/consumer_products/en/"
  [183]=>
  string(76) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/consumer_products/digital_cameras/"
  [184]=>
  string(62) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/consumer_products/x/"
  [185]=>
  string(61) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/digital_cameras/en/"
  [186]=>
  string(76) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/digital_cameras/consumer_products/"
  [187]=>
  string(60) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/digital_cameras/x/"
  [188]=>
  string(47) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/x/en/"
  [189]=>
  string(62) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/x/consumer_products/"
  [190]=>
  string(60) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/x/digital_cameras/"
  [191]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/en/products/digital_cameras/"
  [192]=>
  string(51) "http://f...content-available-to-author-only...m.in/consumer_products/en/products/x/"
  [193]=>
  string(63) "http://f...content-available-to-author-only...m.in/consumer_products/en/products/fujifilm_x_t1/"
  [194]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/en/digital_cameras/products/"
  [195]=>
  string(58) "http://f...content-available-to-author-only...m.in/consumer_products/en/digital_cameras/x/"
  [196]=>
  string(70) "http://f...content-available-to-author-only...m.in/consumer_products/en/digital_cameras/fujifilm_x_t1/"
  [197]=>
  string(51) "http://f...content-available-to-author-only...m.in/consumer_products/en/x/products/"
  [198]=>
  string(58) "http://f...content-available-to-author-only...m.in/consumer_products/en/x/digital_cameras/"
  [199]=>
  string(56) "http://f...content-available-to-author-only...m.in/consumer_products/en/x/fujifilm_x_t1/"
  [200]=>
  string(63) "http://f...content-available-to-author-only...m.in/consumer_products/en/fujifilm_x_t1/products/"
  [201]=>
  string(70) "http://f...content-available-to-author-only...m.in/consumer_products/en/fujifilm_x_t1/digital_cameras/"
  [202]=>
  string(56) "http://f...content-available-to-author-only...m.in/consumer_products/en/fujifilm_x_t1/x/"
  [203]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/products/en/digital_cameras/"
  [204]=>
  string(51) "http://f...content-available-to-author-only...m.in/consumer_products/products/en/x/"
  [205]=>
  string(63) "http://f...content-available-to-author-only...m.in/consumer_products/products/en/fujifilm_x_t1/"
  [206]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/products/digital_cameras/en/"
  [207]=>
  string(64) "http://f...content-available-to-author-only...m.in/consumer_products/products/digital_cameras/x/"
  [208]=>
  string(76) "http://f...content-available-to-author-only...m.in/consumer_products/products/digital_cameras/fujifilm_x_t1/"
  [209]=>
  string(51) "http://f...content-available-to-author-only...m.in/consumer_products/products/x/en/"
  [210]=>
  string(64) "http://f...content-available-to-author-only...m.in/consumer_products/products/x/digital_cameras/"
  [211]=>
  string(62) "http://f...content-available-to-author-only...m.in/consumer_products/products/x/fujifilm_x_t1/"
  [212]=>
  string(63) "http://f...content-available-to-author-only...m.in/consumer_products/products/fujifilm_x_t1/en/"
  [213]=>
  string(76) "http://f...content-available-to-author-only...m.in/consumer_products/products/fujifilm_x_t1/digital_cameras/"
  [214]=>
  string(62) "http://f...content-available-to-author-only...m.in/consumer_products/products/fujifilm_x_t1/x/"
  [215]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/en/products/"
  [216]=>
  string(58) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/en/x/"
  [217]=>
  string(70) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/en/fujifilm_x_t1/"
  [218]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/products/en/"
  [219]=>
  string(64) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/products/x/"
  [220]=>
  string(76) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/products/fujifilm_x_t1/"
  [221]=>
  string(58) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/x/en/"
  [222]=>
  string(64) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/x/products/"
  [223]=>
  string(69) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/x/fujifilm_x_t1/"
  [224]=>
  string(70) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/fujifilm_x_t1/en/"
  [225]=>
  string(76) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/fujifilm_x_t1/products/"
  [226]=>
  string(69) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/fujifilm_x_t1/x/"
  [227]=>
  string(51) "http://f...content-available-to-author-only...m.in/consumer_products/x/en/products/"
  [228]=>
  string(58) "http://f...content-available-to-author-only...m.in/consumer_products/x/en/digital_cameras/"
  [229]=>
  string(56) "http://f...content-available-to-author-only...m.in/consumer_products/x/en/fujifilm_x_t1/"
  [230]=>
  string(51) "http://f...content-available-to-author-only...m.in/consumer_products/x/products/en/"
  [231]=>
  string(64) "http://f...content-available-to-author-only...m.in/consumer_products/x/products/digital_cameras/"
  [232]=>
  string(62) "http://f...content-available-to-author-only...m.in/consumer_products/x/products/fujifilm_x_t1/"
  [233]=>
  string(58) "http://f...content-available-to-author-only...m.in/consumer_products/x/digital_cameras/en/"
  [234]=>
  string(64) "http://f...content-available-to-author-only...m.in/consumer_products/x/digital_cameras/products/"
  [235]=>
  string(69) "http://f...content-available-to-author-only...m.in/consumer_products/x/digital_cameras/fujifilm_x_t1/"
  [236]=>
  string(56) "http://f...content-available-to-author-only...m.in/consumer_products/x/fujifilm_x_t1/en/"
  [237]=>
  string(62) "http://f...content-available-to-author-only...m.in/consumer_products/x/fujifilm_x_t1/products/"
  [238]=>
  string(69) "http://f...content-available-to-author-only...m.in/consumer_products/x/fujifilm_x_t1/digital_cameras/"
  [239]=>
  string(63) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/en/products/"
  [240]=>
  string(70) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/en/digital_cameras/"
  [241]=>
  string(56) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/en/x/"
  [242]=>
  string(63) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/products/en/"
  [243]=>
  string(76) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/products/digital_cameras/"
  [244]=>
  string(62) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/products/x/"
  [245]=>
  string(70) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/digital_cameras/en/"
  [246]=>
  string(76) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/digital_cameras/products/"
  [247]=>
  string(69) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/digital_cameras/x/"
  [248]=>
  string(56) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/x/en/"
  [249]=>
  string(62) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/x/products/"
  [250]=>
  string(69) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/x/digital_cameras/"
  [251]=>
  string(65) "http://f...content-available-to-author-only...m.in/digital_cameras/en/products/consumer_products/"
  [252]=>
  string(49) "http://f...content-available-to-author-only...m.in/digital_cameras/en/products/x/"
  [253]=>
  string(61) "http://f...content-available-to-author-only...m.in/digital_cameras/en/products/fujifilm_x_t1/"
  [254]=>
  string(65) "http://f...content-available-to-author-only...m.in/digital_cameras/en/consumer_products/products/"
  [255]=>
  string(58) "http://f...content-available-to-author-only...m.in/digital_cameras/en/consumer_products/x/"
  [256]=>
  string(70) "http://f...content-available-to-author-only...m.in/digital_cameras/en/consumer_products/fujifilm_x_t1/"
  [257]=>
  string(49) "http://f...content-available-to-author-only...m.in/digital_cameras/en/x/products/"
  [258]=>
  string(58) "http://f...content-available-to-author-only...m.in/digital_cameras/en/x/consumer_products/"
  [259]=>
  string(54) "http://f...content-available-to-author-only...m.in/digital_cameras/en/x/fujifilm_x_t1/"
  [260]=>
  string(61) "http://f...content-available-to-author-only...m.in/digital_cameras/en/fujifilm_x_t1/products/"
  [261]=>
  string(70) "http://f...content-available-to-author-only...m.in/digital_cameras/en/fujifilm_x_t1/consumer_products/"
  [262]=>
  string(54) "http://f...content-available-to-author-only...m.in/digital_cameras/en/fujifilm_x_t1/x/"
  [263]=>
  string(65) "http://f...content-available-to-author-only...m.in/digital_cameras/products/en/consumer_products/"
  [264]=>
  string(49) "http://f...content-available-to-author-only...m.in/digital_cameras/products/en/x/"
  [265]=>
  string(61) "http://f...content-available-to-author-only...m.in/digital_cameras/products/en/fujifilm_x_t1/"
  [266]=>
  string(65) "http://f...content-available-to-author-only...m.in/digital_cameras/products/consumer_products/en/"
  [267]=>
  string(64) "http://f...content-available-to-author-only...m.in/digital_cameras/products/consumer_products/x/"
  [268]=>
  string(76) "http://f...content-available-to-author-only...m.in/digital_cameras/products/consumer_products/fujifilm_x_t1/"
  [269]=>
  string(49) "http://f...content-available-to-author-only...m.in/digital_cameras/products/x/en/"
  [270]=>
  string(64) "http://f...content-available-to-author-only...m.in/digital_cameras/products/x/consumer_products/"
  [271]=>
  string(60) "http://f...content-available-to-author-only...m.in/digital_cameras/products/x/fujifilm_x_t1/"
  [272]=>
  string(61) "http://f...content-available-to-author-only...m.in/digital_cameras/products/fujifilm_x_t1/en/"
  [273]=>
  string(76) "http://f...content-available-to-author-only...m.in/digital_cameras/products/fujifilm_x_t1/consumer_products/"
  [274]=>
  string(60) "http://f...content-available-to-author-only...m.in/digital_cameras/products/fujifilm_x_t1/x/"
  [275]=>
  string(65) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/en/products/"
  [276]=>
  string(58) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/en/x/"
  [277]=>
  string(70) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/en/fujifilm_x_t1/"
  [278]=>
  string(65) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/products/en/"
  [279]=>
  string(64) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/products/x/"
  [280]=>
  string(76) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/products/fujifilm_x_t1/"
  [281]=>
  string(58) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/x/en/"
  [282]=>
  string(64) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/x/products/"
  [283]=>
  string(69) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/x/fujifilm_x_t1/"
  [284]=>
  string(70) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/fujifilm_x_t1/en/"
  [285]=>
  string(76) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/fujifilm_x_t1/products/"
  [286]=>
  string(69) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/fujifilm_x_t1/x/"
  [287]=>
  string(49) "http://f...content-available-to-author-only...m.in/digital_cameras/x/en/products/"
  [288]=>
  string(58) "http://f...content-available-to-author-only...m.in/digital_cameras/x/en/consumer_products/"
  [289]=>
  string(54) "http://f...content-available-to-author-only...m.in/digital_cameras/x/en/fujifilm_x_t1/"
  [290]=>
  string(49) "http://f...content-available-to-author-only...m.in/digital_cameras/x/products/en/"
  [291]=>
  string(64) "http://f...content-available-to-author-only...m.in/digital_cameras/x/products/consumer_products/"
  [292]=>
  string(60) "http://f...content-available-to-author-only...m.in/digital_cameras/x/products/fujifilm_x_t1/"
  [293]=>
  string(58) "http://f...content-available-to-author-only...m.in/digital_cameras/x/consumer_products/en/"
  [294]=>
  string(64) "http://f...content-available-to-author-only...m.in/digital_cameras/x/consumer_products/products/"
  [295]=>
  string(69) "http://f...content-available-to-author-only...m.in/digital_cameras/x/consumer_products/fujifilm_x_t1/"
  [296]=>
  string(54) "http://f...content-available-to-author-only...m.in/digital_cameras/x/fujifilm_x_t1/en/"
  [297]=>
  string(60) "http://f...content-available-to-author-only...m.in/digital_cameras/x/fujifilm_x_t1/products/"
  [298]=>
  string(69) "http://f...content-available-to-author-only...m.in/digital_cameras/x/fujifilm_x_t1/consumer_products/"
  [299]=>
  string(61) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/en/products/"
  [300]=>
  string(70) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/en/consumer_products/"
  [301]=>
  string(54) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/en/x/"
  [302]=>
  string(61) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/products/en/"
  [303]=>
  string(76) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/products/consumer_products/"
  [304]=>
  string(60) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/products/x/"
  [305]=>
  string(70) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/consumer_products/en/"
  [306]=>
  string(76) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/consumer_products/products/"
  [307]=>
  string(69) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/consumer_products/x/"
  [308]=>
  string(54) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/x/en/"
  [309]=>
  string(60) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/x/products/"
  [310]=>
  string(69) "http://f...content-available-to-author-only...m.in/digital_cameras/fujifilm_x_t1/x/consumer_products/"
  [311]=>
  string(51) "http://f...content-available-to-author-only...m.in/x/en/products/consumer_products/"
  [312]=>
  string(49) "http://f...content-available-to-author-only...m.in/x/en/products/digital_cameras/"
  [313]=>
  string(47) "http://f...content-available-to-author-only...m.in/x/en/products/fujifilm_x_t1/"
  [314]=>
  string(51) "http://f...content-available-to-author-only...m.in/x/en/consumer_products/products/"
  [315]=>
  string(58) "http://f...content-available-to-author-only...m.in/x/en/consumer_products/digital_cameras/"
  [316]=>
  string(56) "http://f...content-available-to-author-only...m.in/x/en/consumer_products/fujifilm_x_t1/"
  [317]=>
  string(49) "http://f...content-available-to-author-only...m.in/x/en/digital_cameras/products/"
  [318]=>
  string(58) "http://f...content-available-to-author-only...m.in/x/en/digital_cameras/consumer_products/"
  [319]=>
  string(54) "http://f...content-available-to-author-only...m.in/x/en/digital_cameras/fujifilm_x_t1/"
  [320]=>
  string(47) "http://f...content-available-to-author-only...m.in/x/en/fujifilm_x_t1/products/"
  [321]=>
  string(56) "http://f...content-available-to-author-only...m.in/x/en/fujifilm_x_t1/consumer_products/"
  [322]=>
  string(54) "http://f...content-available-to-author-only...m.in/x/en/fujifilm_x_t1/digital_cameras/"
  [323]=>
  string(51) "http://f...content-available-to-author-only...m.in/x/products/en/consumer_products/"
  [324]=>
  string(49) "http://f...content-available-to-author-only...m.in/x/products/en/digital_cameras/"
  [325]=>
  string(47) "http://f...content-available-to-author-only...m.in/x/products/en/fujifilm_x_t1/"
  [326]=>
  string(51) "http://f...content-available-to-author-only...m.in/x/products/consumer_products/en/"
  [327]=>
  string(64) "http://f...content-available-to-author-only...m.in/x/products/consumer_products/digital_cameras/"
  [328]=>
  string(62) "http://f...content-available-to-author-only...m.in/x/products/consumer_products/fujifilm_x_t1/"
  [329]=>
  string(49) "http://f...content-available-to-author-only...m.in/x/products/digital_cameras/en/"
  [330]=>
  string(64) "http://f...content-available-to-author-only...m.in/x/products/digital_cameras/consumer_products/"
  [331]=>
  string(60) "http://f...content-available-to-author-only...m.in/x/products/digital_cameras/fujifilm_x_t1/"
  [332]=>
  string(47) "http://f...content-available-to-author-only...m.in/x/products/fujifilm_x_t1/en/"
  [333]=>
  string(62) "http://f...content-available-to-author-only...m.in/x/products/fujifilm_x_t1/consumer_products/"
  [334]=>
  string(60) "http://f...content-available-to-author-only...m.in/x/products/fujifilm_x_t1/digital_cameras/"
  [335]=>
  string(51) "http://f...content-available-to-author-only...m.in/x/consumer_products/en/products/"
  [336]=>
  string(58) "http://f...content-available-to-author-only...m.in/x/consumer_products/en/digital_cameras/"
  [337]=>
  string(56) "http://f...content-available-to-author-only...m.in/x/consumer_products/en/fujifilm_x_t1/"
  [338]=>
  string(51) "http://f...content-available-to-author-only...m.in/x/consumer_products/products/en/"
  [339]=>
  string(64) "http://f...content-available-to-author-only...m.in/x/consumer_products/products/digital_cameras/"
  [340]=>
  string(62) "http://f...content-available-to-author-only...m.in/x/consumer_products/products/fujifilm_x_t1/"
  [341]=>
  string(58) "http://f...content-available-to-author-only...m.in/x/consumer_products/digital_cameras/en/"
  [342]=>
  string(64) "http://f...content-available-to-author-only...m.in/x/consumer_products/digital_cameras/products/"
  [343]=>
  string(69) "http://f...content-available-to-author-only...m.in/x/consumer_products/digital_cameras/fujifilm_x_t1/"
  [344]=>
  string(56) "http://f...content-available-to-author-only...m.in/x/consumer_products/fujifilm_x_t1/en/"
  [345]=>
  string(62) "http://f...content-available-to-author-only...m.in/x/consumer_products/fujifilm_x_t1/products/"
  [346]=>
  string(69) "http://f...content-available-to-author-only...m.in/x/consumer_products/fujifilm_x_t1/digital_cameras/"
  [347]=>
  string(49) "http://f...content-available-to-author-only...m.in/x/digital_cameras/en/products/"
  [348]=>
  string(58) "http://f...content-available-to-author-only...m.in/x/digital_cameras/en/consumer_products/"
  [349]=>
  string(54) "http://f...content-available-to-author-only...m.in/x/digital_cameras/en/fujifilm_x_t1/"
  [350]=>
  string(49) "http://f...content-available-to-author-only...m.in/x/digital_cameras/products/en/"
  [351]=>
  string(64) "http://f...content-available-to-author-only...m.in/x/digital_cameras/products/consumer_products/"
  [352]=>
  string(60) "http://f...content-available-to-author-only...m.in/x/digital_cameras/products/fujifilm_x_t1/"
  [353]=>
  string(58) "http://f...content-available-to-author-only...m.in/x/digital_cameras/consumer_products/en/"
  [354]=>
  string(64) "http://f...content-available-to-author-only...m.in/x/digital_cameras/consumer_products/products/"
  [355]=>
  string(69) "http://f...content-available-to-author-only...m.in/x/digital_cameras/consumer_products/fujifilm_x_t1/"
  [356]=>
  string(54) "http://f...content-available-to-author-only...m.in/x/digital_cameras/fujifilm_x_t1/en/"
  [357]=>
  string(60) "http://f...content-available-to-author-only...m.in/x/digital_cameras/fujifilm_x_t1/products/"
  [358]=>
  string(69) "http://f...content-available-to-author-only...m.in/x/digital_cameras/fujifilm_x_t1/consumer_products/"
  [359]=>
  string(47) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/en/products/"
  [360]=>
  string(56) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/en/consumer_products/"
  [361]=>
  string(54) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/en/digital_cameras/"
  [362]=>
  string(47) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/products/en/"
  [363]=>
  string(62) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/products/consumer_products/"
  [364]=>
  string(60) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/products/digital_cameras/"
  [365]=>
  string(56) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/consumer_products/en/"
  [366]=>
  string(62) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/consumer_products/products/"
  [367]=>
  string(69) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/consumer_products/digital_cameras/"
  [368]=>
  string(54) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/digital_cameras/en/"
  [369]=>
  string(60) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/digital_cameras/products/"
  [370]=>
  string(69) "http://f...content-available-to-author-only...m.in/x/fujifilm_x_t1/digital_cameras/consumer_products/"
  [371]=>
  string(63) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/products/consumer_products/"
  [372]=>
  string(61) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/products/digital_cameras/"
  [373]=>
  string(47) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/products/x/"
  [374]=>
  string(63) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/consumer_products/products/"
  [375]=>
  string(70) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/consumer_products/digital_cameras/"
  [376]=>
  string(56) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/consumer_products/x/"
  [377]=>
  string(61) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/digital_cameras/products/"
  [378]=>
  string(70) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/digital_cameras/consumer_products/"
  [379]=>
  string(54) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/digital_cameras/x/"
  [380]=>
  string(47) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/x/products/"
  [381]=>
  string(56) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/x/consumer_products/"
  [382]=>
  string(54) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/en/x/digital_cameras/"
  [383]=>
  string(63) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/en/consumer_products/"
  [384]=>
  string(61) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/en/digital_cameras/"
  [385]=>
  string(47) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/en/x/"
  [386]=>
  string(63) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/consumer_products/en/"
  [387]=>
  string(76) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/consumer_products/digital_cameras/"
  [388]=>
  string(62) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/consumer_products/x/"
  [389]=>
  string(61) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/digital_cameras/en/"
  [390]=>
  string(76) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/digital_cameras/consumer_products/"
  [391]=>
  string(60) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/digital_cameras/x/"
  [392]=>
  string(47) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/x/en/"
  [393]=>
  string(62) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/x/consumer_products/"
  [394]=>
  string(60) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/products/x/digital_cameras/"
  [395]=>
  string(63) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/en/products/"
  [396]=>
  string(70) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/en/digital_cameras/"
  [397]=>
  string(56) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/en/x/"
  [398]=>
  string(63) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/products/en/"
  [399]=>
  string(76) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/products/digital_cameras/"
  [400]=>
  string(62) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/products/x/"
  [401]=>
  string(70) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/digital_cameras/en/"
  [402]=>
  string(76) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/digital_cameras/products/"
  [403]=>
  string(69) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/digital_cameras/x/"
  [404]=>
  string(56) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/x/en/"
  [405]=>
  string(62) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/x/products/"
  [406]=>
  string(69) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/consumer_products/x/digital_cameras/"
  [407]=>
  string(61) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/en/products/"
  [408]=>
  string(70) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/en/consumer_products/"
  [409]=>
  string(54) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/en/x/"
  [410]=>
  string(61) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/products/en/"
  [411]=>
  string(76) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/products/consumer_products/"
  [412]=>
  string(60) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/products/x/"
  [413]=>
  string(70) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/consumer_products/en/"
  [414]=>
  string(76) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/consumer_products/products/"
  [415]=>
  string(69) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/consumer_products/x/"
  [416]=>
  string(54) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/x/en/"
  [417]=>
  string(60) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/x/products/"
  [418]=>
  string(69) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/digital_cameras/x/consumer_products/"
  [419]=>
  string(47) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/en/products/"
  [420]=>
  string(56) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/en/consumer_products/"
  [421]=>
  string(54) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/en/digital_cameras/"
  [422]=>
  string(47) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/products/en/"
  [423]=>
  string(62) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/products/consumer_products/"
  [424]=>
  string(60) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/products/digital_cameras/"
  [425]=>
  string(56) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/consumer_products/en/"
  [426]=>
  string(62) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/consumer_products/products/"
  [427]=>
  string(69) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/consumer_products/digital_cameras/"
  [428]=>
  string(54) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/digital_cameras/en/"
  [429]=>
  string(60) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/digital_cameras/products/"
  [430]=>
  string(69) "http://f...content-available-to-author-only...m.in/fujifilm_x_t1/x/digital_cameras/consumer_products/"
  [431]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/en/consumer_products/digital_cameras/x/"
  [432]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/en/consumer_products/digital_cameras/fujifilm_x_t1/"
  [433]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/en/consumer_products/x/digital_cameras/"
  [434]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/en/consumer_products/x/fujifilm_x_t1/"
  [435]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/en/consumer_products/fujifilm_x_t1/digital_cameras/"
  [436]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/en/consumer_products/fujifilm_x_t1/x/"
  [437]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/en/digital_cameras/consumer_products/x/"
  [438]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/en/digital_cameras/consumer_products/fujifilm_x_t1/"
  [439]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/en/digital_cameras/x/consumer_products/"
  [440]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/en/digital_cameras/x/fujifilm_x_t1/"
  [441]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/en/digital_cameras/fujifilm_x_t1/consumer_products/"
  [442]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/en/digital_cameras/fujifilm_x_t1/x/"
  [443]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/en/x/consumer_products/digital_cameras/"
  [444]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/en/x/consumer_products/fujifilm_x_t1/"
  [445]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/en/x/digital_cameras/consumer_products/"
  [446]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/en/x/digital_cameras/fujifilm_x_t1/"
  [447]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/en/x/fujifilm_x_t1/consumer_products/"
  [448]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/en/x/fujifilm_x_t1/digital_cameras/"
  [449]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/en/fujifilm_x_t1/consumer_products/digital_cameras/"
  [450]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/en/fujifilm_x_t1/consumer_products/x/"
  [451]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/en/fujifilm_x_t1/digital_cameras/consumer_products/"
  [452]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/en/fujifilm_x_t1/digital_cameras/x/"
  [453]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/en/fujifilm_x_t1/x/consumer_products/"
  [454]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/en/fujifilm_x_t1/x/digital_cameras/"
  [455]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/consumer_products/en/digital_cameras/x/"
  [456]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/consumer_products/en/digital_cameras/fujifilm_x_t1/"
  [457]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/consumer_products/en/x/digital_cameras/"
  [458]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/consumer_products/en/x/fujifilm_x_t1/"
  [459]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/consumer_products/en/fujifilm_x_t1/digital_cameras/"
  [460]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/consumer_products/en/fujifilm_x_t1/x/"
  [461]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/consumer_products/digital_cameras/en/x/"
  [462]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/consumer_products/digital_cameras/en/fujifilm_x_t1/"
  [463]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/consumer_products/digital_cameras/x/en/"
  [464]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/consumer_products/digital_cameras/x/fujifilm_x_t1/"
  [465]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/consumer_products/digital_cameras/fujifilm_x_t1/en/"
  [466]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/consumer_products/digital_cameras/fujifilm_x_t1/x/"
  [467]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/consumer_products/x/en/digital_cameras/"
  [468]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/consumer_products/x/en/fujifilm_x_t1/"
  [469]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/consumer_products/x/digital_cameras/en/"
  [470]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/consumer_products/x/digital_cameras/fujifilm_x_t1/"
  [471]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/consumer_products/x/fujifilm_x_t1/en/"
  [472]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/consumer_products/x/fujifilm_x_t1/digital_cameras/"
  [473]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/consumer_products/fujifilm_x_t1/en/digital_cameras/"
  [474]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/consumer_products/fujifilm_x_t1/en/x/"
  [475]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/consumer_products/fujifilm_x_t1/digital_cameras/en/"
  [476]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/consumer_products/fujifilm_x_t1/digital_cameras/x/"
  [477]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/consumer_products/fujifilm_x_t1/x/en/"
  [478]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/consumer_products/fujifilm_x_t1/x/digital_cameras/"
  [479]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/digital_cameras/en/consumer_products/x/"
  [480]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/digital_cameras/en/consumer_products/fujifilm_x_t1/"
  [481]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/digital_cameras/en/x/consumer_products/"
  [482]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/digital_cameras/en/x/fujifilm_x_t1/"
  [483]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/digital_cameras/en/fujifilm_x_t1/consumer_products/"
  [484]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/digital_cameras/en/fujifilm_x_t1/x/"
  [485]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/digital_cameras/consumer_products/en/x/"
  [486]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/digital_cameras/consumer_products/en/fujifilm_x_t1/"
  [487]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/digital_cameras/consumer_products/x/en/"
  [488]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/digital_cameras/consumer_products/x/fujifilm_x_t1/"
  [489]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/digital_cameras/consumer_products/fujifilm_x_t1/en/"
  [490]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/digital_cameras/consumer_products/fujifilm_x_t1/x/"
  [491]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/digital_cameras/x/en/consumer_products/"
  [492]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/digital_cameras/x/en/fujifilm_x_t1/"
  [493]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/digital_cameras/x/consumer_products/en/"
  [494]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/digital_cameras/x/consumer_products/fujifilm_x_t1/"
  [495]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/digital_cameras/x/fujifilm_x_t1/en/"
  [496]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/digital_cameras/x/fujifilm_x_t1/consumer_products/"
  [497]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/digital_cameras/fujifilm_x_t1/en/consumer_products/"
  [498]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/digital_cameras/fujifilm_x_t1/en/x/"
  [499]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/digital_cameras/fujifilm_x_t1/consumer_products/en/"
  [500]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/digital_cameras/fujifilm_x_t1/consumer_products/x/"
  [501]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/digital_cameras/fujifilm_x_t1/x/en/"
  [502]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/digital_cameras/fujifilm_x_t1/x/consumer_products/"
  [503]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/x/en/consumer_products/digital_cameras/"
  [504]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/x/en/consumer_products/fujifilm_x_t1/"
  [505]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/x/en/digital_cameras/consumer_products/"
  [506]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/x/en/digital_cameras/fujifilm_x_t1/"
  [507]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/x/en/fujifilm_x_t1/consumer_products/"
  [508]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/x/en/fujifilm_x_t1/digital_cameras/"
  [509]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/x/consumer_products/en/digital_cameras/"
  [510]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/x/consumer_products/en/fujifilm_x_t1/"
  [511]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/x/consumer_products/digital_cameras/en/"
  [512]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/x/consumer_products/digital_cameras/fujifilm_x_t1/"
  [513]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/x/consumer_products/fujifilm_x_t1/en/"
  [514]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/x/consumer_products/fujifilm_x_t1/digital_cameras/"
  [515]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/x/digital_cameras/en/consumer_products/"
  [516]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/x/digital_cameras/en/fujifilm_x_t1/"
  [517]=>
  string(67) "http://f...content-available-to-author-only...m.in/products/x/digital_cameras/consumer_products/en/"
  [518]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/x/digital_cameras/consumer_products/fujifilm_x_t1/"
  [519]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/x/digital_cameras/fujifilm_x_t1/en/"
  [520]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/x/digital_cameras/fujifilm_x_t1/consumer_products/"
  [521]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/x/fujifilm_x_t1/en/consumer_products/"
  [522]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/x/fujifilm_x_t1/en/digital_cameras/"
  [523]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/x/fujifilm_x_t1/consumer_products/en/"
  [524]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/x/fujifilm_x_t1/consumer_products/digital_cameras/"
  [525]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/x/fujifilm_x_t1/digital_cameras/en/"
  [526]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/x/fujifilm_x_t1/digital_cameras/consumer_products/"
  [527]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/en/consumer_products/digital_cameras/"
  [528]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/en/consumer_products/x/"
  [529]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/en/digital_cameras/consumer_products/"
  [530]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/en/digital_cameras/x/"
  [531]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/en/x/consumer_products/"
  [532]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/en/x/digital_cameras/"
  [533]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/consumer_products/en/digital_cameras/"
  [534]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/consumer_products/en/x/"
  [535]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/consumer_products/digital_cameras/en/"
  [536]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/consumer_products/digital_cameras/x/"
  [537]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/consumer_products/x/en/"
  [538]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/consumer_products/x/digital_cameras/"
  [539]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/digital_cameras/en/consumer_products/"
  [540]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/digital_cameras/en/x/"
  [541]=>
  string(79) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/digital_cameras/consumer_products/en/"
  [542]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/digital_cameras/consumer_products/x/"
  [543]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/digital_cameras/x/en/"
  [544]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/digital_cameras/x/consumer_products/"
  [545]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/x/en/consumer_products/"
  [546]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/x/en/digital_cameras/"
  [547]=>
  string(65) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/x/consumer_products/en/"
  [548]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/x/consumer_products/digital_cameras/"
  [549]=>
  string(63) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/x/digital_cameras/en/"
  [550]=>
  string(78) "http://f...content-available-to-author-only...m.in/products/fujifilm_x_t1/x/digital_cameras/consumer_products/"
  [551]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/en/products/digital_cameras/x/"
  [552]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/en/products/digital_cameras/fujifilm_x_t1/"
  [553]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/en/products/x/digital_cameras/"
  [554]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/en/products/x/fujifilm_x_t1/"
  [555]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/en/products/fujifilm_x_t1/digital_cameras/"
  [556]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/en/products/fujifilm_x_t1/x/"
  [557]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/en/digital_cameras/products/x/"
  [558]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/en/digital_cameras/products/fujifilm_x_t1/"
  [559]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/en/digital_cameras/x/products/"
  [560]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/en/digital_cameras/x/fujifilm_x_t1/"
  [561]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/en/digital_cameras/fujifilm_x_t1/products/"
  [562]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/en/digital_cameras/fujifilm_x_t1/x/"
  [563]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/en/x/products/digital_cameras/"
  [564]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/en/x/products/fujifilm_x_t1/"
  [565]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/en/x/digital_cameras/products/"
  [566]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/en/x/digital_cameras/fujifilm_x_t1/"
  [567]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/en/x/fujifilm_x_t1/products/"
  [568]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/en/x/fujifilm_x_t1/digital_cameras/"
  [569]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/en/fujifilm_x_t1/products/digital_cameras/"
  [570]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/en/fujifilm_x_t1/products/x/"
  [571]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/en/fujifilm_x_t1/digital_cameras/products/"
  [572]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/en/fujifilm_x_t1/digital_cameras/x/"
  [573]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/en/fujifilm_x_t1/x/products/"
  [574]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/en/fujifilm_x_t1/x/digital_cameras/"
  [575]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/products/en/digital_cameras/x/"
  [576]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/products/en/digital_cameras/fujifilm_x_t1/"
  [577]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/products/en/x/digital_cameras/"
  [578]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/products/en/x/fujifilm_x_t1/"
  [579]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/products/en/fujifilm_x_t1/digital_cameras/"
  [580]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/products/en/fujifilm_x_t1/x/"
  [581]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/products/digital_cameras/en/x/"
  [582]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/products/digital_cameras/en/fujifilm_x_t1/"
  [583]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/products/digital_cameras/x/en/"
  [584]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/products/digital_cameras/x/fujifilm_x_t1/"
  [585]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/products/digital_cameras/fujifilm_x_t1/en/"
  [586]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/products/digital_cameras/fujifilm_x_t1/x/"
  [587]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/products/x/en/digital_cameras/"
  [588]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/products/x/en/fujifilm_x_t1/"
  [589]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/products/x/digital_cameras/en/"
  [590]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/products/x/digital_cameras/fujifilm_x_t1/"
  [591]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/products/x/fujifilm_x_t1/en/"
  [592]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/products/x/fujifilm_x_t1/digital_cameras/"
  [593]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/products/fujifilm_x_t1/en/digital_cameras/"
  [594]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/products/fujifilm_x_t1/en/x/"
  [595]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/products/fujifilm_x_t1/digital_cameras/en/"
  [596]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/products/fujifilm_x_t1/digital_cameras/x/"
  [597]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/products/fujifilm_x_t1/x/en/"
  [598]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/products/fujifilm_x_t1/x/digital_cameras/"
  [599]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/en/products/x/"
  [600]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/en/products/fujifilm_x_t1/"
  [601]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/en/x/products/"
  [602]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/en/x/fujifilm_x_t1/"
  [603]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/en/fujifilm_x_t1/products/"
  [604]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/en/fujifilm_x_t1/x/"
  [605]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/products/en/x/"
  [606]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/products/en/fujifilm_x_t1/"
  [607]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/products/x/en/"
  [608]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/products/x/fujifilm_x_t1/"
  [609]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/products/fujifilm_x_t1/en/"
  [610]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/products/fujifilm_x_t1/x/"
  [611]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/x/en/products/"
  [612]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/x/en/fujifilm_x_t1/"
  [613]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/x/products/en/"
  [614]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/x/products/fujifilm_x_t1/"
  [615]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/x/fujifilm_x_t1/en/"
  [616]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/x/fujifilm_x_t1/products/"
  [617]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/fujifilm_x_t1/en/products/"
  [618]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/fujifilm_x_t1/en/x/"
  [619]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/fujifilm_x_t1/products/en/"
  [620]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/fujifilm_x_t1/products/x/"
  [621]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/fujifilm_x_t1/x/en/"
  [622]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/digital_cameras/fujifilm_x_t1/x/products/"
  [623]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/x/en/products/digital_cameras/"
  [624]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/x/en/products/fujifilm_x_t1/"
  [625]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/x/en/digital_cameras/products/"
  [626]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/x/en/digital_cameras/fujifilm_x_t1/"
  [627]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/x/en/fujifilm_x_t1/products/"
  [628]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/x/en/fujifilm_x_t1/digital_cameras/"
  [629]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/x/products/en/digital_cameras/"
  [630]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/x/products/en/fujifilm_x_t1/"
  [631]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/x/products/digital_cameras/en/"
  [632]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/x/products/digital_cameras/fujifilm_x_t1/"
  [633]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/x/products/fujifilm_x_t1/en/"
  [634]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/x/products/fujifilm_x_t1/digital_cameras/"
  [635]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/x/digital_cameras/en/products/"
  [636]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/x/digital_cameras/en/fujifilm_x_t1/"
  [637]=>
  string(67) "http://f...content-available-to-author-only...m.in/consumer_products/x/digital_cameras/products/en/"
  [638]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/x/digital_cameras/products/fujifilm_x_t1/"
  [639]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/x/digital_cameras/fujifilm_x_t1/en/"
  [640]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/x/digital_cameras/fujifilm_x_t1/products/"
  [641]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/x/fujifilm_x_t1/en/products/"
  [642]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/x/fujifilm_x_t1/en/digital_cameras/"
  [643]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/x/fujifilm_x_t1/products/en/"
  [644]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/x/fujifilm_x_t1/products/digital_cameras/"
  [645]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/x/fujifilm_x_t1/digital_cameras/en/"
  [646]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/x/fujifilm_x_t1/digital_cameras/products/"
  [647]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/en/products/digital_cameras/"
  [648]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/en/products/x/"
  [649]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/en/digital_cameras/products/"
  [650]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/en/digital_cameras/x/"
  [651]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/en/x/products/"
  [652]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/en/x/digital_cameras/"
  [653]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/products/en/digital_cameras/"
  [654]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/products/en/x/"
  [655]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/products/digital_cameras/en/"
  [656]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/products/digital_cameras/x/"
  [657]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/products/x/en/"
  [658]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/products/x/digital_cameras/"
  [659]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/digital_cameras/en/products/"
  [660]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/digital_cameras/en/x/"
  [661]=>
  string(79) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/digital_cameras/products/en/"
  [662]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/digital_cameras/products/x/"
  [663]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/digital_cameras/x/en/"
  [664]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/digital_cameras/x/products/"
  [665]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/x/en/products/"
  [666]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/x/en/digital_cameras/"
  [667]=>
  string(65) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/x/products/en/"
  [668]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/x/products/digital_cameras/"
  [669]=>
  string(72) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/x/digital_cameras/en/"
  [670]=>
  string(78) "http://f...content-available-to-author-only...m.in/consumer_products/fujifilm_x_t1/x/digital_cameras/products/"
  [671]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/en/products/consumer_products/x/"
  [672]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/en/products/consumer_products/fujifilm_x_t1/"
  [673]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/en/products/x/consumer_products/"
  [674]=>
  string(63) "http://f...content-available-to-author-only...m.in/digital_cameras/en/products/x/fujifilm_x_t1/"
  [675]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/en/products/fujifilm_x_t1/consumer_products/"
  [676]=>
  string(63) "http://f...content-available-to-author-only...m.in/digital_cameras/en/products/fujifilm_x_t1/x/"
  [677]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/en/consumer_products/products/x/"
  [678]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/en/consumer_products/products/fujifilm_x_t1/"
  [679]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/en/consumer_products/x/products/"
  [680]=>
  string(72) "http://f...content-available-to-author-only...m.in/digital_cameras/en/consumer_products/x/fujifilm_x_t1/"
  [681]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/en/consumer_products/fujifilm_x_t1/products/"
  [682]=>
  string(72) "http://f...content-available-to-author-only...m.in/digital_cameras/en/consumer_products/fujifilm_x_t1/x/"
  [683]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/en/x/products/consumer_products/"
  [684]=>
  string(63) "http://f...content-available-to-author-only...m.in/digital_cameras/en/x/products/fujifilm_x_t1/"
  [685]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/en/x/consumer_products/products/"
  [686]=>
  string(72) "http://f...content-available-to-author-only...m.in/digital_cameras/en/x/consumer_products/fujifilm_x_t1/"
  [687]=>
  string(63) "http://f...content-available-to-author-only...m.in/digital_cameras/en/x/fujifilm_x_t1/products/"
  [688]=>
  string(72) "http://f...content-available-to-author-only...m.in/digital_cameras/en/x/fujifilm_x_t1/consumer_products/"
  [689]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/en/fujifilm_x_t1/products/consumer_products/"
  [690]=>
  string(63) "http://f...content-available-to-author-only...m.in/digital_cameras/en/fujifilm_x_t1/products/x/"
  [691]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/en/fujifilm_x_t1/consumer_products/products/"
  [692]=>
  string(72) "http://f...content-available-to-author-only...m.in/digital_cameras/en/fujifilm_x_t1/consumer_products/x/"
  [693]=>
  string(63) "http://f...content-available-to-author-only...m.in/digital_cameras/en/fujifilm_x_t1/x/products/"
  [694]=>
  string(72) "http://f...content-available-to-author-only...m.in/digital_cameras/en/fujifilm_x_t1/x/consumer_products/"
  [695]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/products/en/consumer_products/x/"
  [696]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/products/en/consumer_products/fujifilm_x_t1/"
  [697]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/products/en/x/consumer_products/"
  [698]=>
  string(63) "http://f...content-available-to-author-only...m.in/digital_cameras/products/en/x/fujifilm_x_t1/"
  [699]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/products/en/fujifilm_x_t1/consumer_products/"
  [700]=>
  string(63) "http://f...content-available-to-author-only...m.in/digital_cameras/products/en/fujifilm_x_t1/x/"
  [701]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/products/consumer_products/en/x/"
  [702]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/products/consumer_products/en/fujifilm_x_t1/"
  [703]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/products/consumer_products/x/en/"
  [704]=>
  string(78) "http://f...content-available-to-author-only...m.in/digital_cameras/products/consumer_products/x/fujifilm_x_t1/"
  [705]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/products/consumer_products/fujifilm_x_t1/en/"
  [706]=>
  string(78) "http://f...content-available-to-author-only...m.in/digital_cameras/products/consumer_products/fujifilm_x_t1/x/"
  [707]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/products/x/en/consumer_products/"
  [708]=>
  string(63) "http://f...content-available-to-author-only...m.in/digital_cameras/products/x/en/fujifilm_x_t1/"
  [709]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/products/x/consumer_products/en/"
  [710]=>
  string(78) "http://f...content-available-to-author-only...m.in/digital_cameras/products/x/consumer_products/fujifilm_x_t1/"
  [711]=>
  string(63) "http://f...content-available-to-author-only...m.in/digital_cameras/products/x/fujifilm_x_t1/en/"
  [712]=>
  string(78) "http://f...content-available-to-author-only...m.in/digital_cameras/products/x/fujifilm_x_t1/consumer_products/"
  [713]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/products/fujifilm_x_t1/en/consumer_products/"
  [714]=>
  string(63) "http://f...content-available-to-author-only...m.in/digital_cameras/products/fujifilm_x_t1/en/x/"
  [715]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/products/fujifilm_x_t1/consumer_products/en/"
  [716]=>
  string(78) "http://f...content-available-to-author-only...m.in/digital_cameras/products/fujifilm_x_t1/consumer_products/x/"
  [717]=>
  string(63) "http://f...content-available-to-author-only...m.in/digital_cameras/products/fujifilm_x_t1/x/en/"
  [718]=>
  string(78) "http://f...content-available-to-author-only...m.in/digital_cameras/products/fujifilm_x_t1/x/consumer_products/"
  [719]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/en/products/x/"
  [720]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/en/products/fujifilm_x_t1/"
  [721]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/en/x/products/"
  [722]=>
  string(72) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/en/x/fujifilm_x_t1/"
  [723]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/en/fujifilm_x_t1/products/"
  [724]=>
  string(72) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/en/fujifilm_x_t1/x/"
  [725]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/products/en/x/"
  [726]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/products/en/fujifilm_x_t1/"
  [727]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/products/x/en/"
  [728]=>
  string(78) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/products/x/fujifilm_x_t1/"
  [729]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/products/fujifilm_x_t1/en/"
  [730]=>
  string(78) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/products/fujifilm_x_t1/x/"
  [731]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/x/en/products/"
  [732]=>
  string(72) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/x/en/fujifilm_x_t1/"
  [733]=>
  string(67) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/x/products/en/"
  [734]=>
  string(78) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/x/products/fujifilm_x_t1/"
  [735]=>
  string(72) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/x/fujifilm_x_t1/en/"
  [736]=>
  string(78) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_products/x/fujifilm_x_t1/products/"
  [737]=>
  string(79) "http://f...content-available-to-author-only...m.in/digital_cameras/consumer_pr