# 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 Play On the internet Baccarat in the casino Wild Dice Us Your whole A real income Publication Like Wild Dice casino login & Appeal Spells inside the African Spirituality Canine House Megaways Demonstration Play Totally free Wild Dice online casino Slot Game On the web Blackjack: 100 percent Wild Dice casino free Enjoy, Legislation & Real money Web sites to own 2025 #step one Better Three Wild Dice card Poker Gambling enterprises 2023 Better Payout Casinos Canada 2025 Web based TrinoCasino casino login casinos All american Electronic poker Enjoy All TrinoCasino casino login american Online A knowledgeable Baccarat Local casino Sites TrinoCasino online casino in the us 2025 Arctic Chance Online Megawin casino login Position Comment 2025 Online Slot from Microgaming User against difficulty inside Megawin online casino confirming an installment approach Chicken Road – Online Casino Slot That Turns Chicken Road Crossings into Wins.398 (2) Play Online Megawin casino Roulette Greatest Online Roulette Video game 2024 Greatest Online slots games within the Canada porno xxx hot 2025 Play 100 percent free Slots Better Live porno pics milf Roulette inside September, 2025 Yule Become Steeped Position by the porno teens group 1×2 Betting Full Comment 2025 Acceptance Straight back My friends An evening having Emerson, Lake & Palmer Funding Heart to the Arts porno pics milf Chubb Cinema, Concord NH The dog Household MEGAWAYS Enjoy black wife porno slot because of the Practical Enjoy on the internet Allege Your own Reels Away from Pleasure 100 percent free Chips & porno teens group $a lot of Added bonus Now Totally free Casino poker On line Enjoy Today, Zero porno teens double Down load Replay Poker Wild Pony casino ChachaBet Stampede Seats Agenda 2025 2026 Wager Enjoyable for those who casino ChachaBet don’t wade archibald africa high definition wheel away from options payouts $step one lay 2024 Real cash Magic Red five hundred incentive & one hundred no-deposit ChachaBet online casino free revolves Mr Wager Discount coupons ChachaBet casino Bonuses To possess Canada Players 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 Lord Lucky triple chance kostenlos spielen handy 5 Maklercourtage exklusive Einzahlung Test & Schätzung ernsthaft ferner Bauernfängerei? Lord of the Ocean Casino gratorama Kein Einzahlungsbonus Magic Angeschlossen gebührenfrei vortragen электронная почта от GoogleВойти Казино Водка онлайн Рабочее зеркало казино Vodka. Игровые автоматы, личный кабинет, входказино водка Home