// source --> https://hofmann-vratny.cz/wp-content/plugins/wpopal-core-features/assets/3rd-party/jquery.sticky-kit.min.js /* Sticky-kit v1.1.2 | WTFPL | Leaf Corcoran 2015 | http://leafo.net */ (function(){var b,f;b=this.jQuery||window.jQuery;f=b(window);b.fn.stick_in_parent=function(d){var A,w,J,n,B,K,p,q,k,E,t;null==d&&(d={});t=d.sticky_class;B=d.inner_scrolling;E=d.recalc_every;k=d.parent;q=d.offset_top;p=d.spacer;w=d.bottoming;null==q&&(q=0);null==k&&(k=void 0);null==B&&(B=!0);null==t&&(t="is_stuck");A=b(document);null==w&&(w=!0);J=function(a,d,n,C,F,u,r,G){var v,H,m,D,I,c,g,x,y,z,h,l;if(!a.data("sticky_kit")){a.data("sticky_kit",!0);I=A.height();g=a.parent();null!=k&&(g=g.closest(k)); if(!g.length)throw"failed to find stick parent";v=m=!1;(h=null!=p?p&&a.closest(p):b("
"))&&h.css("position",a.css("position"));x=function(){var c,f,e;if(!G&&(I=A.height(),c=parseInt(g.css("border-top-width"),10),f=parseInt(g.css("padding-top"),10),d=parseInt(g.css("padding-bottom"),10),n=g.offset().top+c+f,C=g.height(),m&&(v=m=!1,null==p&&(a.insertAfter(h),h.detach()),a.css({position:"",top:"",width:"",bottom:""}).removeClass(t),e=!0),F=a.offset().top-(parseInt(a.css("margin-top"),10)||0)-q, u=a.outerHeight(!0),r=a.css("float"),h&&h.css({width:a.outerWidth(!0),height:u,display:a.css("display"),"vertical-align":a.css("vertical-align"),"float":r}),e))return l()};x();if(u!==C)return D=void 0,c=q,z=E,l=function(){var b,l,e,k;if(!G&&(e=!1,null!=z&&(--z,0>=z&&(z=E,x(),e=!0)),e||A.height()===I||x(),e=f.scrollTop(),null!=D&&(l=e-D),D=e,m?(w&&(k=e+u+c>C+n,v&&!k&&(v=!1,a.css({position:"fixed",bottom:"",top:c}).trigger("sticky_kit:unbottom"))),eb&&!v&&(c-=l,c=Math.max(b-u,c),c=Math.min(q,c),m&&a.css({top:c+"px"})))):e>F&&(m=!0,b={position:"fixed",top:c},b.width="border-box"===a.css("box-sizing")?a.outerWidth()+"px":a.width()+"px",a.css(b).addClass(t),null==p&&(a.after(h),"left"!==r&&"right"!==r||h.append(a)),a.trigger("sticky_kit:stick")),m&&w&&(null==k&&(k=e+u+c>C+n),!v&&k)))return v=!0,"static"===g.css("position")&&g.css({position:"relative"}), a.css({position:"absolute",bottom:d,top:"auto"}).trigger("sticky_kit:bottom")},y=function(){x();return l()},H=function(){G=!0;f.off("touchmove",l);f.off("scroll",l);f.off("resize",y);b(document.body).off("sticky_kit:recalc",y);a.off("sticky_kit:detach",H);a.removeData("sticky_kit");a.css({position:"",bottom:"",top:"",width:""});g.position("position","");if(m)return null==p&&("left"!==r&&"right"!==r||a.insertAfter(h),h.remove()),a.removeClass(t)},f.on("touchmove",l),f.on("scroll",l),f.on("resize", y),b(document.body).on("sticky_kit:recalc",y),a.on("sticky_kit:detach",H),setTimeout(l,0)}};n=0;for(K=this.length;n https://hofmann-vratny.cz/wp-content/plugins/wpopal-core-features/assets/js/plugin.js ( function( $ ) { $( document ).ready( function (){ ////// /////// ////// accordion if( $( ".wpopal-accordion" ).length > 0 ){ var icons = { header: "ui-icon-circle-arrow-e", activeHeader: "ui-icon-circle-arrow-s" }; $( ".wpopal-accordion" ).accordion( { icons: icons, collapsible:true, heightStyle: "content" } ); } ////// product count $( '.quantity-box :button').click( function(){ var val = $('.quantity input', $(this).parent() ).val(); val = parseInt( val ); val = isNaN( val ) ? 0 : val; if( $(this).hasClass('minus') ){ val = val <= 0 ? 0 : val - 1; } if( $(this).hasClass('plus') ){ val = val + 1; } $('.quantity input', $(this).parent() ).val( val ); } ); ////// add slider for related product if( $( '.related .products' ).length ) { var container = $( '.related .products' ); var col = parseInt( container.attr('class').replace("products","").replace("columns-","").replace(/\s+/,"") ); var limited = $( '.related .products .product' ).length; if( limited > col ){ container.removeClass( 'columns-'+col ); var wrp = $('
'); container.wrapInner( wrp ); var _swiper = $('.swiper-container', container ); $(_swiper).append( $('
') ); $(_swiper).append( $('
') ); $(_swiper).append( $('
') ); $( '.product', _swiper).addClass( 'swiper-slide' ); var option = { navigation: { nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev' } }; if( option ){ option = $.extend( { slidesPerView: col, spaceBetween: 30, slidesPerGroup: col, slideClass:'swiper-slide', pagination: { el: '.swiper-pagination', clickable: true, }, breakpoints: { 1024: { slidesPerView: 2, spaceBetween: 30 }, 768: { slidesPerView: 1, spaceBetween: 10 }, 640: { slidesPerView: 1, spaceBetween: 10 }, 320: { slidesPerView: 1, spaceBetween: 10 } } }, option ); var swiper = new Swiper( _swiper , option ); } } } //// Product Add To Cart //// var cartstyle = ''; var $product; $('body').on('adding_to_cart', function (event, button) { $product = button.closest('.product'); }).on('added_to_cart', function () { var src = $product.find('img').first().attr('src'); var name = $product.find('.woocommerce-loop-product__title').text(); var template = '
'; template += '

