/*! * jQuery blockUI plugin * Version 2.71.0-2020.12.08 * Requires jQuery v1.12 or later * * Examples at: http://malsup.com/jquery/block/ * Copyright (c) 2007-2013 M. Alsup * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/licenses/gpl.html * * Thanks to Amir-Hossein Sobhi for some excellent contributions! */ ;(function() { /*jshint eqeqeq:false curly:false latedef:false */ "use strict"; function setup($) { var migrateDeduplicateWarnings = jQuery.migrateDeduplicateWarnings || false; jQuery.migrateDeduplicateWarnings = false; $.fn._fadeIn = $.fn.fadeIn; var noOp = $.noop || function() {}; // this bit is to ensure we don't call setExpression when we shouldn't (with extra muscle to handle // confusing userAgent strings on Vista) var msie = /MSIE/.test(navigator.userAgent); var ie6 = /MSIE 6.0/.test(navigator.userAgent) && ! /MSIE 8.0/.test(navigator.userAgent); var mode = document.documentMode || 0; var setExpr = "function" === typeof document.createElement('div').style.setExpression; // global $ methods for blocking/unblocking the entire page $.blockUI = function(opts) { install(window, opts); }; $.unblockUI = function(opts) { remove(window, opts); }; // convenience method for quick growl-like notifications (http://www.google.com/search?q=growl) $.growlUI = function(title, message, timeout, onClose) { var $m = $('
'); if (title) $m.append('

'+title+'

'); if (message) $m.append('

'+message+'

'); if (timeout === undefined) timeout = 3000; // Added by konapun: Set timeout to 30 seconds if this growl is moused over, like normal toast notifications var callBlock = function(opts) { opts = opts || {}; $.blockUI({ message: $m, fadeIn : typeof opts.fadeIn !== 'undefined' ? opts.fadeIn : 700, fadeOut: typeof opts.fadeOut !== 'undefined' ? opts.fadeOut : 1000, timeout: typeof opts.timeout !== 'undefined' ? opts.timeout : timeout, centerY: false, showOverlay: false, onUnblock: onClose, css: $.blockUI.defaults.growlCSS }); }; callBlock(); var nonmousedOpacity = $m.css('opacity'); $m.on('mouseover', function() { callBlock({ fadeIn: 0, timeout: 30000 }); var displayBlock = $('.blockMsg'); displayBlock.stop(); // cancel fadeout if it has started displayBlock.fadeTo(300, 1); // make it easier to read the message by removing transparency }).on('mouseout', function() { $('.blockMsg').fadeOut(1000); }); // End konapun additions }; // plugin method for blocking element content $.fn.block = function(opts) { if ( this[0] === window ) { $.blockUI( opts ); return this; } var fullOpts = $.extend({}, $.blockUI.defaults, opts || {}); this.each(function() { var $el = $(this); if (fullOpts.ignoreIfBlocked && $el.data('blockUI.isBlocked')) return; $el.unblock({ fadeOut: 0 }); }); return this.each(function() { if ($.css(this,'position') == 'static') { this.style.position = 'relative'; $(this).data('blockUI.static', true); } this.style.zoom = 1; // force 'hasLayout' in ie install(this, opts); }); }; // plugin method for unblocking element content $.fn.unblock = function(opts) { if ( this[0] === window ) { $.unblockUI( opts ); return this; } return this.each(function() { remove(this, opts); }); }; $.blockUI.version = 2.70; // 2nd generation blocking at no extra cost! // override these in your code to change the default behavior and style $.blockUI.defaults = { // message displayed when blocking (use null for no message) message: '

Please wait...

', title: null, // title string; only used when theme == true draggable: true, // only used when theme == true (requires jquery-ui.js to be loaded) theme: false, // set to true to use with jQuery UI themes // styles for the message when blocking; if you wish to disable // these and use an external stylesheet then do this in your code: // $.blockUI.defaults.css = {}; css: { padding: 0, margin: 0, width: '30%', top: '40%', left: '35%', textAlign: 'center', color: '#000', border: '3px solid #aaa', backgroundColor:'#fff', cursor: 'wait' }, // minimal style set used when themes are used themedCSS: { width: '30%', top: '40%', left: '35%' }, // styles for the overlay overlayCSS: { backgroundColor: '#000', opacity: 0.6, cursor: 'wait' }, // style to replace wait cursor before unblocking to correct issue // of lingering wait cursor cursorReset: 'default', // styles applied when using $.growlUI growlCSS: { width: '350px', top: '10px', left: '', right: '10px', border: 'none', padding: '5px', opacity: 0.6, cursor: 'default', color: '#fff', backgroundColor: '#000', '-webkit-border-radius':'10px', '-moz-border-radius': '10px', 'border-radius': '10px' }, // IE issues: 'about:blank' fails on HTTPS and javascript:false is s-l-o-w // (hat tip to Jorge H. N. de Vasconcelos) /*jshint scripturl:true */ iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank', // force usage of iframe in non-IE browsers (handy for blocking applets) forceIframe: false, // z-index for the blocking overlay baseZ: 1000, // set these to true to have the message automatically centered centerX: true, // <-- only effects element blocking (page block controlled via css above) centerY: true, // allow body element to be stetched in ie6; this makes blocking look better // on "short" pages. disable if you wish to prevent changes to the body height allowBodyStretch: true, // enable if you want key and mouse events to be disabled for content that is blocked bindEvents: true, // be default blockUI will suppress tab navigation from leaving blocking content // (if bindEvents is true) constrainTabKey: true, // fadeIn time in millis; set to 0 to disable fadeIn on block fadeIn: 200, // fadeOut time in millis; set to 0 to disable fadeOut on unblock fadeOut: 400, // time in millis to wait before auto-unblocking; set to 0 to disable auto-unblock timeout: 0, // disable if you don't want to show the overlay showOverlay: true, // if true, focus will be placed in the first available input field when // page blocking focusInput: true, // elements that can receive focus focusableElements: ':input:enabled:visible', // suppresses the use of overlay styles on FF/Linux (due to performance issues with opacity) // no longer needed in 2012 // applyPlatformOpacityRules: true, // callback method invoked when fadeIn has completed and blocking message is visible onBlock: null, // callback method invoked when unblocking has completed; the callback is // passed the element that has been unblocked (which is the window object for page // blocks) and the options that were passed to the unblock call: // onUnblock(element, options) onUnblock: null, // callback method invoked when the overlay area is clicked. // setting this will turn the cursor to a pointer, otherwise cursor defined in overlayCss will be used. onOverlayClick: null, // don't ask; if you really must know: http://groups.google.com/group/jquery-en/browse_thread/thread/36640a8730503595/2f6a79a77a78e493#2f6a79a77a78e493 quirksmodeOffsetHack: 4, // class name of the message block blockMsgClass: 'blockMsg', // if it is already blocked, then ignore it (don't unblock and reblock) ignoreIfBlocked: false }; // private data and functions follow... var pageBlock = null; var pageBlockEls = []; function install(el, opts) { var css, themedCSS; var full = (el == window); var msg = (opts && opts.message !== undefined ? opts.message : undefined); opts = $.extend({}, $.blockUI.defaults, opts || {}); if (opts.ignoreIfBlocked && $(el).data('blockUI.isBlocked')) return; opts.overlayCSS = $.extend({}, $.blockUI.defaults.overlayCSS, opts.overlayCSS || {}); css = $.extend({}, $.blockUI.defaults.css, opts.css || {}); if (opts.onOverlayClick) opts.overlayCSS.cursor = 'pointer'; themedCSS = $.extend({}, $.blockUI.defaults.themedCSS, opts.themedCSS || {}); msg = msg === undefined ? opts.message : msg; // remove the current block (if there is one) if (full && pageBlock) remove(window, {fadeOut:0}); // if an existing element is being used as the blocking content then we capture // its current place in the DOM (and current display style) so we can restore // it when we unblock if (msg && typeof msg != 'string' && (msg.parentNode || msg.jquery)) { var node = msg.jquery ? msg[0] : msg; var data = {}; $(el).data('blockUI.history', data); data.el = node; data.parent = node.parentNode; data.display = node.style.display; data.position = node.style.position; if (data.parent) data.parent.removeChild(node); } $(el).data('blockUI.onUnblock', opts.onUnblock); var z = opts.baseZ; // blockUI uses 3 layers for blocking, for simplicity they are all used on every platform; // layer1 is the iframe layer which is used to suppress bleed through of underlying content // layer2 is the overlay layer which has opacity and a wait cursor (by default) // layer3 is the message content that is displayed while blocking var lyr1, lyr2, lyr3, s; if (msie || opts.forceIframe) lyr1 = $(''); else lyr1 = $(''); if (opts.theme) lyr2 = $(''); else lyr2 = $(''); if (opts.theme && full) { s = ''; } else if (opts.theme) { s = ''; } else if (full) { s = ''; } else { s = ''; } lyr3 = $(s); // if we have a message, style it if (msg) { if (opts.theme) { lyr3.css(themedCSS); lyr3.addClass('ui-widget-content'); } else lyr3.css(css); } // style the overlay if (!opts.theme /*&& (!opts.applyPlatformOpacityRules)*/) lyr2.css(opts.overlayCSS); lyr2.css('position', full ? 'fixed' : 'absolute'); // make iframe layer transparent in IE if (msie || opts.forceIframe) lyr1.css('opacity',0.0); //$([lyr1[0],lyr2[0],lyr3[0]]).appendTo(full ? 'body' : el); var layers = [lyr1,lyr2,lyr3], $par = full ? $('body') : $(el); $.each(layers, function() { this.appendTo($par); }); if (opts.theme && opts.draggable && $.fn.draggable) { lyr3.draggable({ handle: '.ui-dialog-titlebar', cancel: 'li' }); } // ie7 must use absolute positioning in quirks mode and to account for activex issues (when scrolling) var expr = setExpr && ( "CSS1Compat" !== document.compatMode || $('object,embed', full ? null : el).length > 0); if (ie6 || expr) { // give body 100% height if (full && opts.allowBodyStretch && "CSS1Compat" === document.compatMode) $('html,body').css('height','100%'); // fix ie6 issue when blocked element has a border width if ((ie6 || "CSS1Compat" !== document.compatMode) && !full) { var t = sz(el,'borderTopWidth'), l = sz(el,'borderLeftWidth'); var fixT = t ? '(0 - '+t+')' : 0; var fixL = l ? '(0 - '+l+')' : 0; } // simulate fixed position $.each(layers, function(i,o) { var s = o[0].style; s.position = 'absolute'; if (i < 2) { if (full) s.setExpression('height','Math.max(document.body.scrollHeight, document.body.offsetHeight) - ("CSS1Compat" === document.compatMode?0:'+opts.quirksmodeOffsetHack+') + "px"'); else s.setExpression('height','this.parentNode.offsetHeight + "px"'); if (full) s.setExpression('width','"CSS1Compat" === document.compatMode && document.documentElement.clientWidth || document.body.clientWidth + "px"'); else s.setExpression('width','this.parentNode.offsetWidth + "px"'); if (fixL) s.setExpression('left', fixL); if (fixT) s.setExpression('top', fixT); } else if (opts.centerY) { if (full) s.setExpression('top','(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"'); s.marginTop = 0; } else if (!opts.centerY && full) { var top = (opts.css && opts.css.top) ? parseInt(opts.css.top, 10) : 0; var expression = '((document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + '+top+') + "px"'; s.setExpression('top',expression); } }); } // show the message if (msg) { if (opts.theme) lyr3.find('.ui-widget-content').append(msg); else lyr3.append(msg); if (msg.jquery || msg.nodeType) $(msg).show(); } if ((msie || opts.forceIframe) && opts.showOverlay) lyr1.show(); // opacity is zero if (opts.fadeIn) { var cb = opts.onBlock ? opts.onBlock : noOp; var cb1 = (opts.showOverlay && !msg) ? cb : noOp; var cb2 = msg ? cb : noOp; if (opts.showOverlay) lyr2._fadeIn(opts.fadeIn, cb1); if (msg) lyr3._fadeIn(opts.fadeIn, cb2); } else { if (opts.showOverlay) lyr2.show(); if (msg) lyr3.show(); if (opts.onBlock) opts.onBlock.bind(lyr3)(); } // bind key and mouse events bind(1, el, opts); if (full) { pageBlock = lyr3[0]; pageBlockEls = $(opts.focusableElements,pageBlock); if (opts.focusInput) setTimeout(focus, 20); } else center(lyr3[0], opts.centerX, opts.centerY); if (opts.timeout) { // auto-unblock var to = setTimeout(function() { if (full) $.unblockUI(opts); else $(el).unblock(opts); }, opts.timeout); $(el).data('blockUI.timeout', to); } } // remove the block function remove(el, opts) { var count; var full = (el == window); var $el = $(el); var data = $el.data('blockUI.history'); var to = $el.data('blockUI.timeout'); if (to) { clearTimeout(to); $el.removeData('blockUI.timeout'); } opts = $.extend({}, $.blockUI.defaults, opts || {}); bind(0, el, opts); // unbind events if (opts.onUnblock === null) { opts.onUnblock = $el.data('blockUI.onUnblock'); $el.removeData('blockUI.onUnblock'); } var els; if (full) // crazy selector to handle odd field errors in ie6/7 els = $('body').children().filter('.blockUI').add('body > .blockUI'); else els = $el.find('>.blockUI'); // fix cursor issue if ( opts.cursorReset ) { if ( els.length > 1 ) els[1].style.cursor = opts.cursorReset; if ( els.length > 2 ) els[2].style.cursor = opts.cursorReset; } if (full) pageBlock = pageBlockEls = null; if (opts.fadeOut) { count = els.length; els.stop().fadeOut(opts.fadeOut, function() { if ( --count === 0) reset(els,data,opts,el); }); } else reset(els, data, opts, el); } // move blocking element back into the DOM where it started function reset(els,data,opts,el) { var $el = $(el); if ( $el.data('blockUI.isBlocked') ) return; els.each(function(i,o) { // remove via DOM calls so we don't lose event handlers if (this.parentNode) this.parentNode.removeChild(this); }); if (data && data.el) { data.el.style.display = data.display; data.el.style.position = data.position; data.el.style.cursor = 'default'; // #59 if (data.parent) data.parent.appendChild(data.el); $el.removeData('blockUI.history'); } if ($el.data('blockUI.static')) { $el.css('position', 'static'); // #22 } if (typeof opts.onUnblock == 'function') opts.onUnblock(el,opts); // fix issue in Safari 6 where block artifacts remain until reflow var body = $(document.body), w = body.width(), cssW = body[0].style.width; body.width(w-1).width(w); body[0].style.width = cssW; } // bind/unbind the handler function bind(b, el, opts) { var full = el == window, $el = $(el); // don't bother unbinding if there is nothing to unbind if (!b && (full && !pageBlock || !full && !$el.data('blockUI.isBlocked'))) return; $el.data('blockUI.isBlocked', b); // don't bind events when overlay is not in use or if bindEvents is false if (!full || !opts.bindEvents || (b && !opts.showOverlay)) return; // bind anchors and inputs for mouse and key events var events = 'mousedown mouseup keydown keypress keyup touchstart touchend touchmove'; if (b) $(document).on(events, opts, handler); else $(document).off(events, handler); // former impl... // var $e = $('a,:input'); // b ? $e.bind(events, opts, handler) : $e.unbind(events, handler); } // event handler to suppress keyboard/mouse events when blocking function handler(e) { // allow tab navigation (conditionally) if (e.type === 'keydown' && e.keyCode && e.keyCode == 9) { if (pageBlock && e.data.constrainTabKey) { var els = pageBlockEls; var fwd = !e.shiftKey && e.target === els[els.length-1]; var back = e.shiftKey && e.target === els[0]; if (fwd || back) { setTimeout(function(){focus(back);},10); return false; } } } var opts = e.data; var target = $(e.target); if (target.hasClass('blockOverlay') && opts.onOverlayClick) opts.onOverlayClick(e); // allow events within the message content if (target.parents('div.' + opts.blockMsgClass).length > 0) return true; // allow events for content that is not being blocked return target.parents().children().filter('div.blockUI').length === 0; } function focus(back) { if (!pageBlockEls) return; var e = pageBlockEls[back===true ? pageBlockEls.length-1 : 0]; if (e) e.focus(); } function center(el, x, y) { var p = el.parentNode, s = el.style; var l = ((p.offsetWidth - el.offsetWidth)/2) - sz(p,'borderLeftWidth'); var t = ((p.offsetHeight - el.offsetHeight)/2) - sz(p,'borderTopWidth'); if (x) s.left = l > 0 ? (l+'px') : '0'; if (y) s.top = t > 0 ? (t+'px') : '0'; } function sz(el, p) { return parseInt($.css(el,p),10)||0; } jQuery.migrateDeduplicateWarnings = migrateDeduplicateWarnings; } /*global define:true */ if (typeof define === 'function' && define.amd && define.amd.jQuery) { define(['jquery'], setup); } else { setup(jQuery); } })(); /*! elementor-pro - v4.2.0 - 19-08-2026 */ .elementor.product .woocommerce-product-gallery__trigger+.woocommerce-product-gallery__wrapper{overflow:hidden}.woocommerce .elementor-widget-woocommerce-product-images span.onsale{padding:0}body.woocommerce #content div.product .elementor-widget-woocommerce-product-images div.images,body.woocommerce div.product .elementor-widget-woocommerce-product-images div.images,body.woocommerce-page #content div.product .elementor-widget-woocommerce-product-images div.images,body.woocommerce-page div.product .elementor-widget-woocommerce-product-images div.images{float:none;padding:0;width:100%}body.rtl.woocommerce #content div.product .elementor-widget-woocommerce-product-images div.images,body.rtl.woocommerce div.product .elementor-widget-woocommerce-product-images div.images,body.rtl.woocommerce-page #content div.product .elementor-widget-woocommerce-product-images div.images,body.rtl.woocommerce-page div.product .elementor-widget-woocommerce-product-images div.images{float:none;padding:0}HTML.Trusted TYPE: bool VERSION: 2.0.0 DEFAULT: false --DESCRIPTION-- Indicates whether or not the user input is trusted or not. If the input is trusted, a more expansive set of allowed tags and attributes will be used. See also %CSS.Trusted. --# vim: et sw=4 sts=4 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ /***/ "../node_modules/@babel/runtime/helpers/OverloadYield.js": /*!***************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/OverloadYield.js ***! \***************************************************************/ /***/ ((module) => { function _OverloadYield(e, d) { this.v = e, this.k = d; } module.exports = _OverloadYield, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/assertThisInitialized.js": /*!***********************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/assertThisInitialized.js ***! \***********************************************************************/ /***/ ((module) => { function _assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; } module.exports = _assertThisInitialized, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/asyncToGenerator.js": /*!******************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/asyncToGenerator.js ***! \******************************************************************/ /***/ ((module) => { function asyncGeneratorStep(n, t, e, r, o, a, c) { try { var i = n[a](c), u = i.value; } catch (n) { return void e(n); } i.done ? t(u) : Promise.resolve(u).then(r, o); } function _asyncToGenerator(n) { return function () { var t = this, e = arguments; return new Promise(function (r, o) { var a = n.apply(t, e); function _next(n) { asyncGeneratorStep(a, r, o, _next, _throw, "next", n); } function _throw(n) { asyncGeneratorStep(a, r, o, _next, _throw, "throw", n); } _next(void 0); }); }; } module.exports = _asyncToGenerator, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/classCallCheck.js": /*!****************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/classCallCheck.js ***! \****************************************************************/ /***/ ((module) => { function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); } module.exports = _classCallCheck, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/createClass.js": /*!*************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/createClass.js ***! \*************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../node_modules/@babel/runtime/helpers/toPropertyKey.js"); function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, toPropertyKey(o.key), o); } } function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; } module.exports = _createClass, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/defineProperty.js": /*!****************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/defineProperty.js ***! \****************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ "../node_modules/@babel/runtime/helpers/toPropertyKey.js"); function _defineProperty(e, r, t) { return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; } module.exports = _defineProperty, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/get.js": /*!*****************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/get.js ***! \*****************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var superPropBase = __webpack_require__(/*! ./superPropBase.js */ "../node_modules/@babel/runtime/helpers/superPropBase.js"); function _get() { return module.exports = _get = "undefined" != typeof Reflect && Reflect.get ? Reflect.get.bind() : function (e, t, r) { var p = superPropBase(e, t); if (p) { var n = Object.getOwnPropertyDescriptor(p, t); return n.get ? n.get.call(arguments.length < 3 ? e : r) : n.value; } }, module.exports.__esModule = true, module.exports["default"] = module.exports, _get.apply(null, arguments); } module.exports = _get, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/getPrototypeOf.js": /*!****************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/getPrototypeOf.js ***! \****************************************************************/ /***/ ((module) => { function _getPrototypeOf(t) { return module.exports = _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, module.exports.__esModule = true, module.exports["default"] = module.exports, _getPrototypeOf(t); } module.exports = _getPrototypeOf, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/inherits.js": /*!**********************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/inherits.js ***! \**********************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf.js */ "../node_modules/@babel/runtime/helpers/setPrototypeOf.js"); function _inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && setPrototypeOf(t, e); } module.exports = _inherits, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js": /*!***********************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/interopRequireDefault.js ***! \***********************************************************************/ /***/ ((module) => { function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; } module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/possibleConstructorReturn.js": /*!***************************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/possibleConstructorReturn.js ***! \***************************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var _typeof = (__webpack_require__(/*! ./typeof.js */ "../node_modules/@babel/runtime/helpers/typeof.js")["default"]); var assertThisInitialized = __webpack_require__(/*! ./assertThisInitialized.js */ "../node_modules/@babel/runtime/helpers/assertThisInitialized.js"); function _possibleConstructorReturn(t, e) { if (e && ("object" == _typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return assertThisInitialized(t); } module.exports = _possibleConstructorReturn, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/regenerator.js": /*!*************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/regenerator.js ***! \*************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var regeneratorDefine = __webpack_require__(/*! ./regeneratorDefine.js */ "../node_modules/@babel/runtime/helpers/regeneratorDefine.js"); function _regenerator() { /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */ var e, t, r = "function" == typeof Symbol ? Symbol : {}, n = r.iterator || "@@iterator", o = r.toStringTag || "@@toStringTag"; function i(r, n, o, i) { var c = n && n.prototype instanceof Generator ? n : Generator, u = Object.create(c.prototype); return regeneratorDefine(u, "_invoke", function (r, n, o) { var i, c, u, f = 0, p = o || [], y = !1, G = { p: 0, n: 0, v: e, a: d, f: d.bind(e, 4), d: function d(t, r) { return i = t, c = 0, u = e, G.n = r, a; } }; function d(r, n) { for (c = r, u = n, t = 0; !y && f && !o && t < p.length; t++) { var o, i = p[t], d = G.p, l = i[2]; r > 3 ? (o = l === n) && (u = i[(c = i[4]) ? 5 : (c = 3, 3)], i[4] = i[5] = e) : i[0] <= d && ((o = r < 2 && d < i[1]) ? (c = 0, G.v = n, G.n = i[1]) : d < l && (o = r < 3 || i[0] > n || n > l) && (i[4] = r, i[5] = n, G.n = l, c = 0)); } if (o || r > 1) return a; throw y = !0, n; } return function (o, p, l) { if (f > 1) throw TypeError("Generator is already running"); for (y && 1 === p && d(p, l), c = p, u = l; (t = c < 2 ? e : u) || !y;) { i || (c ? c < 3 ? (c > 1 && (G.n = -1), d(c, u)) : G.n = u : G.v = u); try { if (f = 2, i) { if (c || (o = "next"), t = i[o]) { if (!(t = t.call(i, u))) throw TypeError("iterator result is not an object"); if (!t.done) return t; u = t.value, c < 2 && (c = 0); } else 1 === c && (t = i["return"]) && t.call(i), c < 2 && (u = TypeError("The iterator does not provide a '" + o + "' method"), c = 1); i = e; } else if ((t = (y = G.n < 0) ? u : r.call(n, G)) !== a) break; } catch (t) { i = e, c = 1, u = t; } finally { f = 1; } } return { value: t, done: y }; }; }(r, o, i), !0), u; } var a = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} t = Object.getPrototypeOf; var c = [][n] ? t(t([][n]())) : (regeneratorDefine(t = {}, n, function () { return this; }), t), u = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(c); function f(e) { return Object.setPrototypeOf ? Object.setPrototypeOf(e, GeneratorFunctionPrototype) : (e.__proto__ = GeneratorFunctionPrototype, regeneratorDefine(e, o, "GeneratorFunction")), e.prototype = Object.create(u), e; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, regeneratorDefine(u, "constructor", GeneratorFunctionPrototype), regeneratorDefine(GeneratorFunctionPrototype, "constructor", GeneratorFunction), GeneratorFunction.displayName = "GeneratorFunction", regeneratorDefine(GeneratorFunctionPrototype, o, "GeneratorFunction"), regeneratorDefine(u), regeneratorDefine(u, o, "Generator"), regeneratorDefine(u, n, function () { return this; }), regeneratorDefine(u, "toString", function () { return "[object Generator]"; }), (module.exports = _regenerator = function _regenerator() { return { w: i, m: f }; }, module.exports.__esModule = true, module.exports["default"] = module.exports)(); } module.exports = _regenerator, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/regeneratorAsync.js": /*!******************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/regeneratorAsync.js ***! \******************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var regeneratorAsyncGen = __webpack_require__(/*! ./regeneratorAsyncGen.js */ "../node_modules/@babel/runtime/helpers/regeneratorAsyncGen.js"); function _regeneratorAsync(n, e, r, t, o) { var a = regeneratorAsyncGen(n, e, r, t, o); return a.next().then(function (n) { return n.done ? n.value : a.next(); }); } module.exports = _regeneratorAsync, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/regeneratorAsyncGen.js": /*!*********************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/regeneratorAsyncGen.js ***! \*********************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var regenerator = __webpack_require__(/*! ./regenerator.js */ "../node_modules/@babel/runtime/helpers/regenerator.js"); var regeneratorAsyncIterator = __webpack_require__(/*! ./regeneratorAsyncIterator.js */ "../node_modules/@babel/runtime/helpers/regeneratorAsyncIterator.js"); function _regeneratorAsyncGen(r, e, t, o, n) { return new regeneratorAsyncIterator(regenerator().w(r, e, t, o), n || Promise); } module.exports = _regeneratorAsyncGen, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/regeneratorAsyncIterator.js": /*!**************************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/regeneratorAsyncIterator.js ***! \**************************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var OverloadYield = __webpack_require__(/*! ./OverloadYield.js */ "../node_modules/@babel/runtime/helpers/OverloadYield.js"); var regeneratorDefine = __webpack_require__(/*! ./regeneratorDefine.js */ "../node_modules/@babel/runtime/helpers/regeneratorDefine.js"); function AsyncIterator(t, e) { function n(r, o, i, f) { try { var c = t[r](o), u = c.value; return u instanceof OverloadYield ? e.resolve(u.v).then(function (t) { n("next", t, i, f); }, function (t) { n("throw", t, i, f); }) : e.resolve(u).then(function (t) { c.value = t, i(c); }, function (t) { return n("throw", t, i, f); }); } catch (t) { f(t); } } var r; this.next || (regeneratorDefine(AsyncIterator.prototype), regeneratorDefine(AsyncIterator.prototype, "function" == typeof Symbol && Symbol.asyncIterator || "@asyncIterator", function () { return this; })), regeneratorDefine(this, "_invoke", function (t, o, i) { function f() { return new e(function (e, r) { n(t, i, e, r); }); } return r = r ? r.then(f, f) : f(); }, !0); } module.exports = AsyncIterator, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/regeneratorDefine.js": /*!*******************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/regeneratorDefine.js ***! \*******************************************************************/ /***/ ((module) => { function _regeneratorDefine(e, r, n, t) { var i = Object.defineProperty; try { i({}, "", {}); } catch (e) { i = 0; } module.exports = _regeneratorDefine = function regeneratorDefine(e, r, n, t) { function o(r, n) { _regeneratorDefine(e, r, function (e) { return this._invoke(r, n, e); }); } r ? i ? i(e, r, { value: n, enumerable: !t, configurable: !t, writable: !t }) : e[r] = n : (o("next", 0), o("throw", 1), o("return", 2)); }, module.exports.__esModule = true, module.exports["default"] = module.exports, _regeneratorDefine(e, r, n, t); } module.exports = _regeneratorDefine, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/regeneratorKeys.js": /*!*****************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/regeneratorKeys.js ***! \*****************************************************************/ /***/ ((module) => { function _regeneratorKeys(e) { var n = Object(e), r = []; for (var t in n) r.unshift(t); return function e() { for (; r.length;) if ((t = r.pop()) in n) return e.value = t, e.done = !1, e; return e.done = !0, e; }; } module.exports = _regeneratorKeys, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/regeneratorRuntime.js": /*!********************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/regeneratorRuntime.js ***! \********************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var OverloadYield = __webpack_require__(/*! ./OverloadYield.js */ "../node_modules/@babel/runtime/helpers/OverloadYield.js"); var regenerator = __webpack_require__(/*! ./regenerator.js */ "../node_modules/@babel/runtime/helpers/regenerator.js"); var regeneratorAsync = __webpack_require__(/*! ./regeneratorAsync.js */ "../node_modules/@babel/runtime/helpers/regeneratorAsync.js"); var regeneratorAsyncGen = __webpack_require__(/*! ./regeneratorAsyncGen.js */ "../node_modules/@babel/runtime/helpers/regeneratorAsyncGen.js"); var regeneratorAsyncIterator = __webpack_require__(/*! ./regeneratorAsyncIterator.js */ "../node_modules/@babel/runtime/helpers/regeneratorAsyncIterator.js"); var regeneratorKeys = __webpack_require__(/*! ./regeneratorKeys.js */ "../node_modules/@babel/runtime/helpers/regeneratorKeys.js"); var regeneratorValues = __webpack_require__(/*! ./regeneratorValues.js */ "../node_modules/@babel/runtime/helpers/regeneratorValues.js"); function _regeneratorRuntime() { "use strict"; var r = regenerator(), e = r.m(_regeneratorRuntime), t = (Object.getPrototypeOf ? Object.getPrototypeOf(e) : e.__proto__).constructor; function n(r) { var e = "function" == typeof r && r.constructor; return !!e && (e === t || "GeneratorFunction" === (e.displayName || e.name)); } var o = { "throw": 1, "return": 2, "break": 3, "continue": 3 }; function a(r) { var e, t; return function (n) { e || (e = { stop: function stop() { return t(n.a, 2); }, "catch": function _catch() { return n.v; }, abrupt: function abrupt(r, e) { return t(n.a, o[r], e); }, delegateYield: function delegateYield(r, o, a) { return e.resultName = o, t(n.d, regeneratorValues(r), a); }, finish: function finish(r) { return t(n.f, r); } }, t = function t(r, _t, o) { n.p = e.prev, n.n = e.next; try { return r(_t, o); } finally { e.next = n.n; } }), e.resultName && (e[e.resultName] = n.v, e.resultName = void 0), e.sent = n.v, e.next = n.n; try { return r.call(this, e); } finally { n.p = e.prev, n.n = e.next; } }; } return (module.exports = _regeneratorRuntime = function _regeneratorRuntime() { return { wrap: function wrap(e, t, n, o) { return r.w(a(e), t, n, o && o.reverse()); }, isGeneratorFunction: n, mark: r.m, awrap: function awrap(r, e) { return new OverloadYield(r, e); }, AsyncIterator: regeneratorAsyncIterator, async: function async(r, e, t, o, u) { return (n(e) ? regeneratorAsyncGen : regeneratorAsync)(a(r), e, t, o, u); }, keys: regeneratorKeys, values: regeneratorValues }; }, module.exports.__esModule = true, module.exports["default"] = module.exports)(); } module.exports = _regeneratorRuntime, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/regeneratorValues.js": /*!*******************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/regeneratorValues.js ***! \*******************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var _typeof = (__webpack_require__(/*! ./typeof.js */ "../node_modules/@babel/runtime/helpers/typeof.js")["default"]); function _regeneratorValues(e) { if (null != e) { var t = e["function" == typeof Symbol && Symbol.iterator || "@@iterator"], r = 0; if (t) return t.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) return { next: function next() { return e && r >= e.length && (e = void 0), { value: e && e[r++], done: !e }; } }; } throw new TypeError(_typeof(e) + " is not iterable"); } module.exports = _regeneratorValues, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/setPrototypeOf.js": /*!****************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/setPrototypeOf.js ***! \****************************************************************/ /***/ ((module) => { function _setPrototypeOf(t, e) { return module.exports = _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, module.exports.__esModule = true, module.exports["default"] = module.exports, _setPrototypeOf(t, e); } module.exports = _setPrototypeOf, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/superPropBase.js": /*!***************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/superPropBase.js ***! \***************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var getPrototypeOf = __webpack_require__(/*! ./getPrototypeOf.js */ "../node_modules/@babel/runtime/helpers/getPrototypeOf.js"); function _superPropBase(t, o) { for (; !{}.hasOwnProperty.call(t, o) && null !== (t = getPrototypeOf(t));); return t; } module.exports = _superPropBase, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/toPrimitive.js": /*!*************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/toPrimitive.js ***! \*************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var _typeof = (__webpack_require__(/*! ./typeof.js */ "../node_modules/@babel/runtime/helpers/typeof.js")["default"]); function toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } module.exports = toPrimitive, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/toPropertyKey.js": /*!***************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/toPropertyKey.js ***! \***************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var _typeof = (__webpack_require__(/*! ./typeof.js */ "../node_modules/@babel/runtime/helpers/typeof.js")["default"]); var toPrimitive = __webpack_require__(/*! ./toPrimitive.js */ "../node_modules/@babel/runtime/helpers/toPrimitive.js"); function toPropertyKey(t) { var i = toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; } module.exports = toPropertyKey, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/typeof.js": /*!********************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/typeof.js ***! \********************************************************/ /***/ ((module) => { function _typeof(o) { "@babel/helpers - typeof"; return module.exports = _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; }, module.exports.__esModule = true, module.exports["default"] = module.exports, _typeof(o); } module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/regenerator/index.js": /*!***********************************************************!*\ !*** ../node_modules/@babel/runtime/regenerator/index.js ***! \***********************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { // TODO(Babel 8): Remove this file. var runtime = __webpack_require__(/*! ../helpers/regeneratorRuntime */ "../node_modules/@babel/runtime/helpers/regeneratorRuntime.js")(); module.exports = runtime; // Copied from https://github.com/facebook/regenerator/blob/main/packages/runtime/runtime.js#L736= try { regeneratorRuntime = runtime; } catch (accidentalStrictMode) { if (typeof globalThis === "object") { globalThis.regeneratorRuntime = runtime; } else { Function("r", "regeneratorRuntime = r")(runtime); } } /***/ }), /***/ "../node_modules/html-to-image/es/apply-style.js": /*!*******************************************************!*\ !*** ../node_modules/html-to-image/es/apply-style.js ***! \*******************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ applyStyle: () => (/* binding */ applyStyle) /* harmony export */ }); function applyStyle(node, options) { const { style } = node; if (options.backgroundColor) { style.backgroundColor = options.backgroundColor; } if (options.width) { style.width = `${options.width}px`; } if (options.height) { style.height = `${options.height}px`; } const manual = options.style; if (manual != null) { Object.keys(manual).forEach((key) => { style[key] = manual[key]; }); } return node; } //# sourceMappingURL=apply-style.js.map /***/ }), /***/ "../node_modules/html-to-image/es/clone-node.js": /*!******************************************************!*\ !*** ../node_modules/html-to-image/es/clone-node.js ***! \******************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ cloneNode: () => (/* binding */ cloneNode) /* harmony export */ }); /* harmony import */ var _clone_pseudos__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./clone-pseudos */ "../node_modules/html-to-image/es/clone-pseudos.js"); /* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util */ "../node_modules/html-to-image/es/util.js"); /* harmony import */ var _mimes__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./mimes */ "../node_modules/html-to-image/es/mimes.js"); /* harmony import */ var _dataurl__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./dataurl */ "../node_modules/html-to-image/es/dataurl.js"); async function cloneCanvasElement(canvas) { const dataURL = canvas.toDataURL(); if (dataURL === 'data:,') { return canvas.cloneNode(false); } return (0,_util__WEBPACK_IMPORTED_MODULE_1__.createImage)(dataURL); } async function cloneVideoElement(video, options) { if (video.currentSrc) { const canvas = document.createElement('canvas'); const ctx = canvas.getContext('2d'); canvas.width = video.clientWidth; canvas.height = video.clientHeight; ctx === null || ctx === void 0 ? void 0 : ctx.drawImage(video, 0, 0, canvas.width, canvas.height); const dataURL = canvas.toDataURL(); return (0,_util__WEBPACK_IMPORTED_MODULE_1__.createImage)(dataURL); } const poster = video.poster; const contentType = (0,_mimes__WEBPACK_IMPORTED_MODULE_2__.getMimeType)(poster); const dataURL = await (0,_dataurl__WEBPACK_IMPORTED_MODULE_3__.resourceToDataURL)(poster, contentType, options); return (0,_util__WEBPACK_IMPORTED_MODULE_1__.createImage)(dataURL); } async function cloneIFrameElement(iframe, options) { var _a; try { if ((_a = iframe === null || iframe === void 0 ? void 0 : iframe.contentDocument) === null || _a === void 0 ? void 0 : _a.body) { return (await cloneNode(iframe.contentDocument.body, options, true)); } } catch (_b) { // Failed to clone iframe } return iframe.cloneNode(false); } async function cloneSingleNode(node, options) { if ((0,_util__WEBPACK_IMPORTED_MODULE_1__.isInstanceOfElement)(node, HTMLCanvasElement)) { return cloneCanvasElement(node); } if ((0,_util__WEBPACK_IMPORTED_MODULE_1__.isInstanceOfElement)(node, HTMLVideoElement)) { return cloneVideoElement(node, options); } if ((0,_util__WEBPACK_IMPORTED_MODULE_1__.isInstanceOfElement)(node, HTMLIFrameElement)) { return cloneIFrameElement(node, options); } return node.cloneNode(isSVGElement(node)); } const isSlotElement = (node) => node.tagName != null && node.tagName.toUpperCase() === 'SLOT'; const isSVGElement = (node) => node.tagName != null && node.tagName.toUpperCase() === 'SVG'; async function cloneChildren(nativeNode, clonedNode, options) { var _a, _b; if (isSVGElement(clonedNode)) { return clonedNode; } let children = []; if (isSlotElement(nativeNode) && nativeNode.assignedNodes) { children = (0,_util__WEBPACK_IMPORTED_MODULE_1__.toArray)(nativeNode.assignedNodes()); } else if ((0,_util__WEBPACK_IMPORTED_MODULE_1__.isInstanceOfElement)(nativeNode, HTMLIFrameElement) && ((_a = nativeNode.contentDocument) === null || _a === void 0 ? void 0 : _a.body)) { children = (0,_util__WEBPACK_IMPORTED_MODULE_1__.toArray)(nativeNode.contentDocument.body.childNodes); } else { children = (0,_util__WEBPACK_IMPORTED_MODULE_1__.toArray)(((_b = nativeNode.shadowRoot) !== null && _b !== void 0 ? _b : nativeNode).childNodes); } if (children.length === 0 || (0,_util__WEBPACK_IMPORTED_MODULE_1__.isInstanceOfElement)(nativeNode, HTMLVideoElement)) { return clonedNode; } await children.reduce((deferred, child) => deferred .then(() => cloneNode(child, options)) .then((clonedChild) => { if (clonedChild) { clonedNode.appendChild(clonedChild); } }), Promise.resolve()); return clonedNode; } function cloneCSSStyle(nativeNode, clonedNode, options) { const targetStyle = clonedNode.style; if (!targetStyle) { return; } const sourceStyle = window.getComputedStyle(nativeNode); if (sourceStyle.cssText) { targetStyle.cssText = sourceStyle.cssText; targetStyle.transformOrigin = sourceStyle.transformOrigin; } else { (0,_util__WEBPACK_IMPORTED_MODULE_1__.getStyleProperties)(options).forEach((name) => { let value = sourceStyle.getPropertyValue(name); if (name === 'font-size' && value.endsWith('px')) { const reducedFont = Math.floor(parseFloat(value.substring(0, value.length - 2))) - 0.1; value = `${reducedFont}px`; } if ((0,_util__WEBPACK_IMPORTED_MODULE_1__.isInstanceOfElement)(nativeNode, HTMLIFrameElement) && name === 'display' && value === 'inline') { value = 'block'; } if (name === 'd' && clonedNode.getAttribute('d')) { value = `path(${clonedNode.getAttribute('d')})`; } targetStyle.setProperty(name, value, sourceStyle.getPropertyPriority(name)); }); } } function cloneInputValue(nativeNode, clonedNode) { if ((0,_util__WEBPACK_IMPORTED_MODULE_1__.isInstanceOfElement)(nativeNode, HTMLTextAreaElement)) { clonedNode.innerHTML = nativeNode.value; } if ((0,_util__WEBPACK_IMPORTED_MODULE_1__.isInstanceOfElement)(nativeNode, HTMLInputElement)) { clonedNode.setAttribute('value', nativeNode.value); } } function cloneSelectValue(nativeNode, clonedNode) { if ((0,_util__WEBPACK_IMPORTED_MODULE_1__.isInstanceOfElement)(nativeNode, HTMLSelectElement)) { const clonedSelect = clonedNode; const selectedOption = Array.from(clonedSelect.children).find((child) => nativeNode.value === child.getAttribute('value')); if (selectedOption) { selectedOption.setAttribute('selected', ''); } } } function decorate(nativeNode, clonedNode, options) { if ((0,_util__WEBPACK_IMPORTED_MODULE_1__.isInstanceOfElement)(clonedNode, Element)) { cloneCSSStyle(nativeNode, clonedNode, options); (0,_clone_pseudos__WEBPACK_IMPORTED_MODULE_0__.clonePseudoElements)(nativeNode, clonedNode, options); cloneInputValue(nativeNode, clonedNode); cloneSelectValue(nativeNode, clonedNode); } return clonedNode; } async function ensureSVGSymbols(clone, options) { const uses = clone.querySelectorAll ? clone.querySelectorAll('use') : []; if (uses.length === 0) { return clone; } const processedDefs = {}; for (let i = 0; i < uses.length; i++) { const use = uses[i]; const id = use.getAttribute('xlink:href'); if (id) { const exist = clone.querySelector(id); const definition = document.querySelector(id); if (!exist && definition && !processedDefs[id]) { // eslint-disable-next-line no-await-in-loop processedDefs[id] = (await cloneNode(definition, options, true)); } } } const nodes = Object.values(processedDefs); if (nodes.length) { const ns = 'http://www.w3.org/1999/xhtml'; const svg = document.createElementNS(ns, 'svg'); svg.setAttribute('xmlns', ns); svg.style.position = 'absolute'; svg.style.width = '0'; svg.style.height = '0'; svg.style.overflow = 'hidden'; svg.style.display = 'none'; const defs = document.createElementNS(ns, 'defs'); svg.appendChild(defs); for (let i = 0; i < nodes.length; i++) { defs.appendChild(nodes[i]); } clone.appendChild(svg); } return clone; } async function cloneNode(node, options, isRoot) { if (!isRoot && options.filter && !options.filter(node)) { return null; } return Promise.resolve(node) .then((clonedNode) => cloneSingleNode(clonedNode, options)) .then((clonedNode) => cloneChildren(node, clonedNode, options)) .then((clonedNode) => decorate(node, clonedNode, options)) .then((clonedNode) => ensureSVGSymbols(clonedNode, options)); } //# sourceMappingURL=clone-node.js.map /***/ }), /***/ "../node_modules/html-to-image/es/clone-pseudos.js": /*!*********************************************************!*\ !*** ../node_modules/html-to-image/es/clone-pseudos.js ***! \*********************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ clonePseudoElements: () => (/* binding */ clonePseudoElements) /* harmony export */ }); /* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./util */ "../node_modules/html-to-image/es/util.js"); function formatCSSText(style) { const content = style.getPropertyValue('content'); return `${style.cssText} content: '${content.replace(/'|"/g, '')}';`; } function formatCSSProperties(style, options) { return (0,_util__WEBPACK_IMPORTED_MODULE_0__.getStyleProperties)(options) .map((name) => { const value = style.getPropertyValue(name); const priority = style.getPropertyPriority(name); return `${name}: ${value}${priority ? ' !important' : ''};`; }) .join(' '); } function getPseudoElementStyle(className, pseudo, style, options) { const selector = `.${className}:${pseudo}`; const cssText = style.cssText ? formatCSSText(style) : formatCSSProperties(style, options); return document.createTextNode(`${selector}{${cssText}}`); } function clonePseudoElement(nativeNode, clonedNode, pseudo, options) { const style = window.getComputedStyle(nativeNode, pseudo); const content = style.getPropertyValue('content'); if (content === '' || content === 'none') { return; } const className = (0,_util__WEBPACK_IMPORTED_MODULE_0__.uuid)(); try { clonedNode.className = `${clonedNode.className} ${className}`; } catch (err) { return; } const styleElement = document.createElement('style'); styleElement.appendChild(getPseudoElementStyle(className, pseudo, style, options)); clonedNode.appendChild(styleElement); } function clonePseudoElements(nativeNode, clonedNode, options) { clonePseudoElement(nativeNode, clonedNode, ':before', options); clonePseudoElement(nativeNode, clonedNode, ':after', options); } //# sourceMappingURL=clone-pseudos.js.map /***/ }), /***/ "../node_modules/html-to-image/es/dataurl.js": /*!***************************************************!*\ !*** ../node_modules/html-to-image/es/dataurl.js ***! \***************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ fetchAsDataURL: () => (/* binding */ fetchAsDataURL), /* harmony export */ isDataUrl: () => (/* binding */ isDataUrl), /* harmony export */ makeDataUrl: () => (/* binding */ makeDataUrl), /* harmony export */ resourceToDataURL: () => (/* binding */ resourceToDataURL) /* harmony export */ }); function getContentFromDataUrl(dataURL) { return dataURL.split(/,/)[1]; } function isDataUrl(url) { return url.search(/^(data:)/) !== -1; } function makeDataUrl(content, mimeType) { return `data:${mimeType};base64,${content}`; } async function fetchAsDataURL(url, init, process) { const res = await fetch(url, init); if (res.status === 404) { throw new Error(`Resource "${res.url}" not found`); } const blob = await res.blob(); return new Promise((resolve, reject) => { const reader = new FileReader(); reader.onerror = reject; reader.onloadend = () => { try { resolve(process({ res, result: reader.result })); } catch (error) { reject(error); } }; reader.readAsDataURL(blob); }); } const cache = {}; function getCacheKey(url, contentType, includeQueryParams) { let key = url.replace(/\?.*/, ''); if (includeQueryParams) { key = url; } // font resource if (/ttf|otf|eot|woff2?/i.test(key)) { key = key.replace(/.*\//, ''); } return contentType ? `[${contentType}]${key}` : key; } async function resourceToDataURL(resourceUrl, contentType, options) { const cacheKey = getCacheKey(resourceUrl, contentType, options.includeQueryParams); if (cache[cacheKey] != null) { return cache[cacheKey]; } // ref: https://developer.mozilla.org/en/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest#Bypassing_the_cache if (options.cacheBust) { // eslint-disable-next-line no-param-reassign resourceUrl += (/\?/.test(resourceUrl) ? '&' : '?') + new Date().getTime(); } let dataURL; try { const content = await fetchAsDataURL(resourceUrl, options.fetchRequestInit, ({ res, result }) => { if (!contentType) { // eslint-disable-next-line no-param-reassign contentType = res.headers.get('Content-Type') || ''; } return getContentFromDataUrl(result); }); dataURL = makeDataUrl(content, contentType); } catch (error) { dataURL = options.imagePlaceholder || ''; let msg = `Failed to fetch resource: ${resourceUrl}`; if (error) { msg = typeof error === 'string' ? error : error.message; } if (msg) { console.warn(msg); } } cache[cacheKey] = dataURL; return dataURL; } //# sourceMappingURL=dataurl.js.map /***/ }), /***/ "../node_modules/html-to-image/es/embed-images.js": /*!********************************************************!*\ !*** ../node_modules/html-to-image/es/embed-images.js ***! \********************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ embedImages: () => (/* binding */ embedImages) /* harmony export */ }); /* harmony import */ var _embed_resources__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./embed-resources */ "../node_modules/html-to-image/es/embed-resources.js"); /* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util */ "../node_modules/html-to-image/es/util.js"); /* harmony import */ var _dataurl__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./dataurl */ "../node_modules/html-to-image/es/dataurl.js"); /* harmony import */ var _mimes__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./mimes */ "../node_modules/html-to-image/es/mimes.js"); async function embedProp(propName, node, options) { var _a; const propValue = (_a = node.style) === null || _a === void 0 ? void 0 : _a.getPropertyValue(propName); if (propValue) { const cssString = await (0,_embed_resources__WEBPACK_IMPORTED_MODULE_0__.embedResources)(propValue, null, options); node.style.setProperty(propName, cssString, node.style.getPropertyPriority(propName)); return true; } return false; } async function embedBackground(clonedNode, options) { ; (await embedProp('background', clonedNode, options)) || (await embedProp('background-image', clonedNode, options)); (await embedProp('mask', clonedNode, options)) || (await embedProp('-webkit-mask', clonedNode, options)) || (await embedProp('mask-image', clonedNode, options)) || (await embedProp('-webkit-mask-image', clonedNode, options)); } async function embedImageNode(clonedNode, options) { const isImageElement = (0,_util__WEBPACK_IMPORTED_MODULE_1__.isInstanceOfElement)(clonedNode, HTMLImageElement); if (!(isImageElement && !(0,_dataurl__WEBPACK_IMPORTED_MODULE_2__.isDataUrl)(clonedNode.src)) && !((0,_util__WEBPACK_IMPORTED_MODULE_1__.isInstanceOfElement)(clonedNode, SVGImageElement) && !(0,_dataurl__WEBPACK_IMPORTED_MODULE_2__.isDataUrl)(clonedNode.href.baseVal))) { return; } const url = isImageElement ? clonedNode.src : clonedNode.href.baseVal; const dataURL = await (0,_dataurl__WEBPACK_IMPORTED_MODULE_2__.resourceToDataURL)(url, (0,_mimes__WEBPACK_IMPORTED_MODULE_3__.getMimeType)(url), options); await new Promise((resolve, reject) => { clonedNode.onload = resolve; clonedNode.onerror = options.onImageErrorHandler ? (...attributes) => { try { resolve(options.onImageErrorHandler(...attributes)); } catch (error) { reject(error); } } : reject; const image = clonedNode; if (image.decode) { image.decode = resolve; } if (image.loading === 'lazy') { image.loading = 'eager'; } if (isImageElement) { clonedNode.srcset = ''; clonedNode.src = dataURL; } else { clonedNode.href.baseVal = dataURL; } }); } async function embedChildren(clonedNode, options) { const children = (0,_util__WEBPACK_IMPORTED_MODULE_1__.toArray)(clonedNode.childNodes); const deferreds = children.map((child) => embedImages(child, options)); await Promise.all(deferreds).then(() => clonedNode); } async function embedImages(clonedNode, options) { if ((0,_util__WEBPACK_IMPORTED_MODULE_1__.isInstanceOfElement)(clonedNode, Element)) { await embedBackground(clonedNode, options); await embedImageNode(clonedNode, options); await embedChildren(clonedNode, options); } } //# sourceMappingURL=embed-images.js.map /***/ }), /***/ "../node_modules/html-to-image/es/embed-resources.js": /*!***********************************************************!*\ !*** ../node_modules/html-to-image/es/embed-resources.js ***! \***********************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ embed: () => (/* binding */ embed), /* harmony export */ embedResources: () => (/* binding */ embedResources), /* harmony export */ parseURLs: () => (/* binding */ parseURLs), /* harmony export */ shouldEmbed: () => (/* binding */ shouldEmbed) /* harmony export */ }); /* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./util */ "../node_modules/html-to-image/es/util.js"); /* harmony import */ var _mimes__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./mimes */ "../node_modules/html-to-image/es/mimes.js"); /* harmony import */ var _dataurl__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./dataurl */ "../node_modules/html-to-image/es/dataurl.js"); const URL_REGEX = /url\((['"]?)([^'"]+?)\1\)/g; const URL_WITH_FORMAT_REGEX = /url\([^)]+\)\s*format\((["']?)([^"']+)\1\)/g; const FONT_SRC_REGEX = /src:\s*(?:url\([^)]+\)\s*format\([^)]+\)[,;]\s*)+/g; function toRegex(url) { // eslint-disable-next-line no-useless-escape const escaped = url.replace(/([.*+?^${}()|\[\]\/\\])/g, '\\$1'); return new RegExp(`(url\\(['"]?)(${escaped})(['"]?\\))`, 'g'); } function parseURLs(cssText) { const urls = []; cssText.replace(URL_REGEX, (raw, quotation, url) => { urls.push(url); return raw; }); return urls.filter((url) => !(0,_dataurl__WEBPACK_IMPORTED_MODULE_2__.isDataUrl)(url)); } async function embed(cssText, resourceURL, baseURL, options, getContentFromUrl) { try { const resolvedURL = baseURL ? (0,_util__WEBPACK_IMPORTED_MODULE_0__.resolveUrl)(resourceURL, baseURL) : resourceURL; const contentType = (0,_mimes__WEBPACK_IMPORTED_MODULE_1__.getMimeType)(resourceURL); let dataURL; if (getContentFromUrl) { const content = await getContentFromUrl(resolvedURL); dataURL = (0,_dataurl__WEBPACK_IMPORTED_MODULE_2__.makeDataUrl)(content, contentType); } else { dataURL = await (0,_dataurl__WEBPACK_IMPORTED_MODULE_2__.resourceToDataURL)(resolvedURL, contentType, options); } return cssText.replace(toRegex(resourceURL), `$1${dataURL}$3`); } catch (error) { // pass } return cssText; } function filterPreferredFontFormat(str, { preferredFontFormat }) { return !preferredFontFormat ? str : str.replace(FONT_SRC_REGEX, (match) => { // eslint-disable-next-line no-constant-condition while (true) { const [src, , format] = URL_WITH_FORMAT_REGEX.exec(match) || []; if (!format) { return ''; } if (format === preferredFontFormat) { return `src: ${src};`; } } }); } function shouldEmbed(url) { return url.search(URL_REGEX) !== -1; } async function embedResources(cssText, baseUrl, options) { if (!shouldEmbed(cssText)) { return cssText; } const filteredCSSText = filterPreferredFontFormat(cssText, options); const urls = parseURLs(filteredCSSText); return urls.reduce((deferred, url) => deferred.then((css) => embed(css, url, baseUrl, options)), Promise.resolve(filteredCSSText)); } //# sourceMappingURL=embed-resources.js.map /***/ }), /***/ "../node_modules/html-to-image/es/embed-webfonts.js": /*!**********************************************************!*\ !*** ../node_modules/html-to-image/es/embed-webfonts.js ***! \**********************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ embedWebFonts: () => (/* binding */ embedWebFonts), /* harmony export */ getWebFontCSS: () => (/* binding */ getWebFontCSS) /* harmony export */ }); /* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./util */ "../node_modules/html-to-image/es/util.js"); /* harmony import */ var _dataurl__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./dataurl */ "../node_modules/html-to-image/es/dataurl.js"); /* harmony import */ var _embed_resources__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./embed-resources */ "../node_modules/html-to-image/es/embed-resources.js"); const cssFetchCache = {}; async function fetchCSS(url) { let cache = cssFetchCache[url]; if (cache != null) { return cache; } const res = await fetch(url); const cssText = await res.text(); cache = { url, cssText }; cssFetchCache[url] = cache; return cache; } async function embedFonts(data, options) { let cssText = data.cssText; const regexUrl = /url\(["']?([^"')]+)["']?\)/g; const fontLocs = cssText.match(/url\([^)]+\)/g) || []; const loadFonts = fontLocs.map(async (loc) => { let url = loc.replace(regexUrl, '$1'); if (!url.startsWith('https://')) { url = new URL(url, data.url).href; } return (0,_dataurl__WEBPACK_IMPORTED_MODULE_1__.fetchAsDataURL)(url, options.fetchRequestInit, ({ result }) => { cssText = cssText.replace(loc, `url(${result})`); return [loc, result]; }); }); return Promise.all(loadFonts).then(() => cssText); } function parseCSS(source) { if (source == null) { return []; } const result = []; const commentsRegex = /(\/\*[\s\S]*?\*\/)/gi; // strip out comments let cssText = source.replace(commentsRegex, ''); // eslint-disable-next-line prefer-regex-literals const keyframesRegex = new RegExp('((@.*?keyframes [\\s\\S]*?){([\\s\\S]*?}\\s*?)})', 'gi'); // eslint-disable-next-line no-constant-condition while (true) { const matches = keyframesRegex.exec(cssText); if (matches === null) { break; } result.push(matches[0]); } cssText = cssText.replace(keyframesRegex, ''); const importRegex = /@import[\s\S]*?url\([^)]*\)[\s\S]*?;/gi; // to match css & media queries together const combinedCSSRegex = '((\\s*?(?:\\/\\*[\\s\\S]*?\\*\\/)?\\s*?@media[\\s\\S]' + '*?){([\\s\\S]*?)}\\s*?})|(([\\s\\S]*?){([\\s\\S]*?)})'; // unified regex const unifiedRegex = new RegExp(combinedCSSRegex, 'gi'); // eslint-disable-next-line no-constant-condition while (true) { let matches = importRegex.exec(cssText); if (matches === null) { matches = unifiedRegex.exec(cssText); if (matches === null) { break; } else { importRegex.lastIndex = unifiedRegex.lastIndex; } } else { unifiedRegex.lastIndex = importRegex.lastIndex; } result.push(matches[0]); } return result; } async function getCSSRules(styleSheets, options) { const ret = []; const deferreds = []; // First loop inlines imports styleSheets.forEach((sheet) => { if ('cssRules' in sheet) { try { (0,_util__WEBPACK_IMPORTED_MODULE_0__.toArray)(sheet.cssRules || []).forEach((item, index) => { if (item.type === CSSRule.IMPORT_RULE) { let importIndex = index + 1; const url = item.href; const deferred = fetchCSS(url) .then((metadata) => embedFonts(metadata, options)) .then((cssText) => parseCSS(cssText).forEach((rule) => { try { sheet.insertRule(rule, rule.startsWith('@import') ? (importIndex += 1) : sheet.cssRules.length); } catch (error) { console.error('Error inserting rule from remote css', { rule, error, }); } })) .catch((e) => { console.error('Error loading remote css', e.toString()); }); deferreds.push(deferred); } }); } catch (e) { const inline = styleSheets.find((a) => a.href == null) || document.styleSheets[0]; if (sheet.href != null) { deferreds.push(fetchCSS(sheet.href) .then((metadata) => embedFonts(metadata, options)) .then((cssText) => parseCSS(cssText).forEach((rule) => { inline.insertRule(rule, inline.cssRules.length); })) .catch((err) => { console.error('Error loading remote stylesheet', err); })); } console.error('Error inlining remote css file', e); } } }); return Promise.all(deferreds).then(() => { // Second loop parses rules styleSheets.forEach((sheet) => { if ('cssRules' in sheet) { try { (0,_util__WEBPACK_IMPORTED_MODULE_0__.toArray)(sheet.cssRules || []).forEach((item) => { ret.push(item); }); } catch (e) { console.error(`Error while reading CSS rules from ${sheet.href}`, e); } } }); return ret; }); } function getWebFontRules(cssRules) { return cssRules .filter((rule) => rule.type === CSSRule.FONT_FACE_RULE) .filter((rule) => (0,_embed_resources__WEBPACK_IMPORTED_MODULE_2__.shouldEmbed)(rule.style.getPropertyValue('src'))); } async function parseWebFontRules(node, options) { if (node.ownerDocument == null) { throw new Error('Provided element is not within a Document'); } const styleSheets = (0,_util__WEBPACK_IMPORTED_MODULE_0__.toArray)(node.ownerDocument.styleSheets); const cssRules = await getCSSRules(styleSheets, options); return getWebFontRules(cssRules); } function normalizeFontFamily(font) { return font.trim().replace(/["']/g, ''); } function getUsedFonts(node) { const fonts = new Set(); function traverse(node) { const fontFamily = node.style.fontFamily || getComputedStyle(node).fontFamily; fontFamily.split(',').forEach((font) => { fonts.add(normalizeFontFamily(font)); }); Array.from(node.children).forEach((child) => { if (child instanceof HTMLElement) { traverse(child); } }); } traverse(node); return fonts; } async function getWebFontCSS(node, options) { const rules = await parseWebFontRules(node, options); const usedFonts = getUsedFonts(node); const cssTexts = await Promise.all(rules .filter((rule) => usedFonts.has(normalizeFontFamily(rule.style.fontFamily))) .map((rule) => { const baseUrl = rule.parentStyleSheet ? rule.parentStyleSheet.href : null; return (0,_embed_resources__WEBPACK_IMPORTED_MODULE_2__.embedResources)(rule.cssText, baseUrl, options); })); return cssTexts.join('\n'); } async function embedWebFonts(clonedNode, options) { const cssText = options.fontEmbedCSS != null ? options.fontEmbedCSS : options.skipFonts ? null : await getWebFontCSS(clonedNode, options); if (cssText) { const styleNode = document.createElement('style'); const sytleContent = document.createTextNode(cssText); styleNode.appendChild(sytleContent); if (clonedNode.firstChild) { clonedNode.insertBefore(styleNode, clonedNode.firstChild); } else { clonedNode.appendChild(styleNode); } } } //# sourceMappingURL=embed-webfonts.js.map /***/ }), /***/ "../node_modules/html-to-image/es/index.js": /*!*************************************************!*\ !*** ../node_modules/html-to-image/es/index.js ***! \*************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ getFontEmbedCSS: () => (/* binding */ getFontEmbedCSS), /* harmony export */ toBlob: () => (/* binding */ toBlob), /* harmony export */ toCanvas: () => (/* binding */ toCanvas), /* harmony export */ toJpeg: () => (/* binding */ toJpeg), /* harmony export */ toPixelData: () => (/* binding */ toPixelData), /* harmony export */ toPng: () => (/* binding */ toPng), /* harmony export */ toSvg: () => (/* binding */ toSvg) /* harmony export */ }); /* harmony import */ var _clone_node__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./clone-node */ "../node_modules/html-to-image/es/clone-node.js"); /* harmony import */ var _embed_images__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./embed-images */ "../node_modules/html-to-image/es/embed-images.js"); /* harmony import */ var _apply_style__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./apply-style */ "../node_modules/html-to-image/es/apply-style.js"); /* harmony import */ var _embed_webfonts__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./embed-webfonts */ "../node_modules/html-to-image/es/embed-webfonts.js"); /* harmony import */ var _util__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./util */ "../node_modules/html-to-image/es/util.js"); async function toSvg(node, options = {}) { const { width, height } = (0,_util__WEBPACK_IMPORTED_MODULE_4__.getImageSize)(node, options); const clonedNode = (await (0,_clone_node__WEBPACK_IMPORTED_MODULE_0__.cloneNode)(node, options, true)); await (0,_embed_webfonts__WEBPACK_IMPORTED_MODULE_3__.embedWebFonts)(clonedNode, options); await (0,_embed_images__WEBPACK_IMPORTED_MODULE_1__.embedImages)(clonedNode, options); (0,_apply_style__WEBPACK_IMPORTED_MODULE_2__.applyStyle)(clonedNode, options); const datauri = await (0,_util__WEBPACK_IMPORTED_MODULE_4__.nodeToDataURL)(clonedNode, width, height); return datauri; } async function toCanvas(node, options = {}) { const { width, height } = (0,_util__WEBPACK_IMPORTED_MODULE_4__.getImageSize)(node, options); const svg = await toSvg(node, options); const img = await (0,_util__WEBPACK_IMPORTED_MODULE_4__.createImage)(svg); const canvas = document.createElement('canvas'); const context = canvas.getContext('2d'); const ratio = options.pixelRatio || (0,_util__WEBPACK_IMPORTED_MODULE_4__.getPixelRatio)(); const canvasWidth = options.canvasWidth || width; const canvasHeight = options.canvasHeight || height; canvas.width = canvasWidth * ratio; canvas.height = canvasHeight * ratio; if (!options.skipAutoScale) { (0,_util__WEBPACK_IMPORTED_MODULE_4__.checkCanvasDimensions)(canvas); } canvas.style.width = `${canvasWidth}`; canvas.style.height = `${canvasHeight}`; if (options.backgroundColor) { context.fillStyle = options.backgroundColor; context.fillRect(0, 0, canvas.width, canvas.height); } context.drawImage(img, 0, 0, canvas.width, canvas.height); return canvas; } async function toPixelData(node, options = {}) { const { width, height } = (0,_util__WEBPACK_IMPORTED_MODULE_4__.getImageSize)(node, options); const canvas = await toCanvas(node, options); const ctx = canvas.getContext('2d'); return ctx.getImageData(0, 0, width, height).data; } async function toPng(node, options = {}) { const canvas = await toCanvas(node, options); return canvas.toDataURL(); } async function toJpeg(node, options = {}) { const canvas = await toCanvas(node, options); return canvas.toDataURL('image/jpeg', options.quality || 1); } async function toBlob(node, options = {}) { const canvas = await toCanvas(node, options); const blob = await (0,_util__WEBPACK_IMPORTED_MODULE_4__.canvasToBlob)(canvas); return blob; } async function getFontEmbedCSS(node, options = {}) { return (0,_embed_webfonts__WEBPACK_IMPORTED_MODULE_3__.getWebFontCSS)(node, options); } //# sourceMappingURL=index.js.map /***/ }), /***/ "../node_modules/html-to-image/es/mimes.js": /*!*************************************************!*\ !*** ../node_modules/html-to-image/es/mimes.js ***! \*************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ getMimeType: () => (/* binding */ getMimeType) /* harmony export */ }); const WOFF = 'application/font-woff'; const JPEG = 'image/jpeg'; const mimes = { woff: WOFF, woff2: WOFF, ttf: 'application/font-truetype', eot: 'application/vnd.ms-fontobject', png: 'image/png', jpg: JPEG, jpeg: JPEG, gif: 'image/gif', tiff: 'image/tiff', svg: 'image/svg+xml', webp: 'image/webp', }; function getExtension(url) { const match = /\.([^./]*?)$/g.exec(url); return match ? match[1] : ''; } function getMimeType(url) { const extension = getExtension(url).toLowerCase(); return mimes[extension] || ''; } //# sourceMappingURL=mimes.js.map /***/ }), /***/ "../node_modules/html-to-image/es/util.js": /*!************************************************!*\ !*** ../node_modules/html-to-image/es/util.js ***! \************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ canvasToBlob: () => (/* binding */ canvasToBlob), /* harmony export */ checkCanvasDimensions: () => (/* binding */ checkCanvasDimensions), /* harmony export */ createImage: () => (/* binding */ createImage), /* harmony export */ delay: () => (/* binding */ delay), /* harmony export */ getImageSize: () => (/* binding */ getImageSize), /* harmony export */ getPixelRatio: () => (/* binding */ getPixelRatio), /* harmony export */ getStyleProperties: () => (/* binding */ getStyleProperties), /* harmony export */ isInstanceOfElement: () => (/* binding */ isInstanceOfElement), /* harmony export */ nodeToDataURL: () => (/* binding */ nodeToDataURL), /* harmony export */ resolveUrl: () => (/* binding */ resolveUrl), /* harmony export */ svgToDataURL: () => (/* binding */ svgToDataURL), /* harmony export */ toArray: () => (/* binding */ toArray), /* harmony export */ uuid: () => (/* binding */ uuid) /* harmony export */ }); function resolveUrl(url, baseUrl) { // url is absolute already if (url.match(/^[a-z]+:\/\//i)) { return url; } // url is absolute already, without protocol if (url.match(/^\/\//)) { return window.location.protocol + url; } // dataURI, mailto:, tel:, etc. if (url.match(/^[a-z]+:/i)) { return url; } const doc = document.implementation.createHTMLDocument(); const base = doc.createElement('base'); const a = doc.createElement('a'); doc.head.appendChild(base); doc.body.appendChild(a); if (baseUrl) { base.href = baseUrl; } a.href = url; return a.href; } const uuid = (() => { // generate uuid for className of pseudo elements. // We should not use GUIDs, otherwise pseudo elements sometimes cannot be captured. let counter = 0; // ref: http://stackoverflow.com/a/6248722/2519373 const random = () => // eslint-disable-next-line no-bitwise `0000${((Math.random() * 36 ** 4) << 0).toString(36)}`.slice(-4); return () => { counter += 1; return `u${random()}${counter}`; }; })(); function delay(ms) { return (args) => new Promise((resolve) => { setTimeout(() => resolve(args), ms); }); } function toArray(arrayLike) { const arr = []; for (let i = 0, l = arrayLike.length; i < l; i++) { arr.push(arrayLike[i]); } return arr; } let styleProps = null; function getStyleProperties(options = {}) { if (styleProps) { return styleProps; } if (options.includeStyleProperties) { styleProps = options.includeStyleProperties; return styleProps; } styleProps = toArray(window.getComputedStyle(document.documentElement)); return styleProps; } function px(node, styleProperty) { const win = node.ownerDocument.defaultView || window; const val = win.getComputedStyle(node).getPropertyValue(styleProperty); return val ? parseFloat(val.replace('px', '')) : 0; } function getNodeWidth(node) { const leftBorder = px(node, 'border-left-width'); const rightBorder = px(node, 'border-right-width'); return node.clientWidth + leftBorder + rightBorder; } function getNodeHeight(node) { const topBorder = px(node, 'border-top-width'); const bottomBorder = px(node, 'border-bottom-width'); return node.clientHeight + topBorder + bottomBorder; } function getImageSize(targetNode, options = {}) { const width = options.width || getNodeWidth(targetNode); const height = options.height || getNodeHeight(targetNode); return { width, height }; } function getPixelRatio() { let ratio; let FINAL_PROCESS; try { FINAL_PROCESS = process; } catch (e) { // pass } const val = FINAL_PROCESS && FINAL_PROCESS.env ? FINAL_PROCESS.env.devicePixelRatio : null; if (val) { ratio = parseInt(val, 10); if (Number.isNaN(ratio)) { ratio = 1; } } return ratio || window.devicePixelRatio || 1; } // @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/canvas#maximum_canvas_size const canvasDimensionLimit = 16384; function checkCanvasDimensions(canvas) { if (canvas.width > canvasDimensionLimit || canvas.height > canvasDimensionLimit) { if (canvas.width > canvasDimensionLimit && canvas.height > canvasDimensionLimit) { if (canvas.width > canvas.height) { canvas.height *= canvasDimensionLimit / canvas.width; canvas.width = canvasDimensionLimit; } else { canvas.width *= canvasDimensionLimit / canvas.height; canvas.height = canvasDimensionLimit; } } else if (canvas.width > canvasDimensionLimit) { canvas.height *= canvasDimensionLimit / canvas.width; canvas.width = canvasDimensionLimit; } else { canvas.width *= canvasDimensionLimit / canvas.height; canvas.height = canvasDimensionLimit; } } } function canvasToBlob(canvas, options = {}) { if (canvas.toBlob) { return new Promise((resolve) => { canvas.toBlob(resolve, options.type ? options.type : 'image/png', options.quality ? options.quality : 1); }); } return new Promise((resolve) => { const binaryString = window.atob(canvas .toDataURL(options.type ? options.type : undefined, options.quality ? options.quality : undefined) .split(',')[1]); const len = binaryString.length; const binaryArray = new Uint8Array(len); for (let i = 0; i < len; i += 1) { binaryArray[i] = binaryString.charCodeAt(i); } resolve(new Blob([binaryArray], { type: options.type ? options.type : 'image/png', })); }); } function createImage(url) { return new Promise((resolve, reject) => { const img = new Image(); img.onload = () => { img.decode().then(() => { requestAnimationFrame(() => resolve(img)); }); }; img.onerror = reject; img.crossOrigin = 'anonymous'; img.decoding = 'async'; img.src = url; }); } async function svgToDataURL(svg) { return Promise.resolve() .then(() => new XMLSerializer().serializeToString(svg)) .then(encodeURIComponent) .then((html) => `data:image/svg+xml;charset=utf-8,${html}`); } async function nodeToDataURL(node, width, height) { const xmlns = 'http://www.w3.org/2000/svg'; const svg = document.createElementNS(xmlns, 'svg'); const foreignObject = document.createElementNS(xmlns, 'foreignObject'); svg.setAttribute('width', `${width}`); svg.setAttribute('height', `${height}`); svg.setAttribute('viewBox', `0 0 ${width} ${height}`); foreignObject.setAttribute('width', '100%'); foreignObject.setAttribute('height', '100%'); foreignObject.setAttribute('x', '0'); foreignObject.setAttribute('y', '0'); foreignObject.setAttribute('externalResourcesRequired', 'true'); svg.appendChild(foreignObject); foreignObject.appendChild(node); return svgToDataURL(svg); } const isInstanceOfElement = (node, instance) => { if (node instanceof instance) return true; const nodePrototype = Object.getPrototypeOf(node); if (nodePrototype === null) return false; return (nodePrototype.constructor.name === instance.name || isInstanceOfElement(nodePrototype, instance)); }; //# sourceMappingURL=util.js.map /***/ }) /******/ }); /************************************************************************/ /******/ // The module cache /******/ var __webpack_module_cache__ = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ // Check if module is in cache /******/ var cachedModule = __webpack_module_cache__[moduleId]; /******/ if (cachedModule !== undefined) { /******/ return cachedModule.exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = __webpack_module_cache__[moduleId] = { /******/ // no module.id needed /******/ // no module.loaded needed /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__); /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /************************************************************************/ /******/ /* webpack/runtime/define property getters */ /******/ (() => { /******/ // define getter functions for harmony exports /******/ __webpack_require__.d = (exports, definition) => { /******/ for(var key in definition) { /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) { /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] }); /******/ } /******/ } /******/ }; /******/ })(); /******/ /******/ /* webpack/runtime/hasOwnProperty shorthand */ /******/ (() => { /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop)) /******/ })(); /******/ /******/ /* webpack/runtime/make namespace object */ /******/ (() => { /******/ // define __esModule on exports /******/ __webpack_require__.r = (exports) => { /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); /******/ } /******/ Object.defineProperty(exports, '__esModule', { value: true }); /******/ }; /******/ })(); /******/ /************************************************************************/ var __webpack_exports__ = {}; // This entry needs to be wrapped in an IIFE because it needs to be in strict mode. (() => { "use strict"; /*!****************************************************************!*\ !*** ../modules/cloud-library/assets/js/preview/screenshot.js ***! \****************************************************************/ var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); var _regenerator = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/regenerator */ "../node_modules/@babel/runtime/regenerator/index.js")); var _asyncToGenerator2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/asyncToGenerator */ "../node_modules/@babel/runtime/helpers/asyncToGenerator.js")); var _defineProperty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/defineProperty */ "../node_modules/@babel/runtime/helpers/defineProperty.js")); var _classCallCheck2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ "../node_modules/@babel/runtime/helpers/classCallCheck.js")); var _createClass2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/createClass */ "../node_modules/@babel/runtime/helpers/createClass.js")); var _possibleConstructorReturn2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/possibleConstructorReturn */ "../node_modules/@babel/runtime/helpers/possibleConstructorReturn.js")); var _getPrototypeOf2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/getPrototypeOf */ "../node_modules/@babel/runtime/helpers/getPrototypeOf.js")); var _get2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/get */ "../node_modules/@babel/runtime/helpers/get.js")); var _inherits2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/inherits */ "../node_modules/@babel/runtime/helpers/inherits.js")); var _htmlToImage = __webpack_require__(/*! html-to-image */ "../node_modules/html-to-image/es/index.js"); function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; } function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); } function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } function _superPropGet(t, o, e, r) { var p = (0, _get2.default)((0, _getPrototypeOf2.default)(1 & r ? t.prototype : t), o, e); return 2 & r && "function" == typeof p ? function (t) { return p.apply(e, t); } : p; } /* global ElementorScreenshotConfig */ var Screenshot = /*#__PURE__*/function (_elementorModules$Vie) { function Screenshot() { (0, _classCallCheck2.default)(this, Screenshot); return _callSuper(this, Screenshot, arguments); } (0, _inherits2.default)(Screenshot, _elementorModules$Vie); return (0, _createClass2.default)(Screenshot, [{ key: "getDefaultSettings", value: function getDefaultSettings() { return _objectSpread({ timeout: 15000, // Wait until screenshot taken or fail in 15 secs. render_timeout: 5000, // Wait until all the element will be loaded or 5 sec and then take screenshot. image_quality: 0.15, // Image quality for WebP compression image_placeholder: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=' }, ElementorScreenshotConfig); } }, { key: "getDefaultElements", value: function getDefaultElements() { var $elementor = jQuery(ElementorScreenshotConfig.selector); return { $elementor: $elementor }; } }, { key: "onInit", value: function onInit() { var _this = this; _superPropGet(Screenshot, "onInit", this, 3)([]); /** * Hold the timeout timer * * @type {number|null} */ this.timeoutTimer = setTimeout(function () { _this.screenshotFailed(new Error('Screenshot timeout reached')); }, this.getSettings('timeout')); return this.captureScreenshot(); } /** * The main method for this class. */ }, { key: "captureScreenshot", value: function captureScreenshot() { var _this2 = this; return Promise.resolve().then(function () { return _this2.createImage(); }).then(function (imageData) { return _this2.save(imageData); }).then(function (url) { return _this2.screenshotSucceed(url); }).catch(function (error) { return _this2.screenshotFailed(error); }); } /** * Creates a WebP image using html-to-image library. * * @return {Promise} URI containing image data */ }, { key: "createImage", value: (function () { var _createImage = (0, _asyncToGenerator2.default)(/*#__PURE__*/_regenerator.default.mark(function _callee() { var _this3 = this; var pageLoadedPromise, timeOutPromise, $elementorElement, bodyStyle, bodyBackgroundColor, canvas; return _regenerator.default.wrap(function (_context) { while (1) switch (_context.prev = _context.next) { case 0: pageLoadedPromise = new Promise(function (resolve) { window.addEventListener('load', function () { return resolve(); }); }); timeOutPromise = new Promise(function (resolve) { setTimeout(function () { return resolve(); }, _this3.getSettings('render_timeout')); }); _context.next = 1; return Promise.race([pageLoadedPromise, timeOutPromise]); case 1: $elementorElement = this.elements.$elementor; if (!$elementorElement.length) { $elementorElement = jQuery(ElementorScreenshotConfig.selector); } if (!$elementorElement.length) { $elementorElement = jQuery('body > div.elementor:not(.elementor-location-header):not(.elementor-location-footer)'); } if ($elementorElement.length) { _context.next = 2; break; } throw new Error('Elementor container not found. Selector: ' + ElementorScreenshotConfig.selector); case 2: this.preprocessLazyImages($elementorElement); bodyStyle = window.getComputedStyle(document.body); bodyBackgroundColor = bodyStyle.backgroundColor; _context.next = 3; return (0, _htmlToImage.toCanvas)($elementorElement[0], { quality: this.getSettings('image_quality'), imagePlaceholder: this.getSettings('image_placeholder'), backgroundColor: bodyBackgroundColor || null, style: { transform: 'scale(1)', transformOrigin: 'top left' } }); case 3: canvas = _context.sent; return _context.abrupt("return", canvas.toDataURL('image/webp', this.getSettings('image_quality'))); case 4: case "end": return _context.stop(); } }, _callee, this); })); function createImage() { return _createImage.apply(this, arguments); } return createImage; }()) }, { key: "preprocessLazyImages", value: function preprocessLazyImages($element) { var lazyImages = $element.find('img[data-src], img.swiper-lazy, img.lazy'); lazyImages.each(function (index, img) { var $img = jQuery(img); if ($img.attr('data-src')) { $img.attr('src', $img.attr('data-src')); $img.removeAttr('data-src'); } $img.removeClass('swiper-lazy lazy swiper-slide-image'); $img.removeAttr('loading'); $img.removeAttr('data-srcset'); }); } /** * Send the image to the server. * * @param {string} dataUrl * @return {Promise} Screenshot URL */ }, { key: "save", value: function save(dataUrl) { var _this$getSaveAction = this.getSaveAction(), key = _this$getSaveAction.key, action = _this$getSaveAction.action; var data = (0, _defineProperty2.default)((0, _defineProperty2.default)({}, key, this.getSettings(key)), "screenshot", dataUrl); return new Promise(function (resolve, reject) { if ('kit_id' === key) { return resolve(data.screenshot); } elementorCommon.ajax.addRequest(action, { data: data, success: function success(url) { return resolve(url); }, error: function error() { return reject(); } }); }); } /** * Mark this post screenshot as failed. * @param {Error} e */ }, { key: "markAsFailed", value: function markAsFailed(e) { var _this4 = this; return new Promise(function (resolve, reject) { var templateId = _this4.getSettings('template_id'); var postId = _this4.getSettings('post_id'); var kitId = _this4.getSettings('kit_id'); if (kitId) { resolve(); } else { var route = templateId ? 'template_screenshot_failed' : 'screenshot_failed'; var data = templateId ? { template_id: templateId, error: e.message || e.toString() } : { post_id: postId }; elementorCommon.ajax.addRequest(route, { data: data, success: function success() { return resolve(); }, error: function error() { return reject(); } }); } }); } /** * Notify that the screenshot has been succeed. * * @param {string} imageUrl */ }, { key: "screenshotSucceed", value: function screenshotSucceed(imageUrl) { this.screenshotDone(true, imageUrl); } /** * Notify that the screenshot has been failed. * * @param {Error} e */ }, { key: "screenshotFailed", value: function screenshotFailed(e) { var _this5 = this; this.markAsFailed(e).then(function () { return _this5.screenshotDone(false); }); } /** * Final method of the screenshot. * * @param {boolean} success * @param {string} imageUrl */ }, { key: "screenshotDone", value: function screenshotDone(success) { var imageUrl = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null; clearTimeout(this.timeoutTimer); this.timeoutTimer = null; var _this$getSaveAction2 = this.getSaveAction(), message = _this$getSaveAction2.message, key = _this$getSaveAction2.key; // Send the message to the parent window and not to the top. // e.g: The `Theme builder` is loaded into an iFrame so the message of the screenshot // should be sent to the `Theme builder` window and not to the top window. window.parent.postMessage({ name: message, success: success, id: this.getSettings(key), imageUrl: imageUrl }, '*'); } }, { key: "getSaveAction", value: function getSaveAction() { var config = this.getSettings(); if (config.kit_id) { return { message: 'kit-screenshot-done', action: 'update_kit_preview', key: 'kit_id' }; } if (config.template_id) { return { message: 'library/capture-screenshot-done', action: 'save_template_screenshot', key: 'template_id' }; } return { message: 'capture-screenshot-done', action: 'screenshot_save', key: 'post_id' }; } }]); }(elementorModules.ViewModule); jQuery(function () { new Screenshot(); }); })(); /******/ })() ; //# sourceMappingURL=cloud-library-screenshot.js.map"use strict"; (self["webpackChunkelementor"] = self["webpackChunkelementor"] || []).push([["node_modules_elementor_elementor-one-assets_locales_pt-PT_assets-whatsnew_json"],{ /***/ "../node_modules/@elementor/elementor-one-assets/locales/pt-PT/assets-whatsnew.json": /*!******************************************************************************************!*\ !*** ../node_modules/@elementor/elementor-one-assets/locales/pt-PT/assets-whatsnew.json ***! \******************************************************************************************/ /***/ ((module) => { module.exports = /*#__PURE__*/JSON.parse('{"4.0-default":{"title":"O novo predefinido","description":"Os novos sites começam na versão 4.0 com funcionalidades atómicas ativadas por predefinição. Os sites existentes podem ativar manualmente. Os seus layouts e sites atuais não mudam.","topic":"Versão 4.0","chipTags":["Atomic Editor"],"readMoreText":"Saiba mais","cta":""},"4.0-atomic-forms":{"title":"Formulários atómicos","description":"Crie formulários como parte do layout, não como widgets separados. Layouts flexíveis em várias colunas, aninhamento livre e controlo total com o mesmo sistema atómico.","topic":"Versão 4.0","chipTags":["Atomic Editor"],"readMoreText":"Saiba mais","cta":""},"4.0-interactions":{"title":"Interações Pro","description":"Crie movimento avançado e leve no Editor. Defina o comportamento de forma visual, tudo com base no sistema, sem scripts pesados ou ferramentas externas.","topic":"Versão 4.0","chipTags":["Atomic Editor"],"readMoreText":"Saiba mais","cta":""},"4.0-sync-design-system":{"title":"Sincronize e partilhe design systems","description":"Exporte e importe variáveis e classes entre sites e sincronize com Global Styles v3. Design consistente em projetos e versões.","topic":"Versão 4.0","chipTags":["Atomic Editor"],"readMoreText":"Saiba mais","cta":""},"angie-launch":{"title":"Apresentamos o Angie Code.","description":"Crie widgets Elementor e excertos a partir de uma descrição. Nativo para WordPress e Elementor. Pré-visualize com segurança, refine na conversa e publique quando estiver pronto.","topic":"Angie Code","chipTags":["Novo lançamento"],"readMoreText":"Saiba mais","cta":""},"partner-program":{"title":"Seja parceiro da Elementor. Desenvolva o seu negócio.","description":"Aceda a benefícios exclusivos, visibilidade, oportunidades de marketing e receitas adicionais com o trabalho que já fez. Adira gratuitamente e comece já.","chipTags":["Programa de parceiros"],"readMoreText":"","cta":"Candidatar-se"},"manage-launch":{"title":"Apresentamos o Manage","description":"Monitorize, otimize e mantenha todos os sites a partir de um painel central. Acompanhe o desempenho, atualizações em massa e riscos de segurança.","chipTags":["Novo lançamento"],"readMoreText":"","cta":"Começar grátis"},"components-3.35":{"title":"Componentes","description":"Secções modulares reutilizáveis que se atualizam em todo o lado e decide quanto controlo cede à equipa ou clientes.","topic":"Versão 4.0","chipTags":["Atomic Editor"],"readMoreText":"Saiba mais","cta":""},"one-launch":{"title":"Apresentamos o Elementor One","description":"A experiência completa para criar sites. Ferramentas para criar, otimizar e gerir, unificadas num único sítio.","chipTags":["Novo lançamento"],"readMoreText":"","cta":"Explorar o Elementor One"},"atomic-tabs-3.34":{"title":"Separadores atómicos","description":"Coloque qualquer conteúdo nos separadores, com um design verdadeiramente atómico.","topic":"Versão 4.0","chipTags":["Atomic Editor"],"readMoreText":"Saiba mais","cta":""},"variables-manager-3.33":{"title":"Gestor de variáveis","description":"Centralize cores, tipografia e tokens de tamanho para design systems coerentes e escaláveis.","topic":"Versão 4.0","chipTags":["Atomic Editor"],"readMoreText":"Saiba mais","cta":""},"ally-assistant":{"title":"Novo: acessibilidade com Ally Assistant","description":"Analise qualquer página e corrija com um clique: contraste, texto alternativo e mais. Passos orientados ou correção com IA para um sítio mais inclusivo.","topic":"Ally by Elementor","chipTags":["Nova funcionalidade"],"readMoreText":"","cta":"Analisar grátis"},"image-optimizer-3.19":{"title":"Otimize imagens com facilidade para um sítio rápido e impactante com o plugin Image Optimizer.","description":"O Image Optimizer equilibra qualidade e desempenho. Redimensione, comprima, converta para WebP: carregamento mais rápido, melhor experiência.","topic":"Image Optimizer Plugin by Elementor","chipTags":["Novo plugin"],"readMoreText":"","cta":"Obter o Image Optimizer"},"5-star-rating-prompt":{"title":"Gosta das novidades? Dê-nos 5 estrelas","description":"Conte ao mundo o que gosta no Elementor.","chipTags":[],"readMoreText":"","cta":"Deixar avaliação"},"site-mailer-introducing":{"title":"Apresentamos o Site Mailer","description":"Mantenha o e-mail do WordPress fora do spam: melhor entrega e configuração simples, sem plugin SMTP complicado.","topic":"Site Mailer Plugin by Elementor","chipTags":["Novo plugin"],"readMoreText":"","cta":"Iniciar teste grátis"}}'); /***/ }) }]);(()=>{"use strict";var t={5510:()=>{!function(t,e){t.fn.rtsbBlock=function(e){var a={overlayCSS:{zIndex:1e3,border:"none",margin:0,padding:0,width:"100%",height:"100%",top:0,left:0,background:"rgb(255, 255, 255)",opacity:.6,cursor:"wait",position:"absolute",color:"#556b2f",backgroundColor:"white"}},s=t.extend({},a,e||{}),r=t.extend({},a.overlayCSS,s.overlayCSS||{});return this.each(function(){var e=t(this);"static"===e.css("position")&&(this.style.position="relative",e.data("rtsb-block.static",!0)),this.style.zoom=1;var a=t('
').css(r);e.find("> .rtsb-loading-overlay").remove(),e.addClass("rtsb-loading").append(a)})},t.fn.rtsbUnblock=function(){return this.each(function(){var e=t(this);e.data("rtsb-block","static")&&e.css("position","static"),e.removeClass("rtsb-loading").find("> .rtsb-loading-overlay").remove()})},e.RtsbModal=function(e){this.settings=t.extend({wrapClass:"",footer:!0,header:!0,bodyClass:"",maxWidth:900,clearOldModal:!0},e),this.modal_wrapper_element=t("
"),this.show=function(){t(document).trigger("rtsb.rtsbModal.show"),this.addModal()},this.addModal=function(){this.settings.clearOldModal&&(t("body > .rtsb-ui-modal").fadeOut(150),t("body > .rtsb-ui-modal").remove());var e=this;return t("body").append(this.modal_wrapper_element),this.wrapper=t(".rtsb-modal-wrapper",this.modal_wrapper_element),this.container=t(".rtsb-modal-content",this.modal_wrapper_element),this.header=t(".rtsb-modal-header",this.modal_wrapper_element),this.header_title=t(".rtsb-modal-title",this.header),this.close_button=t(".rtsb-modal-close",this.header),this.body=t(".rtsb-modal-body",this.modal_wrapper_element),this.footer=t(".rtsb-modal-footer",this.modal_wrapper_element),this.settings.wrapClass&&this.wrapper.addClass(this.settings.wrapClass),!1===this.settings.header&&this.header.remove(),!1===this.settings.title&&this.header_title.remove(),!1===this.settings.close&&this.close_button.remove(),!1===this.settings.footer&&this.footer.remove(),this.settings.maxWidth&&this.wrapper.css({maxWidth:parseInt(this.settings.maxWidth,10)+"px"}),t("body").addClass("rtsb-modal-open"),this.settings.bodyClass&&t("body").addClass(this.settings.bodyClass),t("body > .rtsb-ui-modal").css("display",""),t(".rtsb-mask-wrapper, .rtsb-modal-close",this.modal_wrapper_element).on("click",function(){e.removeModel()}),this},this.addLoading=function(){return this.wrapper.removeClass("rtsb-modal-loaded"),this},this.addTitle=function(t){this.header_title.html(t)},this.removeLoading=function(){return this.wrapper.addClass("rtsb-modal-loaded"),this},this.removeModel=function(){return t(document).trigger("rtsb.rtsbModal.close",this.modal_wrapper_element),t("body > .rtsb-ui-modal").fadeOut(150),setTimeout(function(){t("body > .rtsb-ui-modal").remove()},150),t("body").removeClass("rtsb-modal-open"),this.settings.bodyClass&&t("body").removeClass(this.settings.bodyClass),this},this.close=function(){return this.removeModel(),this},this.content=function(t){return this.body.html(t),this},this.appendContent=function(t){return this.body.append(t),this},this.prependContent=function(t){return this.body.prepend(t),this},this.addFooterContent=function(t){return this.footer.html(t),this}}}(jQuery,window)}},e={};function a(s){var r=e[s];if(void 0!==r)return r.exports;var o=e[s]={exports:{}};return t[s](o,o.exports,a),o.exports}a(5510),function(t){t(document).ready(function(){e.linkAction(),e.modalAction(),e.buttonsAction(),e.onModalOpened()});var e={linkAction:function(){t("body.post-type-rtsb_builder").find(".page-title-action").attr("href","#")},modal:function(){t("body.post-type-rtsb_builder #wpcontent").on("click",'.page-title-action, .row-title, .row-actions [class="edit"] a',function(e){e.preventDefault();var a=t(e.target).attr("href"),s=0,r="";if(a){var o=a.slice(a.indexOf("?")+1).split("&");o&&o[0].split("=")[1]&&(s=parseInt(o[0].split("=")[1]))}s&&(r="saved-template rtsb-edit-template");var n=new RtsbModal({footer:!0,wrapClass:"heading template-builder-popups "+r}),i={action:"rtsb_builder_modal_template",post_id:s||null,__rtsb_wpnonce:rtsbParams.__rtsb_wpnonce};t.ajax({url:rtsbParams.ajaxurl,data:i,type:"GET",beforeSend:function(){n.addModal().addLoading()},success:function(e){n.addTitle(e.title),e.success&&(n.content(e.content),n.addFooterContent(e.footer),s||t(document).trigger("rtsb.Builder.Modal.Opened",[n]),t(document).trigger("rtsb.Builder.Modal.Change")),n.removeLoading()},error:function(t){}})})},getModalLayoutsHTML:function(t,e){return'
\n\t\t\t\t\n\t\t\t\t
\n\t\t\t\t\t').concat(t.image_url?'').concat(t.title,''):"","\n\t\t\t\t\t").concat(e.hasPro||"default"===t.template_type?"":'\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t').concat(t.status||"Free","\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t"),'\n\t\t\t\t\t\n\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t').concat(null==t?void 0:t.title,"\n\t\t\t\t
\n\t\t\t
")},templateCreation:function(e,a,s){var r=a.closest(".template-builder-popups"),o=a.closest(".layout-container"),n=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;return r.find(t).val()||e},i={action:"rtsb_builder_create_template",page_id:n("#page_id"),page_name:n("#rtsb_tb_template_name"),page_type:n("#rtsb_tb_template_type"),preview_product_id:n("#rtsb_product_page_preview"),the_products:n("#rtsb_page_for_the_products",[]),selected_category:n("#rtsb_page_for_the_categories",[]),selected_brand:n("#rtsb_page_for_the_brands",[]),selected_brands:n("#rtsb_page_for_the_product_brands",[]),default_template:n("#default_template:checked"),template_edit_with:n("#rtsb_tb_template_edit_with"),import_default_layout:e,demoData:JSON.parse(s),product_page_for:n("#product_page_for"),selected_tags:n("#rtsb_page_for_the_products_tags"),__rtsb_wpnonce:rtsbParams.__rtsb_wpnonce,hasPro:rtsbParams.hasPro};t.ajax({url:rtsbParams.ajaxurl,data:i,type:"POST",success:function(t){if(t&&!1===t.success)return r.removeClass("let-me-import"),o.removeClass("importing"),a.closest(".rtsb-tb-button-wrapper").removeClass("active").find(".rtsb-tb-loader").remove(),void(t.message&&window.alert(t.message));r.removeClass("let-me-import"),o.removeClass("importing").addClass("import-done"),setTimeout(function(){a.closest(".rtsb-tb-button-wrapper").removeClass("active").find(".rtsb-tb-loader").remove()},1e3),r.find("#page_id").val(t.post_id),r.addClass("saved-template"),r.find(".rtsb-tb-edit-button-wrapper a").attr("href",t.post_edit_url).html(t.edit_btn_text),r.find("#rtsb_tb_button").attr("disabled","disabled"),r.find(".rtsb-modal-close").attr("data-save","saved"),o.find(".rtsb-import-layout").attr("disabled","disabled"),a.parent().hasClass("save-button")&&a.text("Save"),o.find(".import-label").text("Done!"),a.parents(".layout-container").find(".rtsb-import-layout").attr("disabled","disabled"),a.addClass("success")},error:function(t){console.error("Template creation error:",t),r.removeClass("let-me-import"),o.removeClass("importing")}})},onModalOpened:function(){t(document).on("rtsb.Builder.Modal.Opened",function(a,s){var r=t("body.post-type-rtsb_builder").find(".set-default-layout"),o=r.data("rest-url"),n=r.data("has-pro"),i=[{template_type:"default",image_url:r.data("placeholder-image-src"),preview_link:"",title:"Blank Template"}];s.wrapper.addClass("rtsb-tb-templates-loading"),r.parents(".set-default-layout-wrapper").css("opacity","1"),r.html('
');var d=function(a){r.html(i.map(function(t){return e.getModalLayoutsHTML(t,{hasPro:n})}).join("")),a||r.append('
No preview templates are available right now.
'),r.parents(".set-default-layout-wrapper").css("opacity","1"),t(document).trigger("rtsb.Builder.Modal.Change"),s.removeLoading(),s.wrapper.removeClass("rtsb-tb-templates-loading")};t.ajax({url:o,type:"GET",data:{},success:function(t){var e,a=(null==t||null===(e=t.layouts)||void 0===e?void 0:e.length)>0;a&&(i=i.concat(t.layouts)),d(a)},error:function(t){console.error("Second API error:",t),d(!1)}})})},closeModal:function(){t(document).on("rtsb.rtsbModal.close",function(e,a){"saved"==t(a).find(".template-builder-popups .rtsb-modal-close").attr("data-save")&&location.reload()})},productSearch:function(){t("#rtsb_product_page_preview, #rtsb_page_for_the_products ").select2({placeholder:"Select Product",minimumInputLength:3,allowClear:!0,ajax:{url:rtsbParams.ajaxurl,data:function(t){return{action:"rtsb_modal_product_search",search:t.term?t.term:null,__rtsb_wpnonce:rtsbParams.__rtsb_wpnonce}},processResults:function(t,e){return{results:t.data.items}},cache:!0}})},termSearch:function(e){var a;"product_cat"===e?a="#rtsb_page_for_the_categories":"product_tag"===e?a="#rtsb_page_for_the_products_tags":"product_brand"===e&&(a="#rtsb_page_for_the_product_brands"),t(a).select2({placeholder:"Search",minimumInputLength:3,allowClear:!0,ajax:{url:rtsbParams.ajaxurl,data:function(t){return{action:"rtsb_modal_term_search",taxonomy:e,search:t.term?t.term:null,__rtsb_wpnonce:rtsbParams.__rtsb_wpnonce}},processResults:function(t,e){return{results:t.data.items}},cache:!0}})},onModalChange:function(){t(document).on("rtsb.Builder.Modal.Change",function(){var a=t("body.post-type-rtsb_builder"),s=a.find("#rtsb_tb_template_type"),r=s.val(),o=a.find(".rtsb-product-page-field"),n=a.find(".rtsb-product-page-preview-field"),i=a.find(".rtsb-product-page-for"),d=i.find("#product_page_for").val(),l=a.find(".rtsb-categories-page-field"),p=a.find(".rtsb-page-for-the-products"),c=a.find(".rtsb-product-tags-page-field"),u=a.find(".rtsb-product-brands-page-field"),b=t("#modallabelPrefix");if(i.hide(),o.hide(),p.hide(),l.hide(),c.hide(),u.hide(),n.hide(),s){t("body").find(".rtsb-import-layout").removeAttr("disabled");var m=t("body").find(".set-default-layout"),h=m.find(".layout-container[data-layout-type="+r+"]").length;m.find(".layout-container").not(".type-default").hide(),m.find(".layout-container[data-layout-type="+r+"]").show(),"product"===r?(i.show(),"specific_products"===d?(o.fadeIn(),p.fadeIn()):"product_cats"===d?(l.fadeIn(),e.termSearch("product_cat")):"product_brands"===d?(u.fadeIn(),e.termSearch("product_brand")):"product_tags"===d?(c.fadeIn(),e.termSearch("product_tag")):o.fadeIn(),n.show(),e.productSearch(),t(".rtsb-categories-page-field > p > span").hide()):"archive"===r&&(l.fadeIn(),e.termSearch("product_cat"),m.find(".layout-container[data-layout-type=shop]").show(),h+=m.find(".layout-container[data-layout-type=shop]").length,t(".rtsb-categories-page-field > p > span").show());var f=s.find("option[value='"+r+"']").text();b.html(" - "+f+' ('+h+")")}})},button:function(){t("body.post-type-rtsb_builder").on("click",".rtsb-import-layout",function(a){a.preventDefault();var s=t(this),r=s.closest(".layout-container"),o=s.closest(".template-builder-popups"),n=r.find('input[name="import_default_layout"]').val(),i=r.find(".import-label"),d=i.data("label"),l=o.find("#rtsb_tb_template_name"),p=l.val(),c=function(){s.closest(".rtsb-tb-button-wrapper").addClass("active").append('
')};if(p){l.next(".message").hide(),o.addClass("let-me-import");var u=t("body.post-type-rtsb_builder .set-default-layout").data("rest-url");n?t.ajax({url:u,type:"GET",data:{layout_id:n,has_pro:rtsbParams.hasPro},beforeSend:function(){c(),t(".layout-container").removeClass("import-done"),r.addClass("importing").removeClass("import-done"),s.parent().hasClass("save-button")&&s.text("Saving..."),i.text(d)},success:function(t){e.templateCreation(n,s,(null==t?void 0:t.data)||"{}")},error:function(t){console.error("Second API error:",t),o.removeClass("let-me-import"),r.removeClass("importing")}}):(c(),e.templateCreation(n,s,"{}"))}else l.focus().next(".message").show()})},switch:function(){t("body.post-type-rtsb_builder").on("click","td.column-set_default .rtsb-switch-wrapper",function(e){e.preventDefault();var a=t(this),s=a.find(".rtsb_set_default:checked").val(),r=a.find(".rtsb_set_default").val(),o=a.find(".rtsb_template_type").data("template_type"),n=a.find(".specific-product").data("specific_product"),i=a.find(".specific-category").data("specific_category"),d=a.find(".product-page-specific-category").data("specific_category"),l=a.find(".specific-tags").data("specific_tags"),p=a.find(".specific-brands").data("specific_brands"),c=o;n&&n.length&&(c="template-"+r+"-specific-products"),i&&i.length&&(c="template-"+r+"-specific-category"),d&&d.length&&(c="product-page-template-"+r+"-specific-category"),l&&l.length&&(c="product-page-template-"+r+"-specific-tag"),p&&p.length&&(c="product-page-template-"+r+"-specific-brand");var u=rtsbParams&&rtsbParams.singletonTypes||[];if(!o||u.includes(o)){var b=".page-type-"+c;t("body").find(b).each(function(){t(this).find(".rtsb_set_default").prop("checked",!1)})}a.find(".rtsb-loader").addClass("rtsb-slider-loading");var m={action:"rtsb_default_template",page_id:r,set_default_page_id:s?0:r,specific_product:n,pp_specific_cat:d,pp_specific_tag:l,pp_specific_brand:p,template_type:o||null,__rtsb_wpnonce:rtsbParams.__rtsb_wpnonce};t.ajax({url:rtsbParams.ajaxurl,data:m,type:"POST",success:function(t){t.success&&a.find(".rtsb_set_default").prop("checked",!s),a.find(".rtsb-loader").removeClass("rtsb-slider-loading")},error:function(t){console.log(t)}})})},disableButton:function(){t("body").on("change input",".template-builder-popups .rtsb-field",function(){t("body").find(".rtsb-import-layout").removeAttr("disabled"),t("body").find(".template-builder-popups").removeClass("saved-template")})},detectTemplateChange:function(){t("body.post-type-rtsb_builder").on("change","#rtsb_tb_template_type, #rtsb_tb_template_edit_with, #product_page_for",function(e){e.preventDefault(),t(document).trigger("rtsb.Builder.Modal.Change")})},modalAction:function(){e.modal(),e.closeModal(),e.detectTemplateChange(),e.onModalChange()},buttonsAction:function(){e.button(),e.switch(),e.disableButton()}}}(jQuery)})();import { createElement, Component, createRef, useState, useEffect, useRef, } from '@wordpress/element' import { __, sprintf } from 'ct-i18n' import $ from 'jquery' import cls from 'classnames' import { wpUpdatesAjax } from '../helpers/wp-updates' const VersionMismatchNotice = ({ className, mismatched_version_descriptor = {}, }) => { mismatched_version_descriptor = { productName: 'Blocksy theme', slug: 'blocksy', ...mismatched_version_descriptor, } const [isLoading, setIsLoading] = useState(false) return (

{sprintf( __( 'Action required - please update %s to the latest version!', 'blocksy-companion' ), mismatched_version_descriptor.productName )}

) } export default VersionMismatchNotice /*! elementor - v3.28.0 - 01-04-2025 */ .e-contact-buttons-var-9{--e-contact-buttons-size-small:48px;--e-contact-buttons-size-medium:56px;--e-contact-buttons-size-large:64px;--e-contact-buttons-svg-size-small:24px;--e-contact-buttons-svg-size-medium:28px;--e-contact-buttons-svg-size-large:32px;--e-contact-buttons-transition-duration:.3s;--e-contact-buttons-transition:all var(--e-contact-buttons-transition-duration);--e-contact-buttons-overlap-margin:-10px;--e-contact-buttons-chat-button-padding-block-end:8px;--e-contact-buttons-chat-button-padding-block-start:8px;--e-contact-buttons-chat-button-padding-inline-end:16px;--e-contact-buttons-chat-button-padding-inline-start:16px;width:auto}.e-contact-buttons-var-9 .e-contact-buttons__chat-button-icon-container{align-items:center;background-color:var(--e-contact-buttons-button-bg);border-radius:50%;display:flex;justify-content:center;position:relative;transition:var(--e-contact-buttons-transition);z-index:1}.e-contact-buttons-var-9 .e-contact-buttons__chat-button-icon-container svg{position:relative;z-index:2}.e-contact-buttons-var-9 .e-contact-buttons__chat-button-text{background-color:var(--e-contact-buttons-button-bg);color:var(--e-contact-buttons-button-icon);font-size:16px;font-weight:500;line-height:24px;padding-block-end:var(--e-contact-buttons-chat-button-padding-block-end);padding-block-start:var(--e-contact-buttons-chat-button-padding-block-start);padding-inline-end:var(--e-contact-buttons-chat-button-padding-inline-end);padding-inline-start:var(--e-contact-buttons-chat-button-padding-inline-start);position:relative;transition:var(--e-contact-buttons-transition)}.e-contact-buttons-var-9 .e-contact-buttons__chat-button{background-color:transparent;border-radius:0;color:var(--e-contact-buttons-button-icon);height:auto;width:auto}.e-contact-buttons-var-9 .e-contact-buttons__chat-button:focus,.e-contact-buttons-var-9 .e-contact-buttons__chat-button:hover{color:var(--e-contact-buttons-button-icon)}.e-contact-buttons-var-9 .e-contact-buttons__chat-button:focus svg,.e-contact-buttons-var-9 .e-contact-buttons__chat-button:hover svg{fill:var(--e-contact-buttons-button-icon)}.e-contact-buttons-var-9 .e-contact-buttons__chat-button:focus .e-contact-buttons__chat-button-icon-container,.e-contact-buttons-var-9 .e-contact-buttons__chat-button:focus .e-contact-buttons__chat-button-text,.e-contact-buttons-var-9 .e-contact-buttons__chat-button:focus .e-contact-buttons__chat-button-text:before,.e-contact-buttons-var-9 .e-contact-buttons__chat-button:hover .e-contact-buttons__chat-button-icon-container,.e-contact-buttons-var-9 .e-contact-buttons__chat-button:hover .e-contact-buttons__chat-button-text,.e-contact-buttons-var-9 .e-contact-buttons__chat-button:hover .e-contact-buttons__chat-button-text:before{background-color:var(--e-contact-buttons-button-bg);color:var(--e-contact-buttons-button-icon);transition:var(--e-contact-buttons-transition)}.e-contact-buttons-var-9 .e-contact-buttons__chat-button.has-size-small .e-contact-buttons__chat-button-icon-container{height:var(--e-contact-buttons-size-small);width:var(--e-contact-buttons-size-small)}.e-contact-buttons-var-9 .e-contact-buttons__chat-button.has-size-small .e-contact-buttons__chat-button-icon-container svg{height:var(--e-contact-buttons-svg-size-small);width:var(--e-contact-buttons-svg-size-small)}.e-contact-buttons-var-9 .e-contact-buttons__chat-button.has-size-small .e-contact-buttons__chat-button-icon-container i{font-size:var(--e-contact-buttons-svg-size-small)}.e-contact-buttons-var-9 .e-contact-buttons__chat-button.has-size-medium .e-contact-buttons__chat-button-icon-container{height:var(--e-contact-buttons-size-medium);width:var(--e-contact-buttons-size-medium)}.e-contact-buttons-var-9 .e-contact-buttons__chat-button.has-size-medium .e-contact-buttons__chat-button-icon-container svg{height:var(--e-contact-buttons-svg-size-medium);width:var(--e-contact-buttons-svg-size-medium)}.e-contact-buttons-var-9 .e-contact-buttons__chat-button.has-size-medium .e-contact-buttons__chat-button-icon-container i{font-size:var(--e-contact-buttons-svg-size-medium)}.e-contact-buttons-var-9 .e-contact-buttons__chat-button.has-size-large .e-contact-buttons__chat-button-icon-container{height:var(--e-contact-buttons-size-large);width:var(--e-contact-buttons-size-large)}.e-contact-buttons-var-9 .e-contact-buttons__chat-button.has-size-large .e-contact-buttons__chat-button-icon-container svg{height:var(--e-contact-buttons-svg-size-large);width:var(--e-contact-buttons-svg-size-large)}.e-contact-buttons-var-9 .e-contact-buttons__chat-button.has-size-large .e-contact-buttons__chat-button-icon-container i{font-size:var(--e-contact-buttons-svg-size-large)}.e-contact-buttons-var-9.has-h-alignment-end .e-contact-buttons__chat-button-container{padding-inline-end:0}@media (min-width:1025px){.e-contact-buttons-var-9.has-h-alignment-end .e-contact-buttons__chat-button-icon-container{inset-inline-end:-5px;position:absolute;transition:var(--e-contact-buttons-transition)}}.e-contact-buttons-var-9.has-h-alignment-end .e-contact-buttons__chat-button-text{border-end-end-radius:50px;border-end-start-radius:0;border-start-end-radius:50px;border-start-start-radius:0;margin-inline-start:var(--e-contact-buttons-overlap-margin)}@media (min-width:1025px){.e-contact-buttons-var-9.has-h-alignment-end .e-contact-buttons__chat-button-text{clip-path:inset(0 0 0 100%)}.e-contact-buttons-var-9.has-h-alignment-end .e-contact-buttons__chat-button:focus .e-contact-buttons__chat-button-text,.e-contact-buttons-var-9.has-h-alignment-end .e-contact-buttons__chat-button:hover .e-contact-buttons__chat-button-text{clip-path:inset(0 0 0 0);transition:var(--e-contact-buttons-transition)}.e-contact-buttons-var-9.has-h-alignment-end .e-contact-buttons__chat-button:focus .e-contact-buttons__chat-button-icon-container,.e-contact-buttons-var-9.has-h-alignment-end .e-contact-buttons__chat-button:hover .e-contact-buttons__chat-button-icon-container{inset-inline-end:100%;transition:var(--e-contact-buttons-transition)}}.e-contact-buttons-var-9.has-h-alignment-start .e-contact-buttons__chat-button-container{padding-inline-start:0}.e-contact-buttons-var-9.has-h-alignment-start .e-contact-buttons__chat-button-icon-container{order:2}@media (min-width:1025px){.e-contact-buttons-var-9.has-h-alignment-start .e-contact-buttons__chat-button-icon-container{inset-inline-start:-5px;position:absolute;transition:var(--e-contact-buttons-transition)}}.e-contact-buttons-var-9.has-h-alignment-start .e-contact-buttons__chat-button-text{border-end-end-radius:0;border-end-start-radius:50px;border-start-end-radius:0;border-start-start-radius:50px;margin-inline-end:var(--e-contact-buttons-overlap-margin);order:1}@media (min-width:1025px){.e-contact-buttons-var-9.has-h-alignment-start .e-contact-buttons__chat-button-text{clip-path:inset(0 100% 0 0);transition:var(--e-contact-buttons-transition)}.e-contact-buttons-var-9.has-h-alignment-start .e-contact-buttons__chat-button:focus .e-contact-buttons__chat-button-text,.e-contact-buttons-var-9.has-h-alignment-start .e-contact-buttons__chat-button:hover .e-contact-buttons__chat-button-text{clip-path:inset(0 0 0 0);transition:var(--e-contact-buttons-transition)}.e-contact-buttons-var-9.has-h-alignment-start .e-contact-buttons__chat-button:focus .e-contact-buttons__chat-button-icon-container,.e-contact-buttons-var-9.has-h-alignment-start .e-contact-buttons__chat-button:hover .e-contact-buttons__chat-button-icon-container{inset-inline-start:100%;transition:var(--e-contact-buttons-transition)}.e-contact-buttons-var-9.has-h-alignment-center .e-contact-buttons__chat-button-icon-container{inset-inline-start:50%;order:2;position:absolute;transform:translateX(-50%)}}.e-contact-buttons-var-9.has-h-alignment-center .e-contact-buttons__chat-button-text{border-end-end-radius:50px;border-end-start-radius:0;border-start-end-radius:50px;border-start-start-radius:0;margin-inline-start:var(--e-contact-buttons-overlap-margin)}@media (min-width:1025px){.e-contact-buttons-var-9.has-h-alignment-center .e-contact-buttons__chat-button-text{clip-path:inset(0 0 0 100%);inset-inline-end:50%;order:1}.e-contact-buttons-var-9.has-h-alignment-center .e-contact-buttons__chat-button:focus .e-contact-buttons__chat-button-text,.e-contact-buttons-var-9.has-h-alignment-center .e-contact-buttons__chat-button:hover .e-contact-buttons__chat-button-text{clip-path:inset(0 0 0 0);transition:var(--e-contact-buttons-transition)}.e-contact-buttons-var-9.has-h-alignment-center .e-contact-buttons__chat-button:focus .e-contact-buttons__chat-button-icon-container,.e-contact-buttons-var-9.has-h-alignment-center .e-contact-buttons__chat-button:hover .e-contact-buttons__chat-button-icon-container{inset-inline-start:-100%;transform:unset;transition:var(--e-contact-buttons-transition)}}.e-contact-buttons-var-9.has-h-alignment-center .e-contact-buttons__chat-button.has-size-small:focus .e-contact-buttons__chat-button-icon-container,.e-contact-buttons-var-9.has-h-alignment-center .e-contact-buttons__chat-button.has-size-small:hover .e-contact-buttons__chat-button-icon-container{inset-inline-start:calc(-100% + 10px)}.e-contact-buttons-var-9.has-h-alignment-center .e-contact-buttons__chat-button.has-size-large:focus .e-contact-buttons__chat-button-icon-container,.e-contact-buttons-var-9.has-h-alignment-center .e-contact-buttons__chat-button.has-size-large:hover .e-contact-buttons__chat-button-icon-container{inset-inline-start:calc(-100% - 5px)}@keyframes elementor-animation-wobble-vertical{16.65%{transform:translateY(8px)}33.3%{transform:translateY(-6px)}49.95%{transform:translateY(4px)}66.6%{transform:translateY(-2px)}83.25%{transform:translateY(1px)}100%{transform:translateY(0)}}.elementor-animation-wobble-vertical:active,.elementor-animation-wobble-vertical:focus,.elementor-animation-wobble-vertical:hover{animation-name:elementor-animation-wobble-vertical;animation-duration:1s;animation-timing-function:ease-in-out;animation-iteration-count:1}.et-db #et-boc .et-fb-modules-list .et_fb_nextend_smart_slider_3:before{content:"S"}.et-db #et-boc .et-fb-modules-list .et_fb_nextend_smart_slider_3_fullwidth:before{content:"S"}:root { --e-one-palette-text-primary: #ffffff; --e-one-palette-text-secondary: #babfc5; --e-one-palette-text-tertiary: #9da5ae; --e-one-palette-text-disabled: #515962; --e-one-palette-primary-light: #f3bafd; --e-one-palette-primary-main: #f0abfc; --e-one-palette-primary-dark: #eb8efb; --e-one-palette-primary-contrastText: #0c0d0e; --e-one-palette-secondary-light: #babfc5; --e-one-palette-secondary-main: #9da5ae; --e-one-palette-secondary-dark: #818a96; --e-one-palette-secondary-contrastText: #0c0d0e; --e-one-palette-error-light: #ef4444; --e-one-palette-error-main: #dc2626; --e-one-palette-error-dark: #b91c1c; --e-one-palette-error-contrastText: #ffffff; --e-one-palette-warning-light: #fbbf24; --e-one-palette-warning-main: #f59e0b; --e-one-palette-warning-dark: #b15211; --e-one-palette-warning-contrastText: #000000; --e-one-palette-info-light: #3b82f6; --e-one-palette-info-main: #2563eb; --e-one-palette-info-dark: #1d4ed8; --e-one-palette-info-contrastText: #ffffff; --e-one-palette-success-light: #10b981; --e-one-palette-success-main: #0a875a; --e-one-palette-success-dark: #047857; --e-one-palette-success-contrastText: #ffffff; --e-one-palette-global-light: #99f6e4; --e-one-palette-global-main: #5eead4; --e-one-palette-global-dark: #2adfcd; --e-one-palette-global-contrastText: #0c0d0e; --e-one-palette-promotion-light: #b51243; --e-one-palette-promotion-main: #93003f; --e-one-palette-promotion-dark: #7e013b; --e-one-palette-promotion-contrastText: #ffffff; --e-one-palette-decorative-light: #99f6e4; --e-one-palette-decorative-main: #5eead4; --e-one-palette-decorative-dark: #2adfcd; --e-one-palette-decorative-contrastText: #0c0d0e; --e-one-palette-neutral-light: #ffffff; --e-one-palette-neutral-main: #ffffff; --e-one-palette-neutral-dark: #ffffff; --e-one-palette-neutral-contrastText: #ffffff; --e-one-palette-action-active: #fff; --e-one-palette-action-hover: rgba(255, 255, 255, 0.08); --e-one-palette-action-selected: rgba(255, 255, 255, 0.16); --e-one-palette-action-focus: rgba(255, 255, 255, 0.12); --e-one-palette-action-disabled: rgba(255, 255, 255, 0.3); --e-one-palette-action-disabledBackground: rgba(255, 255, 255, 0.12); --e-one-palette-divider: rgba(255, 255, 255, 0.12); --e-one-palette-common-black: #000; --e-one-palette-common-white: #fff; --e-one-palette-background-default: #1f2124; --e-one-palette-background-paper: #0c0d0e; } /*# sourceMappingURL=theme-dark.css.map */.prismjs-dark code[class*=language-],.prismjs-dark pre[class*=language-]{background:0 0;color:#fff;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:1em;text-align:left;text-shadow:0 -.1em .2em #000;white-space:pre;word-break:normal;word-spacing:normal;word-wrap:normal;-webkit-hyphens:none;hyphens:none;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}.prismjs-dark pre[class*=language-]{background:#4c3f33;border:.3em solid #7a6651;border-radius:.5em;box-shadow:inset 1px 1px .5em #000;margin:0;overflow:auto;padding:1em}.prismjs-dark :not(pre)>code[class*=language-]{border:.13em solid #7a6651;border-radius:.3em;box-shadow:inset 1px 1px .3em -.1em #000;padding:.15em .2em .05em;white-space:normal}.prismjs-dark .token.cdata,.prismjs-dark .token.doctype,.prismjs-dark .token.prolog,.token.comment{color:#997f66}.prismjs-dark .token.namespace,.prismjs-dark .token.punctuation{opacity:.7}.prismjs-dark .token.boolean,.prismjs-dark .token.constant,.prismjs-dark .token.number,.prismjs-dark .token.property,.prismjs-dark .token.symbol,.prismjs-dark .token.tag{color:#d1939e}.prismjs-dark .token.attr-name,.prismjs-dark .token.builtin,.prismjs-dark .token.char,.prismjs-dark .token.inserted,.prismjs-dark .token.selector,.prismjs-dark .token.string{color:#bce051}.prismjs-dark .language-css .token.string,.prismjs-dark .style .token.string,.prismjs-dark .token.entity,.prismjs-dark .token.operator,.prismjs-dark .token.url,.token.variable{color:#f4b73d}.prismjs-dark .token.atrule,.prismjs-dark .token.attr-value,.prismjs-dark .token.keyword{color:#d1939e}.prismjs-dark .token.important,.prismjs-dark .token.regex{color:#e90}.prismjs-dark .token.bold,.prismjs-dark .token.important{font-weight:700}.prismjs-dark .token.italic{font-style:italic}.prismjs-dark .token.entity{cursor:help}.prismjs-dark .token.deleted{color:red}.prismjs-default code[class*=language-],.prismjs-default pre[class*=language-]{background:0 0;color:#000;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:1em;text-align:left;text-shadow:0 1px #fff;white-space:pre;word-break:normal;word-spacing:normal;word-wrap:normal;-webkit-hyphens:none;hyphens:none;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}.prismjs-default code[class*=language-] ::-moz-selection,.prismjs-default code[class*=language-]::-moz-selection,.prismjs-default pre[class*=language-] ::-moz-selection,.prismjs-default pre[class*=language-]::-moz-selection{background:#b3d4fc;text-shadow:none}.prismjs-default code[class*=language-] ::selection,.prismjs-default code[class*=language-]::selection,.prismjs-default pre[class*=language-] ::selection,.prismjs-default pre[class*=language-]::selection{background:#b3d4fc;text-shadow:none}@media print{.prismjs-default code[class*=language-],.prismjs-default pre[class*=language-]{text-shadow:none}}.prismjs-default pre[class*=language-]{margin:0;overflow:auto;padding:1em}.prismjs-default :not(pre)>code[class*=language-],.prismjs-default pre[class*=language-]{background:#f5f2f0}.prismjs-default :not(pre)>code[class*=language-]{border-radius:.3em;padding:.1em;white-space:normal}.prismjs-default .token.cdata,.prismjs-default .token.comment,.prismjs-default .token.doctype,.prismjs-default .token.prolog{color:#708090}.prismjs-default .token.punctuation{color:#999}.prismjs-default .token.namespace{opacity:.7}.prismjs-default .token.boolean,.prismjs-default .token.constant,.prismjs-default .token.deleted,.prismjs-default .token.number,.prismjs-default .token.property,.prismjs-default .token.symbol,.prismjs-default .token.tag{color:#905}.prismjs-default .token.attr-name,.prismjs-default .token.builtin,.prismjs-default .token.char,.prismjs-default .token.inserted,.prismjs-default .token.selector,.prismjs-default .token.string{color:#690}.prismjs-default .language-css .token.string,.prismjs-default .style .token.string,.prismjs-default .token.entity,.prismjs-default .token.operator,.prismjs-default .token.url{background:hsla(0,0%,100%,.5);color:#9a6e3a}.prismjs-default .token.atrule,.prismjs-default .token.attr-value,.prismjs-default .token.keyword{color:#07a}.prismjs-default .token.class-name,.prismjs-default .token.function{color:#dd4a68}.prismjs-default .token.important,.prismjs-default .token.regex,.prismjs-default .token.variable{color:#e90}.prismjs-default .token.bold,.prismjs-default .token.important{font-weight:700}.prismjs-default .token.italic{font-style:italic}.prismjs-default .token.entity{cursor:help}.prismjs-okaidia code[class*=language-],.prismjs-okaidia pre[class*=language-]{background:0 0;color:#f8f8f2;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:1em;text-align:left;text-shadow:0 1px rgba(0,0,0,.3);white-space:pre;word-break:normal;word-spacing:normal;word-wrap:normal;-webkit-hyphens:none;hyphens:none;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}.prismjs-okaidia pre[class*=language-]{border-radius:.3em;margin:0;overflow:auto;padding:1em}.prismjs-okaidia :not(pre)>code[class*=language-],.prismjs-okaidia pre[class*=language-]{background:#272822}.prismjs-okaidia :not(pre)>code[class*=language-]{border-radius:.3em;padding:.1em;white-space:normal}.prismjs-okaidia .token.cdata,.prismjs-okaidia .token.comment,.prismjs-okaidia .token.doctype,.prismjs-okaidia .token.prolog{color:#8292a2}.prismjs-okaidia .token.punctuation{color:#f8f8f2}.prismjs-okaidia .token.namespace{opacity:.7}.prismjs-okaidia .token.constant,.prismjs-okaidia .token.deleted,.prismjs-okaidia .token.property,.prismjs-okaidia .token.symbol,.prismjs-okaidia .token.tag{color:#f92672}.prismjs-okaidia .token.boolean,.prismjs-okaidia .token.number{color:#ae81ff}.prismjs-okaidia .token.attr-name,.prismjs-okaidia .token.builtin,.prismjs-okaidia .token.char,.prismjs-okaidia .token.inserted,.prismjs-okaidia .token.selector,.prismjs-okaidia .token.string{color:#a6e22e}.prismjs-okaidia .language-css .token.string,.prismjs-okaidia .style .token.string,.prismjs-okaidia .token.entity,.prismjs-okaidia .token.operator,.prismjs-okaidia .token.url,.prismjs-okaidia .token.variable{color:#f8f8f2}.prismjs-okaidia .token.atrule,.prismjs-okaidia .token.attr-value,.prismjs-okaidia .token.class-name,.prismjs-okaidia .token.function{color:#e6db74}.prismjs-okaidia .token.keyword{color:#66d9ef}.prismjs-okaidia .token.important,.prismjs-okaidia .token.regex{color:#fd971f}.prismjs-okaidia .token.bold,.prismjs-okaidia .token.important{font-weight:700}.prismjs-okaidia .token.italic{font-style:italic}.prismjs-okaidia .token.entity{cursor:help}.prismjs-solarizedlight code[class*=language-],.prismjs-solarizedlight pre[class*=language-]{color:#657b83;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:1em;text-align:left;white-space:pre;word-break:normal;word-spacing:normal;word-wrap:normal;-webkit-hyphens:none;hyphens:none;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}.prismjs-solarizedlight code[class*=language-] ::-moz-selection,.prismjs-solarizedlight code[class*=language-]::-moz-selection,.prismjs-solarizedlight pre[class*=language-] ::-moz-selection,.prismjs-solarizedlight pre[class*=language-]::-moz-selection{background:#073642}.prismjs-solarizedlight code[class*=language-] ::selection,.prismjs-solarizedlight code[class*=language-]::selection,.prismjs-solarizedlight pre[class*=language-] ::selection,.prismjs-solarizedlight pre[class*=language-]::selection{background:#073642}.prismjs-solarizedlight pre[class*=language-]{border-radius:.3em;margin:0;overflow:auto;padding:1em}.prismjs-solarizedlight :not(pre)>code[class*=language-],.prismjs-solarizedlight pre[class*=language-]{background-color:#fdf6e3}.prismjs-solarizedlight :not(pre)>code[class*=language-]{border-radius:.3em;padding:.1em}.prismjs-solarizedlight .token.cdata,.prismjs-solarizedlight .token.comment,.prismjs-solarizedlight .token.doctype,.prismjs-solarizedlight .token.prolog{color:#93a1a1}.prismjs-solarizedlight .token.punctuation{color:#586e75}.prismjs-solarizedlight .token.namespace{opacity:.7}.prismjs-solarizedlight .token.boolean,.prismjs-solarizedlight .token.constant,.prismjs-solarizedlight .token.deleted,.prismjs-solarizedlight .token.number,.prismjs-solarizedlight .token.property,.prismjs-solarizedlight .token.symbol,.token.tag{color:#268bd2}.prismjs-solarizedlight .token.attr-name,.prismjs-solarizedlight .token.builtin,.prismjs-solarizedlight .token.char,.prismjs-solarizedlight .token.inserted,.prismjs-solarizedlight .token.selector,.prismjs-solarizedlight .token.string,.prismjs-solarizedlight .token.url{color:#2aa198}.prismjs-solarizedlight .token.entity{background:#eee8d5;color:#657b83}.prismjs-solarizedlight .token.atrule,.prismjs-solarizedlight .token.attr-value,.prismjs-solarizedlight .token.keyword{color:#859900}.prismjs-solarizedlight .token.class-name,.prismjs-solarizedlight .token.function{color:#b58900}.prismjs-solarizedlight .token.important,.prismjs-solarizedlight .token.regex,.prismjs-solarizedlight .token.variable{color:#cb4b16}.prismjs-solarizedlight .token.bold,.prismjs-solarizedlight .token.important{font-weight:700}.prismjs-solarizedlight .token.italic{font-style:italic}.prismjs-solarizedlight .token.entity{cursor:help}.prismjs-tomorrow code[class*=language-],.prismjs-tomorrow pre[class*=language-]{background:0 0;color:#ccc;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:1em;text-align:left;white-space:pre;word-break:normal;word-spacing:normal;word-wrap:normal;-webkit-hyphens:none;hyphens:none;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}.prismjs-tomorrow pre[class*=language-]{margin:0;overflow:auto;padding:1em}.prismjs-tomorrow :not(pre)>code[class*=language-],.prismjs-tomorrow pre[class*=language-]{background:#2d2d2d}.prismjs-tomorrow :not(pre)>code[class*=language-]{border-radius:.3em;padding:.1em;white-space:normal}.prismjs-tomorrow .token.block-comment,.prismjs-tomorrow .token.cdata,.prismjs-tomorrow .token.comment,.prismjs-tomorrow .token.doctype,.prismjs-tomorrow .token.prolog{color:#999}.prismjs-tomorrow .token.punctuation{color:#ccc}.prismjs-tomorrow .token.attr-name,.prismjs-tomorrow .token.deleted,.prismjs-tomorrow .token.namespace,.prismjs-tomorrow .token.tag{color:#e2777a}.prismjs-tomorrow .token.function-name{color:#6196cc}.prismjs-tomorrow .token.boolean,.prismjs-tomorrow .token.function,.prismjs-tomorrow .token.number{color:#f08d49}.prismjs-tomorrow .token.class-name,.prismjs-tomorrow .token.constant,.prismjs-tomorrow .token.property,.prismjs-tomorrow .token.symbol{color:#f8c555}.prismjs-tomorrow .token.atrule,.prismjs-tomorrow .token.builtin,.prismjs-tomorrow .token.important,.prismjs-tomorrow .token.keyword,.prismjs-tomorrow .token.selector{color:#cc99cd}.prismjs-tomorrow .token.attr-value,.prismjs-tomorrow .token.char,.prismjs-tomorrow .token.regex,.prismjs-tomorrow .token.string,.prismjs-tomorrow .token.variable{color:#7ec699}.prismjs-tomorrow .token.entity,.prismjs-tomorrow .token.operator,.prismjs-tomorrow .token.url{color:#67cdcc}.prismjs-tomorrow .token.bold,.prismjs-tomorrow .token.important{font-weight:700}.prismjs-tomorrow .token.italic{font-style:italic}.prismjs-tomorrow .token.entity{cursor:help}.prismjs-tomorrow .token.inserted{color:green}.prismjs-twilight code[class*=language-],.prismjs-twilight pre[class*=language-]{background:0 0;color:#fff;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:1em;text-align:left;text-shadow:0 -.1em .2em #000;white-space:pre;word-break:normal;word-spacing:normal;word-wrap:normal;-webkit-hyphens:none;hyphens:none;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}.prismjs-twilight :not(pre)>code[class*=language-],.prismjs-twilight pre[class*=language-]{background:#141414}.prismjs-twilight pre[class*=language-]{border:.3em solid #545454;border-radius:.5em;box-shadow:inset 1px 1px .5em #000;margin:0;overflow:auto;padding:1em}.prismjs-twilight pre[class*=language-]::-moz-selection{background:#27292a}.prismjs-twilight pre[class*=language-]::selection{background:#27292a}.prismjs-twilight code[class*=language-] ::-moz-selection,.prismjs-twilight code[class*=language-]::-moz-selection,.prismjs-twilight pre[class*=language-] ::-moz-selection,.prismjs-twilight pre[class*=language-]::-moz-selection{background:hsla(0,0%,93%,.15);text-shadow:none}.prismjs-twilight code[class*=language-] ::selection,.prismjs-twilight code[class*=language-]::selection,.prismjs-twilight pre[class*=language-] ::selection,.prismjs-twilight pre[class*=language-]::selection{background:hsla(0,0%,93%,.15);text-shadow:none}.prismjs-twilight :not(pre)>code[class*=language-]{border:.13em solid #545454;border-radius:.3em;box-shadow:inset 1px 1px .3em -.1em #000;padding:.15em .2em .05em;white-space:normal}.prismjs-twilight .token.cdata,.prismjs-twilight .token.comment,.prismjs-twilight .token.doctype,.prismjs-twilight .token.prolog{color:#777}.prismjs-twilight .token.namespace,.prismjs-twilight .token.punctuation{opacity:.7}.prismjs-twilight .token.boolean,.prismjs-twilight .token.deleted,.prismjs-twilight .token.number,.prismjs-twilight .token.tag{color:#ce6849}.prismjs-twilight .token.builtin,.prismjs-twilight .token.constant,.prismjs-twilight .token.keyword,.prismjs-twilight .token.property,.prismjs-twilight .token.selector,.prismjs-twilight .token.symbol{color:#f9ed99}.prismjs-twilight .language-css .token.string,.prismjs-twilight .style .token.string,.prismjs-twilight .token.attr-name,.prismjs-twilight .token.attr-value,.prismjs-twilight .token.char,.prismjs-twilight .token.entity,.prismjs-twilight .token.inserted,.prismjs-twilight .token.operator,.prismjs-twilight .token.string,.prismjs-twilight .token.url,.prismjs-twilight .token.variable{color:#909e6a}.prismjs-twilight .token.atrule{color:#7385a5}.prismjs-twilight .token.important,.prismjs-twilight .token.regex{color:#e8c062}.prismjs-twilight .token.bold,.prismjs-twilight .token.important{font-weight:700}.prismjs-twilight .token.italic{font-style:italic}.prismjs-twilight .token.entity{cursor:help}.prismjs-twilight pre[data-line]{padding:1em;position:relative}.prismjs-twilight .language-markup .token.attr-name,.prismjs-twilight .language-markup .token.punctuation,.prismjs-twilight .language-markup .token.tag{color:#ac885c}.prismjs-twilight .token{position:relative;z-index:1}.prismjs-twilight .line-highlight{background:rgba(84,84,84,.25);background:linear-gradient(90deg,rgba(84,84,84,.1) 70%,rgba(84,84,84,0));border-bottom:1px dashed #545454;border-top:1px dashed #545454;left:0;line-height:inherit;margin-top:.75em;padding-bottom:inherit;padding-left:0;padding-right:0;padding-top:inherit;pointer-events:none;position:absolute;right:0;white-space:pre;z-index:0}.prismjs-twilight .line-highlight:before,.prismjs-twilight .line-highlight[data-end]:after{background-color:#8693a6;border-radius:999px;box-shadow:0 1px #fff;color:#f4f1ef;content:attr(data-start);font:700 65%/1.5 sans-serif;left:.6em;min-width:1em;padding:0 .5em;position:absolute;text-align:center;text-shadow:none;top:.4em;vertical-align:.3em}.prismjs-twilight .line-highlight[data-end]:after{bottom:.4em;content:attr(data-end);top:auto}.copy-to-clipboard div.code-toolbar{position:relative}.copy-to-clipboard div.code-toolbar>.toolbar{opacity:0;position:absolute;right:.2em;top:.3em;transition:opacity .3s ease-in-out}.copy-to-clipboard div.code-toolbar:hover>.toolbar{opacity:1}.copy-to-clipboard div.code-toolbar:focus-within>.toolbar{opacity:1}.copy-to-clipboard div.code-toolbar>.toolbar .toolbar-item{display:inline-block}.copy-to-clipboard div.code-toolbar>.toolbar a{cursor:pointer}.copy-to-clipboard div.code-toolbar>.toolbar button{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;padding:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.copy-to-clipboard div.code-toolbar>.toolbar a,.copy-to-clipboard div.code-toolbar>.toolbar button,.copy-to-clipboard div.code-toolbar>.toolbar span{background:#f5f2f0;background:hsla(0,0%,88%,.2);border-radius:.5em;box-shadow:0 2px 0 0 rgba(0,0,0,.2);color:#bbb;font-size:.8em;padding:0 .5em}.copy-to-clipboard div.code-toolbar>.toolbar a:focus,div.code-toolbar>.toolbar a:hover,div.code-toolbar>.toolbar button:focus,div.code-toolbar>.toolbar button:hover,div.code-toolbar>.toolbar span:focus,div.code-toolbar>.toolbar span:hover{color:inherit;text-decoration:none}:not(.copy-to-clipboard)>div.code-toolbar>.toolbar{display:none}.word-wrap code[class*=language-],.word-wrap pre[class*=language-]{white-space:pre-wrap!important}.elementor-widget-code-highlight .elementor-widget-container,.elementor-widget-code-highlight:not(:has(.elementor-widget-container)){overflow:hidden}.elementor-widget-code-highlight pre{direction:ltr}.prismjs-twilight pre:not([data-line=""]):not(.line-numbers){padding:.8em 0 1em 2em}.prismjs-dark pre:not([data-line=""]):not(.line-numbers),.prismjs-default pre:not([data-line=""]):not(.line-numbers),.prismjs-okaidia pre:not([data-line=""]):not(.line-numbers),.prismjs-solarizedlight pre:not([data-line=""]):not(.line-numbers),.prismjs-tomorrow pre:not([data-line=""]):not(.line-numbers){padding:1em 0 1em 2em}pre[data-line]{padding:1em 0 1em 3em;position:relative}.line-highlight{background:hsla(24,20%,50%,.08);background:linear-gradient(90deg,hsla(24,20%,50%,.1) 70%,hsla(24,20%,50%,0));left:0;line-height:inherit;margin-top:1em;padding-bottom:inherit;padding-left:0;padding-right:0;padding-top:inherit;pointer-events:none;position:absolute;right:0;white-space:pre}@media print{.line-highlight{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.line-highlight:before,.line-highlight[data-end]:after{background-color:hsla(24,20%,50%,.4);border-radius:999px;box-shadow:0 1px #fff;color:#f4f1ef;content:attr(data-start);font:700 65%/1.5 sans-serif;left:.6em;min-width:1em;padding:0 .5em;position:absolute;text-align:center;text-shadow:none;top:.4em;vertical-align:.3em}.line-highlight[data-end]:after{bottom:.4em;content:attr(data-end);top:auto}.line-numbers .line-highlight:after,.line-numbers .line-highlight:before{content:none}pre[id].linkable-line-numbers span.line-numbers-rows{pointer-events:all}pre[id].linkable-line-numbers span.line-numbers-rows>span:before{cursor:pointer}pre[id].linkable-line-numbers span.line-numbers-rows>span:hover:before{background-color:hsla(0,0%,50%,.2)}pre[class*=language-].line-numbers{counter-reset:linenumber;padding-left:3.8em;position:relative}pre[class*=language-].line-numbers>code{position:relative;white-space:inherit}.line-numbers .line-numbers-rows{border-right:1px solid #999;font-size:100%;left:-3.8em;letter-spacing:-1px;pointer-events:none;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:3em}.line-numbers-rows>span{counter-increment:linenumber;display:block}.line-numbers-rows>span:before{color:#999;content:counter(linenumber);display:block;padding-right:.8em;text-align:right} 404 - Page not found - Nikir

404

/*! * WPMU DEV Forminator UI * Copyright 2019 Incsub (https://incsub.com) * Licensed under GPL v3 (http://www.gnu.org/licenses/gpl-3.0.html) */.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-content{display:block}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-content,.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-content li{margin:0;padding:0;border:0;list-style:none}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-content li:after,.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-content li:before,.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-content:after,.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-content:before{content:unset}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-content li{display:none;visibility:hidden}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-content li:focus{-webkit-box-shadow:none;box-shadow:none}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-content li.forminator-current{display:block;visibility:visible}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-footer{display:block;margin:20px 0 0}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-footer .forminator-button{width:100%;display:block;margin-right:0}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-footer .forminator-button:last-child{margin-bottom:0}@media(max-width:782px){.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-footer .forminator-button{margin-right:0;margin-bottom:10px}}.forminator-ui.forminator-custom-form[data-design=material][data-color-option=default] .forminator-pagination-content li:focus{outline:0}.forminator-ui.forminator-custom-form[data-design=material]:not(.forminator-size--small) .forminator-pagination-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:30px 0 0}.forminator-ui.forminator-custom-form[data-design=material]:not(.forminator-size--small) .forminator-pagination-footer a,.forminator-ui.forminator-custom-form[data-design=material]:not(.forminator-size--small) .forminator-pagination-footer button{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}@media(min-width:783px){.forminator-ui.forminator-custom-form[data-design=material]:not(.forminator-size--small) .forminator-pagination-footer .forminator-button:last-child{margin-right:0}}@media(min-width:783px){.forminator-ui.forminator-custom-form[data-design=material]:not(.forminator-size--small) .forminator-pagination-footer .forminator-button{width:auto;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}}.forminator-ui.forminator-custom-form[data-design=material]:not(.forminator-size--small).draft-enabled .forminator-pagination-footer{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.forminator-ui.forminator-custom-form[data-design=material]:not(.forminator-size--small).draft-enabled .forminator-pagination-footer .forminator-button-back{margin-right:20px}@media(max-width:782px){.forminator-ui.forminator-custom-form[data-design=material]:not(.forminator-size--small).draft-enabled .forminator-pagination-footer .forminator-button-back{margin-right:0}}.forminator-ui.forminator-custom-form[data-design=material]:not(.forminator-size--small).draft-enabled .forminator-pagination-footer .forminator-save-draft-link{padding:10px 0;margin:0 auto 0 0;text-align:right;line-height:22px}@media(max-width:782px){.forminator-ui.forminator-custom-form[data-design=material]:not(.forminator-size--small).draft-enabled .forminator-pagination-footer .forminator-save-draft-link{width:100%;text-align:center;margin:0 0 10px;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-steps{counter-reset:pagination-steps;margin:0 0 20px}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-steps .forminator-break{width:1px;height:21px;margin:0 10px}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-steps .forminator-break:first-child,.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-steps .forminator-break:last-child{display:none}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-steps .forminator-step{height:21px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0;padding:0;border:0;border-radius:0;background-color:rgba(0,0,0,0);-webkit-box-shadow:none;box-shadow:none;text-transform:none;text-decoration:none}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-steps .forminator-step .forminator-step-label{overflow:hidden;display:block;-webkit-box-flex:1;-ms-flex:1;flex:1;line-height:1.6em;text-overflow:ellipsis;white-space:nowrap}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-steps .forminator-step .forminator-step-label+.forminator-step-dot{margin-right:5px}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-steps .forminator-step .forminator-step-dot{width:21px;height:21px;border-radius:42px}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-steps .forminator-step .forminator-step-dot:before{display:block;content:counter(pagination-steps);counter-increment:pagination-steps;line-height:21px;text-align:center}@media(min-width:783px){.forminator-ui.forminator-custom-form[data-design=material]:not(.forminator-size--small) .forminator-pagination-steps .forminator-break{width:auto;min-width:21px;height:1px;-webkit-box-flex:1;-ms-flex:1;flex:1;margin:0 15px}}@media(min-width:783px){.forminator-ui.forminator-custom-form[data-design=material]:not(.forminator-size--small) .forminator-pagination-steps .forminator-step .forminator-step-label{overflow:unset;text-overflow:unset;white-space:normal}}@media(min-width:783px){.forminator-ui.forminator-custom-form[data-design=material]:not(.forminator-size--small) .forminator-pagination-steps .forminator-step{height:auto;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}}@media(min-width:783px){.forminator-ui.forminator-custom-form[data-design=material]:not(.forminator-size--small) .forminator-pagination-steps{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:30px}}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-progress{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 20px}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-progress .forminator-progress-label{display:block;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;line-height:2.2em}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-progress .forminator-progress-label+.forminator-progress-bar{margin-left:10px}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-progress .forminator-progress-bar{height:8px;overflow:hidden;display:block;-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.forminator-ui.forminator-custom-form[data-design=material] .forminator-pagination-progress .forminator-progress-bar span{height:8px;display:block}@media(min-width:783px){.forminator-ui.forminator-custom-form[data-design=material]:not(.forminator-size--small) .forminator-pagination-progress .forminator-progress-label+.forminator-progress-bar{margin-left:15px}}@media(min-width:783px){.forminator-ui.forminator-custom-form[data-design=material]:not(.forminator-size--small) .forminator-pagination-progress{margin-bottom:30px}}(()=>{var e={9730:e=>{"use strict";e.exports=elementorV2.query},10564:e=>{function _typeof(t){return e.exports=_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e.exports.__esModule=!0,e.exports.default=e.exports,_typeof(t)}e.exports=_typeof,e.exports.__esModule=!0,e.exports.default=e.exports},11018:e=>{e.exports=function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.__esModule=!0,e.exports.default=e.exports},12470:e=>{"use strict";e.exports=wp.i18n},18821:(e,t,r)=>{var n=r(70569),a=r(65474),o=r(37744),i=r(11018);e.exports=function _slicedToArray(e,t){return n(e)||a(e,t)||o(e,t)||i()},e.exports.__esModule=!0,e.exports.default=e.exports},24752:(e,t,r)=>{"use strict";var n=r(62688),a=r(96784);Object.defineProperty(t,"__esModule",{value:!0}),t.WhatsNewItemChips=void 0;var o=a(r(41594)),i=a(r(78304)),l=r(86956);(t.WhatsNewItemChips=function WhatsNewItemChips(e){var t=e.chipPlan,r=e.chipTags,n=e.itemIndex,a=[];return t&&a.push({color:"promotion",size:"small",label:t}),r&&r.forEach(function(e){a.push({variant:"outlined",size:"small",label:e})}),a.length?o.default.createElement(l.Stack,{direction:"row",flexWrap:"wrap",gap:1,sx:{pb:1}},a.map(function(e,t){return o.default.createElement(l.Chip,(0,i.default)({key:"chip-".concat(n).concat(t)},e))})):null}).propTypes={chipPlan:n.string,chipTags:n.array,itemIndex:n.number.isRequired}},25206:(e,t,r)=>{"use strict";var n=r(62688),a=r(96784);Object.defineProperty(t,"__esModule",{value:!0}),t.WhatsNewItem=void 0;var o=a(r(41594)),i=r(86956),l=r(56971),s=r(94841),u=r(46555),c=r(24752);(t.WhatsNewItem=function WhatsNewItem(e){var t=e.item,r=e.itemIndex,n=e.itemsLength,a=e.setIsOpen;return o.default.createElement(i.Box,{key:r,display:"flex",flexDirection:"column",sx:{pt:2}},(t.topic||t.date)&&o.default.createElement(l.WhatsNewItemTopicLine,{topic:t.topic,date:t.date}),o.default.createElement(s.WrapperWithLink,{link:t.link},o.default.createElement(i.Typography,{variant:"subtitle1",sx:{pb:2}},t.title)),t.imageSrc&&o.default.createElement(u.WhatsNewItemThumbnail,{imageSrc:t.imageSrc,link:t.link,title:t.title}),o.default.createElement(c.WhatsNewItemChips,{chipPlan:t.chipPlan,chipTags:t.chipTags,itemIndex:r}),t.description&&o.default.createElement(i.Typography,{variant:"body2",color:"text.secondary",sx:{pb:2}},t.description,t.readMoreText&&o.default.createElement(o.default.Fragment,null," ",o.default.createElement(i.Link,{href:t.link,color:"info.main",target:"_blank"},t.readMoreText))),t.cta&&t.ctaLink&&o.default.createElement(i.Box,{sx:{pb:2}},o.default.createElement(i.Button,{href:t.ctaLink,target:t.ctaLink.startsWith("#")?"_self":"_blank",variant:"contained",size:"small",color:"promotion",onClick:t.ctaLink.startsWith("#")?function(){return a(!1)}:function(){}},t.cta)),r!==n-1&&o.default.createElement(i.Divider,{sx:{my:1}}))}).propTypes={item:n.object.isRequired,itemIndex:n.number.isRequired,itemsLength:n.number.isRequired,setIsOpen:n.func.isRequired}},30482:(e,t,r)=>{"use strict";var n=r(62688),a=r(96784);Object.defineProperty(t,"__esModule",{value:!0}),t.WhatsNewTopBar=void 0;var o=a(r(41594)),i=r(86956),l=r(12470),s=r(59190);(t.WhatsNewTopBar=function WhatsNewTopBar(e){var t=e.setIsOpen;return o.default.createElement(o.default.Fragment,null,o.default.createElement(i.AppBar,{elevation:0,position:"sticky",sx:{backgroundColor:"background.default"}},o.default.createElement(i.Toolbar,{variant:"dense"},o.default.createElement(i.Typography,{variant:"overline",sx:{flexGrow:1}},(0,l.__)("What's New","elementor")),o.default.createElement(i.IconButton,{"aria-label":"close",size:"small",onClick:function onClick(){return t(!1)}},o.default.createElement(s.XIcon,null)))),o.default.createElement(i.Divider,null))}).propTypes={setIsOpen:n.func.isRequired}},37744:(e,t,r)=>{var n=r(78113);e.exports=function _unsupportedIterableToArray(e,t){if(e){if("string"==typeof e)return n(e,t);var r={}.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?n(e,t):void 0}},e.exports.__esModule=!0,e.exports.default=e.exports},40362:(e,t,r)=>{"use strict";var n=r(56441);function emptyFunction(){}function emptyFunctionWithReset(){}emptyFunctionWithReset.resetWarningCache=emptyFunction,e.exports=function(){function shim(e,t,r,a,o,i){if(i!==n){var l=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw l.name="Invariant Violation",l}}function getShim(){return shim}shim.isRequired=shim;var e={array:shim,bigint:shim,bool:shim,func:shim,number:shim,object:shim,string:shim,symbol:shim,any:shim,arrayOf:getShim,element:shim,elementType:shim,instanceOf:getShim,node:shim,objectOf:getShim,oneOf:getShim,oneOfType:getShim,shape:getShim,exact:getShim,checkPropTypes:emptyFunctionWithReset,resetWarningCache:emptyFunction};return e.PropTypes=e,e}},41594:e=>{"use strict";e.exports=React},46120:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getNotifications=void 0;t.getNotifications=function getNotifications(){return function request(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new Promise(function(r,n){elementorCommon.ajax.addRequest(e,{success:r,error:n,data:t})})}("notifications_get")}},46555:(e,t,r)=>{"use strict";var n=r(62688),a=r(96784);Object.defineProperty(t,"__esModule",{value:!0}),t.WhatsNewItemThumbnail=void 0;var o=a(r(41594)),i=r(86956),l=r(94841);(t.WhatsNewItemThumbnail=function WhatsNewItemThumbnail(e){var t=e.imageSrc,r=e.title,n=e.link;return o.default.createElement(i.Box,{sx:{pb:2}},o.default.createElement(l.WrapperWithLink,{link:n},o.default.createElement("img",{src:t,alt:r,style:{maxWidth:"100%"}})))}).propTypes={imageSrc:n.string.isRequired,title:n.string.isRequired,link:n.string}},56441:e=>{"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},56971:(e,t,r)=>{"use strict";var n=r(62688),a=r(96784);Object.defineProperty(t,"__esModule",{value:!0}),t.WhatsNewItemTopicLine=void 0;var o=a(r(41594)),i=r(86956);(t.WhatsNewItemTopicLine=function WhatsNewItemTopicLine(e){var t=e.topic,r=e.date;return o.default.createElement(i.Stack,{direction:"row",divider:o.default.createElement(i.Divider,{orientation:"vertical",flexItem:!0}),spacing:1,color:"text.tertiary",sx:{pb:1}},t&&o.default.createElement(i.Box,null,t),r&&o.default.createElement(i.Box,null,r))}).propTypes={topic:n.string,date:n.string}},58644:(e,t,r)=>{"use strict";var n=r(62688),a=r(96784);Object.defineProperty(t,"__esModule",{value:!0}),t.WhatsNewDrawerContent=void 0;var o=a(r(41594)),i=r(9730),l=r(46120),s=r(86956),u=r(25206);(t.WhatsNewDrawerContent=function WhatsNewDrawerContent(e){var t=e.setIsOpen,r=(0,i.useQuery)({queryKey:["e-notifications"],queryFn:l.getNotifications}),n=r.isPending,a=r.error,c=r.data;return n?o.default.createElement(s.Box,null,o.default.createElement(s.LinearProgress,{color:"secondary"})):a?o.default.createElement(s.Box,null,"An error has occurred: ",a):c.map(function(e,r){return o.default.createElement(u.WhatsNewItem,{key:r,item:e,itemIndex:r,itemsLength:c.length,setIsOpen:t})})}).propTypes={setIsOpen:n.func.isRequired}},59190:(e,t,r)=>{"use strict";var n=r(96784),a=r(10564);Object.defineProperty(t,"__esModule",{value:!0}),t.XIcon=void 0;var o=function _interopRequireWildcard(e,t){if("function"==typeof WeakMap)var r=new WeakMap,n=new WeakMap;return function _interopRequireWildcard(e,t){if(!t&&e&&e.__esModule)return e;var o,i,l={__proto__:null,default:e};if(null===e||"object"!=a(e)&&"function"!=typeof e)return l;if(o=t?n:r){if(o.has(e))return o.get(e);o.set(e,l)}for(var s in e)"default"!==s&&{}.hasOwnProperty.call(e,s)&&((i=(o=Object.defineProperty)&&Object.getOwnPropertyDescriptor(e,s))&&(i.get||i.set)?o(l,s,i):l[s]=e[s]);return l}(e,t)}(r(41594)),i=n(r(78304)),l=r(86956);t.XIcon=(0,o.forwardRef)(function(e,t){return o.default.createElement(l.SvgIcon,(0,i.default)({viewBox:"0 0 24 24"},e,{ref:t}),o.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18.5303 5.46967C18.8232 5.76256 18.8232 6.23744 18.5303 6.53033L6.53033 18.5303C6.23744 18.8232 5.76256 18.8232 5.46967 18.5303C5.17678 18.2374 5.17678 17.7626 5.46967 17.4697L17.4697 5.46967C17.7626 5.17678 18.2374 5.17678 18.5303 5.46967Z"}),o.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.46967 5.46967C5.76256 5.17678 6.23744 5.17678 6.53033 5.46967L18.5303 17.4697C18.8232 17.7626 18.8232 18.2374 18.5303 18.5303C18.2374 18.8232 17.7626 18.8232 17.4697 18.5303L5.46967 6.53033C5.17678 6.23744 5.17678 5.76256 5.46967 5.46967Z"}))})},62688:(e,t,r)=>{e.exports=r(40362)()},65474:e=>{e.exports=function _iterableToArrayLimit(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,a,o,i,l=[],s=!0,u=!1;try{if(o=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=o.call(r)).done)&&(l.push(n.value),l.length!==t);s=!0);}catch(e){u=!0,a=e}finally{try{if(!s&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(u)throw a}}return l}},e.exports.__esModule=!0,e.exports.default=e.exports},70569:e=>{e.exports=function _arrayWithHoles(e){if(Array.isArray(e))return e},e.exports.__esModule=!0,e.exports.default=e.exports},74324:(e,t,r)=>{"use strict";var n=r(62688),a=r(10564);Object.defineProperty(t,"__esModule",{value:!0}),t.WhatsNew=void 0;var o=function _interopRequireWildcard(e,t){if("function"==typeof WeakMap)var r=new WeakMap,n=new WeakMap;return function _interopRequireWildcard(e,t){if(!t&&e&&e.__esModule)return e;var o,i,l={__proto__:null,default:e};if(null===e||"object"!=a(e)&&"function"!=typeof e)return l;if(o=t?n:r){if(o.has(e))return o.get(e);o.set(e,l)}for(var s in e)"default"!==s&&{}.hasOwnProperty.call(e,s)&&((i=(o=Object.defineProperty)&&Object.getOwnPropertyDescriptor(e,s))&&(i.get||i.set)?o(l,s,i):l[s]=e[s]);return l}(e,t)}(r(41594)),i=r(86956),l=r(9730),s=r(30482),u=r(58644);var c=new l.QueryClient({defaultOptions:{queries:{refetchOnWindowFocus:!1,retry:!1,staleTime:18e5}}});(t.WhatsNew=function WhatsNew(e){var t,r,n=e.isOpen,a=e.setIsOpen,p=e.setIsRead,d=e.anchorPosition,f=void 0===d?"right":d;return(0,o.useEffect)(function(){n&&p(!0)},[n,p]),o.default.createElement(o.default.Fragment,null,o.default.createElement(l.QueryClientProvider,{client:c},o.default.createElement(i.DirectionProvider,{rtl:elementorCommon.config.isRTL},o.default.createElement(i.ThemeProvider,{colorScheme:(null===(t=window.elementor)||void 0===t||null===(r=t.getPreferences)||void 0===r?void 0:r.call(t,"ui_theme"))||"auto"},o.default.createElement(i.Drawer,{anchor:f,open:n,onClose:function onClose(){return a(!1)},ModalProps:{style:{zIndex:999999}}},o.default.createElement(i.Box,{sx:{width:320,backgroundColor:"background.default"},role:"presentation"},o.default.createElement(s.WhatsNewTopBar,{setIsOpen:a}),o.default.createElement(i.Box,{sx:{padding:"16px"}},o.default.createElement(u.WhatsNewDrawerContent,{setIsOpen:a}))))))))}).propTypes={isOpen:n.bool.isRequired,setIsOpen:n.func.isRequired,setIsRead:n.func.isRequired,anchorPosition:n.oneOf(["left","top","right","bottom"])}},78113:e=>{e.exports=function _arrayLikeToArray(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=Array(t);r{function _extends(){return e.exports=_extends=Object.assign?Object.assign.bind():function(e){for(var t=1;t{"use strict";var n=r(62688),a=r(96784),o=r(10564);Object.defineProperty(t,"__esModule",{value:!0}),t.BarButtonNotification=void 0;var i=function _interopRequireWildcard(e,t){if("function"==typeof WeakMap)var r=new WeakMap,n=new WeakMap;return function _interopRequireWildcard(e,t){if(!t&&e&&e.__esModule)return e;var a,i,l={__proto__:null,default:e};if(null===e||"object"!=o(e)&&"function"!=typeof e)return l;if(a=t?n:r){if(a.has(e))return a.get(e);a.set(e,l)}for(var s in e)"default"!==s&&{}.hasOwnProperty.call(e,s)&&((i=(a=Object.defineProperty)&&Object.getOwnPropertyDescriptor(e,s))&&(i.get||i.set)?a(l,s,i):l[s]=e[s]);return l}(e,t)}(r(41594)),l=a(r(18821)),s=r(74324),u=r(86956);(t.BarButtonNotification=function BarButtonNotification(e){var t=e.defaultIsRead,r=(0,i.useState)(!1),n=(0,l.default)(r,2),a=n[0],o=n[1],c=(0,i.useState)(t),p=(0,l.default)(c,2),d=p[0],f=p[1];return i.default.createElement(i.default.Fragment,null,i.default.createElement("button",{className:"e-admin-top-bar__bar-button",style:{backgroundColor:"transparent",border:"none"},onClick:function onClick(e){e.preventDefault(),o(!0)}},i.default.createElement(u.Badge,{color:"primary",variant:"dot",invisible:d,sx:{mx:.5}},i.default.createElement("i",{className:"e-admin-top-bar__bar-button-icon eicon-speakerphone"})),i.default.createElement("span",{className:"e-admin-top-bar__bar-button-title"},e.children)),i.default.createElement(s.WhatsNew,{isOpen:a,setIsOpen:o,setIsRead:f}))}).propTypes={defaultIsRead:n.bool,children:n.any.isRequired}},86956:e=>{"use strict";e.exports=elementorV2.ui},94841:(e,t,r)=>{"use strict";var n=r(62688),a=r(96784);Object.defineProperty(t,"__esModule",{value:!0}),t.WrapperWithLink=void 0;var o=a(r(41594)),i=r(86956);(t.WrapperWithLink=function WrapperWithLink(e){var t=e.link,r=e.children;return t?o.default.createElement(i.Link,{href:t,target:"_blank",underline:"none",color:"inherit",sx:{"&:hover":{color:"inherit"}}},r):r}).propTypes={link:n.string,children:n.any.isRequired}},96784:e=>{e.exports=function _interopRequireDefault(e){return e&&e.__esModule?e:{default:e}},e.exports.__esModule=!0,e.exports.default=e.exports}},t={};function __webpack_require__(r){var n=t[r];if(void 0!==n)return n.exports;var a=t[r]={exports:{}};return e[r](a,a.exports,__webpack_require__),a.exports}(()=>{"use strict";var e=__webpack_require__(83876);window.elementorNotificationCenter={BarButtonNotification:e.BarButtonNotification}})()})();
10% off on all products | Free Shipping above Rs 1000 | (Auto applied at checkout)

Something is Missing.

This page is missing or you assembled the link incorrectly Back To Homepage Product list
Scroll To Top

Recently Viewed Products

View All Products -22% S M L Select options Add to wishlist Compare Quick View

Nike Sportswear Tee Shirts

Rated 5.00 out of 5 (3) $69.99 Hot Select options Add to wishlist Compare Quick View

Eyelet linen blend beach set

Rated 5.00 out of 5 (3) $89.99 -25% Top Product Sale Off 25% Top Product Sale Off 25% Top Product Sale Off 25% Top Product Sale Off 25% Top Product Sale Off 25% Top Product Sale Off 25% Top Product Sale Off 25% Top Product Sale Off 25% Top Product Sale Off 25% Top Product Sale Off 25% S M L XL Select options Add to wishlist Compare Quick View

Northumberland Sweatshirt

Rated 5.00 out of 5 (3) $59.99 -25% S M L XL Select options Add to wishlist Compare Quick View

Oversized linen look shirt

Rated 4.00 out of 5 (3) $59.99 – $79.99Price range: $59.99 through $79.99

Shopping Cart

Close

Your cart is empty.

Start Shopping

Select the fields to be shown. Others will be hidden. Drag and drop to rearrange the order.
  • Image
  • SKU
  • Rating
  • Price
  • Stock
  • Availability
  • Add to cart
  • Description
  • Content
  • Weight
  • Dimensions
  • Additional information
Click outside to hide the comparison bar
Compare