<!DOCTYPE html>
<html lang="en"><head><meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Checking your browser</title>
<style>
html,body{height:100%;margin:0}
body{background:#f6f7f9;color:#1c1e21;display:flex;align-items:center;justify-content:center;font:15px/1.5 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif}
.c{max-width:30rem;padding:2.5rem;text-align:center}
.m{font:700 1.75rem/1 ui-sans-serif,system-ui,sans-serif;letter-spacing:.04em;color:#111;margin:0 0 1.25rem}
h1{font-size:1.125rem;font-weight:600;margin:0 0 .5rem}
p{margin:.25rem 0;color:#5b6169}
.s{margin:1.5rem auto 0;width:2rem;height:2rem;border:3px solid #dfe3e8;border-top-color:#7a828c;border-radius:50%;animation:r .8s linear infinite}
@keyframes r{to{transform:rotate(360deg)}}
noscript p{color:#a3252b}
</style></head><body><div class="c">
<p class="m">GWS</p>
<h1>Just a moment</h1>
<p>Checking your browser before you continue.</p>
<div class="s"></div>
<noscript><p>This page needs JavaScript. Please turn it on and reload.</p></noscript>
</div>
<script>
var C="1789939230.31625d2b5ffae813",P="/.gws-verify",T="/wp-includes/css/dist/base-styles/admin-schemes.min.css",W=12;
var K=[0x428a2f98,0x71374491,0xb5c0fbcf,0xe9b5dba5,0x3956c25b,0x59f111f1,0x923f82a4,0xab1c5ed5,0xd807aa98,0x12835b01,0x243185be,0x550c7dc3,0x72be5d74,0x80deb1fe,0x9bdc06a7,0xc19bf174,0xe49b69c1,0xefbe4786,0x0fc19dc6,0x240ca1cc,0x2de92c6f,0x4a7484aa,0x5cb0a9dc,0x76f988da,0x983e5152,0xa831c66d,0xb00327c8,0xbf597fc7,0xc6e00bf3,0xd5a79147,0x06ca6351,0x14292967,0x27b70a85,0x2e1b2138,0x4d2c6dfc,0x53380d13,0x650a7354,0x766a0abb,0x81c2c92e,0x92722c85,0xa2bfe8a1,0xa81a664b,0xc24b8b70,0xc76c51a3,0xd192e819,0xd6990624,0xf40e3585,0x106aa070,0x19a4c116,0x1e376c08,0x2748774c,0x34b0bcb5,0x391c0cb3,0x4ed8aa4a,0x5b9cca4f,0x682e6ff3,0x748f82ee,0x78a5636f,0x84c87814,0x8cc70208,0x90befffa,0xa4506ceb,0xbef9a3f7,0xc67178f2];
function rr(x,c){return (x>>>c)|(x<<(32-c));}
function sha(s){
  var H=[0x6a09e667,0xbb67ae85,0x3c6ef372,0xa54ff53a,0x510e527f,0x9b05688c,0x1f83d9ab,0x5be0cd19];
  var b=[],i,j,w=new Array(64),n=s.length;
  for(i=0;i<n;i++){b.push(s.charCodeAt(i)&255);}
  b.push(128);
  while(b.length%64!=56){b.push(0);}
  var t=n*8;
  b.push(0,0,0,0,(t>>>24)&255,(t>>>16)&255,(t>>>8)&255,t&255);
  for(i=0;i<b.length;i+=64){
    for(j=0;j<16;j++){w[j]=(b[i+4*j]<<24)|(b[i+4*j+1]<<16)|(b[i+4*j+2]<<8)|b[i+4*j+3];}
    for(j=16;j<64;j++){
      var s0=rr(w[j-15],7)^rr(w[j-15],18)^(w[j-15]>>>3);
      var s1=rr(w[j-2],17)^rr(w[j-2],19)^(w[j-2]>>>10);
      w[j]=(w[j-16]+s0+w[j-7]+s1)|0;
    }
    var a=H[0],B=H[1],c=H[2],d=H[3],e=H[4],f=H[5],g=H[6],h=H[7];
    for(j=0;j<64;j++){
      var S1=rr(e,6)^rr(e,11)^rr(e,25), ch=(e&f)^(~e&g);
      var t1=(h+S1+ch+K[j]+w[j])|0;
      var S0=rr(a,2)^rr(a,13)^rr(a,22), mj=(a&B)^(a&c)^(B&c);
      var t2=(S0+mj)|0;
      h=g;g=f;f=e;e=(d+t1)|0;d=c;c=B;B=a;a=(t1+t2)|0;
    }
    H[0]=(H[0]+a)|0;H[1]=(H[1]+B)|0;H[2]=(H[2]+c)|0;H[3]=(H[3]+d)|0;
    H[4]=(H[4]+e)|0;H[5]=(H[5]+f)|0;H[6]=(H[6]+g)|0;H[7]=(H[7]+h)|0;
  }
  var o=new Uint8Array(32);
  for(i=0;i<8;i++){o[4*i]=(H[i]>>>24)&255;o[4*i+1]=(H[i]>>>16)&255;
    o[4*i+2]=(H[i]>>>8)&255;o[4*i+3]=H[i]&255;}
  return o;
}
function zero(b,bits){
  var whole=bits>>3, rest=bits&7, i;
  for(i=0;i<whole;i++){ if(b[i]!==0) return false; }
  if(rest && (b[whole]>>(8-rest))!==0) return false;
  return true;
}
(async function(){
  var n=0, sub=(window.crypto&&crypto.subtle)?crypto.subtle:null,
      enc=(window.TextEncoder)?new TextEncoder():null;
  if(W>0){
    for(n=0;n<8000000;n++){
      var h;
      if(sub&&enc){ h=new Uint8Array(await sub.digest('SHA-256',enc.encode(C+'.'+n))); }
      else { h=sha(C+'.'+n); }
      if(zero(h,W)) break;
    }
  }
  location.replace(P+'?t='+encodeURIComponent(C)+'&a='+n+'&to='+encodeURIComponent(T));
})();
</script></body></html>
