Notifications
General
Advertisement

Membuat Widget Auto Deteksi Perangkat Di Blogger

Hello sobat Bloggermuda kali ini admin akan menjelaskan mrngenai cara membuat widget untuk mendeteksi perangkat dan jaringan di blogger secara otomatis

Device & Network Detection

Apa Device & Network Detection? Kita bisa analogikan sebuah alat ajaib yang berfungsi seperti seorang pemandu rahasia di balik layar digital Blogger Anda. Alat ini secara otomatis memindai setiap pengunjung begitu mereka melangkah ke halaman Anda, lalu menyesuaikan tampilan dan kecepatan koneksi mereka seolah-olah menyesuaikan pakaian sesuai cuaca hari itu tidak terlihat, tapi sangat terasa manfaatnya.

Namun, yang membuatnya unik adalah kesadarannya yang tidak seperti alat lain, ia tidak sekadar mendeteksi perangkat dan jaringan, tetapi juga belajar dari pola kunjungan sebelumnya. Ia percaya diri seperti seorang juru masak yang tahu resep rahasia: memberi pengalaman yang berbeda untuk pengunjung desktop yang ingin tampilan penuh, dan menyulap halaman menjadi lebih ringan dan cepat untuk pengguna koneksi lambat.

Di blogger alat ini bisa diintegrasikan melalui skrip kustom yang otomatis mengenali perangkat dan jaringan, lalu secara langsung menyesuaikan layout, ukuran gambar, atau bahkan mengurangi jumlah elemen yang dimuat. Bayangkan, setiap pengunjung mendapatkan pengalaman yang di shuffle secara otomatis sesuai kebutuhannya, seolah-olah Blogger itu menyapa mereka dengan bahasa pribadi mereka sendiri. Inilah kecanggihan pendeteksi perangkat dan jaringan otomatis yang bukan hanya teknologi, tapi juga seni merangkai pengalaman digital yang selalu relevan dan personal.

Contoh Tampilan

Berikut Ini contoh tampilan dari Widget pendeteksi perangkat dan jaringan secara otomatis di blogger, silahkan periksa menggunakan tombol di bawah ini

