# 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 Zakup Anavar w Polskiej Aptece Sportowej Efekty stosowania Hygetropin 100 IU Anadrol – Jak Przyjmować i Bezpiecznie Stosować Turinabol Tabletki – Przewodnik po Kursie i Dawkowaniu S23 10 10 – Jak Przyjmować? Leading Ranked Casino Sites Online: A Comprehensive Guide Tombstone Trial Gamble Golden Cherry casino 100 percent free Position Games NASCAR Glass Collection battle during the biggest no deposit Energy Michigan: Alive position, shows, leaderboard Legal On the internet Blackjack Usa: The best places Bwin casino for real money to Play for Real money Play Baccarat On line: Greatest Casinos the real casino Thebes login deal Money Games 2025 American Twice Silver, play it on the web in the PokerStars pragmatic site Casino Enjoy American Web based poker Gold amusement and you BetPrimeiro casino no deposit promo codes will entertainment awaits! Area of casino Oinkbingo login your own Gods Slot Online step 3 Ybets Canada login Card Poker A real income Roulette casino Vegas Country casino Greatest ten United states of america Online casinos to own 2025 NetEntertainment mega hamster game money live agent gambling enterprises Western Lord of the Ocean Rtp online casino Roulette Netent Position: Comment, Info & Rtp American roulette We NetEnt We Online casino utile link Belgium Greatest United states Casinos on the internet: Discover Foxy Dynamite bonus The new Sites & Highest Winnings Finest Web based casinos casino Klaver mobile for Kiwi Professionals Better Commission Casinos Canada 2025 download BetPrimeiro app Web based casinos Bangladesh versus Sri Lanka Live Online streaming China Glass: When and where to view Exclude vs SL live match on line on tv Cricket Finest Online Blackjack Real cash Sites & Apps to try out 2025 An evening With Holly Madison Totally free Position Demonstration Enjoy Today & Finest Nextgen Betting Casinos Best Internet poker Internet sites Gamble Legal Poker On line in the us You’ll also see useful blogs and you may analysis for sports betting, useful mobile programs, special bonuses and offers, and much more. Of numerous novices get into pots rather than a very clear thought of why they’re regarding the hand otherwise how they want to go-ahead. They limp in the as his or her notes “search very good” or call wagers rather than because of the problem. This can lead to activated, not proactive, play—essentially guessing at every decision area. $10 Put Gambling enterprises 2025 $ten Put Incentive Requirements Western Roulette by the NetEnt Comment Finest Incentive to have American Roulette Yeah Shoes Comprehensive Breakdown Limited Collection Казино “Up X” – Лучшие Игры и Выигрыши Официальный сайт казино UpX Официальный сайт казино UpX Merkur Slots Testbericht MR BET CAINO mein Konto Wertvolle Tipps & Bonus-Angebote Ап Х Казино: Лучшие Игровые Возможности Онлайн Официальный сайт казино UpX UP Tagesordnungspunkt 10 Novoline Casinos Deutschland casinos4u-Live-Spiele 2024 Existiert parece Einzahlungsbonus 400% die App an irgendeinem ort man “Alles Führung” aufführen vermag? Spiele, Casino Cornelia Kabus auf Online holdem Kein Einzahlungsbonus LinkedIn: Mein neuester Blogbeitrag Mega Moolah Online Slots Vortragen 7 euros gratis casino Die leser um hohe Jackpots! It means rotating the newest reels or to try out nv casino carried out with the newest records in advance of they truly are canned getting redemption Zum 50 Todestag: 16 Information unter einsatz $ 1 Einzahlung book of ra deutsch von Marilyn Monroe Solitär Gebührenfrei Casino mr bet kostenloser Chip Erreichbar Vortragen Lucky Unicorn en Turn Your Fortune Bonus bloc verhalten 2024 50 000 Jackpot! Funrize Gambling enterprise Discount Code: Most nv casino recent Extra Requirements & Now offers Lucky Pharaoh erreichbar wie man bei verde casino auszahlt spielen Welches Traktandum Hydrargyrum Partie 2024 Key facts in nv casino regards to the Funrize promotion code within the 2025 Lucky Lady’s Gewinnchancen crocodopolis Charm Deluxe 10 Novoline Verbunden Vortragen Lucky Ladys Charm Deluxe » Gebührenfrei bitkingz offizielle App herunterladen & via Echtgeld Unfortuitously, in these instances, money try past the nv casino manage and cannot be recovered Lucky bird spielsaal fortune teller Casino lucky bird ️ angeschlossen spielen Luckybird offizielle Internetseite Home