/**/

var sync_4815162342 = function()
{
this.urls = [
"https://pixel.mathtag.com/misc/img?mt_id=442390&mt_adid=109363&mop_seq=0:11&mt_cb=462677&mop_top=",
"https://cm.g.doubleclick.net/pixel?google_nid=mediamath&google_cm&google_hm=LeZUhNRaSgCTx4a5X_oF9Q",
"https://pixel.mathtag.com/misc/img?mt_id=442390&mt_adid=109363&mop_seq=1:11&mt_cb=426033&mop_top=4:1416781681|",
"https://www.facebook.com/fr/u.php?p=418865601488577&m=2de65484-d45a-4a00-93c7-86b95ffa05f5",
"https://pixel.mathtag.com/misc/img?mt_id=442390&mt_adid=109363&mop_seq=2:11&mt_cb=173626&mop_top=4:1416781681|23:1416781681|",
"https://pixel.rubiconproject.com/tap.php?v=4222&nid=1512&put=2de65484-d45a-4a00-93c7-86b95ffa05f5&expires=28",
"https://us-u.openx.net/w/1.0/sd?id=536872786&val=2de65484-d45a-4a00-93c7-86b95ffa05f5",
"https://simage2.pubmatic.com/AdServer/Pug?vcode=bz0yJnR5cGU9MSZjb2RlPTM2MiZ0bD00MzIwMA==&piggybackCookie=uid:2de65484-d45a-4a00-93c7-86b95ffa05f5",
"https://r.casalemedia.com/rum?cm_dsp_id=3&external_user_id=2de65484-d45a-4a00-93c7-86b95ffa05f5",
"https://stags.bluekai.com/site/2948?id=2de65484-d45a-4a00-93c7-86b95ffa05f5",
"https://stags.bluekai.com/site/4448?id=2de65484-d45a-4a00-93c7-86b95ffa05f5",
"https://loadm.exelator.com/load/?p=204&g=101&buid=2de65484-d45a-4a00-93c7-86b95ffa05f5&j=0",
"https://ad.360yield.com/match?publisher_dsp_id=5&external_user_id=2de65484-d45a-4a00-93c7-86b95ffa05f5",
"https://pixel.mathtag.com/misc/img?mt_id=442390&mt_adid=109363&mop_seq=10:11&mt_cb=493087&mop_top=4:1416781681|23:1416781681|9:1416781681|5:1416781681|3:1416781681|15:1416781681|10002:1416781681|10010:1416781681|10008:1416781681|16:1416781681|",
"https://analytics.twitter.com/i/adsct?p_user_id=2de65484-d45a-4a00-93c7-86b95ffa05f5&p_id=13524",
"https://pixel.mathtag.com/misc/img?mt_id=442390&mt_adid=109363&mop_seq=11:11&mt_cb=570920&check=2de65484-d45a-4a00-93c7-86b95ffa05f5&mop_top=4:1416781681|23:1416781681|9:1416781681|5:1416781681|3:1416781681|15:1416781681|10002:1416781681|10010:1416781681|10008:1416781681|16:1416781681|43:1416781681|",
]

   this.progress = 0;

   var self = this;

   this.sync = function(url)
   {
      var e = new Image();
      e.src = url;
   }

   this.batch = function()
   {
      for (var i = self.progress; i < self.urls.length; ++i)
      {
          self.sync(self.urls[i]);
      }
   }

   this.final = function()
   {
      self.sync(self.urls[self.urls.length-1]+"&final");
   }

   this.some = function(howmany)
   {
      var count = 0;
      for (var i = self.progress; i < self.urls.length && count < howmany; ++i)
      {
         self.sync(self.urls[self.progress++]);
         count++;
      }
   }
}


var s_4815162342 = new sync_4815162342();
s_4815162342.some(1);
setTimeout('s_4815162342.some(2)', 1000);
setTimeout(s_4815162342.batch, 3000);
setTimeout(s_4815162342.final, 10000);

