[ Avaa Bypassed ]




Upload:

Command:

www-data@3.144.124.77: ~ $
/******/ (() => { // webpackBootstrap
/******/ 	"use strict";
var __webpack_exports__ = {};

;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/typeof.js
function _typeof(o) {
  "@babel/helpers - typeof";

  return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
    return typeof o;
  } : function (o) {
    return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
  }, _typeof(o);
}
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/toPrimitive.js

function _toPrimitive(input, hint) {
  if (_typeof(input) !== "object" || input === null) return input;
  var prim = input[Symbol.toPrimitive];
  if (prim !== undefined) {
    var res = prim.call(input, hint || "default");
    if (_typeof(res) !== "object") return res;
    throw new TypeError("@@toPrimitive must return a primitive value.");
  }
  return (hint === "string" ? String : Number)(input);
}
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/toPropertyKey.js


function _toPropertyKey(arg) {
  var key = _toPrimitive(arg, "string");
  return _typeof(key) === "symbol" ? key : String(key);
}
;// CONCATENATED MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js

function _defineProperty(obj, key, value) {
  key = _toPropertyKey(key);
  if (key in obj) {
    Object.defineProperty(obj, key, {
      value: value,
      enumerable: true,
      configurable: true,
      writable: true
    });
  } else {
    obj[key] = value;
  }
  return obj;
}
;// CONCATENATED MODULE: ./assets/js/customSlider.js

(function ($) {
  'use strict';

  $.fn.MzbTicker = function (options) {
    /*Merge options and default options*/
    var opts = $.extend({}, $.fn.MzbTicker.defaults, options);

    /*Functions Scope*/
    var thisTicker = $(this),
      intervalID,
      timeoutID,
      isPause = false;

    /*Always wrap, used in many place*/
    thisTicker.wrap("<div class='mzbticker-wrap'></div>");

    /*Wrap is always relative*/
    thisTicker.parent().css({
      position: 'relative'
    });
    /*Hide expect first*/
    thisTicker.children('li').not(':first').hide();

    /*Lets init*/
    init();
    function init() {
      switch (opts.type) {
        case 'vertical':
        case 'horizontal':
          vertiZontal();
          break;
        default:
          break;
      }
    }

    /*Vertical - horizontal
    * **Do not change code lines*/
    function vertiZontal() {
      var prevNext = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
      var speed = opts.speed,
        autoplay = opts.autoplay,
        direction = opts.direction;
      if (prevNext) {
        speed = 0;
        autoplay = 0;
        clearInterval(intervalID);
        intervalID = false;
      }
      function play() {
        if (isPause) {
          clearInterval(intervalID);
          intervalID = false;
          return false;
        }
        var dChild, eqType, mType, mVal;
        dChild = thisTicker.find('li:first');
        if (direction === 'up' || direction === 'right') {
          eqType = '-=';
        } else {
          eqType = '+=';
        }
        if (opts.type === 'horizontal') {
          mType = 'left';
          mVal = dChild.outerWidth(true);
        } else {
          mType = 'margin-top';
          mVal = dChild.outerHeight(true);
        }
        if (prevNext === 'prev') {
          thisTicker.find('li:last').detach().prependTo(thisTicker);
        } else {
          dChild.detach().appendTo(thisTicker);
        }
        thisTicker.find('li').css({
          opacity: '0',
          display: 'none'
        });
        thisTicker.find('li:first').css(_defineProperty({
          opacity: '1',
          position: 'absolute',
          display: 'block',
          width: '100%'
        }, mType, eqType + mVal + 'px'));
        thisTicker.find('li:first').animate(_defineProperty({}, mType, '0px'), speed, function () {
          clearInterval(intervalID);
          intervalID = false;
          vertiZontal();
        });
      }
      if (intervalID) {
        return false;
      }
      intervalID = setInterval(play, autoplay);
    }

    /*Type-Writer
    * **Do not change code lines*/
    function typeWriter() {
      var prevNext = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
      if (isPause) {
        return false;
      }
      if (prevNext) {
        clearInterval(intervalID);
        intervalID = false;
        clearTimeout(timeoutID);
        timeoutID = false;
        if (prevNext === 'prev') {
          thisTicker.find('li:last').detach().prependTo(thisTicker);
        } else {
          thisTicker.find('li:first').detach().appendTo(thisTicker);
        }
      }
      var speed = opts.speed,
        autoplay = opts.autoplay,
        typeEl = thisTicker.find('li:first'),
        wrapEl = typeEl.children(),
        count = 0;
      if (typeEl.attr('data-text')) {
        wrapEl.text(typeEl.attr('data-text'));
      }
      var allText = typeEl.text();
      thisTicker.find('li').css({
        opacity: '0',
        display: 'none'
      });
      function tNext() {
        thisTicker.find('li:first').detach().appendTo(thisTicker);
        clearTimeout(timeoutID);
        timeoutID = false;
        typeWriter();
      }
      function type() {
        count++;
        var typeText = allText.substring(0, count);
        if (!typeEl.attr('data-text')) {
          typeEl.attr('data-text', allText);
        }
        if (count <= allText.length) {
          wrapEl.text(typeText);
          typeEl.css({
            opacity: '1',
            display: 'block'
          });
        } else {
          clearInterval(intervalID);
          intervalID = false;
          timeoutID = setTimeout(tNext, autoplay);
        }
      }
      if (!intervalID) {
        intervalID = setInterval(type, speed);
      }
    }
  };

  // plugin defaults - added as a property on our plugin function
  $.fn.MzbTicker.defaults = {
    /*Note: Marquee only take speed not autoplay*/
    type: 'horizontal',
    /*vertical/horizontal/marquee/typewriter*/
    autoplay: 2000,
    /*true/false/number*/ /*For vertical/horizontal 4000*/ /*For typewriter 2000*/
    speed: 50,
    /*true/false/number*/ /*For vertical/horizontal 600*/ /*For marquee 0.05*/ /*For typewriter 50*/
    direction: 'up',
    /*up/down/left/right*/ /*For vertical up/down*/ /*For horizontal/marquee right/left*/ /*For typewriter direction doesnot work*/
    pauseOnFocus: true,
    pauseOnHover: true,
    controls: {
      prev: '',
      /*Can be used for vertical/horizontal/typewriter*/ /*not work for marquee*/
      next: '',
      /*Can be used for vertical/horizontal/typewriter*/ /*not work for marquee*/
      toggle: '' /*Can be used for vertical/horizontal/marquee/typewriter*/
    }
  };
})(jQuery);
/******/ })()
;

