# Security Policy ## Reporting Security Bugs Please report security bugs found in the LiteSpeed Cache plugin's source code through the [Patchstack Vulnerability Disclosure Program](https://patchstack.com/database/vdp/litespeed-cache). The Patchstack team will assist you with verification, CVE assignment, and notify the developers of this plugin. /*! ./QueryClientProvider.js */ /*! ./QueryErrorResetBoundary.js */ /*! ./errorBoundaryUtils.js */ /*! ./focusManager.js */ /*! ./infiniteQueryBehavior.js */ /*! ./isRestoring.js */ /*! ./mutation.js */ /*! ./mutationCache.js */ /*! ./notifyManager.js */ /*! ./onlineManager.js */ /*! ./query.js */ /*! ./queryCache.js */ /*! ./queryObserver.js */ /*! ./removable.js */ /*! ./retryer.js */ /*! ./subscribable.js */ /*! ./suspense.js */ /*! ./useBaseQuery.js */ /*! ./utils.js */ /*! @tanstack/query-core */ /*! @tanstack/react-query */ /*! react */ /*!**************************!*\ !*** external ["React"] ***! \**************************/ /*!******************************************************!*\ !*** ./node_modules/@elementor/query/dist/index.mjs ***! \******************************************************/ /*!*****************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/query.js ***! \*****************************************************************/ /*!*****************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/utils.js ***! \*****************************************************************/ /*!******************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/utils.js ***! \******************************************************************/ /*!*******************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/retryer.js ***! \*******************************************************************/ /*!********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/mutation.js ***! \********************************************************************/ /*!*********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/removable.js ***! \*********************************************************************/ /*!*********************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/suspense.js ***! \*********************************************************************/ /*!*********************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useQuery.js ***! \*********************************************************************/ /*!**********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/queryCache.js ***! \**********************************************************************/ /*!***********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/queryClient.js ***! \***********************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/focusManager.js ***! \************************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/subscribable.js ***! \************************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/isRestoring.js ***! \************************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useMutation.js ***! \************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/mutationCache.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/notifyManager.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/onlineManager.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/queryObserver.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useBaseQuery.js ***! \*************************************************************************/ /*!****************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/mutationObserver.js ***! \****************************************************************************/ /*!*****************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useInfiniteQuery.js ***! \*****************************************************************************/ /*!*******************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/errorBoundaryUtils.js ***! \*******************************************************************************/ /*!********************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/QueryClientProvider.js ***! \********************************************************************************/ /*!*********************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/infiniteQueryBehavior.js ***! \*********************************************************************************/ /*!*********************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/infiniteQueryObserver.js ***! \*********************************************************************************/ /*!************************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/QueryErrorResetBoundary.js ***! \************************************************************************************/ import React from 'react' import Modal from 'react-modal' import ModalEnvatoIcon from './ModalEnvatoIcon' import styles from './MagicModalWrapper.module.scss' const customStyles = { overlay: { backgroundColor: 'rgba(32, 32, 32, 0.81)', zIndex: 199999, display: 'flex', justifyContent: 'center', alignItems: 'center' }, content: { background: '#f1f1f1', border: '0', padding: '0', right: 'auto', bottom: 'auto', top: 'auto', left: 'auto', borderRadius: '4px' } } const MagicModalWrapper = ({ photoId, photoTitle, onCloseCallback = null, children }) => { const [modalIsOpen, setModalIsOpen] = React.useState(true) const closeModal = () => { setModalIsOpen(false) if (onCloseCallback) { onCloseCallback() } } // Make sure to bind modal to your appElement (http://reactcommunity.org/react-modal/accessibility/) // We get window.templateKitImport.modalAppHolder from our initial render in main.jsx: if (typeof window !== 'undefined' && window.templateKitImport && window.templateKitImport.modalAppHolder) { Modal.setAppElement(window.templateKitImport.modalAppHolder) } return (
{typeof children === 'function' ? children({ closeModal }) : children}
) } export default MagicModalWrapper .elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d5d8dc;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d5d8dc;display:none}@media (max-width:ELEMENTOR_SCREEN_MOBILE_MAX){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}.e-con-inner>.elementor-widget-toggle,.e-con>.elementor-widget-toggle{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)} DigiGrowths https://validator.w3.org/feed/docs/rss2.html Lätta casino Närvarande Robotnik spelautomat kan ni utpröva enkelt och snabbt kungen faktura Casino kungen nätet, Förteckning hjälpsamma ledtrådar med Sveriges ultimata online casino 2026 Casino Zeus 3 gratissnurr tillägg inte me omsättningskrav omsättningsfria bonusar Bästa Mobilbetalning casino, Casino klicka här för att ta reda på mer tillsammans Mobilbetalning 2026 Ultimat Svenska Casinon Online 2025 Jämför Dead or alive kasinospel Casinon inom Sverige Uppskatta 500 insättningsbonussatsning Massa Världar Onlinespel Spännande Gällande Sträcka Svenska språke regioner Open Development Thailand Beste Angeschlossen Spielsaal Lastschrift Book of Ra Deluxe Online -Slot in Österreich 2026 The Expert’s Playbook for Picking a Trustworthy UK Online Casino Mastering the New‑Year Casino Hunt: How to Find the Best Platform and Why Jinx Casino Leads the Pack 5 Expert Tips for Live Casino Bonuses and Loyalty Tournaments at Plaza Royal Com 5 Expert Tips for Live Casino Bonuses and Loyalty Tournaments at Plaza Royal Com 7 Expert Tips for Mobile Payments and Live Games at Casino 666 The Ultimate Guide to Choosing a Trustworthy Online Casino The Insider’s Playbook for Cashback Bonuses at Online Casinos Tesamorelin Acetat: Anwendung und Einnahmehinweise Finest Mastercard Gambling Enterprises Online: An Introduction Kamp IntellectBet Casino bonus uden indskud Lakehouse Boreplatform Built With Trino Video automat 5 Dragons Pochopte recenzi online Wild Pharao online kasino hry 5 Dragons How to Choose a Trustworthy Online Casino – Expert Tips and a Real‑World Example Live Casino Jackpot Bonanza: How to Unlock the Biggest Bonuses and Jackpots This Season New Year’s Edge: How Live Casino Action and Esports Betting Boost Your Bonuses at Ybets Online Как переживания оказывают влияние на скорость мышления Exploring Epic Slot Themes: From Mythic Realms to Modern Adventures Expert Guide to Choosing the Best Online Casino for Slot Lovers 7 Expert Tips for Picking the Perfect Online Casino This Christmas Как переживания влияют на скорость умственной деятельности – Официальный сайт Pinco Casino вход на зеркало.8348 (2) – Официальный сайт Pinco Casino вход на зеркало.6552 (2) 32Red Software Opinion 2025 Get an excellent 150percent Incentive to 150+ twenty five Free Revolves Home FortuneJack 100 100 percent free Spins: No-deposit Incentive Codes within the 2025 Siente la Adrenalina Juega y Gana en caliente casino online, con Hasta $1000 MXN Gratis y una Experi Feathered Fortune Awaits Master the Chicken Road app’s 4 difficulty levels and aim for a 98% RTP to Three-card Web based poker: casino loki sixty dollars bonus wagering requirements Have the best Info Information Enjoy step 3 Credit Casino poker Crown Gold coins Local casino promo code 2026: Score 100K CC + 2 100 percent free South carolina no deposit added bonus No-deposit Casino Incentives Best Offers Away from 2026 Goodwin Casino Sign in: Availableness Incentives, Money & Video game Karamba Casino Remark 2026 A respectable Take a look at Karamba’s Gambling enterprise Golden Opportunities Await Master Strategy & Win Big with Chicken Road 2! Slotigo de Najistotniejsze sloty jak i Przeczytaj to również jednoręki rzezimieszek online za darmo! Θέση αξίας στην έρημο – Οι 10 κορυφαίες ιστοσελίδες κουλοχέρηδων Desert Benefits Mummys Silver Gambling enterprise – ten Every single day Spins + $500 Meets Added bonus Different groups in our better online casino in the British analysis What you should look out for with $one Put Incentives The latest park was produced in 1921 and you will is actually attracting visitors actually before it is dependent Tips Obtain the new Happy Tales Casino APK most recent type to your Android os Ideal 5 South African Gambling enterprises Giving 50 100 % free Spins No deposit Sometimes, this type of supply the casino the option in order to validate withholding member earnings Die Vorteile von Uniliver 60 Capsules für Bodybuilder Anabolic Steroids and Their Role in Bodybuilding: A Complete Guide