'+name+'

'; template += '
'; $( "body" ).append( template ); setTimeout(function () { $('.add-to-cart-minibox').addClass('hide') ; }, 3000); }); /// account form if( $("#customer_login").length > 0 ) { $("#customer_login > div.u-column2, #customer_login h2" ).hide(); $("#customer_login > div" ).removeClass( 'col-1').removeClass('col-2'); $(".woocommerce-account-form .account-heading-tab a").click( function(){ $("#customer_login > div" ).hide(); $(".woocommerce-account-form .account-heading-tab a").removeClass('active'); $("#customer_login" ).find( $(this).data('target') ).show(); $(this).addClass('active'); return false; } ); $(".woocommerce-account-form .account-heading-tab a").first().click(); } /// sticky in /// if( $('body').hasClass('single-product-sticky') ){ var summarys = $('.single-product .entry-summary'); summarys.each(function() { var $column = $(this); var offsetTop = 40; $inner = $column.find('.summary-inner'); var $images = $column.parent().find('.woocommerce-product-gallery').wrapInner( "
" ); $images.imagesLoaded(function() { var diff = $inner.outerHeight() - $images.outerHeight(); if( diff < -200 ) { $inner.stick_in_parent({ offset_top: offsetTop }); } else if( diff > 200 ) { $images.stick_in_parent({ offset_top: offsetTop }); } $( window ).resize(function() { if ( $( window ).width() <= 1024 ) { $inner.trigger('sticky_kit:detach'); $images.trigger('sticky_kit:detach'); }else if( $inner.outerHeight() < $images.outerHeight() ) { $inner.stick_in_parent({ offset_top: offsetTop }); }else{ $images.stick_in_parent({ offset_top: offsetTop }); } }); }); }); }//// } ); } )( jQuery ); /* global tinymce, wpCookies, autosaveL10n, switchEditors */ // Back-compat window.opalwoofilter = function() { return true; }; /** * @summary Adds autosave to the window object on dom ready. * * @since 3.9.0 * * @param {jQuery} $ jQuery object. * @param {window} The window object. * */ ( function( $, window ) { /** * @summary Auto saves the post. * * @since 3.9.0 * * @returns {Object} * {{ * getPostData: getPostData, * getCompareString: getCompareString, * disableButtons: disableButtons, * enableButtons: enableButtons, * local: ({hasStorage, getSavedPostData, save, suspend, resume}|*), * server: ({tempBlockSave, triggerSave, postChanged, suspend, resume}|*)} * } * The object with all functions for autosave. */ function opalwoofilter() { var $document = $('html'); var $page = $( '#page-importer' ); var ajaxSelectors = '.widget_product_categories a, .widget_layered_nav_filters a, .woocommerce-widget-layered-nav a , .widget_rating_filter a, .page-numbers a, .woo-display-mode a, .woo-show-perpage a, .filter-product-brands a'; var loading = 0; /** * @summary Sets the autosave time out. * * Wait for TinyMCE to initialize plus 1 second. for any external css to finish loading, * then save to the textarea before setting initialCompareString. * This avoids any insignificant differences between the initial textarea content and the content * extracted from the editor. * * @since 3.9.0 * * @returns {void} */ function hanlde_ajax_sortable(){ $('body').on('change', "form.woocommerce-ordering select", function(){ $("form.woocommerce-ordering").submit(); } ); $('body').on('submit', "form.woocommerce-ordering", function () { var url = window.location.href; url = remove_url_params( 'orderby', url ); url = url.indexOf("?") == -1 ? url+"?"+$(this).serialize():url+"&"+$(this).serialize(); make_ajax_filter( url ); return false ; }); /// show top filter $('body').on( 'click', ".wpopal-filter-top-button", function(){ $(".sidebar-filter-content").toggleClass( 'active' ); return false; } ); } /** * */ function hanlder_ajax_loading( $toggle ) { loading = $toggle; if( $toggle == 1 ){ $('body').addClass('opal-filter-loading').append('
'); } else { $('body').removeClass('opal-filter-loading'); $('#opal-woocommerce-loading').remove(); } } function hanlde_load_more(){ $( 'body').on( 'click', ".load-more-wrap a" , function(){ var $columns = $("#primary .products").attr( 'class' ).replace(/\s*products\s*/,'').replace( /\s*columns-\s*/,'' ); // alert( _class ); hanlder_ajax_loading( 1 ); $.post( $(this).attr('href') , function( data ) { if (data) { var $html = $( data ); var products = $html.find("#primary").find(".products"); var url = $html.find(".load-more-wrap a").attr( 'href' ); //console.log( url ); if( $html.find(".load-more-wrap").hasClass('load-done') ) { $('body').find(".load-more-wrap a").attr( 'href' , url ).hide(); $('body').find(".load-more-wrap").addClass( 'load-done' ); } else { $('body').find(".load-more-wrap a").attr( 'href' , url ).show(); } $(products).find(".product-category").remove(); $("#primary .products").append( $(products).html() ); // update first and last class to fix broken layout. $("#primary .products > li").removeClass( 'first').removeClass('last'); // $("#primary .products > li").each( function(i){ var $loop_index = i+1; if ( 0 === ( $loop_index - 1 ) % $columns || 1 === $columns ) { $(this).addClass( 'first' ); } if ( 0 === $loop_index % $columns ) { $(this).addClass( 'last' ); } } ); hanlder_ajax_loading( 0 ); } } ); return false; } ); } function hanlde_infinite_ajax(){ if( $('body').find(".load-more-wrap.has-infinite").length ){ $( window ).on( 'scroll touchstart', function (){ $(this).trigger('wpopal_product_infinite_ajax'); }); $( window ).on( 'wpopal_product_infinite_ajax', function(){ var t = $(this), elem = $( "#primary .products .product" ).last(); if( typeof elem == 'undefined' ) { return; } if ( ! loading && ( t.scrollTop() + t.height() ) >= ( elem.offset().top + elem.height() ) ) { if( !$('body').find(".load-more-wrap").hasClass('load-done') ) { $(".load-more-wrap a").trigger( 'click' ); } } }) } } /** * @summary Sets the autosave time out. * * Wait for TinyMCE to initialize plus 1 second. for any external css to finish loading, * then save to the textarea before setting initialCompareString. * This avoids any insignificant differences between the initial textarea content and the content * extracted from the editor. * * @since 3.9.0 * * @returns {void} */ function hanlde_ajax_filters(){ $('body').on('click', ajaxSelectors, function () { var url = $(this).attr('href'); $( this ).toggleClass( 'active' ); make_ajax_filter( url ); return false ; }); // ajax for price filter /// $(document.body).bind('price_slider_change', function( event, min, max ){ var url = window.location.href; url = remove_url_params( 'min_price', url ); url = remove_url_params( 'max_price', url ); var sub = "min_price="+min+"&max_price="+max; url = url.indexOf("?") == -1 ? url + "?" + sub : url + "&" + sub; make_ajax_filter( url ); } ); } function remove_url_params( key, sourceURL ) { var rtn = sourceURL.split("?")[0], param, params_arr = [], queryString = (sourceURL.indexOf("?") !== -1) ? sourceURL.split("?")[1] : ""; if (queryString !== "") { params_arr = queryString.split("&"); for (var i = params_arr.length - 1; i >= 0; i -= 1) { param = params_arr[i].split("=")[0]; if (param === key) { params_arr.splice(i, 1); } } var _param = params_arr.join("&"); if( _param ){ rtn = rtn + "?" + _param; } } return rtn; } function make_ajax_filter( url ){ hanlder_ajax_loading( 1 ); $.post(url, function( data ) { if (data) { var $html = $( data ); render_ajax_content( $html, url ); hanlder_ajax_loading( 0 ); } } ); } function render_ajax_content( $html, url ){ var state = { woofilter: true, title : $html.filter( 'title' ).text(), sidebar : $html.find( '#sidebar-left-shop' ).html(), content : $html.find( '#primary' ).html(), filter : $html.find('.opal-canvas-filter-wrap' ).html(), }; $("html title").html( state.title ); $("#sidebar-left-shop").html( state.sidebar ); $("#primary").html( state.content ); init_price_filter(); window.history.pushState( {url:url}, state.title, url ); } function init_price_filter() { if( $( 'input#min_price, input#max_price' ).length ) { $( 'input#min_price, input#max_price' ).hide(); $( '.price_slider, .price_label' ).show(); var min_price = $( '.price_slider_amount #min_price' ).data( 'min' ), max_price = $( '.price_slider_amount #max_price' ).data( 'max' ), current_min_price = $( '.price_slider_amount #min_price' ).val(), current_max_price = $( '.price_slider_amount #max_price' ).val(); $( '.price_slider:not(.ui-slider)' ).slider({ range: true, animate: true, min: min_price, max: max_price, values: [ current_min_price, current_max_price ], create: function() { $( '.price_slider_amount #min_price' ).val( current_min_price ); $( '.price_slider_amount #max_price' ).val( current_max_price ); $( document.body ).trigger( 'price_slider_create', [ current_min_price, current_max_price ] ); }, slide: function( event, ui ) { $( 'input#min_price' ).val( ui.values[0] ); $( 'input#max_price' ).val( ui.values[1] ); $( document.body ).trigger( 'price_slider_slide', [ ui.values[0], ui.values[1] ] ); }, change: function( event, ui ) { $( document.body ).trigger( 'price_slider_change', [ ui.values[0], ui.values[1] ] ); } }); } } /// call to action now $( "body" ).ready( function(){ // processing ajax filter hanlde_ajax_filters(); hanlde_ajax_sortable(); hanlde_load_more(); hanlde_infinite_ajax(); } ); return { }; } /** @namespace wp */ window.wpopal = window.wpopal || {}; window.wpopal.opalwoofilter = opalwoofilter(); }( jQuery, window )); // source --> https://hofmann-vratny.cz/wp-content/themes/zoli/assets/js/theme.min.js?ver=1.0.4.1579703784 !function(){"use strict";var e=-1
')),t(this).find(".swiper-button-next").length||(t(this).append(t('
')),t(this).append(t('
'))),e){if((e=t.extend({navigation:{nextEl:".swiper-button-next",prevEl:".swiper-button-prev"},slidesPerView:3,spaceBetween:30,loop:!0,pagination:{el:".swiper-pagination",clickable:!0},breakpoints:{1024:{slidesPerView:1,spaceBetween:30},768:{slidesPerView:1,spaceBetween:10},640:{slidesPerView:1,spaceBetween:10},320:{slidesPerView:1,spaceBetween:10}}},e)).thumbnails_nav){var i=t(e.thumbnails_nav).data("swiper"),a=new Swiper(e.thumbnails_nav,i);e.thumbs={swiper:a}}new Swiper(this,e)}})};a(),t(document).ajaxComplete(function(){a()})}var n=t(".wpopal-blog-masonry-style");n.length&&n.imagesLoaded(function(){n.isotope({isOriginLeft:!t("body").hasClass("rtl"),itemSelector:".column-item"})}),t(".isotope-grid-play").each(function(){var i=t(this);i.imagesLoaded(function(){var e={isOriginLeft:!t("body").hasClass("rtl"),itemSelector:".column-item",percentPosition:!0};i.isotope(e)})}),t(".magnific-popup-iframe").magnificPopup({disableOn:700,type:"iframe",mainClass:"mfp-fade",removalDelay:160,preloader:!1,fixedContentPos:!1}),t(".open-popup-link").magnificPopup({type:"inline",mainClass:"mfp-with-fade",closeBtnInside:!0,removalDelay:1e3,callbacks:{beforeOpen:function(){this.st.mainClass="popup-animation-show"}},midClick:!0})})}(jQuery); // source --> https://hofmann-vratny.cz/wp-includes/js/wp-embed.min.js?ver=5.4.14 /*! This file is auto-generated */ !function(d,l){"use strict";var e=!1,n=!1;if(l.querySelector)if(d.addEventListener)e=!0;if(d.wp=d.wp||{},!d.wp.receiveEmbedMessage)if(d.wp.receiveEmbedMessage=function(e){var t=e.data;if(t)if(t.secret||t.message||t.value)if(!/[^a-zA-Z0-9]/.test(t.secret)){for(var r,i,a,s=l.querySelectorAll('iframe[data-secret="'+t.secret+'"]'),n=l.querySelectorAll('blockquote[data-secret="'+t.secret+'"]'),o=new RegExp("^https?:$","i"),c=0;c https://hofmann-vratny.cz/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=2.9.14 /*! elementor - v2.9.14 - 21-07-2020 */ !function(t){var e={};function __webpack_require__(n){if(e[n])return e[n].exports;var r=e[n]={i:n,l:!1,exports:{}};return t[n].call(r.exports,r,r.exports,__webpack_require__),r.l=!0,r.exports}__webpack_require__.m=t,__webpack_require__.c=e,__webpack_require__.d=function(t,e,n){__webpack_require__.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},__webpack_require__.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},__webpack_require__.t=function(t,e){if(1&e&&(t=__webpack_require__(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(__webpack_require__.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)__webpack_require__.d(n,r,function(e){return t[e]}.bind(null,r));return n},__webpack_require__.n=function(t){var e=t&&t.__esModule?function getDefault(){return t.default}:function getModuleExports(){return t};return __webpack_require__.d(e,"a",e),e},__webpack_require__.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},__webpack_require__.p="",__webpack_require__(__webpack_require__.s=753)}([function(t,e){t.exports=function _interopRequireDefault(t){return t&&t.__esModule?t:{default:t}}},function(t,e,n){t.exports=n(148)},function(t,e){t.exports=function _classCallCheck(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}},function(t,e,n){var r=n(1);function _defineProperties(t,e){for(var n=0;n1?arguments[1]:void 0)}}),n(78)("find")},function(t,e,n){var r=n(26);t.exports=function(t){if(!r(t))throw TypeError(t+" is not an object!");return t}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){var r=n(104),o=n(56);t.exports=function(t){return r(o(t))}},function(t,e,n){var r=n(137),o=n(195),i=n(198);function _get(e,n,u){return"undefined"!=typeof Reflect&&o?t.exports=_get=o:t.exports=_get=function _get(t,e,n){var o=i(t,e);if(o){var u=r(o,e);return u.get?u.get.call(n):u.value}},_get(e,n,u||e)}t.exports=_get},function(t,e,n){t.exports=n(199)},function(t,e,n){var r=n(16),o=n(43);t.exports=n(13)?function(t,e,n){return r.f(t,e,o(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){t.exports=!n(28)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){var r=n(44),o=n(91);t.exports=n(25)?function(t,e,n){return r.f(t,e,o(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){var r=n(44).f,o=Function.prototype,i=/^\s*function ([^ (]*)/;"name"in o||n(25)&&r(o,"name",{configurable:!0,get:function(){try{return(""+this).match(i)[1]}catch(t){return""}}})},function(t,e,n){var r=n(42);t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,o){return t.call(e,n,r,o)}}return function(){return t.apply(e,arguments)}}},function(t,e,n){var r=n(56);t.exports=function(t){return Object(r(t))}},function(t,e,n){var r=n(15),o=n(45),i=n(27),u=n(33),c=n(58),$export=function(t,e,n){var s,a,f,l,p=t&$export.F,v=t&$export.G,h=t&$export.S,d=t&$export.P,g=t&$export.B,y=v?r:h?r[e]||(r[e]={}):(r[e]||{}).prototype,m=v?o:o[e]||(o[e]={}),_=m.prototype||(m.prototype={});for(s in v&&(n=e),n)f=((a=!p&&y&&void 0!==y[s])?y:n)[s],l=g&&a?c(f,r):d&&"function"==typeof f?c(Function.call,f):f,y&&u(y,s,f,t&$export.U),m[s]!=f&&i(m,s,l),d&&_[s]!=f&&(_[s]=f)};r.core=o,$export.F=1,$export.G=2,$export.S=4,$export.P=8,$export.B=16,$export.W=32,$export.U=64,$export.R=128,t.exports=$export},function(t,e,n){var r=n(15),o=n(27),i=n(54),u=n(64)("src"),c=n(126),s=(""+c).split("toString");n(45).inspectSource=function(t){return c.call(t)},(t.exports=function(t,e,n,c){var a="function"==typeof n;a&&(i(n,"name")||o(n,"name",e)),t[e]!==n&&(a&&(i(n,u)||o(n,u,t[e]?""+t[e]:s.join(String(e)))),t===r?t[e]=n:c?t[e]?t[e]=n:o(t,e,n):(delete t[e],o(t,e,n)))})(Function.prototype,"toString",(function toString(){return"function"==typeof this&&this[u]||c.call(this)}))},function(t,e){t.exports={}},,function(t,e){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var r=n(113),o=n(73);t.exports=Object.keys||function keys(t){return r(t,o)}},,function(t,e,n){var r=n(138),o=n(105);function _typeof(e){return t.exports=_typeof="function"==typeof o&&"symbol"==typeof r?function _typeof(t){return typeof t}:function _typeof(t){return t&&"function"==typeof o&&t.constructor===o&&t!==o.prototype?"symbol":typeof t},_typeof(e)}t.exports=_typeof},function(t,e,n){var r=n(50),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var r=n(18),o=n(116),i=n(108),u=Object.defineProperty;e.f=n(25)?Object.defineProperty:function defineProperty(t,e,n){if(r(t),e=i(e,!0),r(n),o)try{return u(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},function(t,e){var n=t.exports={version:"2.6.11"};"number"==typeof __e&&(__e=n)},function(t,e){t.exports=!0},function(t,e,n){var r=n(12),o=n(128),i=n(73),u=n(70)("IE_PROTO"),Empty=function(){},createDict=function(){var t,e=n(92)("iframe"),r=i.length;for(e.style.display="none",n(129).appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write("