/*! elementor - v3.27.0 - 03-02-2025 */ /******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ /***/ "../assets/dev/js/utils/react.js": /*!***************************************!*\ !*** ../assets/dev/js/utils/react.js ***! \***************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { "use strict"; var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../node_modules/@babel/runtime/helpers/typeof.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var React = _interopRequireWildcard(__webpack_require__(/*! react */ "react")); var ReactDOM = _interopRequireWildcard(__webpack_require__(/*! react-dom */ "react-dom")); var _client = __webpack_require__(/*! react-dom/client */ "../node_modules/react-dom/client.js"); function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); } function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } /** * Support conditional rendering of a React App to the DOM, based on the React version. * We use `createRoot` when available, but fallback to `ReactDOM.render` for older versions. * * @param { React.ReactElement } app The app to render. * @param { HTMLElement } domElement The DOM element to render the app into. * * @return {{ unmount: () => void }} The unmount function. */ function render(app, domElement) { var unmountFunction; try { var root = (0, _client.createRoot)(domElement); root.render(app); unmountFunction = function unmountFunction() { root.unmount(); }; } catch (e) { // eslint-disable-next-line react/no-deprecated ReactDOM.render(app, domElement); unmountFunction = function unmountFunction() { // eslint-disable-next-line react/no-deprecated ReactDOM.unmountComponentAtNode(domElement); }; } return { unmount: unmountFunction }; } var _default = exports["default"] = { render: render }; /***/ }), /***/ "../modules/home/assets/js/components/addons-section.js": /*!**************************************************************!*\ !*** ../modules/home/assets/js/components/addons-section.js ***! \**************************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { "use strict"; /* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js"); var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react")); var _objectDestructuringEmpty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/objectDestructuringEmpty */ "../node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js")); var _extends2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/extends */ "../node_modules/@babel/runtime/helpers/extends.js")); var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui"); var _List = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/List */ "@elementor/ui/List")); var _Link = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Link */ "@elementor/ui/Link")); var _Button = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Button */ "@elementor/ui/Button")); var _Card = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Card */ "@elementor/ui/Card")); var _CardActions = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/CardActions */ "@elementor/ui/CardActions")); var _CardContent = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/CardContent */ "@elementor/ui/CardContent")); var _CardMedia = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/CardMedia */ "@elementor/ui/CardMedia")); var Addons = function Addons(_ref) { var props = (0, _extends2.default)({}, ((0, _objectDestructuringEmpty2.default)(_ref), _ref)); var domain = props.adminUrl.replace('wp-admin/', ''); var addonsArray = props.addonsData.repeater; var cardsPerRow = 3 === addonsArray.length ? 3 : 2; return /*#__PURE__*/_react.default.createElement(_ui.Paper, { elevation: 0, sx: { p: 3, display: 'flex', flexDirection: 'column', gap: 2 } }, /*#__PURE__*/_react.default.createElement(_ui.Box, null, /*#__PURE__*/_react.default.createElement(_ui.Typography, { variant: "h6" }, props.addonsData.header.title), /*#__PURE__*/_react.default.createElement(_ui.Typography, { variant: "body2", color: "text.secondary" }, props.addonsData.header.description)), /*#__PURE__*/_react.default.createElement(_List.default, { sx: { display: 'grid', gridTemplateColumns: { md: "repeat(".concat(cardsPerRow, ", 1fr)"), xs: 'repeat(1, 1fr)' }, gap: 2 } }, addonsArray.map(function (item) { var linkTarget = item.hasOwnProperty('target') ? item.target : '_blank'; return /*#__PURE__*/_react.default.createElement(_Card.default, { key: item.title, elevation: 0, sx: { display: 'flex', border: 1, borderRadius: 1, borderColor: 'action.focus' } }, /*#__PURE__*/_react.default.createElement(_CardContent.default, { sx: { display: 'flex', flexDirection: 'column', justifyContent: 'space-between', gap: 3, p: 3 } }, /*#__PURE__*/_react.default.createElement(_ui.Box, null, /*#__PURE__*/_react.default.createElement(_CardMedia.default, { image: item.image, sx: { height: '58px', width: '58px', mb: 2 } }), /*#__PURE__*/_react.default.createElement(_ui.Box, null, /*#__PURE__*/_react.default.createElement(_ui.Typography, { variant: "subtitle2" }, item.title), /*#__PURE__*/_react.default.createElement(_ui.Typography, { variant: "body2", color: "text.secondary" }, item.description))), /*#__PURE__*/_react.default.createElement(_CardActions.default, { sx: { p: 0 } }, /*#__PURE__*/_react.default.createElement(_Button.default, { variant: "outlined", size: "small", color: "promotion", href: item.url, target: linkTarget }, item.button_label)))); })), /*#__PURE__*/_react.default.createElement(_Link.default, { variant: "body2", color: "info.main", underline: "none", href: "".concat(domain).concat(props.addonsData.footer.file_path) }, props.addonsData.footer.label)); }; var _default = exports["default"] = Addons; Addons.propTypes = { addonsData: PropTypes.object.isRequired, adminUrl: PropTypes.string.isRequired }; /***/ }), /***/ "../modules/home/assets/js/components/create-new-page-dialog.js": /*!**********************************************************************!*\ !*** ../modules/home/assets/js/components/create-new-page-dialog.js ***! \**********************************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { "use strict"; /* provided dependency */ var __ = __webpack_require__(/*! @wordpress/i18n */ "@wordpress/i18n")["__"]; /* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js"); var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../node_modules/@babel/runtime/helpers/typeof.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _react = _interopRequireWildcard(__webpack_require__(/*! react */ "react")); var _slicedToArray2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/slicedToArray */ "../node_modules/@babel/runtime/helpers/slicedToArray.js")); var _DialogHeader = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/DialogHeader */ "@elementor/ui/DialogHeader")); var _DialogHeaderGroup = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/DialogHeaderGroup */ "@elementor/ui/DialogHeaderGroup")); var _DialogTitle = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/DialogTitle */ "@elementor/ui/DialogTitle")); var _DialogContent = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/DialogContent */ "@elementor/ui/DialogContent")); var _DialogContentText = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/DialogContentText */ "@elementor/ui/DialogContentText")); var _TextField = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/TextField */ "@elementor/ui/TextField")); var _DialogActions = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/DialogActions */ "@elementor/ui/DialogActions")); var _Button = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Button */ "@elementor/ui/Button")); var _Dialog = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Dialog */ "@elementor/ui/Dialog")); function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); } function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } var CreateNewPageDialog = function CreateNewPageDialog(_ref) { var url = _ref.url, isOpen = _ref.isOpen, closedDialogCallback = _ref.closedDialogCallback; var _React$useState = _react.default.useState(false), _React$useState2 = (0, _slicedToArray2.default)(_React$useState, 2), open = _React$useState2[0], setOpen = _React$useState2[1]; var _React$useState3 = _react.default.useState(''), _React$useState4 = (0, _slicedToArray2.default)(_React$useState3, 2), pageName = _React$useState4[0], setPageName = _React$useState4[1]; (0, _react.useEffect)(function () { setOpen(isOpen); }, [isOpen]); var handleDialogClose = function handleDialogClose() { setOpen(false); closedDialogCallback(); }; var handleChange = function handleChange(event) { var urlParams = new URLSearchParams(); urlParams.append('post_data[post_title]', event.target.value); setPageName(urlParams.toString()); }; return /*#__PURE__*/_react.default.createElement(_Dialog.default, { open: open, onClose: handleDialogClose, maxWidth: "xs", width: "xs", fullWidth: true }, /*#__PURE__*/_react.default.createElement(_DialogHeader.default, null, /*#__PURE__*/_react.default.createElement(_DialogHeaderGroup.default, null, /*#__PURE__*/_react.default.createElement(_DialogTitle.default, null, __('Name your page', 'elementor')))), /*#__PURE__*/_react.default.createElement(_DialogContent.default, { dividers: true }, /*#__PURE__*/_react.default.createElement(_DialogContentText.default, { sx: { mb: 2 } }, __('To proceed, please name your first page,', 'elementor'), /*#__PURE__*/_react.default.createElement("br", null), __('or rename it later.', 'elementor')), /*#__PURE__*/_react.default.createElement(_TextField.default, { onChange: handleChange, fullWidth: true, placeholder: __('New Page', 'elementor') })), /*#__PURE__*/_react.default.createElement(_DialogActions.default, null, /*#__PURE__*/_react.default.createElement(_Button.default, { onClick: handleDialogClose, color: "secondary" }, __('Cancel', 'elementor')), /*#__PURE__*/_react.default.createElement(_Button.default, { variant: "contained", href: pageName ? url + '&' + pageName : url, target: "_blank" }, __('Save', 'elementor')))); }; var _default = exports["default"] = CreateNewPageDialog; CreateNewPageDialog.propTypes = { url: PropTypes.string.isRequired, isOpen: PropTypes.bool.isRequired, closedDialogCallback: PropTypes.func.isRequired }; /***/ }), /***/ "../modules/home/assets/js/components/external-links-section.js": /*!**********************************************************************!*\ !*** ../modules/home/assets/js/components/external-links-section.js ***! \**********************************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { "use strict"; /* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js"); var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react")); var _objectDestructuringEmpty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/objectDestructuringEmpty */ "../node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js")); var _extends2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/extends */ "../node_modules/@babel/runtime/helpers/extends.js")); var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui"); var _List = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/List */ "@elementor/ui/List")); var _ListItemButton = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/ListItemButton */ "@elementor/ui/ListItemButton")); var _ListItemText = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/ListItemText */ "@elementor/ui/ListItemText")); var _Divider = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Divider */ "@elementor/ui/Divider")); var ExternalLinksSection = function ExternalLinksSection(_ref) { var props = (0, _extends2.default)({}, ((0, _objectDestructuringEmpty2.default)(_ref), _ref)); return /*#__PURE__*/_react.default.createElement(_ui.Paper, { elevation: 0, sx: { px: 3 } }, /*#__PURE__*/_react.default.createElement(_List.default, null, props.externalLinksData.map(function (item, index) { return /*#__PURE__*/_react.default.createElement(_ui.Box, { key: item.label }, /*#__PURE__*/_react.default.createElement(_ListItemButton.default, { href: item.url, target: "_blank", sx: { '&:hover': { backgroundColor: 'initial' }, gap: 2, px: 0, py: 2 } }, /*#__PURE__*/_react.default.createElement(_ui.Box, { component: "img", src: item.image, sx: { width: '38px' } }), /*#__PURE__*/_react.default.createElement(_ListItemText.default, { sx: { color: 'text.secondary' }, primary: item.label })), index < props.externalLinksData.length - 1 && /*#__PURE__*/_react.default.createElement(_Divider.default, null)); }))); }; var _default = exports["default"] = ExternalLinksSection; ExternalLinksSection.propTypes = { externalLinksData: PropTypes.array.isRequired }; /***/ }), /***/ "../modules/home/assets/js/components/get-started-list-item.js": /*!*********************************************************************!*\ !*** ../modules/home/assets/js/components/get-started-list-item.js ***! \*********************************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { "use strict"; /* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js"); var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react")); var _slicedToArray2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/slicedToArray */ "../node_modules/@babel/runtime/helpers/slicedToArray.js")); var _ListItem = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/ListItem */ "@elementor/ui/ListItem")); var _ListItemText = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/ListItemText */ "@elementor/ui/ListItemText")); var _Link = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Link */ "@elementor/ui/Link")); var _Box = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Box */ "@elementor/ui/Box")); var _createNewPageDialog = _interopRequireDefault(__webpack_require__(/*! ./create-new-page-dialog */ "../modules/home/assets/js/components/create-new-page-dialog.js")); var GetStartedListItem = function GetStartedListItem(_ref) { var item = _ref.item, image = _ref.image, adminUrl = _ref.adminUrl; var url = item.is_relative_url ? adminUrl + item.url : item.url; var _React$useState = _react.default.useState(false), _React$useState2 = (0, _slicedToArray2.default)(_React$useState, 2), isOpen = _React$useState2[0], openDialog = _React$useState2[1]; var handleLinkClick = function handleLinkClick(event) { if (!item.new_page) { return; } event.preventDefault(); openDialog(true); }; return /*#__PURE__*/_react.default.createElement(_ListItem.default, { alignItems: "flex-start", sx: { gap: 1, p: 0, maxWidth: '150px' } }, /*#__PURE__*/_react.default.createElement(_Box.default, { component: "img", src: image }), /*#__PURE__*/_react.default.createElement(_Box.default, null, /*#__PURE__*/_react.default.createElement(_ListItemText.default, { primary: item.title, primaryTypographyProps: { variant: 'subtitle1' }, sx: { my: 0 } }), /*#__PURE__*/_react.default.createElement(_Link.default, { variant: "body2", color: item.title_small_color ? item.title_small_color : 'text.tertiary', underline: "hover", href: url, target: "_blank", onClick: handleLinkClick }, item.title_small)), item.new_page && /*#__PURE__*/_react.default.createElement(_createNewPageDialog.default, { url: url, isOpen: isOpen, closedDialogCallback: function closedDialogCallback() { return openDialog(false); } })); }; var _default = exports["default"] = GetStartedListItem; GetStartedListItem.propTypes = { item: PropTypes.shape({ title: PropTypes.string.isRequired, title_small: PropTypes.string.isRequired, url: PropTypes.string.isRequired, new_page: PropTypes.bool, is_relative_url: PropTypes.bool, title_small_color: PropTypes.string }).isRequired, adminUrl: PropTypes.string.isRequired, image: PropTypes.string }; /***/ }), /***/ "../modules/home/assets/js/components/get-started-section.js": /*!*******************************************************************!*\ !*** ../modules/home/assets/js/components/get-started-section.js ***! \*******************************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { "use strict"; /* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js"); var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react")); var _objectDestructuringEmpty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/objectDestructuringEmpty */ "../node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js")); var _extends2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/extends */ "../node_modules/@babel/runtime/helpers/extends.js")); var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui"); var _List = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/List */ "@elementor/ui/List")); var _getStartedListItem = _interopRequireDefault(__webpack_require__(/*! ./get-started-list-item */ "../modules/home/assets/js/components/get-started-list-item.js")); var GetStarted = function GetStarted(_ref) { var props = (0, _extends2.default)({}, ((0, _objectDestructuringEmpty2.default)(_ref), _ref)); return /*#__PURE__*/_react.default.createElement(_ui.Paper, { elevation: 0, sx: { p: 3, display: 'flex', flexDirection: 'column', gap: 2 } }, /*#__PURE__*/_react.default.createElement(_ui.Box, null, /*#__PURE__*/_react.default.createElement(_ui.Typography, { variant: "h6" }, props.getStartedData.header.title), /*#__PURE__*/_react.default.createElement(_ui.Typography, { variant: "body2", color: "text.secondary" }, props.getStartedData.header.description)), /*#__PURE__*/_react.default.createElement(_List.default, { sx: { display: 'grid', gridTemplateColumns: { md: 'repeat(4, 1fr)', xs: 'repeat(2, 1fr)' }, columnGap: { md: 9, xs: 7 }, rowGap: 3 } }, props.getStartedData.repeater.map(function (item) { return /*#__PURE__*/_react.default.createElement(_getStartedListItem.default, { key: item.title, item: item, image: item.image, adminUrl: props.adminUrl }); }))); }; var _default = exports["default"] = GetStarted; GetStarted.propTypes = { getStartedData: PropTypes.object.isRequired, adminUrl: PropTypes.string.isRequired }; /***/ }), /***/ "../modules/home/assets/js/components/home-screen.js": /*!***********************************************************!*\ !*** ../modules/home/assets/js/components/home-screen.js ***! \***********************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { "use strict"; /* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js"); var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react")); var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui"); var _topSection = _interopRequireDefault(__webpack_require__(/*! ./top-section */ "../modules/home/assets/js/components/top-section.js")); var _sidebarPromotion = _interopRequireDefault(__webpack_require__(/*! ./sidebar-promotion */ "../modules/home/assets/js/components/sidebar-promotion.js")); var _addonsSection = _interopRequireDefault(__webpack_require__(/*! ./addons-section */ "../modules/home/assets/js/components/addons-section.js")); var _externalLinksSection = _interopRequireDefault(__webpack_require__(/*! ./external-links-section */ "../modules/home/assets/js/components/external-links-section.js")); var _getStartedSection = _interopRequireDefault(__webpack_require__(/*! ./get-started-section */ "../modules/home/assets/js/components/get-started-section.js")); var HomeScreen = function HomeScreen(props) { var hasSidebarUpgrade = props.homeScreenData.hasOwnProperty('sidebar_upgrade'); return /*#__PURE__*/ /* Box wrapper around the Container is needed to neutralize wp-content area left-padding */_react.default.createElement(_ui.Box, { sx: { pr: 1 } }, /*#__PURE__*/_react.default.createElement(_ui.Container, { disableGutters: true, maxWidth: "lg", sx: { display: 'flex', flexDirection: 'column', gap: { xs: 1, md: 3 }, pt: { xs: 2, md: 6 }, pb: 2 } }, /*#__PURE__*/_react.default.createElement(_topSection.default, { topData: props.homeScreenData.top_with_licences, createNewPageUrl: props.homeScreenData.create_new_page_url }), /*#__PURE__*/_react.default.createElement(_ui.Box, { sx: { display: 'flex', flexDirection: { xs: 'column', sm: 'row' }, justifyContent: 'space-between', gap: 3 } }, /*#__PURE__*/_react.default.createElement(_ui.Stack, { sx: { flex: 1, gap: 3 } }, /*#__PURE__*/_react.default.createElement(_getStartedSection.default, { getStartedData: props.homeScreenData.get_started, adminUrl: props.adminUrl }), /*#__PURE__*/_react.default.createElement(_addonsSection.default, { addonsData: props.homeScreenData.add_ons, adminUrl: props.adminUrl })), /*#__PURE__*/_react.default.createElement(_ui.Container, { maxWidth: "xs", disableGutters: true, sx: { width: { sm: '305px' }, display: 'flex', flexDirection: 'column', gap: 3 } }, hasSidebarUpgrade && /*#__PURE__*/_react.default.createElement(_sidebarPromotion.default, { sideData: props.homeScreenData.sidebar_upgrade }), /*#__PURE__*/_react.default.createElement(_externalLinksSection.default, { externalLinksData: props.homeScreenData.external_links }))))); }; HomeScreen.propTypes = { homeScreenData: PropTypes.object, adminUrl: PropTypes.string }; var _default = exports["default"] = HomeScreen; /***/ }), /***/ "../modules/home/assets/js/components/sidebar-promotion.js": /*!*****************************************************************!*\ !*** ../modules/home/assets/js/components/sidebar-promotion.js ***! \*****************************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { "use strict"; /* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js"); var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react")); var _objectDestructuringEmpty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/objectDestructuringEmpty */ "../node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js")); var _extends2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/extends */ "../node_modules/@babel/runtime/helpers/extends.js")); var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui"); var _Button = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Button */ "@elementor/ui/Button")); var _List = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/List */ "@elementor/ui/List")); var _ListItem = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/ListItem */ "@elementor/ui/ListItem")); var _ListItemText = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/ListItemText */ "@elementor/ui/ListItemText")); var _sideBarCheckIcon = _interopRequireDefault(__webpack_require__(/*! ../icons/side-bar-check-icon */ "../modules/home/assets/js/icons/side-bar-check-icon.js")); var SideBarPromotion = function SideBarPromotion(_ref) { var props = (0, _extends2.default)({}, ((0, _objectDestructuringEmpty2.default)(_ref), _ref)); return /*#__PURE__*/_react.default.createElement(_ui.Paper, { elevation: 0, sx: { p: 3 } }, /*#__PURE__*/_react.default.createElement(_ui.Stack, { gap: 1.5, sx: { alignItems: 'center', textAlign: 'center', pb: 4 } }, /*#__PURE__*/_react.default.createElement(_ui.Box, { component: "img", src: props.sideData.header.image }), /*#__PURE__*/_react.default.createElement(_ui.Box, null, /*#__PURE__*/_react.default.createElement(_ui.Typography, { variant: "h6" }, props.sideData.header.title), /*#__PURE__*/_react.default.createElement(_ui.Typography, { variant: "body2", color: "text.secondary" }, props.sideData.header.description)), /*#__PURE__*/_react.default.createElement(_Button.default, { variant: "contained", size: "medium", color: "promotion", href: props.sideData.cta.url, startIcon: /*#__PURE__*/_react.default.createElement(_ui.Box, { component: "img", src: props.sideData.cta.image, sx: { width: '16px' } }), target: "_blank", sx: { maxWidth: 'fit-content' } }, props.sideData.cta.label)), /*#__PURE__*/_react.default.createElement(_List.default, { sx: { p: 0 } }, props.sideData.repeater.map(function (item, index) { return /*#__PURE__*/_react.default.createElement(_ListItem.default, { key: index, sx: { p: 0, gap: 1 } }, /*#__PURE__*/_react.default.createElement(_sideBarCheckIcon.default, null), /*#__PURE__*/_react.default.createElement(_ListItemText.default, { primaryTypographyProps: { variant: 'body2' }, primary: item.title })); }))); }; var _default = exports["default"] = SideBarPromotion; SideBarPromotion.propTypes = { sideData: PropTypes.object.isRequired }; /***/ }), /***/ "../modules/home/assets/js/components/top-section.js": /*!***********************************************************!*\ !*** ../modules/home/assets/js/components/top-section.js ***! \***********************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { "use strict"; /* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js"); var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react")); var _objectDestructuringEmpty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/objectDestructuringEmpty */ "../node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js")); var _extends2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/extends */ "../node_modules/@babel/runtime/helpers/extends.js")); var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui"); var _Typography = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Typography */ "@elementor/ui/Typography")); var _Button = _interopRequireDefault(__webpack_require__(/*! @elementor/ui/Button */ "@elementor/ui/Button")); var _youtubeIcon = _interopRequireDefault(__webpack_require__(/*! ../icons/youtube-icon */ "../modules/home/assets/js/icons/youtube-icon.js")); var TopSection = function TopSection(_ref) { var props = (0, _extends2.default)({}, ((0, _objectDestructuringEmpty2.default)(_ref), _ref)); return /*#__PURE__*/_react.default.createElement(_ui.Paper, { elevation: 0, sx: { display: 'flex', flexDirection: { xs: 'column', sm: 'row' }, justifyContent: 'space-between', py: { xs: 3, md: 3 }, px: { xs: 3, md: 4 }, gap: { xs: 2, sm: 3, lg: 22 } } }, /*#__PURE__*/_react.default.createElement(_ui.Stack, { gap: 3, justifyContent: "center" }, /*#__PURE__*/_react.default.createElement(_ui.Box, null, /*#__PURE__*/_react.default.createElement(_Typography.default, { variant: "h6" }, props.topData.title), /*#__PURE__*/_react.default.createElement(_Typography.default, { variant: "body2", color: "secondary" }, props.topData.description)), /*#__PURE__*/_react.default.createElement(_ui.Box, { sx: { display: 'flex', gap: 1 } }, /*#__PURE__*/_react.default.createElement(_Button.default, { variant: "contained", size: "small", href: props.createNewPageUrl, target: "_blank" }, props.topData.button_create_page_title), /*#__PURE__*/_react.default.createElement(_Button.default, { variant: "outlined", color: "secondary", size: "small", startIcon: /*#__PURE__*/_react.default.createElement(_youtubeIcon.default, null), href: props.topData.button_watch_url, target: "_blank" }, props.topData.button_watch_title))), /*#__PURE__*/_react.default.createElement(_ui.Box, { component: "iframe", src: "https://www.youtube.com/embed/".concat(props.topData.youtube_embed_id), title: "YouTube video player", frameBorder: "0", allow: "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share", allowFullScreen: true, sx: { aspectRatio: '16/9', borderRadius: 1, display: 'flex', width: '100%', maxWidth: '365px' } })); }; TopSection.propTypes = { topData: PropTypes.object.isRequired, createNewPageUrl: PropTypes.string.isRequired }; var _default = exports["default"] = TopSection; /***/ }), /***/ "../modules/home/assets/js/icons/side-bar-check-icon.js": /*!**************************************************************!*\ !*** ../modules/home/assets/js/icons/side-bar-check-icon.js ***! \**************************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { "use strict"; var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../node_modules/@babel/runtime/helpers/typeof.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _extends2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/extends */ "../node_modules/@babel/runtime/helpers/extends.js")); var React = _interopRequireWildcard(__webpack_require__(/*! react */ "react")); var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui"); function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); } function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } var SideBarCheckIcon = function SideBarCheckIcon(props) { return /*#__PURE__*/React.createElement(_ui.SvgIcon, (0, _extends2.default)({ viewBox: "0 0 24 24" }, props), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.09013 3.69078C10.273 3.2008 11.5409 2.94861 12.8213 2.94861C14.1017 2.94861 15.3695 3.2008 16.5525 3.69078C17.7354 4.18077 18.8102 4.89895 19.7156 5.80432C20.621 6.70969 21.3391 7.78452 21.8291 8.96744C22.3191 10.1504 22.5713 11.4182 22.5713 12.6986C22.5713 13.979 22.3191 15.2468 21.8291 16.4298C21.3391 17.6127 20.621 18.6875 19.7156 19.5929C18.8102 20.4983 17.7354 21.2165 16.5525 21.7064C15.3695 22.1964 14.1017 22.4486 12.8213 22.4486C11.5409 22.4486 10.2731 22.1964 9.09013 21.7064C7.9072 21.2165 6.83237 20.4983 5.927 19.5929C5.02163 18.6875 4.30345 17.6127 3.81346 16.4298C3.32348 15.2468 3.07129 13.979 3.07129 12.6986C3.07129 11.4182 3.32348 10.1504 3.81346 8.96744C4.30345 7.78452 5.02163 6.70969 5.927 5.80432C6.83237 4.89895 7.9072 4.18077 9.09013 3.69078ZM12.8213 4.44861C11.7379 4.44861 10.6651 4.662 9.66415 5.0766C8.66321 5.4912 7.75374 6.09889 6.98766 6.86498C6.22157 7.63106 5.61388 8.54053 5.19928 9.54147C4.78468 10.5424 4.57129 11.6152 4.57129 12.6986C4.57129 13.782 4.78468 14.8548 5.19928 15.8557C5.61388 16.8567 6.22157 17.7662 6.98766 18.5322C7.75374 19.2983 8.66322 19.906 9.66415 20.3206C10.6651 20.7352 11.7379 20.9486 12.8213 20.9486C13.9047 20.9486 14.9775 20.7352 15.9784 20.3206C16.9794 19.906 17.8888 19.2983 18.6549 18.5322C19.421 17.7662 20.0287 16.8567 20.4433 15.8557C20.8579 14.8548 21.0713 13.782 21.0713 12.6986C21.0713 11.6152 20.8579 10.5424 20.4433 9.54147C20.0287 8.54053 19.421 7.63106 18.6549 6.86498C17.8888 6.09889 16.9794 5.4912 15.9784 5.0766C14.9775 4.662 13.9047 4.44861 12.8213 4.44861Z", fill: "#93003F" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.3213 9.69424C17.6142 9.98713 17.6142 10.462 17.3213 10.7549L12.3732 15.703C12.0803 15.9959 11.6054 15.9959 11.3125 15.703L8.83851 13.2289C8.54562 12.936 8.54562 12.4612 8.83851 12.1683C9.1314 11.8754 9.60628 11.8754 9.89917 12.1683L11.8429 14.112L16.2606 9.69424C16.5535 9.40135 17.0284 9.40135 17.3213 9.69424Z", fill: "#93003F" })); }; var _default = exports["default"] = SideBarCheckIcon; /***/ }), /***/ "../modules/home/assets/js/icons/youtube-icon.js": /*!*******************************************************!*\ !*** ../modules/home/assets/js/icons/youtube-icon.js ***! \*******************************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { "use strict"; var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ "../node_modules/@babel/runtime/helpers/typeof.js"); Object.defineProperty(exports, "__esModule", ({ value: true })); exports["default"] = void 0; var _extends2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/extends */ "../node_modules/@babel/runtime/helpers/extends.js")); var React = _interopRequireWildcard(__webpack_require__(/*! react */ "react")); var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui"); function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); } function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } var YoutubeIcon = function YoutubeIcon(props) { return /*#__PURE__*/React.createElement(_ui.SvgIcon, (0, _extends2.default)({ viewBox: "0 0 24 24" }, props), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7 5.75C5.20507 5.75 3.75 7.20507 3.75 9V15C3.75 16.7949 5.20507 18.25 7 18.25H17C18.7949 18.25 20.25 16.7949 20.25 15V9C20.25 7.20507 18.7949 5.75 17 5.75H7ZM2.25 9C2.25 6.37665 4.37665 4.25 7 4.25H17C19.6234 4.25 21.75 6.37665 21.75 9V15C21.75 17.6234 19.6234 19.75 17 19.75H7C4.37665 19.75 2.25 17.6234 2.25 15V9ZM9.63048 8.34735C9.86561 8.21422 10.1542 8.21786 10.3859 8.35688L15.3859 11.3569C15.6118 11.4924 15.75 11.7366 15.75 12C15.75 12.2634 15.6118 12.5076 15.3859 12.6431L10.3859 15.6431C10.1542 15.7821 9.86561 15.7858 9.63048 15.6526C9.39534 15.5195 9.25 15.2702 9.25 15V9C9.25 8.7298 9.39534 8.48048 9.63048 8.34735ZM10.75 10.3246V13.6754L13.5423 12L10.75 10.3246Z" })); }; var _default = exports["default"] = YoutubeIcon; /***/ }), /***/ "../node_modules/object-assign/index.js": /*!**********************************************!*\ !*** ../node_modules/object-assign/index.js ***! \**********************************************/ /***/ ((module) => { "use strict"; /* object-assign (c) Sindre Sorhus @license MIT */ /* eslint-disable no-unused-vars */ var getOwnPropertySymbols = Object.getOwnPropertySymbols; var hasOwnProperty = Object.prototype.hasOwnProperty; var propIsEnumerable = Object.prototype.propertyIsEnumerable; function toObject(val) { if (val === null || val === undefined) { throw new TypeError('Object.assign cannot be called with null or undefined'); } return Object(val); } function shouldUseNative() { try { if (!Object.assign) { return false; } // Detect buggy property enumeration order in older V8 versions. // https://bugs.chromium.org/p/v8/issues/detail?id=4118 var test1 = new String('abc'); // eslint-disable-line no-new-wrappers test1[5] = 'de'; if (Object.getOwnPropertyNames(test1)[0] === '5') { return false; } // https://bugs.chromium.org/p/v8/issues/detail?id=3056 var test2 = {}; for (var i = 0; i < 10; i++) { test2['_' + String.fromCharCode(i)] = i; } var order2 = Object.getOwnPropertyNames(test2).map(function (n) { return test2[n]; }); if (order2.join('') !== '0123456789') { return false; } // https://bugs.chromium.org/p/v8/issues/detail?id=3056 var test3 = {}; 'abcdefghijklmnopqrst'.split('').forEach(function (letter) { test3[letter] = letter; }); if (Object.keys(Object.assign({}, test3)).join('') !== 'abcdefghijklmnopqrst') { return false; } return true; } catch (err) { // We don't expect any of the above to throw, but better to be safe. return false; } } module.exports = shouldUseNative() ? Object.assign : function (target, source) { var from; var to = toObject(target); var symbols; for (var s = 1; s < arguments.length; s++) { from = Object(arguments[s]); for (var key in from) { if (hasOwnProperty.call(from, key)) { to[key] = from[key]; } } if (getOwnPropertySymbols) { symbols = getOwnPropertySymbols(from); for (var i = 0; i < symbols.length; i++) { if (propIsEnumerable.call(from, symbols[i])) { to[symbols[i]] = from[symbols[i]]; } } } } return to; }; /***/ }), /***/ "../node_modules/prop-types/checkPropTypes.js": /*!****************************************************!*\ !*** ../node_modules/prop-types/checkPropTypes.js ***! \****************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { "use strict"; /** * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var printWarning = function() {}; if (true) { var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ "../node_modules/prop-types/lib/ReactPropTypesSecret.js"); var loggedTypeFailures = {}; var has = __webpack_require__(/*! ./lib/has */ "../node_modules/prop-types/lib/has.js"); printWarning = function(text) { var message = 'Warning: ' + text; if (typeof console !== 'undefined') { console.error(message); } try { // --- Welcome to debugging React --- // This error was thrown as a convenience so that you can use this stack // to find the callsite that caused this warning to fire. throw new Error(message); } catch (x) { /**/ } }; } /** * Assert that the values match with the type specs. * Error messages are memorized and will only be shown once. * * @param {object} typeSpecs Map of name to a ReactPropType * @param {object} values Runtime values that need to be type-checked * @param {string} location e.g. "prop", "context", "child context" * @param {string} componentName Name of the component for error messages. * @param {?Function} getStack Returns the component stack. * @private */ function checkPropTypes(typeSpecs, values, location, componentName, getStack) { if (true) { for (var typeSpecName in typeSpecs) { if (has(typeSpecs, typeSpecName)) { var error; // Prop type validation may throw. In case they do, we don't want to // fail the render phase where it didn't fail before. So we log it. // After these have been cleaned up, we'll let them throw. try { // This is intentionally an invariant that gets caught. It's the same // behavior as without this statement except with a better message. if (typeof typeSpecs[typeSpecName] !== 'function') { var err = Error( (componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.' + 'This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.' ); err.name = 'Invariant Violation'; throw err; } error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret); } catch (ex) { error = ex; } if (error && !(error instanceof Error)) { printWarning( (componentName || 'React class') + ': type specification of ' + location + ' `' + typeSpecName + '` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a ' + typeof error + '. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).' ); } if (error instanceof Error && !(error.message in loggedTypeFailures)) { // Only monitor this failure once because there tends to be a lot of the // same error. loggedTypeFailures[error.message] = true; var stack = getStack ? getStack() : ''; printWarning( 'Failed ' + location + ' type: ' + error.message + (stack != null ? stack : '') ); } } } } } /** * Resets warning cache when testing. * * @private */ checkPropTypes.resetWarningCache = function() { if (true) { loggedTypeFailures = {}; } } module.exports = checkPropTypes; /***/ }), /***/ "../node_modules/prop-types/factoryWithTypeCheckers.js": /*!*************************************************************!*\ !*** ../node_modules/prop-types/factoryWithTypeCheckers.js ***! \*************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { "use strict"; /** * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var ReactIs = __webpack_require__(/*! react-is */ "../node_modules/prop-types/node_modules/react-is/index.js"); var assign = __webpack_require__(/*! object-assign */ "../node_modules/object-assign/index.js"); var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ "../node_modules/prop-types/lib/ReactPropTypesSecret.js"); var has = __webpack_require__(/*! ./lib/has */ "../node_modules/prop-types/lib/has.js"); var checkPropTypes = __webpack_require__(/*! ./checkPropTypes */ "../node_modules/prop-types/checkPropTypes.js"); var printWarning = function() {}; if (true) { printWarning = function(text) { var message = 'Warning: ' + text; if (typeof console !== 'undefined') { console.error(message); } try { // --- Welcome to debugging React --- // This error was thrown as a convenience so that you can use this stack // to find the callsite that caused this warning to fire. throw new Error(message); } catch (x) {} }; } function emptyFunctionThatReturnsNull() { return null; } module.exports = function(isValidElement, throwOnDirectAccess) { /* global Symbol */ var ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator; var FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec. /** * Returns the iterator method function contained on the iterable object. * * Be sure to invoke the function with the iterable as context: * * var iteratorFn = getIteratorFn(myIterable); * if (iteratorFn) { * var iterator = iteratorFn.call(myIterable); * ... * } * * @param {?object} maybeIterable * @return {?function} */ function getIteratorFn(maybeIterable) { var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]); if (typeof iteratorFn === 'function') { return iteratorFn; } } /** * Collection of methods that allow declaration and validation of props that are * supplied to React components. Example usage: * * var Props = require('ReactPropTypes'); * var MyArticle = React.createClass({ * propTypes: { * // An optional string prop named "description". * description: Props.string, * * // A required enum prop named "category". * category: Props.oneOf(['News','Photos']).isRequired, * * // A prop named "dialog" that requires an instance of Dialog. * dialog: Props.instanceOf(Dialog).isRequired * }, * render: function() { ... } * }); * * A more formal specification of how these methods are used: * * type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...) * decl := ReactPropTypes.{type}(.isRequired)? * * Each and every declaration produces a function with the same signature. This * allows the creation of custom validation functions. For example: * * var MyLink = React.createClass({ * propTypes: { * // An optional string or URI prop named "href". * href: function(props, propName, componentName) { * var propValue = props[propName]; * if (propValue != null && typeof propValue !== 'string' && * !(propValue instanceof URI)) { * return new Error( * 'Expected a string or an URI for ' + propName + ' in ' + * componentName * ); * } * } * }, * render: function() {...} * }); * * @internal */ var ANONYMOUS = '<>'; // Important! // Keep this list in sync with production version in `./factoryWithThrowingShims.js`. var ReactPropTypes = { array: createPrimitiveTypeChecker('array'), bigint: createPrimitiveTypeChecker('bigint'), bool: createPrimitiveTypeChecker('boolean'), func: createPrimitiveTypeChecker('function'), number: createPrimitiveTypeChecker('number'), object: createPrimitiveTypeChecker('object'), string: createPrimitiveTypeChecker('string'), symbol: createPrimitiveTypeChecker('symbol'), any: createAnyTypeChecker(), arrayOf: createArrayOfTypeChecker, element: createElementTypeChecker(), elementType: createElementTypeTypeChecker(), instanceOf: createInstanceTypeChecker, node: createNodeChecker(), objectOf: createObjectOfTypeChecker, oneOf: createEnumTypeChecker, oneOfType: createUnionTypeChecker, shape: createShapeTypeChecker, exact: createStrictShapeTypeChecker, }; /** * inlined Object.is polyfill to avoid requiring consumers ship their own * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is */ /*eslint-disable no-self-compare*/ function is(x, y) { // SameValue algorithm if (x === y) { // Steps 1-5, 7-10 // Steps 6.b-6.e: +0 != -0 return x !== 0 || 1 / x === 1 / y; } else { // Step 6.a: NaN == NaN return x !== x && y !== y; } } /*eslint-enable no-self-compare*/ /** * We use an Error-like object for backward compatibility as people may call * PropTypes directly and inspect their output. However, we don't use real * Errors anymore. We don't inspect their stack anyway, and creating them * is prohibitively expensive if they are created too often, such as what * happens in oneOfType() for any type before the one that matched. */ function PropTypeError(message, data) { this.message = message; this.data = data && typeof data === 'object' ? data: {}; this.stack = ''; } // Make `instanceof Error` still work for returned errors. PropTypeError.prototype = Error.prototype; function createChainableTypeChecker(validate) { if (true) { var manualPropTypeCallCache = {}; var manualPropTypeWarningCount = 0; } function checkType(isRequired, props, propName, componentName, location, propFullName, secret) { componentName = componentName || ANONYMOUS; propFullName = propFullName || propName; if (secret !== ReactPropTypesSecret) { if (throwOnDirectAccess) { // New behavior only for users of `prop-types` package var err = 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' ); err.name = 'Invariant Violation'; throw err; } else if ( true && typeof console !== 'undefined') { // Old behavior for people using React.PropTypes var cacheKey = componentName + ':' + propName; if ( !manualPropTypeCallCache[cacheKey] && // Avoid spamming the console because they are often not actionable except for lib authors manualPropTypeWarningCount < 3 ) { printWarning( 'You are manually calling a React.PropTypes validation ' + 'function for the `' + propFullName + '` prop on `' + componentName + '`. This is deprecated ' + 'and will throw in the standalone `prop-types` package. ' + 'You may be seeing this warning due to a third-party PropTypes ' + 'library. See https://fb.me/react-warning-dont-call-proptypes ' + 'for details.' ); manualPropTypeCallCache[cacheKey] = true; manualPropTypeWarningCount++; } } } if (props[propName] == null) { if (isRequired) { if (props[propName] === null) { return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required ' + ('in `' + componentName + '`, but its value is `null`.')); } return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required in ' + ('`' + componentName + '`, but its value is `undefined`.')); } return null; } else { return validate(props, propName, componentName, location, propFullName); } } var chainedCheckType = checkType.bind(null, false); chainedCheckType.isRequired = checkType.bind(null, true); return chainedCheckType; } function createPrimitiveTypeChecker(expectedType) { function validate(props, propName, componentName, location, propFullName, secret) { var propValue = props[propName]; var propType = getPropType(propValue); if (propType !== expectedType) { // `propValue` being instance of, say, date/regexp, pass the 'object' // check, but we can offer a more precise error message here rather than // 'of type `object`'. var preciseType = getPreciseType(propValue); return new PropTypeError( 'Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + preciseType + '` supplied to `' + componentName + '`, expected ') + ('`' + expectedType + '`.'), {expectedType: expectedType} ); } return null; } return createChainableTypeChecker(validate); } function createAnyTypeChecker() { return createChainableTypeChecker(emptyFunctionThatReturnsNull); } function createArrayOfTypeChecker(typeChecker) { function validate(props, propName, componentName, location, propFullName) { if (typeof typeChecker !== 'function') { return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside arrayOf.'); } var propValue = props[propName]; if (!Array.isArray(propValue)) { var propType = getPropType(propValue); return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.')); } for (var i = 0; i < propValue.length; i++) { var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret); if (error instanceof Error) { return error; } } return null; } return createChainableTypeChecker(validate); } function createElementTypeChecker() { function validate(props, propName, componentName, location, propFullName) { var propValue = props[propName]; if (!isValidElement(propValue)) { var propType = getPropType(propValue); return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.')); } return null; } return createChainableTypeChecker(validate); } function createElementTypeTypeChecker() { function validate(props, propName, componentName, location, propFullName) { var propValue = props[propName]; if (!ReactIs.isValidElementType(propValue)) { var propType = getPropType(propValue); return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement type.')); } return null; } return createChainableTypeChecker(validate); } function createInstanceTypeChecker(expectedClass) { function validate(props, propName, componentName, location, propFullName) { if (!(props[propName] instanceof expectedClass)) { var expectedClassName = expectedClass.name || ANONYMOUS; var actualClassName = getClassName(props[propName]); return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + actualClassName + '` supplied to `' + componentName + '`, expected ') + ('instance of `' + expectedClassName + '`.')); } return null; } return createChainableTypeChecker(validate); } function createEnumTypeChecker(expectedValues) { if (!Array.isArray(expectedValues)) { if (true) { if (arguments.length > 1) { printWarning( 'Invalid arguments supplied to oneOf, expected an array, got ' + arguments.length + ' arguments. ' + 'A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).' ); } else { printWarning('Invalid argument supplied to oneOf, expected an array.'); } } return emptyFunctionThatReturnsNull; } function validate(props, propName, componentName, location, propFullName) { var propValue = props[propName]; for (var i = 0; i < expectedValues.length; i++) { if (is(propValue, expectedValues[i])) { return null; } } var valuesString = JSON.stringify(expectedValues, function replacer(key, value) { var type = getPreciseType(value); if (type === 'symbol') { return String(value); } return value; }); return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of value `' + String(propValue) + '` ' + ('supplied to `' + componentName + '`, expected one of ' + valuesString + '.')); } return createChainableTypeChecker(validate); } function createObjectOfTypeChecker(typeChecker) { function validate(props, propName, componentName, location, propFullName) { if (typeof typeChecker !== 'function') { return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside objectOf.'); } var propValue = props[propName]; var propType = getPropType(propValue); if (propType !== 'object') { return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an object.')); } for (var key in propValue) { if (has(propValue, key)) { var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret); if (error instanceof Error) { return error; } } } return null; } return createChainableTypeChecker(validate); } function createUnionTypeChecker(arrayOfTypeCheckers) { if (!Array.isArray(arrayOfTypeCheckers)) { true ? printWarning('Invalid argument supplied to oneOfType, expected an instance of array.') : 0; return emptyFunctionThatReturnsNull; } for (var i = 0; i < arrayOfTypeCheckers.length; i++) { var checker = arrayOfTypeCheckers[i]; if (typeof checker !== 'function') { printWarning( 'Invalid argument supplied to oneOfType. Expected an array of check functions, but ' + 'received ' + getPostfixForTypeWarning(checker) + ' at index ' + i + '.' ); return emptyFunctionThatReturnsNull; } } function validate(props, propName, componentName, location, propFullName) { var expectedTypes = []; for (var i = 0; i < arrayOfTypeCheckers.length; i++) { var checker = arrayOfTypeCheckers[i]; var checkerResult = checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret); if (checkerResult == null) { return null; } if (checkerResult.data && has(checkerResult.data, 'expectedType')) { expectedTypes.push(checkerResult.data.expectedType); } } var expectedTypesMessage = (expectedTypes.length > 0) ? ', expected one of type [' + expectedTypes.join(', ') + ']': ''; return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`' + expectedTypesMessage + '.')); } return createChainableTypeChecker(validate); } function createNodeChecker() { function validate(props, propName, componentName, location, propFullName) { if (!isNode(props[propName])) { return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`, expected a ReactNode.')); } return null; } return createChainableTypeChecker(validate); } function invalidValidatorError(componentName, location, propFullName, key, type) { return new PropTypeError( (componentName || 'React class') + ': ' + location + ' type `' + propFullName + '.' + key + '` is invalid; ' + 'it must be a function, usually from the `prop-types` package, but received `' + type + '`.' ); } function createShapeTypeChecker(shapeTypes) { function validate(props, propName, componentName, location, propFullName) { var propValue = props[propName]; var propType = getPropType(propValue); if (propType !== 'object') { return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.')); } for (var key in shapeTypes) { var checker = shapeTypes[key]; if (typeof checker !== 'function') { return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker)); } var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret); if (error) { return error; } } return null; } return createChainableTypeChecker(validate); } function createStrictShapeTypeChecker(shapeTypes) { function validate(props, propName, componentName, location, propFullName) { var propValue = props[propName]; var propType = getPropType(propValue); if (propType !== 'object') { return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.')); } // We need to check all keys in case some are required but missing from props. var allKeys = assign({}, props[propName], shapeTypes); for (var key in allKeys) { var checker = shapeTypes[key]; if (has(shapeTypes, key) && typeof checker !== 'function') { return invalidValidatorError(componentName, location, propFullName, key, getPreciseType(checker)); } if (!checker) { return new PropTypeError( 'Invalid ' + location + ' `' + propFullName + '` key `' + key + '` supplied to `' + componentName + '`.' + '\nBad object: ' + JSON.stringify(props[propName], null, ' ') + '\nValid keys: ' + JSON.stringify(Object.keys(shapeTypes), null, ' ') ); } var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret); if (error) { return error; } } return null; } return createChainableTypeChecker(validate); } function isNode(propValue) { switch (typeof propValue) { case 'number': case 'string': case 'undefined': return true; case 'boolean': return !propValue; case 'object': if (Array.isArray(propValue)) { return propValue.every(isNode); } if (propValue === null || isValidElement(propValue)) { return true; } var iteratorFn = getIteratorFn(propValue); if (iteratorFn) { var iterator = iteratorFn.call(propValue); var step; if (iteratorFn !== propValue.entries) { while (!(step = iterator.next()).done) { if (!isNode(step.value)) { return false; } } } else { // Iterator will provide entry [k,v] tuples rather than values. while (!(step = iterator.next()).done) { var entry = step.value; if (entry) { if (!isNode(entry[1])) { return false; } } } } } else { return false; } return true; default: return false; } } function isSymbol(propType, propValue) { // Native Symbol. if (propType === 'symbol') { return true; } // falsy value can't be a Symbol if (!propValue) { return false; } // 19.4.3.5 Symbol.prototype[@@toStringTag] === 'Symbol' if (propValue['@@toStringTag'] === 'Symbol') { return true; } // Fallback for non-spec compliant Symbols which are polyfilled. if (typeof Symbol === 'function' && propValue instanceof Symbol) { return true; } return false; } // Equivalent of `typeof` but with special handling for array and regexp. function getPropType(propValue) { var propType = typeof propValue; if (Array.isArray(propValue)) { return 'array'; } if (propValue instanceof RegExp) { // Old webkits (at least until Android 4.0) return 'function' rather than // 'object' for typeof a RegExp. We'll normalize this here so that /bla/ // passes PropTypes.object. return 'object'; } if (isSymbol(propType, propValue)) { return 'symbol'; } return propType; } // This handles more types than `getPropType`. Only used for error messages. // See `createPrimitiveTypeChecker`. function getPreciseType(propValue) { if (typeof propValue === 'undefined' || propValue === null) { return '' + propValue; } var propType = getPropType(propValue); if (propType === 'object') { if (propValue instanceof Date) { return 'date'; } else if (propValue instanceof RegExp) { return 'regexp'; } } return propType; } // Returns a string that is postfixed to a warning about an invalid type. // For example, "undefined" or "of type array" function getPostfixForTypeWarning(value) { var type = getPreciseType(value); switch (type) { case 'array': case 'object': return 'an ' + type; case 'boolean': case 'date': case 'regexp': return 'a ' + type; default: return type; } } // Returns class name of the object, if any. function getClassName(propValue) { if (!propValue.constructor || !propValue.constructor.name) { return ANONYMOUS; } return propValue.constructor.name; } ReactPropTypes.checkPropTypes = checkPropTypes; ReactPropTypes.resetWarningCache = checkPropTypes.resetWarningCache; ReactPropTypes.PropTypes = ReactPropTypes; return ReactPropTypes; }; /***/ }), /***/ "../node_modules/prop-types/index.js": /*!*******************************************!*\ !*** ../node_modules/prop-types/index.js ***! \*******************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { /** * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ if (true) { var ReactIs = __webpack_require__(/*! react-is */ "../node_modules/prop-types/node_modules/react-is/index.js"); // By explicitly using `prop-types` you are opting into new development behavior. // http://fb.me/prop-types-in-prod var throwOnDirectAccess = true; module.exports = __webpack_require__(/*! ./factoryWithTypeCheckers */ "../node_modules/prop-types/factoryWithTypeCheckers.js")(ReactIs.isElement, throwOnDirectAccess); } else {} /***/ }), /***/ "../node_modules/prop-types/lib/ReactPropTypesSecret.js": /*!**************************************************************!*\ !*** ../node_modules/prop-types/lib/ReactPropTypesSecret.js ***! \**************************************************************/ /***/ ((module) => { "use strict"; /** * Copyright (c) 2013-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED'; module.exports = ReactPropTypesSecret; /***/ }), /***/ "../node_modules/prop-types/lib/has.js": /*!*********************************************!*\ !*** ../node_modules/prop-types/lib/has.js ***! \*********************************************/ /***/ ((module) => { module.exports = Function.call.bind(Object.prototype.hasOwnProperty); /***/ }), /***/ "../node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js": /*!************************************************************************************!*\ !*** ../node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js ***! \************************************************************************************/ /***/ ((__unused_webpack_module, exports) => { "use strict"; /** @license React v16.13.1 * react-is.development.js * * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ if (true) { (function() { 'use strict'; // The Symbol used to tag the ReactElement-like types. If there is no native Symbol // nor polyfill, then a plain number is used for performance. var hasSymbol = typeof Symbol === 'function' && Symbol.for; var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7; var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca; var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb; var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc; var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2; var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd; var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary // (unstable) APIs that have been removed. Can we remove the symbols? var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf; var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf; var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0; var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1; var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for('react.suspense_list') : 0xead8; var REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3; var REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4; var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for('react.block') : 0xead9; var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for('react.fundamental') : 0xead5; var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for('react.responder') : 0xead6; var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for('react.scope') : 0xead7; function isValidElementType(type) { return typeof type === 'string' || typeof type === 'function' || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill. type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === 'object' && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE); } function typeOf(object) { if (typeof object === 'object' && object !== null) { var $$typeof = object.$$typeof; switch ($$typeof) { case REACT_ELEMENT_TYPE: var type = object.type; switch (type) { case REACT_ASYNC_MODE_TYPE: case REACT_CONCURRENT_MODE_TYPE: case REACT_FRAGMENT_TYPE: case REACT_PROFILER_TYPE: case REACT_STRICT_MODE_TYPE: case REACT_SUSPENSE_TYPE: return type; default: var $$typeofType = type && type.$$typeof; switch ($$typeofType) { case REACT_CONTEXT_TYPE: case REACT_FORWARD_REF_TYPE: case REACT_LAZY_TYPE: case REACT_MEMO_TYPE: case REACT_PROVIDER_TYPE: return $$typeofType; default: return $$typeof; } } case REACT_PORTAL_TYPE: return $$typeof; } } return undefined; } // AsyncMode is deprecated along with isAsyncMode var AsyncMode = REACT_ASYNC_MODE_TYPE; var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE; var ContextConsumer = REACT_CONTEXT_TYPE; var ContextProvider = REACT_PROVIDER_TYPE; var Element = REACT_ELEMENT_TYPE; var ForwardRef = REACT_FORWARD_REF_TYPE; var Fragment = REACT_FRAGMENT_TYPE; var Lazy = REACT_LAZY_TYPE; var Memo = REACT_MEMO_TYPE; var Portal = REACT_PORTAL_TYPE; var Profiler = REACT_PROFILER_TYPE; var StrictMode = REACT_STRICT_MODE_TYPE; var Suspense = REACT_SUSPENSE_TYPE; var hasWarnedAboutDeprecatedIsAsyncMode = false; // AsyncMode should be deprecated function isAsyncMode(object) { { if (!hasWarnedAboutDeprecatedIsAsyncMode) { hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint console['warn']('The ReactIs.isAsyncMode() alias has been deprecated, ' + 'and will be removed in React 17+. Update your code to use ' + 'ReactIs.isConcurrentMode() instead. It has the exact same API.'); } } return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE; } function isConcurrentMode(object) { return typeOf(object) === REACT_CONCURRENT_MODE_TYPE; } function isContextConsumer(object) { return typeOf(object) === REACT_CONTEXT_TYPE; } function isContextProvider(object) { return typeOf(object) === REACT_PROVIDER_TYPE; } function isElement(object) { return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE; } function isForwardRef(object) { return typeOf(object) === REACT_FORWARD_REF_TYPE; } function isFragment(object) { return typeOf(object) === REACT_FRAGMENT_TYPE; } function isLazy(object) { return typeOf(object) === REACT_LAZY_TYPE; } function isMemo(object) { return typeOf(object) === REACT_MEMO_TYPE; } function isPortal(object) { return typeOf(object) === REACT_PORTAL_TYPE; } function isProfiler(object) { return typeOf(object) === REACT_PROFILER_TYPE; } function isStrictMode(object) { return typeOf(object) === REACT_STRICT_MODE_TYPE; } function isSuspense(object) { return typeOf(object) === REACT_SUSPENSE_TYPE; } exports.AsyncMode = AsyncMode; exports.ConcurrentMode = ConcurrentMode; exports.ContextConsumer = ContextConsumer; exports.ContextProvider = ContextProvider; exports.Element = Element; exports.ForwardRef = ForwardRef; exports.Fragment = Fragment; exports.Lazy = Lazy; exports.Memo = Memo; exports.Portal = Portal; exports.Profiler = Profiler; exports.StrictMode = StrictMode; exports.Suspense = Suspense; exports.isAsyncMode = isAsyncMode; exports.isConcurrentMode = isConcurrentMode; exports.isContextConsumer = isContextConsumer; exports.isContextProvider = isContextProvider; exports.isElement = isElement; exports.isForwardRef = isForwardRef; exports.isFragment = isFragment; exports.isLazy = isLazy; exports.isMemo = isMemo; exports.isPortal = isPortal; exports.isProfiler = isProfiler; exports.isStrictMode = isStrictMode; exports.isSuspense = isSuspense; exports.isValidElementType = isValidElementType; exports.typeOf = typeOf; })(); } /***/ }), /***/ "../node_modules/prop-types/node_modules/react-is/index.js": /*!*****************************************************************!*\ !*** ../node_modules/prop-types/node_modules/react-is/index.js ***! \*****************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { "use strict"; if (false) {} else { module.exports = __webpack_require__(/*! ./cjs/react-is.development.js */ "../node_modules/prop-types/node_modules/react-is/cjs/react-is.development.js"); } /***/ }), /***/ "../node_modules/react-dom/client.js": /*!*******************************************!*\ !*** ../node_modules/react-dom/client.js ***! \*******************************************/ /***/ ((__unused_webpack_module, exports, __webpack_require__) => { "use strict"; var m = __webpack_require__(/*! react-dom */ "react-dom"); if (false) {} else { var i = m.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED; exports.createRoot = function(c, o) { i.usingClientEntryPoint = true; try { return m.createRoot(c, o); } finally { i.usingClientEntryPoint = false; } }; exports.hydrateRoot = function(c, h, o) { i.usingClientEntryPoint = true; try { return m.hydrateRoot(c, h, o); } finally { i.usingClientEntryPoint = false; } }; } /***/ }), /***/ "react": /*!************************!*\ !*** external "React" ***! \************************/ /***/ ((module) => { "use strict"; module.exports = React; /***/ }), /***/ "react-dom": /*!***************************!*\ !*** external "ReactDOM" ***! \***************************/ /***/ ((module) => { "use strict"; module.exports = ReactDOM; /***/ }), /***/ "@elementor/ui": /*!*********************************!*\ !*** external "elementorV2.ui" ***! \*********************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui; /***/ }), /***/ "@elementor/ui/Box": /*!****************************************!*\ !*** external "elementorV2.ui['Box']" ***! \****************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['Box']; /***/ }), /***/ "@elementor/ui/Button": /*!*******************************************!*\ !*** external "elementorV2.ui['Button']" ***! \*******************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['Button']; /***/ }), /***/ "@elementor/ui/Card": /*!*****************************************!*\ !*** external "elementorV2.ui['Card']" ***! \*****************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['Card']; /***/ }), /***/ "@elementor/ui/CardActions": /*!************************************************!*\ !*** external "elementorV2.ui['CardActions']" ***! \************************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['CardActions']; /***/ }), /***/ "@elementor/ui/CardContent": /*!************************************************!*\ !*** external "elementorV2.ui['CardContent']" ***! \************************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['CardContent']; /***/ }), /***/ "@elementor/ui/CardMedia": /*!**********************************************!*\ !*** external "elementorV2.ui['CardMedia']" ***! \**********************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['CardMedia']; /***/ }), /***/ "@elementor/ui/Dialog": /*!*******************************************!*\ !*** external "elementorV2.ui['Dialog']" ***! \*******************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['Dialog']; /***/ }), /***/ "@elementor/ui/DialogActions": /*!**************************************************!*\ !*** external "elementorV2.ui['DialogActions']" ***! \**************************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['DialogActions']; /***/ }), /***/ "@elementor/ui/DialogContent": /*!**************************************************!*\ !*** external "elementorV2.ui['DialogContent']" ***! \**************************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['DialogContent']; /***/ }), /***/ "@elementor/ui/DialogContentText": /*!******************************************************!*\ !*** external "elementorV2.ui['DialogContentText']" ***! \******************************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['DialogContentText']; /***/ }), /***/ "@elementor/ui/DialogHeader": /*!*************************************************!*\ !*** external "elementorV2.ui['DialogHeader']" ***! \*************************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['DialogHeader']; /***/ }), /***/ "@elementor/ui/DialogHeaderGroup": /*!******************************************************!*\ !*** external "elementorV2.ui['DialogHeaderGroup']" ***! \******************************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['DialogHeaderGroup']; /***/ }), /***/ "@elementor/ui/DialogTitle": /*!************************************************!*\ !*** external "elementorV2.ui['DialogTitle']" ***! \************************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['DialogTitle']; /***/ }), /***/ "@elementor/ui/Divider": /*!********************************************!*\ !*** external "elementorV2.ui['Divider']" ***! \********************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['Divider']; /***/ }), /***/ "@elementor/ui/Link": /*!*****************************************!*\ !*** external "elementorV2.ui['Link']" ***! \*****************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['Link']; /***/ }), /***/ "@elementor/ui/List": /*!*****************************************!*\ !*** external "elementorV2.ui['List']" ***! \*****************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['List']; /***/ }), /***/ "@elementor/ui/ListItem": /*!*********************************************!*\ !*** external "elementorV2.ui['ListItem']" ***! \*********************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['ListItem']; /***/ }), /***/ "@elementor/ui/ListItemButton": /*!***************************************************!*\ !*** external "elementorV2.ui['ListItemButton']" ***! \***************************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['ListItemButton']; /***/ }), /***/ "@elementor/ui/ListItemText": /*!*************************************************!*\ !*** external "elementorV2.ui['ListItemText']" ***! \*************************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['ListItemText']; /***/ }), /***/ "@elementor/ui/TextField": /*!**********************************************!*\ !*** external "elementorV2.ui['TextField']" ***! \**********************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['TextField']; /***/ }), /***/ "@elementor/ui/Typography": /*!***********************************************!*\ !*** external "elementorV2.ui['Typography']" ***! \***********************************************/ /***/ ((module) => { "use strict"; module.exports = elementorV2.ui['Typography']; /***/ }), /***/ "@wordpress/i18n": /*!**************************!*\ !*** external "wp.i18n" ***! \**************************/ /***/ ((module) => { "use strict"; module.exports = wp.i18n; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/arrayLikeToArray.js": /*!******************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/arrayLikeToArray.js ***! \******************************************************************/ /***/ ((module) => { function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; } module.exports = _arrayLikeToArray, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/arrayWithHoles.js": /*!****************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/arrayWithHoles.js ***! \****************************************************************/ /***/ ((module) => { function _arrayWithHoles(r) { if (Array.isArray(r)) return r; } module.exports = _arrayWithHoles, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/extends.js": /*!*********************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/extends.js ***! \*********************************************************/ /***/ ((module) => { function _extends() { return module.exports = _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, module.exports.__esModule = true, module.exports["default"] = module.exports, _extends.apply(null, arguments); } module.exports = _extends, 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/iterableToArrayLimit.js": /*!**********************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/iterableToArrayLimit.js ***! \**********************************************************************/ /***/ ((module) => { function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } } module.exports = _iterableToArrayLimit, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/nonIterableRest.js": /*!*****************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/nonIterableRest.js ***! \*****************************************************************/ /***/ ((module) => { 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."); } module.exports = _nonIterableRest, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js": /*!**************************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js ***! \**************************************************************************/ /***/ ((module) => { function _objectDestructuringEmpty(t) { if (null == t) throw new TypeError("Cannot destructure " + t); } module.exports = _objectDestructuringEmpty, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }), /***/ "../node_modules/@babel/runtime/helpers/slicedToArray.js": /*!***************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/slicedToArray.js ***! \***************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var arrayWithHoles = __webpack_require__(/*! ./arrayWithHoles.js */ "../node_modules/@babel/runtime/helpers/arrayWithHoles.js"); var iterableToArrayLimit = __webpack_require__(/*! ./iterableToArrayLimit.js */ "../node_modules/@babel/runtime/helpers/iterableToArrayLimit.js"); var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray.js */ "../node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js"); var nonIterableRest = __webpack_require__(/*! ./nonIterableRest.js */ "../node_modules/@babel/runtime/helpers/nonIterableRest.js"); function _slicedToArray(r, e) { return arrayWithHoles(r) || iterableToArrayLimit(r, e) || unsupportedIterableToArray(r, e) || nonIterableRest(); } module.exports = _slicedToArray, 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/helpers/unsupportedIterableToArray.js": /*!****************************************************************************!*\ !*** ../node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js ***! \****************************************************************************/ /***/ ((module, __unused_webpack_exports, __webpack_require__) => { var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray.js */ "../node_modules/@babel/runtime/helpers/arrayLikeToArray.js"); function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? arrayLikeToArray(r, a) : void 0; } } module.exports = _unsupportedIterableToArray, module.exports.__esModule = true, module.exports["default"] = module.exports; /***/ }) /******/ }); /************************************************************************/ /******/ // 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; /******/ } /******/ /************************************************************************/ var __webpack_exports__ = {}; // This entry needs to be wrapped in an IIFE because it needs to be in strict mode. (() => { "use strict"; /*!****************************************!*\ !*** ../modules/home/assets/js/app.js ***! \****************************************/ /* provided dependency */ var PropTypes = __webpack_require__(/*! prop-types */ "../node_modules/prop-types/index.js"); var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ "../node_modules/@babel/runtime/helpers/interopRequireDefault.js"); var _react = _interopRequireDefault(__webpack_require__(/*! react */ "react")); var _react2 = _interopRequireDefault(__webpack_require__(/*! elementor-utils/react */ "../assets/dev/js/utils/react.js")); var _ui = __webpack_require__(/*! @elementor/ui */ "@elementor/ui"); var _homeScreen = _interopRequireDefault(__webpack_require__(/*! ./components/home-screen */ "../modules/home/assets/js/components/home-screen.js")); var App = function App(props) { return /*#__PURE__*/_react.default.createElement(_ui.DirectionProvider, { rtl: props.isRTL }, /*#__PURE__*/_react.default.createElement(_ui.LocalizationProvider, null, /*#__PURE__*/_react.default.createElement(_ui.ThemeProvider, { colorScheme: 'light' }, /*#__PURE__*/_react.default.createElement(_homeScreen.default, { homeScreenData: props.homeScreenData, adminUrl: props.adminUrl })))); }; var isRTL = elementorCommon.config.isRTL, adminUrl = elementorAppConfig.admin_url, rootElement = document.querySelector('#e-home-screen'); App.propTypes = { isRTL: PropTypes.bool, adminUrl: PropTypes.string, homeScreenData: PropTypes.object }; _react2.default.render(/*#__PURE__*/_react.default.createElement(App, { isRTL: isRTL, homeScreenData: elementorHomeScreenData, adminUrl: adminUrl }), rootElement); })(); /******/ })() ; //# sourceMappingURL=e-home-screen.js.map āļ•āļīāļ”āļ•āļēāļĄāļšāļ­āļĨāļŠāļ”āļ—āļļāļāļ™āļąāļ” āļĢāļąāļšāļŠāļĄāļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļŠāļ”āļŸāļļāļ•āļšāļ­āļĨāđāļšāļšāđ„āļĄāđˆāļĄāļĩāļŠāļ°āļ”āļļāļ” – Paok

āļ•āļīāļ”āļ•āļēāļĄāļšāļ­āļĨāļŠāļ”āļ—āļļāļāļ™āļąāļ” āļĢāļąāļšāļŠāļĄāļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļŠāļ”āļŸāļļāļ•āļšāļ­āļĨāđāļšāļšāđ„āļĄāđˆāļĄāļĩāļŠāļ°āļ”āļļāļ”

āļ•āļīāļ”āļ•āļēāļĄāļ„āļ§āļēāļĄāļĄāļąāļ™āļŠāđŒāļ‚āļ­āļ‡āļŸāļļāļ•āļšāļ­āļĨāļ—āļļāļāļ™āļąāļ”āļāļąāļšāļšāļĢāļīāļāļēāļĢ āļšāļ­āļĨāļŠāļ” āļ—āļĩāđˆāļ™āļģāđ€āļŠāļ™āļ­āļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļŠāļ”āļ„āļĢāļšāļ—āļļāļāļāļēāļĢāđāļ‚āđˆāļ‡āļ‚āļąāļ™ āļžāļĢāđ‰āļ­āļĄāļ­āļąāļžāđ€āļ”āļ—āļ„āļ°āđāļ™āļ™āđāļĨāļ°āļŠāļ–āļīāļ•āļīāđāļšāļšāđ€āļĢāļĩāļĒāļĨāđ„āļ—āļĄāđŒāđƒāļŦāđ‰āļ„āļļāļ“āđ„āļĄāđˆāļžāļĨāļēāļ”āļ—āļļāļāļŠāđˆāļ§āļ‡āļŠāļģāļ„āļąāļāļ‚āļ­āļ‡āđ€āļāļĄ

āļ›āļĢāļ°āđ‚āļĒāļŠāļ™āđŒāļŦāļĨāļąāļāļ‚āļ­āļ‡āļāļēāļĢāļĢāļąāļšāļŠāļĄāļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļŠāļ”

āļ›āļĢāļ°āđ‚āļĒāļŠāļ™āđŒāļŦāļĨāļąāļāļ‚āļ­āļ‡āļāļēāļĢāļĢāļąāļšāļŠāļĄāļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļŠāļ”āļ„āļ·āļ­āļāļēāļĢāđ„āļ”āđ‰āļĢāļąāļšāļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāđāļšāļšāđ€āļĢāļĩāļĒāļĨāđ„āļ—āļĄāđŒāļ—āļĩāđˆāļŠāļĢāđ‰āļēāļ‡āļ„āļ§āļēāļĄāļĢāļđāđ‰āļŠāļķāļāļĄāļĩāļŠāđˆāļ§āļ™āļĢāđˆāļ§āļĄāđāļĨāļ°āđ€āļ›āđ‡āļ™āļŠāđˆāļ§āļ™āļŦāļ™āļķāđˆāļ‡āļ‚āļ­āļ‡āļŠāļļāļĄāļŠāļ™āļ­āļ­āļ™āđ„āļĨāļ™āđŒ āļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļŠāļ”āļŠāđˆāļ§āļĒāđƒāļŦāđ‰āļœāļđāđ‰āļŠāļĄāļŠāļēāļĄāļēāļĢāļ–āđ‚āļ•āđ‰āļ•āļ­āļšāļāļąāļšāļœāļđāđ‰āļŠāļĢāđ‰āļēāļ‡āđ€āļ™āļ·āđ‰āļ­āļŦāļēāđ„āļ”āđ‰āļ—āļąāļ™āļ—āļĩāļœāđˆāļēāļ™āļĢāļ°āļšāļšāđāļŠāļ— āļ‹āļķāđˆāļ‡āđ€āļ›āđ‡āļ™āļˆāļļāļ”āđāļ‚āđ‡āļ‡āļ—āļĩāđˆāđ€āļ™āļ·āđ‰āļ­āļŦāļēāļĢāļđāļ›āđāļšāļšāļ­āļ·āđˆāļ™āļ—āļģāđ„āļ”āđ‰āļĒāļēāļ

āļšāļ­āļĨāļŠāļ”

āļ™āļĩāđˆāļ„āļ·āļ­āđ‚āļ­āļāļēāļŠāļ—āļ­āļ‡āđƒāļ™āļāļēāļĢāļŠāļĢāđ‰āļēāļ‡āļ„āļ§āļēāļĄāļŠāļąāļĄāļžāļąāļ™āļ˜āđŒāđāļĨāļ°āļ„āļ§āļēāļĄāļ āļąāļāļ”āļĩāļ‚āļ­āļ‡āđāļŸāļ™āļ„āļĨāļąāļšāļ—āļĩāđˆāđāļ—āđ‰āļˆāļĢāļīāļ‡

āļ™āļ­āļāļˆāļēāļāļ™āļĩāđ‰ āļĒāļąāļ‡āđ€āļ›āđ‡āļ™āļŠāđˆāļ­āļ‡āļ—āļēāļ‡āļŦāļĨāļąāļāļŠāļģāļŦāļĢāļąāļšāļāļēāļĢāļĢāļąāļšāļ‚āđ‰āļ­āļĄāļđāļĨāļ‚āđˆāļēāļ§āļŠāļēāļĢāļŦāļĢāļ·āļ­āļ„āļ§āļēāļĄāļĢāļđāđ‰āļ—āļĩāđˆāļ­āļąāļžāđ€āļ”āļ—āļ—āļąāļ™āļŠāļ–āļēāļ™āļāļēāļĢāļ“āđŒ
āļŠāđˆāļ‡āļœāļĨāļ”āļĩāļ­āļĒāđˆāļēāļ‡āļĄāļēāļāļ•āđˆāļ­āļāļēāļĢāļ—āļģāļ„āļ­āļ™āđ€āļ—āļ™āļ•āđŒāļĄāļēāļĢāđŒāđ€āļāđ‡āļ•āļ•āļīāđ‰āļ‡
āđāļĨāļ°āļĒāļąāļ‡āļŠāļĢāđ‰āļēāļ‡āļĢāļēāļĒāđ„āļ”āđ‰āđāļšāļšāļ—āļąāļ™āļ—āļĩāļœāđˆāļēāļ™āļāļēāļĢāļŠāļ™āļąāļšāļŠāļ™āļļāļ™āļˆāļēāļāļœāļđāđ‰āļŠāļĄāđ„āļ”āđ‰āļ­āļĩāļāļ”āđ‰āļ§āļĒ

āļŠāļąāļĄāļœāļąāļŠāļ„āļ§āļēāļĄāļ•āļ·āđˆāļ™āđ€āļ•āđ‰āļ™āđāļšāļšāđ€āļĢāļĩāļĒāļĨāđ„āļ—āļĄāđŒ

āļāļēāļĢāļĢāļąāļšāļŠāļĄāļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļŠāļ”āđ€āļ›āļĢāļĩāļĒāļšāđ€āļŠāļĄāļ·āļ­āļ™āļāļēāļĢāđ€āļ›āļīāļ”āļŦāļ™āđ‰āļēāļ•āđˆāļēāļ‡āļŠāļđāđˆāđ‚āļĨāļāļāļ§āđ‰āļēāļ‡āđƒāļ™āđ€āļ§āļĨāļēāļˆāļĢāļīāļ‡ āļ—āļģāđƒāļŦāđ‰āđ€āļĢāļēāđ„āļ”āđ‰āļŠāļąāļĄāļœāļąāļŠāļāļąāļšāļ„āļ§āļēāļĄāļ•āļ·āđˆāļ™āđ€āļ•āđ‰āļ™āļ‚āļ­āļ‡āđ€āļŦāļ•āļļāļāļēāļĢāļ“āđŒāļŠāļģāļ„āļąāļ āđ„āļĄāđˆāļ§āđˆāļēāļˆāļ°āđ€āļ›āđ‡āļ™āļ„āļ­āļ™āđ€āļŠāļīāļĢāđŒāļ• āļāļēāļĢāđāļ‚āđˆāļ‡āļ‚āļąāļ™āļāļĩāļŽāļē āļŦāļĢāļ·āļ­āļāļēāļĢāđ€āļ›āļīāļ”āļ•āļąāļ§āļŠāļīāļ™āļ„āđ‰āļēāđƒāļŦāļĄāđˆ āđ‚āļ”āļĒāđ„āļĄāđˆāļ•āđ‰āļ­āļ‡āđ€āļ”āļīāļ™āļ—āļēāļ‡āļ­āļ­āļāļˆāļēāļāļšāđ‰āļēāļ™ āļ›āļĢāļ°āđ‚āļĒāļŠāļ™āđŒāļŦāļĨāļąāļāļ„āļ·āļ­āļāļēāļĢāļĄāļĩāļŠāđˆāļ§āļ™āļĢāđˆāļ§āļĄāđāļšāļšāļ—āļąāļ™āļ—āļĩ āļ”āļđāļšāļ­āļĨāļŠāļ”7m āļ‹āļķāđˆāļ‡āļŠāļĢāđ‰āļēāļ‡āļ„āļ§āļēāļĄāļĢāļđāđ‰āļŠāļķāļāđ€āļ›āđ‡āļ™āļŠāļļāļĄāļŠāļ™āđāļĨāļ°āļ„āļ§āļēāļĄāđƒāļāļĨāđ‰āļŠāļīāļ”āļ—āļĩāđˆāļāļēāļĢāļšāļąāļ™āļ—āļķāļāļ§āļĩāļ”āļĩāđ‚āļ­āļ—āļąāđˆāļ§āđ„āļ›āļ—āļģāđ„āļ”āđ‰āļĒāļēāļ āļāļēāļĢāļĢāļąāļšāļŠāļĄāļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļŠāļ”āļĒāļąāļ‡āļŠāđˆāļ§āļĒāđ€āļžāļīāđˆāļĄāļāļēāļĢāļĄāļĩāļŠāđˆāļ§āļ™āļĢāđˆāļ§āļĄāļāļąāļšāđāļšāļĢāļ™āļ”āđŒ āļ­āļĒāđˆāļēāļ‡āļĄāļĩāļ™āļąāļĒāļŠāļģāļ„āļąāļ

āļĄāļąāļ™āļ„āļ·āļ­āļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļĢāđˆāļ§āļĄāļ—āļĩāđˆāđ€āļŠāļ·āđˆāļ­āļĄāđ‚āļĒāļ‡āļœāļđāđ‰āļ„āļ™āļˆāļēāļāļ•āđˆāļēāļ‡āļŠāļ–āļēāļ™āļ—āļĩāđˆāđƒāļŦāđ‰āļĢāļđāđ‰āļŠāļķāļāđ€āļ›āđ‡āļ™āļŦāļ™āļķāđˆāļ‡āđ€āļ”āļĩāļĒāļ§āđƒāļ™āļ§āļīāļ™āļēāļ—āļĩāđ€āļ”āļĩāļĒāļ§āļāļąāļ™

āļ™āļ­āļāļˆāļēāļāļ™āļĩāđ‰ āļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļŠāļ”āļĒāļąāļ‡āđƒāļŦāđ‰āļ‚āđ‰āļ­āļĄāļđāļĨāļ—āļĩāđˆāļ—āļąāļ™āļŠāļĄāļąāļĒāđāļĨāļ°āļ™āđˆāļēāđ€āļŠāļ·āđˆāļ­āļ–āļ·āļ­ āļŠāđˆāļ§āļĒāđƒāļ™āļāļēāļĢāļ•āļąāļ”āļŠāļīāļ™āđƒāļˆāļŦāļĢāļ·āļ­āļ­āļąāļ›āđ€āļ”āļ•āļ„āļ§āļēāļĄāļĢāļđāđ‰āđ„āļ”āđ‰āļ­āļĒāđˆāļēāļ‡āļĢāļ§āļ”āđ€āļĢāđ‡āļ§

āļ•āļīāļ”āļ•āļēāļĄāļŠāļ–āļīāļ•āļīāđāļĨāļ°āļ‚āđ‰āļ­āļĄāļđāļĨāļāļēāļĢāđāļ‚āđˆāļ‡āļ‚āļąāļ™āļ‰āļąāļšāđ„āļ§

āļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļŠāļ”āļŠāļĢāđ‰āļēāļ‡āļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļĢāđˆāļ§āļĄāđāļšāļšāđ€āļĢāļĩāļĒāļĨāđ„āļ—āļĄāđŒ āļ—āļĩāđˆāđ€āļŠāļ·āđˆāļ­āļĄāđ‚āļĒāļ‡āļœāļđāđ‰āļŠāļĄāđ€āļ‚āđ‰āļēāļāļąāļšāđ€āļŦāļ•āļļāļāļēāļĢāļ“āđŒāļ•āļĢāļ‡āļŦāļ™āđ‰āļēāđ„āļ”āđ‰āļ—āļąāļ™āļ—āļĩ āļ›āļĢāļ°āđ‚āļĒāļŠāļ™āđŒāļŦāļĨāļąāļāļ„āļ·āļ­āļāļēāļĢāđ„āļ”āđ‰āļĢāļąāļšāļ‚āđ‰āļ­āļĄāļđāļĨāļ—āļĩāđˆāļŠāļ”āđƒāļŦāļĄāđˆāđāļĨāļ°āļ™āđˆāļēāđ€āļŠāļ·āđˆāļ­āļ–āļ·āļ­āļ—āļĩāđˆāļŠāļļāļ” āđ„āļĄāđˆāļĄāļĩāļāļēāļĢāļ•āļąāļ”āļ•āđˆāļ­āļŦāļĢāļ·āļ­āļ”āļąāļ”āđāļ›āļĨāļ‡ āļ—āļģāđƒāļŦāđ‰āļœāļđāđ‰āļŠāļĄāļĢāļđāđ‰āļŠāļķāļāđ€āļŦāļĄāļ·āļ­āļ™āđ€āļ›āđ‡āļ™āļŠāđˆāļ§āļ™āļŦāļ™āļķāđˆāļ‡āļ‚āļ­āļ‡āļŠāļ–āļēāļ™āļāļēāļĢāļ“āđŒāļ™āļąāđ‰āļ™āđ† āļ—āļąāđ‰āļ‡āļĒāļąāļ‡āđ€āļ›āļīāļ”āđ‚āļ­āļāļēāļŠāđƒāļŦāđ‰āļĄāļĩāļ›āļŽāļīāļŠāļąāļĄāļžāļąāļ™āļ˜āđŒ āļ–āļēāļĄāļ•āļ­āļš āļŦāļĢāļ·āļ­āļĄāļĩāļŠāđˆāļ§āļ™āļĢāđˆāļ§āļĄāļœāđˆāļēāļ™āļāļēāļĢāđāļŠāļ”āļ‡āļ„āļ§āļēāļĄāļ„āļīāļ”āđ€āļŦāđ‡āļ™āđ„āļ”āđ‰āđ‚āļ”āļĒāļ•āļĢāļ‡ āļ‹āļķāđˆāļ‡āđ€āļžāļīāđˆāļĄāļ„āļ§āļēāļĄāļ•āļ·āđˆāļ™āđ€āļ•āđ‰āļ™āđāļĨāļ°āļ„āļ§āļēāļĄāļ™āđˆāļēāļŠāļ™āđƒāļˆāđƒāļŦāđ‰āļĄāļēāļāļāļ§āđˆāļēāļāļēāļĢāļĢāļąāļšāļŠāļĄāđ€āļ™āļ·āđ‰āļ­āļŦāļēāļ—āļĩāđˆāļšāļąāļ™āļ—āļķāļāđ„āļ§āđ‰

āļ™āļĩāđˆāļ„āļ·āļ­āļˆāļļāļ”āđ€āļ›āļĨāļĩāđˆāļĒāļ™āļŠāļģāļ„āļąāļāļ‚āļ­āļ‡āļāļēāļĢāļšāļĢāļīāđ‚āļ āļ„āđ€āļ™āļ·āđ‰āļ­āļŦāļēāđƒāļ™āļĒāļļāļ„āļ”āļīāļˆāļīāļ—āļąāļĨ āļ—āļĩāđˆāđƒāļŦāđ‰āļ„āļ§āļēāļĄāļĢāļđāđ‰āļŠāļķāļāļŠāļĄāļˆāļĢāļīāļ‡āđāļĨāļ°āļ”āļķāļ‡āļ”āļđāļ”āļ­āļēāļĢāļĄāļ“āđŒāļĢāđˆāļ§āļĄāđ„āļ”āđ‰āļ­āļĒāđˆāļēāļ‡āđ€āļ•āđ‡āļĄāļ—āļĩāđˆ

āļšāļ­āļĨāļŠāļ”

āļ™āļ­āļāļˆāļēāļāļ™āļĩāđ‰ āļ›āļĢāļ°āļŠāļīāļ—āļ˜āļīāļ āļēāļžāļ‚āļ­āļ‡āļāļēāļĢāļŠāļ·āđˆāļ­āļŠāļēāļĢāļ™āļĩāđ‰āļĒāļąāļ‡āļŠāđˆāļ§āļĒāđƒāļ™āļ”āđ‰āļēāļ™āļāļēāļĢāđ€āļĢāļĩāļĒāļ™āļĢāļđāđ‰āđāļĨāļ°āļāļēāļĢāļ•āļīāļ”āļ•āļēāļĄāļ‚āđˆāļēāļ§āļŠāļēāļĢāļ­āļĒāđˆāļēāļ‡āļ—āļąāļ™āļ—āđˆāļ§āļ‡āļ—āļĩ

āļšāļ­āļĨāļŠāļ”

āđ€āļŠāļ·āđˆāļ­āļĄāļ•āđˆāļ­āļāļąāļšāļŠāļļāļĄāļŠāļ™āđāļŸāļ™āļšāļ­āļĨāļ­āļ­āļ™āđ„āļĨāļ™āđŒ

āļāļēāļĢāļĢāļąāļšāļŠāļĄāļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļŠāļ”āđƒāļŦāđ‰āļ›āļĢāļ°āđ‚āļĒāļŠāļ™āđŒāļŦāļĨāļąāļāļ„āļ·āļ­āļāļēāļĢāđ„āļ”āđ‰āļŠāļąāļĄāļœāļąāļŠāļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļĢāđˆāļ§āļĄāđāļšāļšāđ€āļĢāļĩāļĒāļĨāđ„āļ—āļĄāđŒ āđ€āļŦāļĄāļ·āļ­āļ™āļ­āļĒāļđāđˆāđ€āļŦāļ•āļļāļāļēāļĢāļ“āđŒāļ™āļąāđ‰āļ™āļˆāļĢāļīāļ‡āđ† āđ„āļĄāđˆāļ§āđˆāļēāļˆāļ°āđ€āļ›āđ‡āļ™āļ„āļ­āļ™āđ€āļŠāļīāļĢāđŒāļ• āļāļēāļĢāđāļ‚āđˆāļ‡āļ‚āļąāļ™āļāļĩāļŽāļē āļŦāļĢāļ·āļ­āđ€āļ§āļīāļĢāđŒāļāļŠāđ‡āļ­āļ›āļ­āļ­āļ™āđ„āļĨāļ™āđŒ āļ„āļļāļ“āļˆāļ°āđ„āļ”āđ‰āļĢāļąāļšāļ‚āđ‰āļ­āļĄāļđāļĨāļ—āļĩāđˆāļ—āļąāļ™āļ—āļĩāđāļĨāļ°āļ•āļĢāļ‡āļ•āļēāļĄāļŠāđˆāļ§āļ‡āđ€āļ§āļĨāļēāļ—āļĩāđˆāļāļģāļŦāļ™āļ” āļāļēāļĢāļĄāļĩāļŠāđˆāļ§āļ™āļĢāđˆāļ§āļĄāđāļšāļšāļ—āļąāļ™āļ—āļĩ āļœāđˆāļēāļ™āļāļēāļĢāļ„āļ­āļĄāđ€āļĄāļ™āļ•āđŒāļŦāļĢāļ·āļ­āđ‚āļŦāļ§āļ•āļāđ‡āđ€āļžāļīāđˆāļĄāļ­āļĢāļĢāļ–āļĢāļŠāđƒāļŦāđ‰āļĄāļēāļāļ‚āļķāđ‰āļ™ āļ™āļ­āļāļˆāļēāļāļ™āļĩāđ‰āļĒāļąāļ‡āđ€āļ›āđ‡āļ™āļŠāđˆāļ­āļ‡āļ—āļēāļ‡āļ—āļĩāđˆāļŠāļ°āļ”āļ§āļāđ€āļ‚āđ‰āļēāļ–āļķāļ‡āđ„āļ”āđ‰āļˆāļēāļāļ—āļļāļāļ—āļĩāđˆ āļŠāđˆāļ§āļĒāđƒāļŦāđ‰āļ„āļļāļ“āđ„āļĄāđˆāļžāļĨāļēāļ”āļŠāđˆāļ§āļ‡āļŠāļģāļ„āļąāļāđ† āļ­āļąāļ™āđ€āļ›āđ‡āļ™ āđ€āļ™āļ·āđ‰āļ­āļŦāļēāļšāļ™āđ„āļĨāļŸāđŒāļŠāļ”āļ—āļĩāđˆāļ™āđˆāļēāļ”āļķāļ‡āļ”āļđāļ” āļŠāļģāļŦāļĢāļąāļšāļœāļđāđ‰āļŠāļĄāļˆāļģāļ™āļ§āļ™āļĄāļēāļ

āđāļŦāļĨāđˆāļ‡āļŠāļĄāļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļ™āļąāļ”āļŠāļģāļ„āļąāļ

āđāļŦāļĨāđˆāļ‡āļŠāļĄāļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļ™āļąāļ”āļŠāļģāļ„āļąāļāđƒāļ™āļ›āļąāļˆāļˆāļļāļšāļąāļ™āļĄāļĩāļ„āļ§āļēāļĄāļŦāļĨāļēāļāļŦāļĨāļēāļĒāđāļĨāļ°āđ€āļ‚āđ‰āļēāļ–āļķāļ‡āđ„āļ”āđ‰āļ‡āđˆāļēāļĒ āļ—āļąāđ‰āļ‡āļœāđˆāļēāļ™āđāļžāļĨāļ•āļŸāļ­āļĢāđŒāļĄāļŠāļ•āļĢāļĩāļĄāļĄāļīāļ‡āļ­āļ­āļ™āđ„āļĨāļ™āđŒ āļŠāļ–āļēāļ™āļĩāđ‚āļ—āļĢāļ—āļąāļĻāļ™āđŒāļ”āļēāļ§āđ€āļ—āļĩāļĒāļĄ āļŦāļĢāļ·āļ­āđāļĄāđ‰āđāļ•āđˆāļĻāļđāļ™āļĒāđŒāļĢāļ§āļĄāđāļŸāļ™āļžāļąāļ™āļ˜āļļāđŒāđāļ—āđ‰āđƒāļ™āļŦāđ‰āļēāļ‡āļŠāļĢāļĢāļžāļŠāļīāļ™āļ„āđ‰āļē āļāļēāļĢāđ€āļĨāļ·āļ­āļāļŠāļĄāđƒāļ™āļŠāļ–āļēāļ™āļ—āļĩāđˆāļ—āļĩāđˆāļĄāļĩāļšāļĢāļĢāļĒāļēāļāļēāļĻāļ„āļķāļāļ„āļąāļāļˆāļ°āđ€āļžāļīāđˆāļĄāļ­āļĢāļĢāļ–āļĢāļŠāđāļĨāļ°āļ„āļ§āļēāļĄāļ•āļ·āđˆāļ™āđ€āļ•āđ‰āļ™āđƒāļŦāđ‰āļĄāļēāļāļĒāļīāđˆāļ‡āļ‚āļķāđ‰āļ™ āļāļēāļĢāļ•āļīāļ”āļ•āļēāļĄāļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļŠāļ”āļŸāļļāļ•āļšāļ­āļĨ āļ„āļ§āļĢāļ„āļģāļ™āļķāļ‡āļ–āļķāļ‡āļ„āļļāļ“āļ āļēāļžāļŠāļąāļāļāļēāļ“āđāļĨāļ°āļ„āļ§āļēāļĄāļ„āļĄāļŠāļąāļ”āļ‚āļ­āļ‡āļ āļēāļž āđ€āļžāļ·āđˆāļ­āļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļāļēāļĢāļĢāļąāļšāļŠāļĄāļ—āļĩāđˆāļ”āļ·āđˆāļĄāļ”āđˆāļģāđāļĨāļ°āļŠāļĄāļˆāļĢāļīāļ‡āļ—āļĩāđˆāļŠāļļāļ” āļāļēāļĢāđ€āļĨāļ·āļ­āļāļŠāđˆāļ­āļ‡āļ—āļēāļ‡āļāļēāļĢāļĢāļąāļšāļŠāļĄāļ—āļĩāđˆāđ€āļŦāļĄāļēāļ°āļŠāļĄ āļˆāļķāļ‡āđ€āļ›āđ‡āļ™āļāļļāļāđāļˆāļŠāļģāļ„āļąāļāļ—āļĩāđˆāļˆāļ°āļ—āļģāđƒāļŦāđ‰āļ„āļļāļ“āđ„āļĄāđˆāļžāļĨāļēāļ”āļ—āļļāļāļŠāđˆāļ§āļ‡āđ€āļ§āļĨāļēāļ›āļĢāļ°āļ§āļąāļ•āļīāļĻāļēāļŠāļ•āļĢāđŒāļ‚āļ­āļ‡āđ€āļāļĄāļāļēāļĢāđāļ‚āđˆāļ‡āļ‚āļąāļ™

āđāļžāļĨāļ•āļŸāļ­āļĢāđŒāļĄāļŠāļ•āļĢāļĩāļĄāļĄāļīāđˆāļ‡āđāļšāļšāđ€āļŠāļĩāļĒāļ„āđˆāļēāļšāļĢāļīāļāļēāļĢ

āļŠāļģāļŦāļĢāļąāļšāđāļŸāļ™āļšāļ­āļĨāļ—āļĩāđˆāļ•āđ‰āļ­āļ‡āļāļēāļĢāļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļāļēāļĢāļĢāļąāļšāļŠāļĄāļŸāļļāļ•āļšāļ­āļĨāļ—āļĩāđˆāļŠāļĄāļšāļđāļĢāļ“āđŒāđāļšāļš āļāļēāļĢāđ€āļĨāļ·āļ­āļāđāļŦāļĨāđˆāļ‡āļŠāļĄāļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļ™āļąāļ”āļŠāļģāļ„āļąāļāđ€āļ›āđ‡āļ™āļŠāļīāđˆāļ‡āļˆāļģāđ€āļ›āđ‡āļ™ āļ„āļ§āļĢāļžāļīāļˆāļēāļĢāļ“āļēāļŠāļ–āļēāļ™āļ—āļĩāđˆāļ—āļĩāđˆāļĄāļĩāļˆāļ­āļ āļēāļžāļ„āļĄāļŠāļąāļ”āļ‚āļ™āļēāļ”āđƒāļŦāļāđˆ āļĢāļ°āļšāļšāđ€āļŠāļĩāļĒāļ‡āļĢāļ­āļšāļ—āļīāļĻāļ—āļēāļ‡āļŠāļļāļ” immersive āļžāļĢāđ‰āļ­āļĄāļšāļĢāļĢāļĒāļēāļāļēāļĻāļ„āļķāļāļ„āļąāļāļˆāļēāļāđāļŸāļ™āđ† āļĢāđˆāļ§āļĄāđ€āļŠāļĩāļĒāļĢāđŒ āļŠāļīāđˆāļ‡āļ­āļģāļ™āļ§āļĒāļ„āļ§āļēāļĄāļŠāļ°āļ”āļ§āļāļ„āļĢāļšāļ„āļĢāļąāļ™ āđāļĨāļ°āđ€āļĄāļ™āļđāļ­āļēāļŦāļēāļĢāđ€āļ„āļĢāļ·āđˆāļ­āļ‡āļ”āļ·āđˆāļĄāļ—āļĩāđˆāļˆāļąāļ”āđ€āļ•āđ‡āļĄ āļāļēāļĢāļĨāļ‡āļ—āļļāļ™āļāļąāļšāļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļĢāļ°āļ”āļąāļšāļžāļĢāļĩāđ€āļĄāļĩāļĒāļĄāđ€āļŠāđˆāļ™āļ™āļĩāđ‰āļˆāļ°āļ—āļģāđƒāļŦāđ‰āļ„āļļāļ“āļ”āļ·āđˆāļĄāļ”āđˆāļģāļāļąāļšāļ—āļļāļāļŠāđˆāļ§āļ‡āđ€āļ§āļĨāļēāļŠāļģāļ„āļąāļāļ‚āļ­āļ‡āđ€āļāļĄāđ„āļ”āđ‰āļ­āļĒāđˆāļēāļ‡āđāļ—āđ‰āļˆāļĢāļīāļ‡

āļŠāđˆāļ­āļ‡āļ—āļēāļ‡āđ‚āļ—āļĢāļ—āļąāļĻāļ™āđŒāļĢāļ°āļšāļšāļšāļ­āļāļĢāļąāļšāļŠāļĄāļēāļŠāļīāļ

āļŠāļģāļŦāļĢāļąāļšāđāļŸāļ™āļšāļ­āļĨāļ—āļĩāđˆāļ•āđ‰āļ­āļ‡āļāļēāļĢāļŠāļąāļĄāļœāļąāļŠāļšāļĢāļĢāļĒāļēāļāļēāļĻāļāļēāļĢāđāļ‚āđˆāļ‡āļ‚āļąāļ™āđāļšāļšāļˆāļąāļ”āđ€āļ•āđ‡āļĄ āļ™āļ­āļāđ€āļŦāļ™āļ·āļ­āļˆāļēāļāļāļēāļĢāđ€āļ‚āđ‰āļēāļŠāļĄāđƒāļ™āļŠāļ™āļēāļĄāđāļĨāđ‰āļ§ **āđāļŦāļĨāđˆāļ‡āļŠāļĄāļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļ™āļąāļ”āļŠāļģāļ„āļąāļ** āļ•āļēāļĄāļĢāđ‰āļēāļ™āļ­āļēāļŦāļēāļĢāļŦāļĢāļ·āļ­āļœāļąāļšāļŠāđ„āļ•āļĨāđŒāļŠāļ›āļ­āļĢāđŒāļ•āļšāļēāļĢāđŒāļ—āļąāđˆāļ§āļāļĢāļļāļ‡āļāđ‡āđ€āļ›āđ‡āļ™āļ•āļąāļ§āđ€āļĨāļ·āļ­āļāļĒāļ­āļ”āļ™āļīāļĒāļĄ āļ—āļĩāđˆāļ™āļąāđˆāļ™āļ„āļļāļ“āļˆāļ°āđ„āļ”āđ‰āļĨāđ‰āļ­āļĄāļ§āļ‡āđ€āļŠāļĩāļĒāļĢāđŒāđ„āļ›āļāļąāļšāđ€āļžāļ·āđˆāļ­āļ™āđƒāļŦāļĄāđˆāđ€āļŠāļĩāļĒāļ‡āļ”āļąāļ‡āļāļķāļāļāđ‰āļ­āļ‡ āļžāļĢāđ‰āļ­āļĄāļˆāļ­āđƒāļŦāļāđˆāđāļĨāļ°āđ€āļŠāļĩāļĒāļ‡āļ›āļĢāļ°āļāļ­āļšāļ—āļĩāđˆāļ”āļķāļ‡āļ„āļļāļ“āđƒāļŦāđ‰āļŦāļĨāļļāļ”āđ€āļ‚āđ‰āļēāđ„āļ›āđƒāļ™āđ€āļāļĄāļĢāļēāļ§āļāļąāļšāļ­āļĒāļđāđˆāļĢāļīāļĄāļ‚āļ­āļšāļŠāļ™āļēāļĄ āļ„āļ§āļēāļĄāļĢāđ‰āļ­āļ™āđāļĢāļ‡āļ‚āļ­āļ‡āļŦāļĄāļđāđˆāļĄāļ§āļĨāļĄāļąāļāļ—āļģāđƒāļŦāđ‰āļœāļĨāļ›āļĢāļ°āļ•āļđāļ—āļĩāđˆāļĄāļĩāļ„āđˆāļēāļ”āļđāļ•āļ·āđˆāļ™āđ€āļ•āđ‰āļ™āļĒāļīāđˆāļ‡āļ‚āļķāđ‰āļ™āđ€āļ›āđ‡āļ™āđ€āļ—āđˆāļēāļ•āļąāļ§ āļāļēāļĢāļ„āđ‰āļ™āļŦāļē āļŠāļ–āļēāļ™āļ—āļĩāđˆāļ”āļđāļšāļ­āļĨāļŠāļ”āļ—āļĩāđˆāļŠāļļāļ” āļˆāļķāļ‡āđ€āļ›āđ‡āļ™āđ€āļĢāļ·āđˆāļ­āļ‡āđāļĢāļāļ—āļĩāđˆāđāļŸāļ™āļšāļ­āļĨāļ•āļąāļ§āļˆāļĢāļīāļ‡āļ•āđ‰āļ­āļ‡āļ„āļīāļ”āļ–āļķāļ‡āļāđˆāļ­āļ™āļ™āļąāļ”āđƒāļŦāļāđˆ

āļāļēāļĢāđ€āļ‚āđ‰āļēāļ–āļķāļ‡āļœāđˆāļēāļ™āđ€āļ§āđ‡āļšāđ„āļ‹āļ•āđŒāđāļĨāļ°āđāļ­āļ›āļžāļĨāļīāđ€āļ„āļŠāļąāļ™

āļŠāļģāļŦāļĢāļąāļšāđāļŸāļ™āļšāļ­āļĨāļ—āļĩāđˆāļ•āđ‰āļ­āļ‡āļāļēāļĢāļŠāļąāļĄāļœāļąāļŠāļšāļĢāļĢāļĒāļēāļāļēāļĻāļāļēāļĢāđāļ‚āđˆāļ‡āļ‚āļąāļ™āđāļšāļšāļˆāļąāļ”āđ€āļ•āđ‡āļĄ **āđāļŦāļĨāđˆāļ‡āļŠāļĄāļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļ™āļąāļ”āļŠāļģāļ„āļąāļ** āđƒāļ™āđ€āļĄāļ·āļ­āļ‡āđ„āļ—āļĒāļĄāļĩāđƒāļŦāđ‰āđ€āļĨāļ·āļ­āļāļŦāļĨāļēāļāļŦāļĨāļēāļĒ āļŠāļ§āļ™āļĨāļļāļĄāđ„āļ™āļ—āđŒāļšāļēāļ‹āļēāļĢāđŒ āļŦāļĢāļ·āļ­āļĒāđˆāļēāļ™ RCA āđ€āļ•āđ‡āļĄāđ„āļ›āļ”āđ‰āļ§āļĒāļĢāđ‰āļēāļ™āļ­āļēāļŦāļēāļĢāđāļĨāļ°āļšāļēāļĢāđŒāļ—āļĩāđˆāļ•āļīāļ”āļˆāļ­āļĒāļąāļāļĐāđŒāļžāļĢāđ‰āļ­āļĄāđ€āļŠāļĩāļĒāļ‡āđ€āļŠāļĩāļĒāļĢāđŒāļāļķāļāļāđ‰āļ­āļ‡ āđ€āļŠāļĩāļĒāļ‡āđ‚āļŦāđˆāļĢāđ‰āļ­āļ‡āđāļĨāļ°āļŠāļĩāļŦāļ™āđ‰āļēāļ•āļ·āđˆāļ™āđ€āļ•āđ‰āļ™āļ‚āļ­āļ‡āļœāļđāđ‰āļŠāļĄāļ—āļĩāđˆāļ™āļĩāđˆāļ—āļģāđƒāļŦāđ‰āļ„āļļāļ“āļĢāļđāđ‰āļŠāļķāļāļĢāļēāļ§āļāļąāļšāļ­āļĒāļđāđˆāđƒāļ™āļŠāļ™āļēāļĄāļˆāļĢāļīāļ‡ āļāļēāļĢāđ„āļ”āđ‰āļĢāđˆāļ§āļĄāđ€āļŠāļĩāļĒāļĢāđŒāļžāļĢāđ‰āļ­āļĄāļœāļđāđ‰āļ„āļ™āļĄāļēāļāļĄāļēāļĒāļ„āļ·āļ­āļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļ—āļĩāđˆāļŦāļēāļˆāļēāļāļāļēāļĢāļ™āļąāđˆāļ‡āļ”āļđāļ—āļĩāđˆāļšāđ‰āļēāļ™āđ„āļĄāđˆāđ„āļ”āđ‰

āđ€āļ„āļĨāđ‡āļ”āļĨāļąāļšāđ€āļĨāļ·āļ­āļāļŠāđˆāļ­āļ‡āļ—āļēāļ‡āļ”āļđāļ—āļĩāđˆāđ€āļŦāļĄāļēāļ°āļŠāļĄ

āļāļēāļĢāđ€āļĨāļ·āļ­āļāļŠāđˆāļ­āļ‡āļ—āļēāļ‡āļ”āļđāļ—āļĩāđˆāđ€āļŦāļĄāļēāļ°āļŠāļĄāđ€āļĢāļīāđˆāļĄāļˆāļēāļāļ§āļīāđ€āļ„āļĢāļēāļ°āļŦāđŒāļ„āļ§āļēāļĄāļ•āđ‰āļ­āļ‡āļāļēāļĢāļ‚āļ­āļ‡āļ„āļļāļ“āđ€āļ­āļ‡ āļŦāļēāļāļ•āđ‰āļ­āļ‡āļāļēāļĢāļ„āļ§āļēāļĄāļĢāļ§āļ”āđ€āļĢāđ‡āļ§āđāļĨāļ°āļŠāļ°āļ”āļ§āļ āļšāļĢāļīāļāļēāļĢāļŠāļ•āļĢāļĩāļĄāļĄāļīāļ‡ āđ€āļ›āđ‡āļ™āļ•āļąāļ§āđ€āļĨāļ·āļ­āļāļŦāļĨāļąāļ āđāļ•āđˆāļ•āđ‰āļ­āļ‡āļžāļīāļˆāļēāļĢāļ“āļēāļĢāļēāļ„āļēāđāļĨāļ°āđ€āļ™āļ·āđ‰āļ­āļŦāļēāļ—āļĩāđˆāļĄāļĩāđƒāļŦāđ‰āđ€āļ‰āļžāļēāļ°āļŠāđˆāļ­āļ‡āļ™āļąāđ‰āļ™ āļŠāļģāļŦāļĢāļąāļšāļœāļđāđ‰āļŠāļĄāļ—āļĩāđˆāļ•āđ‰āļ­āļ‡āļāļēāļĢāļ„āļ§āļēāļĄāđ€āļ›āđ‡āļ™āđ€āļˆāđ‰āļēāļ‚āļ­āļ‡āđāļĨāļ°āļ„āļļāļ“āļ āļēāļžāļ āļēāļžāđ€āļŠāļĩāļĒāļ‡āļŠāļđāļ‡ āļāļēāļĢāļ‹āļ·āđ‰āļ­āļŦāļĢāļ·āļ­āđ€āļŠāđˆāļēāļ”āļīāļˆāļīāļ—āļąāļĨāļˆāļēāļāđāļžāļĨāļ•āļŸāļ­āļĢāđŒāļĄāļ—āļĩāđˆāļ™āđˆāļēāđ€āļŠāļ·āđˆāļ­āļ–āļ·āļ­āļāđ‡āļ„āļļāđ‰āļĄāļ„āđˆāļē āļ­āļĒāđˆāļēāļĨāļ·āļĄāļ•āļĢāļ§āļˆāļŠāļ­āļšāļ„āļ§āļēāļĄāļ–āļđāļāļ•āđ‰āļ­āļ‡āļ‚āļ­āļ‡āļŠāđˆāļ­āļ‡āļ—āļēāļ‡āđ€āļžāļ·āđˆāļ­āļŠāļ™āļąāļšāļŠāļ™āļļāļ™āļāļēāļĢāļŠāļĢāđ‰āļēāļ‡āļŠāļĢāļĢāļ„āđŒāļœāļĨāļ‡āļēāļ™āļ­āļĒāđˆāļēāļ‡āļ–āļđāļāļāļŽāļŦāļĄāļēāļĒ āļ‹āļķāđˆāļ‡āļˆāļ°āļŠāđˆāļ§āļĒāļĢāļąāļāļĐāļēāļ­āļļāļ•āļŠāļēāļŦāļāļĢāļĢāļĄāļ āļēāļžāļĒāļ™āļ•āļĢāđŒāđƒāļŦāđ‰āļĒāļąāđˆāļ‡āļĒāļ·āļ™āđāļĨāļ°āđ„āļ”āđ‰āļŠāļĄāđ€āļ™āļ·āđ‰āļ­āļŦāļēāļ—āļĩāđˆāļĄāļĩāļ„āļļāļ“āļ āļēāļžāļāļēāļĢāļœāļĨāļīāļ•āļ”āļĩāļ—āļĩāđˆāļŠāļļāļ”

āļžāļīāļˆāļēāļĢāļ“āļēāļ„āļ§āļēāļĄāļ„āļĄāļŠāļąāļ”āđāļĨāļ°āļ„āļ§āļēāļĄāđ€āļŠāļ–āļĩāļĒāļĢāļ‚āļ­āļ‡āļŠāļąāļāļāļēāļ“

āļāļēāļĢāđ€āļĨāļ·āļ­āļāļŠāđˆāļ­āļ‡āļ—āļēāļ‡āļ”āļđāļ—āļĩāđˆāđ€āļŦāļĄāļēāļ°āļŠāļĄāđ€āļĢāļīāđˆāļĄāļˆāļēāļāļ–āļēāļĄāļ•āļąāļ§āđ€āļ­āļ‡āļ§āđˆāļēāļŠāļ­āļšāļ”āļđāļ­āļ°āđ„āļĢāđāļĨāļ°āļ”āļđāļ­āļĒāđˆāļēāļ‡āđ„āļĢ āļāļēāļĢāļ§āļīāđ€āļ„āļĢāļēāļ°āļŦāđŒāļ„āļ§āļēāļĄāļ•āđ‰āļ­āļ‡āļāļēāļĢāļ‚āļ­āļ‡āļœāļđāđ‰āļšāļĢāļīāđ‚āļ āļ„ āđ€āļ›āđ‡āļ™āļāļļāļāđāļˆāļŠāļģāļ„āļąāļ āđ€āļŠāđˆāļ™ āļŠāļ­āļšāļ”āļđāļ•āđˆāļ­āđ€āļ™āļ·āđˆāļ­āļ‡āļŦāļĢāļ·āļ­āđāļ„āđˆāļžāļąāļāļœāđˆāļ­āļ™āļŠāļąāđ‰āļ™āđ† āļĨāļ­āļ‡āļŠāļģāļĢāļ§āļˆāļŸāļĩāđ€āļˆāļ­āļĢāđŒāļ‚āļ­āļ‡āđāļ•āđˆāļĨāļ°āđāļžāļĨāļ•āļŸāļ­āļĢāđŒāļĄ āļĢāļēāļ„āļē āđāļĨāļ°āđ€āļ™āļ·āđ‰āļ­āļŦāļēāļ—āļĩāđˆāļĄāļĩāđ€āļ‰āļžāļēāļ°āđ€āļˆāļēāļ°āļˆāļ‡

āļšāļ­āļĨāļŠāļ”

āļ­āļĒāđˆāļēāļĨāļ·āļĄāļ—āļ”āļĨāļ­āļ‡āđƒāļŠāđ‰āļŠāđˆāļ§āļ‡āļ—āļ”āļĨāļ­āļ‡āļŸāļĢāļĩāđ€āļžāļ·āđˆāļ­āđ€āļŠāđ‡āļ„āļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļāļēāļĢāđƒāļŠāđ‰āļ‡āļēāļ™āļˆāļĢāļīāļ‡āļāđˆāļ­āļ™āļ•āļąāļ”āļŠāļīāļ™āđƒāļˆāļŠāļĄāļąāļ„āļĢāļŠāļĄāļēāļŠāļīāļ

āļāļēāļĢāđ€āļĨāļ·āļ­āļāļŠāđˆāļ­āļ‡āļ—āļēāļ‡āļ—āļĩāđˆāļ•āļĢāļ‡āđ„āļĨāļŸāđŒāļŠāđ„āļ•āļĨāđŒāļˆāļ°āļ—āļģāđƒāļŦāđ‰āļ„āļļāļ“āđ„āļ”āđ‰āļ„āđˆāļēāļŠāļĄāļąāļ„āļĢāļ—āļĩāđˆāļ„āļļāđ‰āļĄāļ„āđˆāļēāļ—āļĩāđˆāļŠāļļāļ”

āļ•āļĢāļ§āļˆāļŠāļ­āļšāļĨāļīāļ‚āļŠāļīāļ—āļ˜āļīāđŒāļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āđƒāļ™āđāļ•āđˆāļĨāļ°āļĨāļĩāļ

āļāļēāļĢāđ€āļĨāļ·āļ­āļāļŠāđˆāļ­āļ‡āļ—āļēāļ‡āļ”āļđāļ—āļĩāđˆāđ€āļŦāļĄāļēāļ°āļŠāļĄāđ€āļĢāļīāđˆāļĄāļˆāļēāļāļāļēāļĢāļžāļīāļˆāļēāļĢāļ“āļēāļ›āļĢāļ°āđ€āļ āļ—āļ‚āļ­āļ‡āđ€āļ™āļ·āđ‰āļ­āļŦāļēāđāļĨāļ°āļ„āļ§āļēāļĄāļŠāļ­āļšāļŠāđˆāļ§āļ™āļ•āļąāļ§ āļŦāļēāļāļ•āđ‰āļ­āļ‡āļāļēāļĢāļ„āļ§āļēāļĄāļĒāļ·āļ”āļŦāļĒāļļāđˆāļ™āđāļĨāļ°āđ€āļ™āļ·āđ‰āļ­āļŦāļēāļŦāļĨāļēāļāļŦāļĨāļēāļĒ āļšāļĢāļīāļāļēāļĢāļŠāļ•āļĢāļĩāļĄāļĄāļīāđˆāļ‡āļ­āļ­āļ™āļ”āļĩāļĄāļēāļ™āļ”āđŒ āđ€āļ›āđ‡āļ™āļ•āļąāļ§āđ€āļĨāļ·āļ­āļāļ—āļĩāđˆāļ”āļĩ āļ„āļ§āļĢāđ€āļ›āļĢāļĩāļĒāļšāđ€āļ—āļĩāļĒāļšāļĢāļēāļ„āļē āļ„āļĨāļąāļ‡āđ€āļ™āļ·āđ‰āļ­āļŦāļē āđāļĨāļ°āļˆāļģāļ™āļ§āļ™āļ­āļļāļ›āļāļĢāļ“āđŒāļ—āļĩāđˆāļĢāļ­āļ‡āļĢāļąāļšāļāļēāļĢāđƒāļŠāđ‰āļ‡āļēāļ™āļžāļĢāđ‰āļ­āļĄāļāļąāļ™āļˆāļēāļāđāļžāļĨāļ•āļŸāļ­āļĢāđŒāļĄāļ•āđˆāļēāļ‡āđ† āđ€āļŠāđˆāļ™ Netflix, Disney+ Hotstar, āļŦāļĢāļ·āļ­ TrueID TV āđ€āļžāļ·āđˆāļ­āđƒāļŦāđ‰āđ„āļ”āđ‰āļ›āļĢāļ°āđ‚āļĒāļŠāļ™āđŒāļŠāļđāļ‡āļŠāļļāļ”āļ•āļēāļĄāļ‡āļšāļ›āļĢāļ°āļĄāļēāļ“āđāļĨāļ°āđ„āļĨāļŸāđŒāļŠāđ„āļ•āļĨāđŒāļāļēāļĢāļĢāļąāļšāļŠāļĄ

āđ€āļ›āļĢāļĩāļĒāļšāđ€āļ—āļĩāļĒāļšāļ„āđˆāļēāđƒāļŠāđ‰āļˆāđˆāļēāļĒāđāļĨāļ°āđāļžāđ‡āļāđ€āļāļˆ

āļāļēāļĢāđ€āļĨāļ·āļ­āļāļŠāđˆāļ­āļ‡āļ—āļēāļ‡āļ”āļđāļ—āļĩāđˆāđ€āļŦāļĄāļēāļ°āļŠāļĄāđ€āļĢāļīāđˆāļĄāļˆāļēāļ**āļ§āļīāđ€āļ„āļĢāļēāļ°āļŦāđŒāļ„āļ§āļēāļĄāļ•āđ‰āļ­āļ‡āļāļēāļĢāļ‚āļ­āļ‡āļ•āļ™āđ€āļ­āļ‡**āđ€āļ›āđ‡āļ™āļŦāļĨāļąāļ āļŠāļģāļĢāļ§āļˆāļ§āđˆāļēāļ•āđ‰āļ­āļ‡āļāļēāļĢāļ„āļ§āļēāļĄāļŠāļ°āļ”āļ§āļāļŠāļšāļēāļĒ āļ„āļ§āļēāļĄāļ„āļĄāļŠāļąāļ”āļĢāļ°āļ”āļąāļšāđƒāļ” āđāļĨāļ°āļĄāļĩāļ‡āļšāļ›āļĢāļ°āļĄāļēāļ“āđ€āļ—āđˆāļēāđ„āļĢ āļˆāļēāļāļ™āļąāđ‰āļ™āđ€āļ›āļĢāļĩāļĒāļšāđ€āļ—āļĩāļĒāļšāļšāļĢāļīāļāļēāļĢāļŠāļ•āļĢāļĩāļĄāļĄāļīāļ‡āļ•āđˆāļēāļ‡āđ† āļ—āļąāđ‰āļ‡āđƒāļ™āđāļ‡āđˆāđ€āļ™āļ·āđ‰āļ­āļŦāļēāļ„āļ§āļēāļĄāļŦāļĨāļēāļāļŦāļĨāļēāļĒ āļĢāļēāļ„āļē āđāļĨāļ°āļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļāļēāļĢāđƒāļŠāđ‰āļ‡āļēāļ™ āļāļēāļĢāđ€āļ›āđ‡āļ™**āļŠāļĄāļēāļŠāļīāļāļšāļĢāļīāļāļēāļĢāļŠāļ•āļĢāļĩāļĄāļĄāļīāļ‡āļ„āļļāļ“āļ āļēāļžāļŠāļđāļ‡**āļŠāđˆāļ§āļĒāđƒāļŦāđ‰āļ„āļļāļ“āđ€āļ‚āđ‰āļēāļ–āļķāļ‡āļ„āļ§āļēāļĄāļšāļąāļ™āđ€āļ—āļīāļ‡āļ—āļĩāđˆāļ•āļĢāļ‡āđƒāļˆāļ­āļĒāđˆāļēāļ‡āļ„āļļāđ‰āļĄāļ„āđˆāļēāļ—āļĩāđˆāļŠāļļāļ” āļžāļĢāđ‰āļ­āļĄāļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļāļēāļĢāļ”āļđāļ—āļĩāđˆāļĢāļēāļšāļĢāļ·āđˆāļ™āđ„āļĢāđ‰āļ‚āļąāļ”āļ‚āđ‰āļ­āļ‡

āđ€āļžāļīāđˆāļĄāļ­āļĢāļĢāļ–āļĢāļŠāđƒāļ™āļāļēāļĢāļĢāļąāļšāļŠāļĄ

āļāļēāļĢāđ€āļžāļīāđˆāļĄāļ­āļĢāļĢāļ–āļĢāļŠāđƒāļ™āļāļēāļĢāļĢāļąāļšāļŠāļĄāļ„āļ·āļ­āļāļēāļĢāļĒāļāļĢāļ°āļ”āļąāļšāļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļˆāļēāļāđāļ„āđˆāļāļēāļĢāļ”āļđāđƒāļŦāđ‰āđ€āļ›āđ‡āļ™āđ€āļĢāļ·āđˆāļ­āļ‡āļ™āđˆāļēāļ›āļĢāļ°āļ—āļąāļšāđƒāļˆāļŠāļļāļ”āđ† āđ€āļĢāļīāđˆāļĄāļˆāļēāļāđ€āļĨāļ·āļ­āļāļ­āļļāļ›āļāļĢāļ“āđŒāđāļŠāļ”āļ‡āļœāļĨāļ„āļļāļ“āļ āļēāļžāļŠāļđāļ‡āđāļĨāļ°āļĢāļ°āļšāļšāđ€āļŠāļĩāļĒāļ‡āļĢāļ­āļšāļ—āļīāļĻāļ—āļēāļ‡āļ—āļĩāđˆāļŠāļĄāļˆāļĢāļīāļ‡ āļˆāļąāļ”āļšāļĢāļĢāļĒāļēāļāļēāļĻāļŦāđ‰āļ­āļ‡āđƒāļŦāđ‰āđ€āļŦāļĄāļēāļ°āļŠāļĄāļāļąāļšāđ€āļ™āļ·āđ‰āļ­āļŦāļē āđ„āļĄāđˆāļ§āđˆāļēāļˆāļ°āđ€āļ›āđ‡āļ™āļ āļēāļžāļĒāļ™āļ•āļĢāđŒāļ”āļĢāļēāļĄāđˆāļēāļŦāļĢāļ·āļ­āļāļēāļĢāđāļ‚āđˆāļ‡āļ‚āļąāļ™āļāļĩāļŽāļēāđ€āļ­āđ‡āļāļ‹āđŒāļ•āļĢāļĩāļĄ āđāļĨāļ°āļ—āļĩāđˆāļŠāļģāļ„āļąāļāļ„āļ·āļ­āļāļēāļĢāđ€āļĨāļ·āļ­āļāđ€āļ™āļ·āđ‰āļ­āļŦāļēāļ„āļļāļ“āļ āļēāļžāļˆāļēāļāđāļžāļĨāļ•āļŸāļ­āļĢāđŒāļĄāļŠāļ•āļĢāļĩāļĄāļĄāļīāļ‡āļ—āļĩāđˆāļŦāļĨāļēāļāļŦāļĨāļēāļĒ āļāļēāļĢāđ€āļ•āļĢāļĩāļĒāļĄāļžāļĢāđ‰āļ­āļĄāđ€āļŦāļĨāđˆāļēāļ™āļĩāđ‰āļˆāļ°āđ€āļ›āļĨāļĩāđˆāļĒāļ™āļāļēāļĢāļĢāļąāļšāļŠāļĄāđƒāļŦāđ‰āđ€āļ›āđ‡āļ™āļāļīāļˆāļāļĢāļĢāļĄāļ—āļĩāđˆāļ”āļ·āđˆāļĄāļ”āđˆāļģ āļŠāđˆāļ‡āļœāļĨāļ•āđˆāļ­āļ­āļēāļĢāļĄāļ“āđŒāđāļĨāļ°āļ„āļ§āļēāļĄāļžāļķāļ‡āļžāļ­āđƒāļˆāļ‚āļ­āļ‡āļœāļđāđ‰āļŠāļĄāđ„āļ”āđ‰āļ­āļĒāđˆāļēāļ‡āđ€āļ•āđ‡āļĄāļ—āļĩāđˆ

āđƒāļŠāđ‰āļŸāļĩāđ€āļˆāļ­āļĢāđŒāđāļŠāļ”āļ‡āļŠāļ–āļīāļ•āļīāđāļšāļšāļŠāļ”

āļāļēāļĢāđ€āļžāļīāđˆāļĄāļ­āļĢāļĢāļ–āļĢāļŠāđƒāļ™āļāļēāļĢāļĢāļąāļšāļŠāļĄāļ„āļ·āļ­āļāļēāļĢāļŠāļĢāđ‰āļēāļ‡āļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļ—āļĩāđˆāļ”āļ·āđˆāļĄāļ”āđˆāļģ āđ€āļŦāļĄāļ·āļ­āļ™āļāļēāļĢāđ€āļ•āļīāļĄāđ€āļ„āļĢāļ·āđˆāļ­āļ‡āđ€āļ—āļĻāļĨāļ‡āđƒāļ™āļ­āļēāļŦāļēāļĢāļˆāļēāļ™āđ‚āļ›āļĢāļ” āđ€āļĢāļīāđˆāļĄāļˆāļēāļāđ€āļĨāļ·āļ­āļāļ­āļļāļ›āļāļĢāļ“āđŒāđāļŠāļ”āļ‡āļœāļĨāļ„āļļāļ“āļ āļēāļžāļŠāļđāļ‡āđ€āļžāļ·āđˆāļ­āļŠāļąāļĄāļœāļąāļŠāļŠāļĩāļŠāļąāļ™āđāļĨāļ°āđ€āļŠāļĩāļĒāļ‡āļ—āļĩāđˆāļ„āļĄāļŠāļąāļ” **āļāļēāļĢāđ€āļĨāļ·āļ­āļāļ—āļĩāļ§āļĩ 4K āļŠāļģāļŦāļĢāļąāļšāļ”āļđāļŦāļ™āļąāļ‡** āļˆāļ°āļžāļēāļ„āļļāļ“āđ€āļ‚āđ‰āļēāđ„āļ›āļ­āļĒāļđāđˆāđƒāļ™āđƒāļˆāļāļĨāļēāļ‡āđ€āļĢāļ·āđˆāļ­āļ‡āļĢāļēāļ§ āļ•āļēāļĄāļ”āđ‰āļ§āļĒāļāļēāļĢāļˆāļąāļ”āļŠāļ āļēāļžāđāļ§āļ”āļĨāđ‰āļ­āļĄāđƒāļŦāđ‰āđ€āļŦāļĄāļēāļ°āļŠāļĄ āļĄāļ·āļ”āļŠāļ™āļīāļ—āđāļĨāļ°āđ€āļ‡āļĩāļĒāļšāļŠāļ‡āļš āđ€āļžāļ·āđˆāļ­āđƒāļŦāđ‰āļĢāļđāđ‰āļŠāļķāļāļ—āļļāļāļ­āļēāļĢāļĄāļ“āđŒāļ‚āļ­āļ‡āļšāļ—āļĨāļ°āļ„āļĢ āļˆāļ™āļĨāļ·āļĄāđ‚āļĨāļāļ āļēāļĒāļ™āļ­āļāđ„āļ›āļŠāļąāđˆāļ§āļ‚āļ“āļ°

āļĢāđˆāļ§āļĄāđāļŠāļ”āļ‡āļ„āļ§āļēāļĄāđ€āļŦāđ‡āļ™āļœāđˆāļēāļ™āļāļēāļĢāđ„āļĨāļŸāđŒāđāļŠāļ—

āļāļēāļĢāđ€āļžāļīāđˆāļĄāļ­āļĢāļĢāļ–āļĢāļŠāđƒāļ™āļāļēāļĢāļĢāļąāļšāļŠāļĄ āļ„āļ·āļ­āļāļļāļāđāļˆāļŠāļģāļ„āļąāļāļ—āļĩāđˆāđ€āļ›āļĨāļĩāđˆāļĒāļ™āļāļēāļĢāļ”āļđāđ€āļ™āļ·āđ‰āļ­āļŦāļēāļ˜āļĢāļĢāļĄāļ”āļēāđƒāļŦāđ‰āđ€āļ›āđ‡āļ™āļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļĢāļ°āļ”āļąāļšāļžāļĢāļĩāđ€āļĄāļĩāļĒāļĄ āđ€āļĢāļīāđˆāļĄāļˆāļēāļāđ€āļĨāļ·āļ­āļāļ­āļļāļ›āļāļĢāļ“āđŒāđāļŠāļ”āļ‡āļœāļĨāļ„āļļāļ“āļ āļēāļžāļŠāļđāļ‡āđāļĨāļ°āļĢāļ°āļšāļšāđ€āļŠāļĩāļĒāļ‡āļĢāļ­āļšāļ—āļīāļĻāļ—āļēāļ‡ āđ€āļžāļ·āđˆāļ­āđƒāļŦāđ‰āļ”āļ·āđˆāļĄāļ”āđˆāļģāļāļąāļšāļ—āļļāļāļ­āļ‡āļ„āđŒāļ›āļĢāļ°āļāļ­āļšāļ­āļĒāđˆāļēāļ‡āļŠāļĄāļšāļđāļĢāļ“āđŒ āļāļēāļĢāļ›āļĢāļąāļšāđāļŠāļ‡āđƒāļ™āļŦāđ‰āļ­āļ‡āđƒāļŦāđ‰āđ€āļŦāļĄāļēāļ°āļŠāļĄāđāļĨāļ°āļĨāļ”āļŠāļīāđˆāļ‡āļĢāļšāļāļ§āļ™āļˆāļ°āļŠāđˆāļ§āļĒāđƒāļŦāđ‰āļ„āļļāļ“āļˆāļ”āļˆāđˆāļ­āļāļąāļšāđ€āļĢāļ·āđˆāļ­āļ‡āļĢāļēāļ§āđ„āļ”āđ‰āđ€āļ•āđ‡āļĄāļ—āļĩāđˆ **āđ€āļžāļīāđˆāļĄāļ­āļĢāļĢāļ–āļĢāļŠāđƒāļ™āļāļēāļĢāļĢāļąāļšāļŠāļĄāļ āļēāļžāļĒāļ™āļ•āļĢāđŒ** āļ­āļĒāđˆāļēāļ‡āđāļ—āđ‰āļˆāļĢāļīāļ‡ āđ€āļĄāļ·āđˆāļ­āļ—āļļāļāļ­āļĒāđˆāļēāļ‡āļžāļĢāđ‰āļ­āļĄ āļ„āļ§āļēāļĄāļĢāļđāđ‰āļŠāļķāļāļāđ‡āļˆāļ°āļ›āļĢāļ°āļ—āļąāļšāđƒāļˆāđāļĨāļ°āļŠāļĄāļˆāļĢāļīāļ‡āļĢāļēāļ§āļāļąāļšāļ­āļĒāļđāđˆāđƒāļ™āđ€āļŦāļ•āļļāļāļēāļĢāļ“āđŒāļ™āļąāđ‰āļ™

āļ•āļąāđ‰āļ‡āļ„āđˆāļēāļāļēāļĢāđāļˆāđ‰āļ‡āđ€āļ•āļ·āļ­āļ™āļāđˆāļ­āļ™āđ€āļĢāļīāđˆāļĄāđāļ‚āđˆāļ‡

āļāļēāļĢāđ€āļžāļīāđˆāļĄāļ­āļĢāļĢāļ–āļĢāļŠāđƒāļ™āļāļēāļĢāļĢāļąāļšāļŠāļĄāļ āļēāļžāļĒāļ™āļ•āļĢāđŒāđƒāļŦāđ‰āļŠāļĄāļšāļđāļĢāļ“āđŒāđāļšāļšāđ€āļĢāļīāđˆāļĄāļˆāļēāļāļŠāļ āļēāļžāđāļ§āļ”āļĨāđ‰āļ­āļĄāļ—āļĩāđˆāđ€āļŦāļĄāļēāļ°āļŠāļĄ āļŦāđ‰āļ­āļ‡āļ„āļ§āļĢāļĄāļ·āļ”āļŠāļ™āļīāļ—āđāļĨāļ°āļĢāļ°āļšāļšāđ€āļŠāļĩāļĒāļ‡āļĄāļĩāļ„āļļāļ“āļ āļēāļž āđ€āļžāļ·āđˆāļ­āđƒāļŦāđ‰āļˆāļīāļ•āđƒāļˆāļˆāļ”āļˆāđˆāļ­āļāļąāļšāđ€āļ™āļ·āđ‰āļ­āļŦāļēāđ‚āļ”āļĒāļ›āļĢāļēāļĻāļˆāļēāļāļŠāļīāđˆāļ‡āļĢāļšāļāļ§āļ™ āļŠāļģāļ„āļąāļāļ—āļĩāđˆāļŠāļļāļ”āļ„āļ·āļ­āļāļēāļĢāđ€āļĨāļ·āļ­āļāļŠāļĄāđ€āļ™āļ·āđ‰āļ­āļŦāļēāļ—āļĩāđˆāļ•āļĢāļ‡āļāļąāļšāļĢāļŠāļ™āļīāļĒāļĄāđāļĨāļ°āļ­āļēāļĢāļĄāļ“āđŒāđƒāļ™āļ‚āļ“āļ°āļ™āļąāđ‰āļ™ āļžāļĢāđ‰āļ­āļĄāđ€āļ›āļīāļ”āđƒāļˆāļĢāļąāļšāļšāļ—āļšāļēāļ—āļ‚āļ­āļ‡āļ•āļąāļ§āļĨāļ°āļ„āļĢāđāļĨāļ°āđāļ™āļ§āļ„āļīāļ”āļ—āļĩāđˆāļœāļđāđ‰āļŠāļĢāđ‰āļēāļ‡āļ•āđ‰āļ­āļ‡āļāļēāļĢāļŠāļ·āđˆāļ­āļŠāļēāļĢ āļāļēāļĢāļĄāļĩāļŠāļĄāļēāļ˜āļīāđ€āļ•āđ‡āļĄāļ—āļĩāđˆāļāļąāļšāļĢāļēāļĒāļĨāļ°āđ€āļ­āļĩāļĒāļ”āđƒāļ™āļ—āļļāļāļ‰āļēāļāļˆāļ°āļ—āļģāđƒāļŦāđ‰āļ„āļļāļ“āļ‹āļķāļĄāļ‹āļąāļšāļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļāļēāļĢāļĢāļąāļšāļŠāļĄāđ„āļ”āđ‰āļĨāļķāļāļ‹āļķāđ‰āļ‡āđāļĨāļ°āļŠāļĄāļˆāļĢāļīāļ‡āļ—āļĩāđˆāļŠāļļāļ”

āļ›āļąāļāļŦāļēāļ—āļĩāđˆāļžāļšāļšāđˆāļ­āļĒāđāļĨāļ°āļ§āļīāļ˜āļĩāđāļāđ‰āđ„āļ‚

āļ›āļąāļāļŦāļēāļ—āļĩāđˆāļžāļšāļšāđˆāļ­āļĒāđƒāļ™āļŦāļĨāļēāļĒāļ”āđ‰āļēāļ™āļĄāļąāļāđ€āļāļīāļ”āļˆāļēāļāļāļēāļĢāļŠāļ·āđˆāļ­āļŠāļēāļĢāļ—āļĩāđˆāđ„āļĄāđˆāļŠāļąāļ”āđ€āļˆāļ™āđāļĨāļ°āļāļĢāļ°āļšāļ§āļ™āļāļēāļĢāļ—āļģāļ‡āļēāļ™āļ—āļĩāđˆāļ‹āļąāļšāļ‹āđ‰āļ­āļ™āđ€āļāļīāļ™āđ„āļ› āļ§āļīāļ˜āļĩāđāļāđ‰āđ„āļ‚āđ€āļĢāļīāđˆāļĄāļˆāļēāļāļ›āļĢāļąāļšāļ›āļĢāļļāļ‡āļŠāđˆāļ­āļ‡āļ—āļēāļ‡āļāļēāļĢāļžāļđāļ”āļ„āļļāļĒāđƒāļŦāđ‰āļ•āļĢāļ‡āļˆāļļāļ” āļŠāļĢāđ‰āļēāļ‡āļĄāļēāļ•āļĢāļāļēāļ™āļāļēāļĢāļ—āļģāļ‡āļēāļ™āļ—āļĩāđˆāđ€āļ‚āđ‰āļēāđƒāļˆāļ‡āđˆāļēāļĒ āđāļĨāļ°āđƒāļŠāđ‰āđ€āļ—āļ„āđ‚āļ™āđ‚āļĨāļĒāļĩāđ€āļ‚āđ‰āļēāļĄāļēāļŠāđˆāļ§āļĒāļ­āļąāļ•āđ‚āļ™āļĄāļąāļ•āļīāđ€āļžāļ·āđˆāļ­āļĨāļ”āļ‚āđ‰āļ­āļœāļīāļ”āļžāļĨāļēāļ” āļāļēāļĢāļ—āļšāļ—āļ§āļ™āđāļĨāļ°āļ›āļĢāļąāļšāļ›āļĢāļļāļ‡āļĢāļ°āļšāļšāđ€āļ›āđ‡āļ™āļĢāļ°āļĒāļ°āļ„āļ·āļ­āļāļĨāļĒāļļāļ—āļ˜āđŒāļāļēāļĢāđ€āļžāļīāđˆāļĄāļ›āļĢāļ°āļŠāļīāļ—āļ˜āļīāļ āļēāļžāļ—āļĩāđˆāļĒāļąāđˆāļ‡āļĒāļ·āļ™ āļ—āļģāđƒāļŦāđ‰āļ—āļĩāļĄāļ—āļģāļ‡āļēāļ™āđ„āļ”āđ‰āļĢāļ§āļ”āđ€āļĢāđ‡āļ§āđāļĨāļ°āļĄāļĩāļ›āļĢāļ°āļŠāļīāļ—āļ˜āļīāļœāļĨāļĄāļēāļāļ‚āļķāđ‰āļ™āļ­āļĒāđˆāļēāļ‡āđ€āļŦāđ‡āļ™āđ„āļ”āđ‰āļŠāļąāļ”

Q: āļŦāļēāļāļ—āļĩāļĄāļĒāļąāļ‡āļ„āļ‡āļ—āļģāļ‡āļēāļ™āļœāļīāļ”āļžāļĨāļēāļ”āļ‹āđ‰āļģāđ† āļ„āļ§āļĢāļ—āļģāļ­āļĒāđˆāļēāļ‡āđ„āļĢ?
A: āļ„āļ§āļĢāļŦāļĒāļļāļ”āļāļĢāļ°āļšāļ§āļ™āļāļēāļĢāđ€āļžāļ·āđˆāļ­āļ§āļīāđ€āļ„āļĢāļēāļ°āļŦāđŒāļŠāļēāđ€āļŦāļ•āļļāļĢāļēāļāđ€āļŦāļ‡āđ‰āļē āļˆāļąāļ”āļāļēāļĢāļāļķāļāļ­āļšāļĢāļĄāđƒāļŦāļĄāđˆ āđāļĨāļ°āļ­āļēāļˆāļāļģāļŦāļ™āļ”āļœāļđāđ‰āļ•āļĢāļ§āļˆāļŠāļ­āļšāļ‚āļąāđ‰āļ™āļ•āļ­āļ™āļāđˆāļ­āļ™āļŠāđˆāļ‡āļ‡āļēāļ™

āļˆāļąāļ”āļāļēāļĢāļāļąāļšāļ āļēāļžāļāļĢāļ°āļ•āļļāļāļŦāļĢāļ·āļ­āļŠāļąāļāļāļēāļ“āļ‚āļēāļ”āļŦāļēāļĒ

āļ›āļąāļāļŦāļēāļ—āļĩāđˆāļžāļšāļšāđˆāļ­āļĒāđƒāļ™āļ­āļļāļ›āļāļĢāļ“āđŒāļ­āļīāđ€āļĨāđ‡āļāļ—āļĢāļ­āļ™āļīāļāļŠāđŒāļ„āļ·āļ­āđāļšāļ•āđ€āļ•āļ­āļĢāļĩāđˆāđ€āļŠāļ·āđˆāļ­āļĄāļŠāļ āļēāļžāđ€āļĢāđ‡āļ§ āļ‹āļķāđˆāļ‡āļŠāđˆāļ‡āļœāļĨāļ•āđˆāļ­**āļ­āļēāļĒāļļāļāļēāļĢāđƒāļŠāđ‰āļ‡āļēāļ™āđāļšāļ•āđ€āļ•āļ­āļĢāļĩāđˆāļŠāļĄāļēāļĢāđŒāļ—āđ‚āļŸāļ™** āļ§āļīāļ˜āļĩāđāļāđ‰āđ„āļ‚āļŦāļĨāļąāļāļ„āļ·āļ­āļŦāļĨāļĩāļāđ€āļĨāļĩāđˆāļĒāļ‡āļāļēāļĢāļŠāļēāļĢāđŒāļˆāđ„āļŸāļˆāļ™āđ€āļ•āđ‡āļĄ 100% āļŦāļĢāļ·āļ­āļ›āļĨāđˆāļ­āļĒāđƒāļŦāđ‰āļŦāļĄāļ”āđ€āļāļĨāļĩāđ‰āļĒāļ‡āđ€āļ›āđ‡āļ™āļ›āļĢāļ°āļˆāļģ āđāļ™āļ°āļ™āļģāđƒāļŦāđ‰āļŠāļēāļĢāđŒāļˆįŧåœĻāļĢāļ°āļ”āļąāļš 20-80% āđāļĨāļ°āļĨāļ”āļāļēāļĢāđƒāļŠāđ‰āļ‚āļ“āļ°āļŠāļēāļĢāđŒāļˆāđ€āļžāļ·āđˆāļ­āļĨāļ”āļ„āļ§āļēāļĄāļĢāđ‰āļ­āļ™āļŠāļ°āļŠāļĄ āļāļēāļĢāļ›āļĢāļąāļšāļĨāļ”āļ„āļ§āļēāļĄāļŠāļ§āđˆāļēāļ‡āļŦāļ™āđ‰āļēāļˆāļ­āđāļĨāļ°āļ›āļīāļ”āļŸāļĩāđ€āļˆāļ­āļĢāđŒāļ—āļĩāđˆāđ„āļĄāđˆāļˆāļģāđ€āļ›āđ‡āļ™āļāđ‡āļŠāđˆāļ§āļĒāļ›āļĢāļ°āļŦāļĒāļąāļ”āļžāļĨāļąāļ‡āļ‡āļēāļ™āđ„āļ”āđ‰āļ­āļĒāđˆāļēāļ‡āļĄāļĩāļ™āļąāļĒāļŠāļģāļ„āļąāļ

āļĢāļąāļšāļĄāļ·āļ­āļāļąāļšāļ„āļ§āļēāļĄāļĨāđˆāļēāļŠāđ‰āļēāļ‚āļ­āļ‡āļ āļēāļžāļˆāļēāļāļŠāļ™āļēāļĄ

āļ›āļąāļāļŦāļēāļ—āļĩāđˆāļžāļšāļšāđˆāļ­āļĒāđƒāļ™āļŠāļĩāļ§āļīāļ•āļ›āļĢāļ°āļˆāļģāļ§āļąāļ™āļĄāļąāļāļˆāļąāļ”āļāļēāļĢāđ„āļ”āđ‰āđ„āļĄāđˆāļĒāļēāļ āļ–āđ‰āļēāļĢāļđāđ‰āļ§āļīāļ˜āļĩāđāļāđ‰āđ„āļ‚āļ—āļĩāđˆāļ–āļđāļāļ•āđ‰āļ­āļ‡ āđ€āļĢāļīāđˆāļĄāļˆāļēāļ**āļāļēāļĢāļˆāļąāļ”āļāļēāļĢāļ›āļąāļāļŦāļēāļ­āļĒāđˆāļēāļ‡āđ€āļ›āđ‡āļ™āļĢāļ°āļšāļš** āđ‚āļ”āļĒāļāļēāļĢāļĢāļ°āļšāļļāļŠāļēāđ€āļŦāļ•āļļāļ—āļĩāđˆāļŠāļąāļ”āđ€āļˆāļ™āļāđˆāļ­āļ™ āđ€āļŠāđˆāļ™ āļ›āļąāļāļŦāļēāļ„āļ­āļĄāļžāļīāļ§āđ€āļ•āļ­āļĢāđŒāļ„āđ‰āļēāļ‡ āđƒāļŦāđ‰āļĨāļ­āļ‡āļĢāļĩāļŠāļ•āļēāļĢāđŒāļ—āđ€āļ„āļĢāļ·āđˆāļ­āļ‡āļāđˆāļ­āļ™āđ€āļŠāļĄāļ­ āļŦāļēāļāļ­āļīāļ™āđ€āļ—āļ­āļĢāđŒāđ€āļ™āđ‡āļ•āļŠāđ‰āļē āļĨāļ­āļ‡āļĢāļĩāđ€āļ‹āđ‡āļ•āđ€āļĢāļēāđ€āļ•āļ­āļĢāđŒāļŦāļĢāļ·āļ­āđ€āļŠāđ‡āļāļŠāļąāļāļāļēāļ“āđ€āļ„āļĢāļ·āļ­āļ‚āđˆāļēāļĒ āļāļēāļĢāļŠāļ·āđˆāļ­āļŠāļēāļĢāđ„āļĄāđˆāđ€āļ‚āđ‰āļēāđƒāļˆāļāļąāļ™āđƒāļ™āļ—āļĩāļĄ āđāļ™āļ°āļ™āļģāđƒāļŦāđ‰āļžāļđāļ”āļ„āļļāļĒāđ€āļ›āļīāļ”āđƒāļˆāđāļĨāļ°āļŸāļąāļ‡āļāļąāļ™āļĄāļēāļāļ‚āļķāđ‰āļ™ āļˆāļģāđ„āļ§āđ‰āļ§āđˆāļēāļāļēāļĢāđāļāđ‰āđ„āļ‚āļŦāļĨāļēāļĒāļ­āļĒāđˆāļēāļ‡āđ€āļĢāļīāđˆāļĄāļˆāļēāļāļ‚āļąāđ‰āļ™āļ•āļ­āļ™āļ‡āđˆāļēāļĒāđ† āļ—āļĩāđˆāđ€āļĢāļēāļĄāļ­āļ‡āļ‚āđ‰āļēāļĄāđ„āļ›

**Q&A:**
**Q: āļ–āđ‰āļēāļĢāļĩāļŠāļ•āļēāļĢāđŒāļ—āļ„āļ­āļĄāļžāļīāļ§āđ€āļ•āļ­āļĢāđŒāđāļĨāđ‰āļ§āļĒāļąāļ‡āļ„āđ‰āļēāļ‡āļ­āļĒāļđāđˆāļ„āļ§āļĢāļ—āļģāļ­āļĒāđˆāļēāļ‡āđ„āļĢ?**
**A:** āļĨāļ­āļ‡āļāļ”āļ›āļļāđˆāļĄāđ€āļ›āļīāļ”-āļ›āļļāđˆāļĄāļ„āđ‰āļēāļ‡āđ„āļ§āđ‰āđ€āļžāļ·āđˆāļ­āļ›āļīāļ”āđ€āļ„āļĢāļ·āđˆāļ­āļ‡āđ‚āļ”āļĒāļŠāļĄāļšāļđāļĢāļ“āđŒ āļĢāļ­āļŠāļąāļāļ„āļĢāļđāđˆāđāļĨāđ‰āļ§āļˆāļķāļ‡āđ€āļ›āļīāļ”āđƒāļŦāļĄāđˆ āļŦāļēāļāļĒāļąāļ‡āđ„āļĄāđˆāđāļāđ‰āđ„āļ‚ āļ­āļēāļˆāļ•āđ‰āļ­āļ‡āļ•āļĢāļ§āļˆāļŠāļ­āļšāļžāļ·āđ‰āļ™āļ—āļĩāđˆāđ€āļāđ‡āļšāļ‚āđ‰āļ­āļĄāļđāļĨāļŦāļĢāļ·āļ­āļ›āļĢāļķāļāļĐāļēāļœāļđāđ‰āđ€āļŠāļĩāđˆāļĒāļ§āļŠāļēāļ

āđ€āļĨāļ·āļ­āļāļ­āļļāļ›āļāļĢāļ“āđŒāļ—āļĩāđˆāđ€āļŦāļĄāļēāļ°āļŠāļĄāļŠāļģāļŦāļĢāļąāļšāļāļēāļĢāļĢāļąāļšāļŠāļĄ

āļ›āļąāļāļŦāļēāļ—āļĩāđˆāļžāļšāļšāđˆāļ­āļĒāđƒāļ™āļŠāļĩāļ§āļīāļ•āļ›āļĢāļ°āļˆāļģāļ§āļąāļ™āļĄāļąāļāļĄāļĩāļ§āļīāļ˜āļĩāđāļāđ‰āđ„āļ‚āļ—āļĩāđˆāļ•āļĢāļ‡āļˆāļļāļ” āļāļēāļĢāļˆāļąāļ”āļāļēāļĢāļāļąāļšāļ™āđ‰āļģāļĢāļąāđˆāļ§āļ‹āļķāļĄāļ•āđ‰āļ­āļ‡āđ€āļĢāļīāđˆāļĄāļˆāļēāļāļāļēāļĢāļŦāļēāļ•āļģāđāļŦāļ™āđˆāļ‡āļĢāļ­āļĒāļĢāđ‰āļēāļ§āļ—āļĩāđˆāļŠāļąāļ”āđ€āļˆāļ™āļāđˆāļ­āļ™āļ—āļģāļāļēāļĢāļ­āļļāļ”āļ”āđ‰āļ§āļĒāļ‹āļīāļĨāļīāđ‚āļ„āļ™āļŦāļĢāļ·āļ­āļ›āļđāļ™āļ‹āđˆāļ­āļĄāđāļ‹āļĄ āļŠāđˆāļ§āļ™āļ›āļąāļāļŦāļēāļ­āļļāļ›āļāļĢāļ“āđŒāļ­āļīāđ€āļĨāđ‡āļāļ—āļĢāļ­āļ™āļīāļāļŠāđŒāļ„āđ‰āļēāļ‡āļŦāļĢāļ·āļ­āļŠāđ‰āļē āđāļāđ‰āđ„āļ‚āđ€āļšāļ·āđ‰āļ­āļ‡āļ•āđ‰āļ™āļ”āđ‰āļ§āļĒāļāļēāļĢāļ›āļīāļ”āđ€āļ„āļĢāļ·āđˆāļ­āļ‡āļŠāļąāđˆāļ§āļ„āļĢāļēāļ§āļŦāļĢāļ·āļ­āļĢāļĩāļŠāļ•āļēāļĢāđŒāļ—āļĢāļ°āļšāļš **āđāļāđ‰āđ„āļ‚āļ›āļąāļāļŦāļēāļšāđ‰āļēāļ™āđāļĨāļ°āļ­āļļāļ›āļāļĢāļ“āđŒāļ­āļīāđ€āļĨāđ‡āļāļ—āļĢāļ­āļ™āļīāļāļŠāđŒ** āļŠāļģāļŦāļĢāļąāļšāļ„āļ§āļēāļĄāļ‚āļąāļ”āđāļĒāđ‰āļ‡āļĢāļ°āļŦāļ§āđˆāļēāļ‡āļšāļļāļ„āļ„āļĨ āļ„āļ§āļĢāđƒāļŠāđ‰āļāļēāļĢāļŠāļ·āđˆāļ­āļŠāļēāļĢāļ­āļĒāđˆāļēāļ‡āđ€āļ›āļīāļ”āđƒāļˆāđāļĨāļ°āļĢāļąāļšāļŸāļąāļ‡āļ‹āļķāđˆāļ‡āļāļąāļ™āđāļĨāļ°āļāļąāļ™āđ€āļžāļ·āđˆāļ­āļŦāļēāļˆāļļāļ”āļĢāđˆāļ§āļĄ

āđ€āļ—āļĢāļ™āļ”āđŒāđāļĨāļ°āđ€āļ—āļ„āđ‚āļ™āđ‚āļĨāļĒāļĩāđƒāļŦāļĄāđˆāđ†

āđ€āļ—āļĢāļ™āļ”āđŒāđāļĨāļ°āđ€āļ—āļ„āđ‚āļ™āđ‚āļĨāļĒāļĩāđƒāļŦāļĄāđˆāđ† āđƒāļ™āļ›āļąāļˆāļˆāļļāļšāļąāļ™āļĄāļēāđāļĢāļ‡āđāļĨāļ°āđ€āļ›āļĨāļĩāđˆāļĒāļ™āđāļ›āļĨāļ‡āļĢāļ§āļ”āđ€āļĢāđ‡āļ§āļŠāļļāļ”āđ† āđ‚āļ”āļĒāđ€āļ‰āļžāļēāļ° AI āļ—āļĩāđˆāđāļ—āļĢāļāļ‹āļķāļĄāļ­āļĒāļđāđˆāđƒāļ™āļŠāļĩāļ§āļīāļ•āļ›āļĢāļ°āļˆāļģāļ§āļąāļ™ āļ•āļąāđ‰āļ‡āđāļ•āđˆāđāļŠāļ—āļšāļ­āļ—āļŠāđˆāļ§āļĒāļ‡āļēāļ™āļˆāļ™āļ–āļķāļ‡āļŠāļĢāđ‰āļēāļ‡āļ„āļ­āļ™āđ€āļ—āļ™āļ•āđŒāļ­āļąāļ•āđ‚āļ™āļĄāļąāļ•āļī āļ™āļ­āļāļˆāļēāļāļ™āļĩāđ‰ āđ€āļ—āļ„āđ‚āļ™āđ‚āļĨāļĒāļĩāđ€āļžāļ·āđˆāļ­āļ„āļ§āļēāļĄāļĒāļąāđˆāļ‡āļĒāļ·āļ™ āļ­āļĒāđˆāļēāļ‡āļĢāļ– EV āđāļĨāļ°āļžāļĨāļąāļ‡āļ‡āļēāļ™āļŠāļ°āļ­āļēāļ”āļāđ‡āļĄāļēāđāļĢāļ‡āđ„āļĄāđˆāđāļžāđ‰āļāļąāļ™ āļĄāļąāļ™āļ™āđˆāļēāļ•āļ·āđˆāļ™āđ€āļ•āđ‰āļ™āļĄāļēāļāļ—āļĩāđˆāđ„āļ”āđ‰āđ€āļŦāđ‡āļ™āļ­āļ™āļēāļ„āļ•āļāļģāļĨāļąāļ‡āđ€āļāļīāļ”āļ‚āļķāđ‰āļ™āļ•āđˆāļ­āļŦāļ™āđ‰āļēāļ•āļēāđ€āļĢāļē āļĢāļ§āļĄāļ–āļķāļ‡ Metaverse āđāļĨāļ° AR āļ—āļĩāđˆāļāļģāļĨāļąāļ‡ redefine āļāļēāļĢāđ€āļŠāļ·āđˆāļ­āļĄāļ•āđˆāļ­āđāļĨāļ°āļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāđƒāļŦāļĄāđˆāđ† āđƒāļŦāđ‰āđ€āļĢāļēāļŠāļąāļĄāļœāļąāļŠāđ„āļ”āđ‰āļ‡āđˆāļēāļĒāļ‚āļķāđ‰āļ™āļ—āļļāļāļ§āļąāļ™

āļāļēāļĢāļ–āđˆāļēāļĒāļ—āļ­āļ”āļŠāļ”āđāļšāļšāļŦāļĨāļēāļĒāļĄāļļāļĄāļĄāļ­āļ‡

āļ›āļąāļˆāļˆāļļāļšāļąāļ™ āđ€āļ—āļĢāļ™āļ”āđŒāđāļĨāļ°āđ€āļ—āļ„āđ‚āļ™āđ‚āļĨāļĒāļĩāđƒāļŦāļĄāđˆāđ† āļāļģāļĨāļąāļ‡āļ‚āļąāļšāđ€āļ„āļĨāļ·āđˆāļ­āļ™āđ‚āļĨāļāļ”āļīāļˆāļīāļ—āļąāļĨ āđ‚āļ”āļĒāđ€āļ‰āļžāļēāļ° āļāļēāļĢāļ›āļĢāļ°āļĒāļļāļāļ•āđŒāđƒāļŠāđ‰āļ›āļąāļāļāļēāļ›āļĢāļ°āļ”āļīāļĐāļāđŒāđƒāļ™āļŠāļĩāļ§āļīāļ•āļ›āļĢāļ°āļˆāļģāļ§āļąāļ™ āļ‹āļķāđˆāļ‡āđ„āļĄāđˆāđ€āļžāļĩāļĒāļ‡āđāļ„āđˆāļŠāđˆāļ§āļĒāđ€āļžāļīāđˆāļĄāļ›āļĢāļ°āļŠāļīāļ—āļ˜āļīāļ āļēāļžāļāļēāļĢāļ—āļģāļ‡āļēāļ™ āđāļ•āđˆāļĒāļąāļ‡āļ›āļĢāļąāļšāđ€āļ›āļĨāļĩāđˆāļĒāļ™āļ§āļīāļ˜āļĩāļāļēāļĢāđƒāļŠāđ‰āļŠāļĩāļ§āļīāļ•āđāļĨāļ°āļāļēāļĢāļšāļĢāļīāđ‚āļ āļ„āļ‚āđ‰āļ­āļĄāļđāļĨāļ‚āļ­āļ‡āđ€āļĢāļē āđ€āļ—āļ„āđ‚āļ™āđ‚āļĨāļĒāļĩāđ€āļŠāđˆāļ™ Generative AI, Web3 āđāļĨāļ°āļāļēāļĢāļ„āļģāļ™āļ§āļ“āđāļšāļšāļ„āļ§āļ­āļ™āļ•āļąāļĄāļāļģāļĨāļąāļ‡āļāđ‰āļēāļ§āđ€āļ‚āđ‰āļēāļĄāļē redefine āļ­āļļāļ•āļŠāļēāļŦāļāļĢāļĢāļĄāļŦāļĨāļąāļ āļ­āļ‡āļ„āđŒāļāļĢāļ—āļĩāđˆāļ•āđ‰āļ­āļ‡āļāļēāļĢāļĢāļąāļāļĐāļēāļ„āļ§āļēāļĄāđ„āļ”āđ‰āđ€āļ›āļĢāļĩāļĒāļšāđƒāļ™āļāļēāļĢāđāļ‚āđˆāļ‡āļ‚āļąāļ™āļ•āđ‰āļ­āļ‡āļ•āļīāļ”āļ•āļēāļĄāđāļĨāļ°āļ—āļ”āļĨāļ­āļ‡āļ™āļģāđ€āļ—āļ„āđ‚āļ™āđ‚āļĨāļĒāļĩāđ€āļŦāļĨāđˆāļēāļ™āļĩāđ‰āļĄāļēāļ›āļĢāļąāļšāđƒāļŠāđ‰āļ­āļĒāđˆāļēāļ‡āļ•āđˆāļ­āđ€āļ™āļ·āđˆāļ­āļ‡

āļšāļ­āļĨāļŠāļ”

āļ„āļ§āļēāļĄāļŠāļģāđ€āļĢāđ‡āļˆāđ„āļĄāđˆāđƒāļŠāđˆāļāļēāļĢāđ„āļĨāđˆāļ•āļēāļĄāļ—āļļāļāđ€āļ—āļĢāļ™āļ”āđŒ āđāļ•āđˆāļ„āļ·āļ­āļāļēāļĢāļ„āļąāļ”āļāļĢāļ­āļ‡āđāļĨāļ°āļĨāļ‡āļ—āļļāļ™āđƒāļ™āđ€āļ—āļ„āđ‚āļ™āđ‚āļĨāļĒāļĩāļ—āļĩāđˆāļ•āļ­āļšāđ‚āļˆāļ—āļĒāđŒāļ˜āļļāļĢāļāļīāļˆāđ„āļ”āđ‰āļˆāļĢāļīāļ‡

āļāļēāļĢāļ™āļģāđ€āļŠāļ™āļ­āļ‚āđ‰āļ­āļĄāļđāļĨāļ”āđ‰āļ§āļĒāļāļĢāļēāļŸāļīāļāđ€āļŠāļĄāļ·āļ­āļ™āļˆāļĢāļīāļ‡

āļ›āļąāļˆāļˆāļļāļšāļąāļ™ āđ€āļ—āļĢāļ™āļ”āđŒāđāļĨāļ°āđ€āļ—āļ„āđ‚āļ™āđ‚āļĨāļĒāļĩāđƒāļŦāļĄāđˆāđ† āļāļģāļĨāļąāļ‡āļ‚āļąāļšāđ€āļ„āļĨāļ·āđˆāļ­āļ™āđ‚āļĨāļāļ”āļīāļˆāļīāļ—āļąāļĨāđ„āļ—āļĒāļ­āļĒāđˆāļēāļ‡āļĢāļ§āļ”āđ€āļĢāđ‡āļ§ āđ‚āļ”āļĒāđ€āļ‰āļžāļēāļ° āļāļēāļĢāļ›āļĢāļ°āļĒāļļāļāļ•āđŒāđƒāļŠāđ‰āļ›āļąāļāļāļēāļ›āļĢāļ°āļ”āļīāļĐāļāđŒ (AI) āđƒāļ™āļ˜āļļāļĢāļāļīāļˆ āļ—āļĩāđˆāļŠāđˆāļ§āļĒāđ€āļžāļīāđˆāļĄāļ›āļĢāļ°āļŠāļīāļ—āļ˜āļīāļ āļēāļžāļāļēāļĢāļ—āļģāļ‡āļēāļ™āđāļĨāļ°āļŠāļĢāđ‰āļēāļ‡āļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļŠāđˆāļ§āļ™āļšāļļāļ„āļ„āļĨāđƒāļŦāđ‰āļāļąāļšāļĨāļđāļāļ„āđ‰āļē āđ€āļ—āļ„āđ‚āļ™āđ‚āļĨāļĒāļĩāļ„āļĨāļēāļ§āļ”āđŒāđāļĨāļ° IoT āļĒāļąāļ‡āļ„āļ‡āļ‚āļĒāļēāļĒāļ•āļąāļ§ āļŠāđˆāļ§āļĒāđƒāļŦāđ‰āļ˜āļļāļĢāļāļīāļˆāļ‚āļ™āļēāļ”āđ€āļĨāđ‡āļāđāļĨāļ°āđƒāļŦāļāđˆāļŠāļēāļĄāļēāļĢāļ–āļ›āļĢāļąāļšāļ•āļąāļ§āđāļĨāļ°āđāļ‚āđˆāļ‡āļ‚āļąāļ™āđ„āļ”āđ‰āđƒāļ™āļĒāļļāļ„āļ‚āđ‰āļ­āļĄāļđāļĨāļ‚āđˆāļēāļ§āļŠāļēāļĢ āļāļēāļĢāļĄāļļāđˆāļ‡āđ€āļ™āđ‰āļ™āļ„āļ§āļēāļĄāđ€āļ›āđ‡āļ™āļĄāļīāļ•āļĢāļ•āđˆāļ­āļŠāļīāđˆāļ‡āđāļ§āļ”āļĨāđ‰āļ­āļĄāļœāđˆāļēāļ™āđ‚āļ‹āļĨāļđāļŠāļąāļ™āđ€āļ—āļ„āđ‚āļ™āđ‚āļĨāļĒāļĩāļŠāļĩāđ€āļ‚āļĩāļĒāļ§āļāđ‡āđ€āļ›āđ‡āļ™āđāļĢāļ‡āļœāļĨāļąāļāļ”āļąāļ™āļŠāļģāļ„āļąāļāļ—āļĩāđˆāļ™āļąāļāļĨāļ‡āļ—āļļāļ™āđāļĨāļ°āļœāļđāđ‰āļšāļĢāļīāđ‚āļ āļ„āđƒāļŦāđ‰āļ„āļ§āļēāļĄāļŠāļ™āđƒāļˆāļĄāļēāļāļ‚āļķāđ‰āļ™

āļāļēāļĢāļžāļąāļ’āļ™āļēāļŠāļđāđˆāļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļĢāļ°āļ”āļąāļšāļ­āļīāļ™āđ€āļ—āļ­āļĢāđŒāđāļ­āļ„āļ—āļĩāļŸ

āļ›āļąāļˆāļˆāļļāļšāļąāļ™ āđ€āļ—āļĢāļ™āļ”āđŒāđāļĨāļ°āđ€āļ—āļ„āđ‚āļ™āđ‚āļĨāļĒāļĩāđƒāļŦāļĄāđˆāđ† āļāļģāļĨāļąāļ‡āļ‚āļąāļšāđ€āļ„āļĨāļ·āđˆāļ­āļ™āđ‚āļĨāļāļ”āļīāļˆāļīāļ—āļąāļĨāļ­āļĒāđˆāļēāļ‡āļĢāļ§āļ”āđ€āļĢāđ‡āļ§ āđ‚āļ”āļĒāđ€āļ‰āļžāļēāļ° āļāļēāļĢāļ›āļĢāļ°āļĒāļļāļāļ•āđŒāđƒāļŠāđ‰āļ›āļąāļāļāļēāļ›āļĢāļ°āļ”āļīāļĐāļāđŒ (AI) āđƒāļ™āļŠāļĩāļ§āļīāļ•āļ›āļĢāļ°āļˆāļģāļ§āļąāļ™ āļ‹āļķāđˆāļ‡āđ„āļĄāđˆāđ€āļžāļĩāļĒāļ‡āđ€āļžāļīāđˆāļĄāļ›āļĢāļ°āļŠāļīāļ—āļ˜āļīāļ āļēāļžāđƒāļ™āļāļēāļĢāļ—āļģāļ‡āļēāļ™ āđāļ•āđˆāļĒāļąāļ‡āļ›āļĢāļąāļšāđ€āļ›āļĨāļĩāđˆāļĒāļ™āļ§āļīāļ˜āļĩāļ—āļĩāđˆāđ€āļĢāļēāļŠāļ·āđˆāļ­āļŠāļēāļĢāđāļĨāļ°āļšāļĢāļīāđ‚āļ āļ„āļ‚āđ‰āļ­āļĄāļđāļĨ āđ€āļ—āļ„āđ‚āļ™āđ‚āļĨāļĒāļĩāđ€āļĄāļ•āļēāđ€āļ§āļīāļĢāđŒāļŠāđāļĨāļ° Web3 āļāļģāļĨāļąāļ‡āļ‚āļĒāļēāļĒāļ‚āļ­āļšāđ€āļ‚āļ•āļ‚āļ­āļ‡āļ›āļĢāļ°āļŠāļšāļāļēāļĢāļ“āđŒāļ­āļ­āļ™āđ„āļĨāļ™āđŒ āļŠāļĢāđ‰āļēāļ‡āđ€āļĻāļĢāļĐāļāļāļīāļˆāļ”āļīāļˆāļīāļ—āļąāļĨāļĢāļđāļ›āđāļšāļšāđƒāļŦāļĄāđˆāļ—āļĩāđˆāļœāļđāđ‰āđƒāļŠāđ‰āđ€āļ›āđ‡āļ™āđ€āļˆāđ‰āļēāļ‚āļ­āļ‡āļ‚āđ‰āļ­āļĄāļđāļĨāļ­āļĒāđˆāļēāļ‡āđāļ—āđ‰āļˆāļĢāļīāļ‡ āļžāļĢāđ‰āļ­āļĄāļāļąāļ™āļ™āļĩāđ‰ āļāļēāļĢāļ„āļģāļ™āļķāļ‡āļ–āļķāļ‡āļ„āļ§āļēāļĄāļĒāļąāđˆāļ‡āļĒāļ·āļ™āđāļĨāļ°āļ„āļ§āļēāļĄāđ€āļ›āđ‡āļ™āļŠāđˆāļ§āļ™āļ•āļąāļ§āļāđ‡āđ€āļ›āđ‡āļ™āđāļĢāļ‡āļœāļĨāļąāļāļ”āļąāļ™āļŠāļģāļ„āļąāļāđƒāļ™āļāļēāļĢāļ­āļ­āļāđāļšāļšāļ™āļ§āļąāļ•āļāļĢāļĢāļĄāļ„āļĢāļąāđ‰āļ‡āļ•āđˆāļ­āđ„āļ›

Leave a Comment

Your email address will not be published. Required fields are marked *