Filemanager

Name Type Size Permission Actions
advertisement Folder 0777
banner-posts Folder 0777
category-list Folder 0777
column Folder 0777
date-weather Folder 0777
featured-categories Folder 0777
featured-posts Folder 0777
grid-module Folder 0777
heading Folder 0777
news-ticker Folder 0777
post-list Folder 0777
post-video Folder 0777
section Folder 0777
slider Folder 0777
social-icon Folder 0777
social-icons Folder 0777
tab-post Folder 0777
49f9520e9ca04b8812e26bf548c09eae.webp File 29.54 KB 0644
50182020c1d8948d44cd67c70030cc11.jpg File 327.39 KB 0644
5e0119d5e262c4119039e6137d0c94d6.webp File 9.61 KB 0644
6ec9d263fb46252dd146d64ffbc28d69.webp File 7.62 KB 0644
6f863fcb56d8b6cb186730f36584df65.webp File 7.66 KB 0644
73e84ecf138c39fb2c97167a5f9e82a2.webp File 34.93 KB 0644
953555118c8f835b30db43e927efe1b3.webp File 69.83 KB 0644
a020ba77a9e60b3ab59df0f9d798f142.webp File 11.26 KB 0644
bf7d11b17f85f0181710e4c28be8174b.webp File 38.51 KB 0644
blocks.asset.php File 276 B 0644
blocks.css File 27.83 KB 0644
blocks.js File 1.53 MB 0644
blocks.min.js File 1.04 MB 0644
customSlider.js.asset.php File 84 B 0644
customSlider.js.js File 6.78 KB 0644
customSlider.min.js.js File 2.34 KB 0644
dashboard.asset.php File 172 B 0644
dashboard.js File 1.94 MB 0644
dashboard.min.js File 987.64 KB 0644
edefcb9e8e52ef39ce7fdef6eab4b904.webp File 8.13 KB 0644
f7346e9b478a5ef6043bcfd5a5e04922.png File 2.41 KB 0644
frontend-utils.asset.php File 98 B 0644
frontend-utils.js File 100.2 KB 0644
frontend-utils.min.js File 56.74 KB 0644
frontend.js.asset.php File 98 B 0644
frontend.js.js File 99.28 KB 0644
frontend.min.js.js File 56.22 KB 0644
icons.json File 137.52 KB 0644
mzb.js.asset.php File 84 B 0644
mzb.js.js File 301 B 0644
mzb.min.js.js File 155 B 0644
style-blocks.css File 47.59 KB 0644