Cara pembuatan

  1. Login ke blogger menggunakan akun google milikmu
  2. Selanjutnya silahkan pergi ke menu Halaman
  3. Kemudian kamu bisa buat halaman baru dan berikan judul sesuai keinginan kamu
  4. Selanjutnya salin seluruh kode untuk membuat widget pendeteksi perangkat dan jaringan secara otomatis di bawah ini, dan tempelkan di dalam halaman tersebut
  5. <!-- Device & Network Detector by RAH with Notifications -->
    <div class="rah-device-detector">
      <!-- Notification Component -->
      <div id="rah-notification" class="rah-notification">
        <div class="rah-notification-icon">⟳</div>
        <div class="rah-notification-text">Detecting device and network information...</div>
      </div>
      
      <div class="rah-card">
        <div class="rah-header">
          <h2>Device & Network Info</h2>
          <button class="rah-refresh-btn" onclick="rahRefreshData()">
            <span class="rah-icon">↻</span>
          </button>
        </div>
        <div class="rah-content">
          <div class="rah-section">
            <h3>Device Information</h3>
            <div class="rah-info-grid">
              <div class="rah-info-item">
                <span class="rah-label">Browser:</span>
                <span class="rah-value" id="rah-browser">Detecting...</span>
              </div>
              <div class="rah-info-item">
                <span class="rah-label">OS:</span>
                <span class="rah-value" id="rah-os">Detecting...</span>
              </div>
              <div class="rah-info-item">
                <span class="rah-label">Device Type:</span>
                <span class="rah-value" id="rah-device">Detecting...</span>
              </div>
              <div class="rah-info-item">
                <span class="rah-label">Screen:</span>
                <span class="rah-value" id="rah-screen">Detecting...</span>
              </div>
              <div class="rah-info-item">
                <span class="rah-label">Window Size:</span>
                <span class="rah-value" id="rah-window">Detecting...</span>
              </div>
              <div class="rah-info-item">
                <span class="rah-label">Language:</span>
                <span class="rah-value" id="rah-language">Detecting...</span>
              </div>
            </div>
          </div>
          
          <div class="rah-section">
            <h3>Network Information</h3>
            <div class="rah-info-grid">
              <div class="rah-info-item">
                <span class="rah-label">IP Address:</span>
                <span class="rah-value" id="rah-ip">Detecting...</span>
              </div>
              <div class="rah-info-item">
                <span class="rah-label">Location:</span>
                <span class="rah-value" id="rah-location">Detecting...</span>
              </div>
              <div class="rah-info-item">
                <span class="rah-label">ISP:</span>
                <span class="rah-value" id="rah-isp">Detecting...</span>
              </div>
              <div class="rah-info-item">
                <span class="rah-label">Connection:</span>
                <span class="rah-value" id="rah-connection">Detecting...</span>
              </div>
              <div class="rah-info-item">
                <span class="rah-label">Downlink:</span>
                <span class="rah-value" id="rah-downlink">Detecting...</span>
              </div>
              <div class="rah-info-item">
                <span class="rah-label">Online Status:</span>
                <span class="rah-value" id="rah-online">Detecting...</span>
              </div>
            </div>
          </div>
          
          <div class="rah-section">
            <h3>Performance</h3>
            <div class="rah-card-grid">
              <div class="rah-performance-card">
                <div class="rah-perf-circle" id="rah-memory-circle">
                  <div class="rah-perf-percent">...</div>
                </div>
                <div class="rah-perf-title">Memory</div>
                <div class="rah-perf-value" id="rah-memory-used">Detecting...</div>
              </div>
              <div class="rah-performance-card">
                <div class="rah-perf-circle" id="rah-battery-circle">
                  <div class="rah-perf-percent" id="rah-battery-percent">...</div>
                </div>
                <div class="rah-perf-title">Battery</div>
                <div class="rah-perf-value" id="rah-battery-status">Detecting...</div>
              </div>
            </div>
          </div>
        </div>
        <div class="rah-footer">
          <span>Last Updated: <span id="rah-timestamp">-</span></span>
        </div>
      </div>
    </div>
    <center class='rahKalkuLink'></center>
    
    <style>
    .rah-device-detector {
      font-family: 'Segoe UI', Roboto, -apple-system, sans-serif;
      max-width: 100%;
      margin: 20px auto;
      color: #333;
      position: relative;
    }
    .rah-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.12);
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .rah-header {
      background: #f8f9fa;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #eaeaea;
    }
    .rah-header h2 {
      margin: 0;
      font-size: 1.25rem;
      font-weight: 600;
    }
    .rah-refresh-btn {
      background: #000;
      color: white;
      border: none;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .rah-refresh-btn:hover {
      transform: rotate(30deg);
      background: #333;
    }
    .rah-icon {
      font-size: 18px;
    }
    .rah-content {
      padding: 20px;
    }
    .rah-section {
      margin-bottom: 25px;
    }
    .rah-section:last-child {
      margin-bottom: 0;
    }
    .rah-section h3 {
      font-size: 1.1rem;
      margin: 0 0 15px 0;
      padding-bottom: 8px;
      border-bottom: 1px solid #eee;
      color: #000;
    }
    .rah-info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 15px;
    }
    .rah-info-item {
      display: flex;
      flex-direction: column;
      padding: 10px;
      background: #f8f9fa;
      border-radius: 8px;
    }
    .rah-label {
      font-size: 0.85rem;
      color: #666;
      margin-bottom: 5px;
    }
    .rah-value {
      font-weight: 500;
      word-break: break-word;
    }
    .rah-card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 20px;
    }
    .rah-performance-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 15px;
      background: #f8f9fa;
      border-radius: 8px;
      text-align: center;
    }
    .rah-perf-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 8px solid #eee;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }
    .rah-perf-circle::before {
      content: '';
      position: absolute;
      top: -8px;
      left: -8px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 8px solid transparent;
      border-top-color: #000;
      transform: rotate(-45deg);
    }
    .rah-perf-percent {
      font-size: 1rem;
      font-weight: bold;
    }
    .rah-perf-title {
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 5px;
    }
    .rah-perf-value {
      font-weight: 600;
    }
    .rah-footer {
      padding: 12px 20px;
      background: #f8f9fa;
      border-top: 1px solid #eaeaea;
      font-size: 0.85rem;
      color: #666;
      text-align: right;
    }
    
    /* Notification Styles */
    .rah-notification {
      position: fixed;
      top: 20px;
      right: 20px;
      background: rgba(0, 0, 0, 0.8);
      color: white;
      padding: 12px 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      opacity: 0;
      transform: translateY(-20px);
      transition: all 0.3s ease;
      pointer-events: none;
    }
    .rah-notification.rah-show {
      opacity: 1;
      transform: translateY(0);
    }
    .rah-notification-icon {
      font-size: 18px;
      margin-right: 10px;
      animation: rah-spin 1.5s linear infinite;
    }
    .rah-notification-text {
      font-size: 14px;
    }
    @keyframes rah-spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    @media (max-width: 768px) {
      .rah-info-grid {
        grid-template-columns: 1fr;
      }
      .rah-card-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .rah-notification {
        left: 20px;
        right: 20px;
        text-align: center;
        justify-content: center;
      }
    }
    @media (max-width: 480px) {
      .rah-card-grid {
        grid-template-columns: 1fr;
      }
    }
    </style>
    
    <script>
    const _0xe0c562=_0x3bcd;function _0x3bcd(_0x1890b0,_0x9d26a0){const _0x540041=_0x540d();return _0x3bcd=function(_0x3c70d7,_0x178f5f){_0x3c70d7=_0x3c70d7-(-0x18a4*-0x1+-0x1b11+0x3bd);let _0xf94788=_0x540041[_0x3c70d7];return _0xf94788;},_0x3bcd(_0x1890b0,_0x9d26a0);}function _0x540d(){const _0x30b3ba=['VOwqv','classList','setPropert','Gpqwe','DdTJC','UIOLw','QVnmz','Failed\x20to\x20','EotBN','rah-perf-p','kdpBb','Safari','OYpBD','XCsmy','WsFCQ','NZgar','All\x20inform','y-percent','ZMuhl','Mac','eSdma','ready','ble','ication-te','cation','https://Bl','push','zOAOJ','JssgF','rah-batter','DGkQi','location','width','eOqEy','href','PvsGP','MqKya','Created\x20by','.rah-refre','forEach','pBgSV','OPR','fYGkp','-circle','rah-browse','rah-locati','#rah-memor','NKTWB','vHJkm','--percent','trWZe','ype','-used','xplorer','NQLda','iWWbh','tor','ange','WWkRJ','y-circle\x20.','Size','ormation..','#f44336','DNdWB','Samsung\x20Br','WDlbF','color','tCsUW','hIdxt','Detecting.','rah-timest','LzGWU','Trident','306980awxUoY','\x200deg\x20','.rahKalkuL','sqVbS','tlOkC','rah-langua','FeroG','sh-btn','Mobile','resolve','eSfgt','ouaIP','nCtlN','AeHLY','#ff9800','downlink','EgTYM','gBHCo','.rah-value','UbSUf','MuPvP','</a>','OsEfg','country_na','remove','Win','QTbLC','json','EHDpT','SamsungBro','uoYUU','userAgent','NoOtV','innerWidth','deg,\x20#eee\x20','EtliJ','jSPkh','xubSP','NcSFE','Edge','Tablet','HzXqV','29037nPRDiS','fnIdv','byZbO','effectiveT','etwork\x20inf','gGWAc','zKVQF','ation\x20has\x20','kFZXy','DboWU','KhkBn','DqjZS','join','split','XbsST','BsaSF','YrTOq','fFvSJ','Edg','like\x20Mac','oUvyM','IyVLO','OBpdk','1784145aQdsPi','chargingch','gALcr','gXIjK','XDqoG','https://ip','AWBgX','ccIsZ','Filxw','addEventLi','rah-memory','\x20data...','NhkKD','y-status','ASihH','ink:visibl','Fetching\x20n','owser','add','\x20Mbps','nCXNu','battery','Data\x20refre','Dischargin','YKpiC','hPwwt','LNBgM','ink','Detecting\x20','torAll','Android','iVRuK','change','LMyeG','match','RurMB','ient(','EfSdJ','Refreshing','bCRAk','.rah-perf-','numeric','kZHrX','LYpRM','background','Opera','WTejr','4|0|1|3|2','amp','region','FJobQ','been\x20loade','api.co/jso','device\x20and','Chrome','ttkkc','YkOjN','Lkywv','djRND','short','NBcDE','Offline','fetch','percent','wser','80ogecCP','com','ACkAO','niVkf','gohMm','Data','attr','load','EWYKe','shed\x20succe','CMxpY','ById','deg)','level','rah-window','ring','3279850BJHnWJ','YgBfM','MDMDk','cEGOX','wAYbG','7062tLMCmg','org','rah-device','RwJcd','usedJSHeap','fzAuO','UmGvW','charging','rah-ip','round','onLine','nformation','#4caf50','scOvh','rah-notifi','DaOih','toyJA','2-digit','stener','OtyHK','rah-os','BGBKt','EFjcj','rahRefresh','YbfMU','KkDDd','Firefox','tion','lhSse','abuEe','FTgiO','GzsRK','html','AEawq','resize','catch','Nuvpp','\x20<a\x20href=\x22','veILE','jsHeapSize','ABTXh','Desktop','kAMAz','transform','MSzde','rBOgD','test','connection','ercent','online','MpUMd','MacOS','rSMMk','rah-screen','aODrf','Limit','getElement','ZfNfc','OKjgg','jLrUp','y-circle','Charging','LeiLI','language','WimiX','Linux','NvpFK','IzPMa','tVbDn','then','48CWCOMh','bvYLi','oggermuda.','BRYyq','...','qawTZ','TwDbx','BHPdF','JevQW','getBattery','VttBH','dsihB','onktg','toLocaleSt','Internet\x20E','RfPWy','\x20MB\x20/\x20','RJnsK','Online','N/A','Not\x20Availa','ssfully','eomzK','kZhzo','2387sqCPFp','IiLdM','min','rah-online','rah-connec','\x20MB','rObzl','LzYpL','95913FqStuP','ImdFE','deg\x20360deg','querySelec','height','GwyeZ','oQJsK','city','memory','.rah-notif','ermuda.com','com\x22>Blogg','WQNFq','levelchang','conic-grad','72897jKRRkn','FeBFF','sNjPD','\x20network\x20i','EFfXb','mKMjP','hjYkW','YafGm','iOS','BrGdi','textConten','BIlwL','vEUfM','rotate(360','jDaNO','akkvK','rah-downli','length','rah-isp','tTZsq','style','innerHeigh','ZsQmj','offline','rah-show','QcKqy','Unknown','indexOf','Windows','rotate(0de','Pusjr','mEsWC','KMlzL'];_0x540d=function(){return _0x30b3ba;};return _0x540d();}(function(_0x542548,_0x2d888f){const _0x119fad=_0x3bcd,_0x140ee8=_0x542548();while(!![]){try{const _0x399516=parseInt(_0x119fad(0x23c))/(0x1*0x9c7+-0x9*-0x233+-0x1d91)+parseInt(_0x119fad(0x212))/(-0x613+0xbd9+-0x3*0x1ec)+-parseInt(_0x119fad(0x1a8))/(0x8f*-0xd+-0x4d5+0xc1b)*(parseInt(_0x119fad(0x179))/(-0x21b1+-0x42*0x89+0x4507))+parseInt(_0x119fad(0x253))/(-0x1*-0x154f+0x7*0x2c4+-0x2*0x1453)+parseInt(_0x119fad(0x2a9))/(-0x187+0x21e5+-0x2058)*(parseInt(_0x119fad(0x191))/(-0x1*0xe2a+0x836*-0x4+-0x2f09*-0x1))+-parseInt(_0x119fad(0x294))/(-0x1*-0x267b+-0x1b25+0x5a7*-0x2)*(parseInt(_0x119fad(0x199))/(0x223*-0xb+-0x1b0b+-0x1*-0x3295))+-parseInt(_0x119fad(0x2a4))/(-0x2*0xfaa+-0x1*-0xa65+0x14f9);if(_0x399516===_0x2d888f)break;else _0x140ee8['push'](_0x140ee8['shift']());}catch(_0x2cf924){_0x140ee8['push'](_0x140ee8['shift']());}}}(_0x540d,0x6a72+0x1d2*0x89+0x1*0x1e256),(function(){const _0x327eb9=_0x3bcd,_0x39e96b={'MDMDk':function(_0x1aaae1){return _0x1aaae1();},'gXIjK':function(_0x14f36f,_0x2548d1){return _0x14f36f(_0x2548d1);},'toyJA':_0x327eb9(0x26f)+_0x327eb9(0x288)+_0x327eb9(0x1ab)+_0x327eb9(0x2b4)+_0x327eb9(0x17d),'fYGkp':function(_0x3e593d,_0x1f3621,_0xd91b32){return _0x3e593d(_0x1f3621,_0xd91b32);},'XDqoG':_0x327eb9(0x2b7)+_0x327eb9(0x1e1),'eSfgt':_0x327eb9(0x1a2)+_0x327eb9(0x1e0)+'xt','AEawq':_0x327eb9(0x1c0),'kFZXy':function(_0x352d75,_0x25070d){return _0x352d75>_0x25070d;},'JevQW':function(_0x2b36af,_0x50c03d,_0x3d41e2){return _0x2b36af(_0x50c03d,_0x3d41e2);},'djRND':function(_0x112e56){return _0x112e56();},'kZHrX':function(_0x9ffa26){return _0x9ffa26();},'onktg':function(_0x59123d,_0x510e53,_0x14135c){return _0x59123d(_0x510e53,_0x14135c);},'vEUfM':function(_0x19cd69){return _0x19cd69();},'tVbDn':_0x327eb9(0x1d9)+_0x327eb9(0x243)+_0x327eb9(0x286)+'d','UmGvW':_0x327eb9(0x2a2),'cEGOX':function(_0x554bf1,_0x194eb5){return _0x554bf1+_0x194eb5;},'BIlwL':function(_0x16efa1){return _0x16efa1();},'LzYpL':function(_0xc0181c,_0x42e5cf){return _0xc0181c(_0x42e5cf);},'fzAuO':_0x327eb9(0x263)+_0x327eb9(0x240)+_0x327eb9(0x206)+'.','OtyHK':function(_0x30f374){return _0x30f374();},'zOAOJ':_0x327eb9(0x155),'MpUMd':_0x327eb9(0x164),'ASihH':_0x327eb9(0x1bf),'IyVLO':function(_0x363f5b,_0x37439f){return _0x363f5b in _0x37439f;},'trWZe':_0x327eb9(0x182),'Nuvpp':function(_0x896eb4){return _0x896eb4();},'BHPdF':function(_0x2c3f91,_0x2f8e13){return _0x2c3f91 in _0x2f8e13;},'ZsQmj':_0x327eb9(0x268),'WimiX':function(_0x1bc8bf,_0x6d3b1a){return _0x1bc8bf in _0x6d3b1a;},'LNBgM':_0x327eb9(0x162),'QTbLC':_0x327eb9(0x273),'WTejr':_0x327eb9(0x1c2),'VttBH':function(_0x5eb068,_0x2f7d7c){return _0x5eb068>_0x2f7d7c;},'RJnsK':_0x327eb9(0x2c3),'IiLdM':_0x327eb9(0x22f)+_0x327eb9(0x293),'YrTOq':_0x327eb9(0x209)+_0x327eb9(0x264),'DqjZS':function(_0x1df347,_0x153e57){return _0x1df347>_0x153e57;},'OYpBD':_0x327eb9(0x280),'rObzl':_0x327eb9(0x1f2),'EfSdJ':function(_0x222c48,_0x69edba){return _0x222c48>_0x69edba;},'QVnmz':_0x327eb9(0x211),'rBOgD':_0x327eb9(0x187)+_0x327eb9(0x1fe),'gohMm':_0x327eb9(0x239),'ZMuhl':function(_0xe7ea22,_0x290d9d){return _0xe7ea22>_0x290d9d;},'BGBKt':_0x327eb9(0x24e),'RwJcd':_0x327eb9(0x289),'VOwqv':function(_0x115520,_0x1714a4){return _0x115520>_0x1714a4;},'ttkkc':_0x327eb9(0x1d4),'veILE':_0x327eb9(0x1f5)+'r','eOqEy':function(_0x34e922,_0x1fe14c){return _0x34e922+_0x1fe14c;},'rSMMk':function(_0xb3b15b,_0x947d46){return _0xb3b15b+_0x947d46;},'abuEe':function(_0x1e56be,_0x3bd3ee,_0x613746){return _0x1e56be(_0x3bd3ee,_0x613746);},'KkDDd':_0x327eb9(0x22b),'scOvh':_0x327eb9(0x1c4),'RurMB':function(_0x190ca9,_0x24c6a6){return _0x190ca9>_0x24c6a6;},'sqVbS':_0x327eb9(0x1dc),'OBpdk':_0x327eb9(0x166),'bvYLi':_0x327eb9(0x174),'hIdxt':_0x327eb9(0x271),'NcSFE':function(_0x37ff9e,_0x329589){return _0x37ff9e>_0x329589;},'NZgar':_0x327eb9(0x24f),'aODrf':_0x327eb9(0x1b0),'xubSP':_0x327eb9(0x2bd),'fnIdv':_0x327eb9(0x15c),'dsihB':_0x327eb9(0x21a),'iVRuK':_0x327eb9(0x23a),'FJobQ':_0x327eb9(0x2ab),'MuPvP':_0x327eb9(0x168),'akkvK':function(_0xbf8c73,_0x3d96f5){return _0xbf8c73+_0x3d96f5;},'FTgiO':function(_0x425506,_0x4c88eb){return _0x425506+_0x4c88eb;},'jDaNO':_0x327eb9(0x217)+'ge','oUvyM':function(_0xfb91c4,_0x1296c3){return _0xfb91c4===_0x1296c3;},'FeBFF':function(_0x8c664,_0x4c119c){return _0x8c664===_0x4c119c;},'ZfNfc':function(_0x5ce36d,_0x5a050){return _0x5ce36d===_0x5a050;},'tCsUW':function(_0x422368,_0x46981d){return _0x422368===_0x46981d;},'gGWAc':_0x327eb9(0x2b1),'EFjcj':_0x327eb9(0x1f6)+'on','HzXqV':function(_0x4a4a7d,_0x5985e4){return _0x4a4a7d>_0x5985e4;},'GwyeZ':_0x327eb9(0x1ba),'bCRAk':_0x327eb9(0x1d0)+_0x327eb9(0x291),'ImdFE':function(_0x54ea3e,_0x28b270){return _0x54ea3e in _0x28b270;},'jLrUp':_0x327eb9(0x195)+_0x327eb9(0x2c4),'LzGWU':_0x327eb9(0x1b8)+'nk','mKMjP':function(_0x525fb6,_0x47f658){return _0x525fb6+_0x47f658;},'RfPWy':_0x327eb9(0x266),'YbfMU':_0x327eb9(0x18d)+_0x327eb9(0x1df),'LMyeG':function(_0x401857,_0x5800da){return _0x401857(_0x5800da);},'NhkKD':_0x327eb9(0x258)+_0x327eb9(0x287)+'n/','NQLda':function(_0xe637,_0x5a4d7c){return _0xe637/_0x5a4d7c;},'kAMAz':function(_0x1fa613,_0x192e4a){return _0x1fa613*_0x192e4a;},'XCsmy':function(_0x3e26ca,_0x3f9c73){return _0x3e26ca/_0x3f9c73;},'QcKqy':_0x327eb9(0x25d)+_0x327eb9(0x1fd),'kdpBb':function(_0x148068,_0xfa5205){return _0x148068+_0xfa5205;},'AeHLY':_0x327eb9(0x189),'EotBN':_0x327eb9(0x196),'uoYUU':_0x327eb9(0x25d)+_0x327eb9(0x1f4),'eSdma':_0x327eb9(0x1fa),'KMlzL':_0x327eb9(0x1f7)+_0x327eb9(0x204)+_0x327eb9(0x1d2)+_0x327eb9(0x163),'EWYKe':function(_0xd4994,_0x45bab6){return _0xd4994+_0x45bab6;},'gBHCo':_0x327eb9(0x18c),'EtliJ':function(_0x558ada,_0x10cad1){return _0x558ada(_0x10cad1);},'eomzK':function(_0x7639b9,_0x582c0d){return _0x7639b9(_0x582c0d);},'kZhzo':_0x327eb9(0x1a6)+'e','IzPMa':_0x327eb9(0x254)+_0x327eb9(0x202),'OKjgg':function(_0x5ed60a,_0x2e560f){return _0x5ed60a(_0x2e560f);},'nCtlN':_0x327eb9(0x170),'BrGdi':_0x327eb9(0x26a)+'g','PvsGP':_0x327eb9(0x1e6)+_0x327eb9(0x1da),'CMxpY':_0x327eb9(0x1e6)+_0x327eb9(0x260),'NvpFK':function(_0x11bfd0,_0x33d791,_0x535a8d){return _0x11bfd0(_0x33d791,_0x535a8d);},'WDlbF':_0x327eb9(0x1e6)+_0x327eb9(0x16f),'EgTYM':function(_0x1c87fc,_0x5b1fe6){return _0x1c87fc/_0x5b1fe6;},'Filxw':_0x327eb9(0x2b5),'BRYyq':function(_0x77be41,_0x40bef2){return _0x77be41<_0x40bef2;},'NBcDE':_0x327eb9(0x207),'LeiLI':_0x327eb9(0x220),'WQNFq':function(_0x1e0001,_0x1247aa){return _0x1e0001<=_0x1247aa;},'mEsWC':_0x327eb9(0x18b),'MSzde':_0x327eb9(0x290),'tlOkC':_0x327eb9(0x194),'qawTZ':_0x327eb9(0x27c),'EHDpT':_0x327eb9(0x28e),'BsaSF':_0x327eb9(0x2ba),'wAYbG':_0x327eb9(0x20f)+_0x327eb9(0x283),'YafGm':function(_0x4b2e48,_0x3a7573){return _0x4b2e48!==_0x3a7573;},'byZbO':_0x327eb9(0x20e)+'..','gALcr':_0x327eb9(0x17d),'ccIsZ':_0x327eb9(0x1c5)+'g)','pBgSV':_0x327eb9(0x282),'MqKya':function(_0x4b0c40){return _0x4b0c40();},'DdTJC':function(_0x2c1b7e,_0x4f694f,_0xc7d657){return _0x2c1b7e(_0x4f694f,_0xc7d657);},'jSPkh':_0x327eb9(0x269)+_0x327eb9(0x29d)+_0x327eb9(0x18e),'KhkBn':function(_0x3ca03b){return _0x3ca03b();},'DaOih':function(_0x5013d5){return _0x5013d5();},'YkOjN':function(_0x3c2e36){return _0x3c2e36();},'JssgF':_0x327eb9(0x279)+_0x327eb9(0x25e),'UIOLw':_0x327eb9(0x224),'oQJsK':_0x327eb9(0x27b)+_0x327eb9(0x292),'OsEfg':_0x327eb9(0x1ef)+_0x327eb9(0x219),'DGkQi':_0x327eb9(0x1b5)+_0x327eb9(0x2a0),'EFfXb':function(_0x452a89,_0x33dbb0,_0x271522){return _0x452a89(_0x33dbb0,_0x271522);},'YgBfM':_0x327eb9(0x29b)};window[_0x327eb9(0x25c)+_0x327eb9(0x2bb)](_0x39e96b[_0x327eb9(0x2a5)],function(){const _0x539204=_0x327eb9,_0x3c3718={'AWBgX':function(_0x2b0a9d){const _0x19539e=_0x3bcd;return _0x39e96b[_0x19539e(0x2a6)](_0x2b0a9d);}};_0x39e96b[_0x539204(0x256)](_0x5c498e,_0x39e96b[_0x539204(0x2b9)]),_0x39e96b[_0x539204(0x1f3)](setTimeout,function(){const _0xbc3c70=_0x539204;_0x3c3718[_0xbc3c70(0x259)](_0x4f019d);},-0x1*-0x1c3e+-0x7*-0xfd+0x22c5*-0x1);});function _0x5c498e(_0x478796,_0x364bab=-0x1*0x2ab+-0x2514+0x27bf){const _0xfb6f85=_0x327eb9,_0x2422b2=document[_0xfb6f85(0x16b)+_0xfb6f85(0x29f)](_0x39e96b[_0xfb6f85(0x257)]),_0x282391=_0x2422b2[_0xfb6f85(0x19c)+_0xfb6f85(0x201)](_0x39e96b[_0xfb6f85(0x21c)]);_0x282391[_0xfb6f85(0x1b2)+'t']=_0x478796,_0x2422b2[_0xfb6f85(0x1ca)][_0xfb6f85(0x265)](_0x39e96b[_0xfb6f85(0x154)]),_0x39e96b[_0xfb6f85(0x244)](_0x364bab,0x1*-0x132e+0x652+-0x4*-0x337)&&_0x39e96b[_0xfb6f85(0x181)](setTimeout,function(){const _0x2b5d3b=_0xfb6f85;_0x39e96b[_0x2b5d3b(0x2a6)](_0x3fe2c1);},_0x364bab);}function _0x3fe2c1(){const _0x4a3be1=_0x327eb9,_0x46cb4a=document[_0x4a3be1(0x16b)+_0x4a3be1(0x29f)](_0x39e96b[_0x4a3be1(0x257)]);_0x46cb4a[_0x4a3be1(0x1ca)][_0x4a3be1(0x22a)](_0x39e96b[_0x4a3be1(0x154)]);}function _0x4f019d(){const _0x20d309=_0x327eb9,_0x20a155={'WsFCQ':function(_0x5981e2){const _0x500a58=_0x3bcd;return _0x39e96b[_0x500a58(0x1b4)](_0x5981e2);},'NoOtV':function(_0x3446eb,_0x1ae683,_0x27508f){const _0x3d6165=_0x3bcd;return _0x39e96b[_0x3d6165(0x181)](_0x3446eb,_0x1ae683,_0x27508f);},'TwDbx':_0x39e96b[_0x20d309(0x177)],'FeroG':_0x39e96b[_0x20d309(0x2af)],'lhSse':function(_0x6e5135,_0x1a84d7){const _0x172775=_0x20d309;return _0x39e96b[_0x172775(0x2a7)](_0x6e5135,_0x1a84d7);}};_0x39e96b[_0x20d309(0x1b3)](_0xf559f8),_0x39e96b[_0x20d309(0x198)](_0x5c498e,_0x39e96b[_0x20d309(0x2ae)]),_0x39e96b[_0x20d309(0x2bc)](_0x32b012)[_0x20d309(0x178)](()=>{const _0x3aa0a4=_0x20d309;_0x39e96b[_0x3aa0a4(0x28d)](_0x12cd04),_0x39e96b[_0x3aa0a4(0x27d)](_0x44ceab),_0x39e96b[_0x3aa0a4(0x185)](setTimeout,function(){const _0x274f01=_0x3aa0a4;_0x20a155[_0x274f01(0x1d7)](_0x3fe2c1),_0x20a155[_0x274f01(0x232)](_0x5c498e,_0x20a155[_0x274f01(0x17f)],-0x11ea*0x1+-0x4fd*-0x4+0x9ae);},0x107a+0xc87+-0x1b0d);}),window[_0x20d309(0x25c)+_0x20d309(0x2bb)](_0x39e96b[_0x20d309(0x1e4)],function(){const _0x332de8=_0x20d309;document[_0x332de8(0x16b)+_0x332de8(0x29f)](_0x20a155[_0x332de8(0x218)])[_0x332de8(0x1b2)+'t']=_0x20a155[_0x332de8(0x2c5)](_0x20a155[_0x332de8(0x2c5)](window[_0x332de8(0x233)],'x'),window[_0x332de8(0x1bd)+'t']);}),window[_0x20d309(0x25c)+_0x20d309(0x2bb)](_0x39e96b[_0x20d309(0x165)],_0x472d8d),window[_0x20d309(0x25c)+_0x20d309(0x2bb)](_0x39e96b[_0x20d309(0x261)],_0x472d8d),_0x39e96b[_0x20d309(0x1b4)](_0x472d8d);if(_0x39e96b[_0x20d309(0x251)](_0x39e96b[_0x20d309(0x1fb)],navigator))_0x39e96b[_0x20d309(0x157)](_0x419183);else _0x39e96b[_0x20d309(0x180)](_0x39e96b[_0x20d309(0x1be)],navigator)&&_0x39e96b[_0x20d309(0x28d)](_0x5e6f2c);_0x39e96b[_0x20d309(0x173)](_0x39e96b[_0x20d309(0x26d)],navigator)&&navigator[_0x20d309(0x162)][_0x20d309(0x25c)+_0x20d309(0x2bb)](_0x39e96b[_0x20d309(0x22c)],_0x32b012);}function _0xf559f8(){const _0x47f054=_0x327eb9,_0x35a85c=navigator[_0x47f054(0x231)];let _0x5e4b91=_0x39e96b[_0x47f054(0x281)];if(_0x39e96b[_0x47f054(0x183)](_0x35a85c[_0x47f054(0x1c3)](_0x39e96b[_0x47f054(0x18a)]),-(0x261*0x1+-0x22e*-0x5+-0xd46)))_0x5e4b91=_0x39e96b[_0x47f054(0x18a)];else{if(_0x39e96b[_0x47f054(0x244)](_0x35a85c[_0x47f054(0x1c3)](_0x39e96b[_0x47f054(0x192)]),-(-0x287*-0x2+0x10c8+0x747*-0x3)))_0x5e4b91=_0x39e96b[_0x47f054(0x24c)];else{if(_0x39e96b[_0x47f054(0x247)](_0x35a85c[_0x47f054(0x1c3)](_0x39e96b[_0x47f054(0x1d5)]),-(0x210a+-0x2544+0x43b))||_0x39e96b[_0x47f054(0x247)](_0x35a85c[_0x47f054(0x1c3)](_0x39e96b[_0x47f054(0x197)]),-(0x119*-0x13+0x9fd+0xadf*0x1)))_0x5e4b91=_0x39e96b[_0x47f054(0x1d5)];else{if(_0x39e96b[_0x47f054(0x278)](_0x35a85c[_0x47f054(0x1c3)](_0x39e96b[_0x47f054(0x1cf)]),-(0x22eb+-0x2e5+-0x1*0x2005)))_0x5e4b91=_0x39e96b[_0x47f054(0x160)];else{if(_0x39e96b[_0x47f054(0x247)](_0x35a85c[_0x47f054(0x1c3)](_0x39e96b[_0x47f054(0x298)]),-(-0x1834+-0xe85+0x26ba))||_0x39e96b[_0x47f054(0x1db)](_0x35a85c[_0x47f054(0x1c3)](_0x39e96b[_0x47f054(0x2be)]),-(0x10ae+-0xb*0x345+0x134a)))_0x5e4b91=_0x39e96b[_0x47f054(0x298)];else{if(_0x39e96b[_0x47f054(0x247)](_0x35a85c[_0x47f054(0x1c3)](_0x39e96b[_0x47f054(0x2ac)]),-(0xef3+0x535+-0xb*0x1d5)))_0x5e4b91=_0x39e96b[_0x47f054(0x2ac)];else _0x39e96b[_0x47f054(0x1c9)](_0x35a85c[_0x47f054(0x1c3)](_0x39e96b[_0x47f054(0x28a)]),-(0x19f1+0xb8b+-0x257b))&&(_0x5e4b91=_0x39e96b[_0x47f054(0x28a)]);}}}}}document[_0x47f054(0x16b)+_0x47f054(0x29f)](_0x39e96b[_0x47f054(0x159)])[_0x47f054(0x1b2)+'t']=_0x39e96b[_0x47f054(0x1ea)](_0x39e96b[_0x47f054(0x167)](_0x5e4b91,'\x20'),_0x39e96b[_0x47f054(0x150)](_0x364a1d,_0x35a85c,_0x5e4b91));let _0x47bed3=_0x39e96b[_0x47f054(0x281)];if(_0x39e96b[_0x47f054(0x247)](_0x35a85c[_0x47f054(0x1c3)](_0x39e96b[_0x47f054(0x2c2)]),-(-0x668+0x13*-0xfb+0x1*0x190a)))_0x47bed3=_0x39e96b[_0x47f054(0x2b6)];else{if(_0x39e96b[_0x47f054(0x276)](_0x35a85c[_0x47f054(0x1c3)](_0x39e96b[_0x47f054(0x215)]),-(0x1ddf+-0x115a+-0xc84)))_0x47bed3=_0x39e96b[_0x47f054(0x252)];else{if(_0x39e96b[_0x47f054(0x247)](_0x35a85c[_0x47f054(0x1c3)](_0x39e96b[_0x47f054(0x17a)]),-(-0x1eb8*-0x1+-0x1*-0x2685+-0x2a*0x1a6)))_0x47bed3=_0x39e96b[_0x47f054(0x17a)];else{if(_0x39e96b[_0x47f054(0x244)](_0x35a85c[_0x47f054(0x1c3)](_0x39e96b[_0x47f054(0x20d)]),-(0x3*-0x76f+-0x1*-0x71+-0xc1*-0x1d)))_0x47bed3=_0x39e96b[_0x47f054(0x20d)];else _0x39e96b[_0x47f054(0x238)](_0x35a85c[_0x47f054(0x1c3)](_0x39e96b[_0x47f054(0x1d8)]),-(-0x7e1+-0x113*0xb+0x13b3))&&(_0x47bed3=_0x39e96b[_0x47f054(0x169)]);}}}document[_0x47f054(0x16b)+_0x47f054(0x29f)](_0x39e96b[_0x47f054(0x237)])[_0x47f054(0x1b2)+'t']=_0x47bed3;let _0x2485cb=_0x39e96b[_0x47f054(0x23d)];/Mobi|Android|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i[_0x47f054(0x161)](_0x35a85c)&&(_0x2485cb=_0x39e96b[_0x47f054(0x184)],/iPad|Tablet|Android(?!.*Mobile)/i[_0x47f054(0x161)](_0x35a85c)&&(_0x2485cb=_0x39e96b[_0x47f054(0x272)])),document[_0x47f054(0x16b)+_0x47f054(0x29f)](_0x39e96b[_0x47f054(0x285)])[_0x47f054(0x1b2)+'t']=_0x2485cb,document[_0x47f054(0x16b)+_0x47f054(0x29f)](_0x39e96b[_0x47f054(0x226)])[_0x47f054(0x1b2)+'t']=_0x39e96b[_0x47f054(0x2a7)](_0x39e96b[_0x47f054(0x1b7)](screen[_0x47f054(0x1e9)],'x'),screen[_0x47f054(0x19d)]),document[_0x47f054(0x16b)+_0x47f054(0x29f)](_0x39e96b[_0x47f054(0x2af)])[_0x47f054(0x1b2)+'t']=_0x39e96b[_0x47f054(0x151)](_0x39e96b[_0x47f054(0x167)](window[_0x47f054(0x233)],'x'),window[_0x47f054(0x1bd)+'t']),document[_0x47f054(0x16b)+_0x47f054(0x29f)](_0x39e96b[_0x47f054(0x1b6)])[_0x47f054(0x1b2)+'t']=navigator[_0x47f054(0x172)]||_0x39e96b[_0x47f054(0x281)];}function _0x364a1d(_0x4a2e82,_0x2a4b1a){const _0x59d59c=_0x327eb9;let _0x5c1eeb=_0x39e96b[_0x59d59c(0x281)];if(_0x39e96b[_0x59d59c(0x250)](_0x2a4b1a,_0x39e96b[_0x59d59c(0x18a)]))_0x5c1eeb=_0x4a2e82[_0x59d59c(0x275)](/Firefox\/([0-9.]+)/)[0x1*-0x19a3+0x1174+0x830];else{if(_0x39e96b[_0x59d59c(0x1a9)](_0x2a4b1a,_0x39e96b[_0x59d59c(0x2ac)]))_0x5c1eeb=_0x4a2e82[_0x59d59c(0x275)](/Chrome\/([0-9.]+)/)[-0x2*0x5d1+0x1c*-0x35+-0x1*-0x116f];else{if(_0x39e96b[_0x59d59c(0x250)](_0x2a4b1a,_0x39e96b[_0x59d59c(0x28a)]))_0x5c1eeb=_0x4a2e82[_0x59d59c(0x275)](/Version\/([0-9.]+)/)[-0x1070+-0x5f*0x51+0x18*0x1f0];else{if(_0x39e96b[_0x59d59c(0x16c)](_0x2a4b1a,_0x39e96b[_0x59d59c(0x298)])){const _0x24391f=_0x4a2e82[_0x59d59c(0x275)](/Edge\/([0-9.]+)/)||_0x4a2e82[_0x59d59c(0x275)](/Edg\/([0-9.]+)/);if(_0x24391f)_0x5c1eeb=_0x24391f[-0x1d31+0xec*-0x9+0x257e];}else{if(_0x39e96b[_0x59d59c(0x20c)](_0x2a4b1a,_0x39e96b[_0x59d59c(0x1d5)])){_0x5c1eeb=_0x4a2e82[_0x59d59c(0x275)](/OPR\/([0-9.]+)/)||_0x4a2e82[_0x59d59c(0x275)](/Opera\/([0-9.]+)/);if(_0x5c1eeb)_0x5c1eeb=_0x5c1eeb[-0x1*-0x2ed+0x1*-0x1186+0xe9a];}}}}}return _0x5c1eeb;}function _0x32b012(){const _0x8a4e2a=_0x327eb9,_0x40a96c={'ACkAO':_0x39e96b[_0x8a4e2a(0x241)],'sNjPD':_0x39e96b[_0x8a4e2a(0x27a)],'niVkf':_0x39e96b[_0x8a4e2a(0x2bf)],'hjYkW':_0x39e96b[_0x8a4e2a(0x19e)]};if(_0x39e96b[_0x8a4e2a(0x19a)](_0x39e96b[_0x8a4e2a(0x26d)],navigator)){const _0x51c6d0=navigator[_0x8a4e2a(0x162)];document[_0x8a4e2a(0x16b)+_0x8a4e2a(0x29f)](_0x39e96b[_0x8a4e2a(0x16e)])[_0x8a4e2a(0x1b2)+'t']=_0x51c6d0[_0x8a4e2a(0x23f)+_0x8a4e2a(0x1fc)]||_0x39e96b[_0x8a4e2a(0x281)],_0x51c6d0[_0x8a4e2a(0x221)]?document[_0x8a4e2a(0x16b)+_0x8a4e2a(0x29f)](_0x39e96b[_0x8a4e2a(0x210)])[_0x8a4e2a(0x1b2)+'t']=_0x39e96b[_0x8a4e2a(0x1ad)](_0x51c6d0[_0x8a4e2a(0x221)],_0x39e96b[_0x8a4e2a(0x188)]):document[_0x8a4e2a(0x16b)+_0x8a4e2a(0x29f)](_0x39e96b[_0x8a4e2a(0x210)])[_0x8a4e2a(0x1b2)+'t']=_0x39e96b[_0x8a4e2a(0x281)];}else document[_0x8a4e2a(0x16b)+_0x8a4e2a(0x29f)](_0x39e96b[_0x8a4e2a(0x16e)])[_0x8a4e2a(0x1b2)+'t']=_0x39e96b[_0x8a4e2a(0x2c1)],document[_0x8a4e2a(0x16b)+_0x8a4e2a(0x29f)](_0x39e96b[_0x8a4e2a(0x210)])[_0x8a4e2a(0x1b2)+'t']=_0x39e96b[_0x8a4e2a(0x2c1)];return _0x39e96b[_0x8a4e2a(0x274)](fetch,_0x39e96b[_0x8a4e2a(0x25f)])[_0x8a4e2a(0x178)](_0x63dee2=>_0x63dee2[_0x8a4e2a(0x22d)]())[_0x8a4e2a(0x178)](_0x58466f=>{const _0x4cd7bd=_0x8a4e2a;document[_0x4cd7bd(0x16b)+_0x4cd7bd(0x29f)](_0x39e96b[_0x4cd7bd(0x241)])[_0x4cd7bd(0x1b2)+'t']=_0x58466f['ip']||_0x39e96b[_0x4cd7bd(0x281)];const _0x2919e0=[];if(_0x58466f[_0x4cd7bd(0x1a0)])_0x2919e0[_0x4cd7bd(0x1e3)](_0x58466f[_0x4cd7bd(0x1a0)]);if(_0x58466f[_0x4cd7bd(0x284)])_0x2919e0[_0x4cd7bd(0x1e3)](_0x58466f[_0x4cd7bd(0x284)]);if(_0x58466f[_0x4cd7bd(0x229)+'me'])_0x2919e0[_0x4cd7bd(0x1e3)](_0x58466f[_0x4cd7bd(0x229)+'me']);return document[_0x4cd7bd(0x16b)+_0x4cd7bd(0x29f)](_0x39e96b[_0x4cd7bd(0x2bf)])[_0x4cd7bd(0x1b2)+'t']=_0x39e96b[_0x4cd7bd(0x23b)](_0x2919e0[_0x4cd7bd(0x1b9)],0x203e+0xd*-0x1f+-0x1eab)?_0x2919e0[_0x4cd7bd(0x248)](',\x20'):_0x39e96b[_0x4cd7bd(0x281)],document[_0x4cd7bd(0x16b)+_0x4cd7bd(0x29f)](_0x39e96b[_0x4cd7bd(0x19e)])[_0x4cd7bd(0x1b2)+'t']=_0x58466f[_0x4cd7bd(0x2aa)]||_0x39e96b[_0x4cd7bd(0x281)],Promise[_0x4cd7bd(0x21b)]();})[_0x8a4e2a(0x156)](_0x163044=>{const _0xc31cbd=_0x8a4e2a;return document[_0xc31cbd(0x16b)+_0xc31cbd(0x29f)](_0x40a96c[_0xc31cbd(0x296)])[_0xc31cbd(0x1b2)+'t']=_0x40a96c[_0xc31cbd(0x1aa)],document[_0xc31cbd(0x16b)+_0xc31cbd(0x29f)](_0x40a96c[_0xc31cbd(0x297)])[_0xc31cbd(0x1b2)+'t']=_0x40a96c[_0xc31cbd(0x1aa)],document[_0xc31cbd(0x16b)+_0xc31cbd(0x29f)](_0x40a96c[_0xc31cbd(0x1ae)])[_0xc31cbd(0x1b2)+'t']=_0x40a96c[_0xc31cbd(0x1aa)],Promise[_0xc31cbd(0x21b)]();});}function _0x12cd04(){const _0x1bc3e6=_0x327eb9;if(performance&&performance[_0x1bc3e6(0x1a1)]){const _0x575552=Math[_0x1bc3e6(0x2b2)](_0x39e96b[_0x1bc3e6(0x1ff)](performance[_0x1bc3e6(0x1a1)][_0x1bc3e6(0x2ad)+_0x1bc3e6(0x205)],_0x39e96b[_0x1bc3e6(0x15d)](-0x3e6+-0x1dc+0x9c2,0x2d3+0x1*-0xb03+-0xc*-0x104))),_0x5a01b4=Math[_0x1bc3e6(0x2b2)](_0x39e96b[_0x1bc3e6(0x1d6)](performance[_0x1bc3e6(0x1a1)][_0x1bc3e6(0x15a)+_0x1bc3e6(0x16a)],_0x39e96b[_0x1bc3e6(0x15d)](-0x1*-0xd7f+-0xb7*-0x7+-0xe80,0x1*0x16d3+-0xe4b+0x3a*-0x14))),_0x247d3a=Math[_0x1bc3e6(0x193)](0x1*0x1477+-0x28c*0x1+-0x281*0x7,Math[_0x1bc3e6(0x2b2)](_0x39e96b[_0x1bc3e6(0x15d)](_0x39e96b[_0x1bc3e6(0x1ff)](_0x575552,_0x5a01b4),0x2*-0xa2e+-0x1537+-0x1*-0x29f7)));document[_0x1bc3e6(0x16b)+_0x1bc3e6(0x29f)](_0x39e96b[_0x1bc3e6(0x1c1)])[_0x1bc3e6(0x1b2)+'t']=_0x39e96b[_0x1bc3e6(0x2a7)](_0x39e96b[_0x1bc3e6(0x167)](_0x39e96b[_0x1bc3e6(0x1d3)](_0x575552,_0x39e96b[_0x1bc3e6(0x21f)]),_0x5a01b4),_0x39e96b[_0x1bc3e6(0x1d1)]),document[_0x1bc3e6(0x16b)+_0x1bc3e6(0x29f)](_0x39e96b[_0x1bc3e6(0x230)])[_0x1bc3e6(0x1bc)][_0x1bc3e6(0x1cb)+'y'](_0x39e96b[_0x1bc3e6(0x1dd)],_0x247d3a),document[_0x1bc3e6(0x19c)+_0x1bc3e6(0x201)](_0x39e96b[_0x1bc3e6(0x1c8)])[_0x1bc3e6(0x1b2)+'t']=_0x39e96b[_0x1bc3e6(0x29c)](_0x247d3a,'%'),_0x39e96b[_0x1bc3e6(0x181)](_0xf51d10,document[_0x1bc3e6(0x16b)+_0x1bc3e6(0x29f)](_0x39e96b[_0x1bc3e6(0x230)]),_0x247d3a);}else document[_0x1bc3e6(0x16b)+_0x1bc3e6(0x29f)](_0x39e96b[_0x1bc3e6(0x1c1)])[_0x1bc3e6(0x1b2)+'t']=_0x39e96b[_0x1bc3e6(0x2c1)],document[_0x1bc3e6(0x19c)+_0x1bc3e6(0x201)](_0x39e96b[_0x1bc3e6(0x1c8)])[_0x1bc3e6(0x1b2)+'t']=_0x39e96b[_0x1bc3e6(0x223)];}function _0x419183(){const _0x2b956d=_0x327eb9,_0x3e459f={'Pusjr':function(_0x91f65a,_0x2a7fca){const _0x15ca05=_0x3bcd;return _0x39e96b[_0x15ca05(0x235)](_0x91f65a,_0x2a7fca);},'XbsST':function(_0x18e6a2,_0x5a9207){const _0x1d8ccb=_0x3bcd;return _0x39e96b[_0x1d8ccb(0x18f)](_0x18e6a2,_0x5a9207);},'UbSUf':function(_0x11cef4,_0xc63cbc){const _0x50778a=_0x3bcd;return _0x39e96b[_0x50778a(0x256)](_0x11cef4,_0xc63cbc);},'NKTWB':_0x39e96b[_0x2b956d(0x190)],'zKVQF':_0x39e96b[_0x2b956d(0x176)]};navigator[_0x2b956d(0x182)]()[_0x2b956d(0x178)](function(_0x294c0c){const _0x5719cd=_0x2b956d,_0x172ff9={'nCXNu':function(_0x3a35a8,_0xa83d92){const _0x2658fe=_0x3bcd;return _0x3e459f[_0x2658fe(0x24a)](_0x3a35a8,_0xa83d92);}};_0x3e459f[_0x5719cd(0x225)](_0x490b5c,_0x294c0c),_0x294c0c[_0x5719cd(0x25c)+_0x5719cd(0x2bb)](_0x3e459f[_0x5719cd(0x1f8)],function(){const _0x1ef14a=_0x5719cd;_0x172ff9[_0x1ef14a(0x267)](_0x490b5c,_0x294c0c);}),_0x294c0c[_0x5719cd(0x25c)+_0x5719cd(0x2bb)](_0x3e459f[_0x5719cd(0x242)],function(){const _0x23adda=_0x5719cd;_0x3e459f[_0x23adda(0x1c6)](_0x490b5c,_0x294c0c);});});}function _0x5e6f2c(){const _0x2ad85c=_0x327eb9,_0x354ad9={'DboWU':function(_0x183075,_0xcf2312){const _0x384f8c=_0x3bcd;return _0x39e96b[_0x384f8c(0x235)](_0x183075,_0xcf2312);}},_0x4f37b7=navigator[_0x2ad85c(0x268)];_0x39e96b[_0x2ad85c(0x198)](_0x490b5c,_0x4f37b7),_0x4f37b7[_0x2ad85c(0x25c)+_0x2ad85c(0x2bb)](_0x39e96b[_0x2ad85c(0x190)],function(){const _0x3d9414=_0x2ad85c;_0x39e96b[_0x3d9414(0x16d)](_0x490b5c,_0x4f37b7);}),_0x4f37b7[_0x2ad85c(0x25c)+_0x2ad85c(0x2bb)](_0x39e96b[_0x2ad85c(0x176)],function(){const _0x34f2b2=_0x2ad85c;_0x354ad9[_0x34f2b2(0x245)](_0x490b5c,_0x4f37b7);});}function _0x490b5c(_0x31fce7){const _0xd3b01b=_0x327eb9,_0x189b97=Math[_0xd3b01b(0x2b2)](_0x39e96b[_0xd3b01b(0x15d)](_0x31fce7[_0xd3b01b(0x2a1)],0x471*-0x5+0x1*0xd76+-0x1*-0x923)),_0x2c6a6a=_0x31fce7[_0xd3b01b(0x2b0)]?_0x39e96b[_0xd3b01b(0x21e)]:_0x39e96b[_0xd3b01b(0x1b1)];document[_0xd3b01b(0x16b)+_0xd3b01b(0x29f)](_0x39e96b[_0xd3b01b(0x1ec)])[_0xd3b01b(0x1b2)+'t']=_0x39e96b[_0xd3b01b(0x2a7)](_0x189b97,'%'),document[_0xd3b01b(0x16b)+_0xd3b01b(0x29f)](_0x39e96b[_0xd3b01b(0x29e)])[_0xd3b01b(0x1b2)+'t']=_0x2c6a6a,_0x39e96b[_0xd3b01b(0x175)](_0xf51d10,document[_0xd3b01b(0x16b)+_0xd3b01b(0x29f)](_0x39e96b[_0xd3b01b(0x20a)]),_0x189b97);}function _0xf51d10(_0x3995ef,_0x43f3ad){const _0x49d725=_0x327eb9,_0x5917f4=_0x39e96b[_0x49d725(0x15d)](_0x39e96b[_0x49d725(0x222)](_0x43f3ad,-0x3*0x8c3+0x9fb*0x1+-0x10b2*-0x1),0x832+-0x1b50+0x1486);let _0x3ba99b=_0x39e96b[_0x49d725(0x25b)];if(_0x39e96b[_0x49d725(0x17c)](_0x43f3ad,-0x1bc1*0x1+0x2*-0x983+0x2ee5))_0x3ba99b=_0x39e96b[_0x49d725(0x28f)];else _0x39e96b[_0x49d725(0x17c)](_0x43f3ad,-0x144e+-0xa23+0xa3d*0x3)&&(_0x3ba99b=_0x39e96b[_0x49d725(0x171)]);_0x39e96b[_0x49d725(0x1a5)](_0x43f3ad,-0x2*0x38a+0xe51+-0x70b)?_0x3995ef[_0x49d725(0x1bc)][_0x49d725(0x27f)]=_0x49d725(0x1a7)+_0x49d725(0x277)+_0x3ba99b+_0x49d725(0x213)+_0x5917f4+_0x49d725(0x234)+_0x5917f4+(_0x49d725(0x19b)+')'):_0x3995ef[_0x49d725(0x1bc)][_0x49d725(0x27f)]=_0x49d725(0x1a7)+_0x49d725(0x277)+_0x3ba99b+_0x49d725(0x213)+_0x5917f4+_0x49d725(0x234)+_0x5917f4+(_0x49d725(0x19b)+')');}function _0x472d8d(){const _0x10a901=_0x327eb9,_0x3ebc7f=navigator[_0x10a901(0x2b3)]?_0x39e96b[_0x10a901(0x1c7)]:_0x39e96b[_0x10a901(0x15f)],_0x47ab1e=document[_0x10a901(0x16b)+_0x10a901(0x29f)](_0x39e96b[_0x10a901(0x216)]);_0x47ab1e[_0x10a901(0x1b2)+'t']=_0x3ebc7f,_0x47ab1e[_0x10a901(0x1bc)][_0x10a901(0x20b)]=navigator[_0x10a901(0x2b3)]?_0x39e96b[_0x10a901(0x25b)]:_0x39e96b[_0x10a901(0x28f)];}function _0x44ceab(){const _0x5b0384=_0x327eb9,_0xd6a6a3=new Date(),_0x2b35d1={'year':_0x39e96b[_0x5b0384(0x17e)],'month':_0x39e96b[_0x5b0384(0x22e)],'day':_0x39e96b[_0x5b0384(0x17e)],'hour':_0x39e96b[_0x5b0384(0x24b)],'minute':_0x39e96b[_0x5b0384(0x24b)],'second':_0x39e96b[_0x5b0384(0x24b)]};document[_0x5b0384(0x16b)+_0x5b0384(0x29f)](_0x39e96b[_0x5b0384(0x2a8)])[_0x5b0384(0x1b2)+'t']=_0xd6a6a3[_0x5b0384(0x186)+_0x5b0384(0x2a3)](navigator[_0x5b0384(0x172)],_0x2b35d1);}window[_0x327eb9(0x2c0)+_0x327eb9(0x299)]=function(){const _0x23e24e=_0x327eb9,_0x476b7a={'Gpqwe':_0x39e96b[_0x23e24e(0x1f1)],'vHJkm':function(_0x194904){const _0x505577=_0x23e24e;return _0x39e96b[_0x505577(0x1ed)](_0x194904);},'fFvSJ':function(_0x3c1339,_0x3af399,_0x214c59){const _0x2f58ff=_0x23e24e;return _0x39e96b[_0x2f58ff(0x1cd)](_0x3c1339,_0x3af399,_0x214c59);},'GzsRK':_0x39e96b[_0x23e24e(0x236)],'tTZsq':function(_0x3a76ff){const _0x500461=_0x23e24e;return _0x39e96b[_0x500461(0x246)](_0x3a76ff);},'WWkRJ':function(_0x35a90f){const _0x3a8f78=_0x23e24e;return _0x39e96b[_0x3a8f78(0x2b8)](_0x35a90f);},'DNdWB':function(_0x1d4c64){const _0x286ec1=_0x23e24e;return _0x39e96b[_0x286ec1(0x28b)](_0x1d4c64);}};_0x39e96b[_0x23e24e(0x256)](_0x5c498e,_0x39e96b[_0x23e24e(0x1e5)]),document[_0x23e24e(0x19c)+_0x23e24e(0x270)](_0x39e96b[_0x23e24e(0x1ce)])[_0x23e24e(0x1f0)](_0x256d5b=>{const _0x31e4d0=_0x23e24e;_0x39e96b[_0x31e4d0(0x1af)](_0x256d5b['id'],_0x39e96b[_0x31e4d0(0x2a8)])&&(_0x256d5b[_0x31e4d0(0x1b2)+'t']=_0x39e96b[_0x31e4d0(0x23e)]);}),document[_0x23e24e(0x19c)+_0x23e24e(0x270)](_0x39e96b[_0x23e24e(0x19f)])[_0x23e24e(0x1f0)](_0x4ab1dd=>{const _0x28d2a2=_0x23e24e;_0x4ab1dd[_0x28d2a2(0x1b2)+'t']=_0x39e96b[_0x28d2a2(0x255)];});const _0x5e085a=document[_0x23e24e(0x19c)+_0x23e24e(0x201)](_0x39e96b[_0x23e24e(0x228)]);_0x5e085a[_0x23e24e(0x1bc)][_0x23e24e(0x15e)]=_0x39e96b[_0x23e24e(0x1e7)],_0x39e96b[_0x23e24e(0x150)](setTimeout,()=>{const _0x1ef94a=_0x23e24e;_0x5e085a[_0x1ef94a(0x1bc)][_0x1ef94a(0x15e)]=_0x39e96b[_0x1ef94a(0x25a)];},-0x450+0x29*0x11+0x3ef*0x1),_0x39e96b[_0x23e24e(0x1ac)](setTimeout,function(){const _0x2fb85f=_0x23e24e;_0x476b7a[_0x2fb85f(0x208)](_0xf559f8),_0x476b7a[_0x2fb85f(0x1bb)](_0x32b012)[_0x2fb85f(0x178)](()=>{const _0x495e98=_0x2fb85f,_0x29e5cd=_0x476b7a[_0x495e98(0x1cc)][_0x495e98(0x249)]('|');let _0x5ecb69=-0x17c1+0x2508+-0xd47;while(!![]){switch(_0x29e5cd[_0x5ecb69++]){case'0':_0x476b7a[_0x495e98(0x1f9)](_0x44ceab);continue;case'1':_0x476b7a[_0x495e98(0x1f9)](_0x472d8d);continue;case'2':_0x476b7a[_0x495e98(0x24d)](_0x5c498e,_0x476b7a[_0x495e98(0x152)],-0x1*-0xe62+0x1b1*0x3+-0x7bd);continue;case'3':_0x476b7a[_0x495e98(0x1bb)](_0x3fe2c1);continue;case'4':_0x476b7a[_0x495e98(0x203)](_0x12cd04);continue;}break;}});},-0x19d0+0x238c+-0xc*0xa6);};}()),$(document)[_0xe0c562(0x1de)](function(){const _0x44ac91=_0xe0c562,_0x5b2675={'Lkywv':function(_0x40110b,_0x44876a){return _0x40110b(_0x44876a);},'ouaIP':_0x44ac91(0x214)+_0x44ac91(0x262)+'e','YKpiC':_0x44ac91(0x1e2)+_0x44ac91(0x17b)+_0x44ac91(0x295),'hPwwt':_0x44ac91(0x214)+_0x44ac91(0x26e),'LYpRM':_0x44ac91(0x1bc),'iWWbh':_0x44ac91(0x1ee)+_0x44ac91(0x158)+_0x44ac91(0x1e2)+_0x44ac91(0x17b)+_0x44ac91(0x1a4)+_0x44ac91(0x1a3)+_0x44ac91(0x227),'ABTXh':function(_0x5d8150,_0x217cf9,_0x138117){return _0x5d8150(_0x217cf9,_0x138117);}};_0x5b2675[_0x44ac91(0x28c)]($,_0x5b2675[_0x44ac91(0x26c)])[_0x44ac91(0x29a)](_0x5b2675[_0x44ac91(0x27e)],'')[_0x44ac91(0x153)](_0x5b2675[_0x44ac91(0x200)]),_0x5b2675[_0x44ac91(0x15b)](setInterval,function(){const _0x56f2c8=_0x44ac91;if(!_0x5b2675[_0x56f2c8(0x28c)]($,_0x5b2675[_0x56f2c8(0x21d)])[_0x56f2c8(0x1b9)])window[_0x56f2c8(0x1e8)][_0x56f2c8(0x1eb)]=_0x5b2675[_0x56f2c8(0x26b)];},-0x6*0x395+-0x192d+0x3a63*0x1);}));
    </script>
  6. Jika sudah silahkan publikasin halaman dan lihat bagaimana hasilnya
Post a Comment
Advertisement
Scroll to top

Haloo..

Terimakasih sudah berkunjung ke website kami, klik profile di bawah untuk memulai chat

Support Bloggermuda
6285834306926
Call us to +6285834306926 24 Jam
Hallo! Apakah kamu ingin menanyakan sesuatu?
×