/*! geo redirect (edge) */
(function(){
  var EXCLUDED = ['/not-found','/not-found/'];
  var p = (location.pathname.replace(/\/+$/,'')||'/');
  var isExcluded = EXCLUDED.indexOf(p) !== -1 || /[?&]edit(=|&|$)/.test(location.search);
  if (isExcluded) { try{ sessionStorage.setItem('geo_cty','US'); }catch(e){}; return; }

  try { sessionStorage.setItem('geo_cty','US'); } catch(e) {}

  if ('US' === 'SG') {
    location.replace('/not-found');
  }
})();