[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$ffN-kluYRbpU7VxWcjY1EF4fkvYQZi4k5WueCjjTIHtU":3},{"id":4,"url_slug":5,"title":6,"description":7,"plugin_slug":8,"theme_slug":9,"affected_versions":10,"patched_in_version":11,"severity":12,"cvss_score":13,"cvss_vector":14,"vuln_type":15,"published_date":16,"updated_date":17,"references":18,"days_to_patch":20,"patch_diff_files":21,"patch_trac_url":9,"research_status":30,"research_verified":31,"research_rounds_completed":32,"research_plan":33,"research_summary":34,"research_vulnerable_code":9,"research_fix_diff":35,"research_exploit_outline":36,"research_model_used":37,"research_started_at":38,"research_completed_at":39,"research_error":9,"poc_status":9,"poc_video_id":9,"poc_summary":9,"poc_steps":9,"poc_tested_at":9,"poc_wp_version":9,"poc_php_version":9,"poc_playwright_script":9,"poc_exploit_code":9,"poc_has_trace":31,"poc_model_used":9,"poc_verification_depth":9,"poc_exploit_code_gated":31,"source_links":40},"CVE-2026-1273","postx-authenticated-administrator-server-side-request-forgery-via-rest-api-endpoints","PostX \u003C= 5.0.8 - Authenticated (Administrator+) Server-Side Request Forgery via REST API Endpoints","The Post Grid Gutenberg Blocks for News, Magazines, Blog Websites – PostX plugin for WordPress is vulnerable to Server-Side Request Forgery in all versions up to, and including, 5.0.8 via the `\u002Fultp\u002Fv3\u002Fstarter_dummy_post\u002F` and `\u002Fultp\u002Fv3\u002Fstarter_import_content\u002F` REST API endpoints. This makes it possible for authenticated attackers, with Administrator-level access and above, to make web requests to arbitrary locations originating from the web application and can be used to query and modify information from internal services.","ultimate-post",null,"\u003C=5.0.8","5.0.9","high",7.2,"CVSS:3.1\u002FAV:N\u002FAC:L\u002FPR:N\u002FUI:N\u002FS:C\u002FC:L\u002FI:L\u002FA:N","Server-Side Request Forgery (SSRF)","2026-03-03 12:22:12","2026-03-04 01:21:59",[19],"https:\u002F\u002Fwww.wordfence.com\u002Fthreat-intel\u002Fvulnerabilities\u002Fid\u002Fafe6d4ac-1712-415e-9995-cb7c8fe4e1a0?source=api-prod",1,[22,23,24,25,26,27,28,29],"addons\u002Fbuilder\u002Fassets\u002Fjs\u002Fconditions.js","addons\u002Fbuilder\u002Fblocks\u002FPost_Featured_Image.php","assets\u002Fjs\u002Fultp-video-support.js","assets\u002Fjs\u002Fultp.js","assets\u002Fjs\u002Fultp.min.js","assets\u002Fjs\u002Fultp_dashboard_min.js","classes\u002FBlocks.php","classes\u002FFunctions.php","researched",false,3,"This plan outlines the steps required to analyze and demonstrate a Server-Side Request Forgery (SSRF) vulnerability in the PostX plugin (Post Grid Gutenberg Blocks for News, Magazines, Blog Websites).\n\n### 1. Vulnerability Summary\nThe PostX plugin for WordPress is vulnerable to Server-Side Request Forgery (SSRF) via its REST API endpoints `\u002Fultp\u002Fv3\u002Fstarter_dummy_post\u002F` and `\u002Fultp\u002Fv3\u002Fstarter_import_content\u002F`. The vulnerability exists because these endpoints accept a user-provided URL to fetch \"starter content\" or \"dummy posts\" and fail to properly validate or restrict the destination of the resulting HTTP request. \n\nWhile the vulnerability is categorized as requiring Administrator-level privileges, the ability to make requests to arbitrary internal locations (like metadata services or internal loopback services) poses a significant risk of information disclosure or further internal exploitation.\n\n### 2. Attack Vector Analysis\n*   **Endpoints:** \n    *   `\u002Fwp-json\u002Fultp\u002Fv3\u002Fstarter_dummy_post\u002F`\n    *   `\u002Fwp-json\u002Fultp\u002Fv3\u002Fstarter_import_content\u002F`\n*   **Method:** `POST` (typically used for import\u002Fcontent generation actions).\n*   **Vulnerable Parameter:** Likely `url`, `import_url`, `source`, or `json_url` (inferred based on common \"starter content\" import patterns).\n*   **Authentication:** Administrator-level privileges required.\n*   **Payload Type:** JSON-encoded body with the target internal URL.\n*   **Required Headers:** `Content-Type: application\u002Fjson` and `X-WP-Nonce`.\n\n### 3. Code Flow (Inferred)\nSince the specific REST handler files (`classes\u002FRest_V3.php` or similar) were not provided in the source snippets, the flow is reconstructed based on WordPress REST API standards and the vulnerability description:\n1.  **Registration:** The plugin registers a REST route in the `ultp\u002Fv3` namespace using `register_rest_route`.\n2.  **Request Handling:** The handler for `starter_import_content` or `starter_dummy_post` is invoked when a `POST` request is sent to the endpoint.\n3.  **Parameter Extraction:** The handler extracts a URL parameter from the request body.\n4.  **Sinking:** The extracted URL is passed directly into a request-making function such as `wp_remote_get()` or `wp_safe_remote_get()` (or a cURL wrapper) without checking if the host is a public IP address or restricted internal address (e.g., `127.0.0.1` or `169.254.169.254`).\n5.  **Reflection:** The response from the internal request may be returned in the API response or used to populate post content, facilitating information leak.\n\n### 4. Nonce Acquisition Strategy\nREST API requests in WordPress require a `_wpnonce` parameter or an `X-WP-Nonce` header when using cookie-based authentication.\n\n1.  **Navigate to Admin Dashboard:** Use `browser_navigate` to go to the PostX dashboard (likely `wp-admin\u002Fadmin.php?page=ultp-dashboard`).\n2.  **Extract REST Nonce:** WordPress core exposes the REST nonce in the `wpApiSettings` object on most admin pages where scripts are enqueued.\n3.  **Execution:**\n    ```javascript\n    \u002F\u002F Use browser_eval to get the nonce\n    const restNonce = window.wpApiSettings ? window.wpApiSettings.nonce : null;\n    return restNonce;\n    ```\n4.  **Localization:** If `wpApiSettings` is missing, check the page source for localized scripts associated with `ultp_dashboard_min.js`. Look for a variable like `ultp_admin_data`.\n\n### 5. Exploitation Strategy\nThe goal is to force the server to query an internal resource.\n\n1.  **Preparation:** Identify an internal target. In a test environment, this is typically `http:\u002F\u002Flocalhost:80` (to see the web server response) or a mock metadata service at `http:\u002F\u002F169.254.169.254\u002F`.\n2.  **Request Formulation:**\n    *   **URL:** `http:\u002F\u002F\u003Ctarget-site>\u002Fwp-json\u002Fultp\u002Fv3\u002Fstarter_import_content\u002F`\n    *   **Method:** `POST`\n    *   **Headers:**\n        *   `X-WP-Nonce: [Extracted-Nonce]`\n        *   `Content-Type: application\u002Fjson`\n    *   **Body:** `{\"url\": \"http:\u002F\u002F169.254.169.254\u002Flatest\u002Fmeta-data\u002F\"}` (or `import_url`)\n3.  **Execution via `http_request`:**\n    ```bash\n    # Example using http_request tool\n    http_request(\n        method=\"POST\",\n        url=\"http:\u002F\u002Flocalhost:8080\u002Fwp-json\u002Fultp\u002Fv3\u002Fstarter_import_content\u002F\",\n        headers={\n            \"X-WP-Nonce\": \"a1b2c3d4e5\",\n            \"Content-Type\": \"application\u002Fjson\"\n        },\n        data='{\"url\": \"http:\u002F\u002F127.0.0.1:80\"}'\n    )\n    ```\n\n### 6. Test Data Setup\n1.  **Install Plugin:** Ensure Post Grid Gutenberg Blocks – PostX (v5.0.8 or below) is installed and active.\n2.  **Create Admin User:** Create a standard administrator user.\n3.  **Configure Settings:** No specific settings are required beyond activating the plugin to ensure REST routes are registered.\n\n### 7. Expected Results\n*   **Success:** The server returns a `200 OK` or `500 Internal Server Error` (if the internal content fails to parse), but the response body contains data retrieved from the target URL (e.g., the HTML source of the localhost homepage or metadata strings).\n*   **Confirmation:** If the plugin displays \"Import Failed,\" check if the error message contains snippets of the response from the internal URL.\n*   **Time-based:** If no data is reflected, observe the response time. Querying a non-existent internal port (e.g., `127.0.0.1:9999`) should result in a delay compared to an immediate \"Invalid URL\" error.\n\n### 8. Verification Steps\n1.  **Monitor Outgoing Traffic:** If using an external listener (like Webhook.site), confirm the WordPress server IP made a request to the external URL.\n2.  **WP-CLI Check:** Use `wp post list` to see if any \"dummy\" posts were created with content stolen from the internal URL.\n3.  **Internal Logs:** Check the access logs of the internal service being targeted to confirm the request originated from the WordPress server's IP.\n\n### 9. Alternative Approaches\n*   **Different Endpoint:** If `starter_import_content` is patched or restricted, repeat the process with `\u002Fwp-json\u002Fultp\u002Fv3\u002Fstarter_dummy_post\u002F`.\n*   **Parameter Fuzzing:** If `url` is not the correct key, try:\n    *   `json_url`\n    *   `import_url`\n    *   `source`\n    *   `link`\n    *   `file`\n*   **Gopher\u002FDict protocols:** If `http` is filtered, attempt to use `gopher:\u002F\u002F` or `dict:\u002F\u002F` protocols to interact with internal services like Redis or Memcached.","The PostX plugin for WordPress is vulnerable to Server-Side Request Forgery (SSRF) via the \u002Fultp\u002Fv3\u002Fstarter_dummy_post\u002F and \u002Fultp\u002Fv3\u002Fstarter_import_content\u002F REST API endpoints. This allow authenticated administrators to force the server to make arbitrary HTTP requests to internal or external resources, potentially exposing sensitive internal data or cloud metadata services.","diff -ru \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Faddons\u002Fbuilder\u002Fassets\u002Fjs\u002Fconditions.js \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Faddons\u002Fbuilder\u002Fassets\u002Fjs\u002Fconditions.js\n--- \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Faddons\u002Fbuilder\u002Fassets\u002Fjs\u002Fconditions.js\t2026-02-23 09:39:46.000000000 +0000\n+++ \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Faddons\u002Fbuilder\u002Fassets\u002Fjs\u002Fconditions.js\t2026-02-25 11:53:26.000000000 +0000\n@@ -1,2 +1,2 @@\n \u002F*! For license information please see conditions.js.LICENSE.txt *\u002F\n-(()=>{var e={1974:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(2141),r=n(192);function o(e){var t=(0,a.Z)(e);return function(e){return(0,r.Z)(t,e)}}},192:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a={\"!\":function(e){return!e},\"*\":function(e,t){return e*t},\"\u002F\":function(e,t){return e\u002Ft},\"%\":function(e,t){return e%t},\"+\":function(e,t){return e+t},\"-\":function(e,t){return e-t},\"\u003C\":function(e,t){return e\u003Ct},\"\u003C=\":function(e,t){return e\u003C=t},\">\":function(e,t){return e>t},\">=\":function(e,t){return e>=t},\"==\":function(e,t){return e===t},\"!=\":function(e,t){return e!==t},\"&&\":function(e,t){return e&&t},\"||\":function(e,t){return e||t},\"?:\":function(e,t,n){if(e)throw t;return n}};function r(e,t){var n,r,o,i,l,s,p=[];for(n=0;n\u003Ce.length;n++){if(l=e[n],i=a[l]){for(r=i.length,o=Array(r);r--;)o[r]=p.pop();try{s=i.apply(null,o)}catch(e){return e}}else s=t.hasOwnProperty(l)?t[l]:+l;p.push(s)}return p[0]}},7680:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(1974);function r(e){var t=(0,a.Z)(e);return function(e){return+t({n:e})}}},2141:(e,t,n)=>{\"use strict\";var a,r,o,i;function l(e){for(var t,n,l,s,p=[],c=[];t=e.match(i);){for(n=t[0],(l=e.substr(0,t.index).trim())&&p.push(l);s=c.pop();){if(o[n]){if(o[n][0]===s){n=o[n][1]||n;break}}else if(r.indexOf(s)>=0||a[s]\u003Ca[n]){c.push(s);break}p.push(s)}o[n]||c.push(n),e=e.substr(t.index+n.length)}return(e=e.trim())&&p.push(e),p.concat(c.reverse())}n.d(t,{Z:()=>l}),a={\"(\":9,\"!\":8,\"*\":7,\"\u002F\":7,\"%\":7,\"+\":6,\"-\":6,\"\u003C\":5,\"\u003C=\":5,\">\":5,\">=\":5,\"==\":4,\"!=\":4,\"&&\":3,\"||\":2,\"?\":1,\"?:\":1},r=[\"(\",\"?\"],o={\")\":[\"(\"],\":\":[\"?\",\"?:\"]},i=\u002F\u003C=|>=|==|!=|&&|\\|\\||\\?:|\\(|!|\\*|\\\u002F|%|\\+|-|\u003C|>|\\?|\\)|:\u002F},8247:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(4103),r=n(1755);const o=function(e,t){return function(n,o,i,l=10){const s=e[t];if(!(0,r.Z)(n))return;if(!(0,a.Z)(o))return;if(\"function\"!=typeof i)return void console.error(\"The hook callback must be a function.\");if(\"number\"!=typeof l)return void console.error(\"If specified, the hook priority must be a number.\");const p={callback:i,priority:l,namespace:o};if(s[n]){const e=s[n].handlers;let t;for(t=e.length;t>0&&!(l>=e[t-1].priority);t--);t===e.length?e[t]=p:e.splice(t,0,p),s.__current.forEach((e=>{e.name===n&&e.currentIndex>=t&&e.currentIndex++}))}else s[n]={handlers:[p],runs:0};\"hookAdded\"!==n&&e.doAction(\"hookAdded\",n,o,i,l)}}},9992:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e,t){return function(){var n;const a=e[t];return null!==(n=a.__current[a.__current.length-1]?.name)&&void 0!==n?n:null}}},3972:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(1755);const r=function(e,t){return function(n){const r=e[t];if((0,a.Z)(n))return r[n]&&r[n].runs?r[n].runs:0}}},1786:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e,t){return function(n){const a=e[t];return void 0===n?void 0!==a.__current[0]:!!a.__current[0]&&n===a.__current[0].name}}},8642:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e,t){return function(n,a){const r=e[t];return void 0!==a?n in r&&r[n].handlers.some((e=>e.namespace===a)):n in r}}},1019:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>d});var a=n(8247),r=n(9099),o=n(8642),i=n(6424),l=n(9992),s=n(1786),p=n(3972);class c{constructor(){this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=(0,a.Z)(this,\"actions\"),this.addFilter=(0,a.Z)(this,\"filters\"),this.removeAction=(0,r.Z)(this,\"actions\"),this.removeFilter=(0,r.Z)(this,\"filters\"),this.hasAction=(0,o.Z)(this,\"actions\"),this.hasFilter=(0,o.Z)(this,\"filters\"),this.removeAllActions=(0,r.Z)(this,\"actions\",!0),this.removeAllFilters=(0,r.Z)(this,\"filters\",!0),this.doAction=(0,i.Z)(this,\"actions\"),this.applyFilters=(0,i.Z)(this,\"filters\",!0),this.currentAction=(0,l.Z)(this,\"actions\"),this.currentFilter=(0,l.Z)(this,\"filters\"),this.doingAction=(0,s.Z)(this,\"actions\"),this.doingFilter=(0,s.Z)(this,\"filters\"),this.didAction=(0,p.Z)(this,\"actions\"),this.didFilter=(0,p.Z)(this,\"filters\")}}const d=function(){return new c}},9099:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(4103),r=n(1755);const o=function(e,t,n=!1){return function(o,i){const l=e[t];if(!(0,r.Z)(o))return;if(!n&&!(0,a.Z)(i))return;if(!l[o])return 0;let s=0;if(n)s=l[o].handlers.length,l[o]={runs:l[o].runs,handlers:[]};else{const e=l[o].handlers;for(let t=e.length-1;t>=0;t--)e[t].namespace===i&&(e.splice(t,1),s++,l.__current.forEach((e=>{e.name===o&&e.currentIndex>=t&&e.currentIndex--})))}return\"hookRemoved\"!==o&&e.doAction(\"hookRemoved\",o,i),s}}},6424:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e,t,n=!1){return function(a,...r){const o=e[t];o[a]||(o[a]={handlers:[],runs:0}),o[a].runs++;const i=o[a].handlers;if(!i||!i.length)return n?r[0]:void 0;const l={name:a,currentIndex:0};for(o.__current.push(l);l.currentIndex\u003Ci.length;){const e=i[l.currentIndex].callback.apply(null,r);n&&(r[0]=e),l.currentIndex++}return o.__current.pop(),n?r[0]:void 0}}},1957:(e,t,n)=>{\"use strict\";n.d(t,{JQ:()=>a});const a=(0,n(1019).Z)(),{addAction:r,addFilter:o,removeAction:i,removeFilter:l,hasAction:s,hasFilter:p,removeAllActions:c,removeAllFilters:d,doAction:u,applyFilters:m,currentAction:f,currentFilter:h,doingAction:g,doingFilter:v,didAction:_,didFilter:w,actions:b,filters:x}=a},1755:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e){return\"string\"!=typeof e||\"\"===e?(console.error(\"The hook name must be a non-empty string.\"),!1):\u002F^__\u002F.test(e)?(console.error(\"The hook name cannot begin with `__`.\"),!1):!!\u002F^[a-zA-Z][a-zA-Z0-9_.-]*$\u002F.test(e)||(console.error(\"The hook name can only contain numbers, letters, dashes, periods and underscores.\"),!1)}},4103:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e){return\"string\"!=typeof e||\"\"===e?(console.error(\"The namespace must be a non-empty string.\"),!1):!!\u002F^[a-zA-Z][a-zA-Z0-9_.\\-\\\u002F]*$\u002F.test(e)||(console.error(\"The namespace can only contain numbers, letters, dashes, periods, underscores and slashes.\"),!1)}},6016:(e,t,n)=>{\"use strict\";n.d(t,{o:()=>i});var a=n(5022);const r={plural_forms:e=>1===e?0:1},o=\u002F^i18n\\.(n?gettext|has_translation)(_|$)\u002F,i=(e,t,n)=>{const i=new a.Z({}),l=new Set,s=()=>{l.forEach((e=>e()))},p=(e,t=\"default\")=>{i.data[t]={...i.data[t],...e},i.data[t][\"\"]={...r,...i.data[t]?.[\"\"]},delete i.pluralForms[t]},c=(e,t)=>{p(e,t),s()},d=(e=\"default\",t,n,a,r)=>(i.data[e]||p(void 0,e),i.dcnpgettext(e,t,n,a,r)),u=(e=\"default\")=>e,_x=(e,t,a)=>{let r=d(a,t,e);return n?(r=n.applyFilters(\"i18n.gettext_with_context\",r,e,t,a),n.applyFilters(\"i18n.gettext_with_context_\"+u(a),r,e,t,a)):r};if(e&&c(e,t),n){const e=e=>{o.test(e)&&s()};n.addAction(\"hookAdded\",\"core\u002Fi18n\",e),n.addAction(\"hookRemoved\",\"core\u002Fi18n\",e)}return{getLocaleData:(e=\"default\")=>i.data[e],setLocaleData:c,addLocaleData:(e,t=\"default\")=>{i.data[t]={...i.data[t],...e,\"\":{...r,...i.data[t]?.[\"\"],...e?.[\"\"]}},delete i.pluralForms[t],s()},resetLocaleData:(e,t)=>{i.data={},i.pluralForms={},c(e,t)},subscribe:e=>(l.add(e),()=>l.delete(e)),__:(e,t)=>{let a=d(t,void 0,e);return n?(a=n.applyFilters(\"i18n.gettext\",a,e,t),n.applyFilters(\"i18n.gettext_\"+u(t),a,e,t)):a},_x,_n:(e,t,a,r)=>{let o=d(r,void 0,e,t,a);return n?(o=n.applyFilters(\"i18n.ngettext\",o,e,t,a,r),n.applyFilters(\"i18n.ngettext_\"+u(r),o,e,t,a,r)):o},_nx:(e,t,a,r,o)=>{let i=d(o,r,e,t,a);return n?(i=n.applyFilters(\"i18n.ngettext_with_context\",i,e,t,a,r,o),n.applyFilters(\"i18n.ngettext_with_context_\"+u(o),i,e,t,a,r,o)):i},isRTL:()=>\"rtl\"===_x(\"ltr\",\"text direction\"),hasTranslation:(e,t,a)=>{const r=t?t+\"\u0004\"+e:e;let o=!!i.data?.[null!=a?a:\"default\"]?.[r];return n&&(o=n.applyFilters(\"i18n.has_translation\",o,e,t,a),o=n.applyFilters(\"i18n.has_translation_\"+u(a),o,e,t,a)),o}}}},7836:(e,t,n)=>{\"use strict\";n.d(t,{__:()=>__});var a=n(6016),r=n(1957);const o=(0,a.o)(void 0,void 0,r.JQ);o.getLocaleData.bind(o),o.setLocaleData.bind(o),o.resetLocaleData.bind(o),o.subscribe.bind(o);const __=o.__.bind(o);o._x.bind(o),o._n.bind(o),o._nx.bind(o),o.isRTL.bind(o),o.hasTranslation.bind(o)},2304:(e,t,n)=>{\"use strict\";n.d(t,{__:()=>a.__}),n(5917),n(6016);var a=n(7836)},5917:(e,t,n)=>{\"use strict\";var a=n(6290);n(8975),(0,a.Z)(console.error)},4528:(e,t,n)=>{\"use strict\";n.d(t,{c:()=>r});var a=n(7294);const r={add_plus_shopping_cart_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5.862 3.76A1.75 1.75 0 0 0 4.13 2.25H2a.75.75 0 0 0 0 1.5h2.129a.25.25 0 0 1 .247.216l1.762 12.773c.059.427.27.8.572 1.069a2.5 2.5 0 1 0 4.33.442h5.17a2.5 2.5 0 1 0 2.29-1.5H7.871a.25.25 0 0 1-.247-.216l-.183-1.32 12.36-1.068a1.75 1.75 0 0 0 1.573-1.433l1.152-6.403a1.75 1.75 0 0 0-1.722-2.06H5.93l-.068-.49ZM7.75 19.25a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm9.75 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm-4.505-7.75v-1.245H11.75a.75.75 0 0 1 0-1.5h1.245V7.5a.75.75 0 0 1 1.5 0v1.255h1.255a.75.75 0 0 1 0 1.5h-1.255V11.5a.75.75 0 0 1-1.5 0Z\",clipRule:\"evenodd\"})),android_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M20 10.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Zm-16 0a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75ZM8.05 1.4a.75.75 0 0 0-.15 1.05l1.153 1.537A6.249 6.249 0 0 0 5.75 9.5v.5h12.5v-.5a6.249 6.249 0 0 0-3.303-5.513L16.1 2.45a.75.75 0 1 0-1.2-.9l-1.41 1.879a6.266 6.266 0 0 0-2.98 0L9.1 1.55a.75.75 0 0 0-1.05-.15ZM9.74 8a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 0 1.5h-.01A.75.75 0 0 1 9.74 8Zm3.75-.75a.75.75 0 0 0 0 1.5h.01a.75.75 0 0 0 0-1.5h-.01Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M5.75 11.5V17a2.75 2.75 0 0 0 2.75 2.75h.25V22a.75.75 0 0 0 1.5 0v-2.25h4V22a.75.75 0 0 0 1.5 0v-2.261A2.75 2.75 0 0 0 18.25 17v-5.5H5.75Z\"})),angry_emoji_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM6.25 9.5A.75.75 0 0 1 7 8.75c.549 0 1.303.068 1.982.285.632.202 1.458.619 1.704 1.493.043.152.064.31.064.472 0 .527-.197 1.1-.77 1.322-.493.192-.974-.001-1.25-.237-.277-.238-.62-.793-.262-1.39.044-.074.096-.14.153-.2a2.804 2.804 0 0 0-.095-.031C8.04 10.309 7.45 10.25 7 10.25a.75.75 0 0 1-.75-.75Zm8.768-.465c.678-.217 1.433-.285 1.982-.285a.75.75 0 0 1 0 1.5c-.451 0-1.041.059-1.526.214-.033.01-.065.021-.095.032.057.059.109.125.153.2.359.596.015 1.151-.262 1.389-.276.236-.758.429-1.25.237-.573-.223-.77-.795-.77-1.322 0-.162.021-.32.064-.472.246-.874 1.072-1.291 1.704-1.493Zm-6.347 8.3C9.262 16.153 10.58 15.5 12 15.5c1.42 0 2.738.653 3.33 1.835a.75.75 0 1 0 1.34-.67C15.763 14.847 13.83 14 12 14s-3.762.847-4.67 2.665a.75.75 0 0 0 1.34.67Z\",clipRule:\"evenodd\"})),apple_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M20.054 8.58c-.123.096-2.287 1.337-2.287 4.095 0 3.191 2.754 4.32 2.836 4.348-.012.069-.437 1.546-1.452 3.051-.904 1.325-1.849 2.647-3.286 2.647s-1.806-.85-3.465-.85c-1.617 0-2.192.878-3.506.878-1.315 0-2.232-1.226-3.286-2.73-1.222-1.768-2.209-4.514-2.209-7.12 0-2.07.655-3.658 1.636-4.735 1-1.097 2.337-1.662 3.664-1.662 1.397 0 2.562.933 3.439.933.834 0 2.136-.989 3.725-.989.602 0 2.767.056 4.19 2.133Zm-4.945-3.904a5.04 5.04 0 0 0 .84-1.467 4.462 4.462 0 0 0 .282-1.528c0-.152-.013-.307-.04-.432-1.07.04-2.342.725-3.109 1.63-.602.697-1.164 1.797-1.164 2.913 0 .168.027.336.04.39.068.013.178.028.287.028.96 0 2.167-.654 2.864-1.534Z\"})),arrow_down_bottom_downward_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1 6.25a1 1 0 1 0-2 0v6.586l-1.793-1.793a1 1 0 0 0-1.414 1.414l3.5 3.5a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0-1.414-1.414L13 14.086V7.5Z\",clipRule:\"evenodd\"})),arrow_down_bottom_downward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11 3.5a1 1 0 1 1 2 0v14.586l6.793-6.793a1 1 0 1 1 1.414 1.414l-8.5 8.5a1 1 0 0 1-1.414 0l-8.5-8.5a1 1 0 0 1 1.338-1.482l.076.068L11 18.086V3.5Z\"})),arrow_down_bottom_left_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M17.293 5.293a1 1 0 1 1 1.414 1.414L8.414 17H18a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1V6a1 1 0 0 1 2 0v9.586L17.293 5.293Z\"})),arrow_down_bottom_right_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M5.293 5.293a1 1 0 0 1 1.414 0L17 15.586V6a1 1 0 1 1 2 0v12a1 1 0 0 1-1 1H6a1 1 0 1 1 0-2h9.586L5.293 6.707a1 1 0 0 1 0-1.414Z\"})),arrow_down_dropdown_maximize_chevron_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M18 8.25a.75.75 0 0 1 .53 1.28l-6 6a.75.75 0 0 1-1.06 0l-6-6A.75.75 0 0 1 6 8.25h12Z\"})),arrow_left_backward_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm-.293 7.957a1 1 0 0 0-1.414-1.414l-3.5 3.5a1 1 0 0 0 0 1.414l3.5 3.5a1 1 0 0 0 1.414-1.414L9.914 13H16.5a1 1 0 1 0 0-2H9.914l1.793-1.793Z\",clipRule:\"evenodd\"})),arrow_left_backward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.293 2.793a1 1 0 1 1 1.414 1.414L5.914 11H20.5a1 1 0 1 1 0 2H5.914l6.793 6.793.068.076a1 1 0 0 1-1.406 1.406l-.076-.068-8.5-8.5a1 1 0 0 1 0-1.414l8.5-8.5Z\"})),arrow_left_previous_backward_chevron_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M14.47 5.47a.75.75 0 0 1 1.28.53v12a.75.75 0 0 1-1.28.53l-6-6a.75.75 0 0 1 0-1.06l6-6Z\"})),arrow_move_down_left_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M6.293 7.293A1 1 0 0 1 8 8v4h10a3 3 0 0 0 3-3V6a1 1 0 1 1 2 0v3a5 5 0 0 1-5 5H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5Z\"})),arrow_move_down_right_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.617 7.076a1 1 0 0 1 1.09.217l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 18v-4H6a5 5 0 0 1-5-5V6a1 1 0 0 1 2 0v3a3 3 0 0 0 3 3h10V8a1 1 0 0 1 .617-.924Z\"})),arrow_move_up_left_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 18v-3a3 3 0 0 0-3-3H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5A1 1 0 0 1 8 6v4h10a5 5 0 0 1 5 5v3a1 1 0 1 1-2 0Z\"})),arrow_move_up_right_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M1 18v-3a5 5 0 0 1 5-5h10V6a1 1 0 0 1 1.707-.707l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 16v-4H6a3 3 0 0 0-3 3v3a1 1 0 1 1-2 0Z\"})),arrow_right_forward_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1.707 6.543a1 1 0 1 0-1.414 1.414L14.086 11H7.5a1 1 0 1 0 0 2h6.586l-1.793 1.793a1 1 0 0 0 1.414 1.414l3.5-3.5a1 1 0 0 0 0-1.414l-3.5-3.5Z\",clipRule:\"evenodd\"})),arrow_right_forward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.293 2.793a1 1 0 0 1 1.414 0l8.5 8.5a1 1 0 0 1 0 1.414l-8.5 8.5a1 1 0 1 1-1.414-1.414L18.086 13H3.5a1 1 0 1 1 0-2h14.586l-6.793-6.793-.068-.076a1 1 0 0 1 .068-1.338Z\"})),arrow_right_next_forward_chevron_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M8.713 5.307a.75.75 0 0 1 .817.163l6 6a.75.75 0 0 1 0 1.06l-6 6A.75.75 0 0 1 8.25 18V6a.75.75 0 0 1 .463-.693Z\"})),arrow_up_dropdown_minimize_chevron_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.527 8.418a.75.75 0 0 1 1.004.052l6 6a.75.75 0 0 1-.53 1.28H6a.75.75 0 0 1-.531-1.28l6-6 .057-.052Z\"})),arrow_up_top_left_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M5 18V6a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H8.414l10.293 10.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L7 8.414V18a1 1 0 1 1-2 0Z\"})),arrow_up_top_right_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M19 18a1 1 0 1 1-2 0V8.414L6.707 18.707a1 1 0 1 1-1.414-1.414L15.586 7H6a1 1 0 0 1 0-2h12a1 1 0 0 1 1 1v12Z\"})),arrow_up_top_upward_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.207 9.043-3.5-3.5a1 1 0 0 0-1.414 0l-3.5 3.5a1 1 0 1 0 1.414 1.414L11 9.914V16.5a1 1 0 1 0 2 0V9.914l1.793 1.793a1 1 0 0 0 1.414-1.414Z\",clipRule:\"evenodd\"})),arrow_up_top_upward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11 20.5V5.914l-6.793 6.793a1 1 0 1 1-1.414-1.414l8.5-8.5.076-.068a1 1 0 0 1 1.338.068l8.5 8.5.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L13 5.914V20.5a1 1 0 1 1-2 0Z\"})),at_a_mail_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 7c1.126 0 2.164.372 3 1a1 1 0 1 1 2 0v7a1 1 0 0 0 1 1 3 3 0 0 0 3-3v-1a9 9 0 1 0-9 9c1.64 0 3.176-.438 4.499-1.203a1 1 0 0 1 1.002 1.73A10.955 10.955 0 0 1 12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11v1a5 5 0 0 1-5 5 3.002 3.002 0 0 1-2.865-2.106A5 5 0 1 1 12 7Zm-3 5a3 3 0 1 0 6 0 3 3 0 0 0-6 0Z\"})),author_user_human_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm3.5 13.533c0 .672-.545 1.217-1.217 1.217H4.967a1.217 1.217 0 0 1-1.217-1.217 7.283 7.283 0 0 1 7.283-7.283h1.934a7.283 7.283 0 0 1 7.283 7.283Z\"})),author_user_human_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M7.5 8a4.5 4.5 0 0 0 2.43 3.996A8.754 8.754 0 0 0 3.25 20.5c0 .414.336.75.75.75h16a.75.75 0 0 0 .75-.75 8.754 8.754 0 0 0-6.68-8.504A4.5 4.5 0 1 0 7.5 8Z\"})),author_user_human_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm4 14a.75.75 0 0 1-.75.75H4a.75.75 0 0 1-.75-.75v-3A4.75 4.75 0 0 1 8 13.25h8A4.75 4.75 0 0 1 20.75 18v3Z\"})),author_user_human_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0ZM12 12.75c3.518 0 6.62 1.696 8.337 4.088.411.573.6 1.197.568 1.816a2.84 2.84 0 0 1-.645 1.626c-.723.902-1.951 1.47-3.26 1.47H7c-1.308 0-2.537-.568-3.26-1.47a2.838 2.838 0 0 1-.644-1.626c-.032-.62.156-1.243.568-1.816C5.38 14.446 8.483 12.75 12 12.75Z\"})),book_reading_time_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M14.5 1.25a6.25 6.25 0 0 1 4.25 10.83V16a.75.75 0 0 1-.75.75H7a2.25 2.25 0 0 0 0 4.5h11a.75.75 0 0 1 0 1.5H7A3.75 3.75 0 0 1 3.25 19V7A3.75 3.75 0 0 1 7 3.25h2.92c1.141-1.23 2.77-2 4.58-2ZM7 4.75A2.25 2.25 0 0 0 4.75 7v9A3.733 3.733 0 0 1 7 15.25h10.25v-2.137A6.25 6.25 0 0 1 8.887 4.75H7Zm7.5-.5a.75.75 0 0 0-.75.75v3a.75.75 0 0 0 .415.67l2 1a.75.75 0 0 0 .67-1.34l-1.585-.794V5a.75.75 0 0 0-.75-.75Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M16 19.75a.75.75 0 0 0 0-1.5H7a.75.75 0 0 0 0 1.5h9Z\"})),book_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm6.75 17.25v-1.75h-3.5v1.75a.75.75 0 0 1-1.5 0v-3.092c0-.74.22-1.464.63-2.08l1.219-1.828a1.684 1.684 0 0 1 2.802 0l1.22 1.828c.41.616.629 1.34.629 2.08V18.5a.75.75 0 0 1-1.5 0Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11.847 12.332a.184.184 0 0 1 .306 0l1.22 1.828c.216.326.344.701.371 1.09h-3.488a2.25 2.25 0 0 1 .372-1.09l1.219-1.828Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z\"})),calendar_date_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M8.01 12.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Z\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M2.25 9v10.5A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5V9Zm18 .75H3.75v9.75c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V9.75Z\",clipRule:\"evenodd\"})),calendar_date_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M15.76 1.376a.751.751 0 0 1 1.48.247l-.104.626H21a.751.751 0 0 1 .749.75h.002v16A2.75 2.75 0 0 1 19 21.75H8a2.75 2.75 0 0 1-2.736-2.468L5.251 19v-.75H3.314a1.75 1.75 0 0 1-1.688-2.216L5.278 2.8l.043-.117A.75.75 0 0 1 6 2.25h3.614l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873Zm2.368 14.855a2.751 2.751 0 0 1-2.65 2.018H6.75V19l.006.128A1.25 1.25 0 0 0 8 20.251h11c.69 0 1.25-.56 1.25-1.25V8.538l-2.123 7.693Zm-5.152-8.812a.75.75 0 0 0-.81-.09l-2 1a.75.75 0 0 0 .67 1.341l.5-.25-.909 3.33h-.926a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.518l1.241-4.553a.75.75 0 0 0-.248-.778Z\",clipRule:\"evenodd\"})),calendar_date_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M17 2.75V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2Zm-13.25 7h16.5v9.75c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25V9.75Z\"})),calendar_date_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M17.5 2a1 1 0 1 0-2 0v.75H13V2a1 1 0 1 0-2 0v.75H8.5V2a1 1 0 0 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-1.5V2Zm-1.49 7a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 11 7 10.552 7 10s.457-1 1.01-1Zm1 4.5a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm3-1a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm5 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 18 7 17.552 7 17s.457-1 1.01-1Z\",clipRule:\"evenodd\"})),caret_up_top_triangle_angle_arrow_upward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19 17.75c1.442 0 2.265-1.646 1.4-2.8l-7-9.333a1.75 1.75 0 0 0-2.8 0l-7 9.333c-.865 1.154-.042 2.8 1.4 2.8h14Z\",clipRule:\"evenodd\"})),category_book_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75v-8H15v-3h5.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm3.5 13.5a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Zm.75 3.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z\"})),category_file_documents_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M21 2.25a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.22.53l-1.28 1.28V18a.75.75 0 0 1-.75.75h-2.25V21a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75V5c0-.027.001-.053.004-.08A2.748 2.748 0 0 1 5 2.25h16ZM5 3.75a1.25 1.25 0 1 0 0 2.5h11.5a.75.75 0 0 1 .75.75v10.25h1.5V11c0-.199.08-.39.22-.53l1.28-1.28V3.75H5Zm5.25 10.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Zm-.75 2.25a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Z\",clipRule:\"evenodd\"})),category_file_documents_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M22.75 19A1.75 1.75 0 0 1 21 20.75H4A2.75 2.75 0 0 1 1.25 18V6A2.75 2.75 0 0 1 4 3.25h11.172c.73 0 1.429.29 1.944.806l2.195 2.194H21c.966 0 1.75.784 1.75 1.75v11Zm-20-1c0 .69.56 1.25 1.25 1.25h.25V8c0-.966.784-1.75 1.75-1.75h11.19l-1.134-1.134a1.25 1.25 0 0 0-.884-.366H4c-.69 0-1.25.56-1.25 1.25v12Z\"})),category_file_documents_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19 3.25c.966 0 1.75.784 1.75 1.75v1.25H21c.966 0 1.75.784 1.75 1.75v11A1.75 1.75 0 0 1 21 20.75H6A1.75 1.75 0 0 1 4.25 19v-.25H3A1.75 1.75 0 0 1 1.25 17V8c0-.966.784-1.75 1.75-1.75h8.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513H19Zm-3.586 1.5a.25.25 0 0 0-.177.073l-2.414 2.414a1.75 1.75 0 0 1-1.237.513H3a.25.25 0 0 0-.25.25v9c0 .138.112.25.25.25h1.25V11c0-.966.784-1.75 1.75-1.75h7.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513h1.836V5a.25.25 0 0 0-.25-.25h-3.586Z\",clipRule:\"evenodd\"})),category_file_documents_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M8.586 3.25c.464 0 .91.185 1.237.513L11.81 5.75H18a2.75 2.75 0 0 1 2.75 2.75v1.75H22a.75.75 0 0 1 .686 1.055l-4 9a.75.75 0 0 1-.686.445H2a.75.75 0 0 1-.749-.75L1.25 5c0-.966.784-1.75 1.75-1.75h5.586ZM3 4.75a.25.25 0 0 0-.25.25v11.465l2.564-5.77.052-.096A.75.75 0 0 1 6 10.25h13.25V8.5c0-.69-.56-1.25-1.25-1.25H8a.75.75 0 0 1 0-1.5h1.69l-.927-.927a.25.25 0 0 0-.177-.073H3Z\",clipRule:\"evenodd\"})),clock_reading_time_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25 1.25 6.063 1.25 12 6.063 22.75 12 22.75ZM11 6a1 1 0 1 1 2 0v5.382l3.447 1.723.09.051a1 1 0 0 1-.89 1.78l-.094-.041-4-2A1 1 0 0 1 11 12V6Z\",clipRule:\"evenodd\"})),clock_reading_time_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11 2.5V1.296A10.753 10.753 0 0 0 1.296 11H2.5a1 1 0 1 1 0 2H1.296A10.753 10.753 0 0 0 11 22.704V21.5a1 1 0 1 1 2 0v1.204A10.753 10.753 0 0 0 22.704 13H21.5a1 1 0 1 1 0-2h1.204A10.753 10.753 0 0 0 13 1.296V2.5a1 1 0 1 1-2 0Zm5.707 4.793a1 1 0 0 0-1.414 0L12 10.586l-1.793-1.793-.076-.068a1 1 0 0 0-1.338 1.482L10.586 12l-.793.793a1 1 0 1 0 1.414 1.414l.793-.793.793.793.076.068a1 1 0 0 0 1.406-1.406l-.068-.076-.793-.793 3.293-3.293a1 1 0 0 0 0-1.414Z\",clipRule:\"evenodd\"})),clock_reading_time_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M15.5 1.25a7.25 7.25 0 0 1 7.25 7.25 7.222 7.222 0 0 1-2.001 4.997L20.75 16A6.75 6.75 0 0 1 14 22.75H2a.75.75 0 0 1-.75-.75v-7A6.75 6.75 0 0 1 8 8.25h.257a7.248 7.248 0 0 1 7.243-7Zm0 1.5a5.75 5.75 0 1 0 0 11.5 5.75 5.75 0 0 0 0-11.5ZM14 18.5a1 1 0 0 0-1-1H6a1 1 0 1 0 0 2h7a1 1 0 0 0 1-1Zm-5-5a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2h3Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M14.5 5.111a1 1 0 1 1 2 0v3.3l1.485.826.087.054a1 1 0 0 1-.966 1.739l-.091-.045-2-1.111A1 1 0 0 1 14.5 9V5.11Z\"})),confused_emoji_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 9a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm-5.95 8.51c.63-.68 2.871-2.237 6.317-1.617a.75.75 0 1 0 .266-1.476c-4.02-.723-6.758 1.075-7.683 2.073a.75.75 0 1 0 1.1 1.02Z\",clipRule:\"evenodd\"})),correct_save_check_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.737 8.426a1 1 0 0 0-1.474-1.352l-4.794 5.23-1.762-1.761a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.444-.031l5.5-6Z\",clipRule:\"evenodd\"})),correct_save_check_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M18.731 5.36a1 1 0 0 1 1.537 1.28l-10 12a1.001 1.001 0 0 1-1.475.067l-5-5a1 1 0 1 1 1.414-1.414l4.225 4.225 9.3-11.159Z\"})),cross_close_x_minimize_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.707 7.293a1 1 0 0 0-1.414 1.414L10.586 12l-3.293 3.293a1 1 0 1 0 1.414 1.414L12 13.414l3.293 3.293a1 1 0 0 0 1.414-1.414L13.414 12l3.293-3.293a1 1 0 0 0-1.414-1.414L12 10.586 8.707 7.293Z\",clipRule:\"evenodd\"})),cross_x_close_minimize_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M17.293 5.293a1 1 0 1 1 1.414 1.414L13.414 12l5.293 5.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L12 13.414l-5.293 5.293a1 1 0 1 1-1.414-1.414L10.586 12 5.293 6.707a1 1 0 1 1 1.414-1.414L12 10.586l5.293-5.293Z\"})),desktop_monitor_computer_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11 17.75H4A2.75 2.75 0 0 1 1.25 15V5A2.75 2.75 0 0 1 4 2.25h16A2.75 2.75 0 0 1 22.75 5v10A2.75 2.75 0 0 1 20 17.75h-7V20h3a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h3v-2.25Zm1.01-5.25a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Z\",clipRule:\"evenodd\"})),dot_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Z\",clipRule:\"evenodd\"})),download_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M2 19v-4a1 1 0 1 1 2 0v4c0 .548.452 1 1 1h14a1 1 0 0 0 1-1v-4a1 1 0 1 1 2 0v4a3 3 0 0 1-3 3H5c-1.652 0-3-1.348-3-3Z\"}),(0,a.createElement)(\"path\",{d:\"M12 1.5a1 1 0 0 0-1 1V8H7a1 1 0 0 0-.707 1.707l5 5a1 1 0 0 0 1.414 0l5-5A1 1 0 0 0 17 8h-4V2.5a1 1 0 0 0-1-1Z\"})),download_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11.47 21.53a.75.75 0 0 0 1.06 0l2.5-2.5a.75.75 0 0 0-.53-1.28h-1.75V13a.75.75 0 0 0-1.5 0v4.75H9.5a.75.75 0 0 0-.53 1.28l2.5 2.5Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z\",clipRule:\"evenodd\"})),facebook_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h6.412v-7.076H9.5V11.84h1.912v-1.22C11.412 7.462 12.84 6 15.94 6c.587 0 1.601.115 2.016.23V8.8a11.904 11.904 0 0 0-1.071-.035c-1.52 0-2.108.575-2.108 2.073v1.002h3.029l-.52 2.834h-2.51v7.076H19A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Z\"})),google_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"m21.882 10.42-.103-.438h-9.485v4.036h5.667c-.588 2.81-3.318 4.289-5.549 4.289-1.623 0-3.333-.686-4.465-1.79a6.412 6.412 0 0 1-1.902-4.524c0-1.7.76-3.402 1.865-4.52 1.106-1.12 2.776-1.745 4.437-1.745 1.902 0 3.264 1.015 3.774 1.478l2.853-2.853c-.837-.74-3.136-2.603-6.72-2.603-2.764 0-5.414 1.065-7.352 3.007C2.99 6.669 2 9.434 2 12c0 2.566.937 5.193 2.79 7.12 1.98 2.056 4.784 3.13 7.671 3.13 2.627 0 5.117-1.035 6.892-2.913C21.098 17.488 22 14.93 22 12.249c0-1.129-.113-1.8-.118-1.829Z\"})),growth_increase_up_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 6a1 1 0 0 1 1 1v6a1 1 0 0 1-1.706.707L18 11.414l-4.793 4.793a1 1 0 0 1-1.414 0L8.5 12.914l-4.993 4.993a1 1 0 0 1-1.414-1.414l5.7-5.7.073-.066a1 1 0 0 1 1.34.066l3.294 3.293L16.587 10l-2.293-2.293A1 1 0 0 1 15 6h6Z\"})),hamicon_4_sloid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 3h18v3H3zm0 7.5h18v3H3v-3ZM3 18h18v3H3v-3Z\"})),hamicon_5_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M4 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1ZM4 18a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1Zm6.5-13a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM17 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Z\"})),hamicon_6_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0-7a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0 14a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z\"})),happy_emoji_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 0 1-2 0V8a1 1 0 0 1 1-1Zm-8 5.575a.675.675 0 0 0-.675.675 5.175 5.175 0 1 0 10.35 0 .675.675 0 0 0-.675-.675h-9Z\",clipRule:\"evenodd\"})),heart_love_wishlist_favourite_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M20.433 5.288a5.797 5.797 0 0 0-8.198 0L12 5.523l-.235-.235a5.797 5.797 0 0 0-8.198 0 6.428 6.428 0 0 0 0 9.09l7.52 7.52a1.292 1.292 0 0 0 1.826 0l7.519-7.52a6.428 6.428 0 0 0 0-9.09Zm-4.169 1.285a1 1 0 1 0 0 2c.299 0 .595.114.822.341.323.323.46.76.41 1.183a1 1 0 0 0 1.986.234A3.43 3.43 0 0 0 18.5 7.5a3.156 3.156 0 0 0-2.236-.927Z\",clipRule:\"evenodd\"})),hemicon_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z\"})),hemicon_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z\"})),hemicon_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h7.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z\"})),hidden_hide_invisible_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19.87 3.07a.75.75 0 0 1 1.06 1.061l-16.799 16.8a.75.75 0 0 1-1.06-1.06l1.857-1.859c-1.397-1.145-2.487-2.454-3.25-3.516a20.19 20.19 0 0 1-1.255-1.985 9.52 9.52 0 0 1-.067-.127l-.025-.049a.758.758 0 0 1 0-.673l.015-.03.016-.03.016-.03.007-.014a18.243 18.243 0 0 1 .72-1.217A20.435 20.435 0 0 1 3.33 7.486c1.938-2.067 4.873-4.237 8.672-4.238 2.269 0 4.231.778 5.852 1.84L19.87 3.07ZM8.874 14.067A3.73 3.73 0 0 1 8.25 12 3.75 3.75 0 0 1 12 8.25a3.73 3.73 0 0 1 2.066.624l-5.192 5.192Zm11.657-6.405c.205.008.397.1.533.253a20.672 20.672 0 0 1 1.933 2.583 17.693 17.693 0 0 1 .661 1.138l.01.019a.77.77 0 0 1 .004.68l-.016.03-.032.06-.007.014a18.22 18.22 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.224 2.855c-1.938 2.067-4.872 4.237-8.672 4.237a9.97 9.97 0 0 1-3.243-.545.752.752 0 0 1-.277-1.25l11.5-11.082.057-.05a.753.753 0 0 1 .493-.16Z\",clipRule:\"evenodd\"})),home_house_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21.75 19A2.75 2.75 0 0 1 19 21.75h-3.5A1.75 1.75 0 0 1 13.75 20v-5a.25.25 0 0 0-.25-.25h-3a.25.25 0 0 0-.25.25v5a1.75 1.75 0 0 1-1.75 1.75H5A2.75 2.75 0 0 1 2.25 19v-8.1c0-.786.336-1.534.923-2.056l7-6.223a2.75 2.75 0 0 1 3.654 0l7 6.223a2.75 2.75 0 0 1 .923 2.056V19Z\"})),hourglass_timer_time_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M20 1.25a.75.75 0 0 1 0 1.5h-1.25v4.18c0 .92-.46 1.778-1.225 2.288L13.352 12l4.173 2.782a2.75 2.75 0 0 1 1.225 2.288v4.18H20a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1 0-1.5h1.25v-4.18c0-.92.46-1.778 1.225-2.288L10.648 12 6.475 9.218A2.75 2.75 0 0 1 5.25 6.93V2.75H4a.75.75 0 0 1 0-1.5h16ZM13.75 16.5a.75.75 0 0 0-.75-.75h-2a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 .75-.75Zm.75 2.25a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1 0-1.5h5Z\",clipRule:\"evenodd\"})),instagram_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M9 12a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm12.5 5.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM12 7a5 5 0 1 0 0 10 5 5 0 0 0 0-10Z\",clipRule:\"evenodd\"})),laptop_computer_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M2.75 15.25V6A2.75 2.75 0 0 1 5.5 3.25h13A2.75 2.75 0 0 1 21.25 6v9.25H2.75ZM13.5 6a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3ZM1.25 18v-1.25h21.5V18A2.75 2.75 0 0 1 20 20.75H4A2.75 2.75 0 0 1 1.25 18Z\",clipRule:\"evenodd\"})),left_align_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18ZM11 20a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h8Zm10-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18ZM11 8a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h8Z\"})),left_triangle_angle_arrow_backward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M17.75 19c0 1.442-1.646 2.265-2.8 1.4l-9.333-7a1.75 1.75 0 0 1 0-2.8l9.333-7c1.154-.865 2.8-.042 2.8 1.4v14Z\"})),linkedin_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm11.15 16.792h2.893v-5.945c0-2.515-1.425-3.731-3.417-3.731-1.992 0-2.83 1.552-2.83 1.552V9.652h-2.79v9.389h2.79v-4.929c0-1.32.607-2.106 1.77-2.106 1.07 0 1.584.755 1.584 2.106v4.929ZM4.96 6.69c0 .957.77 1.732 1.72 1.732s1.719-.775 1.719-1.732-.77-1.733-1.72-1.733S4.96 5.733 4.96 6.69Zm3.188 12.35H5.24V9.654h2.908v9.389Z\",clipRule:\"evenodd\"})),link_chains_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M6.264 9.281a1 1 0 0 1 1.415 1.415L5.165 13.21a3.977 3.977 0 1 0 5.625 5.625l2.514-2.514a1 1 0 0 1 1.415 1.414l-2.515 2.514a5.977 5.977 0 1 1-8.453-8.453L6.264 9.28Zm5.532-5.53a5.977 5.977 0 1 1 8.453 8.453l-2.514 2.515a1 1 0 0 1-1.414-1.415l2.514-2.514a3.977 3.977 0 1 0-5.625-5.625l-2.514 2.514a1.001 1.001 0 0 1-1.415-1.414l2.515-2.514Z\"}),(0,a.createElement)(\"path\",{d:\"M13.793 8.793a1 1 0 1 1 1.414 1.414l-5 5a1 1 0 0 1-1.414-1.414l5-5Z\"})),location_gps_map_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.625 22.65 12 22l.375.65a.75.75 0 0 1-.75 0Z\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11.625 22.65 12 22c.375.65.376.649.376.649l.002-.001.006-.004.02-.012.034-.02.04-.024a19.765 19.765 0 0 0 1.212-.814 22.44 22.44 0 0 0 2.847-2.456c2.058-2.11 4.213-5.239 4.213-9.113 0-4.928-3.9-8.955-8.75-8.955s-8.75 4.027-8.75 8.955c0 3.874 2.155 7.002 4.213 9.113a22.436 22.436 0 0 0 3.788 3.101 12.961 12.961 0 0 0 .344.213l.021.012.006.004.003.001ZM12 6.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Z\",clipRule:\"evenodd\"})),long_arrow_up_top_increase_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11 21V10H6a1 1 0 0 1-.707-1.707l6-6 .076-.068a1 1 0 0 1 1.338.068l6 6A1 1 0 0 1 18 10h-5v11a1 1 0 1 1-2 0Z\"})),mail_email_messege_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M4 3.25A2.75 2.75 0 0 0 1.25 6v12A2.75 2.75 0 0 0 4 20.75h16A2.75 2.75 0 0 0 22.75 18V6A2.75 2.75 0 0 0 20 3.25H4ZM6.6 7.2a1 1 0 1 0-1.2 1.6l4.8 3.6a3 3 0 0 0 3.6 0l4.8-3.6a1 1 0 0 0-1.2-1.6l-4.8 3.6a1 1 0 0 1-1.2 0L6.6 7.2Z\",clipRule:\"evenodd\"})),media_document_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M2.25 19V5A2.75 2.75 0 0 1 5 2.25h10.172c.73 0 1.429.29 1.944.806l3.828 3.828a2.75 2.75 0 0 1 .806 1.944V19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19ZM15 15.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2-7a1 1 0 0 0-1-1H8a1 1 0 0 0 0 2h4a1 1 0 0 0 1-1Zm4 3.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h8a1 1 0 0 0 1-1Z\"})),messege_comment_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M22.75 16A2.75 2.75 0 0 1 20 18.75H7.264l-4.795 3.836A.75.75 0 0 1 1.25 22V7A2.75 2.75 0 0 1 4 4.25h16A2.75 2.75 0 0 1 22.75 7v9ZM14 9.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z\",clipRule:\"evenodd\"})),messege_comment_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9ZM14 8.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z\",clipRule:\"evenodd\"})),messege_comment_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M4 3.25A2.75 2.75 0 0 0 1.25 6v9A2.75 2.75 0 0 0 4 17.75h3.75V21a.75.75 0 0 0 1.219.586l4.794-3.836H20A2.75 2.75 0 0 0 22.75 15V6A2.75 2.75 0 0 0 20 3.25H4ZM9 10a1 1 0 0 0-2 0v1a1 1 0 1 0 2 0v-1Zm3-1a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm5 1a1 1 0 1 0-2 0v1a1 1 0 1 0 2 0v-1Z\",clipRule:\"evenodd\"})),messege_comment_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9Z\"})),messege_comment_5_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M21.75 12A9.75 9.75 0 0 1 12 21.75H3a.75.75 0 0 1-.75-.75v-9c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z\",clipRule:\"evenodd\"})),messege_comment_6_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M17 3.25A5.75 5.75 0 0 1 22.75 9v7a.75.75 0 0 1-.75.75h-5.31a4.75 4.75 0 0 1-4.69 4H2a.75.75 0 0 1-.75-.75v-6a4.751 4.751 0 0 1 4-4.691V9A5.75 5.75 0 0 1 11 3.25h6ZM5.25 10.838A3.25 3.25 0 0 0 2.75 14v5.25H12a3.25 3.25 0 0 0 3.162-2.5H11A5.75 5.75 0 0 1 5.25 11v-.162ZM11 10.75a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2h-6Zm0-3.5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z\",clipRule:\"evenodd\"})),messege_comment_7_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M22.75 11.5c0 5.218-4.932 9.25-10.75 9.25-.921 0-1.817-.101-2.672-.29l-2.956 1.691A.75.75 0 0 1 5.25 21.5v-2.8c-2.411-1.675-4-4.258-4-7.2 0-5.218 4.932-9.25 10.75-9.25s10.75 4.032 10.75 9.25ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2 2.5a1 1 0 1 1 0 2h-4a1 1 0 1 1 0-2h4Z\",clipRule:\"evenodd\"})),messege_comment_8_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M14.5 3.25c4.542 0 8.25 3.613 8.25 8.102 0 2.519-1.172 4.764-3 6.247V20a.75.75 0 0 1-1.163.626l-2.13-1.404a8.41 8.41 0 0 1-1.957.231 8.323 8.323 0 0 1-4.61-1.382 7.867 7.867 0 0 1-3.075-.06l-1.82 1.127A.75.75 0 0 1 3.85 18.5v-1.87c-1.576-1.222-2.6-3.07-2.6-5.157C1.25 7.7 4.557 4.75 8.5 4.75c.319 0 .634.02.942.057a.755.755 0 0 1 .15.033A8.318 8.318 0 0 1 14.5 3.25ZM8.08 6.265c-3.03.195-5.33 2.505-5.33 5.208 0 1.68.878 3.196 2.276 4.162a.75.75 0 0 1 .324.617v.903l.943-.583a.75.75 0 0 1 .587-.086c.45.12.925.188 1.416.203A7.98 7.98 0 0 1 8.08 6.265Z\",clipRule:\"evenodd\"})),messenger_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M1.25 11.677C1.25 5.687 5.945 1.25 12 1.25s10.75 4.44 10.75 10.43c0 5.99-4.695 10.427-10.75 10.427a11.75 11.75 0 0 1-3.112-.414.864.864 0 0 0-.575.043l-2.134.94a.86.86 0 0 1-1.207-.76l-.059-1.913a.85.85 0 0 0-.288-.613c-2.09-1.87-3.375-4.58-3.375-7.713Zm7.452-1.959-3.157 5.01c-.304.48.287 1.02.739.677l3.391-2.575a.644.644 0 0 1 .777-.003l2.513 1.884a1.612 1.612 0 0 0 2.332-.43l3.161-5.006c.301-.481-.29-1.024-.742-.68l-3.391 2.574a.644.644 0 0 1-.777.003l-2.513-1.884a1.613 1.613 0 0 0-2.333.43Z\",clipRule:\"evenodd\"})),microsoft_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.25 2.25v9h-9V5A2.75 2.75 0 0 1 5 2.25h6.25Zm1.5 0v9h9V5A2.75 2.75 0 0 0 19 2.25h-6.25Zm9 10.5h-9v9H19A2.75 2.75 0 0 0 21.75 19v-6.25Zm-10.5 9v-9h-9V19A2.75 2.75 0 0 0 5 21.75h6.25Z\"})),middle_align_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm-5 18a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h8Zm5-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm-5-6a1 1 0 1 1 0 2H8a1 1 0 0 1 0-2h8Z\"})),mobile_smartphone_phone_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M17 22.75A2.75 2.75 0 0 0 19.75 20V4A2.75 2.75 0 0 0 17 1.25H7A2.75 2.75 0 0 0 4.25 4v16A2.75 2.75 0 0 0 7 22.75h10ZM13.5 4a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3Z\",clipRule:\"evenodd\"})),pause_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M2.25 5A2.75 2.75 0 0 1 5 2.25h2.5A2.75 2.75 0 0 1 10.25 5v14a2.75 2.75 0 0 1-2.75 2.75H5A2.75 2.75 0 0 1 2.25 19V5Zm11.5 0a2.75 2.75 0 0 1 2.75-2.75H19A2.75 2.75 0 0 1 21.75 5v14A2.75 2.75 0 0 1 19 21.75h-2.5A2.75 2.75 0 0 1 13.75 19V5Z\",clipRule:\"evenodd\"})),pinterest_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 4.554 2.833 8.448 6.832 10.014-.094-.85-.178-2.159.038-3.087.195-.84 1.26-5.344 1.26-5.344s-.321-.644-.321-1.596c0-1.495.866-2.61 1.945-2.61.917 0 1.36.688 1.36 1.514 0 .922-.587 2.301-.89 3.579-.254 1.07.536 1.943 1.592 1.943 1.91 0 3.379-2.015 3.379-4.923 0-2.574-1.85-4.374-4.49-4.374-3.06 0-4.855 2.295-4.855 4.665 0 .925.356 1.915.8 2.454.088.106.101.2.075.308-.082.34-.263 1.07-.298 1.22-.047.196-.156.238-.36.143-1.343-.625-2.182-2.588-2.182-4.165 0-3.39 2.464-6.505 7.103-6.505 3.729 0 6.627 2.657 6.627 6.209 0 3.705-2.336 6.686-5.578 6.686-1.09 0-2.114-.566-2.464-1.234 0 0-.54 2.053-.67 2.555-.243.934-.898 2.105-1.336 2.819A10.76 10.76 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Z\"})),play_media_video_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 22.75c5.936 0 10.75-4.813 10.75-10.75S17.936 1.25 12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75ZM10.416 7.376A.75.75 0 0 0 9.25 8v8a.75.75 0 0 0 1.166.624l6-4a.75.75 0 0 0 0-1.248l-6-4Z\",clipRule:\"evenodd\"})),price_tag_label_category_sale_discount_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M21.444 13.616a2.75 2.75 0 0 0 .806-1.944V3.5a1.75 1.75 0 0 0-1.75-1.75h-8.172c-.73 0-1.429.29-1.945.806l-8 8a2.75 2.75 0 0 0 0 3.888l7.172 7.172a2.75 2.75 0 0 0 3.889 0l8-8ZM8.707 12.293a1 1 0 1 0-1.414 1.414l3 3 .076.068a1 1 0 0 0 1.406-1.406l-.068-.076-3-3ZM18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\",clipRule:\"evenodd\"})),price_tag_offer_sale_coupon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M18.796 6.963c-.367 1.048-1.172 1.993-2.432 2.693a.75.75 0 1 1-.728-1.311c.99-.55 1.517-1.229 1.744-1.878a2.583 2.583 0 0 0-.1-1.941c-.55-1.208-1.999-2.11-3.853-1.618-2.791.74-6.15 1.333-9.695-.024a.75.75 0 1 1 .536-1.401c3.09 1.183 6.062.695 8.774-.025 2.566-.68 4.75.577 5.603 2.445.425.933.517 2.017.151 3.06Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19.74 7.294c-.46 1.313-1.45 2.436-2.89 3.236a1.75 1.75 0 1 1-1.7-3.06c.81-.45 1.152-.95 1.286-1.333a1.59 1.59 0 0 0-.066-1.197 1.835 1.835 0 0 0-.101-.19h-4.44c-.73 0-1.43.29-1.945.805l-6.5 6.5a2.75 2.75 0 0 0 0 3.89l6.171 6.171a2.75 2.75 0 0 0 3.89 0l6.5-6.5a2.75 2.75 0 0 0 .805-1.944V6.5c0-.598-.3-1.127-.759-1.442.083.73.01 1.49-.252 2.236Zm-8.71 5.176a.75.75 0 0 0-1.06 1.06l2 2a.75.75 0 0 0 1.06-1.06l-2-2Zm-2.5 1.5a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06-1.06l-3-3Z\",clipRule:\"evenodd\"})),reddit_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M13.875 4.75h2.354a2.751 2.751 0 1 0 0-1.5h-2.354A2.75 2.75 0 0 0 11.125 6v2.028c-1.76.115-3.39.571-4.771 1.281a2.875 2.875 0 1 0-3.964 4.109A5.777 5.777 0 0 0 2 15.5C2 19.642 6.477 23 12 23s10-3.358 10-7.5c0-.722-.136-1.421-.39-2.082a2.875 2.875 0 1 0-3.963-4.109C16.2 8.566 14.48 8.1 12.624 8.014V6c0-.69.56-1.25 1.25-1.25ZM9 14.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 2.97a.75.75 0 0 0-1.06 1.06c.954.955 2.57 1.345 4.03 1.345 1.46 0 3.075-.39 4.03-1.345a.75.75 0 0 0-1.06-1.06c-.546.545-1.68.905-2.97.905-1.29 0-2.424-.36-2.97-.905ZM16.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\",clipRule:\"evenodd\"})),refresh_reset_cycle_loop_infinity_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 21v-5a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H5.756A7.977 7.977 0 0 0 12 20a8 8 0 0 0 8-8 1 1 0 1 1 2 0c0 5.523-4.477 10-10 10a9.967 9.967 0 0 1-7-2.863V21a1 1 0 1 1-2 0Zm-1-9C2 6.477 6.477 2 12 2a9.966 9.966 0 0 1 7 2.86V3a1 1 0 1 1 2 0v5a1 1 0 0 1-1 1h-5a1 1 0 1 1 0-2h3.245A8 8 0 0 0 4 12a1 1 0 1 1-2 0Z\"})),restriction_no_stop_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM6.383 19.03A9 9 0 0 0 19.03 6.383L6.383 19.03ZM12 3a9 9 0 0 0-7.031 14.616L17.616 4.97A8.96 8.96 0 0 0 12 3Z\",clipRule:\"evenodd\"})),right_align_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm0 18a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Zm0-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm0-6a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Z\"})),right_triangle_angle_play_arrow_forward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M6.25 5c0-1.442 1.646-2.265 2.8-1.4l9.334 7c.933.7.933 2.1 0 2.8l-9.334 7c-1.154.865-2.8.042-2.8-1.4V5Z\"})),search_magnify_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M16.618 18.032a9 9 0 1 1 1.414-1.414l3.675 3.675a1 1 0 0 1-1.414 1.414l-3.675-3.675ZM4 11a7 7 0 1 1 12.042 4.856 1.006 1.006 0 0 0-.186.186A7 7 0 0 1 4 11Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M10 6.5a1 1 0 0 1 1-1 5.5 5.5 0 0 1 5.5 5.5 1 1 0 1 1-2 0A3.5 3.5 0 0 0 11 7.5a1 1 0 0 1-1-1Z\",clipRule:\"evenodd\"})),settings_tool_function_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M15.183 2.612a1.75 1.75 0 0 0-1.706-1.362h-2.953a1.75 1.75 0 0 0-1.706 1.362l-.355 1.562a1.25 1.25 0 0 1-1.587.918L5.25 4.59a1.75 1.75 0 0 0-2.021.782L1.772 7.837a1.75 1.75 0 0 0 .338 2.193l1.16 1.04a1.25 1.25 0 0 1 0 1.862L2.11 13.97a1.75 1.75 0 0 0-.337 2.193l1.455 2.464a1.751 1.751 0 0 0 2.021.783l1.628-.5a1.25 1.25 0 0 1 1.586.917l.355 1.56a1.75 1.75 0 0 0 1.707 1.363h2.952a1.75 1.75 0 0 0 1.706-1.362l.355-1.56a1.25 1.25 0 0 1 1.586-.919l1.628.501a1.75 1.75 0 0 0 2.02-.783l1.457-2.464a1.75 1.75 0 0 0-.34-2.193l-1.157-1.038a1.25 1.25 0 0 1 0-1.863l1.159-1.039a1.75 1.75 0 0 0 .338-2.193l-1.456-2.464a1.75 1.75 0 0 0-2.02-.782l-1.629.5a1.25 1.25 0 0 1-1.586-.917l-.355-1.562ZM15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z\",clipRule:\"evenodd\"})),share_social_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"m9.075 9.42 5.865-2.933a3.45 3.45 0 1 1 1.005 1.734l-5.976 2.988a3.915 3.915 0 0 1 0 1.583l5.976 2.987a3.45 3.45 0 1 1-1.005 1.734L9.074 14.58a3.9 3.9 0 1 1 0-5.16Z\",clipRule:\"evenodd\"})),shopping_cart_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M9.75 19.25a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm9.75 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm1.5 0a2.5 2.5 0 1 1-4.79-1h-5.17a2.5 2.5 0 1 1-4.33-.442 1.745 1.745 0 0 1-.572-1.069L4.376 3.966a.25.25 0 0 0-.247-.216H2a.75.75 0 0 1 0-1.5h2.129a1.75 1.75 0 0 1 1.733 1.51l.068.49h14.874a1.75 1.75 0 0 1 1.722 2.06l-1.152 6.403a1.75 1.75 0 0 1-1.572 1.434l-12.36 1.067.182 1.32a.25.25 0 0 0 .247.216H18.5a2.5 2.5 0 0 1 2.5 2.5Z\"})),skype_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M7.5 1.25a6.25 6.25 0 0 0-5.197 9.723 9.75 9.75 0 0 0 10.724 10.724 6.25 6.25 0 0 0 8.67-8.67A9.75 9.75 0 0 0 10.973 2.303 6.224 6.224 0 0 0 7.5 1.25Zm4.5 6C9.8 7.25 8.25 8.4 8.25 10c0 1.015.647 1.627 1.337 1.991.644.34 1.468.546 2.178.723l.053.014c.778.194 1.429.361 1.894.607.435.23.538.43.538.665 0 .4-.45 1.25-2.25 1.25S9.75 14.4 9.75 14a.75.75 0 0 0-1.5 0c0 1.6 1.55 2.75 3.75 2.75s3.75-1.15 3.75-2.75c0-1.015-.647-1.627-1.337-1.991-.644-.34-1.468-.546-2.178-.723l-.053-.014c-.778-.194-1.429-.361-1.894-.607-.435-.23-.538-.43-.538-.665 0-.4.45-1.25 2.25-1.25s2.25.85 2.25 1.25a.75.75 0 0 0 1.5 0c0-1.6-1.55-2.75-3.75-2.75Z\",clipRule:\"evenodd\"})),smile_emoji_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7.5a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm-7.556 6.275a.75.75 0 1 0-1.43.45 5.752 5.752 0 0 0 10.973 0 .75.75 0 1 0-1.431-.45 4.252 4.252 0 0 1-8.112 0Z\",clipRule:\"evenodd\"})),social_community_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.75a3.384 3.384 0 0 1 3.238 2.408C18.858 5.46 21.4 8.895 21.4 13c0 .506-.039 1.002-.113 1.486a3.388 3.388 0 0 1 1.463 2.791 3.386 3.386 0 0 1-4.785 3.085A9.3 9.3 0 0 1 12 22.5a9.302 9.302 0 0 1-5.965-2.138 3.386 3.386 0 0 1-4.785-3.085c0-1.156.579-2.179 1.463-2.79A9.77 9.77 0 0 1 2.6 13c0-4.105 2.543-7.54 6.162-8.841A3.384 3.384 0 0 1 12 1.75ZM19.4 13c0-2.998-1.707-5.533-4.22-6.704A3.383 3.383 0 0 1 12 8.527a3.383 3.383 0 0 1-3.18-2.231C6.307 7.467 4.6 10.002 4.6 13c0 .301.017.598.05.889a3.385 3.385 0 0 1 3.363 3.388c0 .63-.172 1.221-.471 1.727A7.322 7.322 0 0 0 12 20.5a7.321 7.321 0 0 0 4.458-1.495 3.384 3.384 0 0 1-.47-1.728 3.385 3.385 0 0 1 3.361-3.388c.034-.291.05-.588.05-.889Z\",clipRule:\"evenodd\"})),square_rounded_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21.75 19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19V5A2.75 2.75 0 0 1 5 2.25h14A2.75 2.75 0 0 1 21.75 5v14Z\"})),star_rating_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M10.3 2.793c.67-1.443 2.73-1.443 3.4 0l2.136 4.602a.294.294 0 0 0 .232.166l5.068.596c1.578.186 2.232 2.136 1.05 3.222l-3.748 3.444a.28.28 0 0 0-.087.261l.995 4.975c.315 1.574-1.369 2.76-2.75 1.99l-4.45-2.474a.3.3 0 0 0-.291 0l-4.45 2.475c-1.382.768-3.065-.417-2.75-1.991l.995-4.975a.28.28 0 0 0-.087-.26l-3.748-3.445c-1.182-1.086-.529-3.036 1.05-3.222l5.067-.596a.293.293 0 0 0 .232-.166L10.3 2.793Z\"})),stopwatch_reading_time_timer_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M15 1.5a1 1 0 0 0-1-1h-4a1 1 0 1 0 0 2h1v.8c-4.915.502-8.75 4.653-8.75 9.7 0 5.385 4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75c0-5.047-3.835-9.198-8.75-9.7v-.8h1a1 1 0 0 0 1-1Zm-4 6a1 1 0 1 1 2 0v4.985l3.081 2.202.08.063a1 1 0 0 1-1.156 1.62l-.086-.056-3.5-2.5A1 1 0 0 1 11 13V7.5Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M18.293 3.293a1 1 0 0 1 1.414 0l2 2 .068.076a1 1 0 0 1-1.406 1.406l-.076-.068-2-2a1 1 0 0 1 0-1.414Z\"})),tablet_ipad_pad_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M18 22.75A2.75 2.75 0 0 0 20.75 20V4A2.75 2.75 0 0 0 18 1.25H6A2.75 2.75 0 0 0 3.25 4v16A2.75 2.75 0 0 0 6 22.75h12ZM12.01 4a1 1 0 1 1 0 2C11.457 6 11 5.552 11 5s.457-1 1.01-1Z\",clipRule:\"evenodd\"})),tag_bookmark_save_favourite_mark_discount_solid_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M20.75 22a.75.75 0 0 1-1.2.6l-6.8-5.1a1.25 1.25 0 0 0-1.415-.059l-.085.059-6.8 5.1a.75.75 0 0 1-1.2-.6V4A2.75 2.75 0 0 1 6 1.25h12A2.75 2.75 0 0 1 20.75 4v18Z\"})),tiktok_logo_icon_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm2.364 5.25a1 1 0 1 0-2 0v7.792a2.195 2.195 0 0 1-2.182 2.208A2.195 2.195 0 0 1 8 14.292c0-1.228.985-2.209 2.182-2.209a1 1 0 1 0 0-2C7.864 10.083 6 11.975 6 14.292c0 2.316 1.864 4.208 4.182 4.208 2.317 0 4.182-1.892 4.182-4.208V9.934a4.74 4.74 0 0 0 2.636.774 1 1 0 1 0 0-2c-1.713 0-2.636-1.377-2.636-2.208Z\",clipRule:\"evenodd\"})),tiktok_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19 21.75A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14ZM6 14.292c0-2.316 1.864-4.209 4.182-4.209a1 1 0 0 1 0 2c-1.197 0-2.182.982-2.182 2.209s.985 2.208 2.182 2.208 2.181-.98 2.181-2.208V6.5a1 1 0 0 1 2 0c0 .83.924 2.208 2.637 2.208a1 1 0 0 1 0 2 4.738 4.738 0 0 1-2.637-.776v4.36c0 2.316-1.864 4.208-4.181 4.208C7.864 18.5 6 16.608 6 14.292Z\",clipRule:\"evenodd\"})),triangle_rounded_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632Z\",clipRule:\"evenodd\"})),triangle_shape_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 2.25a.75.75 0 0 1 .646.37l10 17A.75.75 0 0 1 22 20.75H2a.75.75 0 0 1-.646-1.13l10-17A.75.75 0 0 1 12 2.25Z\",clipRule:\"evenodd\"})),twitter_x_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M20.292 2.293a1.001 1.001 0 0 1 1.415 1.414l-7.125 7.124 7.026 9.73A.751.751 0 0 1 21 21.75h-5a.751.751 0 0 1-.608-.311l-4.789-6.63-6.896 6.897a1 1 0 0 1-1.414-1.415l7.124-7.125L2.392 3.44A.751.751 0 0 1 3 2.25h5l.09.005a.751.751 0 0 1 .518.306l4.787 6.628 6.897-6.896Z\",clipRule:\"evenodd\"})),upload_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11.47 12.47a.75.75 0 0 1 1.06 0l2.5 2.5a.75.75 0 0 1-.53 1.28h-1.75V21a.75.75 0 0 1-1.5 0v-4.75H9.5a.75.75 0 0 1-.53-1.28l2.5-2.5Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z\",clipRule:\"evenodd\"})),view_count_show_visible_eye_open_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"m23.67 11.663-.015-.03-.032-.06-.007-.013a18.339 18.339 0 0 0-.72-1.217 20.43 20.43 0 0 0-2.224-2.856C18.733 5.42 15.799 3.25 12 3.25c-3.8 0-6.734 2.17-8.672 4.237a20.43 20.43 0 0 0-2.796 3.801 11.69 11.69 0 0 0-.149.272l-.007.014-.032.06-.015.03a.76.76 0 0 0 0 .673l.015.03.032.06.007.013a18.262 18.262 0 0 0 .72 1.217 20.432 20.432 0 0 0 2.225 2.856C5.266 18.58 8.2 20.75 12 20.75c3.8 0 6.733-2.17 8.672-4.237a20.433 20.433 0 0 0 2.795-3.801c.065-.115.115-.208.149-.272l.007-.013.02-.037.012-.024.015-.03a.756.756 0 0 0 0-.673ZM12 5.75a4.25 4.25 0 1 1 0 8.5 4.25 4.25 0 0 1 0-8.5Z\",clipRule:\"evenodd\"})),view_count_show_visible_eye_open_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"m.33 11.664.015-.03.032-.06.007-.014a18.263 18.263 0 0 1 .72-1.217 20.43 20.43 0 0 1 2.224-2.856C5.268 5.42 8.201 3.25 12 3.25c3.8 0 6.734 2.17 8.672 4.237a20.425 20.425 0 0 1 2.796 3.801c.065.115.115.208.149.272l.007.014.032.06.014.03a.75.75 0 0 1 .001.672l-.015.03a5.739 5.739 0 0 1-.032.06l-.007.014a18.252 18.252 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.225 2.856C18.734 18.58 15.8 20.75 12 20.75c-3.8 0-6.733-2.17-8.671-4.237a20.432 20.432 0 0 1-2.796-3.801 12.06 12.06 0 0 1-.149-.272l-.007-.013-.032-.06-.015-.03a.756.756 0 0 1 0-.673ZM15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z\",clipRule:\"evenodd\"})),view_count_show_visible_eye_open_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M23.616 11.573C20.503 7.077 16.29 4.75 12 4.75c-4.291 0-8.504 2.327-11.617 6.823a.75.75 0 0 0 0 .854C3.496 16.922 7.71 19.25 12 19.25c4.29 0 8.503-2.328 11.616-6.823a.75.75 0 0 0 0-.854ZM17.25 12a5.25 5.25 0 1 0-10.5 0 5.25 5.25 0 0 0 10.5 0Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M14.25 12A2.25 2.25 0 0 0 12 9.75a.75.75 0 0 1 0-1.5A3.75 3.75 0 0 1 15.75 12a.75.75 0 0 1-1.5 0Z\"})),view_count_show_visible_eye_open_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M14.25 10a1.75 1.75 0 0 0 3.366.673l.049-.098a.751.751 0 0 1 1.318.06 7.75 7.75 0 1 1-3.62-3.62.75.75 0 0 1-.036 1.369A1.751 1.751 0 0 0 14.25 10Z\"}),(0,a.createElement)(\"path\",{d:\"M12 2c4.335 0 8.706 2.263 10.89 6.546a1 1 0 1 1-1.78.908C19.301 5.911 15.664 4 12 4 8.335 4 4.698 5.911 2.89 9.454a1 1 0 0 1-1.78-.908C3.293 4.263 7.664 2 12 2Z\"})),view_count_show_visible_eye_open_5_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.75 12H12V7.25A4.75 4.75 0 1 0 16.75 12Z\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"m23.167 12.083.727.364c.141-.281.14-.613 0-.895l-.002-.003-.003-.007-.011-.022a10.615 10.615 0 0 0-.192-.354 20.675 20.675 0 0 0-2.831-3.85C18.895 5.226 15.899 3 12 3 8.1 3 5.104 5.226 3.145 7.316a20.674 20.674 0 0 0-2.831 3.85 12.375 12.375 0 0 0-.192.354l-.011.022-.003.007-.002.002s0 .002.894.449l-.894-.447a1 1 0 0 0 0 .894l.002.004.003.007.011.022a8.267 8.267 0 0 0 .192.354 20.67 20.67 0 0 0 2.831 3.85C5.105 18.774 8.1 21 12 21c3.9 0 6.895-2.226 8.855-4.316a20.672 20.672 0 0 0 2.831-3.85 11.81 11.81 0 0 0 .175-.322l.017-.032.011-.022.003-.007.002-.002s0-.002-.727-.366Zm-.096-.119.823-.412-.823.412ZM12 5a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z\",clipRule:\"evenodd\"})),warning_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM13 8a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0V8Zm-1 6.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z\",clipRule:\"evenodd\"})),warning_triangle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632ZM11 9v4a1 1 0 1 0 2 0V9a1 1 0 1 0-2 0Zm0 7.5v.5a1 1 0 1 0 2 0v-.5a1 1 0 1 0-2 0Z\",clipRule:\"evenodd\"})),whatsapp_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 1.802.444 3.501 1.228 4.994l-1.206 4.824a.75.75 0 0 0 .91.91l4.824-1.206A10.706 10.706 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Zm3.16 12.04c.245.09 1.56.733 1.828.866v.001l.145.071c.187.09.313.151.367.24.067.111.067.645-.156 1.266-.223.622-1.292 1.19-1.805 1.266-.461.069-1.044.097-1.685-.106a15.383 15.383 0 0 1-1.525-.56c-2.506-1.078-4.2-3.495-4.522-3.954l-.047-.066-.002-.002c-.14-.186-1.09-1.447-1.09-2.752 0-1.226.605-1.87.883-2.165l.053-.056a.984.984 0 0 1 .713-.333c.179 0 .357.002.513.01h.06c.156 0 .35-.001.541.456.078.185.193.463.313.753.225.547.469 1.137.512 1.224.067.133.112.288.022.466l-.039.08a1.49 1.49 0 0 1-.228.364l-.14.166c-.09.111-.182.222-.261.3-.134.133-.273.277-.117.544.156.266.692 1.138 1.488 1.844a6.905 6.905 0 0 0 1.973 1.241c.074.032.134.058.178.08.267.133.423.111.58-.067.155-.177.668-.777.846-1.043.178-.267.357-.223.602-.134Z\",clipRule:\"evenodd\"})),wordpress_logo_icon_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M2.778 12a9.225 9.225 0 0 0 5.198 8.3l-4.4-12.054A9.18 9.18 0 0 0 2.779 12Zm15.447-.465c0-1.139-.409-1.929-.76-2.543-.466-.76-.905-1.402-.905-2.162 0-.847.642-1.637 1.548-1.637.04 0 .079.005.119.007A9.185 9.185 0 0 0 12 2.778a9.21 9.21 0 0 0-7.705 4.158c.216.007.421.01.593.01.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.055.087l3.359 9.988 2.018-6.052-1.437-3.936c-.497-.03-.967-.088-.967-.088-.497-.03-.439-.79.058-.76 0 0 1.523.118 2.428.118.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.054.087l3.332 9.913.92-3.074c.398-1.276.701-2.192.701-2.982l-.002.002Z\"}),(0,a.createElement)(\"path\",{d:\"m12.16 12.807-2.766 8.04a9.25 9.25 0 0 0 5.667-.147.719.719 0 0 1-.065-.126l-2.835-7.767Zm7.931-5.231c.04.293.062.61.062.948 0 .935-.176 1.988-.702 3.302l-2.816 8.145a9.22 9.22 0 0 0 4.585-7.973 9.157 9.157 0 0 0-1.13-4.424l.002.002Z\"}),(0,a.createElement)(\"path\",{d:\"M12 1.25C6.071 1.25 1.25 6.072 1.25 12S6.072 22.75 12 22.75c5.926 0 10.748-4.822 10.748-10.75C22.75 6.072 17.926 1.25 12 1.25Zm0 21.007c-5.656 0-10.257-4.601-10.257-10.259 0-5.657 4.6-10.255 10.256-10.255 5.655 0 10.256 4.601 10.256 10.257S17.655 22.259 12 22.259v-.002Z\"})),wordpress_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 1.25C6.075 1.25 1.25 6.074 1.25 12c0 5.928 4.824 10.75 10.75 10.75 5.928 0 10.75-4.822 10.75-10.75 0-5.926-4.822-10.75-10.75-10.75ZM2.336 12c0-1.4.302-2.732.837-3.933l4.61 12.63a9.665 9.665 0 0 1-5.447-8.696Zm9.666 9.665a9.629 9.629 0 0 1-2.731-.394l2.9-8.426 2.97 8.14c.02.047.044.091.07.132a9.655 9.655 0 0 1-3.21.548Zm1.33-14.195a19.275 19.275 0 0 0 1.106-.094c.522-.06.46-.826-.061-.795 0 0-1.565.122-2.577.122-.949 0-2.545-.122-2.545-.122-.52-.03-.583.765-.06.795 0 0 .492.062 1.013.094l1.506 4.125-2.117 6.342L6.08 7.47a20.357 20.357 0 0 0 1.106-.092c.52-.063.46-.828-.063-.797 0 0-1.563.122-2.575.122-.182 0-.395-.004-.621-.011A9.651 9.651 0 0 1 12 2.335a9.63 9.63 0 0 1 6.527 2.538c-.043-.002-.083-.007-.127-.007-.95 0-1.622.825-1.622 1.715 0 .795.46 1.47.949 2.266.367.644.796 1.471.796 2.665 0 .827-.316 1.787-.736 3.124l-.963 3.222L13.332 7.47Zm3.528 12.884 2.951-8.535c.552-1.38.734-2.481.734-3.461 0-.357-.022-.686-.064-.995A9.608 9.608 0 0 1 21.665 12a9.661 9.661 0 0 1-4.805 8.353Z\"})),youtube_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19.29 3.608c-3.693-.479-10.531-.477-14.402.003-1.874.233-3.194 1.843-3.41 3.831-.304 2.773-.304 6.343 0 9.116.216 1.988 1.536 3.598 3.41 3.83 3.87.481 10.71.483 14.401.004 1.784-.232 2.995-1.77 3.21-3.63.334-2.868.334-6.656 0-9.524-.215-1.86-1.426-3.398-3.21-3.63Zm-8.904 4.749A.75.75 0 0 0 9.25 9v6a.75.75 0 0 0 1.136.643l5-3a.75.75 0 0 0 0-1.286l-5-3Z\",clipRule:\"evenodd\"})),full_screen_corners_out_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M2 8.5V5C2 3.34315 3.34315 2 5 2H8.5C9.05228 2 9.5 2.44772 9.5 3C9.5 3.55228 9.05228 4 8.5 4H5C4.44772 4 4 4.44772 4 5V8.5C4 9.05228 3.55228 9.5 3 9.5C2.44772 9.5 2 9.05228 2 8.5Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M2 19V15.5C2 14.9477 2.44772 14.5 3 14.5C3.55228 14.5 4 14.9477 4 15.5V19C4 19.5523 4.44772 20 5 20H8.5C9.05228 20 9.5 20.4477 9.5 21C9.5 21.5523 9.05228 22 8.5 22H5C3.34315 22 2 20.6569 2 19Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M20 8V5C20 4.44772 19.5523 4 19 4H15.5C14.9477 4 14.5 3.55228 14.5 3C14.5 2.44772 14.9477 2 15.5 2H19C20.6569 2 22 3.34315 22 5V8C22 8.55228 21.5523 9 21 9C20.4477 9 20 8.55228 20 8Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M20 19V15.5C20 14.9477 20.4477 14.5 21 14.5C21.5523 14.5 22 14.9477 22 15.5V19C22 20.6569 20.6569 22 19 22H15.5C14.9477 22 14.5 21.5523 14.5 21C14.5 20.4477 14.9477 20 15.5 20H19C19.5523 20 20 19.5523 20 19Z\",fill:\"currentColor\"})),zoom_in_magnifying_glass_plus_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M9.99512 14V12.0049H8C7.44772 12.0049 7 11.5572 7 11.0049C7.00007 10.4527 7.44776 10.0049 8 10.0049H9.99512V8C9.99512 7.44772 10.4428 7 10.9951 7C11.5473 7.00007 11.9951 7.44776 11.9951 8V10.0049H14C14.5522 10.0049 14.9999 10.4527 15 11.0049C15 11.5572 14.5523 12.0049 14 12.0049H11.9951V14C11.9951 14.5522 11.5473 14.9999 10.9951 15C10.4428 15 9.99512 14.5523 9.99512 14Z\",fill:\"currentColor\"})),zoom_out_magnifying_glass_minus_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M14 10.005C14.5523 10.005 15 10.4527 15 11.005C15 11.5573 14.5523 12.005 14 12.005H8C7.44772 12.005 7 11.5573 7 11.005C7 10.4527 7.44772 10.005 8 10.005H14Z\",fill:\"currentColor\"})),gallery_indicator_image_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M16.75 7C16.75 8.10457 15.8546 9 14.75 9C13.6454 9 12.75 8.10457 12.75 7C12.75 5.89543 13.6454 5 14.75 5C15.8546 5 16.75 5.89543 16.75 7Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M6.5 18.5C6.5 18.3619 6.38807 18.25 6.25 18.25H4C3.86193 18.25 3.75 18.3619 3.75 18.5V20C3.75 20.1381 3.86193 20.25 4 20.25H6.25C6.38807 20.25 6.5 20.1381 6.5 20V18.5ZM8 20C8 20.9665 7.2165 21.75 6.25 21.75H4C3.0335 21.75 2.25 20.9665 2.25 20V18.5C2.25 17.5335 3.0335 16.75 4 16.75H6.25C7.2165 16.75 8 17.5335 8 18.5V20Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M13.5 18.5C13.5 18.3619 13.3881 18.25 13.25 18.25H11C10.8619 18.25 10.75 18.3619 10.75 18.5V20C10.75 20.1381 10.8619 20.25 11 20.25H13.25C13.3881 20.25 13.5 20.1381 13.5 20V18.5ZM15 20C15 20.9665 14.2165 21.75 13.25 21.75H11C10.0335 21.75 9.25 20.9665 9.25 20V18.5C9.25 17.5335 10.0335 16.75 11 16.75H13.25C14.2165 16.75 15 17.5335 15 18.5V20Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M20.25 18.5C20.25 18.3619 20.1381 18.25 20 18.25H18C17.8619 18.25 17.75 18.3619 17.75 18.5V20C17.75 20.1381 17.8619 20.25 18 20.25H20C20.1381 20.25 20.25 20.1381 20.25 20V18.5ZM21.75 20C21.75 20.9665 20.9665 21.75 20 21.75H18C17.0335 21.75 16.25 20.9665 16.25 20V18.5C16.25 17.5335 17.0335 16.75 18 16.75H20C20.9665 16.75 21.75 17.5335 21.75 18.5V20Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M19 15.75C20.5188 15.75 21.75 14.5188 21.75 13V5C21.75 3.4812 20.5188 2.25 19 2.25H5C3.4812 2.25 2.25 3.4812 2.25 5V13C2.25 14.5188 3.4812 15.75 5 15.75H19ZM3.75 11.8613V5C3.75 4.30957 4.30963 3.75 5 3.75H19C19.6904 3.75 20.25 4.30957 20.25 5V10.8613L19.9442 10.5557C18.8703 9.48169 17.1295 9.48169 16.0555 10.5557L15.3837 11.2266C14.8956 11.7146 14.1042 11.7146 13.6161 11.2266L10.9442 8.55566C9.8703 7.48169 8.12946 7.48169 7.05554 8.55566L3.75 11.8613Z\",fill:\"currentColor\"})),rocket_fly_boost_launch_pro_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M7.79289 14.7929C8.18342 14.4024 8.81643 14.4024 9.20696 14.7929C9.59748 15.1834 9.59748 15.8164 9.20696 16.207L4.20696 21.207C3.81643 21.5975 3.18342 21.5975 2.79289 21.207C2.40237 20.8164 2.40237 20.1834 2.79289 19.7929L7.79289 14.7929Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M10.2929 17.2929C10.6834 16.9024 11.3164 16.9024 11.707 17.2929C12.0975 17.6834 12.0975 18.3164 11.707 18.707L9.70696 20.707C9.31643 21.0975 8.68342 21.0975 8.29289 20.707C7.90237 20.3164 7.90237 19.6834 8.29289 19.2929L10.2929 17.2929Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M5.29289 12.2929C5.68342 11.9024 6.31643 11.9024 6.70696 12.2929C7.09748 12.6834 7.09748 13.3164 6.70696 13.707L4.70696 15.707C4.31643 16.0975 3.68342 16.0975 3.29289 15.707C2.90237 15.3164 2.90237 14.6834 3.29289 14.2929L5.29289 12.2929Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M21.5002 1.75C21.9145 1.75 22.2502 2.08569 22.2502 2.5V3.10059C22.2502 5.88916 21.0051 8.88525 19.2672 11.1758L19.7473 16.9375C19.7656 17.1575 19.6865 17.3743 19.5305 17.5303L15.5305 21.5303C15.3439 21.717 15.0726 21.792 14.8167 21.7275C14.5609 21.6631 14.3574 21.4685 14.2815 21.2158L12.8049 16.2939L7.7063 11.1953L2.78442 9.71875C2.62842 9.67188 2.49463 9.57642 2.39984 9.4502C2.34113 9.37183 2.29742 9.28149 2.27271 9.18359C2.20819 8.92773 2.28333 8.65649 2.46997 8.46973L6.46997 4.46973L6.53149 4.41504C6.68048 4.29565 6.87042 4.23682 7.06274 4.25293L12.8245 4.73315C15.115 2.99512 18.111 1.75 20.8997 1.75H21.5002ZM19.0002 6.5C19.0002 7.32837 18.3287 8 17.5002 8C16.6718 8 16.0002 7.32837 16.0002 6.5C16.0002 5.67163 16.6718 5 17.5002 5C18.3287 5 19.0002 5.67163 19.0002 6.5Z\",fill:\"currentColor\"})),plugin_connect_socket_integration_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M5.20699 8.79297L6.99995 10.5859L8.79292 8.79297C9.18343 8.40234 9.81642 8.40234 10.207 8.79297C10.5975 9.18335 10.5975 9.81641 10.207 10.207L8.41402 12L12 15.5859L13.7929 13.793C14.1834 13.4023 14.8164 13.4023 15.207 13.793C15.5975 14.1833 15.5975 14.8164 15.207 15.207L13.414 17L15.207 18.793C15.5975 19.1833 15.5975 19.8164 15.207 20.207C14.8164 20.5974 14.1834 20.5974 13.7929 20.207L12.8233 19.2375L10.9445 21.1162C9.87056 22.1902 8.12886 22.1902 7.05489 21.1162L5.67653 19.7375L3.20699 22.207C2.81642 22.5974 2.18343 22.5974 1.79292 22.207C1.40236 21.8164 1.40236 21.1833 1.79292 20.793L4.26265 18.3232L2.88405 16.9443C1.81007 15.8706 1.81007 14.1296 2.88405 13.0557L4.76277 11.177L3.79292 10.207C3.40236 9.81641 3.40236 9.18335 3.79292 8.79297C4.18343 8.40234 4.81642 8.40234 5.20699 8.79297Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M11.1768 4.7627L10.207 3.79297C9.81641 3.40234 9.18341 3.40234 8.79291 3.79297C8.40234 4.18335 8.40234 4.81641 8.79291 5.20703L18.7929 15.207C19.1834 15.5974 19.8164 15.5974 20.207 15.207C20.5975 14.8164 20.5975 14.1833 20.207 13.793L19.2374 12.8232L21.1161 10.9446C22.1901 9.87061 22.1901 8.12891 21.1161 7.05493L19.7374 5.67651L22.207 3.20703C22.5975 2.81641 22.5975 2.18335 22.207 1.79297C21.8164 1.40234 21.1834 1.40234 20.7929 1.79297L18.3232 4.2627L16.9443 2.88403C15.8703 1.81006 14.1295 1.81006 13.0556 2.88403L11.1768 4.7627Z\",fill:\"currentColor\"})),unlink_link_break_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M2.29286 4.29325C2.68338 3.90273 3.31639 3.90273 3.70692 4.29325L10.9999 11.5862L13.7929 8.79325C14.1834 8.40273 14.8164 8.40273 15.2069 8.79325C15.5972 9.1838 15.5974 9.81687 15.2069 10.2073L12.4139 13.0003L19.7069 20.2933C20.0972 20.6838 20.0974 21.3169 19.7069 21.7073C19.3165 22.0977 18.6834 22.0976 18.2929 21.7073L14.5194 17.9339L12.204 20.2493C9.86964 22.5836 6.08522 22.5835 3.75086 20.2493C1.41651 17.915 1.41657 14.1306 3.75086 11.7962L6.06532 9.47978L2.29286 5.70732C1.90236 5.31682 1.90241 4.68379 2.29286 4.29325ZM5.16493 13.2102C3.61168 14.7636 3.61162 17.2819 5.16493 18.8352C6.71823 20.3884 9.23662 20.3884 10.7899 18.8352L13.1054 16.5198L10.9999 14.4143L10.2069 15.2073C9.81646 15.5977 9.18337 15.5976 8.79286 15.2073C8.40236 14.8168 8.40241 14.1838 8.79286 13.7933L9.58582 13.0003L7.48036 10.8948L5.16493 13.2102Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M11.7958 3.75126C14.1302 1.4169 17.9145 1.41689 20.2489 3.75126C22.5832 6.08564 22.5833 9.87005 20.2489 12.2044L17.7352 14.719C17.3449 15.1092 16.7117 15.109 16.3212 14.719C15.9307 14.3285 15.9307 13.6945 16.3212 13.304L18.8348 10.7903C20.3881 9.23703 20.3881 6.71866 18.8348 5.16533C17.2815 3.612 14.7632 3.61201 13.2098 5.16533L10.6962 7.679C10.3057 8.06941 9.67164 8.06939 9.28114 7.679C8.89103 7.28851 8.89092 6.65536 9.28114 6.26493L11.7958 3.75126Z\",fill:\"currentColor\"})),unlocked_open_security_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M12 1C15.3136 1.00007 18 3.68634 18 7V9.25C19.5188 9.25 20.75 10.4812 20.75 12V20C20.75 21.5188 19.5188 22.75 18 22.75H6C4.48122 22.75 3.25 21.5188 3.25 20V12C3.25 10.4812 4.48122 9.25 6 9.25H16V7C16 4.79091 14.2091 3.00007 12 3C10.5207 3.00001 9.22731 3.80281 8.53418 5.00098C8.25756 5.47873 7.6459 5.64163 7.16797 5.36523C6.69018 5.0886 6.52723 4.47697 6.80371 3.99902C7.83968 2.20846 9.77808 1.00001 12 1ZM12 14.5C11.4477 14.5 11 14.9477 11 15.5V16.5C11 17.0523 11.4477 17.5 12 17.5C12.5523 17.5 13 17.0523 13 16.5V15.5C13 14.9477 12.5523 14.5 12 14.5Z\",fill:\"currentColor\"})),sort_ascending_order_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M2.25 5C2.25 3.4812 3.4812 2.25 5 2.25L19 2.25C20.5188 2.25 21.75 3.4812 21.75 5L21.75 19C21.75 20.5188 20.5188 21.75 19 21.75L5 21.75C3.4812 21.75 2.25 20.5188 2.25 19L2.25 5ZM16.75 7.5C16.75 7.08569 16.4142 6.75 16 6.75L6 6.75C5.58581 6.75 5.25 7.08569 5.25 7.5C5.25 7.91431 5.58581 8.25 6 8.25L16 8.25C16.4142 8.25 16.75 7.91431 16.75 7.5ZM11.5 11C11.9142 11 12.25 11.3357 12.25 11.75C12.25 12.1643 11.9142 12.5 11.5 12.5L6 12.5C5.58581 12.5 5.25 12.1643 5.25 11.75C5.25 11.3357 5.58581 11 6 11L11.5 11ZM10.75 16C10.75 15.5857 10.4142 15.25 10 15.25L6 15.25C5.58581 15.25 5.25 15.5857 5.25 16C5.25 16.4143 5.58581 16.75 6 16.75L10 16.75C10.4142 16.75 10.75 16.4143 10.75 16ZM15.25 11C15.25 10.5857 15.5857 10.25 16 10.25C16.4142 10.25 16.75 10.5857 16.75 11L16.75 15.1895L17.9697 13.9697C18.2626 13.6768 18.7373 13.6768 19.0303 13.9697C19.3231 14.2627 19.3231 14.7373 19.0303 15.0303L16.5303 17.5303C16.2373 17.8232 15.7626 17.8232 15.4697 17.5303L12.9697 15.0303C12.6768 14.7373 12.6768 14.2627 12.9697 13.9697C13.2626 13.6768 13.7373 13.6768 14.0303 13.9697L15.25 15.1895L15.25 11Z\",fill:\"currentColor\"})),sort_descending_order_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M21.75 19C21.75 20.5188 20.5188 21.75 19 21.75H5C3.4812 21.75 2.25 20.5188 2.25 19V5C2.25 3.4812 3.4812 2.25 5 2.25H19C20.5188 2.25 21.75 3.4812 21.75 5V19ZM10.75 8C10.75 8.41431 10.4142 8.75 10 8.75H6C5.58582 8.75 5.25 8.41431 5.25 8C5.25 7.58569 5.58582 7.25 6 7.25H10C10.4142 7.25 10.75 7.58569 10.75 8ZM11.5 13C11.9142 13 12.25 12.6643 12.25 12.25C12.25 11.8357 11.9142 11.5 11.5 11.5H6C5.58582 11.5 5.25 11.8357 5.25 12.25C5.25 12.6643 5.58582 13 6 13H11.5ZM6 15.75H16C16.4142 15.75 16.75 16.0857 16.75 16.5C16.75 16.9143 16.4142 17.25 16 17.25H6C5.58582 17.25 5.25 16.9143 5.25 16.5C5.25 16.0857 5.58582 15.75 6 15.75ZM15.25 13V8.81055L14.0303 10.0303C13.7373 10.3232 13.2626 10.3232 12.9697 10.0303C12.6768 9.73755 12.6768 9.2627 12.9697 8.96973L15.4697 6.46973L15.5264 6.41797C15.8209 6.17773 16.2556 6.19531 16.5303 6.46973L19.0303 8.96973C19.3231 9.2627 19.3231 9.73755 19.0303 10.0303C18.7373 10.3232 18.2626 10.3232 17.9697 10.0303L16.75 8.81055V13C16.75 13.4143 16.4142 13.75 16 13.75C15.5857 13.75 15.25 13.4143 15.25 13Z\",fill:\"currentColor\"})),plus_circle_zoom_in_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75ZM11 16.9999V12.9999H7C6.44771 12.9999 6 12.5522 6 11.9999C6.00006 11.4477 6.44775 10.9999 7 10.9999H11V6.99988C11 6.4476 11.4477 5.99988 12 5.99988C12.5523 5.99988 13 6.4476 13 6.99988V10.9999H17C17.5522 10.9999 17.9999 11.4477 18 11.9999C18 12.5522 17.5523 12.9999 17 12.9999H13V16.9999C13 17.5522 12.5523 17.9999 12 17.9999C11.4477 17.9999 11 17.5522 11 16.9999Z\",fill:\"currentColor\"})),right_circle_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25ZM16.7372 9.67573C17.1103 9.26861 17.0828 8.63604 16.6757 8.26285C16.2686 7.88966 15.636 7.91716 15.2628 8.32428L10.4686 13.5544L8.70711 11.7929C8.31658 11.4024 7.68342 11.4024 7.29289 11.7929C6.90237 12.1834 6.90237 12.8166 7.29289 13.2071L9.79289 15.7071C9.98576 15.9 10.249 16.0057 10.5217 15.9998C10.7944 15.9938 11.0528 15.8768 11.2372 15.6757L16.7372 9.67573Z\",fill:\"currentColor\"}))}},4766:(e,t,n)=>{\"use strict\";n.d(t,{ZP:()=>s});var a=n(7294),r=n(1900),o=n(4528);(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"#070707\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 100 99.964\"},(0,a.createElement)(\"path\",{d:\"M97.637 61.79a3.8 3.8 0 0 1-.265-2.338c2.854-16.467-1.618-30.679-13.443-42.449A46.289 46.289 0 0 0 57.307 3.971a45.987 45.987 0 0 0-13.429.031 3.88 3.88 0 0 1-2.678-.468 27.868 27.868 0 0 0-37.106 9.469 27.009 27.009 0 0 0-.722 27.349 2.2 2.2 0 0 1 .268 1.577c-4.109 21.989 7.627 42.639 27.735 51.084a48.685 48.685 0 0 0 26.784 3.2 3.168 3.168 0 0 1 2.058.3 28.253 28.253 0 0 0 14.99 3.392 24.78 24.78 0 0 0 10.7-3.344 28.036 28.036 0 0 0 13.784-19.714 26.476 26.476 0 0 0-2.054-15.057Zm-22.9 2.118c-1.145 6.065-5.1 9.919-10.639 12.005a34.579 34.579 0 0 1-25.014.047 17.5 17.5 0 0 1-10.124-9.767 10.7 10.7 0 0 1-.823-3.5 4.786 4.786 0 0 1 2.69-4.8 5.42 5.42 0 0 1 5.954.641 8.434 8.434 0 0 1 1.858 2.609c.575 1.166 1.117 2.344 1.763 3.477a10.145 10.145 0 0 0 8.116 5.239c3.849.439 7.6.181 11.051-1.866 3.034-1.8 4.327-4.8 3.344-7.958a6.789 6.789 0 0 0-3.821-3.96 36.8 36.8 0 0 0-8.484-2.527c-4.659-1.075-9.32-2.134-13.636-4.306-6.146-3.093-8.925-8.983-7.25-15.629a12.974 12.974 0 0 1 5.917-7.83 26.362 26.362 0 0 1 12.494-3.723c1.1-.089 2.212-.11 2.953-.145 5.344.04 10.179.739 14.54 3.347 3.038 1.816 5.483 4.183 6.521 7.712a5.465 5.465 0 0 1-1.221 5.8 5.212 5.212 0 0 1-8.142-.932c-.8-1.185-1.506-2.436-2.312-3.618a9.062 9.062 0 0 0-6.6-4.222c-3.583-.437-7.092-.415-10.344 1.435a5.654 5.654 0 0 0-3.072 3.721c-.446 2.16.408 3.849 2.36 5.136 2.449 1.616 5.253 2.209 8.032 2.887a123.979 123.979 0 0 1 12.525 3.358 19.776 19.776 0 0 1 8.3 4.956c3.252 3.573 3.917 7.862 3.06 12.414Z\"})),(0,a.createElement)(\"svg\",{viewBox:\"0 0 16 16\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M9.34084 11.3521L7.66481 13.0281C6.36891 14.324 4.26783 14.324 2.97193 13.0281C1.67602 11.7322 1.67602 9.63111 2.97193 8.33521L4.64796 6.65918M6.65916 4.64795L8.33519 2.97193C9.63109 1.67603 11.7322 1.67602 13.0281 2.97192C14.324 4.26782 14.324 6.36889 13.0281 7.66479L11.352 9.34082\",stroke:\"currentColor\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.33398 9.66665L9.66732 6.33331\",stroke:\"currentColor\",strokeLinecap:\"round\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 50 50\"},(0,a.createElement)(\"path\",{fill:\"currentColor\",d:\"M50 4.4v41.1c0 2.5-2 4.4-4.4 4.4H34.5V31.1c0-.4.1-.6.5-.5h5.4c.4 0 .6 0 .6-.5.3-2.3.6-4.6.9-7 0-.4-.1-.4-.4-.4h-6.6c-.3 0-.5-.1-.5-.4v-4.8c-.1-1.5 1-2.9 2.6-3H41.6c.3 0 .4-.1.4-.4V7.9c0-.4-.1-.4-.5-.4-1.5 0-6.7 0-7.8.2-4 .7-6.9 4-7.2 8.1-.1 2.2 0 4.4 0 6.6 0 .5-.1.6-.6.6h-5.5c-.3 0-.4.1-.4.4v7c0 .3.1.4.4.4h5.5c.5 0 .6.1.6.6v18.8H4.4C2 50 0 48 0 45.5V4.4C0 2 2 0 4.4 0h41.1C48 0 50 2 50 4.4z\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 35.699 50\"},(0,a.createElement)(\"path\",{d:\"M27.638 5.514A13.716 13.716 0 0 1 26.162 0h-6.835v28.914a6.244 6.244 0 1 1-6.241-6.247 6.086 6.086 0 0 1 1.965.32v-7.002a12.836 12.836 0 0 0-1.965-.149A13.082 13.082 0 1 0 26.16 28.918V14.134a17.847 17.847 0 0 0 10.454 3.277l.162-6.834c-4.405-.105-7.4-1.761-9.14-5.063\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{d:\"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m11.606 21.714a11.347 11.347 0 0 1-6.656-2.086v9.413a8.323 8.323 0 1 1-7.076-8.236v4.461a3.9 3.9 0 0 0-1.251-.2 3.978 3.978 0 1 0 3.974 3.977V10.628h4.353a8.761 8.761 0 0 0 .94 3.514c1.112 2.1 3.015 3.156 5.821 3.223Z\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 44 44\"},(0,a.createElement)(\"g\",null,(0,a.createElement)(\"path\",{d:\"M30.889 22a8.883 8.883 0 0 1-8.976 8.888A8.932 8.932 0 1 1 30.889 22\"}),(0,a.createElement)(\"path\",{d:\"M22 0C1.18 0 0 1.179 0 22s1.18 22 22 22 22-1.179 22-22S42.821 0 22 0m0 35.816A13.818 13.818 0 1 1 35.816 22 13.817 13.817 0 0 1 22 35.816m14.362-24.948a3.194 3.194 0 0 1-3.256-3.256 3.248 3.248 0 0 1 3.256-3.256 3.175 3.175 0 0 1 3.168 3.256 3.123 3.123 0 0 1-3.168 3.256\"}))),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 42 42\"},(0,a.createElement)(\"path\",{d:\"M37.53 0H4.47A4.468 4.468 0 0 0 0 4.47v33.06A4.468 4.468 0 0 0 4.47 42h33.06A4.468 4.468 0 0 0 42 37.53V4.47A4.468 4.468 0 0 0 37.53 0M12.49 35.12c0 .51-.09.59-.59.59H6.87c-.5 0-.59-.17-.59-.59V16.43c0-.5.09-.67.67-.67h5.03c.42 0 .59.08.59.59-.08 6.28-.08 12.49-.08 18.77m-3.1-22.04a3.583 3.583 0 0 1-3.61-3.61 3.626 3.626 0 0 1 3.61-3.6 3.572 3.572 0 0 1 3.6 3.6 3.692 3.692 0 0 1-3.6 3.61m25.65 22.63h-4.78c-.5 0-.75-.08-.75-.67v-9.3a13.485 13.485 0 0 0-.26-2.6 2.664 2.664 0 0 0-2.43-2.35 3.264 3.264 0 0 0-3.69 1.68 6.537 6.537 0 0 0-.58 2.51v9.98c0 .67-.17.84-.84.75-1.59-.08-3.19 0-4.78 0-.42 0-.59-.17-.59-.59V16.35c0-.42.09-.59.51-.59h4.86c.42 0 .5.17.5.5v2.1a7.617 7.617 0 0 1 3.69-2.77 8.813 8.813 0 0 1 6.2.51 5.948 5.948 0 0 1 3.11 4.44 20.4 20.4 0 0 1 .42 3.94v10.56c.08.59-.09.67-.59.67\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 44 44.26\"},(0,a.createElement)(\"path\",{d:\"M22.311 0A21.555 21.555 0 0 0 .798 21.6a22.259 22.259 0 0 0 3.01 11.067l-3.807 11.6 11.951-3.805A21.656 21.656 0 0 0 44 21.517 21.687 21.687 0 0 0 22.311 0m10.637 29.915a5.156 5.156 0 0 1-3.487 2.414c-4.559.983-9.387-2.593-12.338-5.633a22.894 22.894 0 0 1-5.275-8.046c-.983-2.861.358-8.583 4.381-7.689.984.179 1.163 1.073 1.431 1.878.447 1.162.8 2.235 1.251 3.4a1.514 1.514 0 0 1 0 .894c-.357.805-1.162 1.341-1.7 2.056-.805 1.252 2.324 4.292 3.218 5.1 1.163 1.072 2.951 2.682 4.56 2.861.894.089 2.056-1.7 2.5-2.325.358-.447.626-.536 1.073-.358 1.52.626 2.951 1.52 4.47 2.325a.811.811 0 0 1 .537.983 3.565 3.565 0 0 1-.626 2.146\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{d:\"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0M2.724 24a21.149 21.149 0 0 1 1.844-8.657L14.716 43.15A21.283 21.283 0 0 1 2.724 24M24 45.278a21.317 21.317 0 0 1-6.01-.865l6.384-18.55 6.538 17.917a1.806 1.806 0 0 0 .154.293 21.224 21.224 0 0 1-7.066 1.2m2.931-31.249c1.282-.065 2.436-.2 2.436-.2a.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-2.09 0-5.6-.272-5.6-.272a.88.88 0 0 0-.133 1.754s1.084.136 2.23.2l3.317 9.084-4.657 13.963-7.754-23.047a42.05 42.05 0 0 0 2.436-.2.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-.4 0-.871-.009-1.371-.025a21.273 21.273 0 0 1 32.144-4.006c-.093-.006-.182-.015-.275-.015a3.682 3.682 0 0 0-3.573 3.774c0 1.754 1.01 3.237 2.091 4.991a11.211 11.211 0 0 1 1.754 5.869 24.615 24.615 0 0 1-1.547 7.014l-2.2 6.952Zm7.764 28.366 6.5-18.788a20.025 20.025 0 0 0 1.618-7.62 16.1 16.1 0 0 0-.142-2.189 21.276 21.276 0 0 1-7.974 28.6\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"g\",null,(0,a.createElement)(\"path\",{d:\"M4 23.999a20 20 0 0 0 11.272 18L5.732 15.86A19.923 19.923 0 0 0 4 24m33.5-1.009a10.531 10.531 0 0 0-1.646-5.517c-1.014-1.648-1.964-3.042-1.964-4.69a3.463 3.463 0 0 1 3.358-3.55c.089 0 .173.011.259.016A20 20 0 0 0 7.29 13.013c.47.015.912.025 1.288.025 2.091 0 5.33-.254 5.33-.254a.827.827 0 0 1 .128 1.648s-1.084.127-2.289.19l7.283 21.664 4.378-13.127-3.117-8.535c-1.078-.063-2.1-.19-2.1-.19a.827.827 0 0 1 .127-1.648s3.3.254 5.267.254c2.092 0 5.331-.254 5.331-.254a.827.827 0 0 1 .128 1.648s-1.085.127-2.289.19l7.228 21.5 2.063-6.538a23.047 23.047 0 0 0 1.454-6.593m-13.146 2.755-6 17.437a20.006 20.006 0 0 0 12.292-.319 1.835 1.835 0 0 1-.143-.276Zm17.2-11.344a15.342 15.342 0 0 1 .134 2.057 18.884 18.884 0 0 1-1.524 7.163l-6.11 17.661a20 20 0 0 0 7.5-26.881\"}),(0,a.createElement)(\"path\",{d:\"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m0 46.56A22.56 22.56 0 1 1 46.56 24 22.559 22.559 0 0 1 24 46.56\"}))),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 33.86\"},(0,a.createElement)(\"path\",{d:\"M47.134 5.29a5.893 5.893 0 0 0-4.232-4.232C39.055 0 24.05 0 24.05 0S9.044 0 5.293.962A6.146 6.146 0 0 0 .965 5.29C.003 9.041.003 16.929.003 16.929s0 7.887.962 11.638A5.894 5.894 0 0 0 5.197 32.8c3.847 1.058 18.853 1.058 18.853 1.058s15.005 0 18.756-1.058a6.059 6.059 0 0 0 4.232-4.233C48 24.816 48 16.929 48 16.929s.1-7.888-.866-11.639M19.141 21.928v-10a1.237 1.237 0 0 1 1.845-1.077l8.85 5a1.237 1.237 0 0 1 0 2.153l-8.85 5a1.237 1.237 0 0 1-1.845-1.077\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{d:\"M48.004 23.995a24 24 0 0 1-24 24.005 23.735 23.735 0 0 1-10.948-2.65h.086a15.084 15.084 0 0 0 4.8-6.914 35.685 35.685 0 0 0 1.729-7.009v-.192c.1-.384.192-.384.48-.192.1 0 .1.1.192.1a7.385 7.385 0 0 0 4.322 2.112 11.879 11.879 0 0 0 7.491-.96 16.739 16.739 0 0 0 4.513-3.649 11.277 11.277 0 0 0 1-1.354 17.413 17.413 0 0 0 2.574-7.278 16.381 16.381 0 0 0-1.1-8.555 13.1 13.1 0 0 0-4.774-5.569 17.523 17.523 0 0 0-8.067-2.977A20.935 20.935 0 0 0 15.45 4.065a15.91 15.91 0 0 0-9.028 8.258 11.865 11.865 0 0 0-.288 9.89 8.5 8.5 0 0 0 5.859 4.993c.288.1.384 0 .384-.288.192-1.056.384-2.112.576-3.073 0-.192 0-.384-.192-.48a8.869 8.869 0 0 1-1.825-2.688 6.966 6.966 0 0 1 .1-5.377 12.226 12.226 0 0 1 7.875-7.778 14.92 14.92 0 0 1 7.4-.672c5.475.912 7.914 6.625 7.559 11.685a15.147 15.147 0 0 1-2.757 7.423 7.589 7.589 0 0 1-4.129 2.976 5.108 5.108 0 0 1-4.226-.768 2.864 2.864 0 0 1-1.153-2.3 9.668 9.668 0 0 1 .769-3.745c.48-1.44 1.056-2.785 1.44-4.225a10.787 10.787 0 0 0 .384-3.072 3.408 3.408 0 0 0-4.206-2.977 5.336 5.336 0 0 0-2.641 1.364c-1.892 1.785-2.4 5.175-1.6 7.566a7.772 7.772 0 0 1-.1 4.9c-.864 2.976-1.825 6.049-2.5 9.122a28.284 28.284 0 0 0-.672 7.489 8.268 8.268 0 0 0 .576 3.063 24 24 0 1 1 34.949-21.356\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 45.85 48\"},(0,a.createElement)(\"path\",{d:\"M44.492 25.179a6.625 6.625 0 0 0 .192-7.766 6.482 6.482 0 0 0-9.492-1.151c-.192.1-.288.192-.384.1a28.339 28.339 0 0 0-9.684-2.493c-.192 0-.287-.095-.192-.287.288-.959.672-1.822 1.055-2.781a29.239 29.239 0 0 1 3.068-5.657 7.62 7.62 0 0 1 2.017-1.919 2.338 2.338 0 0 1 2.493 0 6.138 6.138 0 0 1 1.246.959c.192.191.192.287.192.575a3.868 3.868 0 0 0 3.26 4.506 3.786 3.786 0 0 0 4.309-3.739 3.8 3.8 0 0 0-5.463-3.547.358.358 0 0 1-.479-.1 4.481 4.481 0 0 0-1.151-.863 5.486 5.486 0 0 0-6.232-.1 14.609 14.609 0 0 0-3.26 3.643 38.376 38.376 0 0 0-4.123 9.013c-.1.287-.192.383-.479.383a26.861 26.861 0 0 0-10.163 2.493c-.192.1-.288.1-.48-.1a6.631 6.631 0 0 0-8.054-.383 6.539 6.539 0 0 0-1.246 9.4c.192.192.192.288.1.479a13.425 13.425 0 0 0-.959 3.74 14.384 14.384 0 0 0 2.3 8.821 20.414 20.414 0 0 0 7.191 6.519 27.739 27.739 0 0 0 12.752 3.069 27.311 27.311 0 0 0 12.464-2.781 19.211 19.211 0 0 0 7.282-5.933c3.068-4.219 3.835-8.725 1.822-13.615a.865.865 0 0 1 .1-.48m-12.656 5.421a3.645 3.645 0 1 1 3.024-3.023 3.646 3.646 0 0 1-3.024 3.023m-.192 8.1a14.556 14.556 0 0 1-9.013 3.26 14.886 14.886 0 0 1-8.533-3.164 1.469 1.469 0 1 1 1.822-2.3 11.081 11.081 0 0 0 7.862 2.493 11.805 11.805 0 0 0 5.369-2.014c.288-.191.479-.383.767-.575a1.488 1.488 0 0 1 2.014.288 1.6 1.6 0 0 1-.288 2.013m-16.683-15.34a3.646 3.646 0 1 1-3.644 3.643 3.526 3.526 0 0 1 3.644-3.643m-12.464.767a4.959 4.959 0 0 1 7.095-6.808 18.573 18.573 0 0 0-7.095 6.808m41.036-.288a18.259 18.259 0 0 0-6.807-6.424c-.1-.1-.192-.1-.288-.192a5.75 5.75 0 0 1 2.4-.959 4.811 4.811 0 0 1 4.794 2.206 4.978 4.978 0 0 1 .1 5.273c0 .1-.1.384-.192.1\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 47.04 48\"},(0,a.createElement)(\"path\",{d:\"M24 19.625v8.907h13.227a11.731 11.731 0 0 1-4.907 7.786 14.2 14.2 0 0 1-8.32 2.4 14.447 14.447 0 0 1-13.653-9.973 14.764 14.764 0 0 1-.8-4.747 15.523 15.523 0 0 1 .773-4.746A14.507 14.507 0 0 1 24 9.278a13.3 13.3 0 0 1 9.28 3.574l6.773-6.614A23.061 23.061 0 0 0 24-.002a24 24 0 0 0 0 48 22.873 22.873 0 0 0 15.893-5.813c4.534-4.187 7.147-10.347 7.147-17.653a20.536 20.536 0 0 0-.507-4.907Z\"}));const i=new class{constructor(){this.icons=new Map,this.aliases=new Map}initializeIcons(e){Object.entries(e).forEach((([e,t])=>{this.icons.set(e,t)}))}storeAliases(e){Object.entries(e).forEach((([e,t])=>{this.icons.has(t)&&this.aliases.set(e,this.icons.get(t))}))}getAliases(){return Object.fromEntries(this.aliases)}toObject(){return{...Object.fromEntries(this.icons),...Object.fromEntries(this.aliases)}}toCurrentIconObj(){return{...Object.fromEntries(this.icons)}}};i.initializeIcons({...o.c,...r.e}),i.storeAliases({angle_bottom_left_line:\"arrow_down_bottom_left_solid\",angle_bottom_right_line:\"arrow_down_bottom_right_solid\",angle_top_left_line:\"arrow_up_top_left_solid\",angle_top_right_line:\"arrow_up_top_right_solid\",rightFillAngle:\"right_triangle_angle_play_arrow_forward_solid\",leftAngle2:\"arrow_left_previous_backward_chevron_line\",rightAngle2:\"arrow_right_next_forward_chevron_line\",collapse_bottom_line:\"arrow_down_dropdown_maximize_chevron_line\",arrowUp2:\"arrow_up_dropdown_minimize_chevron_line\",longArrowUp2:\"long_arrow_up_top_increase_solid\",arrow_left_circle_line:\"arrow_left_backward_circle_line\",arrow_bottom_circle_line:\"arrow_down_bottom_downward_circle_line\",arrow_right_circle_line:\"arrow_right_forward_circle_line\",arrow_top_circle_line:\"arrow_up_top_upward_circle_line\",close_circle_line:\"cross_close_x_minimize_circle_line\",close_line:\"cross_x_close_minimize_line\",arrow_down_line:\"arrow_down_bottom_downward_line\",leftArrowLg:\"arrow_left_backward_line\",rightArrowLg:\"arrow_left_forward_line\",arrow_up_line:\"long_arrow_up_top_increase_line\",down_solid:\"arrow_down_bottom_downward_circle_solid\",right_solid:\"arrow_right_forward_circle_solid\",left_solid:\"arrow_left_backward_circle_solid\",up_solid:\"arrow_up_top_upward_circle_solid\",wrong_solid:\"cross_close_x_minimize_circle_solid\",bottom_right_line:\"arrow_move_up_right_line\",bottom_left_line:\"arrow_move_up_left_line\",top_left_angle_line:\"arrow_move_down_left_line\",top_right_line:\"arrow_move_down_right_line\",at_line:\"at_a_mail_line\",refresh:\"refresh_reset_cycle_loop_infinity_line\",cart_line:\"shopping_cart_line\",cart_solid:\"add_plus_shopping_cart_solid\",cog_line:\"settings_tool_function_line\",cog_solid:\"settings_tool_function_solid\",correct_solid:\"right_circle_solid\",dot_solid:\"dot_circle_solid\",clock:\"clock_reading_time_1_line.svg\",book:\"book_line\",download_line:\"download_1_line\",download_solid:\"download_1_solid\",downlod_bottom_solid:\"download_1_solid\",eye:\"view_count_show_visible_eye_open_2_line\",hidden_line:\"hidden_hide_invisible_line\",home_line:\"home_house_line\",home_solid:\"home_house_solid\",location_line:\"location_gps_map_line\",location_solid:\"location_gps_map_solid\",love_line:\"heart_love_wishlist_favourite_line\",love_solid:\"heart_love_wishlist_favourite_solid\",notice_circle_solid:\"warning_circle_solid\",notice_solid:\"warning_triangle_solid\",play_line:\"play_media_video_circle_line\",plus2:\"\",videoplay:\"right_triangle_angle_play_arrow_forward_solid\",left_angle_solid:\"left_triangle_angle_arrow_backward_solid\",caretArrow:\"caret_up_top_triangle_angle_arrow_upward_solid\",rectangle_solid:\"square_rounded_solid\",restriction_line:\"restriction_no_stop_line\",right_circle_line:\"correct_save_check_circle_line\",save_line:\"correct_save_check_line\",search_line:\"search_magnify_line\",search_solid:\"search_magnify_solid\",triangle_solid:\"triangle_shape_solid\",warning_circle_line:\"warning_circle_line\",warning_triangle_line:\"warning_triangle_line\",upload_solid:\"upload_1_solid\",cat1:\"category_file_documents_1_solid\",cat2:\"category_book_line\",cat3:\"category_file_documents_2_line\",cat4:\"category_file_documents_3_line\",cat5:\"category_file_documents_3_solid\",cat6:\"category_file_documents_4_line\",cat7:\"category_book_line\",commentCount1:\"messege_comment_1_line\",commentCount2:\"messege_comment_3_solid\",commentCount3:\"messege_comment_3_line\",commentCount4:\"messege_comment_6_line\",commentCount5:\"messege_comment_7_line\",commentCount6:\"messege_comment_8_line\",comment:\"messege_comment_4_line\",date1:\"calendar_date_4_line\",date2:\"calendar_date_1_solid\",date3:\"calendar_date_2_line\",date4:\"calendar_date_4_solid\",date5:\"calendar_date_3_line\",calendar:\"calendar_date_3_line\",readingTime1:\"clock_reading_time_3_line\",readingTime2:\"clock_reading_time_2_line\",readingTime3:\"book_reading_time_line\",readingTime4:\"clock_reading_time_1_line\",readingTime5:\"hourglass_timer_time_line\",tag1:\"tag_bookmark_save_favourite_mark_discount_sale_line\",tag2:\"price_tag_label_category_sale_discount_solid\",tag3:\"price_tag_label_category_sale_discount_line\",tag4:\"price_tag_offer_sale_coupon_solid\",tag5:\"price_tag_label_category_sale_discount_line\",tag6:\"growth_increase_up_solid\",viewCount1:\"view_count_show_visible_eye_open_1_line\",viewCount2:\"view_count_show_visible_eye_open_2_line\",viewCount3:\"view_count_show_visible_eye_open_3_line\",viewCount4:\"view_count_show_visible_eye_open_4_solid\",viewCount5:\"view_count_show_visible_eye_open_5_solid\",viewCount6:\"view_count_show_visible_eye_open_5_solid\",author1:\"author_user_human_1_line\",author2:\"author_user_human_4_line\",author3:\"author_user_human_4_solid\",author4:\"author_user_human_4_line\",author5:\"author_user_human_3_solid\",user:\"author_user_human_3_line\",desktop:\"desktop_monitor_computer_line\",laptop:\"laptop_computer_line\",tablet:\"tablet_ipad_pad_line\",mobile:\"mobile_smartphone_phone_line\",angry_line:\"angry_emoji_line\",angry_solid:\"angry_emoji_solid\",confused_line:\"confused_emoji_line\",confused_solid:\"confused_emoji_solid\",happy_line:\"happy_emoji_line\",happy_solid:\"happy_emoji_solid\",smile_line:\"smile_emoji_line\",smile_solid:\"smile_emoji_solid\",share_line:\"social_community_line\",share:\"share_social_solid\",apple_solid:\"apple_logo_icon_solid\",android_solid:\"android_logo_icon_solid\",google_solid:\"google_logo_icon_solid\",messenger:\"messenger_logo_icon_solid\",microsoft_solid:\"microsoft_logo_icon_solid\",mail:\"mail_email_messege_solid\",media_document:\"media_document\",facebook:\"facebook_logo_icon_solid\",twitter:\"twitter_x_logo_icon_line\",arrowDown2:\"arrow_down_dropdown_maximize_chevron_line\",setting:\"settings_tool_function_solid\",right_circle_solid:\"correct_save_check_circle_solid\",full_screen:\"full_screen_corners_out_solid\",zoom_in:\"zoom_in_magnifying_glass_plus_line\",zoom_out:\"zoom_out_magnifying_glass_minus_line\",gallery_indicator:\"gallery_indicator_image_solid\",ascending:\"sort_ascending_order_line\",descending:\"sort_descending_order_line\",unlink:\"unlink_link_break_line\",rocket:\"rocket_fly_boost_launch_pro_solid\",unlock:\"unlocked_open_security_solid\",connect:\"plugin_connect_socket_integration_line\",leftAngle:\"arrow_left_previous_backward_chevron_line\",rightAngle:\"right_triangle_angle_play_arrow_forward_line\",link:\"link_chains_line\",subtract:(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"#070707\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),skype:\"skype_logo_icon_solid\",updated_link:\"link_chains_line\",tiktok_lite_solid:\"tiktok_logo_icon_circle_line\",tiktok_solid:\"tiktok_logo_icon_solid\",instagram_solid:\"instagram_logo_icon_solid\",linkedin:\"linkedin_logo_icon_solid\",whatsapp:\"whatsapp_logo_icon_solid\",wordpress_lite_solid:\"wordpress_logo_icon_solid\",wordpress_solid:\"wordpress_logo_icon_2_solid\",youtube_solid:\"youtube_logo_icon_solid\",pinterest:\"pinterest_logo_icon_solid\",reddit:\"reddit_logo_icon_solid\",five_star_line:\"star_rating_line\",rightAngleBold:\"arrow_right_next_forward_chevron_line\",leftAngleBold:\"arrow_left_previous_backward_chevron_line\",reset_left_line:\"refresh_reset_cycle_loop_infinity_line\",hamicon_1:\"hamicon_1_line\",hamicon_2:\"hemicon_2_line\",hamicon_3:\"hemicon_3_line\",hamicon_4:\"hamicon_5_line\",hamicon_5:\"hemicon_2_solid\",hamicon_6:\"hamicon_6_line\"});const l=i.toObject(),s=((0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"#070707\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),l.skype_logo_icon_solid,l.link_chains_line,l.facebook_logo_icon_solid,l.twitter_x_logo_icon_line,l.tiktok_logo_icon_circle_line,l.tiktok_logo_icon_solid,l.instagram_logo_icon_solid,l.linkedin_logo_icon_solid,l.whatsapp_logo_icon_solid,l.wordpress_logo_icon_solid,l.wordpress_logo_icon_2_solid,l.youtube_logo_icon_solid,l.pinterest_logo_icon_solid,l.reddit_logo_icon_solid,l.google_logo_icon_solid,l.link_chains_line,l.share_social_solid,i.toCurrentIconObj(),l)},1900:(e,t,n)=>{\"use strict\";n.d(t,{e:()=>r});var a=n(7294);const r={add_plus_shopping_cart_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M13.745 7.5v4M11.75 9.505h4\"})),android_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6.5 9.5a5.5 5.5 0 1 1 11 0V17a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2V9.5ZM20 11v6M4 11v6\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"m14 4 1.5-2M10 4 8.5 2m-2 8.5h11m-8 8.5v3m5.5-3v3M10.49 8h.01m2.99 0h.01\"})),angry_emoji_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7 9.5c1 0 2.69.254 2.964 1.231m0 0A.988.988 0 0 1 10 11c0 1.5-2.072-.037-.036-.269ZM17 9.5c-1 0-2.69.254-2.964 1.231m0 0A.99.99 0 0 0 14 11c0 1.5 2.072-.037.036-.269Z\"}),(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8 17c1.5-3 6.5-3 8 0\"})),apple_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M19.489 8.963c-.114.089-2.127 1.23-2.127 3.768 0 2.936 2.561 3.975 2.638 4-.012.064-.407 1.423-1.35 2.808-.841 1.219-1.72 2.435-3.056 2.435-1.337 0-1.68-.781-3.223-.781-1.504 0-2.039.807-3.261.807-1.223 0-2.075-1.128-3.056-2.512C4.918 17.86 4 15.335 4 12.938 4 9.09 6.484 7.05 8.93 7.05c1.298 0 2.381.859 3.197.859.776 0 1.987-.91 3.465-.91.56 0 2.572.051 3.897 1.963ZM14.59 4.415c.533-.64.91-1.527.91-2.415 0-.123-.01-.248-.033-.349-.867.033-1.9.585-2.522 1.315-.489.561-.945 1.45-.945 2.349 0 .135.022.27.033.314.055.01.144.022.233.022.778 0 1.758-.527 2.323-1.236Z\"})),arrow_down_bottom_downward_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15.5 13 12 16.5m0 0L8.5 13m3.5 3.5v-9\"})),arrow_down_bottom_downward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m3.5 12 8.5 8.5m0 0 8.5-8.5M12 20.5v-17\"})),arrow_down_bottom_left_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 6v12m0 0h12M6 18 18 6\"})),arrow_down_bottom_right_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M18 6v12m0 0H6m12 0L6 6\"})),arrow_down_dropdown_maximize_chevron_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m6 9 6 6 6-6\"})),arrow_left_backward_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M11 15.5 7.5 12m0 0L11 8.5M7.5 12h9\"})),arrow_left_backward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 20.5 3.5 12m0 0L12 3.5M3.5 12h17\"})),arrow_left_forward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m12 20.5 8.5-8.5m0 0L12 3.5m8.5 8.5h-17\"})),arrow_left_previous_backward_chevron_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m15 18-6-6 6-6\"})),arrow_move_down_left_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 6v3a4 4 0 0 1-4 4H2m0 0 5 5m-5-5 5-5\"})),arrow_move_down_right_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 6v3a4 4 0 0 0 4 4h16m0 0-5 5m5-5-5-5\"})),arrow_move_up_left_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 18v-3a4 4 0 0 0-4-4H2m0 0 5-5m-5 5 5 5\"})),arrow_move_up_right_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 18v-3a4 4 0 0 1 4-4h16m0 0-5-5m5 5-5 5\"})),arrow_right_forward_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m13 8.5 3.5 3.5m0 0L13 15.5m3.5-3.5h-9\"})),arrow_right_next_forward_chevron_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m9 18 6-6-6-6\"})),arrow_up_dropdown_minimize_chevron_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m18 15-6-6-6 6\"})),arrow_up_top_left_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 18V6m0 0h12M6 6l12 12\"})),arrow_up_top_right_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M18 18V6m0 0H6m12 0L6 18\"})),arrow_up_top_upward_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.5 11 12 7.5m0 0 3.5 3.5M12 7.5v9\"})),arrow_up_top_upward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3.5 12 12 3.5m0 0 8.5 8.5M12 3.5v17\"})),at_a_mail_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16 8v7a2 2 0 0 0 2 2 4 4 0 0 0 4-4v-1c0-5.523-4.477-10-10-10S2 6.477 2 12s4.477 10 10 10c1.821 0 3.53-.487 5-1.338M16 12a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z\"})),author_user_human_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"7\",r:\"4\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4.5 20.533A6.533 6.533 0 0 1 11.033 14h1.934a6.533 6.533 0 0 1 6.533 6.533.467.467 0 0 1-.467.467H4.967a.467.467 0 0 1-.467-.467Z\"})),author_user_human_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16.5 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 20.5a8 8 0 1 0-16 0\"})),author_user_human_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"7\",r:\"4\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 21v-3a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v3\"})),author_user_human_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"7\",r:\"4\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 13.5c-3.283 0-6.156 1.585-7.728 3.776C2.984 19.07 4.791 21 7 21h10c2.209 0 4.015-1.93 2.727-3.724C18.155 15.086 15.283 13.5 12 13.5Z\"})),book_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M9.5 18.5v-3.092a3 3 0 0 1 .504-1.664l1.219-1.828a.934.934 0 0 1 1.554 0l1.22 1.828a3 3 0 0 1 .503 1.664V18.5m-5-2.5h5\"})),book_reading_time_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7 19h9M4 19V7a3 3 0 0 1 3-3h3M4 19a3 3 0 0 0 3 3h11M4 19a3 3 0 0 1 3-3h11v-4\"}),(0,a.createElement)(\"circle\",{cx:\"14.5\",cy:\"7.5\",r:\"5.5\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M14.5 5v3l2 1\"})),calendar_date_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18M8 13.5h.01M8 17h.01M12 13.5h.01M12 17h.01M16 13.5h.01M16 17h.01\"})),calendar_date_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 3h15v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 3h15l-3.595 13.032a2 2 0 0 1-1.928 1.468H3.313a1 1 0 0 1-.964-1.266L6 3Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M11 13.5 12.5 8l-2 1m-1 4.5h3m4-12-.5 3m-2.5-3-.5 3m-2.5-3-.5 3\"})),calendar_date_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18\"})),calendar_date_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM7.5 2v3M12 2v3m4.5-3v3M8 13.5h.01M8 10h.01M8 17h.01M12 13.5h.01M12 10h.01M12 17h.01M16 13.5h.01M16 10h.01M16 17h.01\"})),caret_up_top_triangle_angle_arrow_upward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12.8 6.067a1 1 0 0 0-1.6 0l-7 9.333A1 1 0 0 0 5 17h14a1 1 0 0 0 .8-1.6l-7-9.333Z\"})),category_book_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 11h-5v3h5M7.5 15.5h3m-3 3h3\"})),category_file_documents_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16.5 7H5a2 2 0 1 1 0-4h16v6.5L19.5 11v7h-3\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5v16h13.5V7m-10 7.5h3m-3 3h3\"})),category_file_documents_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M5 20h16a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12Zm0 0H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h11.172a2 2 0 0 1 1.414.586L19 7\"})),category_file_documents_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M21 20H6a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h7.586a1 1 0 0 0 .707-.293l2.414-2.414A1 1 0 0 1 17.414 7H21a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M20 7V5a1 1 0 0 0-1-1h-3.586a1 1 0 0 0-.707.293l-2.414 2.414a1 1 0 0 1-.707.293H3a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h2\"})),category_file_documents_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 20V5a1 1 0 0 1 1-1h5.586a1 1 0 0 1 .707.293L11.5 6.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8 6.5h10a2 2 0 0 1 2 2V11M6 11l-4 9h16l4-9H6Z\"})),clock_reading_time_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 6v6l4 2\"})),clock_reading_time_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M12 2v1.5M2 12h1.5M12 22v-1.5M22 12h-1.5M13 13 9.5 9.5M11 13l5-5\"})),clock_reading_time_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 13.5V16a6 6 0 0 1-6 6H2v-7a6 6 0 0 1 6-6h1\"}),(0,a.createElement)(\"circle\",{cx:\"15.5\",cy:\"8.5\",r:\"6.5\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15.5 5.111V9l2 1.111M6 15h3m-3 3h7\"})),confused_emoji_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.5 10v1.5m7-1.5v1.5M9 17c.778-.839 3.267-2.516 7-1.845\"})),correct_save_check_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m8 12.5 2.5 2.5L16 9\"})),correct_save_check_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m4.5 13 5 5 10-12\"})),cross_close_x_minimize_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m8 8 8 8m0-8-8 8\"})),cross_x_close_minimize_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"m6 6 6 6m0 0 6 6m-6-6 6-6m-6 6-6 6\"})),desktop_monitor_computer_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2ZM8 21h8m-4-4v4m0-7.5h.01\"})),dot_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Z\",clipRule:\"evenodd\"})),download_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 15v4c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2v-4m-4-6-5 5-5-5m5 3.8V2.5\"})),download_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 13v8m0 0-2.5-2.5M12 21l2.5-2.5\"})),facebook_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M16.5 8H14a2 2 0 0 0-2 2v11m-2-7h5\"})),google_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m21.882 10.459-.103-.428h-9.485v3.938h5.667c-.588 2.741-3.318 4.184-5.549 4.184-1.623 0-3.333-.67-4.465-1.746a6.25 6.25 0 0 1-1.4-2.021 6.152 6.152 0 0 1-.502-2.393c0-1.66.76-3.318 1.865-4.41 1.106-1.091 2.776-1.702 4.437-1.702 1.902 0 3.264.99 3.774 1.442l2.853-2.784C18.137 3.818 15.838 2 12.254 2 9.49 2 6.84 3.039 4.903 4.933 2.99 6.8 2 9.497 2 12s.937 5.066 2.79 6.946C6.77 20.952 9.574 22 12.46 22c2.627 0 5.117-1.01 6.892-2.842 1.745-1.803 2.647-4.3 2.647-6.915 0-1.101-.113-1.755-.118-1.784Z\"})),growth_increase_up_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m20.2 7.8-7.7 7.7-4-4-5.7 5.7\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15 7h6v6\"})),hamicon_5_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M5 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 20a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"})),hamicon_6_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0-7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"})),happy_emoji_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.5 8v1.5m7-1.5v1.5M12 18a5 5 0 0 0 5-5H7a5 5 0 0 0 5 5Z\"})),heart_love_wishlist_favourite_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m4.098 13.848 7.52 7.519a.542.542 0 0 0 .765 0l7.52-7.52a5.678 5.678 0 0 0 0-8.028 5.047 5.047 0 0 0-7.138 0l-.711.71a.076.076 0 0 1-.107 0l-.711-.71a5.047 5.047 0 0 0-7.138 0 5.678 5.678 0 0 0 0 8.029Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16.334 7.48c.553 0 1.107.21 1.53.633.547.548.78 1.292.695 2.006\"})),hemicon_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M4 5h16M4 12h11.5M4 19h16\"})),hemicon_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M4 5h16M4 12h16M4 19h16\"})),hemicon_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M4 5h16M4 12h11.5M4 19h8\"})),hidden_hide_invisible_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M17.862 5.999c-1.61-1.148-3.576-2-5.86-2-7 0-11 8-11 8s1.764 3.529 5 5.899m3 1.596a9.213 9.213 0 0 0 3 .505c7 0 11-8 11-8s-.867-1.734-2.5-3.587\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M14 9.764A3 3 0 0 0 9.764 14m5.21-1.601a3.002 3.002 0 0 1-2.59 2.577M3.6 20.4 20.4 3.6\"})),home_house_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m3.671 9.403 7-6.222a2 2 0 0 1 2.658 0l7 6.222A2 2 0 0 1 21 10.898V19a2 2 0 0 1-2 2h-3.5a1 1 0 0 1-1-1v-5a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1v5a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2v-8.102a2 2 0 0 1 .671-1.495Z\"})),hourglass_timer_time_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 2v4.93a2 2 0 0 0 .89 1.664l4.555 3.036a1 1 0 0 0 1.11 0l4.554-3.036A2 2 0 0 0 18 6.93V2M6 22v-4.93a2 2 0 0 1 .89-1.664l4.555-3.036a1 1 0 0 1 1.11 0l4.554 3.036A2 2 0 0 1 18 17.07V22\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 2h16M4 22h16M9.5 19.5h5M11 17h2\"})),instagram_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"}),(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"2\",d:\"M17 7h.01\"})),laptop_computer_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3.5 6a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v10h-17V6Zm7 1h3M2 16h20v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-2Z\"})),left_align_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M3 3h18M3 21h8m-8-6h18M3 9h8\"})),left_triangle_angle_arrow_backward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6.067 12.8a1 1 0 0 1 0-1.6l9.333-7A1 1 0 0 1 17 5v14a1 1 0 0 1-1.6.8l-9.333-7Z\"})),linkedin_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M7.75 10.25v6\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"2\",d:\"M7.75 7.75h.01\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M11.25 10.25v6m5 0v-3.5a2.5 2.5 0 0 0-5 0\"})),link_chains_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m14.011 17.028-2.514 2.514a4.977 4.977 0 1 1-7.04-7.04L6.973 9.99M9.99 6.973l2.514-2.514a4.978 4.978 0 1 1 7.04 7.04l-2.515 2.513M9.5 14.5l5-5\"})),location_gps_map_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"10\",r:\"3\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 10.205C20 17.385 12 22 12 22s-8-4.615-8-11.795C4 5.674 7.582 2 12 2s8 3.674 8 8.205Z\"})),long_arrow_up_top_increase_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 21V3m0 0L6 9m6-6 6 6\"})),mail_email_messege_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m6 8 4.8 3.6a2 2 0 0 0 2.4 0L18 8\"})),media_document_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M5 21h14a2 2 0 0 0 2-2V8.828a2 2 0 0 0-.586-1.414l-3.828-3.828A2 2 0 0 0 15.172 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2ZM8 9h4m-4 3h8m-8 3h6\"})),messege_comment_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 7v15l5-4h13a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Zm7 3h4m-4 3h6\"})),messege_comment_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM9 9h4m-4 3h6\"})),messege_comment_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM8 11v-1m4 1v-1m4 1v-1\"})),messege_comment_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z\"})),messege_comment_5_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 12a9 9 0 1 1 9 9H3v-9Zm6-1.5h6m-6 3h6\"})),messege_comment_6_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16 16a4 4 0 0 1-4 4H2v-6a4 4 0 0 1 4-4\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 9a5 5 0 0 1 5-5h6a5 5 0 0 1 5 5v7H11a5 5 0 0 1-5-5V9Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M11 8.5h4m-4 3h6\"})),messege_comment_7_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 20c5.523 0 10-3.806 10-8.5S17.523 3 12 3 2 6.806 2 11.5c0 2.78 1.571 5.25 4 6.8v3.2l3.211-1.835A11.66 11.66 0 0 0 12 20Zm-3-9.5h6m-5 3h4\"})),messege_comment_8_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M14.5 18.703c-4.142 0-7.5-3.292-7.5-7.352C7 7.291 10.358 4 14.5 4c4.142 0 7.5 3.291 7.5 7.351 0 2.405-1.178 4.54-3 5.882V20l-2.408-1.587a7.645 7.645 0 0 1-2.092.29Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M9.352 5.55A7.131 7.131 0 0 0 8.5 5.5C4.91 5.5 2 8.174 2 11.473c0 1.954 1.021 3.69 2.6 4.779V18.5l2.087-1.29a7.04 7.04 0 0 0 2.813.166c.169-.024.336-.054.5-.09\"})),messenger_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12c0 1.834.494 3.553 1.355 5.03L2 22l4.818-1.445A9.954 9.954 0 0 0 12 22Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m7 13.75 3-3 3.5 3 3.5-3.5\"})),microsoft_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm9-2v18m-9-9h18\"})),middle_align_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M3 3h18M8 21h8M3 15h18M8 9h8\"})),mobile_smartphone_phone_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M17 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6.5 3h3\"})),pause_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h2.5a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm11.5 0a2 2 0 0 1 2-2H19a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2.5a2 2 0 0 1-2-2V5Z\"})),pinterest_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 11 8 21m1.818-4.5A5 5 0 1 0 7.416 14\"}),(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"})),play_media_video_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 2c5.522 0 10 4.477 10 10s-4.478 10-10 10C6.477 22 2 17.523 2 12S6.477 2 12 2Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m16 12-6-4v8l6-4Z\"})),price_tag_label_category_sale_discount_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12.328 2.5H20.5a1 1 0 0 1 1 1v8.172a2 2 0 0 1-.586 1.414l-8 8a2 2 0 0 1-2.829 0l-7.171-7.172a2 2 0 0 1 0-2.828l8-8a2 2 0 0 1 1.414-.586Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m8 13 3 3\"})),price_tag_offer_sale_coupon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15.5 5.5h-3.672a2 2 0 0 0-1.414.586l-6.5 6.5a2 2 0 0 0 0 2.828l6.171 6.172a2 2 0 0 0 2.829 0l6.5-6.5A2 2 0 0 0 20 13.672V6.5a1 1 0 0 0-1-1h-.5M8 14.5l3 3m-.5-4.5 2 2\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16 9c4.5-2.5 1.655-7.99-2.766-6.817-2.752.73-5.916 1.27-9.234 0\"})),reddit_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M12 9c-4.97 0-9 2.91-9 6.5S7.03 22 12 22s9-2.91 9-6.5S16.97 9 12 9Zm0 0V6a2 2 0 0 1 2-2h3m3.506 9.37a2.25 2.25 0 1 0-2.856-2.93M17 4a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM3.494 13.37a2.25 2.25 0 1 1 2.856-2.93\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M8.5 16.75c1.5 1.5 5.5 1.5 7 0M15 13h.01M9 13h.01\"})),refresh_reset_cycle_loop_infinity_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M21 12a9 9 0 0 1-17 4.127M3 12a9 9 0 0 1 17-4.127M20 3v5h-5M4 21v-5h5\"})),restriction_no_stop_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M5 19 19 5\"})),right_align_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M3 3h18m-8 18h8M3 15h18m-8-6h8\"})),right_triangle_angle_play_arrow_forward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M17.933 12.8a1 1 0 0 0 0-1.6L8.6 4.2A1 1 0 0 0 7 5v14a1 1 0 0 0 1.6.8l9.333-7Z\"})),search_magnify_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm10 2-4.35-4.35\"})),settings_tool_function_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M9.55 2.778A1 1 0 0 1 10.523 2h2.953a1 1 0 0 1 .975.778l.355 1.562a2 2 0 0 0 2.538 1.468l1.627-.5a1 1 0 0 1 1.155.447l1.456 2.464a1 1 0 0 1-.193 1.253l-1.16 1.04a2 2 0 0 0 0 2.978l1.16 1.038a1 1 0 0 1 .193 1.254l-1.456 2.464a1 1 0 0 1-1.155.447l-1.627-.5a2 2 0 0 0-2.538 1.468l-.355 1.56a1 1 0 0 1-.976.779h-2.952a1 1 0 0 1-.975-.778l-.355-1.562a2 2 0 0 0-2.538-1.468l-1.628.5a1 1 0 0 1-1.154-.446l-1.456-2.464a1 1 0 0 1 .193-1.254l1.16-1.038a2 2 0 0 0 0-2.979L2.61 9.472a1 1 0 0 1-.194-1.253l1.456-2.464a1 1 0 0 1 1.155-.447l1.628.5A2 2 0 0 0 9.194 4.34l.355-1.562Z\"}),(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"3\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"})),share_social_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.968 10.591a3.15 3.15 0 1 0 0 2.818m0-2.818c.212.424.332.902.332 1.409s-.12.985-.332 1.409m0-2.818 7.013-3.507M8.968 13.41l7.013 3.507m0-9.832a2.7 2.7 0 1 0 4.637-2.769 2.7 2.7 0 0 0-4.637 2.77Zm0 9.832a2.7 2.7 0 1 0 4.637 2.769 2.7 2.7 0 0 0-4.637-2.77Z\"})),shopping_cart_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5\"})),skype_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 3c-.415 0-.823.028-1.223.082a5.5 5.5 0 0 0-7.695 7.695 9 9 0 0 0 10.14 10.14 5.5 5.5 0 0 0 7.695-7.695A9 9 0 0 0 12 3Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15 10c0-1-1-2-3-2s-3 1-3 2c0 2.5 6 1.5 6 4 0 1-1 2-3 2s-3-1-3-2\"})),smile_emoji_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.5 8.5V10m7-1.5V10m-8.271 4a5.002 5.002 0 0 0 9.542 0\"})),social_community_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M14.632 5.032a8.446 8.446 0 0 1 5.79 8.024 8.5 8.5 0 0 1-.18 1.74M9.368 5.031a8.446 8.446 0 0 0-5.79 8.024c.001.596.063 1.178.18 1.74m13.915 4.5c.458.387 1.05.62 1.695.62A2.635 2.635 0 0 0 22 17.279a2.635 2.635 0 0 0-2.632-2.64 2.635 2.635 0 0 0-2.631 2.64c0 .81.364 1.534.936 2.018Zm0 0A8.378 8.378 0 0 1 12 21.5a8.378 8.378 0 0 1-5.673-2.204m0 0a2.636 2.636 0 0 0 .936-2.018 2.635 2.635 0 0 0-2.631-2.64A2.635 2.635 0 0 0 2 17.279a2.635 2.635 0 0 0 2.632 2.639c.645 0 1.237-.234 1.695-.62ZM14.632 5.14A2.635 2.635 0 0 1 12 7.778a2.635 2.635 0 0 1-2.632-2.64A2.635 2.635 0 0 1 12 2.5a2.635 2.635 0 0 1 2.632 2.639Z\"})),square_rounded_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"})),star_rating_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.579\",d:\"M11.016 3.125c.387-.833 1.58-.833 1.968 0l2.136 4.602c.158.34.482.573.856.617l5.067.597c.918.108 1.286 1.233.608 1.856l-3.748 3.444a1.07 1.07 0 0 0-.326.998l.994 4.974c.18.9-.785 1.595-1.592 1.147l-4.45-2.475a1.09 1.09 0 0 0-1.059 0L7.02 21.36c-.806.448-1.771-.247-1.591-1.147l.994-4.974a1.07 1.07 0 0 0-.326-.998l-3.749-3.444c-.677-.623-.309-1.748.609-1.856l5.067-.597c.374-.044.698-.278.856-.617l2.136-4.602Z\"})),stopwatch_reading_time_timer_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M21 13a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 7.5V13l3.5 2.5M12 4V1.5m-2 0h4M21 6l-2-2\"})),tablet_ipad_pad_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6 3h.01\"})),tag_bookmark_save_favourite_mark_discount_sale_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 4v18l6.8-5.1a2 2 0 0 1 2.4 0L20 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2Z\"})),tiktok_logo_icon_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208\"})),tiktok_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208\"})),triangle_rounded_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997Z\"})),triangle_shape_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 20 12 3l10 17H2Z\"})),twitter_x_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548\"})),upload_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 21v-8m0 0-2.5 2.5M12 13l2.5 2.5\"})),view_count_show_visible_eye_open_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 15a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z\"})),view_count_show_visible_eye_open_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z\"})),view_count_show_visible_eye_open_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M1 12c6-8.667 16-8.667 22 0-6 8.667-16 8.667-22 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M18 12a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15 12a3 3 0 0 0-3-3\"})),view_count_show_visible_eye_open_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 9c-1.996-3.913-6-6-10-6S3.996 5.087 2 9\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 21a7 7 0 0 0 6.308-10.038 2.5 2.5 0 1 1-3.27-3.27A7 7 0 1 0 12 21Z\"})),view_count_show_visible_eye_open_5_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 17a5 5 0 0 0 5-5h-5V7a5 5 0 0 0 0 10Z\"})),warning_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm0-14v4.5m0 3v.5\"})),warning_triangle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997ZM12 9v4.5m0 3v.5\"})),whatsapp_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12.806 14.02c-.849-.282-1.532-.824-1.768-1.06-.236-.235-.778-.919-1.06-1.767l1.202-1.91L9.553 5.96c-.943 0-3.04.778-3.323 3.323-.283 2.546 1.532 5.068 2.475 6.01.942.944 3.464 2.759 6.01 2.476 2.546-.283 3.323-2.381 3.323-3.324l-3.323-1.626-1.91 1.202Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10a9.953 9.953 0 0 1-5.183-1.446L2 22l1.445-4.818A9.953 9.953 0 0 1 2 12C2 6.477 6.477 2 12 2Z\"})),wordpress_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7 7.454H3.818\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-6.137 9.318 5.228-13.636m-3.864 9.772-4.09-10m-3.41 0 5.455 13.864\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.117 17.322 6.09 7.454H3.223m-.303.605 5.217 13.26\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M9.045 7.454h5M8.59 21.318l3.183-8.409M19.5 5.41h-.334a2.273 2.273 0 0 0-2.123 3.083l1.775 4.643\"})),youtube_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10 15V9l5 3-5 3Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M19.193 4.352c-3.627-.47-10.402-.47-14.213.004-1.456.18-2.57 1.446-2.757 3.168-.297 2.719-.297 6.233 0 8.952.188 1.722 1.301 2.988 2.757 3.168 3.811.473 10.586.475 14.213.004 1.36-.177 2.375-1.365 2.562-2.972.327-2.811.327-6.541 0-9.352-.187-1.607-1.202-2.795-2.562-2.972Z\"})),full_screen_corners_out_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3 8.5V5C3 3.89543 3.89543 3 5 3H8.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M3 15.5V19C3 20.1046 3.89543 21 5 21H8.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M21 8V5C21 3.89543 20.1046 3 19 3H15.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M21 15.5V19C21 20.1046 20.1046 21 19 21H15.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"})),zoom_in_magnifying_glass_plus_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M21.0004 21L16.6504 16.65\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M10.995 8V14M8 11.005L14 11.005\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"})),zoom_out_magnifying_glass_minus_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M21.0004 21L16.6504 16.65\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8 11.005L14 11.005\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"})),plugin_connect_socket_integration_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M21.5 2.5L18.5 5.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M18 12.9999L20.5858 10.4142C21.3668 9.63311 21.3668 8.36678 20.5858 7.58573L16.4142 3.41416C15.6332 2.63311 14.3668 2.63311 13.5858 3.41416L11 5.99994\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M5.9997 11L3.41391 13.5858C2.63286 14.3668 2.63286 15.6332 3.41391 16.4142L7.58549 20.5858C8.36653 21.3668 9.63286 21.3668 10.4139 20.5858L12.9997 18\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M2.5 21.5L5.5 18.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4.5 9.5L14.5 19.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M9.5 4.5L19.5 14.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M7 12L9.5 9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12 17L14.5 14.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),rocket_fly_boost_launch_pro_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M20.8991 2.5H21.5V3.10086C21.5 6.28346 19.7357 9.83572 17.4853 12.0862L13.5714 16L8 10.4286L11.9139 6.51473C14.1643 4.26429 17.7165 2.5 20.8991 2.5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M18.5 11L19 17L15 21L13.5 16\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8 10.5L3 9L7 5L13 5.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M9 15L3.5 20.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M11.5 17.5L9 20\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.5 12.5L4 15\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.4902 6.5H17.5002\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),gallery_indicator_image_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3 5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V13C21 14.1046 20.1046 15 19 15H5C3.89543 15 3 14.1046 3 13V5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M21.0002 12.6716L19.4144 11.0858C18.6333 10.3047 17.367 10.3047 16.5859 11.0858L15.9144 11.7574C15.1333 12.5384 13.867 12.5384 13.0859 11.7574L10.4144 9.08579C9.63332 8.30474 8.36699 8.30474 7.58594 9.08579L3.33594 13.3358\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M16.25 7C16.25 7.82843 15.5784 8.5 14.75 8.5C13.9216 8.5 13.25 7.82843 13.25 7C13.25 6.17157 13.9216 5.5 14.75 5.5C15.5784 5.5 16.25 6.17157 16.25 7Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M3 18.5C3 17.9477 3.44772 17.5 4 17.5H6.25C6.80228 17.5 7.25 17.9477 7.25 18.5V20C7.25 20.5523 6.80228 21 6.25 21H4C3.44772 21 3 20.5523 3 20V18.5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M10 18.5C10 17.9477 10.4477 17.5 11 17.5H13.25C13.8023 17.5 14.25 17.9477 14.25 18.5V20C14.25 20.5523 13.8023 21 13.25 21H11C10.4477 21 10 20.5523 10 20V18.5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M17 18.5C17 17.9477 17.4477 17.5 18 17.5H20C20.5523 17.5 21 17.9477 21 18.5V20C21 20.5523 20.5523 21 20 21H18C17.4477 21 17 20.5523 17 20V18.5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"})),unlocked_open_security_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4 12C4 10.8954 4.89543 10 6 10H18C19.1046 10 20 10.8954 20 12V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V12Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17 10V7C17 4.23858 14.7615 2 12 2C10.1493 2 8.53347 3.0055 7.66895 4.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12 15.5L12 16.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),unlink_link_break_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M14.0113 17.0281L11.4972 19.5421C9.55336 21.486 6.40175 21.486 4.45789 19.5421C2.51404 17.5983 2.51404 14.4467 4.45789 12.5028L6.97193 9.98877M9.98875 6.97192L12.5028 4.45789C14.4466 2.51404 17.5983 2.51404 19.5421 4.45789C21.486 6.40174 21.486 9.55334 19.5421 11.4972L17.0281 14.0112\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M9.5 14.5L14.5 9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M3 5L19 21\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"})),plus_circle_zoom_in_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12 7V12.0001M12 12.0001V17M12 12.0001H17M12 12.0001H7\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),sort_descending_order_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4 18.5H17\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4 6.5H9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4 12.5H11.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17 14.5V5.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M13 9.5L17 5.5L21 9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),sort_ascending_order_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4 5.5H17\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4 17.5H9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4 11.5H11.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17 9.5V18.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M13 14.5L17 18.5L21 14.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),right_circle_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8 12.5L10.5 15L16 9\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),plus:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z\"})),subtract:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}))}},5404:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294);const r={};r.moon=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M22 14.27A10.14 10.14 0 1 1 9.73 2 8.84 8.84 0 0 0 22 14.27Z\"})),r.moon_line=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M8.17 4.53A9.54 9.54 0 0 0 19.5 15.69a8.26 8.26 0 0 1-7.76 4.29 8.36 8.36 0 0 1-7.71-7.7 8.23 8.23 0 0 1 4.15-7.76m1-2.52c-.16 0-.32.03-.48.09a10.28 10.28 0 0 0 3.56 19.9c4.47 0 8.27-2.85 9.67-6.84a1.36 1.36 0 0 0-1.27-1.82c-.15 0-.31.03-.47.1a7.48 7.48 0 0 1-3.41.43 7.59 7.59 0 0 1-6.33-10.04A1.36 1.36 0 0 0 9.17 2Z\"})),r.sun=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\"},(0,a.createElement)(\"g\",null,(0,a.createElement)(\"path\",{d:\"M12 18.36a6.36 6.36 0 1 0 0-12.72 6.36 6.36 0 0 0 0 12.72ZM12.98.96V2.8c0 .53-.43.95-.97.95h-.02a.96.96 0 0 1-.97-.95V.96c0-.53.43-.96.96-.96h.05c.53 0 .96.43.96.96ZM4.89 3.5l1.3 1.3c.38.38.37.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.37 0l-1.3-1.3a.96.96 0 0 1 0-1.35l.04-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .95.43.95.97v.02c0 .53-.42.97-.95.97H.96a.95.95 0 0 1-.96-.96v-.05c0-.53.43-.96.96-.96ZM3.5 19.11l1.3-1.3a.96.96 0 0 1 1.36 0v.01l.02.01c.38.38.39.99 0 1.37l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.04a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.95.97-.95h.02c.53 0 .97.42.97.95v1.84c0 .53-.43.96-.96.96h-.05a.95.95 0 0 1-.96-.96ZM19.11 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.37 0l1.3 1.3c.38.37.38.98 0 1.35l-.04.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.95-.97v-.02c0-.53.42-.97.95-.97h1.84c.53 0 .96.43.96.96v.05c0 .53-.43.96-.96.96ZM20.5 4.89l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1 0-1.37l1.3-1.3a.96.96 0 0 1 1.35 0l.04.04c.37.37.37.98 0 1.35Z\"})),(0,a.createElement)(\"defs\",null)),r.sun_line=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 7.64a4.36 4.36 0 1 1-.01 8.73A4.36 4.36 0 0 1 12 7.64Zm0-2a6.35 6.35 0 1 0 0 12.71 6.35 6.35 0 0 0 0-12.7ZM12.98.96V2.8c0 .53-.43.96-.96.96h-.03a.96.96 0 0 1-.97-.96V.96c0-.53.43-.96.96-.96h.06c.52 0 .95.43.95.96ZM4.88 3.5l1.3 1.3c.38.38.38.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.36.01L3.5 4.9a.96.96 0 0 1 0-1.35l.03-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .96.43.96.96v.03c0 .53-.42.97-.96.97H.96a.96.96 0 0 1-.96-.96v-.06c0-.52.43-.95.96-.95ZM3.5 19.12l1.3-1.3a.96.96 0 0 1 1.38.02c.38.38.39.99.01 1.36l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.03a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.96.96-.96h.03c.53 0 .97.42.97.96v1.84c0 .53-.43.96-.96.96h-.06a.96.96 0 0 1-.95-.96ZM19.12 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.36-.01l1.3 1.3c.38.37.38.98 0 1.35l-.03.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.96-.96v-.03c0-.53.42-.97.96-.97h1.84c.53 0 .96.43.96.96v.06c0 .52-.43.95-.96.95ZM20.5 4.88l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1-.01-1.36l1.3-1.3a.96.96 0 0 1 1.35 0l.04.03c.38.37.38.98 0 1.35Z\"}));const o=r},3644:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>d});var a=n(7294),r=n(2304),o=n(1383),i=n(3100),l=n(4766),s=n(8949),p=n(356);const c=()=>{const[e,t]=(0,a.useState)({}),[n,i]=(0,a.useState)(!0),[l,c]=(0,a.useState)({status:\"\",messages:[],state:!1}),d={post_list_1:{label:(0,r.__)(\"Post List #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6836\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-1\u002F\",icon:\"post-list-1.svg\"},post_slider_2:{label:(0,r.__)(\"Post Slider #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7487\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-slider-2\u002F\",icon:\"post-slider-2.svg\"},post_list_4:{label:(0,r.__)(\"Post List #4\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6839\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-4\u002F\",icon:\"post-list-4.svg\"},post_slider_1:{label:(0,r.__)(\"Post Slider #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6840\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-slider-1\u002F\",icon:\"post-slider-1.svg\"},post_grid_4:{label:(0,r.__)(\"Post Grid #4\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6832\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-4\u002F\",icon:\"post-grid-4.svg\"},post_module_1:{label:(0,r.__)(\"Post Module #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6825\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-module-1\u002F\",icon:\"post-module-1.svg\"},post_grid_2:{label:(0,r.__)(\"Post Grid #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6830\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-2\u002F\",icon:\"post-grid-2.svg\"},advanced_search:{label:(0,r.__)(\"Search - PostX\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8233\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fsearch-block\",icon:\"advanced-search.svg\"},button_group:{label:(0,r.__)(\"Button Group\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7952\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fbutton-block\u002F\",icon:\"button-group.svg\"}},u=(0,o.t)();(0,a.useEffect)((()=>{m()}),[]);const m=()=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_all_settings\",method:\"POST\",data:{key:\"key\",value:\"value\"}}).then((e=>{e.success&&u.current&&(t(e.settings),i(!1))}))};return(0,a.createElement)(a.Fragment,null,l.state&&(0,a.createElement)(p.Z,{delay:2e3,toastMessages:l,setToastMessages:c}),Object.keys(d).map(((o,i)=>{const l=d[o];let p=!!l.default;return\"\"==e[o]&&(p=\"yes\"==e[o]),(0,a.createElement)(\"div\",{key:o},n?(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-item ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-meta\"},(0,a.createElement)(s.Z,{type:\"custom_size\",c_s:{size1:24,unit1:\"px\",size2:24,unit2:\"px\",br:4}}),(0,a.createElement)(s.Z,{type:\"custom_size\",c_s:{size1:70,unit1:\"px\",size2:24,unit2:\"px\",br:4}})),(0,a.createElement)(\"div\",{className:\"ultp-blocks-control-option ultp-dash-control-options\"},(0,a.createElement)(s.Z,{type:\"custom_size\",c_s:{size1:30,unit1:\"px\",size2:20,unit2:\"px\",br:4}}),(0,a.createElement)(s.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"px\",size2:20,unit2:\"px\",br:20}}))):(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-item ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-meta\"},(0,a.createElement)(\"img\",{className:\"ultp-blocks-item-icon\",src:`${ultp_dashboard_pannel.url}assets\u002Fimg\u002Fblocks\u002F${l.icon}`,alt:l.label}),(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-title\"},l.label)),(0,a.createElement)(\"div\",{className:\"ultp-blocks-control-option ultp-dash-control-options\"},l.live&&(0,a.createElement)(\"a\",{href:l.live,className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},(0,r.__)(\"Demo\",\"ultimate-post\")),(0,a.createElement)(\"input\",{type:\"checkbox\",className:\"ultp-blocks-enable\",id:o,checked:p,onChange:()=>{(n=>{const a=e?.hasOwnProperty(n)&&\"yes\"!=e[n]?\"yes\":\"\";t({...e,[n]:a}),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Faddon_block_action\",method:\"POST\",data:{key:n,value:a}}).then((e=>{e.success&&c({status:\"success\",messages:[e.message],state:!0})}))})(o)}}),(0,a.createElement)(\"label\",{className:\"ultp-control__label\",htmlFor:o}))))})))},d=()=>{const e=[{label:(0,r.__)(\"50+ Custom Layouts\",\"ultimate-post\")},{label:(0,r.__)(\"250+ Pattern\",\"ultimate-post\")},{label:(0,r.__)(\"45+ Custom Post Blocks\",\"ultimate-post\")},{label:(0,r.__)(\"Pin-point Customization\",\"ultimate-post\")},{label:(0,r.__)(\"Dynamic Site Building\",\"ultimate-post\")},{label:(0,r.__)(\"Limitless Flexibility\",\"ultimate-post\")}],[t,n]=(0,a.useState)(!1);return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-container-grid\"},(0,a.createElement)(\"div\",{className:\"ultp-dashboard-content\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-banner ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-left\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-title\"},\"Create Engaging Sites in Minutes…\"),(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-description\"},\"Thrilled to improve your WordPress blog? PostX supports you in creating and customizing stunning blogs! Design smooth, powerful websites - no compromises, unlimited options.\"),(0,a.createElement)(\"a\",{className:\"ultp-primary-alter-button\",onClick:e=>{e.preventDefault(),window.location.replace(\"#startersites\")}},(0,r.__)(\"Build with Starter Sites\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-right\"},t?(0,a.createElement)(\"iframe\",{className:\"ultp-dash-banner-right-video\",src:\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FFYgSe7kgb6M?autoplay=1\",allow:\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; fullscreen\",title:\"Ultimate Post\"}):(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-right-img\"},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdashboard_banner_right.png\",alt:(0,r.__)(\"Ultimate Post\",\"ultimate-post\")}),(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-right-play-button\",onClick:()=>{n(!0)}},l.ZP.rightFillAngle)))),(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-heading\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-heading-title\"},(0,r.__)(\"Blocks\",\"ultimate-post\")),(0,a.createElement)(\"a\",{onClick:e=>{e.preventDefault(),window.location.replace(\"#blocks\")},className:\"ultp-transparent-button\"},(0,r.__)(\"View All\",\"ultimate-post\"),l.ZP.angle_top_right_line)),(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-items\"},(0,a.createElement)(c,null))),!ultp_dashboard_pannel?.active&&(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left-title\"},(0,r.__)(\"Go Pro & Unlock More! 🚀\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left-description\"},(0,r.__)(\"Harness the true power of PostX: build, customize, and launch dynamic WordPress sites with unrestricted creative control - no code, no hassle.\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left-keyfeature\"},e.map(((e,t)=>(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left-keyfeature-item\",key:e.label},l.ZP.right_circle_solid,e.label)))),(0,a.createElement)(\"a\",{href:(0,i.Z)(\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-topbar&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing\"),target:\"_blank\",rel:\"noreferrer\",className:\"ultp-primary-alter-button\"},l.ZP.rocket,\"Upgrade to Pro\")),(0,a.createElement)(\"img\",{className:\"ultp-dash-pro-promo-right-img\",src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdashboard_pro_promo.png\",alt:\"Ultimate Post\"}))),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-features\"},(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-item ultp-sidebar-starter-sites\"},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fsidebar-starter-sites.png\",alt:\"Starter Sites Make it Easy\"}),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-title\"},\"Starter Sites Make it Easy\"),(0,a.createElement)(\"span\",{className:\"ultp-sidebar-card-description\"},\"Create awesome-looking webpages without any code with PostX starter sites - simply import the starter template of your choice. Drag, drop, and deploy your site in minutes.\"),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-buttons\"},(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fstarter-sites\u002F?utm_source=db-postx-started&utm_medium=starter-sites&utm_campaign=postx-dashboard&pux_link=dbstartersite\",className:\"ultp-primary-button\",target:\"_blank\",rel:\"noreferrer\"},l.ZP.angle_top_right_line,\"Explore Starter Templates\"))),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-item ultp-sidebar-community\"},(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-title\"},\"PostX Community\"),(0,a.createElement)(\"span\",{className:\"ultp-sidebar-card-description\"},\"Join the Facebook community of PostX to stay up-to-date and share your thoughts and feedback.\"),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-buttons\"},(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fgutenbergpostx\",className:\"ultp-primary-button\",target:\"_blank\",rel:\"noreferrer\"},l.ZP.facebook,\"Join PostX Community\")))))}},4482:(e,t,n)=>{\"use strict\";n.d(t,{DC:()=>p,WO:()=>m,ac:()=>u,cs:()=>d,gR:()=>f,hx:()=>c,u4:()=>l});var a=n(7294),r=n(4766),o=n(3100),i=n(4190);n(3479);const{__}=wp.i18n,l={preloader_style:{type:\"select\",label:__(\"Preloader Style\",\"ultimate-post\"),options:{style1:__(\"Preloader Style 1\",\"ultimate-post\"),style2:__(\"Preloader Style 2\",\"ultimate-post\")},default:\"style1\",desc:__(\"Select Preloader Style.\",\"ultimate-post\"),tooltip:__(\"PostX has two preloader variations that display while loading PostX's blocks if you enable the preloader for that blocks.\",\"ultimate-post\")},container_width:{type:\"number\",label:__(\"Container Width\",\"ultimate-post\"),default:\"1140\",desc:__(\"Change Container Width of the Page Template(PostX Template).\",\"ultimate-post\"),tooltip:__(\"Here you can increase or decrease the container width. It will be applicable when you create any dynamic template with the PostX Builder or select PostX's Template while creating a page.\",\"ultimate-post\")},hide_import_btn:{type:\"switch\",label:__(\"Hide Template Kits Button\",\"ultimate-post\"),default:\"\",desc:__(\"Hide Template Kits Button from toolbar of the Gutenberg Editor.\",\"ultimate-post\"),tooltip:__(\"Click on the check box to hide the Template Kits button from posts, pages, and the Builder of PostX.\",\"ultimate-post\")},disable_image_size:{type:\"switch\",label:__(\"Disable Image Size\",\"ultimate-post\"),default:\"\",desc:__(\"Disable Image Size of the Plugins.\",\"ultimate-post\"),tooltip:__(\"Click on the check box to turn off the PostX's size of the post images.\",\"ultimate-post\")},disable_view_cookies:{type:\"switch\",label:__(\"Disable All Cookies\",\"ultimate-post\"),default:\"\",desc:__(\"Disable All Frontend Cookies (Cookies Used for Post View Count).\",\"ultimate-post\"),tooltip:__(\"Click on the check box to restrict PostX from collecting cookies. PostX contains cookies to display the post view count.\",\"ultimate-post\")},disable_google_font:{type:\"switchButton\",label:__(\"Disable All Google Fonts\",\"ultimate-post\"),default:\"\",desc:__(\"Disable All Google Fonts From Frontend and Backend PostX Blocks.\",\"ultimate-post\"),tooltip:__(\"Click the check box to disable all Google Fonts from PostX's typography options.\",\"ultimate-post\")}},s=({multikey:e,value:t,multiValue:n})=>{var o;const[i,l]=(0,a.useState)([...n]),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(null!==(o=t.options)&&void 0!==o?o:{}),[u,m]=(0,a.useState)(\"\"),f=e=>{e.target.closest(\".ultp-ms-container\")||p(!1)};return(0,a.useEffect)((()=>(document.addEventListener(\"mousedown\",f),()=>document.removeEventListener(\"mousedown\",f))),[]),(0,a.useEffect)((()=>{setTimeout((()=>{const e=Object.fromEntries(Object.entries(t.options).filter((([e,t])=>t.toLowerCase().includes(u.toLowerCase())||e.toLowerCase().includes(u.toLowerCase()))));d(e)}),500)}),[u]),(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"input\",{type:\"hidden\",name:e,value:i,\"data-customprop\":\"custom_multiselect\"}),(0,a.createElement)(\"div\",{className:\"ultp-ms-container\"},(0,a.createElement)(\"div\",{onClick:()=>p(!s),className:\"ultp-ms-results-con cursor\"},(0,a.createElement)(\"div\",{className:\"ultp-ms-results\"},i.length>0?i?.map(((e,n)=>(0,a.createElement)(\"span\",{key:n,className:\"ultp-ms-selected\"},t.options[e],(0,a.createElement)(\"span\",{className:\"ultp-ms-remove cursor\",onClick:t=>{var n;t.stopPropagation(),n=e,l(i.filter((e=>e!=n)))}},r.ZP.close_circle_line)))):(0,a.createElement)(\"span\",null,__(\"Select options\"))),(0,a.createElement)(\"span\",{onClick:()=>p(!s),className:\"ultp-ms-results-collapse cursor\"},r.ZP.collapse_bottom_line)),s&&c&&(0,a.createElement)(\"div\",{className:\"ultp-ms-options\"},(0,a.createElement)(\"input\",{type:\"text\",className:\"ultp-multiselect-search\",value:u,onChange:e=>m(e.target.value)}),Object.keys(c)?.map(((e,n)=>(0,a.createElement)(\"span\",{className:\"ultp-ms-option cursor\",onClick:()=>(e=>{if(-1==i.indexOf(e)&&\"all\"!=e&&l([...i,e]),\"all\"===e){const e=Object.fromEntries(Object.entries(t.options).filter((([e,t])=>!t.toLowerCase().includes(\"all\"))));l(Object.keys(e))}})(e),key:n,value:e},c[e]))))))},p=(e,t)=>(0,a.createElement)(a.Fragment,null,Object.keys(e).map(((n,r)=>{const o=e[n];return(0,a.createElement)(\"span\",{key:r},\"hidden\"==o.type&&(0,a.createElement)(\"input\",{key:n,type:\"hidden\",name:n,defaultValue:o.value}),\"hidden\"!=o.type&&(0,a.createElement)(a.Fragment,null,\"heading\"==o.type&&(0,a.createElement)(\"div\",{className:\"ultp_h2 ultp-settings-heading\"},o.label)&&(0,a.createElement)(a.Fragment,null,o.desc&&(0,a.createElement)(\"div\",{className:\"ultp-settings-subheading\"},o.desc)),\"heading\"!=o.type&&(0,a.createElement)(\"div\",{className:\"ultp-settings-wrap\"},o.label&&(0,a.createElement)(\"strong\",null,o.label,o.tooltip&&(0,a.createElement)(i.Z,{content:o.tooltip},(0,a.createElement)(\"span\",{className:\" cursor dashicons dashicons-editor-help\"}))),(0,a.createElement)(\"div\",{className:\"ultp-settings-field-wrap\"},((e,t,n)=>{const r=n.hasOwnProperty(e)?n[e]:t.default?t.default:\"multiselect\"==t.type?[]:\"\";switch(t.type){case\"select\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"select\",{defaultValue:r,name:e,id:e},Object.keys(t.options).map(((e,n)=>(0,a.createElement)(\"option\",{key:n,value:e},t.options[e])))),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"radio\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"div\",{className:\"ultp-field-radio\"},(0,a.createElement)(\"div\",{className:\"ultp-field-radio-items\"},Object.keys(t.options).map(((n,o)=>(0,a.createElement)(\"div\",{key:o,className:\"ultp-field-radio-item\"},(0,a.createElement)(\"input\",{type:\"radio\",id:n,name:e,value:n,defaultChecked:n===r}),(0,a.createElement)(\"label\",{htmlFor:n},t.options[n])))))),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"color\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"input\",{type:\"text\",defaultValue:r,className:\"ultp-color-picker\"}),(0,a.createElement)(\"span\",{className:\"ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"text\",name:e,className:\"ultp-color-code\",defaultValue:r})),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"number\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"number\",name:e,defaultValue:r}),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"switch\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-field-inline\"},(0,a.createElement)(\"input\",{value:\"yes\",type:\"checkbox\",name:e,defaultChecked:\"yes\"==r||\"on\"==r}),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"switchButton\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-field-inline\"},(0,a.createElement)(\"input\",{type:\"checkbox\",value:\"yes\",name:e,defaultChecked:\"yes\"==r||\"on\"==r}),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"span\",{id:\"postx-regenerate-css\",className:`ultp-upgrade-pro-btn cursor ${\"yes\"==r?\"active\":\"\"} `},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-admin-generic\"}),(0,a.createElement)(\"span\",{className:\"ultp-text\"},__(\"Re-Generate Font Files\",\"ultimate-post\")))));case\"multiselect\":const n=Array.isArray(r)?r:[r];return(0,a.createElement)(s,{multikey:e,value:t,multiValue:n});case\"text\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"text\",name:e,defaultValue:r}),(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc,t.link&&(0,a.createElement)(\"a\",{className:\"settingsLink\",target:\"_blank\",href:t.link,rel:\"noreferrer\"},t.linkText)));case\"textarea\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"textarea\",{name:e,defaultValue:r}),(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc,t.link&&(0,a.createElement)(\"a\",{className:\"settingsLink\",target:\"_blank\",href:t.link,rel:\"noreferrer\"},t.linkText)));case\"shortcode\":return(0,a.createElement)(\"code\",{className:\"ultp-shortcode-copy\"},\"[\",t.value,\"]\")}})(n,o,t)))))}))),c=(e,t,n=\"\")=>{const r=n||__(\"Upgrade to Pro\",\"ultimate-post\");return(0,a.createElement)(\"a\",{href:(0,o.Z)(e,t,\"\"),className:\"ultp-upgrade-pro-btn\",target:\"_blank\",rel:\"noreferrer\"},r,\"  ➤\")},d=({tags:e,func:t,data:n})=>(0,a.createElement)(\"div\",{className:\"ultp-addon-lock-container-overlay\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-lock-container\"},(0,a.createElement)(\"div\",{className:\"ultp-popup-unlock\"},(0,a.createElement)(\"img\",{src:`${ultp_option_panel.url}\u002Fassets\u002Fimg\u002Fdashboard\u002F${n.icon}`,alt:\"lock icon\"}),(0,a.createElement)(\"div\",{className:\"title ultp_h5\"},n?.title),(0,a.createElement)(\"div\",{className:\"ultp-description\"},n?.description),c(\"\",e),(0,a.createElement)(\"button\",{onClick:()=>{t(!1)},className:\"ultp-popup-close\"},r.ZP.close_line)))),u=(e,t,n,r=\"\")=>(0,a.createElement)(\"a\",{href:(0,o.Z)(e,t,\"\"),className:\"ultp-primary-button \"+r,target:\"_blank\",rel:\"noreferrer\"},n),m=(e,t,n,r=\"\")=>(0,a.createElement)(\"a\",{href:(0,o.Z)(e,t,\"\"),className:\"ultp-secondary-button \"+r,target:\"_blank\",rel:\"noreferrer\"},n),f=({proBtnTags:e,FRBtnTag:t})=>{const[n,i]=(0,a.useState)([{id:\"go-pro-unlock-more\",title:\"Go Pro & Unlock More! 🚀\",description:\"Unlock the full potential of PostX to create and manage professional News Magazines and Blogging sites with complete creative freedom.\",features:[__(\"Access to 40+ Blocks\",\"ultimate-post\"),__(\"Access to 250+ Patterns\",\"ultimate-post\"),__(\"All Starter Packs Access\",\"ultimate-post\"),__(\"Advanced Query Builder\",\"ultimate-post\"),__(\"Ajax Filter and Pagination\",\"ultimate-post\"),__(\"Custom Fonts with Typography\",\"ultimate-post\")],visible:!ultp_option_panel.active,buttons:[{type:\"primary-alter\",icon:r.ZP.rocket,url:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-setting&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing\",label:\"Upgrade Pro\"},{type:\"transparent-alter\",label:\"Free VS Pro\"}]},{id:\"feature-request\",title:\"Feature Request\",description:\"Can't find your desired feature? Let us know your requirements. We will definitely take them into our consideration.\",buttons:[{type:\"primary\",url:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Froadmap\u002F?utm_source=postx-menu&utm_medium=DB-roadmap&utm_campaign=postx-dashboard\",label:\"Request a Feature\"}],visible:!0},{id:\"web-community\",title:\"PostX Community\",description:\"Join the Facebook community of PostX to stay up-to-date and share your thoughts and feedback.\",buttons:[{type:\"primary\",icon:r.ZP.facebook,url:\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fgutenbergpostx\",label:\"Join PostX Community\"}],visible:!0},{id:\"news-tips\",title:\"News, Tips & Update\",linkIcon:r.ZP.rightArrowLg,links:[{text:\"Getting Started with PostX\",url:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fgetting-started\u002F?utm_source=postx-menu&utm_medium=DB-news-postx_GT&utm_campaign=postx-dashboard\"},{text:\"How to use the Dynamic Site Builder\",url:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F?utm_source=postx-menu&utm_medium=DB-news-DSB_guide&utm_campaign=postx-dashboard\"},{text:\"How to use the PostX Features\",url:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fpostx-features\u002F?utm_source=postx-menu&utm_medium=DB-news-feature_guide&utm_campaign=postx-dashboard\"},{text:\"PostX Blog\",url:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcategory\u002Fpostx\u002F?utm_source=postx-menu&utm_medium=DB-news-blog&utm_campaign=postx-dashboard\"}],visible:!0},{id:\"rating\",title:\"Show your love\",description:\"Enjoying PostX? Give us a 5 Star review to support our ongoing work.\",buttons:[{type:\"primary\",url:\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Fultimate-post\u002Freviews\u002F\",label:\"Rate it Now\"}],visible:!0}]);return(0,a.createElement)(\"div\",{className:\"ultp-sidebar-features\"},!ultp_option_panel.active&&new Date>=new Date(\"2024-03-07\")&&new Date\u003C=new Date(\"2024-03-13\")&&(0,a.createElement)(\"div\",{className:\"ultp-dashboard-pro-features ultp-dash-item-con\"},(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=postx-ad&utm_medium=sidebar-banner&utm_campaign=postx-dashboard#pricing\",target:\"_blank\",style:{textDecoration:\"none !important\",display:\"block\"},rel:\"noreferrer\"},(0,a.createElement)(\"img\",{src:ultp_option_panel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdb_sidebar.jpg\",style:{width:\"100%\",height:\"100%\",borderRadius:\"8px\"},alt:\"40k+ Banner\"}))),n.map(((e,t)=>!1!==e.visible&&(0,a.createElement)(\"div\",{key:t,className:`ultp-sidebar-card-item ultp-sidebar-${e.id}`},\"banner\"===e.type?(0,a.createElement)(\"a\",{href:e.bannerUrl,target:\"_blank\",rel:\"noreferrer\",style:{textDecoration:\"none !important\",display:\"block\"}},(0,a.createElement)(\"img\",{src:e.imageUrl,style:{width:\"100%\",height:\"100%\",borderRadius:\"8px\"},alt:e.alt})):(0,a.createElement)(a.Fragment,null,e.title&&(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-title\"},__(e.title,\"ultimate-post\")),e.description&&(0,a.createElement)(\"span\",{className:\"ultp-sidebar-card-description\"},__(e.description,\"ultimate-post\")),e.features?(0,a.createElement)(\"div\",{className:\"ultp-pro-feature-lists\"},e.features.map(((e,t)=>(0,a.createElement)(\"span\",{key:t},r.ZP.right_circle_line,\" \",__(e,\"ultimate-post\"))))):e.links?(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-links\"},e.links.map(((t,n)=>(0,a.createElement)(\"a\",{className:\"ultp-sidebar-card-link\",key:n,target:\"_blank\",href:t.url,rel:\"noreferrer\"},e.linkIcon&&(0,a.createElement)(\"span\",null,e.linkIcon),__(t.text,\"ultimate-post\"))))):null,e.buttons&&e.buttons.length>0&&(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-buttons\"},e.buttons.map((e=>(({type:e=\"primary\",icon:t,url:n,tags:r,label:i,classname:l=\"\"})=>(0,a.createElement)(\"a\",{href:(0,o.Z)(n,r,\"\"),className:\"ultp-\"+e+\"-button \"+l,target:\"_blank\",rel:\"noreferrer\",key:i+Math.random()},t&&t,i))({type:e.type,icon:e.icon,url:e.url,tags:e.tags||\"\",label:e.label,classname:e.classname||\"\"})))))))))}},860:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>m});var a=n(7294),r=n(1383),o=n(7763),i=n(4766),l=n(4482),s=n(1389),p=n(8949),c=n(356),d=(n(6129),n(1370)),u=n(6731);const{__}=wp.i18n,m=({integrations:e,generalDiscount:t={}})=>{const[n,m]=(0,a.useState)(\"\"),[f,h]=(0,a.useState)(!1),[g,v]=(0,a.useState)({}),[_,w]=(0,a.useState)(\"\"),[b,x]=(0,a.useState)({state:!1,status:\"\"}),[y,k]=(0,a.useState)(\"\"),[E,C]=(0,a.useState)(!1);let S=d.q;const M=ultp_dashboard_pannel.addons_settings,L=Object.entries(S);L.sort(((e,t)=>e[1].position-t[1].position)),S=Object.fromEntries(L),(0,a.useEffect)((()=>(P(),document.addEventListener(\"mousedown\",A),()=>document.removeEventListener(\"mousedown\",A))),[]);const N=[{label:__(\"45+ Blocks\",\"ultimate-post\"),descp:__(\"PostX comes with over 45 Gutenberg blocks\",\"ultimate-post\")},{label:__(\"250+ Patterns\",\"ultimate-post\"),descp:__(\"Get full access to all ready post sections\",\"ultimate-post\")},{label:__(\"50+ Starter Sites\",\"ultimate-post\"),descp:__(\"Pre-built websites are ready to import in one click\",\"ultimate-post\")},{label:__(\"Global Styles\",\"ultimate-post\"),descp:__(\"Control the full website’s colors and typography globally\",\"ultimate-post\")},{label:__(\"Dark\u002FLight Mode\",\"ultimate-post\"),descp:__(\"Let your readers switch between light and dark modes\",\"ultimate-post\")},{label:__(\"Advanced Query Builder\",\"ultimate-post\"),descp:__(\"Display\u002Freorder posts, pages, and custom post types\",\"ultimate-post\")},{label:__(\"Dynamic Site Builder\",\"ultimate-post\"),descp:__(\"Dynamically create templates for essential pages\",\"ultimate-post\")},{label:__(\"Ajax Powered Filter\",\"ultimate-post\"),descp:__(\"Let your visitors filter posts by categories and tags\",\"ultimate-post\")},{label:__(\"Advanced Post Slider\",\"ultimate-post\"),descp:__(\"Display posts in engaging sliders and carousels\",\"ultimate-post\")},{label:__(\"SEO Meta Support\",\"ultimate-post\"),descp:__(\"Replace the post excerpts with meta descriptions\",\"ultimate-post\")},{label:__(\"Custom Fonts\",\"ultimate-post\"),descp:__(\"Upload custom fonts per your requirements\",\"ultimate-post\")},{label:__(\"Ajax Powered Pagination\",\"ultimate-post\"),descp:__(\"PostX comes with three types of Ajax pagination\",\"ultimate-post\")}],Z=(0,r.t)(),P=()=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_all_settings\",method:\"POST\",data:{key:\"key\",value:\"value\"}}).then((e=>{e.success&&Z.current&&v(e.settings)}))},z=e=>{C(!0),e.preventDefault();const t=new FormData(e.target),n={};for(const a of e.target.elements)a.name&&(\"checkbox\"!==a.type||a.checked?\"radio\"===a.type?a.checked&&(n[a.name]=a.value):\"select-multiple\"===a.type?n[a.name]=t.getAll(a.name):\"custom_multiselect\"==a.dataset.customprop?n[a.name]=a.value?a.value.split(\",\"):[]:n[a.name]=a.value:n[a.name]=\"\");wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fsave_plugin_settings\",method:\"POST\",data:{settings:n,action:\"action\",type:\"type\"}}).then((e=>{C(!1),e.success&&x({status:\"success\",messages:[e.message],state:!0})}))},A=e=>{e.target.closest(\".ultp-addon-settings-popup\")||m(\"\")},B=[__(\"Access to Pro Starter Site Templates\",\"ultimate-post\"),__(\"Access to All Pro Features\",\"ultimate-post\"),__(\"Fully Unlocked Site Builder\",\"ultimate-post\"),__(\"And more…\",\"ultimate-post\")],H=[{label:__(\"Add-Ons\",\"ultimate-post\"),value:\"addons\",integration:!1},{label:__(\"Integration Add-Ons\",\"ultimate-post\"),value:\"integration-addons\",integration:!0}];return(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-dashboard-addons-container \"+(Object.keys(g).length>0?\"\":\" skeletonOverflow\")},!e&&(0,a.createElement)(\"div\",{className:\"ultp-gettingstart-message\"},(0,a.createElement)(\"div\",{className:\"ultp-start-left\"},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdashboard_banner.jpg\",alt:\"Banner\"}),(0,a.createElement)(\"div\",{className:\"ultp-start-content\"},(0,a.createElement)(\"span\",{className:\"ultp-start-text\"},__(\"Enjoy Pro-level Ready Templates!\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-start-btns\"},(0,l.ac)(\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fstarter-sites\u002F?utm_source=db-postx-started&utm_medium=starter-sites&utm_campaign=postx-dashboard&pux_link=dbstartersite\",\"\",__(\"Explore Starter Sites\",\"ultimate-post\"),\"\"),(0,l.WO)(\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-started&utm_medium=details&utm_campaign=postx-dashboard\",\"\",__(\"Plugin Details\",\"ultimate-post\"),\"\")))),(0,a.createElement)(\"div\",{className:\"ultp-start-right\"},(0,a.createElement)(\"div\",{className:\"ultp-dashborad-banner\",style:{cursor:\"pointer\"},onClick:()=>k((0,a.createElement)(\"iframe\",{width:\"1100\",height:\"500\",src:\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FFYgSe7kgb6M?autoplay=1\",title:__(\"How to add Product Filter to WooCommerce Shop Page\",\"ultimate-post\"),allow:\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\",allowFullScreen:!0}))},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdashboard_right_banner.jpg\",className:\"ultp-banner-img\"}),(0,a.createElement)(\"div\",{className:\"ultp-play-icon-container\"},(0,a.createElement)(\"img\",{className:\"ultp-play-icon\",src:ultp_dashboard_pannel.url+\"\u002Fassets\u002Fimg\u002Fdashboard\u002Fplay.png\",alt:__(\"Play\",\"ultimate-post\")}),(0,a.createElement)(\"span\",{className:\"ultp-animate\"}))),(0,a.createElement)(\"div\",{className:\"ultp-dashboard-content\"},ultp_dashboard_pannel.active?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-title _pro\"},__(\"What Do You Need?\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-description _pro\"},__(\"Do you have something in mind you want to share? Both we and our users would like to hear about it. Share your ideas on our Facebook group and let us know what you need.\",\"ultimate-post\")),(0,l.ac)(\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fgutenbergpostx\",\"\",\"Share Ideas\",\"\")):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-title\"},__(\"Do More with\",\"ultimate-post\"),\" \",(0,a.createElement)(\"span\",{style:{color:\"var(--postx-primary-color)\"}},__(\"PRO:\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"ultp-description\"},__(\"Unlock powerful customizations with PostX Pro:\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-lists\"},B.map(((e,t)=>(0,a.createElement)(\"span\",{className:\"ultp-list\",key:t},o.Z.rightMark,\" \",e)))),(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-started&utm_medium=upgrade-pro-hero&utm_campaign=postx-dashboard#pricing\",className:\"ultp-upgrade-btn\",target:\"_blank\",rel:\"noreferrer\"},__(\"Upgrade to Pro\",\"ultimate-post\"),o.Z.rocketPro))))),f&&(0,l.cs)({tags:\"addons_popup\",func:e=>{h(e)},data:{icon:\"addon_lock.svg\",title:__(\"Unlock All Addons of PostX\",\"ultimate-post\"),description:__(\"Sorry, this addon is not available in the free version of PostX. Please upgrade to a pro plan to unlock all pro addons and features of PostX.\",\"ultimate-post\")}}),(0,a.createElement)(\"div\",{className:\"ultp-addons-container-grid\"},(0,a.createElement)(\"div\",{className:\"ultp-addons-items\"},H.map((t=>(0,a.createElement)(\"div\",{key:t.value,className:\"ultp-addon-group\"},(0,a.createElement)(\"div\",{className:\"ultp_h2 ultp-addon-parent-heading\"},t.label),Object.keys(g).length>0?((e=!1)=>(0,a.createElement)(\"div\",{className:\"ultp-addons-grid \"+(e?\"\":\"ultp-gs\")},Object.keys(S).map(((t,r)=>{const o=S[t];if(e&&!o.integration||!e&&o.integration)return;let s=!0;return s=!(\"true\"!=g[t]&&1!=g[t]||o.is_pro&&!ultp_dashboard_pannel.active),(0,a.createElement)(\"div\",{className:\"ultp-addon-item\",key:t},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-contents\",style:{paddingBottom:o.notice?\"10px\":\"auto\"}},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-name\"},(0,a.createElement)(\"img\",{src:`${ultp_dashboard_pannel.url}assets\u002Fimg\u002Faddons\u002F${o.img}`,alt:o.name}),(0,a.createElement)(\"div\",{className:\"ultp_h6 ultp-addon-item-title\"},o.name,o?.new&&(0,a.createElement)(\"span\",{className:\"ultp-new-tag\"},\"New\")),(0,a.createElement)(\"div\",{className:\"ultp-dash-control-options ultp-ml-auto\"},(0,a.createElement)(\"input\",{type:\"checkbox\",datatype:t,className:\"ultp-addons-enable \"+(o.is_pro&&!ultp_dashboard_pannel.active?\"disabled\":\"\"),id:t,checked:s,onChange:()=>{(e=>{const t=\"true\"==g[e]?\"false\":\"true\";!ultp_dashboard_pannel.active&&S[e].is_pro?(v({...g,[e]:\"false\"}),h(!0)):(v({...g,[e]:t}),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Faddon_block_action\",method:\"POST\",data:{key:e,value:t}}).then((n=>{n.success&&([\"ultp_templates\",\"ultp_custom_font\",\"ultp_builder\"].includes(e)&&(document.getElementById(\"postx-submenu-\"+e.replace(\"templates\",\"saved_templates\").replace(\"ultp_\",\"\").replace(\"_\",\"-\")).style.display=\"true\"==t?\"block\":\"none\",document.getElementById(e.replace(\"templates\",\"saved_templates\").replace(\"ultp_\",\"ultp-dasnav-\").replace(\"_\",\"-\")).style.display=\"true\"==t?\"\":\"none\"),setTimeout((function(){x({status:\"success\",messages:[n.message],state:!0})}),400))})))})(t)}}),(0,a.createElement)(\"label\",{htmlFor:t,className:\"ultp-control__label\"},o.is_pro&&!ultp_dashboard_pannel.active&&(0,a.createElement)(\"span\",{className:\"dashicons dashicons-lock\"})))),(0,a.createElement)(\"div\",{className:\"ultp-description\"},o.desc,o.notice&&(0,a.createElement)(\"div\",{className:\"ultp-description-notice\"},o.notice)),o.required&&o.required?.name&&(0,a.createElement)(\"span\",{className:\"ultp-plugin-required\"},\" \",__(\"This addon required this plugin:\",\"ultimate-post\"),o.required.name),o.is_pro&&!ultp_dashboard_pannel.active&&(0,a.createElement)(\"div\",{onClick:()=>{h(!0)},className:\"ultp-pro-lock\"},(0,a.createElement)(\"span\",null,\"PRO\"))),(0,a.createElement)(\"div\",{className:\"ultp-addon-item-actions ultp-dash-control-options\"},(0,a.createElement)(\"div\",{className:\"ultp-docs-action\"},o.live&&(0,a.createElement)(\"a\",{href:o.live.replace(\"live_demo_args\",`?utm_source=${e?\"db-postx-integration\":\"db-postx-addons\"}&utm_medium=${e?\"\":t+\"-\"}demo&utm_campaign=postx-dashboard`),className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},i.ZP.desktop,__(\"Demo\",\"ultimate-post\")),o.docs&&(0,a.createElement)(\"a\",{href:o.docs+(e?\"?utm_source=db-postx-integration\":\"?utm_source=db-postx-addons\")+\"&utm_medium=docs&utm_campaign=postx-dashboard\",className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},i.ZP.media_document,__(\"Docs\",\"ultimate-post\")),o.video&&(0,a.createElement)(\"a\",{href:o.video,className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},i.ZP.rightAngle,__(\"Video\",\"ultimate-post\")),M[t]&&(0,a.createElement)(\"div\",{className:\"ultp-popup-setting\",onClick:()=>{m(t)}},i.ZP.setting),n==t&&(0,a.createElement)(\"div\",{className:\"ultp-addon-settings\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-settings-popup\"},M[t]&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-addon-settings-title\"},(0,a.createElement)(\"div\",{className:\"ultp_h6\"},o.name,\": \",__(\"Settings\",\"ultimate-post\"))),(0,a.createElement)(\"form\",{onSubmit:z,action:\"\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-settings-body\"},\"ultp_frontend_submission\"===t&&(0,a.createElement)(u.Z,{attr:M[t].attr,settings:g,setSettings:v}),\"ultp_frontend_submission\"!=t&&(0,l.DC)(M[t].attr,g),(0,a.createElement)(\"div\",{className:\"ultp-data-message\"})),(0,a.createElement)(\"div\",{className:\"ultp-addon-settings-footer\"},(0,a.createElement)(\"button\",{type:\"submit\",className:\"cursor ultp-primary-button \"+(E?\"onloading\":\"\")},__(\"Save Settings\",\"ultimate-post\"),E&&i.ZP.refresh))),(0,a.createElement)(\"button\",{onClick:()=>{m(\"\")},className:\"ultp-popup-close\"})))))))}))))(!!t.integration):(0,a.createElement)(\"div\",{className:\"ultp-addons-grid \"+(e?\"\":\"ultp-gs\")},Array(6).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{key:t,className:\"ultp-addon-item\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-contents\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-name\"},(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"px\",size2:50,unit2:\"px\",br:18}}),(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:190,unit1:\"px\",size2:28,unit2:\"px\",br:4}})),(0,a.createElement)(\"div\",{className:\"ultp-description\"},(0,a.createElement)(p.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:100,unit1:\"%\",size2:14,unit2:\"px\",br:2}}),(0,a.createElement)(p.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:70,unit1:\"%\",size2:14,unit2:\"px\",br:2}}))),(0,a.createElement)(\"div\",{className:\"ultp-addon-item-actions ultp-dash-control-options\"},(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"px\",size2:20,unit2:\"px\",br:8}}),(0,a.createElement)(\"div\",{className:\"ultp-docs-action\"},(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:22,unit2:\"px\",br:2}}))))))),!e&&(0,a.createElement)(\"div\",{className:\"ultp_dash_key_features\"},(0,a.createElement)(\"div\",{className:\"ultp_h2\"},__(\"Key Features of PostX\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp_dash_key_features_content\"},N?.map(((e,t)=>(0,a.createElement)(\"div\",{key:t},(0,a.createElement)(\"div\",{className:\"ultp_dash_key_features_label\"},e.label),(0,a.createElement)(\"div\",{className:\"ultp-description\"},e.descp)))))))))),e&&(0,a.createElement)(l.gR,{FRBtnTag:\"settingsFR\",proBtnTags:\"postx_dashboard_settings\"}))),b.state&&(0,a.createElement)(c.Z,{delay:2e3,toastMessages:b,setToastMessages:x}),y&&(0,a.createElement)(s.Z,{title:__(\"Postx Intro\",\"ultimate-post\"),modalContent:y,setModalContent:k}))}},6731:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>i});var a=n(7294),r=n(4190),o=n(4766);const{__}=wp.i18n,i=({attr:e,settings:t,setSettings:n})=>{const i=e,l=({multikey:e,value:r,multiValue:i})=>{var l;const[s,p]=(0,a.useState)([...i]),[c,d]=(0,a.useState)(!1),[u,m]=(0,a.useState)(null!==(l=r.options)&&void 0!==l?l:{}),[f,h]=(0,a.useState)(\"\"),g=e=>{e.target.closest(\".ultp-ms-container\")||d(!1)};return(0,a.useEffect)((()=>(document.addEventListener(\"mousedown\",g),()=>document.removeEventListener(\"mousedown\",g))),[]),(0,a.useEffect)((()=>{setTimeout((()=>{const e=Object.fromEntries(Object.entries(r.options).filter((([e,t])=>t.toLowerCase().includes(f.toLowerCase())||e.toLowerCase().includes(f.toLowerCase()))));m(e)}),500)}),[f]),(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"input\",{type:\"hidden\",name:e,value:s,\"data-customprop\":\"custom_multiselect\"}),(0,a.createElement)(\"div\",{className:\"ultp-ms-container\"},(0,a.createElement)(\"div\",{onClick:()=>d(!c),className:\"ultp-ms-results-con cursor\"},(0,a.createElement)(\"div\",{className:\"ultp-ms-results\"},s.length>0?s?.map(((i,l)=>(0,a.createElement)(\"span\",{key:l,className:\"ultp-ms-selected\"},r.options[i],(0,a.createElement)(\"span\",{className:\"ultp-ms-remove cursor\",onClick:a=>{a.stopPropagation(),(a=>{const r=s.filter((e=>e!=a));p(r),n({...t,[e]:r})})(i)}},o.ZP.close_circle_line)))):(0,a.createElement)(\"span\",null,__(\"Select options\"))),(0,a.createElement)(\"span\",{onClick:()=>d(!c),className:\"ultp-ms-results-collapse cursor\"},o.ZP.collapse_bottom_line)),c&&u&&(0,a.createElement)(\"div\",{className:\"ultp-ms-options\"},(0,a.createElement)(\"input\",{type:\"text\",className:\"ultp-multiselect-search\",value:f,onChange:e=>h(e.target.value)}),Object.keys(u)?.map(((o,i)=>(0,a.createElement)(\"span\",{className:\"ultp-ms-option cursor\",onClick:()=>(a=>{let o=[];if(-1==s.indexOf(a)&&\"all\"!=a&&(o=[...s,a]),\"all\"===a){const e=Object.fromEntries(Object.entries(r.options).filter((([e,t])=>!t.toLowerCase().includes(\"all\"))));o=Object.keys(e)}p(o),n({...t,[e]:o})})(o),key:i,value:o},u[o]))))))};return(0,a.createElement)(a.Fragment,null,Object.keys(i).map(((e,o)=>{const s=i[e];return(0,a.createElement)(\"span\",{key:o},\"hidden\"==s.type&&(0,a.createElement)(\"input\",{key:e,type:\"hidden\",name:e,defaultValue:s.value}),\"hidden\"!=s.type&&(0,a.createElement)(a.Fragment,null,\"heading\"==s.type&&(0,a.createElement)(\"h2\",{className:\"ultp-settings-heading\"},s.label)&&(0,a.createElement)(a.Fragment,null,s.desc&&(0,a.createElement)(\"div\",{className:\"ultp-settings-subheading\"},s.desc)),\"heading\"!=s.type&&((e,n)=>{let a=!0;return n.hasOwnProperty(\"depends_on\")&&n.depends_on.forEach((e=>{\"==\"==e.condition&&t[e.key]!=e.value&&(a=!1)})),a})(0,s)&&(0,a.createElement)(\"div\",{className:\"ultp-settings-wrap\"},s.label&&(0,a.createElement)(\"strong\",null,s.label,s.tooltip&&(0,a.createElement)(r.Z,{placement:\"bottom\",content:s.tooltip},(0,a.createElement)(\"span\",{className:\" cursor dashicons dashicons-editor-help\"}))),(0,a.createElement)(\"div\",{className:\"ultp-settings-field-wrap\"},((e,r,o)=>{const i=t.hasOwnProperty(e)?t[e]:t.default?t.default:\"multiselect\"==r.type?[]:\"\",s=e=>{n((t=>\"checkbox\"===e.target.type?{...t,[e.target.name]:e.target.checked?\"yes\":\"no\"}:{...t,[e.target.name]:e.target.value}))};switch(r.type){case\"select\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"select\",{defaultValue:i,name:e,id:e,onChange:s},Object.keys(r.options).map(((e,t)=>(0,a.createElement)(\"option\",{key:t,value:e},r.options[e])))),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"radio\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"div\",{className:\"ultp-field-radio\"},(0,a.createElement)(\"div\",{className:\"ultp-field-radio-items\"},Object.keys(r.options).map(((t,n)=>(0,a.createElement)(\"div\",{key:n,className:\"ultp-field-radio-item\"},(0,a.createElement)(\"input\",{type:\"radio\",id:t,name:e,value:t,defaultChecked:t==i,onChange:s}),(0,a.createElement)(\"label\",{htmlFor:t},r.options[t])))))),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"color\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"input\",{type:\"text\",defaultValue:i,className:\"ultp-color-picker\"}),(0,a.createElement)(\"span\",{className:\"ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"text\",name:e,className:\"ultp-color-code\",defaultValue:i})),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"number\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"number\",name:e,defaultValue:i,onChange:s}),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"switch\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-field-inline\"},(0,a.createElement)(\"input\",{value:\"yes\",type:\"checkbox\",name:e,defaultChecked:\"yes\"==i||\"on\"==i,onChange:s}),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"switchButton\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-field-inline\"},(0,a.createElement)(\"input\",{type:\"checkbox\",value:\"yes\",name:e,defaultChecked:\"yes\"==i||\"on\"==i}),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"span\",{id:\"postx-regenerate-css\",className:`ultp-upgrade-pro-btn cursor ${\"yes\"==i?\"active\":\"\"} `},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-admin-generic\"}),(0,a.createElement)(\"span\",{className:\"ultp-text\"},__(\"Re-Generate Font Files\",\"ultimate-post\")))));case\"multiselect\":const t=Array.isArray(i)?i:[i];return(0,a.createElement)(l,{multikey:e,value:r,multiValue:t});case\"text\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"text\",name:e,defaultValue:i,onChange:s}),(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc,r.link&&(0,a.createElement)(\"a\",{className:\"settingsLink\",target:\"_blank\",href:r.link,rel:\"noreferrer\"},r.linkText)));case\"textarea\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"textarea\",{name:e,defaultValue:i}),(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc,r.link&&(0,a.createElement)(\"a\",{className:\"settingsLink\",target:\"_blank\",href:r.link,rel:\"noreferrer\"},r.linkText)));case\"shortcode\":return(0,a.createElement)(\"code\",{className:\"ultp-shortcode-copy\"},\"[\",r.value,\"]\")}})(e,s)))))})))}},1370:(e,t,n)=>{\"use strict\";n.d(t,{q:()=>a});const{__}=wp.i18n,a={ultp_wpbakery:{name:\"WPBakery\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the WPBakery Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"wpbakery.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fwpbakery-page-builder-addon\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=f99NZ6N9uDQ\",position:20,integration:!0},ultp_templates:{name:\"Saved Templates\",desc:__(\"Create unlimited templates by converting Gutenberg blocks into shortcodes to use them anywhere.\",\"ultimate-post\"),img:\"saved-template.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fshortcodes-support\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Faddons\u002Fsave-template\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=6ydwiIp2Jkg\",position:10},ultp_table_of_content:{name:\"Table of Contents\",desc:__(\"It enables a highly customizable block to the Gutenberg blocks library to display the Table of Contents.\",\"ultimate-post\"),img:\"table-of-content.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Ftable-of-content\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Faddons\u002Ftable-of-content\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=xKu_E720MkE\",position:25},ultp_oxygen:{name:\"Oxygen\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Oxygen Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"oxygen.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Foxygen-builder-addon\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=iGik4w3ZEuE\",position:20,integration:!0},ultp_elementor:{name:\"Elementor\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Elementor Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"elementor-icon.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Felementor-addon\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=GJEa2_Tow58\",position:20,integration:!0},ultp_dynamic_content:{name:\"Dynamic Content\",desc:__(\"Insert dynamic, real-time content like excerpts, dates, author names, etc. in PostX blocks.\",\"ultimate-post\"),img:\"dynamic-content.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fpostx-features\u002Fdynamic-content\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcreate-custom-fields-in-wordpress\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=4oeXkHCRVCA\",position:6,notice:\"ACF, Meta Box and Pods (PRO)\",new:!0},ultp_divi:{name:\"Divi\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Divi Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"divi.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fdivi-addon\u002F?utm_source=postx-menu&utm_medium=addons-demo&utm_campaign=postx-dashboard\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=p9RKTYzqU48\",position:20,integration:!0},ultp_custom_font:{name:\"Custom Font\",desc:__(\"It allows you to upload custom fonts and use them on any PostX blocks with all typographical options.\",\"ultimate-post\"),img:\"custom_font.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fwordpress-custom-fonts\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fcustom-fonts\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=tLqUpj_gL-U\",position:7},ultp_bricks_builder:{name:\"Bricks Builder\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Bricks Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"bricks.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fbricks-builder-addon\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=t0ae3TL48u0\",position:20,integration:!0},ultp_beaver_builder:{name:\"Beaver\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Beaver Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"beaver.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fbeaver-builder-addon\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=aLfI0RkJO6g\",position:20,integration:!0},ultp_frontend_submission:{name:\"Front End Post Submission\",desc:__(\"Registered\u002Fguest writers can submit posts from frontend. Admins can easily manage, review, and publish posts.\",\"ultimate-post\"),img:\"frontend_submission.svg\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Ffront-end-post-submission\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Ffront-end-post-submission\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=KofF7BUwNC0\",is_pro:!0,position:6,integration:!1},ultp_category:{name:\"Taxonomy Image & Color\",desc:__(\"It allows you to add category or taxonomy-specific featured images and colors to make them attractive.\",\"ultimate-post\"),is_pro:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fcategory-addon\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Ftaxonomy-image-and-color\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=cd75q-lJIwg\",img:\"category-style.svg\",position:15},ultp_progressbar:{name:\"Progress Bar\",desc:__(\"Display a visual indicator of the reading progression of blog posts and the scrolling progression of pages.\",\"ultimate-post\"),img:\"progressbar.svg\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fprogress-bar\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fprogress-bar\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=QErQoDhWi4c\",is_pro:!0,position:30},ultp_yoast:{name:\"Yoast\",desc:__(\"It allows you to display custom meta descriptions added with the Yoast SEO plugin instead of excerpts.\",\"ultimate-post\"),img:\"yoast.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"Yoast\",slug:\"wordpress-seo\u002Fwp-seo.php\"},position:55,integration:!0},ultp_aioseo:{name:\"All in One SEO\",desc:__(\"It allows you to display custom meta descriptions added with the All in One SEO plugin instead of excerpts.\",\"ultimate-post\"),img:\"aioseo.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"All in One SEO\",slug:\"all-in-one-seo-pack\u002Fall_in_one_seo_pack.php\"},position:35,integration:!0},ultp_rankmath:{name:\"Rank Math\",desc:__(\"It allows you to display custom meta descriptions added with the Rank Math plugin instead of excerpts.\",\"ultimate-post\"),img:\"rankmath.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"Rank Math\",slug:\"seo-by-rank-math\u002Frank-math.php\"},position:40,integration:!0},ultp_seopress:{name:\"SEOPress\",desc:__(\"It allows you to display custom meta descriptions added with the SEOPress plugin instead of excerpts.\",\"ultimate-post\"),img:\"seopress.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"SEOPress\",slug:\"wp-seopress\u002Fseopress.php\"},position:45,integration:!0},ultp_squirrly:{name:\"Squirrly\",desc:__(\"It allows you to display custom meta descriptions added with the Squirrly plugin instead of excerpts.\",\"ultimate-post\"),img:\"squirrly.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"Squirrly\",slug:\"squirrly-seo\u002Fsquirrly.php\"},position:50,integration:!0},ultp_builder:{name:\"Dynamic Site Builder\",desc:__(\"The Gutenberg-based Builder allows users to create dynamic templates for Home and all Archive pages.\",\"ultimate-post\"),img:\"builder-icon.svg\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fgutenberg-site-builder\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=0qQmnUqWcIg\",is_pro:!1,position:5},ultp_chatgpt:{name:\"ChatGPT\",desc:__(\"PostX brings the ChatGPT into the WordPress Dashboard to let you generate content effortlessly.\",\"ultimate-post\"),img:\"ChatGPT.svg\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fchatgpt-addon\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx-chatgpt-wordpress-ai-content-generator\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=NE4BPw4OTAA\",is_pro:!1,position:6}}},7191:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>s});var a=n(7294),r=n(1383),o=n(8949),i=n(356);n(563);const{__}=wp.i18n,l={grid:{label:__(\"Post Grid Blocks\",\"ultimate-post\"),attr:{post_grid_1:{label:__(\"Post Grid #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6829\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-1\u002F\",icon:\"post-grid-1.svg\"},post_grid_2:{label:__(\"Post Grid #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6830\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-2\u002F\",icon:\"post-grid-2.svg\"},post_grid_3:{label:__(\"Post Grid #3\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6831\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-3\u002F\",icon:\"post-grid-3.svg\"},post_grid_4:{label:__(\"Post Grid #4\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6832\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-4\u002F\",icon:\"post-grid-4.svg\"},post_grid_5:{label:__(\"Post Grid #5\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6833\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-5\u002F\",icon:\"post-grid-5.svg\"},post_grid_6:{label:__(\"Post Grid #6\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6834\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-6\u002F\",icon:\"post-grid-6.svg\"},post_grid_7:{label:__(\"Post Grid #7\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6835\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-7\u002F\",icon:\"post-grid-7.svg\"}}},list:{label:__(\"Post List Blocks\",\"ultimate-post\"),attr:{post_list_1:{label:__(\"Post List #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6836\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-1\u002F\",icon:\"post-list-1.svg\"},post_list_2:{label:__(\"Post List #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6837\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-2\u002F\",icon:\"post-list-2.svg\"},post_list_3:{label:__(\"Post List #3\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6838\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-3\u002F\",icon:\"post-list-3.svg\"},post_list_4:{label:__(\"Post List #4\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6839\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-4\u002F\",icon:\"post-list-4.svg\"}}},slider:{label:__(\"Post Slider Blocks\",\"ultimate-post\"),attr:{post_slider_1:{label:__(\"Post Slider #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6840\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-slider-1\u002F\",icon:\"post-slider-1.svg\"},post_slider_2:{label:__(\"Post Slider #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7487\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-slider-2\u002F\",icon:\"post-slider-2.svg\"}}},other:{label:__(\"Others PostX Blocks\",\"ultimate-post\"),attr:{menu:{label:__(\"Menu - PostX\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fintroducing-postx-mega-menu\u002F\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fpostx-menu\u002F\",icon:\"\u002Fmenu\u002Fmenu.svg\"},post_module_1:{label:__(\"Post Module #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6825\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-module-1\u002F\",icon:\"post-module-1.svg\"},post_module_2:{label:__(\"Post Module #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6827\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-module-2\u002F\",icon:\"post-module-2.svg\"},heading:{label:__(\"Heading\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6842\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fheading-blocks\u002F\",icon:\"heading.svg\"},image:{label:__(\"Image\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6843\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fimage-blocks\u002F\",icon:\"image.svg\"},taxonomy:{label:__(\"Taxonomy\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6841\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Ftaxonomy-1\u002F\",icon:\"ultp-taxonomy.svg\"},wrapper:{label:__(\"Wrapper\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6844\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fwrapper\u002F\",icon:\"wrapper.svg\"},news_ticker:{label:__(\"News Ticker\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6845\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fnews-ticker-block\u002F\",icon:\"news-ticker.svg\"},advanced_list:{label:__(\"List - PostX\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7994\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Flist-block\u002F\",icon:\"advanced-list.svg\"},button_group:{label:__(\"Button Group\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7952\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fbutton-block\u002F\",icon:\"button-group.svg\"},row:{label:__(\"Row\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx-row-column-block\u002F\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fpostx-features\u002Frow-column\u002F\",icon:\"row.svg\"},advanced_search:{label:__(\"Search - PostX\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8233\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fsearch-block\",icon:\"advanced-search.svg\"},dark_light:{label:__(\"Dark Light\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8233\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fsearch-block\",icon:\"advanced-search.svg\"},star_ratings:{label:__(\"Star Rating\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8858\",icon:\"star-rating.svg\"},accordion:{label:__(\"Accordion\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8851\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Faccordion-block\u002F\",icon:\"accordion.svg\"},tabs:{label:__(\"Tabs\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid9045\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Ftabs-block\u002F\",icon:\"tabs.svg\"},gallery:{label:__(\"PostX Gallery\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8951\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpostx-gallery-block\u002F\",icon:\"gallery.svg\"},youtube_gallery:{label:__(\"Youtube Gallery\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid9096\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fyoutube-gallery-block\u002F\",icon:\"youtube-gallery.svg\"}}},builder:{label:__(\"Site Builder Blocks\",\"ultimate-post\"),attr:{builder_post_title:{label:__(\"Post Title\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fpost_title.svg\"},builder_advance_post_meta:{label:__(\"Advance Post Meta\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fpost_meta.svg\"},builder_archive_title:{label:__(\"Archive Title\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"archive-title.svg\"},builder_author_box:{label:__(\"Post Author Box\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fauthor_box.svg\"},builder_post_next_previous:{label:__(\"Post Next Previous\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fnext_previous.svg\"},builder_post_author_meta:{label:__(\"Post Author Meta\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fauthor.svg\"},builder_post_breadcrumb:{label:__(\"Post Breadcrumb\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fbreadcrumb.svg\"},builder_post_category:{label:__(\"Post Category\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fcategory.svg\"},builder_post_comment_count:{label:__(\"Post Comment Count\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fcomment_count.svg\"},builder_post_comments:{label:__(\"Post Comments\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fcomments.svg\"},builder_post_content:{label:__(\"Post Content\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fcontent.svg\"},builder_post_date_meta:{label:__(\"Post Date Meta\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fpost_date.svg\"},builder_post_excerpt:{label:__(\"Post Excerpt\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fexcerpt.svg\"},builder_post_featured_image:{label:__(\"Post Featured Image\u002FVideo\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Ffeatured_img.svg\"},builder_post_reading_time:{label:__(\"Post Reading Time\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Freading_time.svg\"},builder_post_social_share:{label:__(\"Post Social Share\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fshare.svg\"},builder_post_tag:{label:__(\"Post Tag\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fpost_tag.svg\"},builder_post_view_count:{label:__(\"Post View Count\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fview_count.svg\"}}}},s=()=>{const[e,t]=(0,a.useState)({}),[n,s]=(0,a.useState)({state:!1,status:\"\"}),[p,c]=(0,a.useState)(!1),d=(0,r.t)();(0,a.useEffect)((()=>{u()}),[]);const u=()=>{c(!0),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_all_settings\",method:\"POST\",data:{key:\"key\",value:\"value\"}}).then((e=>{e.success&&d.current&&(t(e.settings),c(!1))}))};return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-blocks-container\"},n.state&&(0,a.createElement)(i.Z,{delay:2e3,toastMessages:n,setToastMessages:s}),Object.keys(l).map(((n,r)=>{const i=l[n];return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-blocks-group\",key:r},p?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:180,unit1:\"px\",size2:32,unit2:\"px\",br:4}}),(0,a.createElement)(\"div\",{className:\"ultp-dashboard-group-blocks\"},Array(3).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{className:\"ultp-dashboard-group-blocks-item ultp-dash-item-con\",key:t},(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-meta\"},(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:22,unit1:\"px\",size2:25,unit2:\"px\",br:4}}),(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"px\",size2:20,unit2:\"px\",br:2}})),(0,a.createElement)(\"div\",{className:\"ultp-blocks-control-option ultp-dash-control-options\"},(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:46,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:36,unit1:\"px\",size2:20,unit2:\"px\",br:8}}))))))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp_h5\"},i.label),(0,a.createElement)(\"div\",{className:\"ultp-dashboard-group-blocks\"},Object.keys(i.attr).map(((n,r)=>{const o=i.attr[n];let l=!!o.default;return\"\"==e[n]&&(l=\"yes\"==e[n]),(0,a.createElement)(\"div\",{className:\"ultp-dashboard-group-blocks-item ultp-dash-item-con\",key:r},(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-meta\"},(0,a.createElement)(\"img\",{src:`${ultp_dashboard_pannel.url}assets\u002Fimg\u002Fblocks\u002F${o.icon}`,alt:o.label}),(0,a.createElement)(\"div\",null,o.label)),(0,a.createElement)(\"div\",{className:\"ultp-blocks-control-option ultp-dash-control-options\"},o.docs&&(0,a.createElement)(\"a\",{href:o.docs+\"?utm_source=db-postx-blocks&utm_medium=docs&utm_campaign=postx-dashboard\",className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"div\",{className:\"dashicons dashicons-media-document\"}),__(\"Docs\",\"ultimate-post\")),o.live&&(0,a.createElement)(\"a\",{href:o.live,className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"div\",{className:\"dashicons dashicons-external\"}),__(\"Live\",\"ultimate-post\")),(0,a.createElement)(\"input\",{type:\"checkbox\",className:\"ultp-blocks-enable\",id:n,checked:l,onChange:()=>{(n=>{const a=e?.hasOwnProperty(n)&&\"yes\"!=e[n]?\"yes\":\"\";t({...e,[n]:a}),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Faddon_block_action\",method:\"POST\",data:{key:n,value:a}}).then((e=>{e.success&&s({status:\"success\",messages:[e.message],state:!0})}))})(n)}}),(0,a.createElement)(\"label\",{className:\"ultp-control__label\",htmlFor:n})))})))))})))}},4872:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>i});var a=n(7294),r=n(1078),o=n(6765);const{__}=wp.i18n,i=e=>{const{id:t,type:n,settings:i,defaults:l,setShowCondition:s}=e,[p,c]=(0,a.useState)(t&&void 0!==i[n]&&void 0!==i[n][t]?i[n][t]:[\"include\u002F\"+n]),[d,u]=(0,a.useState)({reload:!1,dataSaved:!1});return(0,a.createElement)(\"div\",{className:\"ultp-modal-content\"},(0,a.createElement)(\"div\",{className:\"ultp-condition-wrap\"},(0,a.createElement)(\"div\",{className:\"ultp_h3\"},__(\"Where Do You Want to Display Your Template?\",\"ultimate-post\")),(0,a.createElement)(\"p\",{className:\"ultp-description\"},__(\"Set the conditions that determine where your Template is used throughout your site.\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-condition-items\"},p.map(((e,i)=>{if(e)return(0,a.createElement)(\"div\",{key:i,className:\"ultp-condition-wrap__field\"},\"header\"==n||\"footer\"==n?(0,a.createElement)(r.Z,{key:e,id:t,index:i,type:n,value:e,defaults:l,setChange:(e,t)=>{u({dataSaved:!1});let n=JSON.parse(JSON.stringify(p));n[t]=e,c(n)}}):(0,a.createElement)(o.Z,{key:e,id:t,index:i,type:n,value:e,defaults:l,setChange:(e,t)=>{u({dataSaved:!1});let n=JSON.parse(JSON.stringify(p));n[t]=e,c(n)}}),(0,a.createElement)(\"span\",{className:\"dashicons dashicons-no-alt ultp-condition_cancel\",onClick:()=>{u({dataSaved:!1});let e=JSON.parse(JSON.stringify(p));e.splice(i,1),c(e)}}))}))),(0,a.createElement)(\"button\",{className:\"btnCondition cursor\",onClick:()=>{const e=\"singular\"==n?\"include\u002Fsingular\u002Fpost\":\"header\"==n||\"footer\"==n?\"include\u002F\"+n+\"\u002Fentire_site\":\"include\u002F\"+n;c([...p,e])}},__(\"Add Conditions\",\"ultimate-post\"))),(0,a.createElement)(\"button\",{className:\"ultp-save-condition cursor\",onClick:()=>{u({reload:!0});let e=Object.assign({},i);void 0!==e[n]||(e[n]={}),e[n][t]=p.filter((e=>e)),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fcondition_save\",method:\"POST\",data:{settings:e}}).then((e=>{e.success&&(u({reload:!1,dataSaved:!0}),setTimeout((function(){u({reload:!1,dataSaved:!1}),s&&s(\"\")}),2e3))}))}},d.dataSaved?\"Condition Saved.\":\"Save Condition\",(0,a.createElement)(\"span\",{style:{visibility:d.reload?\"visible\":\"hidden\"},className:\"dashicons dashicons-update rotate ultp-builder-import\"})))}},1078:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);const r=e=>{const t=(0,a.useRef)(),{value:n,type:r,defaults:o,setChange:i,index:l}=e,s=n.split(\"\u002F\"),[p,c]=(0,a.useState)([]),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)(!1),[h,g]=(0,a.useState)(s[2]||\"\"),[v,_]=(0,a.useState)(\"\"),w=e=>{null!=t.current&&(t.current.contains(e.target)||u(!1))};(0,a.useEffect)((()=>(s[4]?x(s[4],!0):b(),document.addEventListener(\"mousedown\",w),()=>document.removeEventListener(\"mousedown\",w))),[]);const b=()=>{let e=\"\";const t=s[3];return t&&o[s[2]]&&o[s[2]].forEach((n=>{n.value==t?(e=n.search,f(!0)):n.attr&&n.attr.forEach((n=>{n.value==t&&(e=n.search,f(!0))}))})),e},x=(e,t)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fcondition\",method:\"POST\",data:{type:b(),term:e,title_return:t}}).then((e=>{e.success&&(t?_(e.data):c(e.data))}))};return(0,a.createElement)(\"div\",{className:\"ultp-condition-fields\"},(0,a.createElement)(\"select\",{value:s[0]||\"include\",onChange:e=>{s.splice(0,1,e.target.value),i(s.join(\"\u002F\"),l)}},(0,a.createElement)(\"option\",{value:\"include\"},\"Include\"),(0,a.createElement)(\"option\",{value:\"exclude\"},\"Exclude\")),(0,a.createElement)(\"select\",{value:s[2]||\"entire_site\",onChange:e=>{s.splice(2,1,e.target.value||\"entire_site\"),s.splice(3),\"singular\"==e.target.value&&s.push(\"post\"),i(s.join(\"\u002F\"),l)}},o[r].map(((e,t)=>(0,a.createElement)(\"option\",{key:t,value:e.value},e.label)))),s[2]&&\"entire_site\"!=s[2]&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"select\",{value:s[3]||\"\",onChange:e=>{const t=e.target.options[e.target.options.selectedIndex].dataset.search;f(!!t),g(\"\"),c([]),s.splice(3,1,e.target.value),s.splice(e.target.value?4:3);const n=s.filter((function(e){return e}));i(n.join(\"\u002F\"),l)}},o[s[2]]&&o[s[2]].map(((e,t)=>e.attr?(0,a.createElement)(\"optgroup\",{label:e.label,key:t},e.attr.map(((e,t)=>!e.attr&&(0,a.createElement)(\"option\",{value:e.value,\"data-search\":e.search,key:t},e.label)))):(0,a.createElement)(\"option\",{value:e.value,\"data-search\":e.search,key:t},e.label)))),(m||s[4])&&(0,a.createElement)(\"div\",{ref:t,className:\"ultp-condition-dropdown\"},(0,a.createElement)(\"div\",{onClick:()=>u(!0),className:`ultp-condition-text ${h&&\"ultp-condition-dropdown__content\"}`},h&&v?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"span\",{className:\"ultp-condition-dropdown__label\"},v,(0,a.createElement)(\"span\",{className:\"dashicons dashicons-no-alt ultp-dropdown-value__close\",onClick:()=>{f(!0),g(\"\"),s.splice(4,1,\"\");const e=s.filter((function(e){return e}));i(e.join(\"\u002F\"),l)}}))):(0,a.createElement)(\"span\",{className:\"ultp-condition-dropdown__default\"},\" \",\"All\",\" \"),(0,a.createElement)(\"span\",{className:\"ultp-condition-arrow dashicons dashicons-arrow-down-alt2\"})),d&&(0,a.createElement)(\"div\",{className:\"ultp-condition-search\"},(0,a.createElement)(\"input\",{type:\"text\",name:\"search\",autoComplete:\"off\",placeholder:\"Search\",onChange:e=>{x(e.target.value,!1)}}),p.length>0&&(0,a.createElement)(\"ul\",null,p.map(((e,t)=>(0,a.createElement)(\"li\",{key:t,onClick:()=>{u(!1),g(e.value),_(e.title),s.splice(4,1,e.value),i(s.join(\"\u002F\"),l)}},e.title))))))))}},6765:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);const r=e=>{const t=(0,a.useRef)(),{value:n,type:r,defaults:o,setChange:i,index:l}=e,s=n.split(\"\u002F\"),[p,c]=(0,a.useState)([]),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)(!1),[h,g]=(0,a.useState)(s[2]||\"\"),[v,_]=(0,a.useState)(\"\"),w=e=>{null!=t.current&&(t.current.contains(e.target)||u(!1))};(0,a.useEffect)((()=>(s[3]?x(s[3],!0):b(),document.addEventListener(\"mousedown\",w),()=>document.removeEventListener(\"mousedown\",w))),[]);const b=()=>{let e=\"\";const t=s[2];return t&&o[r]&&o[r].forEach((n=>{n.value==t?(e=n.search,f(!0)):n.attr&&n.attr.forEach((n=>{n.value==t&&(e=n.search,f(!0))}))})),e},x=(e,t)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fcondition\",method:\"POST\",data:{type:b(),term:e,title_return:t}}).then((e=>{e.success&&(t?_(e.data):c(e.data))}))};return(0,a.createElement)(\"div\",{className:\"ultp-condition-fields\"},(0,a.createElement)(\"select\",{value:s[0]||\"include\",onChange:e=>{s[0]=e.target.value,i(s.join(\"\u002F\"),l)}},(0,a.createElement)(\"option\",{value:\"include\"},\"Include\"),(0,a.createElement)(\"option\",{value:\"exclude\"},\"Exclude\")),(0,a.createElement)(\"select\",{value:s[2]||\"post\",onChange:e=>{const t=e.target.options[e.target.options.selectedIndex].dataset.search;f(!!t),g(\"\"),c([]),s[2]=e.target.value;const n=s.filter((function(e){return e}));i(n.join(\"\u002F\"),l)}},o[r]&&o[r].map(((e,t)=>e.attr?(0,a.createElement)(\"optgroup\",{label:e.label,key:t},e.attr.map(((e,t)=>(0,a.createElement)(\"option\",{value:e.value,\"data-search\":e.search,key:t},e.label)))):(0,a.createElement)(\"option\",{value:e.value,\"data-search\":e.search,key:t},e.label)))),(m||s[3])&&(0,a.createElement)(\"div\",{ref:t,className:\"ultp-condition-dropdown\"},(0,a.createElement)(\"div\",{onClick:()=>u(!0),className:`ultp-condition-text ${h&&\"ultp-condition-dropdown__content\"}`},h&&v?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"span\",{className:\"ultp-condition-dropdown__label\"},v,(0,a.createElement)(\"span\",{className:\"dashicons dashicons-no-alt ultp-dropdown-value__close\",onClick:()=>{f(!0),g(\"\"),s[3]=\"\";const e=s.filter((function(e){return e}));i(e.join(\"\u002F\"),l)}}))):(0,a.createElement)(\"span\",{className:\"ultp-condition-dropdown__default\"},\" \",\"All\",\" \"),(0,a.createElement)(\"span\",{className:\"ultp-condition-arrow dashicons dashicons-arrow-down-alt2\"})),d&&(0,a.createElement)(\"div\",{className:\"ultp-condition-search\"},(0,a.createElement)(\"input\",{type:\"text\",name:\"search\",autoComplete:\"off\",placeholder:\"Search\",onChange:e=>{x(e.target.value,!1)}}),p.length>0&&(0,a.createElement)(\"ul\",null,p.map(((e,t)=>(0,a.createElement)(\"li\",{key:t,onClick:()=>{u(!1),g(e.value),_(e.title),s[3]=e.value,i(s.join(\"\u002F\"),l)}},e.title)))))))}},8351:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>d});var a=n(7462),r=n(7294),o=n(1383),i=n(4766),l=n(356),s=n(4482),p=n(8949),c=n(4872);n(3493);const{__}=wp.i18n,d=e=>{const t=e.has_ultp_condition?ultp_condition:ultp_dashboard_pannel,{notEditor:n}=e,d=[\"singular\",\"archive\",\"category\",\"search\",\"author\",\"post_tag\",\"date\",\"header\",\"footer\",\"404\"],[u,m]=(0,r.useState)(\"\"),[f,h]=(0,r.useState)([]),[g,v]=(0,r.useState)(\"all\"),[_,w]=(0,r.useState)(!1),[b,x]=(0,r.useState)([]),[y,k]=(0,r.useState)(n||\"\"),[E,C]=(0,r.useState)([]),[S,M]=(0,r.useState)(!1),[L,N]=(0,r.useState)(\"\"),[Z,P]=(0,r.useState)([]),[z,A]=(0,r.useState)(\"\"),[B,H]=(0,r.useState)(!1),[T,R]=(0,r.useState)(!1),[O,j]=(0,r.useState)(!1),[V,F]=(0,r.useState)(\"\"),[W,D]=(0,r.useState)(!1),I=\"yes\"==n?wp.data.select(\"core\u002Feditor\").getCurrentPostId():\"\",[U,$]=(0,r.useState)([]),[G,q]=(0,r.useState)(!1),[K,X]=(0,r.useState)({state:!1,status:\"\"}),Q=(0,o.t)(),J=async()=>{await wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ffetch_premade_data\",method:\"POST\",data:{type:\"starter_lists\"}}).then((e=>{if(e.success&&e.data){const t=JSON.parse(e.data);Y(t)}}))},Y=e=>{const t=[],n=[];e.forEach((e=>{e.templates.forEach((a=>{const r={...a,parentID:e.ID};r.hasOwnProperty(\"home_page\")&&\"home_page\"==r.home_page&&t.push(r),\"ultp_builder\"==r.type&&n.push(r)}))})),P(n),$(t)},ee=async()=>{await wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fdata_builder\",method:\"POST\",data:{pid:I}}).then((e=>{e.success&&Q.current&&(h(e.postlist),x(e.settings),C(e.defaults),m(e.type),j(!0),J())}))};(0,r.useEffect)((()=>(ee(),document.addEventListener(\"mousedown\",ne),()=>document.removeEventListener(\"mousedown\",ne))),[]);const te=(e,t)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_single_premade\",method:\"POST\",data:{type:L,ID:e,apiEndPoint:t}}).then((e=>{e.success?(A(\"\"),window.open(e?.link?.replaceAll(\"&amp;\",\"&\"))):(H(!0),A(\"\"),R(!0))}))},ne=e=>{e.target&&!e.target.classList?.contains(\"ultp-reserve-button\")&&(F(\"\"),D(!1))},ae=(e,n)=>{const a=`https:\u002F\u002Fpostxkit.wpxpo.com\u002F${e.live}\u002Fwp-content\u002Fuploads\u002Fsites\u002F${e.parentID}\u002Fpostx_importer_img\u002Fpages\u002F${e.name.toLowerCase().replaceAll(\" \",\"_\")}.jpg`,o=\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+([\"header\",\"footer\",\"front_page\"].includes(L)?e.live:e.live+\"\u002Fpostx_\"+(\"archive\"==e.builder_type?e.archive_type:e.builder_type));return(0,r.createElement)(\"div\",{key:n,className:\"ultp-item-list ultp-premade-item\"},(0,r.createElement)(\"div\",{className:\"listInfo\"},(0,r.createElement)(\"div\",{className:\"title\"},(0,r.createElement)(\"span\",null,e.name),(0,r.createElement)(\"div\",{className:\"parent\"},e.parent)),e.pro&&!t.active?(0,r.createElement)(\"a\",{className:\"ultp-upgrade-pro-btn\",target:\"_blank\",href:`https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-builder&utm_medium=${L}-template&utm_campaign=postx-dashboard#pricing`,rel:\"noreferrer\"},__(\"Upgrade to Pro\",\"ultimate-post\"),\"  ➤\"):e.pro&&T?(0,r.createElement)(\"a\",{className:\"ultp-btn-success\",target:\"_blank\",href:`https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-builder&utm_medium=${L}-template&utm_campaign=postx-dashboard#pricing`,rel:\"noreferrer\"},__(\"Get License\",\"ultimate-post\")):(0,r.createElement)(\"span\",{onClick:()=>{A(e.ID),te(e.ID,\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+e.live)},className:\"btnImport cursor\"},\" \",i.ZP.arrow_down_line,__(\"Import\",\"ultimate-post\"),z&&z==e.ID?(0,r.createElement)(\"span\",{className:\"dashicons dashicons-update rotate\"}):\"\")),(0,r.createElement)(\"div\",{className:\"listOverlay bg-image-aspect\",style:{backgroundImage:`url(${a})`}},(0,r.createElement)(\"div\",{className:\"ultp-list-dark-overlay\"},(0,r.createElement)(\"a\",{className:\"ultp-overlay-view ultp-dashboverlay\",href:o,target:\"_blank\",rel:\"noreferrer\"},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-visibility\"}),\" \",__(\"Live Preview\",\"ultimate-post\")))))},re=()=>\"all\"!=g&&\"archive\"!=g?(N(g),v(g),void((Z.length\u003C=0||\"front_page\"==g&&U.length\u003C=0)&&J())):(0,r.createElement)(\"div\",{className:\"ultp-builder-items\"},(\"all\"==g?[\"front_page\",...d]:\"archive\"==g?d.filter((e=>\"singular\"!=e)):[g]).map(((e,n)=>(0,r.createElement)(\"div\",{key:n,onClick:()=>{N(e),v(e),(Z.length\u003C=0||\"front_page\"==e&&U.length\u003C=0)&&J()}},(0,r.createElement)(\"div\",{className:\"newScreen ultp-item-list ultp-premade-item\"},(0,r.createElement)(\"div\",{className:\"listInfo\"},(0,r.createElement)(\"div\",{className:\"ultp_h6\"},e)),(0,r.createElement)(\"div\",{className:\"listOverlays\"},(0,r.createElement)(\"img\",{src:t.url+`addons\u002Fbuilder\u002Fassets\u002Ficons\u002Ftemplate\u002F${e.toLowerCase()}.svg`}),(0,r.createElement)(\"span\",{className:\"ultp-list-white-overlay\"},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-plus-alt\"}),__(\"Add\",\"ultimate-post\"),\" \",e)))))));return(0,r.createElement)(\"div\",{className:\"ultp-builder-dashboard\"},K.state&&(0,r.createElement)(l.Z,{delay:2e3,toastMessages:K,setToastMessages:X}),!n&&(0,r.createElement)(\"div\",{className:\"ultp-builder-dashboard__content ultp-builder-tab\"},(0,r.createElement)(\"div\",{className:\"ultp-builder-tab__option\"},(0,r.createElement)(\"span\",{onClick:()=>(M(!0),void wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ffetch_premade_data\",method:\"POST\",data:{type:\"fetch_all_data\"}}).then((e=>{e.success&&(ee(),M(!1),X({status:\"success\",messages:[e.message],state:!0}))}))),className:\"ultp-popup-sync\"},(0,r.createElement)(\"i\",{className:\"dashicons dashicons-update-alt\"+(S?\" rotate\":\"\")}),__(\"Synchronize\",\"ultimate-post\")),(0,r.createElement)(\"ul\",null,(0,r.createElement)(\"li\",(0,a.Z)({},\"all\"==g&&{className:\"active\"},{onClick:()=>{v(\"all\"),w(!1),N(\"\")}}),(0,r.createElement)(\"span\",{className:\"dashicons dashicons-admin-home\"}),\" \",__(\"All Template\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"front_page\"==g&&{className:\"active\"},{onClick:()=>{v(\"front_page\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Ffront_page.svg\"}),__(\"Front Page\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"singular\"==g&&{className:\"active\"},{onClick:()=>{v(\"singular\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fsingular.svg\"}),__(\"Singular\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"search\"==g&&{className:\"active\"},{onClick:()=>{v(\"search\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fsearch.svg\"}),__(\"Search Result\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"archive\"==g&&{className:\"active\"},{onClick:()=>{v(\"archive\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Farchive.svg\"}),__(\"Archive\",\"ultimate-post\")),(0,r.createElement)(\"ul\",null,(0,r.createElement)(\"li\",(0,a.Z)({},\"category\"==g&&{className:\"active\"},{onClick:()=>{v(\"category\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fcategory.svg\"}),__(\"Category\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"author\"==g&&{className:\"active\"},{onClick:()=>{v(\"author\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fauthor.svg\"}),__(\"Authors\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"post_tag\"==g&&{className:\"active\"},{onClick:()=>{v(\"post_tag\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Ftag.svg\"}),__(\"Tags\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"date\"==g&&{className:\"active\"},{onClick:()=>{v(\"date\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fdate.svg\"}),__(\"Date\",\"ultimate-post\"))),(0,r.createElement)(\"li\",(0,a.Z)({},\"header\"==g&&{className:\"active\"},{onClick:()=>{v(\"header\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fheader.svg\"}),__(\"Header\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"footer\"==g&&{className:\"active\"},{onClick:()=>{v(\"footer\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Ffooter.svg\"}),__(\"Footer\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"404\"==g&&{className:\"active\"},{onClick:()=>{v(\"404\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002F404.svg\"}),\"404\"))),(0,r.createElement)(\"div\",{className:\"ultp-builder-tab__content ultp-builder-tab__template\"},(0,r.createElement)(\"div\",{className:\"ultp-builder-tab__heading\"},(0,r.createElement)(\"div\",{className:\"ultp-builder-heading__title\"},(\"\"!=L||_)&&G&&(0,r.createElement)(\"span\",{onClick:()=>{q(!1),w(!1),N(\"\")}},\" \",i.ZP.leftAngle2,__(\"Back\",\"ultimate-post\")),(0,r.createElement)(\"div\",{className:\"ultp_h5 heading\"},__(\"All\",\"ultimate-post\"),\" \",\"all\"==g?\"\":g.replace(\"_\",\" \"),\" \",__(\"Templates\",\"ultimate-post\"))),f.length>0&&\"\"==L&&!_?(0,r.createElement)(\"button\",{className:\"cursor ultp-primary-button ultp-builder-create-btn\",onClick:()=>{w(!0),q(!0),N(\"all\"==g||\"archive\"==g?\"\":g)}},\" \",\"+ \",__(\"Create\",\"ultimate-post\"),\" \",\"all\"==g?\"\":g.replace(\"_\",\" \"),\" \",__(\"Template\",\"ultimate-post\")):O?\"\":(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:170,unit1:\"px\",size2:42,unit2:\"px\",br:4}})),(0,r.createElement)(\"div\",{className:\"ultp-tab__content active\"},O?\"\"==L?((e=\"all\")=>{let t=0;return(0,r.createElement)(\"div\",{className:\"ultp-template-list__tab\"},0==_&&f.length>0?f.map(((n,a)=>{const o=((e,t)=>{let n=[];return e?.id&&void 0!==b[e?.type]&&b[e.type][e.id]?.map(((e,t)=>{e&&(n=e.split(\"\u002F\"))})),n})(n);if(\"all\"==e||e==n.type||e==o[2]&&n.type==o[1]&&![\"header\",\"footer\"].includes(n.type))return t++,(0,r.createElement)(\"div\",{key:a,className:\"ultp-template-list__wrapper\"},(0,r.createElement)(\"div\",{className:\"ultp-template-list__heading\"},(0,r.createElement)(\"div\",{className:\"ultp-template-list__meta\"},(0,r.createElement)(\"div\",null,(0,r.createElement)(\"span\",null,\"front_page\"==n.type?\"Front Page\":n.type,\" \",\":\"),\" \",n.title,\" \",(0,r.createElement)(\"span\",null,\"ID :\"),\" #\",n.id),n.id&&void 0!==b[n.type]&&(0,r.createElement)(\"div\",{className:\"ultp-condition__previews\"},\"(\",(b[n.type][n.id]||[]).map(((e,t)=>{if(e){const n=e.split(\"\u002F\");return(0,r.createElement)(r.Fragment,{key:t},0==t?\"\":\", \",(0,r.createElement)(\"span\",null,void 0!==n[2]?n[2]:n[1]))}})),\")\")),(0,r.createElement)(\"div\",{className:\"ultp-template-list__control ultp-template-list__content\"},\"front_page\"!=n.type&&\"404\"!=n.type&&(0,r.createElement)(\"button\",{onClick:()=>{m(n.type),k(n.id)},className:\"ultp-condition__edit\"},__(\"Conditions\",\"ultimate-post\")),(0,r.createElement)(\"a\",{className:\"status\"},\" \",\"publish\"==n.status?\"Published\":n.status),(0,r.createElement)(\"a\",{href:n?.edit?.replaceAll(\"&amp;\",\"&\"),className:\"ultp-condition-action\",target:\"_blank\",rel:\"noreferrer\"},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-edit-large\"}),__(\"Edit\",\"ultimate-post\")),(0,r.createElement)(\"a\",{className:\"ultp-condition-action ultp-single-popup__btn cursor\",onClick:e=>{e.preventDefault(),confirm(\"Are you sure you want to duplicate this template?\")&&wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ftemplate_action\",method:\"POST\",data:{id:n.id,type:\"duplicate\",section:\"builder\"}}).then((e=>{e.success&&(ee(),X({status:\"success\",messages:[e.message],state:!0}))}))}},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-admin-page\"}),__(\"Duplicate\",\"ultimate-post\")),(0,r.createElement)(\"a\",{className:\"ultp-condition-action ultp-single-popup__btn cursor\",onClick:e=>{e.preventDefault(),confirm(\"Are you sure you want to delete this template?\")&&wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ftemplate_action\",method:\"POST\",data:{id:n.id,type:\"delete\",section:\"builder\"}}).then((e=>{e.success&&(h(f.filter((e=>e.id!=n.id))),X({status:\"error\",messages:[e.message],state:!0}))}))}},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-trash\"}),__(\"Delete\",\"ultimate-post\")),(0,r.createElement)(\"span\",{onClick:e=>{D(!W),F(n.id)}},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-ellipsis ultp-builder-dashboard__action ultp-reserve-button\"})),V==n.id&&W&&(0,r.createElement)(\"span\",{className:\"ultp-builder-action__active ultp-reserve-button\",onClick:e=>{F(\"\"),D(!1),e.preventDefault(),confirm(`Are you sure you want to ${\"publish\"==n.status?\"draft\":\"publish\"} this template?`)&&wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ftemplate_action\",method:\"POST\",data:{id:n.id,type:\"status\",status:\"publish\"==n.status?\"draft\":\"publish\"}}).then((e=>{e.success&&(ee(),X({status:\"success\",messages:[e.message],state:!0}))}))}},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-open-folder ultp-reserve-button\"}),\" \",__(\"Set to\",\"ultimate-post\"),\" \",\"publish\"==n.status?__(\"Draft\",\"ultimate-post\"):__(\"Publish\",\"ultimate-post\")))))})):re(),0==_&&f.length>0&&!t&&re())})(g):(0,r.createElement)(\"div\",{className:`premadeScreen ${L&&\" ultp-builder-items ultp\"+L}`},(0,r.createElement)(\"div\",{className:\"ultp-list-blank-img ultp-item-list ultp-premade-item\"},(0,r.createElement)(\"div\",{className:\"ultp-item-list-overlay ultp-p20 ultp-premade-img__blank\"},(0,r.createElement)(\"img\",{src:t.url+\"assets\u002Fimg\u002Fdashboard\u002Fstart-scratch.svg\"}),(0,r.createElement)(\"a\",{className:\"cursor\",onClick:e=>{e.preventDefault(),te()}},(0,r.createElement)(\"span\",{className:\"ultp-list-white-overlay\"},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-plus-alt\"}),\" \",__(\"Start from Scratch\",\"ultimate-post\"),\" \")))),\"front_page\"==L?U.map(((e,t)=>ae(e,t))):Z.map(((e,t)=>{if(\"archive\"!=e.builder_type&&e.builder_type==L||\"archive\"==e.builder_type&&(e.archive_type==L||\"archive\"==L))return ae(e,t)}))):(0,r.createElement)(\"div\",{className:\"skeletonOverflow\",label:__(\"Loading…\",\"ultimate-post\")},Array(6).fill(1).map(((e,t)=>(0,r.createElement)(\"div\",{key:t,className:\"ultp-template-list__tab\",style:{marginBottom:\"15px\"}},(0,r.createElement)(\"div\",{className:\"ultp-template-list__wrapper\"},(0,r.createElement)(\"div\",{className:\"ultp-template-list__heading\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"%\",size2:22,unit2:\"px\",br:2}}),(0,r.createElement)(\"div\",{className:\"ultp-template-list__control ultp-template-list__content\"},(2==t||4==t)&&(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:42,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:42,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:56,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:25,unit1:\"px\",size2:12,unit2:\"px\",br:2}}))))))))))),y&&(0,r.createElement)(\"div\",{className:\"ultp-condition-wrapper ultp-condition--active\"},(0,r.createElement)(\"div\",{className:\"ultp-condition-popup ultp-popup-wrap\"},(0,r.createElement)(\"button\",{className:\"ultp-save-close\",onClick:()=>k(\"\")},i.ZP.close_line),Object.keys(E).length&&u?(0,r.createElement)(c.Z,{type:u,id:\"yes\"==y?I:y,settings:b,defaults:E,setShowCondition:\"yes\"==n?k:\"\"}):(0,r.createElement)(\"div\",{className:\"ultp-modal-content\"},(0,r.createElement)(\"div\",{className:\"ultp-condition-wrap\"},(0,r.createElement)(\"div\",{className:\"ultp_h3 ultp-condition-wrap-heading\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:330,unit1:\"px\",size2:22,unit2:\"px\",br:2}})),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:460,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,r.createElement)(\"div\",{className:\"ultp-condition-items\"},(0,r.createElement)(\"div\",{className:\"ultp-condition-wrap__field\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:30,unit2:\"px\",br:2}})),(0,r.createElement)(\"div\",{className:\"ultp-condition-wrap__field\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:30,unit2:\"px\",br:2}})),(0,r.createElement)(\"div\",{className:\"ultp-condition-wrap__field\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:30,unit2:\"px\",br:2}}))))))),B&&(0,s.cs)({tags:\"builder_popup\",func:e=>{H(e)},data:{icon:\"template_lock.svg\",title:__(\"Create Unlimited Templates With PostX Pro\",\"ultimate-post\"),description:__(\"We are sorry. Unfortunately, the free version of PostX lets you create only one template. Please upgrade to a pro version that unlocks the full capabilities of the dynamic site builder.\",\"ultimate-post\")}}))}},3944:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>p});var a=n(7294),r=n(1383),o=n(4766),i=n(4482),l=n(8949),s=n(356);n(8350);const{__}=wp.i18n,p=()=>{const[e,t]=(0,a.useState)({}),[n,p]=(0,a.useState)({state:!1,status:\"\"}),[c,d]=(0,a.useState)(!1);(0,a.useEffect)((()=>{m()}),[]);const u=(0,r.t)(),m=()=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_all_settings\",method:\"POST\",data:{key:\"key\",value:\"value\"}}).then((e=>{e.success&&u.current&&t(e.settings)}))};return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-general-settings-container\"},(0,a.createElement)(\"div\",{className:\"ultp-general-settings ultp-dash-item-con\"},(0,a.createElement)(\"div\",null,n.state&&(0,a.createElement)(s.Z,{delay:2e3,toastMessages:n,setToastMessages:p}),(0,a.createElement)(\"div\",{className:\"ultp_h5 heading\"},__(\"General Settings\",\"ultimate-post\")),Object.keys(e).length>0?(0,a.createElement)(\"form\",{onSubmit:e=>{d(!0),e.preventDefault();const t=new FormData(e.target),n={};for(const a of e.target.elements)a.name&&(\"checkbox\"!==a.type||a.checked?\"select-multiple\"===a.type?n[a.name]=t.getAll(a.name):\"custom_multiselect\"==a.dataset.customprop?n[a.name]=a.value?a.value.split(\",\"):[]:n[a.name]=a.value:n[a.name]=\"\");wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fsave_plugin_settings\",method:\"POST\",data:{settings:n,action:\"action\",type:\"type\"}}).then((e=>{e.success&&p({status:\"success\",messages:[e.message],state:!0}),d(!1)}))},action:\"\"},(0,i.DC)(i.u4,e),(0,a.createElement)(\"div\",{className:\"ultp-data-message\"}),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"button\",{type:\"submit\",className:\"cursor ultp-primary-button \"+(c?\"onloading\":\"\")},__(\"Save Settings\",\"ultimate-post\"),c&&o.ZP.refresh))):(0,a.createElement)(\"div\",{className:\"skeletonOverflow\"},Array(6).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{key:t},(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:150,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:\"\",unit1:\"\",size2:34,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:350,unit1:\"px\",size2:20,unit2:\"px\",br:2}})))),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:120,unit1:\"px\",size2:36,unit2:\"px\",br:2}})))),(0,a.createElement)(\"div\",{className:\"ultp-general-settings-content-right\"},(0,a.createElement)(i.gR,{FRBtnTag:\"settingsFR\",proBtnTags:\"postx_dashboard_settings\"})))}},3546:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(7294),r=n(2044);const{__}=wp.i18n,o=[{id:\"ultp_helloBar_flash_sale_2026_1\",start:\"2026-02-19\",end:\"2026-02-23\",countdownDuration:259200,utmKey:\"flash_sale\",content:(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"span\",{className:\"dashicons dashicons-bell ultp-ring\"}),\" \",(0,a.createElement)(\"span\",null,__(\"Flash Sale - Enjoy Up to 45% on\",\"ultimate-post\")),\" \",(0,a.createElement)(\"strong\",null,__(\"PostX\",\"ultimate-post\")))},{id:\"ultp_helloBar_final_hour_sale_2026_1\",start:\"2026-02-25\",end:\"2026-03-01\",countdownDuration:172800,utmKey:\"final_hour\",content:(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"span\",{className:\"dashicons dashicons-bell ultp-ring\"}),\" \",(0,a.createElement)(\"span\",null,__(\"Final Hour Sale - Enjoy Up to 50% on\",\"ultimate-post\")),\" \",(0,a.createElement)(\"strong\",null,__(\"PostX\",\"ultimate-post\")))}],i=({duration:e,storageKey:t})=>{const n=1e3*Math.max(Number(e)||0,0),r=(0,a.useCallback)((()=>{if(!n||!t)return null;try{const e=window.localStorage.getItem(t),n=Number(e);if(Number.isFinite(n)&&n>0)return n}catch(e){return null}return null}),[n,t]),o=(0,a.useCallback)((e=>{if(t)try{window.localStorage.setItem(t,String(e))}catch(e){}}),[t]),i=(0,a.useCallback)((()=>{if(!n)return 0;const e=Date.now();let t=r();return(!t||t\u003C=e)&&(t=e+n,o(t)),Math.max(Math.ceil((t-e)\u002F1e3),0)}),[n,r,o]),[l,s]=(0,a.useState)(i);if((0,a.useEffect)((()=>{if(!n)return void s(0);const e=()=>{s(i())};e();const t=window.setInterval(e,1e3);return()=>{window.clearInterval(t)}}),[n,i]),!n)return null;const p=Math.floor(l\u002F86400),c=Math.floor(l%86400\u002F3600),d=Math.floor(l%3600\u002F60),u=l%60,m=String(c).padStart(2,\"0\"),f=String(d).padStart(2,\"0\"),h=String(u).padStart(2,\"0\");return(0,a.createElement)(\"strong\",null,`${p}:${m}:${f}:${h}`)},l=()=>{const[e,t]=(0,a.useState)((()=>o.find((e=>new Date>=new Date(e.start)&&new Date\u003C=new Date(e.end)&&ultp_dashboard_pannel.helloBar&&\"hide\"!==ultp_dashboard_pannel.helloBar[e.id]&&!ultp_dashboard_pannel?.active))||null));return e?(0,a.createElement)(\"div\",{className:\"ultp-setting-hellobar-wrapper\"},(0,a.createElement)(\"a\",{href:`${(0,r.Z)({utmKey:e.utmKey})}#pricing`,target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"div\",{className:\"ultp-setting-hellobar\"},(0,a.createElement)(\"span\",null,e.content),(0,a.createElement)(i,{duration:e.countdownDuration,storageKey:`ultp_hello_bar_timer_${e.id}`}),(0,a.createElement)(\"strong\",null,(0,a.createElement)(\"span\",null,__(\"Grab Now\",\"ultimate-post\")),\"  ➤\"),(0,a.createElement)(\"button\",{type:\"button\",className:\"helobarClose\",onClick:n=>{n.stopPropagation(),n.preventDefault(),wp.apiFetch({path:\"ultp\u002Fhello_bar\",method:\"POST\",data:{type:\"hello_bar\",id:e.id}}),t(null)},\"aria-label\":__(\"Close notification\",\"ultimate-post\"),style:{background:\"none\",border:\"none\",padding:0,cursor:\"pointer\"}},(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"20\",height:\"20\",fill:\"none\",viewBox:\"0 0 20 20\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",d:\"M15 5 5 15M5 5l10 10\"})))))):(console.log(\"return\"),null)}},1383:(e,t,n)=>{\"use strict\";n.d(t,{t:()=>_});var a=n(7294),r=n(3935),o=n(3100),i=n(4766),l=n(860),s=n(7191),p=n(8351),c=n(3644),d=(n(9780),n(3944)),u=n(3546),m=(n(2156),n(2470)),f=n(3701),h=n(5957),g=n(3554),v=n(58);const{__}=wp.i18n;function _(){const e=(0,a.useRef)(!1);return(0,a.useEffect)((()=>(e.current=!0,()=>e.current=!1)),[]),e}document.body.contains(document.getElementById(\"ultp-dashboard\"))&&r.render((0,a.createElement)(a.StrictMode,null,(0,a.createElement)((()=>{const[e,t]=(0,a.useState)(\"xx\"),[n,r]=(ultp_dashboard_pannel.status,ultp_dashboard_pannel.expire,(0,a.useState)(!1)),_=[{link:\"#home\",label:__(\"Dashboard\",\"ultimate-post\"),showin:\"both\"},{link:\"#startersites\",label:__(\"Starter Sites\",\"ultimate-post\"),showin:\"both\",tag:\"New\"},{link:\"#builder\",label:__(\"Site Builder\",\"ultimate-post\"),showin:ultp_dashboard_pannel.settings.hasOwnProperty(\"ultp_builder\")&&\"false\"!=ultp_dashboard_pannel.settings.ultp_builder?\"both\":\"none\",showhide:!0},{link:\"#blocks\",label:__(\"Blocks\",\"ultimate-post\"),showin:\"both\"},{link:\"#addons\",label:__(\"Add-ons\",\"ultimate-post\"),showin:\"both\"},{link:\"#settings\",label:__(\"Settings\",\"ultimate-post\"),showin:\"both\"}],w=[{label:__(\"Get Support\",\"ultimate-post\"),icon:\"dashicons-phone\",link:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcontact\u002F?utm_source=postx-menu&utm_medium=all_que-support&utm_campaign=postx-dashboard\"},{label:__(\"Welcome Guide\",\"ultimate-post\"),icon:\"dashicons-megaphone\",link:ultp_dashboard_pannel.setup_wizard_link},{label:__(\"Join Community\",\"ultimate-post\"),icon:\"dashicons-facebook-alt\",link:\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fgutenbergpostx\"},{label:__(\"Feature Request\",\"ultimate-post\"),icon:\"dashicons-email-alt\",link:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Froadmap\u002F?utm_source=postx-menu&utm_medium=all_que-FR&utm_campaign=postx-dashboard\"},{label:__(\"Youtube Tutorials\",\"ultimate-post\"),icon:\"dashicons-youtube\",link:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=_GfXTvSdJTk&list=PLPidnGLSR4qcAwVwIjMo1OVaqXqjUp_s4\"},{label:__(\"Documentation\",\"ultimate-post\"),icon:\"dashicons-book\",link:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002F?utm_source=postx-menu&utm_medium=all_que-docs&utm_campaign=postx-dashboard\"},{label:__(\"What’s New\",\"ultimate-post\"),icon:\"dashicons-edit\",link:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcategory\u002Fpostx\u002F?utm_source=postx-menu&utm_medium=all_que-roadmap&utm_campaign=postx-dashboard\"}],b=e=>{if(e.target&&!e.target.classList?.contains(\"ultp-reserve-button\")&&e.target.href&&e.target.href.indexOf(\"page=ultp-settings#\")>0){const n=e.target.href.split(\"#\");n[1]&&(t(n[1]),window.scrollTo({top:0,behavior:\"smooth\"}))}e.target.closest(\".dash-faq-container\")||e.target.classList?.contains(\"ultp-reserve-button\")||r(!1)},[x,y]=(0,a.useState)(window.location.hash||e);(0,a.useEffect)((()=>{const e=()=>{y(window.location.hash||\"#welcome\")};return window.location.hash||(window.location.hash=_[0].link.replace(\"#\",\"\")),window.addEventListener(\"hashchange\",e),()=>{window.removeEventListener(\"hashchange\",e)}}),[]),(0,a.useEffect)((()=>{const n=x.replace(\"#\",\"\");n&&n!==e&&t(n)}),[x,e]),(0,a.useEffect)((()=>((()=>{let e=window.location.href;e.includes(\"page=ultp-settings#\")&&(e=e.split(\"page=ultp-settings#\"),e[1]&&t(e[1]))})(),document.addEventListener(\"mousedown\",b),()=>document.removeEventListener(\"mousedown\",b))),[]);const[k,E]=(0,a.useState)({success:!1,license:\"\"});return(0,a.createElement)(\"div\",{className:\"ultp-menu-items-wrap\"},(0,a.createElement)(u.Z,null),(0,a.createElement)(\"div\",{className:\"ultp-setting-header\"},(0,a.createElement)(\"div\",{className:\"ultp-setting-logo\"},(0,a.createElement)(\"img\",{className:\"ultp-setting-header-img\",loading:\"lazy\",src:ultp_dashboard_pannel.url+\"\u002Fassets\u002Fimg\u002Flogo-new.png\",alt:\"PostX\"}),(0,a.createElement)(\"span\",{className:\"ultp-setting-version\"},ultp_dashboard_pannel.version)),(0,a.createElement)(\"div\",{className:\"ultp-menu-items\",id:\"ultp-dashboard-ultp-menu-items\"},_.map(((t,n)=>\"both\"==t.showin||\"menu\"==t.showin||t.showhide?(0,a.createElement)(\"a\",{href:t.link,style:{display:\"none\"==t.showin?\"none\":\"\"},id:\"ultp-dasnav-\"+t.link.replace(\"#\",\"\"),key:n,className:(t.link==\"#\"+e?\"current\":\"\")+\" ultp-menu-item\",onClick:()=>y(t.link.replace(\"#\",\"\"))},t.label,t.tag&&(0,a.createElement)(\"span\",{className:\"ultp-menu-item-tag\"},t.tag)):\"\"))),(0,a.createElement)(\"div\",{className:\"ultp-secondary-menu\"},(0,a.createElement)(\"a\",{href:\"#plugins\",className:\"ultp-menu-item \"+([\"plugins\",\"#plugins\"].includes(x)?\"current\":\"\"),onClick:()=>y(\"plugins\")},i.ZP.connect,__(\"Our Plugins\",\"ultimate-post\")),!ultp_dashboard_pannel?.active&&(0,a.createElement)(\"a\",{href:(0,o.Z)(\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-topbar&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing\"),className:\"ultp-secondary-button ultp-pro-button\"},__(\"Upgrade Pro\",\"ultimate-post\"),i.ZP.unlock)),(0,a.createElement)(\"div\",{className:\"ultp-dash-faq-con\"},(0,a.createElement)(\"span\",{onClick:()=>r(!n),className:\"ultp-dash-faq-icon ultp-reserve-button dashicons dashicons-editor-help\"}),n&&(0,a.createElement)(\"div\",{className:\"dash-faq-container\"},w.map(((e,t)=>(0,a.createElement)(\"a\",{key:t,href:e.link,target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"span\",{className:`dashicons ${e.icon}`}),e.label)))))),(0,a.createElement)(\"div\",{className:\"ultp-settings-container \"+(\"startersites\"==e?\"ultp-settings-container-startersites\":\"\")},(0,a.createElement)(\"ul\",{className:\"ultp-settings-content\"},(0,a.createElement)(\"li\",{className:\"current\"},\"xx\"!=e&&(\"home\"==e||![\"builder\",\"startersites\",\"integrations\",\"saved-templates\",\"custom-font\",\"addons\",\"blocks\",\"settings\",\"tutorials\",\"license\",\"support\",\"plugins\"].includes(e))&&(0,a.createElement)(c.Z,null),\"saved-templates\"==e&&(0,a.createElement)(h.Z,{type:\"ultp_templates\"}),\"custom-font\"==e&&(0,a.createElement)(h.Z,{type:\"ultp_custom_font\"}),\"builder\"==e&&(0,a.createElement)(p.Z,null),\"startersites\"==e&&(0,a.createElement)(g.Z,null),\"addons\"==e&&(0,a.createElement)(l.Z,{integrations:!0}),\"blocks\"==e&&(0,a.createElement)(s.Z,null),\"settings\"==e&&(0,a.createElement)(d.Z,null),\"license\"==e&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(m.C,{licenseData:k,setLicenseData:E})),\"support\"==e&&(0,a.createElement)(v.Z,null),\"plugins\"==e&&(0,a.createElement)(f.I,null))),(0,a.createElement)(v.Z,null)),!ultp_dashboard_pannel.active&&(()=>{const e=(new Date).setHours(0,0,0,0)\u002F1e3,t=345600,n=new Date(\"2024-05-21\").setHours(0,0,0,0)\u002F1e3,a=new Date(\"2024-07-22\").setHours(0,0,0,0)\u002F1e3;if(e\u003Cn||e>a)return!1;if(ultp_dashboard_pannel.settings.activated_date&&Number(ultp_dashboard_pannel.settings.activated_date)+t>=e)return!1;const r=Number(localStorage.getItem(\"ultpCouponDiscount\"));return r?r\u003C=e&&e\u003C=r+t||e>=r+691200&&(localStorage.setItem(\"ultpCouponDiscount\",String(e)),!0):(localStorage.setItem(\"ultpCouponDiscount\",String(e)),!0)})()&&(0,a.createElement)(\"a\",{className:\"ultp-discount-wrap\",href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-discount&utm_medium=coupon&utm_campaign=postx-dashboard&pux_link=postxdbcoupon#pricing\",target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"span\",{className:\"ultp-discount-text\"},__(\"Get Discount\",\"ultimate-post\"))))}),null)),document.getElementById(\"ultp-dashboard\"))},2470:(e,t,n)=>{\"use strict\";n.d(t,{C:()=>o});var a=n(7294),r=n(356);n(977);const{__}=wp.i18n,o=({licenseData:e,setLicenseData:t})=>{const[n,r]=(0,a.useState)(\"\"),[o,l]=(0,a.useState)(!1),[s,p]=(0,a.useState)(!0);return(0,a.useEffect)((()=>{(async()=>{p(!0);const e=await(async()=>{try{const e=`${ultp_dashboard_pannel.ajax}`,t=new URLSearchParams({action:\"edd_ultp_get_license_data\"}),n=await fetch(e,{method:\"POST\",body:t,headers:{\"Content-Type\":\"application\u002Fx-www-form-urlencoded\"}});if(!n.ok)throw l(!0),new Error(`HTTP error! Status: ${n.status}`);const a=await n.json();if(a.success)return a.data}catch(e){return null}})();e?.license_data&&t(e?.license_data),p(!1)})()}),[]),(0,a.useEffect)((()=>{\"valid\"===e?.license?ultp_dashboard_pannel.active=!0:\"\"!=e.license&&\"valid\"!=e?.license&&(ultp_dashboard_pannel.active=!1)}),[e]),(0,a.createElement)(\"div\",{className:\"ultp-license\"},s?(0,a.createElement)(\"div\",{className:\"ultp-license__activation\",style:{display:\"flex\",flexDirection:\"column\",gap:\"16px\",paddingTop:\"50px !important\"}},(0,a.createElement)(c,{width:\"250px\",height:\"30px\"}),(0,a.createElement)(c,{width:\"100%\",height:\"30px\",style:{marginTop:\"10px\"}}),(0,a.createElement)(c,{width:\"100%\",height:\"30px\"}),(0,a.createElement)(c,{width:\"100%\",height:\"30px\"}),(0,a.createElement)(c,{width:\"100%\",height:\"30px\"})):(0,a.createElement)(i,{proUpdate:o,licenseKey:n,setLicenseKey:r,licenseData:e,setLicenseData:t}),(0,a.createElement)(u,null))},i=({proUpdate:e,licenseKey:t,setLicenseKey:n,licenseData:o,setLicenseData:i})=>{const[p,c]=(0,a.useState)(!1),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)({state:!1,status:\"\",messages:[]}),h=async()=>{try{c(!0);const e=await g(t);e?.status&&(i(e?.license_data),window.location.reload()),f({status:e.status?\"success\":\"error\",messages:[e?.data||\"Some issues occured\"],state:!0}),n(\"\"),c(!1),u(!1)}catch(e){u(!0),f({status:\"error\",messages:[\"Some issues occured\"],state:!0}),console.error(\"License Activation Error: \",e)}},g=async e=>{const t=`${ultp_dashboard_pannel.ajax}`,n=new URLSearchParams({action:\"edd_ultp_activate_license\",security:ultp_dashboard_pannel.nonce,license_key:e}),a=await fetch(t,{method:\"POST\",body:n,headers:{\"Content-Type\":\"application\u002Fx-www-form-urlencoded\"}});if(!a.ok)throw new Error(`HTTP error! Status: ${a.status}`);return await a.json()};return(0,a.createElement)(\"div\",{className:\"ultp-license__activation\"},(0,a.createElement)(\"div\",{className:\"ultp-license__title\"},__(e?\"Notice: Upgrade PostX Pro plugin\":\"Ready to Use PostX Pro ?\",\"ultimate-post\")),m.state&&(0,a.createElement)(r.Z,{delay:2e3,toastMessages:m,setToastMessages:f}),!e&&(0,a.createElement)(a.Fragment,null,\"valid\"!==o?.license?(0,a.createElement)(\"div\",{className:\"ultp-license__form\"},(0,a.createElement)(\"input\",{type:\"password\",id:\"ultp-license-key\",placeholder:__(\"Enter Your License Key Here…\",\"ultimate-post\"),value:t||\"\",onChange:e=>n(e.target.value)}),(0,a.createElement)(\"div\",{className:\"ultp-license__helper-text\"},__(\"If you’re unable to activate your product license, please contact the\",\"ultimate-post\"),\" \",(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcontact\u002F\",target:\"_blank\",className:\"ultp-license__link\",rel:\"noreferrer\"},__(\"support team\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"ultp-activate-btn ultp_license_action_btn\",onClick:()=>h(),role:\"button\",tabIndex:-1,onKeyDown:e=>{\"Enter\"===e.key&&h()}},(0,a.createElement)(\"div\",null,__(\"Activate License\",\"ultimate-post\")),p&&(0,a.createElement)(\"span\",{className:\"ultp-activate-loading\"})),d&&(0,a.createElement)(\"div\",{className:\"ultp-license__helper-text\"},__(\"Please make sure your free and pro plugins are updated to the latest release or version. Otherwise, contact the\",\"ultimate-post\"),(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcontact\u002F\",target:\"_blank\",className:\"ultp-license__link\",rel:\"noreferrer\"},__(\"support team\",\"ultimate-post\")))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(l,{title:__(\"Congratulations on unlocking PostX Pro!\",\"ultimate-post\"),message:__(\"Ignite your imagination and design your ideal experience. Let PostX take care of you and your users.\",\"ultimate-post\")}),(0,a.createElement)(s,{licenseData:o,setLicenseData:i,setToastMessages:f}))))},l=({title:e,message:t})=>(0,a.createElement)(\"div\",{className:\"ultp-license-message\"},(0,a.createElement)(\"div\",{className:\"ultp-license-message__icon\"},(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",width:\"48px\",height:\"46px\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"g\",{fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M46.15 26.76a.94.94 0 0 0-.39-1.27 14.7 14.7 0 0 0-16.21 1.62l-1.52-1.52 2.48-2.47a.94.94 0 0 0-1.33-1.33l-2.47 2.48-6.04-6.04a13.1 13.1 0 0 0 1.07-13.98.94.94 0 0 0-1.66.88c2.02 3.8 1.7 8.3-.75 11.76l-3.98-3.98a2.3 2.3 0 0 0-3.79.84L.14 44.9c-.3.86-.1 1.78.54 2.42a2.28 2.28 0 0 0 2.42.54l31.15-11.42a2.3 2.3 0 0 0 .84-3.8l-4.2-4.2a12.83 12.83 0 0 1 13.99-1.3.94.94 0 0 0 1.27-.38ZM14.93 41.52l-8.45-8.45 2.34-6.4 12.5 12.5-6.39 2.35Zm-4.58 1.68L4.8 37.65 5.77 35l7.22 7.22-2.64.97Zm-7.9 2.9A.4.4 0 0 1 2 46a.4.4 0 0 1-.1-.45l2.19-5.96 4.32 4.32-5.96 2.19Zm31.43-11.73a.41.41 0 0 1-.27.3l-5.77 2.12-5.33-5.33a.94.94 0 0 0-1.33 1.32l4.72 4.72-2.64.97L9.53 24.74l.97-2.64 4.72 4.72a.93.93 0 0 0 1.32 0 .94.94 0 0 0 0-1.33l-5.33-5.33 2.11-5.77c.07-.19.23-.25.31-.27h.1c.09 0 .2.02.3.12l19.73 19.73c.14.15.13.31.12.4ZM28.27 7.48c.52 0 .94-.42.94-.94 0-.78.64-1.42 1.43-1.42a3.3 3.3 0 0 0 3.3-3.3.94.94 0 0 0-1.88 0c0 .79-.64 1.43-1.42 1.43a3.3 3.3 0 0 0-3.3 3.3c0 .51.42.93.93.93ZM36.6 16.33c1.87 0 3.4-1.53 3.4-3.4 0-.85.69-1.54 1.53-1.54a.94.94 0 0 0 0-1.87 3.41 3.41 0 0 0-3.4 3.4c0 .85-.7 1.54-1.54 1.54a.94.94 0 0 0 0 1.87ZM42 18.14a3 3 0 1 0 6 0 3 3 0 0 0-6 0ZM45 17a1.13 1.13 0 1 1 0 2.26A1.13 1.13 0 0 1 45 17Z\"}),(0,a.createElement)(\"path\",{d:\"M29.54 15.92a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4.12a1.13 1.13 0 1 1 0 2.25 1.13 1.13 0 0 1 0-2.25ZM12 6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4.13a1.13 1.13 0 1 1 0 2.26 1.13 1.13 0 0 1 0-2.25ZM42.42 32.91a.94.94 0 0 0-1.32 1.33l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89ZM46.84 37.33a.94.94 0 0 0-1.32 1.33l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.33l-.89-.88ZM46.4 32.91l-.88.89a.94.94 0 0 0 1.32 1.32l.89-.88a.94.94 0 0 0-1.33-1.33ZM41.98 37.33l-.88.88a.94.94 0 0 0 1.32 1.33l.89-.88a.94.94 0 0 0-1.33-1.33ZM46.18 2.76c.24 0 .48-.1.66-.28l.89-.88A.94.94 0 1 0 46.4.27l-.88.89a.94.94 0 0 0 .66 1.6ZM41.76 7.18c.24 0 .48-.1.66-.28l.89-.88a.94.94 0 0 0-1.33-1.33l-.88.89a.94.94 0 0 0 .66 1.6ZM46.84 4.7a.94.94 0 0 0-1.32 1.32l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89ZM41.98 2.48a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89A.94.94 0 0 0 41.1 1.6l.88.88ZM18.86 28.2a.94.94 0 0 0-.93.94.94.94 0 0 0 .93.93.94.94 0 0 0 .94-.93.94.94 0 0 0-.94-.94ZM32.54 18.43l-.68.68a.94.94 0 0 0 1.33 1.33l.68-.68a.94.94 0 0 0-1.33-1.33Z\"})))),(0,a.createElement)(\"div\",{className:\"ultp-license-message__content\"},(0,a.createElement)(\"div\",{className:\"ultp-license-message__title ultp-license-message-congrats\"},e),(0,a.createElement)(\"div\",{className:\"ultp-license-message__text\"},t))),s=({licenseData:e,setLicenseData:t,setToastMessages:n})=>{const[r,o]=(0,a.useState)(!1),i=async()=>{try{o(!0);const e=await l();t(e.license_data),n({status:\"success\",messages:[e?.data||\"Some issues occured\"],state:!0}),o(!1)}catch(e){n({status:\"error\",messages:[e.message||\"Some issues occured\"],state:!0}),o(!1)}},l=async()=>{const e=`${ultp_dashboard_pannel.ajax}`,t=new URLSearchParams({action:\"edd_ultp_deactivate_license\",security:ultp_dashboard_pannel.nonce,deactivate:\"yes\"}),n=await fetch(e,{method:\"POST\",body:t,headers:{\"Content-Type\":\"application\u002Fx-www-form-urlencoded\"}});if(!n.ok)throw new Error(`HTTP error! Status: ${n.status}`);const a=await n.json();if(a.status)return a};return(0,a.createElement)(\"div\",{className:\"ultp-license__status\"},(0,a.createElement)(\"div\",{className:\"ultp-license__status-messages\"},(0,a.createElement)(\"div\",{className:\"ultp-license__status-message\"},(0,a.createElement)(\"div\",{className:\"ultp-license__status-message-label\"},__(\"License Type\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-license__status-message-value\"},e.licenseType)),(0,a.createElement)(\"div\",{className:\"ultp-license__status-message\"},(0,a.createElement)(\"div\",{className:\"ultp-license__status-message-label\"},__(\"Expire On\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-license__status-message-value\"},e.expiresAt),(e?.toExpired||\"expired\"===e.license)&&(0,a.createElement)(\"a\",{href:`https:\u002F\u002Faccount.wpxpo.com\u002Fcheckout\u002F?edd_license_key=${ultp_dashboard_pannel.license}&download_id=${e.itemId}&renew=1`,target:\"_blank\",rel:\"noreferrer\",className:\"ultp-license__renew-link\"},(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M2.86 6.553a.5.5 0 01.823-.482l3.02 2.745c.196.178.506.13.64-.098L9.64 4.779a.417.417 0 01.72 0l2.297 3.939a.417.417 0 00.64.098l3.02-2.745a.5.5 0 01.823.482l-1.99 8.63a.833.833 0 01-.813.646H5.663a.833.833 0 01-.812-.646L2.86 6.553z\",stroke:\"currentColor\",strokeWidth:\"1.5\"})),__(\"Renew License\",\"ultimate-post\"))),(0,a.createElement)(p,{licenseData:e})),(0,a.createElement)(\"div\",{className:\"ultp-activate-btn ultp_license_action_btn\",onClick:()=>i(),role:\"button\",tabIndex:-1,onKeyDown:e=>{\"Enter\"===e.key&&i()}},(0,a.createElement)(\"div\",null,__(\"Deactivate License\",\"ultimate-post\")),r&&(0,a.createElement)(\"span\",{className:\"ultp-activate-loading\"})))},p=({licenseData:e})=>{const[t,n]=(0,a.useState)(\"\"),r={1:__(\"5 Sites - Yearly\",\"ultimate-post\"),2:__(\"Unlimited Sites - Yearly\",\"ultimate-post\"),3:__(\"1 Site - Lifetime\",\"ultimate-post\"),4:__(\"5 Sites - Lifetime\",\"ultimate-post\"),5:__(\"Unlimited Sites - Lifetime\",\"ultimate-post\")},o={1:[1,2,3,4,5],7:[2,3,4,5],2:[4,5],4:[2,4,5],5:[5]}[e?.priceId];return o&&0!==o.length?(0,a.createElement)(\"div\",{className:\"ultp-license__upgrade-message\"},(0,a.createElement)(\"div\",{className:\"ultp-license__upgrade-message-title\"},(0,a.createElement)(\"label\",{htmlFor:\"ultp-license-select\"},__(\"Choose a upgrade plan\",\"ultimate-post\")),(0,a.createElement)(\"select\",{id:\"ultp-license-select\",value:t,onChange:e=>{n(e.target.value)}},o.map((e=>(0,a.createElement)(\"option\",{key:e,value:e},r[e]))))),(0,a.createElement)(\"a\",{className:\"ultp-license__upgrade-link\",href:`https:\u002F\u002Faccount.wpxpo.com\u002Fcheckout\u002F?edd_action=sl_license_upgrade&license_key=${ultp_dashboard_pannel.license}&upgrade_id=${t||o[0]}`,target:\"_blank\",rel:\"noreferrer\"},__(\"Upgrade Now\",\"ultimate-post\"))):null},c=({width:e=\"100%\",height:t=\"1rem\",borderRadius:n=\"4px\",style:r={}})=>(0,a.createElement)(\"div\",{className:\"ultp-custom-skeleton-loader\",style:{width:e,height:t,borderRadius:n,...r}}),d=[{question:__(\"Do I need the free version of the plugin on my site?\",\"ultimate-post\"),answer:__(\"Yes. You can use the free version of the plugin, which includes the free features of PostX. However, please note that to use the pro features, you need the free version of the plugin installed on your WordPress site.\",\"ultimate-post\")},{question:__(\"Where do I get my product license?\",\"ultimate-post\"),answer:__(\"You can copy the product license from the client dashboard. Once you copy it, paste the license key into the PostX License validation page.\",\"ultimate-post\")},{question:__(\"How do I get help to use PostX Pro?\",\"ultimate-post\"),hasMarkup:!0,answer:__(\"Please go to the support link: \u003Ca href='https:\u002F\u002Fwww.wpxpo.com\u002Fcontact\u002F.' target='_blank'>www.wpxpo.com\u002Fcontact\u003C\u002Fa>\",\"ultimate-post\")}],u=()=>(0,a.createElement)(\"div\",{className:\"ultp-license__faq\"},d.map(((e,t)=>(0,a.createElement)(\"div\",{key:t,className:\"ultp-license-faq__item\"},(0,a.createElement)(\"div\",{className:\"ultp-license-faq__question\"},e.question),e.hasMarkup?(0,a.createElement)(\"div\",{className:\"ultp-license-faq__answer\",dangerouslySetInnerHTML:{__html:e.answer}}):(0,a.createElement)(\"div\",{className:\"ultp-license-faq__answer\"},e.answer)))),(0,a.createElement)(\"div\",{className:\"ultp-license-faq-item\"},__(\"PostX is a product of WPXPO. The contact support team is ready to help you with any queries, including how to use the pro version of PostX.\",\"ultimate-post\")))},3701:(e,t,n)=>{\"use strict\";n.d(t,{I:()=>l});var a=n(7294),r=n(1383);n(7376);const{__}=wp.i18n,o={wholesale_x:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{fill:\"#FEAD01\",d:\"M22.288 5.44498 11.1095 7.77499c-.6634.13829-1.0892.78825-.9509 1.45173l2.33 11.17848c.1383.6635.7883 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7882.9509-1.4517l-2.33-11.1785c-.1383-.66347-.7882-1.08921-1.4517-.95092Zm3.1934 15.32522-11.1785 2.33c-.6635.1383-1.0892.7882-.9509 1.4517l2.33 11.1785c.1383.6635.7882 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7883.9509-1.4517l-2.33-11.1785c-.1383-.6635-.7883-1.0892-1.4517-.9509ZM37.6161 2.25064 26.4377 4.58065c-.6635.1383-1.0893.78826-.951 1.45173l2.33 11.17852c.1383.6634.7883 1.0892 1.4518.9509l11.1784-2.33c.6635-.1383 1.0893-.7883.951-1.4518l-2.33-11.17843c-.1383-.66348-.7883-1.08922-1.4518-.95093Zm3.1934 15.32716-11.1785 2.33c-.6635.1383-1.0892.7883-.9509 1.4517l2.33 11.1785c.1383.6635.7883 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7882.9509-1.4517l-2.33-11.1785c-.1383-.6635-.7882-1.0892-1.4517-.9509Z\"}),(0,a.createElement)(\"path\",{fill:\"#6C6CFF\",d:\"M11.4509 35.4957c-.2235-.0003-.4402-.0776-.6136-.2187-.1734-.1412-.293-.3377-.3386-.5566L4.40205 5.44687c-.0671-.32174-.25914-.60372-.53395-.784-.27481-.18029-.60992-.24415-.93177-.17757-.15961.03288-.31112.09709-.44576.18889-.13464.09181-.24976.20939-.33867.34596-.08986.13594-.15175.2884-.1821.4485-.03036.16011-.02855.32465.00531.48404l.47956 2.30076c.05267.25283.00277.51622-.13875.73225-.14152.21603-.36305.367-.61587.41971-.12518.0261-.25429.02728-.37992.00348-.12564-.0238-.24534-.07212-.352302-.1422-.106958-.07007-.199074-.16054-.271063-.26622-.071988-.10568-.122425-.22451-.14848-.3497L.0686777 6.35002c-.0868909-.41-.0913681-.83319-.0132214-1.24494.0781467-.41176.2373657-.80387.4684307-1.15352.228483-.35063.524233-.65249.870113-.8881.34589-.23562.73506-.40032 1.145-.48457.8274-.1712 1.68888-.00722 2.39554.45595.70665.46317 1.20075 1.18772 1.3739 2.01471L12.4051 34.3231c.0294.1417.0269.2883-.0074.4289s-.0996.2719-.1909.3842c-.0914.1122-.2067.2028-.3374.2649-.1307.0622-.2737.0944-.4185.0944v.0002Zm8.49 5.5912c-.2408-.0005-.4729-.0901-.6515-.2515-.1786-.1615-.291-.3834-.3156-.623-.0245-.2395.0404-.4796.1825-.674.1421-.1944.3511-.3293.5868-.3786l27.0841-5.6452c.2528-.0527.5162-.0028.7322.1387.216.1415.3669.3631.4196.6159.0527.2528.0028.5162-.1387.7322-.1415.216-.363.3669-.6158.4196l-27.0841 5.6452c-.0656.0136-.1325.0205-.1995.0207Z\"}),(0,a.createElement)(\"path\",{fill:\"#070C1A\",d:\"M12.8922 45.9671c-.8322-.0016-1.647-.2389-2.3499-.6845-.70286-.4456-1.26512-1.0812-1.62162-1.8332-.35651-.752-.49266-1.5896-.39269-2.4158.09996-.8262.43196-1.6072.95753-2.2525.52558-.6452 1.22318-1.1284 2.01208-1.3935.7889-.2651 1.6367-.3012 2.4453-.1043.8086.197 1.5448.619 2.1234 1.2172.5786.5981.9759 1.348 1.1458 2.1627.2383 1.1434.0126 2.3345-.6273 3.3115-.64.977-1.6418 1.6597-2.7852 1.898-.2984.0625-.6025.0941-.9074.0944Zm.014-6.8621c-.1701 0-.3398.0176-.5062.0525-.4757.099-.9113.3369-1.2518.6835-.3404.3467-.5704.7865-.6609 1.2638-.0905.4774-.0374.9708.1525 1.418.19.4472.5083.828.9147 1.0943.4064.2663.8826.4061 1.3684.4017.4859-.0044.9595-.1527 1.361-.4263.4015-.2735.7129-.66.8948-1.1105.1819-.4505.2261-.9449.127-1.4205-.1152-.5517-.4164-1.047-.8533-1.403-.4368-.3561-.9827-.5512-1.5462-.5528v-.0007Z\"})),wow_store:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{fill:\"#FF176B\",d:\"M33.4798 8.9711 48 0l-7.1908 32.9249-4.4393 5.9884H4.9711L0 32.9249l3.90751-17.9654 8.76299 2.9827-2.6127 11.9769h6.289l3.9307-17.9653h9.4335l-3.9307 17.9653h6.2891l4.578-20.948h-3.1676ZM9.98852 48.0005c1.66478 0 2.98268-1.3411 2.98268-2.9827s-1.3411-2.9826-2.98268-2.9826c-1.64162 0-2.98266 1.341-2.98266 2.9826 0 1.6416 1.34104 2.9827 2.98266 2.9827Zm15.67578 0c1.6416 0 2.9827-1.3411 2.9827-2.9827s-1.3411-2.9826-2.9827-2.9826-2.9827 1.341-2.9827 2.9826c0 1.6416 1.3411 2.9827 2.9827 2.9827Z\"})),wow_revenue:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{fill:\"#00A464\",d:\"M47.9999 47.9999H36L24 0h12l11.9999 47.9999Zm-12 0H24L12 15.96h12l11.9999 32.0399Zm-12 .0001H12L0 32.04h12L23.9999 48Z\"})),wow_optin:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"g\",{fill:\"#F97415\",clipPath:\"url(#optin_48_path)\"},(0,a.createElement)(\"path\",{d:\"M28.7992 24.0373c0-2.6419-2.1581-4.8-4.8-4.8-2.6418 0-4.8 2.1581-4.8 4.8 0 2.6419 2.1582 4.8 4.8 4.8 2.6419 0 4.8-2.1581 4.8-4.8Z\"}),(0,a.createElement)(\"path\",{d:\"M24 48.0372v-9.6c7.9256 0 14.4-6.4744 14.4-14.4S31.9256 9.63721 24 9.63721 9.6 16.1116 9.6 24.0372H0C0 10.7907 10.7535 0 24 0s24 10.7535 24 24-10.7535 24-24 24v.0372Z\"}),(0,a.createElement)(\"path\",{d:\"m19.2 28.8369-19.2 6.4 8.8186 3.9814L12.8 48.0369l6.4372-19.2H19.2Z\"})),(0,a.createElement)(\"defs\",null,(0,a.createElement)(\"clipPath\",{id:\"optin_48_path\"},(0,a.createElement)(\"path\",{fill:\"#fff\",d:\"M0 0h48v48H0z\"})))),wow_addon:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 32 32\"},(0,a.createElement)(\"rect\",{width:\"14.12\",height:\"14.12\",x:\"1\",y:\"16.88\",fill:\"#86A62C\",rx:\"3.53\"}),(0,a.createElement)(\"rect\",{width:\"14.12\",height:\"14.12\",x:\"16.88\",y:\"1\",fill:\"#86A62C\",rx:\"3.53\"}),(0,a.createElement)(\"path\",{fill:\"#86A62C\",fillRule:\"evenodd\",d:\"M1.38 2.93C1 3.68 1 4.67 1 6.65v2.82c0 1.98 0 2.97.38 3.72.34.66.88 1.2 1.55 1.54.75.39 1.74.39 3.72.39h2.82c1.98 0 2.97 0 3.72-.39.66-.34 1.2-.88 1.54-1.54.39-.75.39-1.74.39-3.72V6.65c0-1.98 0-2.97-.39-3.72a3.53 3.53 0 0 0-1.54-1.55C12.44 1 11.45 1 9.47 1H6.65c-1.98 0-2.97 0-3.72.38-.67.34-1.2.88-1.55 1.55Zm5.98 8.62 5.73-5.73-1.24-1.25-5.11 5.1-2.47-2.46-1.25 1.25 3.1 3.09c.34.34.9.34 1.24 0ZM16.88 22.53c0-1.98 0-2.97.39-3.72.34-.66.88-1.2 1.54-1.54.75-.39 1.74-.39 3.72-.39h2.82c1.98 0 2.97 0 3.72.39.67.34 1.2.88 1.55 1.54.38.75.38 1.74.38 3.72v2.82c0 1.98 0 2.97-.38 3.72-.34.67-.88 1.2-1.55 1.55-.75.38-1.74.38-3.72.38h-2.82c-1.98 0-2.97 0-3.72-.38a3.53 3.53 0 0 1-1.54-1.55c-.39-.75-.39-1.74-.39-3.72v-2.82Zm6.18.53v-3.09h1.76v3.09h3.1v1.76h-3.1v3.1h-1.76v-3.1h-3.09v-1.76h3.09Z\",clipRule:\"evenodd\"}))},i={wholesale_x:{title:\"WholesaleX\",subtitle:`WholesaleX \\n        ${__(\"is a B2B wholesale plugin featuring advanced wholesale pricing and customization features.\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fgetwholesalex.com\u002F\"},wow_store:{title:\"WowStore\",subtitle:`WowStore ${__(\"is a complete WooCommerce store builder featuring advanced options to improve sales!\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fwww.wpxpo.com\u002Fwowstore\u002F\"},wow_revenue:{title:\"WowRevenue\",subtitle:`WowRevenue ${__(\"boost sales and maximize revenue with the advanced discount campaigns of WowRevenue.\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fwww.wowrevenue.com\u002F\"},wow_optin:{title:\"WowOptin\",subtitle:`WowOptin ${__(\"generates actionable leads and boost sales with popups, banners, and floating bars using WowOptin.\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fwww.wowoptin.com\u002F\"},wow_addon:{title:\"WowAddons\",subtitle:`WowAddons ${__(\"extends the functionality of your WooCommerce store with additional features and options.\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fwww.wpxpo.com\u002Fproduct-addons-for-woocommerce\u002F\"}},l=()=>{const[e,t]=(0,a.useState)({}),[n,l]=(0,a.useState)(ultp_dashboard_pannel.products||{}),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(ultp_dashboard_pannel.products_active||{}),u=e=>{t((t=>({...t,[e]:!0})));const n=new FormData;n.append(\"action\",\"ultp_install_plugin\"),n.append(\"wpnonce\",ultp_dashboard_pannel.security),n.append(\"plugin\",e),fetch(ultp_dashboard_pannel.ajax,{method:\"POST\",body:n}).then((e=>e.json())).then((()=>{})).catch((()=>{})).finally((()=>{t((t=>({...t,[e]:!1}))),l((t=>({...t,[e]:!0}))),d((t=>({...t,[e]:!0})))}))},m=(0,r.t)();return(0,a.useEffect)((()=>{p(!0),setTimeout((()=>{m.current&&p(!1)}),1e3)}),[]),(0,a.createElement)(\"div\",{className:\"ultp-plugins-wrapper\"},(0,a.createElement)(\"div\",{className:\"ultp-plugin-items\"},Object.keys(i).map(((t,r)=>((t,r)=>{const l=o[t]||null;return(0,a.createElement)(\"div\",{key:r,className:\"ultp-plugin-item\"},(0,a.createElement)(\"div\",{className:\"ultp-plugin-item-title\"},(0,a.createElement)(\"div\",{className:\"ultp-product-icon\"},l),i[t].title),(0,a.createElement)(\"div\",{className:\"ultp-plugin-item-desc\"},i[t].subtitle),(0,a.createElement)(\"div\",{className:\"ultp-plugin-item-action\"},(0,a.createElement)(a.Fragment,null,c[t]?(0,a.createElement)(\"div\",{className:\"ultp-secondary-button ultp-activated-button\"},__(\"Activated\",\"ultimate-post\")):(0,a.createElement)(\"div\",{className:\"ultp-secondary-button ultp-plugin-active-btn\",onClick:()=>u(t),role:\"button\",tabIndex:-1,onKeyDown:e=>{\"Enter\"===e.key&&u(t)}},(0,a.createElement)(\"div\",null,n[t]?__(\"Activate\",\"ultimate-post\"):__(\"Install\",\"ultimate-post\")),e[t]&&(0,a.createElement)(\"span\",{className:\"ultp-plugin-item-loading\"}))),(0,a.createElement)(\"div\",{className:\"ultp-transparent-alter-button\",role:\"button\",tabIndex:-1,onClick:()=>window.open(i[t].pluginUrl,\"_blank\"),onKeyDown:e=>{\"Enter\"===e.key&&window.open(i[t].pluginUrl,\"_blank\")}},__(\"Plugin Details\",\"ultimate-post\"))))})(t,r)))))}},5957:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>s});var a=n(7294),r=n(356),o=n(4766),i=n(4482),l=n(8949);n(6680);const{__}=wp.i18n,s=e=>{const[t,n]=(0,a.useState)([]),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(1),[u,m]=(0,a.useState)(0),[f,h]=(0,a.useState)(\"\"),[g,v]=(0,a.useState)(0),[_,w]=(0,a.useState)(!1),[b,x]=(0,a.useState)(\"\"),[y,k]=(0,a.useState)([]),[E,C]=(0,a.useState)(\"\"),[S,M]=(0,a.useState)(!1),[L,N]=(0,a.useState)({state:!1,status:\"\"}),[Z,P]=(0,a.useState)(!1);(0,a.useEffect)((()=>(z(),document.addEventListener(\"mousedown\",B),()=>document.removeEventListener(\"mousedown\",B))),[]);const z=(t={})=>{A({action:\"dashborad\",data:Object.assign({},{type:\"saved_templates\",pages:c,pType:e.type},t)})},A=e=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002F\"+e.action,method:\"POST\",data:e.data}).then((t=>{if(t.success)switch(e.data.type){case\"saved_templates\":k(Array(t.data.length).fill(!1)),n(t.data),p(!(t.data.length>0)),h(t.new),m(t.found),v(t.pages),x(\"\"),w(!1),e.data.search&&d(1);break;case\"status\":case\"delete\":case\"duplicate\":case\"action_draft\":case\"action_delete\":case\"action_publish\":z(),w(!1),N({status:e.data.type.includes(\"delete\")?\"error\":\"success\",messages:[t.message],state:!0})}}))},B=e=>{e.target.parentNode.classList.contains(\"ultp-reserve-button\")||(C(\"\"),M(!1))};return(0,a.createElement)(\"div\",{className:`ultp-${\"ultp_templates\"==e.type?\"saved-template\":\"custom-font\"}-container`},L.state&&(0,a.createElement)(r.Z,{delay:2e3,toastMessages:L,setToastMessages:N}),f?(0,a.createElement)(a.Fragment,null,\"ultp_templates\"==e.type&&!ultp_dashboard_pannel.active&&t?.length>0?(0,a.createElement)(\"a\",{className:\"ultp-primary-button cursor\",onClick:()=>P(!0)},__(\"Add New\",\"ultimate-post\")):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"a\",{className:\"ultp-primary-button \",target:\"_blank\",href:f,rel:\"noreferrer\"},__(\"Add New\",\"ultimate-post\")))):(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:108,unit1:\"px\",size2:46,unit2:\"px\",br:4}}),(0,a.createElement)(\"div\",{className:\"tableCon\"},(0,a.createElement)(\"div\",{className:\"ultp-bulk-con ultp-dash-item-con\"},(0,a.createElement)(\"div\",null,(0,a.createElement)(\"select\",{value:b,onChange:e=>x(e.target.value)},(0,a.createElement)(\"option\",{value:\"\"},__(\"Bulk Action\",\"ultimate-post\")),(0,a.createElement)(\"option\",{value:\"publish\"},__(\"Publish\",\"ultimate-post\")),(0,a.createElement)(\"option\",{value:\"draft\"},__(\"Draft\",\"ultimate-post\")),(0,a.createElement)(\"option\",{value:\"delete\"},__(\"Delete\",\"ultimate-post\"))),(0,a.createElement)(\"a\",{className:\"ultp-primary-button cursor\",onClick:()=>{const e=y.filter((e=>Number.isInteger(e)));b&&e.length>0&&(\"delete\"==b?confirm(\"Are you sure you want to apply the action?\")&&A({action:\"dashborad\",data:{type:\"action_\"+b,ids:e}}):A({action:\"dashborad\",data:{type:\"action_\"+b,ids:e}}))}},__(\"Apply\",\"ultimate-post\"))),(0,a.createElement)(\"input\",{type:\"text\",placeholder:\"Search...\",onChange:e=>{z({search:e.target.value})}})),(0,a.createElement)(\"div\",{className:\"ultpTable\"},(0,a.createElement)(\"table\",{className:0!=t.length||s?\"\":\"skeletonOverflow\"},(0,a.createElement)(\"thead\",null,(0,a.createElement)(\"tr\",null,(0,a.createElement)(\"th\",null,(0,a.createElement)(\"input\",{type:\"checkbox\",checked:_,onChange:e=>{k(_?Array(t.length).fill(!1):t.map((e=>e.id))),w(!_)}})),(0,a.createElement)(a.Fragment,null,\"ultp_templates\"==e.type?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"th\",{className:\"title\"},__(\"Title\",\"ultimate-post\")),(0,a.createElement)(\"th\",null,__(\"Shortcode\",\"ultimate-post\"))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"th\",{className:\"title\"},__(\"Font Family\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontpreview\"},__(\"Preview\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"WOFF\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"WOFF2\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"TTF\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"SVG\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"EOT\",\"ultimate-post\"))),(0,a.createElement)(\"th\",{className:\"dateHead\"},__(\"Date\",\"ultimate-post\")),(0,a.createElement)(\"th\",null,__(\"Action\",\"ultimate-post\"))))),(0,a.createElement)(\"tbody\",null,t?.map(((t,n)=>(0,a.createElement)(\"tr\",{key:n},(0,a.createElement)(\"td\",null,(0,a.createElement)(\"input\",{type:\"checkbox\",checked:!!y[n],onChange:()=>{const e=[...y];e.splice(n,1,!y[n]&&t.id),k(e)}})),(t=>{let n=\"\",r={fontFamily:\"\",fontWeight:\"\"};if(\"ultp_templates\"!=e.type&&t?.font_settings?.length>0){const e=t.font_settings[0],a=[];e.woff&&a.push(`url(${e.woff}) format('woff')`),e.woff2&&a.push(`url(${e.woff2}) format('woff2')`),e.ttf&&a.push(`url(${e.ttf}) format('TrueType')`),e.svg&&a.push(`url(${e.svg}) format('svg')`),e.eot&&a.push(`url(${e.eot}) format('eot')`),n+=` @font-face {\\n                font-family: \"${t.title}\";\\n                font-weight: ${e.weight};\\n                font-display: auto;\\n                src: ${a.join(\", \")};\\n            } `,r={fontFamily:t.title,fontWeight:e.weight}}return(0,a.createElement)(a.Fragment,null,\"ultp_templates\"==e.type?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"td\",{className:\"title\"},(0,a.createElement)(\"a\",{href:t?.edit?.replace(\"&amp;\",\"&\"),target:\"_blank\",rel:\"noreferrer\"},t.title||\"Untitled\")),(0,a.createElement)(\"td\",null,(0,a.createElement)(\"span\",{className:\"shortCode\",onClick:e=>{(e=>{let t=!1;if(navigator.clipboard)t=navigator.clipboard.writeText(e.target.innerHTML);else{const n=document.createElement(\"input\");n.setAttribute(\"value\",e.target.innerHTML),document.body.appendChild(n),n.select(),t=document.execCommand(\"copy\"),document.body.removeChild(n)}if(t){const t=document.createElement(\"span\");t.innerText=\"Copied!\",e.target.appendChild(t),setTimeout((()=>{e.target.removeChild(t)}),800)}})(e)}},'[postx_template id=\"',t.id,'\"]'))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"td\",{className:\"title\"},(0,a.createElement)(\"a\",{href:t?.edit?.replace(\"&amp;\",\"&\"),target:\"_blank\",rel:\"noreferrer\"},t.title||\"Untitled\")),t.title&&(0,a.createElement)(\"style\",{type:\"text\u002Fcss\"},n),(0,a.createElement)(\"td\",{style:r},__(\"The quick brown fox jumps over the lazy dog.\",\"ultimate-post\")),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.woff?\"dashicons-yes\":\"dashicons-no-alt\")})),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.woff2?\"dashicons-yes\":\"dashicons-no-alt\")})),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.ttf?\"dashicons-yes\":\"dashicons-no-alt\")})),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.svg?\"dashicons-yes\":\"dashicons-no-alt\")})),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.eot?\"dashicons-yes\":\"dashicons-no-alt\")}))))})(t),(0,a.createElement)(\"td\",{className:\"typeDate\"},\"publish\"==t.status?\"Published\":t.status,\" \",(0,a.createElement)(\"br\",null),t.date),(0,a.createElement)(\"td\",null,(0,a.createElement)(\"span\",{className:\"actions ultp-reserve-button\",onClick:e=>{M(!S),C(t.id)}},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-ellipsis\"}),E==t.id&&S&&(0,a.createElement)(\"ul\",{className:\"ultp-dash-item-con actionPopUp ultp-reserve-button\"},(0,a.createElement)(\"li\",{className:\"ultp-reserve-button\"},(0,a.createElement)(\"a\",{target:\"_blank\",href:t?.edit?.replace(\"&amp;\",\"&\"),rel:\"noreferrer\"},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-edit-large\"}),__(\"Edit\",\"ultimate-post\"))),(0,a.createElement)(\"li\",{onClick:e=>{C(\"\"),M(!1),e.preventDefault(),confirm(\"Are you sure?\")&&A({action:\"template_action\",data:{type:\"status\",id:t.id,status:\"publish\"==t.status?\"draft\":\"publish\"}})}},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-open-folder\"}),__(\"Set to\",\"ultimate-post\"),\" \",\"draft\"==t.status?\"Publish\":\"Draft\"),(0,a.createElement)(\"li\",{onClick:e=>{C(\"\"),M(!1),e.preventDefault(),confirm(\"Are you sure you want to delete?\")&&A({action:\"template_action\",data:{type:\"delete\",id:t.id}})}},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-trash\"}),__(\"Delete\",\"ultimate-post\")),\"ultp_templates\"==e.type&&(0,a.createElement)(\"li\",{onClick:e=>{C(\"\"),M(!1),e.preventDefault(),confirm(\"Are you sure you want to duplicate this template?\")&&A({action:\"template_action\",data:{type:\"duplicate\",id:t.id}})}},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-admin-page\"}),__(\"Duplicate\",\"ultimate-post\")))))))),0==t.length&&s&&(0,a.createElement)(\"tr\",null,\"ultp_templates\"==e.type?(0,a.createElement)(\"td\",{colSpan:5},(0,a.createElement)(\"div\",{className:\"ultp_h2\"},__(\"No Data Found !!!\",\"ultimate-post\"))):(0,a.createElement)(\"td\",{colSpan:10},(0,a.createElement)(\"div\",{className:\"ultp_h2\"},__(\"No Data Found !!!\",\"ultimate-post\")))),0==t.length&&!s&&(0,a.createElement)(a.Fragment,null,Array(5).fill(1).map(((t,n)=>(0,a.createElement)(\"tr\",{key:n},(0,a.createElement)(\"td\",null,(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:22,unit1:\"px\",size2:20,unit2:\"px\",br:4}})),\"ultp_templates\"==e.type?(0,a.createElement)(a.Fragment,null,Array(4).fill(1).map(((e,t)=>(0,a.createElement)(\"td\",{key:t},(0,a.createElement)(l.Z,{type:\"title\",size:\"99\"}))))):(0,a.createElement)(a.Fragment,null,Array(9).fill(1).map(((e,t)=>(0,a.createElement)(\"td\",{key:t},(0,a.createElement)(l.Z,{type:\"title\",size:\"99\"})))))))))))),(0,a.createElement)(\"div\",{className:\"pageCon\"},(0,a.createElement)(\"div\",null,__(\"Page\",\"ultimate-post\"),\" \",g>0?c:g,\" \",__(\"of\",\"ultimate-post\"),\" \",g,\" [\",\" \",u,\" \",__(\"items\",\"ultimate-post\"),\" ]\"),g>0&&(0,a.createElement)(\"div\",{className:\"ultpPages\"},c>1&&(0,a.createElement)(\"span\",{onClick:()=>{const e=c-1;z({pages:e}),d(e)}},o.ZP.leftAngle2),(0,a.createElement)(\"span\",{className:\"currentPage\"},c),g>c&&(0,a.createElement)(\"span\",{onClick:()=>{const e=c+1;z({pages:e}),d(e)}},o.ZP.rightAngle2)))),Z&&(0,i.cs)({tags:\"menu_save_temp_pro\",func:e=>{P(e)},data:{icon:\"saved_template_lock.svg\",title:__(\"Create Unlimited Saved Templates with PostX Pro\",\"ultimate-post\"),description:__(\"You can create only one saved template with the free version of PostX. Please upgrade to a pro plan to create unlimited saved templates.\",\"ultimate-post\")}}))}},3554:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>d});var a=n(7294),r=n(1383),o=n(448),i=n(4766),l=n(8949),s=n(356),p=n(814),c=n(6488);const{__}=wp.i18n,d=e=>{const[t,n]=(0,a.useState)({templates:[],designs:[],reloadId:\"\",reload:!1,isTemplate:!0,error:!1,fetching:!1,loading:!1}),[d,u]=(0,a.useState)(\"\"),[m,f]=(0,a.useState)(\"all\"),[h,g]=(0,a.useState)(\"all\"),[v,_]=(0,a.useState)(\"all\"),[w,b]=(0,a.useState)([]),[x,y]=(0,a.useState)(!1),[k,E]=(0,a.useState)({state:!1,status:\"\"}),[C,S]=(0,a.useState)(\"3\"),[M,L]=(0,a.useState)(\"\"),[N,Z]=(0,a.useState)([]),{loading:P,fetching:z}=t,A=(0,r.t)(),B=async()=>{n((e=>({...e,loading:!0}))),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ffetch_premade_data\",method:\"POST\",data:{type:\"starter_lists\"}}).then((e=>{if(e.success&&A.current&&e.data){const t=JSON.parse(e.data);Z(t),n((e=>({...e,loading:!1})))}}))},H=[{value:\"all\",label:__(\"All Categories\",\"ultimate-post\")},{value:\"news\",label:__(\"News\",\"ultimate-post\")},{value:\"magazine\",label:__(\"Magazine\",\"ultimate-post\")},{value:\"blog\",label:__(\"Blog\",\"ultimate-post\")},{value:\"sports\",label:__(\"Sports\",\"ultimate-post\")},{value:\"fashion\",label:__(\"Fashion\",\"ultimate-post\")},{value:\"tech\",label:__(\"Tech\",\"ultimate-post\")},{value:\"travel\",label:__(\"Travel\",\"ultimate-post\")},{value:\"food\",label:__(\"Food\",\"ultimate-post\")},{value:\"movie\",label:__(\"Movie\",\"ultimate-post\")},{value:\"health\",label:__(\"Health\",\"ultimate-post\")},{value:\"gaming\",label:__(\"Gaming\",\"ultimate-post\")},{value:\"nft\",label:__(\"NFT\",\"ultimate-post\")}];(0,a.useEffect)((()=>{T(\"\",\"\",\"fetchData\"),B()}),[]);const T=(e,t=\"\",n=\"\")=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fpremade_wishlist_save\",method:\"POST\",data:{id:e,action:t,type:n}}).then((e=>{e.success&&A.current&&(b(Array.isArray(e.wishListArr)?e.wishListArr:Object.values(e.wishListArr||{})),\"fetchData\"!=n&&E({status:\"success\",messages:[e.message],state:!0}))}))};if(M){document.querySelector(\"#adminmenumain\").style=\"display: none;\",document.querySelector(\".ultp-settings-container\").style=\"min-height: unset;\";const e=N.filter((e=>e.live==M))[0];return(0,a.createElement)(p.Z,{_val:e,setLiveUrl:L,liveUrl:M})}document.querySelector(\"#adminmenumain\").style=\"\",document.querySelector(\".ultp-settings-container\").style=\"\";let R=(0,o.cC)(w.join(\"\"),[]);R&&\"object\"==typeof R&&!Array.isArray(R)&&(R=Object.keys(R).sort(((e,t)=>e-t)).map((e=>R[e])));const O=N.map((e=>e.ID)).sort(((e,t)=>t-e)).slice(0,3);return(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-templatekit-wrap\"},k.state&&(0,a.createElement)(s.Z,{delay:2e3,toastMessages:k,setToastMessages:E}),(0,a.createElement)(\"div\",{className:\"ultp-templatekit-list-container \"},(0,a.createElement)(c.Z,{changeStates:(e,t)=>{\"freePro\"==e?_(t):\"search\"==e?u(t):\"column\"==e?S(t):\"wishlist\"==e?y(t):\"trend\"==e?(f(t),\"latest\"==t||\"all\"==t?N.sort(((e,t)=>t.ID-e.ID)):\"popular\"==t&&N[0]&&N[0].hit&&N.sort(((e,t)=>t.hit-e.hit))):\"filter\"==e&&g(t)},useState:a.useState,useEffect:a.useEffect,useRef:a.useRef,column:C,showWishList:x,_fetchFile:()=>{n((e=>({...e,fetching:!0}))),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ffetch_premade_data\",method:\"POST\",data:{type:\"fetch_all_data\"}}).then((e=>{e.success&&A.current&&(B(),n((e=>({...e,fetching:!1}))),E({status:\"success\",messages:[e.message],state:!0}))}))},fetching:z,searchQuery:d,fields:{filter:!0,trend:!0,freePro:!0},fieldOptions:{filterArr:H,trendArr:[],freeProArr:[]},fieldValue:{filter:h,trend:m,freePro:v}}),N.length>0?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-premade-grid ultp-templatekit-col\"+C},N.map((e=>e.title?.toLowerCase().includes(d.toLowerCase())&&(\"all\"==h||\"all\"!=h&&(h==e.category||(Array.isArray(e.parent_cat)?e.parent_cat:Object.values(e.parent_cat||{})).includes(h)))&&(\"all\"==v||\"pro\"==v&&e.pro||\"free\"==v&&!e.pro)&&(!x||x&&R?.includes(e.ID))&&(0,a.createElement)(\"div\",{key:e.ID,className:\"ultp-item-wrapper ultp-starter-group \"},(0,a.createElement)(\"div\",{className:\"ultp-item-list\"},(0,a.createElement)(\"div\",{className:\"ultp-item-list-overlay\"},(0,a.createElement)(\"a\",{className:\"ultp-templatekit-img bg-image-aspect\",href:\"#\",style:{backgroundImage:`url(https:\u002F\u002Fpostxkit.wpxpo.com\u002F${e.live}\u002Fwp-content\u002Fuploads\u002Fsites\u002F${e.ID}\u002Fpostx_importer_img\u002Fpages\u002Fhome.jpg)`}}),(0,a.createElement)(\"div\",{className:\"ultp-list-dark-overlay\"},!ultp_dashboard_pannel.active&&(0,a.createElement)(a.Fragment,null,e.pro?(0,a.createElement)(\"span\",{className:\"ultp-templatekit-premium-btn\"},__(\"Pro\",\"ultimate-post\")):(0,a.createElement)(\"span\",{className:\"ultp-templatekit-premium-btn ultp-templatekit-premium-free-btn\"},__(\"Free\",\"ultimate-post\"))),(0,a.createElement)(\"a\",{className:\"ultp-overlay-view ultp-dashboverlay\",onClick:()=>L(e.live)},i.ZP.eye,__(\"Live Preview\",\"ultimate-post\"))),e.pro&&(0,a.createElement)(\"div\",{className:\"ultp-list-info-tag-pro\"},(0,a.createElement)(\"span\",null,\"PRO\"))),(0,a.createElement)(\"div\",{className:\"ultp-item-list-info\"},(0,a.createElement)(\"div\",{className:\"ultp-list-info\",onClick:()=>L(e.live)},(0,a.createElement)(\"div\",{className:\"ultp-list-info-title\"},e.title,O.includes(e.ID)&&(0,a.createElement)(\"div\",{className:\"ultp-list-info-tag-new\"},\"NEW\")),(0,a.createElement)(\"div\",{className:\"ultp-list-info-count\"},e.templates?.length&&e.templates?.length+\" templates\")),(0,a.createElement)(\"span\",{className:\"ultp-action-btn\"},(0,a.createElement)(\"span\",{className:\"ultp-premade-wishlist\",onClick:()=>{T(e.ID,R?.includes(e.ID)?\"remove\":\"\")}},i.ZP[R?.includes(e.ID)?\"love_solid\":\"love_line\"]))))))))):P?(0,a.createElement)(\"div\",{className:\"ultp-premade-grid skeletonOverflow ultp-templatekit-col\"+C},Array(25).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{key:t,className:\"ultp-item-list\"},(0,a.createElement)(\"div\",{className:\"ultp-item-list-overlay\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:440,unit2:\"px\"}})),(0,a.createElement)(\"div\",{className:\"ultp-item-list-info\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"%\",size2:25,unit2:\"px\",br:2}}),(0,a.createElement)(\"span\",{className:\"ultp-action-btn\"},(0,a.createElement)(\"span\",{className:\"ultp-premade-wishlist\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:30,unit1:\"px\",size2:25,unit2:\"px\",br:2}})))))))):(0,a.createElement)(\"span\",{className:\"ultp-image-rotate\"},__(\"No Data Available…\",\"ultimate-post\")))))}},4371:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>i});var a=n(7294),r=n(448),o=n(5404);const{__}=wp.i18n,i=({ultpPresetColors:e,currentPresetColors:t,setCurrentPresetColors:n,setCurrentPostxGlobal:i,currentPostxGlobal:l})=>{const s={...e,rootCSS:(0,r.AJ)(\"styleCss\",e)},[p,c]=(0,a.useState)({...t,...s}),[d,u]=(0,a.useState)(\"\"),[m,f]=(0,a.useState)(!1),h=(0,r.AJ)(\"colorStacks\"),g=(0,r.AJ)(\"presetColorKeys\");(0,a.useEffect)((()=>{(0,r.x2)(\"get\",\"ultpPresetColors\",\"\",(e=>{if(e.data){const t={...e.data,...p};n({...t,rootCSS:(0,r.AJ)(\"styleCss\",t)})}}))}),[]);const v=(e,a=\"\")=>{let o={...t,...e};\"darkhandle\"!=a&&m&&(o=_(o));const i=((e={},t=\"\")=>{const n=(0,r.AJ)(\"styleCss\",e),a=document.querySelector(\"#ultp-starter-preview\");if(a.contentWindow){const e={type:\"replaceColorRoot\",id:\"#ultp-preset-colors-style-inline-css\",styleCss:n,dlMode:\"darkhandle\"==t?m?\"ultpLight\":\"ultpDark\":m?\"ultpDark\":\"ultpLight\"};a.contentWindow.postMessage(e,\"*\")}return n})(o,a);c(o),n({...o,rootCSS:i})},_=(e={})=>({...e,Base_1_color:e.Contrast_1_color,Base_2_color:e.Contrast_2_color,Base_3_color:e.Contrast_3_color,Contrast_1_color:e.Base_1_color,Contrast_2_color:e.Base_2_color,Contrast_3_color:e.Base_3_color});return(0,a.createElement)(\"div\",{className:\"ultp_starter_preset_container\"},(0,a.createElement)(\"div\",{className:\"ultp_starter_dark_container\"},(0,a.createElement)(\"div\",{onClick:()=>(()=>{const e=_(t);document.querySelector(\".ultp-dl-container .ultp-dl-svg-con\").style=`transform: translateX(${m?\"\":\"calc( 100% + 71px )\"}); transition: transform .4s ease`,document.querySelector(\".ultp-dl-container .ultp-dl-svg-title\").style=`transform: translateX(${m?\"\":\"calc( -100% + 50px )\"}); transition: transform .4s ease`,setTimeout((()=>{f(!m),i({...l,enableDark:!m}),v(e,\"darkhandle\")}),400)})(),className:\" ultp-dl-container \"},(0,a.createElement)(\"div\",{className:\"ultp-dl-svg-con \"+(m?\"dark\":\"\")},(0,a.createElement)(\"div\",{className:\"ultp-dl-svg\"},o.Z[m?\"moon\":\"sun\"])),(0,a.createElement)(\"div\",{className:\"ultp-dl-svg-title\"},m?\"Dark Mode\":\"Light Mode\"))),(0,a.createElement)(\"div\",{className:\"ultp_starter_reset_container\"},(0,a.createElement)(\"div\",{className:\"packs_title\"},__(\"Change Color Palette\",\"ultimate-post\")),d&&(0,a.createElement)(\"span\",{className:\"dashicons dashicons-image-rotate\",onClick:()=>{u(\"\"),v(s)}})),(0,a.createElement)(\"ul\",{className:\"ultp-color-group\"},h.map(((e,t)=>(0,a.createElement)(\"li\",{className:\"ultp_starter_preset_list \"+(d==t+1?\"active\":\"\"),key:t,onClick:()=>{const n={};u(t+1),g.forEach(((t,a)=>{n[t]=e[a]})),v(n)}},e.map(((e,t)=>![1,2,6,8,9].includes(t+1)&&(0,a.createElement)(\"span\",{key:t,className:\"ultp-global-color\",style:{backgroundColor:e}}))))))))}},5066:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294),r=n(448);const{__}=wp.i18n,o=({ultpPresetTypos:e,currentPresetTypos:t,setCurrentPresetTypos:n})=>{const o={...e,presetTypoCSS:(0,r.AJ)(\"typoCSS\",e,!0)},[i,l]=(0,a.useState)({...t,...o}),[s,p]=(0,a.useState)(\"\"),c=(0,r.AJ)(\"presetTypoKeys\"),d=(0,r.AJ)(\"typoStacks\");(0,a.useEffect)((()=>{(0,r.x2)(\"get\",\"ultpPresetTypos\",\"\",(e=>{if(e.data){const t={...e.data,...i};l({...t,presetTypoCSS:(0,r.AJ)(\"typoCSS\",t,!0)}),n({...t,presetTypoCSS:(0,r.AJ)(\"typoCSS\",t,!0)})}}))}),[]);const u=e=>{const a={...t,...e},o=((e={})=>{const t=(0,r.AJ)(\"typoCSS\",e,!0),n=document.querySelector(\"#ultp-starter-preview\");if(n.contentWindow){const e={type:\"replaceColorRoot\",id:\"#ultp-preset-typo-style-inline-css\",styleCss:t};n.contentWindow.postMessage(e,\"*\")}return t})(a);l(a),n({...a,presetTypoCSS:o})};return(0,a.createElement)(\"div\",{className:\"ultp_starter_preset_container\"},(0,a.createElement)(\"div\",{className:\"ultp_starter_reset_container\"},(0,a.createElement)(\"div\",{className:\"packs_title\"},__(\"Change Font & Typography\",\"ultimate-post\")),s&&(0,a.createElement)(\"span\",{className:\"dashicons dashicons-image-rotate\",onClick:()=>{p(\"\"),u(o)}})),(0,a.createElement)(\"ul\",{className:\"ultp-typo-group\"},d.map(((e,n)=>(0,a.createElement)(\"li\",{title:`${e[0].family}\u002F${e[1].family}`,className:\"ultp_starter_preset_typo_list \"+(s==n+1?\"active\":\"\"),key:n,onClick:()=>{const a={};p(n+1),c.forEach(((n,r)=>{a[n]={...t[n]},a[n].family=e[r].family,a[n].type=e[r].type,a[n].weight=e[r].weight})),u(a)}},e.map(((e,t)=>(0,a.createElement)(\"span\",{key:t},(0,a.createElement)(\"style\",null,(0,r.AJ)(\"font_load\",e,!0)),(0,a.createElement)(\"span\",{key:t,className:\"\",style:{fontFamily:`${e.family}, ${e.type}`}},0==t?\"A\":\"a\")))))))))}},5324:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294),r=n(4766);const o=e=>{const{useState:t,useEffect:n,useRef:o,onChange:i,options:l,value:s,contentWH:p}=e,[c,d]=t(!1),u=o(null),m=e=>{u?.current&&!u?.current.contains(e.target)?d(!1):u?.current&&u?.current.contains(e.target)&&!e.target.classList?.contains(\"ultp-reserve-button\")&&d(!u?.current.classList?.contains(\"open\"))};n((()=>(document.addEventListener(\"mousedown\",m),()=>document.removeEventListener(\"mousedown\",m))),[]);const f=l?.find((e=>e.value===s));return(0,a.createElement)(\"div\",{ref:u,className:\"starter_filter_select \"+(c?\"open\":\"\")},(0,a.createElement)(\"div\",{className:\"starter_filter_selected\"},f?f.label:\"Select an option\",r.ZP.collapse_bottom_line),c&&(0,a.createElement)(\"ul\",{className:\"starter_filter_select_options\",style:{minWidth:p?.width||\"100px\",maxHeight:p?.height||\"160px\"}},l.map(((e,t)=>(0,a.createElement)(\"li\",{className:\"ultp-reserve-button starter_filter_select_option\",key:t,onClick:()=>(e=>{d(!1),i(e.value)})(e)},e.label)))))}},814:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>c});var a=n(7294),r=n(448),o=n(4766),i=n(4482),l=n(8949),s=n(4371),p=n(5066);n(4602);const{__}=wp.i18n,c=e=>{const{_val:t,setLiveUrl:n,liveUrl:c}=e,[d,u]=(0,a.useState)({}),[m,f]=(0,a.useState)({}),[h,g]=(0,a.useState)({}),v={deletePrevious:\"yes\",installPlugin:\"yes\",user_email:ultp_dashboard_pannel.user_email,get_newsletter:\"yes\",importDummy:\"yes\"},[_,w]=(0,a.useState)(!1),[b,x]=(0,a.useState)(!1),[y,k]=(0,a.useState)(!1),[E,C]=(0,a.useState)([]),[S,M]=(0,a.useState)(v),[L,N]=(0,a.useState)(0),[Z,P]=(0,a.useState)({type:\"desktop\",width:\"100%\"}),[z,A]=(0,a.useState)(!1),[B,H]=(0,a.useState)(!0),[T,R]=(0,a.useState)(!1),[O,j]=(0,a.useState)({plugin:!1,content:!1}),[V,F]=(0,a.useState)(!1),[W,D]=(0,a.useState)({}),[I,U]=(0,a.useState)({}),[$,G]=(0,a.useState)([]);(0,a.useEffect)((()=>{window.fetch(\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+t.live+\"\u002Fwp-json\u002Fimporter\u002Fglobal_settings\",{method:\"GET\"}).then((e=>e.text())).then((e=>{const t=(0,r.cC)(e,{});t.success&&(((e={})=>{wp.apiFetch({path:\"\u002Fultp\u002Fv1\u002Faction_option\",method:\"POST\",data:{type:\"get\"}}).then((t=>{if(t.success){let n={...t.data,...e};n={...n,globalCSS:(0,r.AJ)(\"globalCSS\",n)},g(n)}}))})(t.postx_global),D(t.ultpPresetColors),U(t.ultpPresetTypos),G(t.plugins))})).catch((e=>{}))}),[]);const q=(e,t,n,r=\"\")=>(0,a.createElement)(\"div\",{className:\"input_container\"},\"checkbox\"==t&&(0,a.createElement)(\"input\",{id:e,className:r,name:e,type:t,defaultChecked:!(!S[e]||\"yes\"!=S[e]),onChange:t=>{const n=t.target.checked?\"yes\":\"no\";M({...S,[e]:n})}}),\"checkbox\"!=t&&(0,a.createElement)(\"input\",{id:e,className:r,name:e,type:t,defaultValue:S[e]||\"\",onChange:t=>{const n=t.target.value;M({...S,[e]:n})}}),n&&(0,a.createElement)(\"span\",null,(0,a.createElement)(\"span\",{className:\"ultp-info\"},n)));return(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\" ultp_starter_packs_demo theme-install-overlay wp-full-overlay expanded \"+(B?\"active\":\"inactive\"),style:{display:\"block\"}},(0,a.createElement)(\"div\",{className:\"wp-full-overlay-sidebar \"},(0,a.createElement)(\"div\",{className:\"wp-full-overlay-header\"},(0,a.createElement)(\"div\",{className:\"ultp_starter_packs_demo_header\"},(0,a.createElement)(\"div\",{className:\"packs_title\"},t.title,(0,a.createElement)(\"span\",null,t.category)),(0,a.createElement)(\"button\",{onClick:()=>n(\"\"),className:\"close-full-overlay\"})),(0,a.createElement)(\"div\",{className:\"ultp-starter-collapse \"+(B?\"active\":\"inactive\"),onClick:()=>{H(!B)}},o.ZP.collapse_bottom_line)),Array(6).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{key:t,className:\"ultp-addon-item ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-contents\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-name\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"px\",size2:50,unit2:\"px\",br:18}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:190,unit1:\"px\",size2:28,unit2:\"px\",br:4}})),(0,a.createElement)(\"div\",{className:\"ultp-description\"},(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:100,unit1:\"%\",size2:14,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:70,unit1:\"%\",size2:14,unit2:\"px\",br:2}}))),(0,a.createElement)(\"div\",{className:\"ultp-addon-item-actions ultp-dash-control-options\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"px\",size2:20,unit2:\"px\",br:8}}),(0,a.createElement)(\"div\",{className:\"ultp-docs-action\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:22,unit2:\"px\",br:2}})))))),(0,a.createElement)(\"div\",{className:\"wp-full-overlay-sidebar-content\"},W.hasOwnProperty(\"Base_1_color\")?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(s.Z,{ultpPresetColors:W,currentPresetColors:d,setCurrentPresetColors:u,currentPostxGlobal:h,setCurrentPostxGlobal:g})):(0,a.createElement)(\"div\",{className:\"skeletonOverflow\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:140,unit1:\"px\",size2:40,unit2:\"px\",br:40}}),(0,a.createElement)(\"div\",{className:\"skeletonOverflow_colors\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:140,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(\"div\",{className:\"demos-color\"},Array(10).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:\"custom_size\",c_s:{size1:100,unit1:\"px\",size2:30,unit2:\"px\",br:6}})))))),I.hasOwnProperty(\"Body_and_Others_typo\")?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(p.Z,{ultpPresetTypos:I,currentPresetTypos:m,setCurrentPresetTypos:f})):(0,a.createElement)(\"div\",{className:\"skeletonOverflow\"},(0,a.createElement)(\"div\",{className:\"skeletonOverflow_colors\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:140,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(\"div\",{className:\"demos-color\"},Array(10).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:\"custom_size\",c_s:{size1:100,unit1:\"px\",size2:30,unit2:\"px\",br:6}}))))))),(0,a.createElement)(\"div\",{className:\"wp-full-overlay-footer\"},(0,a.createElement)(\"div\",{className:\"ultp_starter_import_options\"},(0,a.createElement)(\"div\",{className:\"option_buttons\"},t.pro&&!ultp_dashboard_pannel.active?(0,i.hx)(`https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-starter&utm_medium=${t.live}-upgrade-pro&utm_campaign=postx-dashboard#pricing`,\"\"):(0,a.createElement)(\"a\",{className:\"ultp-starter-button\",onClick:()=>{w(!0)}},__(\"Import Site\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"ultp-starter-packs-device-container\"},(0,a.createElement)(\"span\",{onClick:()=>P({type:\"desktop\",width:\"100%\"}),className:\"ultp-starter-packs-device \"+(\"desktop\"==Z.type?\"d-active\":\"\")},o.ZP.desktop),(0,a.createElement)(\"span\",{onClick:()=>P({type:\"tablet\",width:(h.breakpointSm||\"990\")+\"px\"}),className:\"ultp-starter-packs-device \"+(\"tablet\"==Z.type?\"d-active\":\"\")},o.ZP.tablet),(0,a.createElement)(\"span\",{onClick:()=>P({type:\"mobile\",width:(h.breakpointXs||\"767\")+\"px\"}),className:\"ultp-starter-packs-device \"+(\"mobile\"==Z.type?\"d-active\":\"\")},o.ZP.mobile))))),(0,a.createElement)(\"div\",{className:\"wp-full-overlay-main\"},!T&&(0,a.createElement)(\"div\",{className:\"iframe_loader\"},(0,a.createElement)(\"div\",{className:\"iframe_container\"},(0,a.createElement)(\"div\",{className:\"iframe_header\"},(0,a.createElement)(\"div\",{className:\"iframe_header_top\"},(0,a.createElement)(\"div\",{className:\"header_top_left\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:60,unit2:\"px\",br:60}})),(0,a.createElement)(\"div\",{className:\"header_top_right\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:90,unit1:\"px\",size2:30,unit2:\"px\",br:4}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:90,unit1:\"px\",size2:30,unit2:\"px\",br:4}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:90,unit1:\"px\",size2:30,unit2:\"px\",br:4}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:90,unit1:\"px\",size2:30,unit2:\"px\",br:4}}),Array(3).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:\"custom_size\",c_s:{size1:30,unit1:\"px\",size2:30,unit2:\"px\",br:30}})))))),(0,a.createElement)(\"div\",{className:\"iframe_body_content\"},(0,a.createElement)(\"div\",{className:\"iframe_body_slider\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:300,unit2:\"px\",br:2}})),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:190,unit1:\"px\",size2:36,unit2:\"px\",br:2}}),(0,a.createElement)(\"div\",{className:\"iframe_body\"},(0,a.createElement)(\"div\",{className:\"iframe_body_left\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:300,unit2:\"px\",br:2}})),(0,a.createElement)(\"div\",{className:\"iframe_body_right\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:140,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:140,unit2:\"px\",br:2}})))))),(0,a.createElement)(\"iframe\",{className:`${Z.type}View`,onLoad:()=>{R(!0),(()=>{const e=document.querySelector(\"#ultp-starter-preview\");if(d.hasOwnProperty(\"Base_1_color\")){const t=(0,r.AJ)(\"styleCss\",d);if(e.contentWindow){const n={type:\"replaceColorRoot\",id:\"#ultp-preset-colors-style-inline-css\",styleCss:t,dlMode:h.enableDark?\"ultpDark\":\"ultpLight\"};e.contentWindow.postMessage(n,\"*\")}}if(m.hasOwnProperty(\"Body_and_Others_typo\")){const t=(0,r.AJ)(\"typoCSS\",m,!0);if(e.contentWindow){const n={type:\"replaceColorRoot\",id:\"#ultp-preset-typo-style-inline-css\",styleCss:t};e.contentWindow.postMessage(n,\"*\")}}})()},style:{display:\"block\",margin:\"0 auto\",maxWidth:Z.width},id:\"ultp-starter-preview\",src:\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+c}))),_&&(0,a.createElement)(\"div\",{className:\"ultp-stater-container-settings-overlay\"},(0,a.createElement)(\"div\",{className:\"ultp-stater-settings-container\"},(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"ultp-popup-stater\"},b?(0,a.createElement)(a.Fragment,null,y?(0,a.createElement)(\"div\",{className:\"ultp_processing_import\"},(0,a.createElement)(\"div\",{className:\"stater_title\"},__(`Started building ${t.title} website`,\"ultimate-post\")),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"ultp_import_builders ultp-info\"},__(\"The import process can take a few seconds depending on the size of the kit you are importing and speed of the connection.\",\"ultimate-post\"),\" \",(0,a.createElement)(\"br\",null),(O.plugin||O.content)&&(0,a.createElement)(\"div\",{className:\"progress\"},(0,a.createElement)(\"div\",null,(0,a.createElement)(\"strong\",null,\"Progress:\"),\" \",O.plugin?\"Plugin Installation is\":O.content?\"Page\u002FPosts\u002FMedia Importing is\":\"Site Importing\",\" \",\"on progress..\")))),(0,a.createElement)(\"div\",{className:\"ultp_processing_show\"},(0,a.createElement)(\"div\",{className:\"ultp-importer-loader\"},(0,a.createElement)(\"div\",{id:\"ultp-importer-loader-bar\",style:{width:L+\"%\"}}),(0,a.createElement)(\"div\",{id:\"ultp-importer-loader-percentage\",style:{color:L>52?\"#fff\":\"#000\"}},L+\"%\"))),(0,a.createElement)(\"div\",{className:\"ultp_import_notice\"},(0,a.createElement)(\"span\",null,__(\"Note:\",\"ultimate-post\")),__(\"Please do not close this browser window until import is completed.\",\"ultimate-post\"))):(0,a.createElement)(\"div\",{className:\"ultp_successful_import\"},(0,a.createElement)(\"div\",{className:\"stater_title\"},t.title,__(` Imported ${V?\"Failed\":\"Successfully\"} `,\"ultimate-post\")),(0,a.createElement)(\"div\",null,V?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp_import_builders\"},__(\"Due to resquest timeout this import is failed\",\"ultimate-post\"),(0,a.createElement)(\"a\",{className:\"cursor\",onClick:()=>{window.location.reload()}},__(\"Refresh\",\"ultimate-post\")),__(\"page and try again\",\"ultimate-post\"))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp_import_builders\"},__(\"Navigate to\",\"ultimate-post\"),(0,a.createElement)(\"a\",{className:\"cursor\",onClick:()=>{window.location.href=ultp_dashboard_pannel.builder_url,window.location.reload()}},__(\"Site Builder to edit\",\"ultimate-post\")),__(\"your Archive, Post, Default Page and other templates.\",\"ultimate-post\")),(0,a.createElement)(\"a\",{className:\"ultp-primary-button\",href:ultp_dashboard_pannel.home_url},__(\"View Your Website\",\"ultimate-post\")))))):(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"ultp-info ultp-info-desc\"},\" \",__(\"Import the entire site including posts, images, pages, content and plugins.\",\"ultimate-post\")),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"stater_title\"},__(\"Import Settings\",\"ultimate-post\")),q(\"importDummy\",\"checkbox\",__(\"Import dummy post, taxonomy and featured images\",\"ultimate-post\")),q(\"deletePrevious\",\"checkbox\",__(\"Delete Previously imported sites\",\"ultimate-post\")),q(\"installPlugin\",\"checkbox\",__(\"Install required plugins\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"starter_page_impports\"},(0,a.createElement)(\"div\",{className:\"stater_title\"},__(\"Template\u002FPages\",\"ultimate-post\")),t?.templates?.map(((e,t)=>(!z&&t\u003C3||z)&&(0,a.createElement)(\"div\",{key:t,className:\"input_container\"},(0,a.createElement)(\"input\",{type:\"checkbox\",defaultChecked:!E.includes(e.name),onChange:t=>{t.target.checked&&E.includes(e.name)?C(E.filter((t=>t!==e.name))):t.target.checked||E.includes(e.name)||C([...E,e.name])}}),(0,a.createElement)(\"span\",null,(0,a.createElement)(\"span\",{className:\"ultp-info\"},e.name))))),t.templates.length>3&&(0,a.createElement)(\"div\",{className:\"cursor\",onClick:()=>{A(!z)}},\"Show \"+(z?\"less\":\"more\"),\" \",o.ZP.videoplay)),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"stater_title\"},__(\"Subscribe\",\"ultimate-post\")),(0,a.createElement)(\"span\",null,__(\"Stay up to date with the latest started templates and special offers\",\"ultimate-post\")),q(\"user_email\",\"email\",\"\",\"email_box\"),q(\"get_newsletter\",\"checkbox\",__(\"Stay updated with exciting features and news.\"),\"get_newsletter\")))),!b&&(0,a.createElement)(\"div\",{className:\"starter_import \"},(0,a.createElement)(\"a\",{className:\"ultp-primary-button\",onClick:()=>(async e=>{x(!0);let n,a=0;async function o(e,t,r){n=setInterval((()=>{e>=t?clearInterval(n):(e++,a++,N(e))}),r)}if(o(a,70,\"yes\"==S.importDummy?800:400),e){x(!0),k(!0);const i=$;if((0,r.x2)(\"set\",\"ultpPresetColors\",d),(0,r.x2)(\"set\",\"ultpPresetTypos\",m),wp.apiFetch({method:\"POST\",path:\"\u002Fultp\u002Fv1\u002Faction_option\",data:{type:\"set\",data:h}}),\"yes\"==S.deletePrevious||\"yes\"==S.get_newsletter){const e=new Promise(((e,t)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv3\u002Fdeletepost_getnewsletters\",method:\"POST\",data:{deletePrevious:S.deletePrevious,get_newsletter:S.get_newsletter}}).then((t=>{e(\"responsed\")}))}));await e}if(\"yes\"==S.importDummy){const t=new Promise(((t,n)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv3\u002Fstarter_dummy_post\",method:\"POST\",data:{api_endpoint:e,importDummy:S.importDummy}}).then((e=>{t(\"responsed\")})).catch((e=>{console.log(e),t(\"responsed\")}))}));await t}if(\"yes\"==S?.installPlugin){j({...O,plugin:!0});const e=i.map(((e,t)=>new Promise(((t,n)=>{jQuery.ajax({type:\"POST\",url:ultp_dashboard_pannel.ajax,data:{action:\"install_required_plugin\",wpnonce:ultp_dashboard_pannel.security,plugin:JSON.stringify(e)}}).done((function(e){t(\"responsed\")}))}))));await Promise.all(e),j({...O,plugin:!1})}clearInterval(n),o(a+1,80,500);const l=t.templates?.filter((e=>!E.includes(e.name)));l.length>0&&(j({...O,content:!0}),wp.apiFetch({path:\"\u002Fultp\u002Fv3\u002Fstarter_import_content\",method:\"POST\",data:{excludepages:JSON.stringify(E),api_endpoint:e,importDummy:S.importDummy,installPlugin:S?.installPlugin}}).then((e=>{clearInterval(n),o(a+1,100,50),setTimeout((()=>{k(!1),j({...O,content:!1})}),50*(100-a+2)),e.success||F(!0)})).catch((e=>{console.log(e),o(a+1,100,50),setTimeout((()=>{k(!1),j({...O,content:!1})}),50*(100-a+2))})))}})(\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+t.live)},__(\"Start Importing\",\"ultimate-post\"))),(0,a.createElement)(\"button\",{onClick:()=>{y||(M(v),x(!1),N(0),k(!1),w(!1))},className:\"ultp-popup-close \"+(y?\"s_loading\":\"\")},o.ZP.close_line)))))}},6488:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>s});var a=n(7294),r=n(4766),o=n(2402),i=n(7763),l=n(5324);const{__}=wp.i18n,s=e=>{const{changeStates:t,column:n,showWishList:s,_fetchFile:p,fetching:c,searchQuery:d,fields:u,fieldValue:m,fieldOptions:f,useState:h,useEffect:g,useRef:v}=e;return(0,a.createElement)(\"div\",{className:\"ultp-templatekit-layout-search-container\"},(0,a.createElement)(\"div\",{className:\"ultp-templatekit-search-container\"},u?.filter&&(0,a.createElement)(a.Fragment,null,\" \",(0,a.createElement)(\"span\",null,__(\"Filter:\",\"ultimate-post\")),(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.filter,contentWH:{height:\"190px\",width:\"150px\"},onChange:e=>{t(\"filter\",e)},options:f?.filterArr||[]})),u?.trend&&m?.trend&&(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.trend,onChange:e=>{t(\"trend\",e)},options:[{value:\"all\",label:__(\"Popular \u002F Latest\",\"ultimate-post\")},{value:\"popular\",label:__(\"Popular\",\"ultimate-post\")},{value:\"latest\",label:__(\"Latest\",\"ultimate-post\")}]}),u?.freePro&&(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.freePro,onChange:e=>{t(\"freePro\",e)},options:[{value:\"all\",label:__(\"Free \u002F Pro\",\"ultimate-post\")},{value:\"free\",label:__(\"Free\",\"ultimate-post\")},{value:\"pro\",label:__(\"Pro\",\"ultimate-post\")}]})),(0,a.createElement)(\"div\",{className:\"ultp-templatekit-layout-container\"},(0,a.createElement)(o.Z,{changeStates:t,searchQuery:d}),(0,a.createElement)(\"span\",{className:\"ultp-templatekit-iconcol2 \"+(\"2\"==n?\"ultp-lay-active\":\"\"),onClick:()=>t(\"column\",\"2\")},i.Z.grid_col1),(0,a.createElement)(\"span\",{className:\"ultp-templatekit-iconcol3 \"+(\"3\"==n?\"ultp-lay-active\":\"\"),onClick:()=>t(\"column\",\"3\")},i.Z.grid_col2),(0,a.createElement)(\"div\",{className:\"ultp-premade-wishlist-con\"},(0,a.createElement)(\"span\",{className:\"ultp-premade-wishlist cursor \"+(s?\"ultp-wishlist-active\":\"\"),onClick:()=>{t(\"wishlist\",!s)}},r.ZP[s?\"love_solid\":\"love_line\"])),p&&(0,a.createElement)(\"div\",{onClick:()=>p(),className:\"ultp-filter-sync\"},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-update-alt \"+(c?\" rotate\":\"\")}),__(\"Synchronize\",\"ultimate-post\"))))}},58:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294);n(3358);const{__}=wp.i18n,r=()=>(0,a.createElement)(\"input\",{type:\"file\",name:\"attachment\",accept:\"image\u002Fpng, image\u002Fjpeg\",className:\"xpo-input-support\",id:\"xpo-support-file-input\"}),o=()=>{const[e,t]=(0,a.useState)(!1),[n,o]=(0,a.useState)(!1),[i,l]=(0,a.useState)(!1),s=(0,a.useRef)(null),p=(0,a.useRef)(null);return(0,a.useEffect)((()=>{!e&&i&&l(!1)}),[e,i]),(0,a.useEffect)((()=>{const n=new AbortController;if(e)return document.addEventListener(\"mousedown\",(e=>{s.current&&!s.current.contains(e.target)&&(t(!1),l(!1))}),{signal:n.signal}),()=>{n.abort()}}),[e]),(0,a.createElement)(\"div\",{ref:s},(0,a.createElement)(\"span\",{className:\"xpo-support-pops-btn xpo-support-pops-btn--small \"+(e?\"xpo-support-pops-btn--big\":\"\"),onClick:()=>t((e=>!e)),role:\"button\",tabIndex:-1,onKeyDown:e=>{\"Enter\"===e.key&&t((e=>!e))}},(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"28\",height:\"28\",fill:\"none\",viewBox:\"0 0 28 28\"},(0,a.createElement)(\"path\",{fill:\"var(--xpo-support-color-reverse)\",fillRule:\"evenodd\",d:\"M27.3 14c0 7.4-6 13.3-13.3 13.3H.7l3.9-3.9A13.3 13.3 0 0 1 14 .7c7.4 0 13.3 6 13.3 13.3Zm-19 1.7a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Zm7.4-1.7a1.7 1.7 0 1 1-3.4 0 1.7 1.7 0 0 1 3.4 0Zm5.6 0a1.7 1.7 0 1 1-3.3 0 1.7 1.7 0 0 1 3.3 0Z\",clipRule:\"evenodd\"}))),e&&(0,a.createElement)(\"div\",{className:`xpo-support-pops-container ${e?\"xpo-support-entry-anim\":\"\"} ${i?\"\":\"xpo-support-pops-container--full-height\"}`},(0,a.createElement)(\"div\",{className:\"xpo-support-pops-header\"},(0,a.createElement)(\"div\",{style:{maxHeight:i?\"0px\":\"140px\",opacity:i?\"0\":\"1\",transition:\"max-height 0.3s, opacity 0.3s\"}},(0,a.createElement)(\"div\",{className:\"xpo-support-header-bg\"}),(0,a.createElement)(\"div\",{className:\"xpo-support-pops-avatars\"},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fsupport\u002F1.png\",alt:\"WPXPO\"}),(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fsupport\u002F2.jpg\",alt:\"A. Owadud Bhuiyan\"}),(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fsupport\u002F3.jpg\",alt:\"Abdullah Al Mahmud\"}),(0,a.createElement)(\"div\",{className:\"xpo-support-signal-green xpo-support-signal\"})),(0,a.createElement)(\"div\",{className:\"xpo-support-pops-text\"},\"Questions? Create an Issue!\"))),(0,a.createElement)(\"div\",{className:\"xpo-support-chat-body\"},(0,a.createElement)(\"div\",{style:{maxHeight:i?\"174px\":\"0px\",opacity:i?\"1\":\"0\",transition:\"max-height 0.3s, opacity 0.3s\"}},i&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"xpo-support-thankyou-icon\"},(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 52 52\",className:\"xpo-support-animation\"},(0,a.createElement)(\"circle\",{className:\"xpo-support-circle\",cx:\"26\",cy:\"26\",r:\"25\",fill:\"none\"}),(0,a.createElement)(\"path\",{className:\"xpo-support-check\",fill:\"none\",d:\"M14.1 27.2l7.1 7.2 16.7-16.8\"}))),(0,a.createElement)(\"div\",{className:\"xpo-support-thankyou-title\"},__(\"Thank You!\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"xpo-support-thankyou-subtitle\"},__(\"Your message has been received. We will contact you soon on your email with a response. Stay connected and check mail!\",\"ultimate-post\")))),(0,a.createElement)(\"form\",{ref:p,onSubmit:e=>{if(n)return;e.preventDefault(),o(!0);const t=new FormData(e.target);fetch(\"https:\u002F\u002Fwpxpo.com\u002Fwp-json\u002Fv2\u002Fsupport_mail\",{method:\"POST\",body:t}).then((e=>{if(!e.ok)throw new Error(\"Failed to submit ticket\");l(!0),p.current&&p.current.reset()})).catch((e=>{console.log(e)})).finally((()=>{o(!1)}))},encType:\"multipart\u002Fform-data\",style:{maxHeight:i?\"0px\":\"376px\",opacity:i?\"0\":\"1\",transition:\"max-height 0.3s, opacity 0.3s\"}},(0,a.createElement)(\"input\",{type:\"hidden\",name:\"user_name\",defaultValue:ultp_dashboard_pannel.userInfo.name}),(0,a.createElement)(\"input\",{type:\"email\",name:\"user_email\",className:\"xpo-input-support\",defaultValue:ultp_dashboard_pannel.userInfo.email,required:!0}),(0,a.createElement)(\"input\",{type:\"hidden\",name:\"subject\",value:\"Support from PostX\"}),(0,a.createElement)(\"div\",{className:\"xpo-support-title\"},__(\"Message\",\"ultimate-post\")),(0,a.createElement)(\"textarea\",{name:\"desc\",className:\"xpo-input-support\",placeholder:\"Write your message here...\"}),(0,a.createElement)(r,null),(0,a.createElement)(\"button\",{type:\"submit\",className:\"xpo-send-button\",disabled:n},n?(0,a.createElement)(a.Fragment,null,\"Sending\",(0,a.createElement)(\"div\",{className:\"xpo-support-loading\"})):(0,a.createElement)(a.Fragment,null,\"Send\",(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"21\",height:\"20\",fill:\"none\",viewBox:\"0 0 21 20\"},(0,a.createElement)(\"path\",{fill:\"var(--xpo-support-color-reverse)\",d:\"M18.4 10c0-.6-.3-1.1-.8-1.4L5 2c-.6-.3-1.2-.3-1.7 0-.6.4-.9 1.3-.7 1.9l1.2 4.8c0 .5.5.8 1 .8h7c.3 0 .6.3.6.6 0 .4-.3.6-.6.6h-7c-.5 0-1 .4-1 .9l-1.3 4.8c-.1.6 0 1.1.5 1.5l.1.2c.5.4 1.2.4 1.8.1l12.5-6.6c.6-.3 1-.9 1-1.5Z\"}))))))))}},1389:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(6509);const r=e=>{const{title:t,modalContent:n,setModalContent:r}=e;return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-modal-wrapper\",onClick:e=>{e.target?.closest(\".ultp-dashboard-modal\")||r(\"\")}},(0,a.createElement)(\"div\",{className:\"ultp-dashboard-modal\"},(0,a.createElement)(\"div\",{className:\"ultp-modal-header\"},t&&(0,a.createElement)(\"span\",{className:\"ultp-modal-title\"},t),(0,a.createElement)(\"a\",{className:\"ultp-popup-close\",onClick:()=>r(\"\")})),(0,a.createElement)(\"div\",{className:\"ultp-modal-body\"},n)))}},8949:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(619);const r=e=>{const{type:t,size:n,loop:r,unit:o,c_s:i,classes:l}=e,s=()=>{let e={};switch(t){case\"image\":case\"circle\":e={width:n?n+\"px\":\"300px\",height:n?n+\"px\":\"300px\"};break;case\"title\":e={width:`${n||\"100\"}${o||\"%\"}`};break;case\"button\":e={width:n?n+\"px\":\"90px\"};break;case\"custom_size\":e={width:`${i.size1?i.size1:\"100\"}${i.unit1?i.unit1:\"%\"}`,height:`${i.size2?i.size2:\"20\"}${i.unit2?i.unit2:\"px\"}`,borderRadius:i.br?i.br+\"px\":\"0px\"}}return e};return(0,a.createElement)(a.Fragment,null,r?(0,a.createElement)(a.Fragment,null,Array(parseInt(r)).fill(\"1\").map(((e,n)=>(0,a.createElement)(\"div\",{key:n,className:`ultp_skeleton__${t} ultp_frequency loop ${l||\"\"}`,style:s()})))):(0,a.createElement)(\"div\",{className:`ultp_skeleton__${t} ultp_frequency ${l||\"\"}`,style:s()}))}},356:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(2413);const{__}=wp.i18n,r=({delay:e,toastMessages:t,setToastMessages:n})=>{const[r,o]=(0,a.useState)(!0),[i,l]=(0,a.useState)(\"show\");return(0,a.useEffect)((()=>{const t=setTimeout((()=>{o(!1),l(\"\"),n({state:!1,status:\"\"})}),e);return()=>clearTimeout(t)}),[e]),(0,a.createElement)(\"div\",{className:\"toast\"},r&&t.status&&t.messages.length>0&&(0,a.createElement)(\"div\",{className:\"toastMessages\"},t.messages.map(((e,r)=>(0,a.createElement)(\"span\",{key:`toast_${Date.now().toString()}_${r}`},(0,a.createElement)(\"div\",{className:`toaster ${i}`},(0,a.createElement)(\"span\",null,\"error\"==t.status?(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 52 52\",className:\"animation\",stroke:\"currentColor\"},(0,a.createElement)(\"circle\",{cx:\"26\",cy:\"26\",r:\"25\",fill:\"none\",className:\"circle cross\"}),(0,a.createElement)(\"path\",{fill:\"none\",d:\"M 12,12 L 40,40 M 40,12 L 12,40\",className:\"check\"})):(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 52 52\",className:\"animation\",stroke:\"currentColor\"},(0,a.createElement)(\"circle\",{className:\"circle\",cx:\"26\",cy:\"26\",r:\"25\",fill:\"none\"}),(0,a.createElement)(\"path\",{className:\"check\",fill:\"none\",d:\"M14.1 27.2l7.1 7.2 16.7-16.8\"}))),(0,a.createElement)(\"span\",{className:\"itmCenter\"},e),(0,a.createElement)(\"span\",{className:\"itmLast\",onClick:()=>(e=>{let a=[...t.messages];a=a.filter(((t,n)=>n!==e)),n({...t,messages:a})})(r)},__(\"Close\",\"ultimate-post\"))))))))}},448:(e,t,n)=>{\"use strict\";n.d(t,{AJ:()=>o,cC:()=>l,x2:()=>r});var a=n(2030);const{__}=wp.i18n,r=(e,t,n,a)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv1\u002Fpostx_presets\",method:\"POST\",data:{type:e,key:t,data:n}}).then((r=>{r.success&&(\"set\"==e&&i(t,n),a&&a(r))}))},o=(e,t=\"\",n=!1)=>{if(\"typoStacks\"==e)return[[{type:\"sans-serif\",weight:500,family:\"Roboto\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"serif\",weight:600,family:\"Roboto Slab\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"sans-serif\",weight:600,family:\"Jost\"},{type:\"sans-serif\",weight:400,family:\"Jost\"}],[{type:\"display\",weight:500,family:\"Roboto\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"serif\",weight:700,family:\"Arvo\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"sans-serif\",weight:500,family:\"Roboto\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"sans-serif\",weight:700,family:\"Merriweather\"},{type:\"sans-serif\",weight:400,family:\"Merriweather\"}],[{type:\"sans-serifs\",weight:500,family:\"Oswald\"},{type:\"sans-serif\",weight:400,family:\"Source Sans Pro\"}],[{type:\"display\",weight:400,family:\"Abril Fatface\"},{type:\"sans-serif\",weight:400,family:\"Poppins\"}],[{type:\"serif\",weight:700,family:\"Cardo\"},{type:\"sans-serif\",weight:400,family:\"Inter\"}]];if(\"multipleTypos\"==e)return{Body_and_Others_typo:[\"body_typo\",\"paragraph_1_typo\",\"paragraph_2_typo\",\"paragraph_3_typo\"],Heading_typo:[\"heading_h1_typo\",\"heading_h2_typo\",\"heading_h3_typo\",\"heading_h4_typo\",\"heading_h5_typo\",\"heading_h6_typo\"]};if(\"presetTypoKeys\"==e)return[\"Heading_typo\",\"Body_and_Others_typo\"];if(\"colorStacks\"==e)return[[\"#f4f4ff\",\"#dddff8\",\"#B4B4D6\",\"#3323f0\",\"#4a5fff\",\"#1B1B47\",\"#545472\",\"#262657\",\"#10102e\"],[\"#ffffff\",\"#f7f4ed\",\"#D6D1B4\",\"#fab42a\",\"#f4cd4e\",\"#3B3118\",\"#6F6C53\",\"#483d1f\",\"#29230f\"],[\"#ffffff\",\"#eaf7ea\",\"#C2DBBF\",\"#3b9138\",\"#54a757\",\"#1E381A\",\"#586E56\",\"#23411f\",\"#162c11\"],[\"#fdf7ff\",\"#eadef5\",\"#C1B4D6\",\"#8749d0\",\"#995ede\",\"#301B42\",\"#635472\",\"#38204e\",\"#231133\"],[\"#fffcfc\",\"#fce5ec\",\"#D6B4BC\",\"#f01f50\",\"#ff5878\",\"#431B23\",\"#72545B\",\"#4d2029\",\"#36141b\"],[\"#ffffff\",\"#ecf3f8\",\"#B4C2D6\",\"#2890e8\",\"#6cb0f4\",\"#1D3347\",\"#4B586C\",\"#2c4358\",\"#10202b\"],[\"#f8f3ed\",\"#f2e2d0\",\"#D6C4B4\",\"#dd8336\",\"#f09f4d\",\"#3D2A1D\",\"#6E5F52\",\"#483324\",\"#2e1e11\"],[\"#ffffff\",\"#faf0f4\",\"#D6B4CF\",\"#d948a2\",\"#e56ab5\",\"#401B2E\",\"#725468\",\"#4e2239\",\"#290e1d\"],[\"#f2f7ea\",\"#e1e6c4\",\"#D2DBBF\",\"#829d46\",\"#a1c36b\",\"#30371A\",\"#5F6551\",\"#38401f\",\"#242e10\"],[\"#ffffff\",\"#e9f7f3\",\"#B5D1C7\",\"#3cbe8b\",\"#59d5a5\",\"#1C3D3F\",\"#46675E\",\"#20484b\",\"#153234\"]];if(\"presetColorKeys\"==e)return[\"Base_1_color\",\"Base_2_color\",\"Base_3_color\",\"Primary_color\",\"Secondary_color\",\"Tertiary_color\",\"Contrast_3_color\",\"Contrast_2_color\",\"Contrast_1_color\"];if(\"presetGradientKeys\"==e)return[\"Cold_Evening_gradient\",\"Purple_Division_gradient\",\"Over_Sun_gradient\",\"Morning_Salad_gradient\",\"Fabled_Sunset_gradient\"];if(\"styleCss\"==e){let e=\":root { \";return Object.keys(t).forEach(((a,r)=>{if(![\"rootCSS\",\"globalColorCSS\"].includes(a)){const r=a,o=t[a]?.hasOwnProperty(\"openColor\")?\"color\"==t[a].type?t[a].color:t[a].gradient:t[a]||n||\"\";e+=`--postx_preset_${r}: ${o}; `}})),e+=\" }\",e}if(\"typoCSS\"==e){const e=o(\"multipleTypos\");let r=\"\",i=\":root { \";const l=[\"Arial\",\"Tahoma\",\"Verdana\",\"Helvetica\",\"Times New Roman\",\"Trebuchet MS\",\"Georgia\"];return Object.keys(t).forEach(((o,s)=>{const p=t[o],c=!![...e.Body_and_Others_typo,...e.Heading_typo].includes(o);if(![\"rootCSS\",\"presetTypoCSS\"].includes(o)&&\"object\"==typeof p&&Object.keys(p).length){const e=!l.includes(p.family),t=n?ultp_dashboard_pannel:ultp_data;!((!t?.settings?.hasOwnProperty(\"disable_google_font\")||\"yes\"==t?.settings.disable_google_font)&&t?.settings?.hasOwnProperty(\"disable_google_font\"))&&e&&p.family&&!p.family.includes(\"--postx_preset\")&&!r.includes(p.family.replace(\" \",\"+\")+\":\")&&void 0!==a.Z&&(r+=\"@import url('https:\u002F\u002Ffonts.googleapis.com\u002Fcss?family=\"+p.family.replace(\" \",\"+\")+\":\"+(a.Z?.filter((e=>e.n==p.family))[0]?.v||[]).join(\",\")+\"'); \"),c||(i+=p.family?`--postx_preset_${o}_font_family: ${p.family}; `:\"\",i+=p.family?`--postx_preset_${o}_font_family_type: ${p.type||\"sans-serif\"}; `:\"\",i+=p.weight?`--postx_preset_${o}_font_weight: ${p.weight}; `:\"\",i+=p.style?`--postx_preset_${o}_font_style: ${p.style}; `:\"\",i+=p.decoration?`--postx_preset_${o}_text_decoration: ${p.decoration}; `:\"\",i+=p.transform?`--postx_preset_${o}_text_transform: ${p.transform}; `:\"\",i+=p.spacing?.lg?`--postx_preset_${o}_letter_spacing_lg: ${p.spacing.lg}${p.spacing.ulg||\"px\"}; `:\"\",i+=p.spacing?.sm?`--postx_preset_${o}_letter_spacing_sm: ${p.spacing.sm}${p.spacing.usm||\"px\"}; `:\"\",i+=p.spacing?.xs?`--postx_preset_${o}_letter_spacing_xs: ${p.spacing.xs}${p.spacing.uxs||\"px\"}; `:\"\"),i+=p.size?.lg?`--postx_preset_${o}_font_size_lg: ${p.size.lg}${p.size.ulg||\"px\"}; `:\"\",i+=p.size?.sm?`--postx_preset_${o}_font_size_sm: ${p.size.sm}${p.size.usm||\"px\"}; `:\"\",i+=p.size?.xs?`--postx_preset_${o}_font_size_xs: ${p.size.xs}${p.size.uxs||\"px\"}; `:\"\",i+=p.height?.lg?`--postx_preset_${o}_line_height_lg: ${p.height.lg}${p.height.ulg||\"px\"}; `:\"\",i+=p.height?.sm?`--postx_preset_${o}_line_height_sm: ${p.height.sm}${p.height.usm||\"px\"}; `:\"\",i+=p.height?.xs?`--postx_preset_${o}_line_height_xs: ${p.height.xs}${p.height.uxs||\"px\"}; `:\"\"}})),i+=\"}\",r+i}if(\"font_load\"==e){let e=\"\";const a=[\"Arial\",\"Tahoma\",\"Verdana\",\"Helvetica\",\"Times New Roman\",\"Trebuchet MS\",\"Georgia\"],r=n?ultp_dashboard_pannel:ultp_data,o=!((!r.settings?.hasOwnProperty(\"disable_google_font\")||\"yes\"==r.settings.disable_google_font)&&r.settings?.hasOwnProperty(\"disable_google_font\"));if(\"object\"==typeof t&&Object.keys(t).length){const n=!a.includes(t.family);o&&n&&t.family&&(e+=\"@import url('https:\u002F\u002Ffonts.googleapis.com\u002Fcss?family=\"+t.family.replace(\" \",\"+\")+\":\"+t.weight+\"'); \")}return e}if(\"font_load_all\"==e){const e=[\"Roboto\",\"Roboto Slab\",\"Jost\",\"Arvo\",\"Merriweather\",\"Oswald\",\"Abril Fatface\",\"Cardo\",\"Source Sans Pro\",\"Poppins\",\"Inter\"],t=[\"400,500\",\"600\",\"400,600\",\"700\",\"400,700\",\"500\",\"400\",\"700\",\"400\",\"400\",\"400\"];let a=\"\";const r=[\"Arial\",\"Tahoma\",\"Verdana\",\"Helvetica\",\"Times New Roman\",\"Trebuchet MS\",\"Georgia\"],o=n?ultp_dashboard_pannel:ultp_data,i=!((!o.settings?.hasOwnProperty(\"disable_google_font\")||\"yes\"==o.settings.disable_google_font)&&o.settings?.hasOwnProperty(\"disable_google_font\"));return e.forEach(((e,n)=>{const o=!r.includes(e);i&&o&&e&&(a+=\"@import url('https:\u002F\u002Ffonts.googleapis.com\u002Fcss?family=\"+e.replace(\" \",\"+\")+\":\"+t[n]+\"'); \")})),a}if(\"bgCSS\"==e){let e={};const n=\"object\"==typeof t?{...t}:{};if(\"color\"==n.type)e.backgroundColor=n.color;else if(\"gradient\"==n.type&&n.gradient){let t=n.gradient;\"object\"==typeof n.gradient&&(t=\"linear\"==n.gradient.type?\"linear-gradient(\"+n.gradient.direction+\"deg, \"+n.gradient.color1+\" \"+n.gradient.start+\"%,\"+n.gradient.color2+\" \"+n.gradient.stop+\"%);\":\"radial-gradient( circle at \"+n.gradient.radial+\" , \"+n.gradient.color1+\" \"+n.gradient.start+\"%,\"+n.gradient.color2+\" \"+n.gradient.stop+\"%);\"),e.backgroundImage=t}else if(\"image\"==n.type){var r;(n.fallbackColor||n.color)&&(e.backgroundColor=null!==(r=n.fallbackColor)&&void 0!==r?r:n.color),n.image&&(e.backgroundImage='url(\"'+n.image+'\")',n.position&&(e.backgroundPositionX=100*n.position.x+\"%\",e.backgroundPositionY=100*n.position.y+\"%\"),n.attachment&&(e.backgroundAttachments=n.attachment),n.repeat&&(e.backgroundRepeat=n.repeat),n.size&&(e.backgroundSize=n.size))}else\"video\"==n.type&&n.fallback&&(e.backgroundImage='url(\"'+n.fallback+'\")',e.backgroundSize=\"cover\",e.backgroundPosition=\"50% 50%\");return e}if(\"globalCSS\"==e){let e=`:root {\\n            --preset-color1: ${t.presetColor1||\"#037fff\"}\\n            --preset-color2: ${t.presetColor2||\"#026fe0\"}\\n            --preset-color3: ${t.presetColor3||\"#071323\"}\\n            --preset-color4: ${t.presetColor4||\"#132133\"}\\n            --preset-color5: ${t.presetColor5||\"#34495e\"}\\n            --preset-color6: ${t.presetColor6||\"#787676\"}\\n            --preset-color7: ${t.presetColor7||\"#f0f2f3\"}\\n            --preset-color8: ${t.presetColor8||\"#f8f9fa\"}\\n            --preset-color9: ${t.presetColor9||\"#ffffff\"}\\n        }`;return t.enablePresetColorCSS&&(e+=\"\\n            html body.postx-admin-page .editor-styles-wrapper,\\n            html body.postx-admin-page .editor-styles-wrapper p,\\n            html body.postx-page,\\n            html body.postx-page p,\\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\\n            { \\n                color: var(--postx_preset_Contrast_2_color); \\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\\n            {\\n                color: var(--postx_preset_Contrast_1_color);\\n            }\\n            html.colibri-wp-theme body.postx-page h1,\\n            html.colibri-wp-theme body.postx-page h2,\\n            html.colibri-wp-theme body.postx-page h3,\\n            html.colibri-wp-theme body.postx-page h4,\\n            html.colibri-wp-theme body.postx-page h5,\\n            html.colibri-wp-theme body.postx-page h6 \\n            {\\n                color: var(--postx_preset_Contrast_1_color);\\n            }\\n\\n            body.block-editor-iframe__body h1,\\n            body.block-editor-iframe__body h2,\\n            body.block-editor-iframe__body h3,\\n            body.block-editor-iframe__body h4,\\n            body.block-editor-iframe__body h5,\\n            body.block-editor-iframe__body h6\\n            { \\n                color: var(--postx_preset_Contrast_1_color);\\n            }\\n            \",t.gbbodyBackground.openColor&&(e+=`\\n                    html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\\n                    html body.postx-admin-page.block-editor-page.post-content-style-boxed .editor-styles-wrapper::before,\\n                    html.colibri-wp-theme body.postx-page,\\n                    body.block-editor-iframe__body\\n                    { ${(e=>{let t=e.clip?\"-webkit-background-clip: text; -webkit-text-fill-color: transparent;\":\"\";if(\"color\"==e.type)t+=e.color?\"background-color: \"+e.color+\";\":\"\";else if(\"gradient\"==e.type&&e.gradient)\"object\"==typeof e.gradient?\"linear\"==e.gradient.type?t+=\"background-image : linear-gradient(\"+e.gradient.direction+\"deg, \"+e.gradient.color1+\" \"+e.gradient.start+\"%,\"+e.gradient.color2+\" \"+e.gradient.stop+\"%);\":t+=\"background-image : radial-gradient( circle at \"+e.gradient.radial+\" , \"+e.gradient.color1+\" \"+e.gradient.start+\"%,\"+e.gradient.color2+\" \"+e.gradient.stop+\"%);\":t+=\"background-image:\"+e.gradient+\";\";else if(\"image\"==e.type){var n;(e.fallbackColor||e.color)&&(t+=\"background-color:\"+(null!==(n=e.fallbackColor)&&void 0!==n?n:e.color)+\";\"),e.image&&(t+='background-image: url(\"'+e.image+'\");'+(e.position?\"background-position-x:\"+100*e.position.x+\"%;background-position-y:\"+100*e.position.y+\"%;\":\"\")+(e.attachment?\"background-attachment:\"+e.attachment+\";\":\"\")+(e.repeat?\"background-repeat:\"+e.repeat+\";\":\"\")+(e.size?\"background-size:\"+e.size+\";\":\"\"))}return t})(t.gbbodyBackground)} }\\n                `)),t.enablePresetTypoCSS&&(e+=`\\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\\n            { \\n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \\n                font-weight: var(--postx_preset_Heading_typo_font_weight);\\n                font-style: var(--postx_preset_Heading_typo_font_style);\\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\\n            }\\n            html.colibri-wp-theme body.postx-page h1,\\n            html.colibri-wp-theme body.postx-page h2,\\n            html.colibri-wp-theme body.postx-page h3,\\n            html.colibri-wp-theme body.postx-page h4,\\n            html.colibri-wp-theme body.postx-page h5,\\n            html.colibri-wp-theme body.postx-page h6\\n            { \\n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \\n                font-weight: var(--postx_preset_Heading_typo_font_weight);\\n                font-style: var(--postx_preset_Heading_typo_font_style);\\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\\n            }\\n            body.block-editor-iframe__body h1,\\n            body.block-editor-iframe__body h2,\\n            body.block-editor-iframe__body h3,\\n            body.block-editor-iframe__body h4,\\n            body.block-editor-iframe__body h5,\\n            body.block-editor-iframe__body h6\\n            { \\n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \\n                font-weight: var(--postx_preset_Heading_typo_font_weight);\\n                font-style: var(--postx_preset_Heading_typo_font_style);\\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n            html.colibri-wp-theme body.postx-page h1,\\n            body.block-editor-iframe__body h1\\n            { \\n                font-size: var(--postx_preset_heading_h1_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h1_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n            html.colibri-wp-theme body.postx-page h2,\\n            body.block-editor-iframe__body h2\\n            { \\n                font-size: var(--postx_preset_heading_h2_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h2_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n            html.colibri-wp-theme body.postx-page h3,\\n            body.block-editor-iframe__body h3\\n            { \\n                font-size: var(--postx_preset_heading_h3_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h3_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n            html.colibri-wp-theme body.postx-page h4,\\n            body.block-editor-iframe__body h4\\n            { \\n                font-size: var(--postx_preset_heading_h4_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h4_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n            html.colibri-wp-theme body.postx-page h5,\\n            body.block-editor-iframe__body h5\\n            { \\n                font-size: var(--postx_preset_heading_h5_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h5_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\\n            html.colibri-wp-theme body.postx-page h6,\\n            body.block-editor-iframe__body h6\\n            { \\n                font-size: var(--postx_preset_heading_h6_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h6_typo_line_height_lg, normal) !important;\\n            }\\n\\n            @media (max-width: ${t.breakpointSm||991}px) {\\n                html body.postx-admin-page .editor-styles-wrapper h1 , html body.postx-page h1,\\n                html body.postx-admin-page .editor-styles-wrapper h2 , html body.postx-page h2,\\n                html body.postx-admin-page .editor-styles-wrapper h3 , html body.postx-page h3,\\n                html body.postx-admin-page .editor-styles-wrapper h4 , html body.postx-page h4,\\n                html body.postx-admin-page .editor-styles-wrapper h5 , html body.postx-page h5,\\n                html body.postx-admin-page .editor-styles-wrapper h6 , html body.postx-page h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\\n                }\\n                html.colibri-wp-theme body.postx-page h1,\\n                html.colibri-wp-theme body.postx-page h2,\\n                html.colibri-wp-theme body.postx-page h3,\\n                html.colibri-wp-theme body.postx-page h4,\\n                html.colibri-wp-theme body.postx-page h5,\\n                html.colibri-wp-theme body.postx-page h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\\n                }\\n                body.block-editor-iframe__body h1,\\n                body.block-editor-iframe__body h2,\\n                body.block-editor-iframe__body h3,\\n                body.block-editor-iframe__body h4,\\n                body.block-editor-iframe__body h5,\\n                body.block-editor-iframe__body h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\\n                }\\n\\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n                html.colibri-wp-theme body.postx-page h1,\\n                body.block-editor-iframe__body h1\\n                {\\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n                html.colibri-wp-theme body.postx-page h2,\\n                body.block-editor-iframe__body h2\\n                {\\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n                html.colibri-wp-theme body.postx-page h3,\\n                body.block-editor-iframe__body h3\\n                {\\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n                html.colibri-wp-theme body.postx-page h4,\\n                body.block-editor-iframe__body h4\\n                {\\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n                html.colibri-wp-theme body.postx-page h5,\\n                body.block-editor-iframe__body h5\\n                {\\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\\n                html.colibri-wp-theme body.postx-page h6,\\n                body.block-editor-iframe__body h6\\n                {\\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_sm, normal) !important;\\n                }\\n            }\\n\\n            @media (max-width: ${t.breakpointXs||767}px) {\\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\\n                }\\n                html.colibri-wp-theme body.postx-page h1,\\n                html.colibri-wp-theme body.postx-page h2,\\n                html.colibri-wp-theme body.postx-page h3,\\n                html.colibri-wp-theme body.postx-page h4,\\n                html.colibri-wp-theme body.postx-page h5,\\n                html.colibri-wp-theme body.postx-page h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\\n                }\\n                body.block-editor-iframe__body h1,\\n                body.block-editor-iframe__body h2,\\n                body.block-editor-iframe__body h3,\\n                body.block-editor-iframe__body h4,\\n                body.block-editor-iframe__body h5,\\n                body.block-editor-iframe__body h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n                html.colibri-wp-theme body.postx-page h1,\\n                body.block-editor-iframe__body h1\\n                {\\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n                html.colibri-wp-theme body.postx-page h2,\\n                body.block-editor-iframe__body h2\\n                {\\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n                html.colibri-wp-theme body.postx-page h3,\\n                body.block-editor-iframe__body h3\\n                {\\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n                html.colibri-wp-theme body.postx-page h4,\\n                body.block-editor-iframe__body h4\\n                {\\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n                html.colibri-wp-theme body.postx-page h5,\\n                body.block-editor-iframe__body h5\\n                {\\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\\n                html.colibri-wp-theme body.postx-page h6,\\n                body.block-editor-iframe__body h6\\n                {\\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_xs, normal) !important;\\n                }\\n            }\\n            `),t.enablePresetTypoCSS&&(e+=`\\n            html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\\n            html body.postx-admin-page .editor-styles-wrapper p, html body.postx-page p,\\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\\n            { \\n                font-family: var(--postx_preset_Body_and_Others_typo_font_family),var(--postx_preset_Body_and_Others_typo_font_family_type); \\n                font-weight: var(--postx_preset_Body_and_Others_typo_font_weight);\\n                font-style: var(--postx_preset_Body_and_Others_typo_font_style);\\n                text-transform: var(--postx_preset_Body_and_Others_typo_text_transform);\\n                text-decoration: var(--postx_preset_Body_and_Others_typo_text_decoration);\\n                letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_lg, normal);\\n                font-size: var(--postx_preset_body_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_body_typo_line_height_lg, normal) !important;\\n            }\\n            @media (max-width: ${t.breakpointSm||991}px) {\\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\\n                {\\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_sm, normal);\\n                    font-size: var(--postx_preset_body_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_body_typo_line_height_sm, normal) !important;\\n                }\\n            }\\n            @media (max-width: ${t.breakpointXs||767}px) {\\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\\n                {\\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_xs, normal);\\n                    font-size: var(--postx_preset_body_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_body_typo_line_height_xs, normal) !important;\\n                }\\n            }\\n            `),e}},i=(e,t)=>{localStorage.setItem(e,JSON.stringify(t))},l=(e,t={})=>{try{return JSON.parse(e)}catch(e){return t}}},2402:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(4201);const r=({searchQuery:e,setSearchQuery:t,setTemplateModule:n,changeStates:r})=>(0,a.createElement)(\"div\",{className:\"ultp-design-search-wrapper\"},(0,a.createElement)(\"input\",{type:\"search\",id:\"ultp-design-search-form\",className:\"ultp-design-search-input\",placeholder:\"Search for...\",value:e,onChange:e=>{t&&t(e.target.value),n&&n(\"\"),r&&r(\"search\",e.target.value)}}))},3100:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(2044);const r=(e,t,n,r)=>(0,a.Z)({url:e||null,utmKey:t||null,affiliate:n||null,hash:r||null})},4190:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(2158);const r=e=>{let t;const[n,r]=(0,a.useState)(!1);return(0,a.createElement)(\"div\",{className:`ultp-tooltip-wrapper ${e.extraClass}`,onMouseEnter:()=>{t=setTimeout((()=>{r(!0)}),e.delay||400)},onMouseLeave:()=>{clearInterval(t),r(!1)}},e.children,n&&(0,a.createElement)(\"div\",{className:`tooltip-content ${e.direction||\"top\"}`},e.content))}},2030:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=[{n:\"ABeeZee\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Abel\",v:[400],f:\"sans-serif\"},{n:\"Abhaya Libre\",v:[400,500,600,700,800],f:\"serif\"},{n:\"Abril Fatface\",v:[400],f:\"display\"},{n:\"Abyssinica SIL\",v:[400],f:\"serif\"},{n:\"Aclonica\",v:[400],f:\"sans-serif\"},{n:\"Acme\",v:[400],f:\"sans-serif\"},{n:\"Actor\",v:[400],f:\"sans-serif\"},{n:\"Adamina\",v:[400],f:\"serif\"},{n:\"Advent Pro\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Aguafina Script\",v:[400],f:\"handwriting\"},{n:\"Akaya Kanadaka\",v:[400],f:\"display\"},{n:\"Akaya Telivigala\",v:[400],f:\"display\"},{n:\"Akronim\",v:[400],f:\"display\"},{n:\"Akshar\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Aladin\",v:[400],f:\"handwriting\"},{n:\"Alata\",v:[400],f:\"sans-serif\"},{n:\"Alatsi\",v:[400],f:\"sans-serif\"},{n:\"Albert Sans\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Aldrich\",v:[400],f:\"sans-serif\"},{n:\"Alef\",v:[400,700],f:\"sans-serif\"},{n:\"Alexandria\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Alegreya\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Alegreya SC\",v:[400,\"400i\",500,\"500i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"serif\"},{n:\"Alegreya Sans\",v:[\"100\",\"100i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Alegreya Sans SC\",v:[\"100\",\"100i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Aleo\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Alex Brush\",v:[400],f:\"handwriting\"},{n:\"Alfa Slab One\",v:[400],f:\"display\"},{n:\"Alice\",v:[400],f:\"serif\"},{n:\"Alike\",v:[400],f:\"serif\"},{n:\"Alike Angular\",v:[400],f:\"serif\"},{n:\"Allan\",v:[400,700],f:\"display\"},{n:\"Allerta\",v:[400],f:\"sans-serif\"},{n:\"Allerta Stencil\",v:[400],f:\"sans-serif\"},{n:\"Allison\",v:[400],f:\"handwriting\"},{n:\"Allura\",v:[400],f:\"handwriting\"},{n:\"Almarai\",v:[\"300\",400,700,800],f:\"sans-serif\"},{n:\"Almendra\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Almendra Display\",v:[400],f:\"display\"},{n:\"Almendra SC\",v:[400],f:\"serif\"},{n:\"Alumni Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Alumni Sans Inline One\",v:[400,\"400i\"],f:\"display\"},{n:\"Amarante\",v:[400],f:\"display\"},{n:\"Amaranth\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Amatic SC\",v:[400,700],f:\"handwriting\"},{n:\"Amethysta\",v:[400],f:\"serif\"},{n:\"Amiko\",v:[400,600,700],f:\"sans-serif\"},{n:\"Amiri\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Amita\",v:[400,700],f:\"handwriting\"},{n:\"Anaheim\",v:[400],f:\"sans-serif\"},{n:\"Andada Pro\",v:[400,500,600,700,800,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Andika\",v:[400],f:\"sans-serif\"},{n:\"Anek Bangla\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Devanagari\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Gujarati\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Gurmukhi\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Kannada\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Latin\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Malayalam\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Odia\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Tamil\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Telugu\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Angkor\",v:[400],f:\"display\"},{n:\"Annie Use Your Telescope\",v:[400],f:\"handwriting\"},{n:\"Anonymous Pro\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Antic\",v:[400],f:\"sans-serif\"},{n:\"Antic Didone\",v:[400],f:\"serif\"},{n:\"Antic Slab\",v:[400],f:\"serif\"},{n:\"Anton\",v:[400],f:\"sans-serif\"},{n:\"Antonio\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Anybody\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"display\"},{n:\"Arapey\",v:[400,\"400i\"],f:\"serif\"},{n:\"Arbutus\",v:[400],f:\"display\"},{n:\"Arbutus Slab\",v:[400],f:\"serif\"},{n:\"Architects Daughter\",v:[400],f:\"handwriting\"},{n:\"Archivo\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Archivo Black\",v:[400],f:\"sans-serif\"},{n:\"Archivo Narrow\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Are You Serious\",v:[400],f:\"handwriting\"},{n:\"Aref Ruqaa\",v:[400,700],f:\"serif\"},{n:\"Arimo\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Arizonia\",v:[400],f:\"handwriting\"},{n:\"Armata\",v:[400],f:\"sans-serif\"},{n:\"Arsenal\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Artifika\",v:[400],f:\"serif\"},{n:\"Arvo\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Arya\",v:[400,700],f:\"sans-serif\"},{n:\"Asap\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Asap Condensed\",v:[200,\"200i\",300,\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Asar\",v:[400],f:\"serif\"},{n:\"Asset\",v:[400],f:\"display\"},{n:\"Assistant\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Astloch\",v:[400,700],f:\"display\"},{n:\"Asul\",v:[400,700],f:\"sans-serif\"},{n:\"Athiti\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Atkinson Hyperlegible\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Atma\",v:[\"300\",400,500,600,700],f:\"display\"},{n:\"Atomic Age\",v:[400],f:\"display\"},{n:\"Aubrey\",v:[400],f:\"display\"},{n:\"Audiowide\",v:[400],f:\"display\"},{n:\"Autour One\",v:[400],f:\"display\"},{n:\"Average\",v:[400],f:\"serif\"},{n:\"Average Sans\",v:[400],f:\"sans-serif\"},{n:\"Averia Gruesa Libre\",v:[400],f:\"display\"},{n:\"Averia Libre\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Averia Sans Libre\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Averia Serif Libre\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Azeret Mono\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"monospace\"},{n:\"Aboreto\",v:[400],f:\"display\"},{n:\"Abyssinica SIL\",v:[400],f:\"serif\"},{n:\"Albert Sans\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Alexandria\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Alkalami\",v:[400],f:\"serif\"},{n:\"Alkatra\",v:[400,500,600,700],f:\"display\"},{n:\"Alumni Sans Collegiate One\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Alumni Sans Pinstripe\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Amiri Quran\",v:[400],f:\"serif\"},{n:\"Anuphan\",v:[100,200,300,400,500,600,700],f:\"sans-serif\"},{n:\"Aoboshi One\",v:[400],f:\"serif\"},{n:\"Aref Ruqaa Ink\",v:[400,700],f:\"serif\"},{n:\"Arima\",v:[100,200,300,400,500,600,700],f:\"display\"},{n:\"B612\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"B612 Mono\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"BIZ UDGothic\",v:[400,700],f:\"sans-serif\"},{n:\"BIZ UDMincho\",v:[400,700],f:\"serif\"},{n:\"BIZ UDPGothic\",v:[400,700],f:\"sans-serif\"},{n:\"BIZ UDPMincho\",v:[400,700],f:\"serif\"},{n:\"Babylonica\",v:[400],f:\"handwriting\"},{n:\"Bad Script\",v:[400],f:\"handwriting\"},{n:\"Bahiana\",v:[400],f:\"display\"},{n:\"Bahianita\",v:[400],f:\"display\"},{n:\"Bai Jamjuree\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Bakbak One\",v:[400],f:\"display\"},{n:\"Ballet\",v:[400],f:\"handwriting\"},{n:\"Baloo 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Bhai 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Bhaijaan 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Bhaina 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Chettan 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Da 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Paaji 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Tamma 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Tammudu 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Thambi 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Balsamiq Sans\",v:[400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Balthazar\",v:[400],f:\"serif\"},{n:\"Bangers\",v:[400],f:\"display\"},{n:\"Barlow\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Barlow Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Barlow Semi Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Barriecito\",v:[400],f:\"display\"},{n:\"Barrio\",v:[400],f:\"display\"},{n:\"Basic\",v:[400],f:\"sans-serif\"},{n:\"Baskervville\",v:[400,\"400i\"],f:\"serif\"},{n:\"Battambang\",v:[\"100\",\"300\",400,700,900],f:\"display\"},{n:\"Baumans\",v:[400],f:\"display\"},{n:\"Bayon\",v:[400],f:\"sans-serif\"},{n:\"Be Vietnam Pro\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Beau Rivage\",v:[400],f:\"handwriting\"},{n:\"Bebas Neue\",v:[400],f:\"sans-serif\"},{n:\"Belgrano\",v:[400],f:\"serif\"},{n:\"Bellefair\",v:[400],f:\"serif\"},{n:\"Belleza\",v:[400],f:\"sans-serif\"},{n:\"Bellota\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Bellota Text\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"BenchNine\",v:[\"300\",400,700],f:\"sans-serif\"},{n:\"Benne\",v:[400],f:\"serif\"},{n:\"Bentham\",v:[400],f:\"serif\"},{n:\"Berkshire Swash\",v:[400],f:\"handwriting\"},{n:\"Besley\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Beth Ellen\",v:[400],f:\"handwriting\"},{n:\"Bevan\",v:[400,\"400i\"],f:\"display\"},{n:\"BhuTuka Expanded One\",v:[400],f:\"display\"},{n:\"Big Shoulders Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Inline Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Inline Text\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Stencil Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Stencil Text\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Text\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Bigelow Rules\",v:[400],f:\"display\"},{n:\"Bigshot One\",v:[400],f:\"display\"},{n:\"Bilbo\",v:[400],f:\"handwriting\"},{n:\"Bilbo Swash Caps\",v:[400],f:\"handwriting\"},{n:\"BioRhyme\",v:[\"200\",\"300\",400,700,800],f:\"serif\"},{n:\"BioRhyme Expanded\",v:[\"200\",\"300\",400,700,800],f:\"serif\"},{n:\"Birthstone\",v:[400],f:\"handwriting\"},{n:\"Birthstone Bounce\",v:[400,500],f:\"handwriting\"},{n:\"Biryani\",v:[\"200\",\"300\",400,600,700,800,900],f:\"sans-serif\"},{n:\"Bitter\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Black And White Picture\",v:[400],f:\"sans-serif\"},{n:\"Black Han Sans\",v:[400],f:\"sans-serif\"},{n:\"Black Ops One\",v:[400],f:\"display\"},{n:\"Blinker\",v:[\"100\",\"200\",\"300\",400,600,700,800,900],f:\"sans-serif\"},{n:\"Bodoni Moda\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Bokor\",v:[400],f:\"display\"},{n:\"Bona Nova\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Bonbon\",v:[400],f:\"handwriting\"},{n:\"Bonheur Royale\",v:[400],f:\"handwriting\"},{n:\"Boogaloo\",v:[400],f:\"display\"},{n:\"Bowlby One\",v:[400],f:\"display\"},{n:\"Bowlby One SC\",v:[400],f:\"display\"},{n:\"Brawler\",v:[400,700],f:\"serif\"},{n:\"Bree Serif\",v:[400],f:\"serif\"},{n:\"Brygada 1918\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Bubblegum Sans\",v:[400],f:\"display\"},{n:\"Bubbler One\",v:[400],f:\"sans-serif\"},{n:\"Buda\",v:[\"300\"],f:\"display\"},{n:\"Buenard\",v:[400,700],f:\"serif\"},{n:\"Bungee\",v:[400],f:\"display\"},{n:\"Bungee Hairline\",v:[400],f:\"display\"},{n:\"Bungee Inline\",v:[400],f:\"display\"},{n:\"Bungee Outline\",v:[400],f:\"display\"},{n:\"Bungee Shade\",v:[400],f:\"display\"},{n:\"Butcherman\",v:[400],f:\"display\"},{n:\"Butterfly Kids\",v:[400],f:\"handwriting\"},{n:\"Blaka\",v:[400],f:\"display\"},{n:\"Blaka Hollow\",v:[400],f:\"display\"},{n:\"Blaka Ink\",v:[400],f:\"display\"},{n:\"Braah One\",v:[400],f:\"sans-serif\"},{n:\"Bruno Ace\",v:[400],f:\"display\"},{n:\"Bruno Ace SC\",v:[400],f:\"display\"},{n:\"Bungee Spice\",v:[400],f:\"display\"},{n:\"Bungee Spice\",v:[400],f:\"display\"},{n:\"Cabin\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Cabin Condensed\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Cabin Sketch\",v:[400,700],f:\"display\"},{n:\"Caesar Dressing\",v:[400],f:\"display\"},{n:\"Cagliostro\",v:[400],f:\"sans-serif\"},{n:\"Cairo\",v:[\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Caladea\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Calistoga\",v:[400],f:\"display\"},{n:\"Calligraffitti\",v:[400],f:\"handwriting\"},{n:\"Cambay\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Cambo\",v:[400],f:\"serif\"},{n:\"Candal\",v:[400],f:\"sans-serif\"},{n:\"Cantarell\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Cantata One\",v:[400],f:\"serif\"},{n:\"Cantora One\",v:[400],f:\"sans-serif\"},{n:\"Capriola\",v:[400],f:\"sans-serif\"},{n:\"Caramel\",v:[400],f:\"handwriting\"},{n:\"Carattere\",v:[400],f:\"handwriting\"},{n:\"Cardo\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Carme\",v:[400],f:\"sans-serif\"},{n:\"Carrois Gothic\",v:[400],f:\"sans-serif\"},{n:\"Carrois Gothic SC\",v:[400],f:\"sans-serif\"},{n:\"Carter One\",v:[400],f:\"display\"},{n:\"Castoro\",v:[400,\"400i\"],f:\"serif\"},{n:\"Catamaran\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Caudex\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Caveat\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Caveat Brush\",v:[400],f:\"handwriting\"},{n:\"Cedarville Cursive\",v:[400],f:\"handwriting\"},{n:\"Ceviche One\",v:[400],f:\"display\"},{n:\"Chakra Petch\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Changa\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Changa One\",v:[400,\"400i\"],f:\"display\"},{n:\"Chango\",v:[400],f:\"display\"},{n:\"Charm\",v:[400,700],f:\"handwriting\"},{n:\"Charmonman\",v:[400,700],f:\"handwriting\"},{n:\"Chathura\",v:[\"100\",\"300\",400,700,800],f:\"sans-serif\"},{n:\"Chau Philomene One\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Chela One\",v:[400],f:\"display\"},{n:\"Chelsea Market\",v:[400],f:\"display\"},{n:\"Chenla\",v:[400],f:\"display\"},{n:\"Cherish\",v:[400],f:\"handwriting\"},{n:\"Cherry Cream Soda\",v:[400],f:\"display\"},{n:\"Cherry Swash\",v:[400,700],f:\"display\"},{n:\"Chewy\",v:[400],f:\"display\"},{n:\"Chicle\",v:[400],f:\"display\"},{n:\"Chilanka\",v:[400],f:\"handwriting\"},{n:\"Chivo\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Chonburi\",v:[400],f:\"display\"},{n:\"Cinzel\",v:[400,500,600,700,800,900],f:\"serif\"},{n:\"Cinzel Decorative\",v:[400,700,900],f:\"display\"},{n:\"Clicker Script\",v:[400],f:\"handwriting\"},{n:\"Coda\",v:[400,800],f:\"display\"},{n:\"Coda Caption\",v:[800],f:\"sans-serif\"},{n:\"Codystar\",v:[\"300\",400],f:\"display\"},{n:\"Coiny\",v:[400],f:\"display\"},{n:\"Combo\",v:[400],f:\"display\"},{n:\"Comfortaa\",v:[\"300\",400,500,600,700],f:\"display\"},{n:\"Comforter\",v:[400],f:\"handwriting\"},{n:\"Comforter Brush\",v:[400],f:\"handwriting\"},{n:\"Comic Neue\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"handwriting\"},{n:\"Coming Soon\",v:[400],f:\"handwriting\"},{n:\"Commissioner\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Concert One\",v:[400],f:\"display\"},{n:\"Condiment\",v:[400],f:\"handwriting\"},{n:\"Content\",v:[400,700],f:\"display\"},{n:\"Contrail One\",v:[400],f:\"display\"},{n:\"Convergence\",v:[400],f:\"sans-serif\"},{n:\"Cookie\",v:[400],f:\"handwriting\"},{n:\"Copse\",v:[400],f:\"serif\"},{n:\"Corben\",v:[400,700],f:\"display\"},{n:\"Corinthia\",v:[400,700],f:\"handwriting\"},{n:\"Cormorant\",v:[300,400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Cormorant Garamond\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"Cormorant Infant\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"Cormorant SC\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Cormorant Unicase\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Cormorant Upright\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Courgette\",v:[400],f:\"handwriting\"},{n:\"Courier Prime\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Cousine\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Coustard\",v:[400,900],f:\"serif\"},{n:\"Covered By Your Grace\",v:[400],f:\"handwriting\"},{n:\"Crafty Girls\",v:[400],f:\"handwriting\"},{n:\"Creepster\",v:[400],f:\"display\"},{n:\"Crete Round\",v:[400,\"400i\"],f:\"serif\"},{n:\"Crimson Pro\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Croissant One\",v:[400],f:\"display\"},{n:\"Crushed\",v:[400],f:\"display\"},{n:\"Cuprum\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Cute Font\",v:[400],f:\"display\"},{n:\"Cutive\",v:[400],f:\"serif\"},{n:\"Cutive Mono\",v:[400],f:\"monospace\"},{n:\"Cairo Play\",v:[200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Carlito\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Castoro Titling\",v:[400],f:\"display\"},{n:\"Charis SIL\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Cherry Bomb One\",v:[400],f:\"display\"},{n:\"Chivo Mono\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"monospace\"},{n:\"Chokokutai\",v:[400],f:\"display\"},{n:\"Climate Crisis\",v:[400],f:\"display\"},{n:\"Comme\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Crimson Text\",v:[400,\"400i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"DM Mono\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\"],f:\"monospace\"},{n:\"DM Sans\",v:[400,\"400i\",500,\"500i\",700,\"700i\"],f:\"sans-serif\"},{n:\"DM Serif Display\",v:[400,\"400i\"],f:\"serif\"},{n:\"DM Serif Text\",v:[400,\"400i\"],f:\"serif\"},{n:\"Damion\",v:[400],f:\"handwriting\"},{n:\"Dancing Script\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Dangrek\",v:[400],f:\"display\"},{n:\"Darker Grotesque\",v:[\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"David Libre\",v:[400,500,700],f:\"serif\"},{n:\"Dawning of a New Day\",v:[400],f:\"handwriting\"},{n:\"Days One\",v:[400],f:\"sans-serif\"},{n:\"Dekko\",v:[400],f:\"handwriting\"},{n:\"Dela Gothic One\",v:[400],f:\"display\"},{n:\"Delius\",v:[400],f:\"handwriting\"},{n:\"Delius Swash Caps\",v:[400],f:\"handwriting\"},{n:\"Delius Unicase\",v:[400,700],f:\"handwriting\"},{n:\"Della Respira\",v:[400],f:\"serif\"},{n:\"Denk One\",v:[400],f:\"sans-serif\"},{n:\"Devonshire\",v:[400],f:\"handwriting\"},{n:\"Dhurjati\",v:[400],f:\"sans-serif\"},{n:\"Didact Gothic\",v:[400],f:\"sans-serif\"},{n:\"Diplomata\",v:[400],f:\"display\"},{n:\"Diplomata SC\",v:[400],f:\"display\"},{n:\"Do Hyeon\",v:[400],f:\"sans-serif\"},{n:\"Dokdo\",v:[400],f:\"handwriting\"},{n:\"Domine\",v:[400,500,600,700],f:\"serif\"},{n:\"Donegal One\",v:[400],f:\"serif\"},{n:\"Dongle\",v:[\"300\",400,700],f:\"sans-serif\"},{n:\"Doppio One\",v:[400],f:\"sans-serif\"},{n:\"Dorsa\",v:[400],f:\"sans-serif\"},{n:\"Dosis\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"DotGothic16\",v:[400],f:\"sans-serif\"},{n:\"Dr Sugiyama\",v:[400],f:\"handwriting\"},{n:\"Duru Sans\",v:[400],f:\"sans-serif\"},{n:\"Dynalight\",v:[400],f:\"display\"},{n:\"Darumadrop One\",v:[400],f:\"display\"},{n:\"Delicious Handrawn\",v:[400],f:\"handwriting\"},{n:\"DynaPuff\",v:[400,500,600,700],f:\"display\"},{n:\"Edu NSW ACT Foundation\",v:[400,500,600,700],f:\"handwriting\"},{n:\"EB Garamond\",v:[400,500,600,700,800,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Eagle Lake\",v:[400],f:\"handwriting\"},{n:\"East Sea Dokdo\",v:[400],f:\"handwriting\"},{n:\"Eater\",v:[400],f:\"display\"},{n:\"Economica\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Eczar\",v:[400,500,600,700,800],f:\"serif\"},{n:\"El Messiri\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Electrolize\",v:[400],f:\"sans-serif\"},{n:\"Elsie\",v:[400,900],f:\"display\"},{n:\"Elsie Swash Caps\",v:[400,900],f:\"display\"},{n:\"Emblema One\",v:[400],f:\"display\"},{n:\"Emilys Candy\",v:[400],f:\"display\"},{n:\"Encode Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans Expanded\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans SC\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans Semi Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans Semi Expanded\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Engagement\",v:[400],f:\"handwriting\"},{n:\"Englebert\",v:[400],f:\"sans-serif\"},{n:\"Enriqueta\",v:[400,500,600,700],f:\"serif\"},{n:\"Ephesis\",v:[400],f:\"handwriting\"},{n:\"Epilogue\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Erica One\",v:[400],f:\"display\"},{n:\"Esteban\",v:[400],f:\"serif\"},{n:\"Estonia\",v:[400],f:\"handwriting\"},{n:\"Euphoria Script\",v:[400],f:\"handwriting\"},{n:\"Ewert\",v:[400],f:\"display\"},{n:\"Exo\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Exo 2\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Expletus Sans\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"display\"},{n:\"Explora\",v:[400],f:\"handwriting\"},{n:\"Edu QLD Beginner\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Edu SA Beginner\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Edu TAS Beginner\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Edu VIC WA NT Beginner\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Fahkwang\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Familjen Grotesk\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Fanwood Text\",v:[400,\"400i\"],f:\"serif\"},{n:\"Farro\",v:[\"300\",400,500,700],f:\"sans-serif\"},{n:\"Farsan\",v:[400],f:\"display\"},{n:\"Fascinate\",v:[400],f:\"display\"},{n:\"Fascinate Inline\",v:[400],f:\"display\"},{n:\"Faster One\",v:[400],f:\"display\"},{n:\"Fasthand\",v:[400],f:\"display\"},{n:\"Fauna One\",v:[400],f:\"serif\"},{n:\"Faustina\",v:[\"300\",400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Federant\",v:[400],f:\"display\"},{n:\"Federo\",v:[400],f:\"sans-serif\"},{n:\"Felipa\",v:[400],f:\"handwriting\"},{n:\"Fenix\",v:[400],f:\"serif\"},{n:\"Festive\",v:[400],f:\"handwriting\"},{n:\"Finger Paint\",v:[400],f:\"display\"},{n:\"Fira Code\",v:[\"300\",400,500,600,700],f:\"monospace\"},{n:\"Fira Mono\",v:[400,500,700],f:\"monospace\"},{n:\"Fira Sans\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Fira Sans Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Fira Sans Extra Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Fjalla One\",v:[400],f:\"sans-serif\"},{n:\"Fjord One\",v:[400],f:\"serif\"},{n:\"Flamenco\",v:[\"300\",400],f:\"display\"},{n:\"Flavors\",v:[400],f:\"display\"},{n:\"Fleur De Leah\",v:[400],f:\"handwriting\"},{n:\"Flow Block\",v:[400],f:\"display\"},{n:\"Flow Circular\",v:[400],f:\"display\"},{n:\"Flow Rounded\",v:[400],f:\"display\"},{n:\"Fondamento\",v:[400,\"400i\"],f:\"handwriting\"},{n:\"Fontdiner Swanky\",v:[400],f:\"display\"},{n:\"Forum\",v:[400],f:\"display\"},{n:\"Francois One\",v:[400],f:\"sans-serif\"},{n:\"Frank Ruhl Libre\",v:[\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Fraunces\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Freckle Face\",v:[400],f:\"display\"},{n:\"Fredericka the Great\",v:[400],f:\"display\"},{n:\"Fredoka\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Freehand\",v:[400],f:\"display\"},{n:\"Fresca\",v:[400],f:\"sans-serif\"},{n:\"Frijole\",v:[400],f:\"display\"},{n:\"Fruktur\",v:[400,\"400i\"],f:\"display\"},{n:\"Fugaz One\",v:[400],f:\"display\"},{n:\"Fuggles\",v:[400],f:\"handwriting\"},{n:\"Fuzzy Bubbles\",v:[400,700],f:\"handwriting\"},{n:\"Figtree\",v:[300,400,500,600,700,800,900,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Finlandica\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Foldit\",v:[100,200,300,400,500,600,700,800,900],f:\"display\"},{n:\"Fragment Mono\",v:[400,\"400i\"],f:\"monospace\"},{n:\"GFS Didot\",v:[400],f:\"serif\"},{n:\"GFS Neohellenic\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Gabriela\",v:[400],f:\"serif\"},{n:\"Gaegu\",v:[\"300\",400,700],f:\"handwriting\"},{n:\"Gafata\",v:[400],f:\"sans-serif\"},{n:\"Galada\",v:[400],f:\"display\"},{n:\"Galdeano\",v:[400],f:\"sans-serif\"},{n:\"Galindo\",v:[400],f:\"display\"},{n:\"Gamja Flower\",v:[400],f:\"handwriting\"},{n:\"Gayathri\",v:[\"100\",400,700],f:\"sans-serif\"},{n:\"Gelasio\",v:[400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"Gemunu Libre\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Genos\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Geo\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Georama\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Geostar\",v:[400],f:\"display\"},{n:\"Geostar Fill\",v:[400],f:\"display\"},{n:\"Germania One\",v:[400],f:\"display\"},{n:\"Gideon Roman\",v:[400],f:\"display\"},{n:\"Gidugu\",v:[400],f:\"sans-serif\"},{n:\"Gilda Display\",v:[400],f:\"serif\"},{n:\"Girassol\",v:[400],f:\"display\"},{n:\"Give You Glory\",v:[400],f:\"handwriting\"},{n:\"Glass Antiqua\",v:[400],f:\"display\"},{n:\"Glegoo\",v:[400,700],f:\"serif\"},{n:\"Gloria Hallelujah\",v:[400],f:\"handwriting\"},{n:\"Glory\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Gluten\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Goblin One\",v:[400],f:\"display\"},{n:\"Gochi Hand\",v:[400],f:\"handwriting\"},{n:\"Goldman\",v:[400,700],f:\"display\"},{n:\"Gorditas\",v:[400,700],f:\"display\"},{n:\"Gothic A1\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Gotu\",v:[400],f:\"sans-serif\"},{n:\"Goudy Bookletter 1911\",v:[400],f:\"serif\"},{n:\"Gowun Batang\",v:[400,700],f:\"serif\"},{n:\"Gowun Dodum\",v:[400],f:\"sans-serif\"},{n:\"Graduate\",v:[400],f:\"display\"},{n:\"Grand Hotel\",v:[400],f:\"handwriting\"},{n:\"Grandstander\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"display\"},{n:\"Grape Nuts\",v:[400],f:\"handwriting\"},{n:\"Gravitas One\",v:[400],f:\"display\"},{n:\"Great Vibes\",v:[400],f:\"handwriting\"},{n:\"Grechen Fuemen\",v:[400],f:\"handwriting\"},{n:\"Grenze\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"serif\"},{n:\"Grenze Gotisch\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Grey Qo\",v:[400],f:\"handwriting\"},{n:\"Griffy\",v:[400],f:\"display\"},{n:\"Gruppo\",v:[400],f:\"sans-serif\"},{n:\"Gudea\",v:[400,\"400i\",700],f:\"sans-serif\"},{n:\"Gugi\",v:[400],f:\"display\"},{n:\"Gupter\",v:[400,500,700],f:\"serif\"},{n:\"Gurajada\",v:[400],f:\"serif\"},{n:\"Gwendolyn\",v:[400,700],f:\"handwriting\"},{n:\"Gajraj One\",v:[400],f:\"display\"},{n:\"Gantari\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Gloock\",v:[400],f:\"serif\"},{n:\"Golos Text\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Gulzar\",v:[400],f:\"serif\"},{n:\"Gentium Book Plus\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Gentium Plus\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Habibi\",v:[400],f:\"serif\"},{n:\"Hachi Maru Pop\",v:[400],f:\"handwriting\"},{n:\"Hahmlet\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Halant\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Hammersmith One\",v:[400],f:\"sans-serif\"},{n:\"Hanalei\",v:[400],f:\"display\"},{n:\"Hanalei Fill\",v:[400],f:\"display\"},{n:\"Handlee\",v:[400],f:\"handwriting\"},{n:\"Hanuman\",v:[\"100\",\"300\",400,700,900],f:\"serif\"},{n:\"Happy Monkey\",v:[400],f:\"display\"},{n:\"Harmattan\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Headland One\",v:[400],f:\"serif\"},{n:\"Heebo\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Henny Penny\",v:[400],f:\"display\"},{n:\"Hepta Slab\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Herr Von Muellerhoff\",v:[400],f:\"handwriting\"},{n:\"Hi Melody\",v:[400],f:\"handwriting\"},{n:\"Hina Mincho\",v:[400],f:\"serif\"},{n:\"Hind\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Hind Guntur\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Hind Madurai\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Hind Siliguri\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Hind Vadodara\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Holtwood One SC\",v:[400],f:\"serif\"},{n:\"Homemade Apple\",v:[400],f:\"handwriting\"},{n:\"Homenaje\",v:[400],f:\"sans-serif\"},{n:\"Hubballi\",v:[400],f:\"display\"},{n:\"Hurricane\",v:[400],f:\"handwriting\"},{n:\"Hanken Grotesk\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"IBM Plex Mono\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"monospace\"},{n:\"IBM Plex Sans\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"IBM Plex Sans Arabic\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"IBM Plex Sans Devanagari\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans Hebrew\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans KR\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans Thai\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans Thai Looped\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Serif\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"IM Fell DW Pica\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell DW Pica SC\",v:[400],f:\"serif\"},{n:\"IM Fell Double Pica\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell Double Pica SC\",v:[400],f:\"serif\"},{n:\"IM Fell English\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell English SC\",v:[400],f:\"serif\"},{n:\"IM Fell French Canon\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell French Canon SC\",v:[400],f:\"serif\"},{n:\"IM Fell Great Primer\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell Great Primer SC\",v:[400],f:\"serif\"},{n:\"Ibarra Real Nova\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Iceberg\",v:[400],f:\"display\"},{n:\"Iceland\",v:[400],f:\"display\"},{n:\"Imbue\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Imperial Script\",v:[400],f:\"handwriting\"},{n:\"Imprima\",v:[400],f:\"sans-serif\"},{n:\"Inconsolata\",v:[\"200\",\"300\",400,500,600,700,800,900],f:\"monospace\"},{n:\"Inder\",v:[400],f:\"sans-serif\"},{n:\"Indie Flower\",v:[400],f:\"handwriting\"},{n:\"Ingrid Darling\",v:[400],f:\"handwriting\"},{n:\"Inika\",v:[400,700],f:\"serif\"},{n:\"Inknut Antiqua\",v:[\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Inria Sans\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Inria Serif\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Inspiration\",v:[400],f:\"handwriting\"},{n:\"Inter\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Irish Grover\",v:[400],f:\"display\"},{n:\"Island Moments\",v:[400],f:\"handwriting\"},{n:\"Istok Web\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Italiana\",v:[400],f:\"serif\"},{n:\"Italianno\",v:[400],f:\"handwriting\"},{n:\"Itim\",v:[400],f:\"handwriting\"},{n:\"IBM Plex Sans JP\",v:[100,200,300,400,500,600,700],f:\"sans-serif\"},{n:\"Instrument Sans\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Instrument Serif\",v:[400,\"400i\"],f:\"serif\"},{n:\"Inter Tight\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Jacques Francois\",v:[400],f:\"serif\"},{n:\"Jacques Francois Shadow\",v:[400],f:\"display\"},{n:\"Jaldi\",v:[400,700],f:\"sans-serif\"},{n:\"JetBrains Mono\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"monospace\"},{n:\"Jim Nightshade\",v:[400],f:\"handwriting\"},{n:\"Jockey One\",v:[400],f:\"sans-serif\"},{n:\"Jolly Lodger\",v:[400],f:\"display\"},{n:\"Jomhuria\",v:[400],f:\"display\"},{n:\"Jomolhari\",v:[400],f:\"serif\"},{n:\"Josefin Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Josefin Slab\",v:[\"100\",\"200\",\"300\",400,500,600,700,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Jost\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Joti One\",v:[400],f:\"display\"},{n:\"Jua\",v:[400],f:\"sans-serif\"},{n:\"Judson\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Julee\",v:[400],f:\"handwriting\"},{n:\"Julius Sans One\",v:[400],f:\"sans-serif\"},{n:\"Junge\",v:[400],f:\"serif\"},{n:\"Jura\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Just Another Hand\",v:[400],f:\"handwriting\"},{n:\"Just Me Again Down Here\",v:[400],f:\"handwriting\"},{n:\"K2D\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"sans-serif\"},{n:\"Joan\",v:[400],f:\"serif\"},{n:\"Kadwa\",v:[400,700],f:\"serif\"},{n:\"Kaisei Decol\",v:[400,500,700],f:\"serif\"},{n:\"Kaisei HarunoUmi\",v:[400,500,700],f:\"serif\"},{n:\"Kaisei Opti\",v:[400,500,700],f:\"serif\"},{n:\"Kaisei Tokumin\",v:[400,500,700,800],f:\"serif\"},{n:\"Kalam\",v:[\"300\",400,700],f:\"handwriting\"},{n:\"Kameron\",v:[400,700],f:\"serif\"},{n:\"Kanit\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Karantina\",v:[\"300\",400,700],f:\"display\"},{n:\"Karla\",v:[\"200\",\"300\",400,500,600,700,800,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Karma\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Katibeh\",v:[400],f:\"display\"},{n:\"Kaushan Script\",v:[400],f:\"handwriting\"},{n:\"Kavivanar\",v:[400],f:\"handwriting\"},{n:\"Kavoon\",v:[400],f:\"display\"},{n:\"Keania One\",v:[400],f:\"display\"},{n:\"Kelly Slab\",v:[400],f:\"display\"},{n:\"Kenia\",v:[400],f:\"display\"},{n:\"Khand\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Khmer\",v:[400],f:\"display\"},{n:\"Khula\",v:[\"300\",400,600,700,800],f:\"sans-serif\"},{n:\"Kings\",v:[400],f:\"handwriting\"},{n:\"Kirang Haerang\",v:[400],f:\"display\"},{n:\"Kite One\",v:[400],f:\"sans-serif\"},{n:\"Kiwi Maru\",v:[\"300\",400,500],f:\"serif\"},{n:\"Klee One\",v:[400,600],f:\"handwriting\"},{n:\"Knewave\",v:[400],f:\"display\"},{n:\"KoHo\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Kodchasan\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Koh Santepheap\",v:[\"100\",\"300\",400,700,900],f:\"display\"},{n:\"Kolker Brush\",v:[400],f:\"handwriting\"},{n:\"Kosugi\",v:[400],f:\"sans-serif\"},{n:\"Kosugi Maru\",v:[400],f:\"sans-serif\"},{n:\"Kotta One\",v:[400],f:\"serif\"},{n:\"Koulen\",v:[400],f:\"display\"},{n:\"Kranky\",v:[400],f:\"display\"},{n:\"Kreon\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Kristi\",v:[400],f:\"handwriting\"},{n:\"Krona One\",v:[400],f:\"sans-serif\"},{n:\"Krub\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Kufam\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Kulim Park\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Kumar One\",v:[400],f:\"display\"},{n:\"Kumar One Outline\",v:[400],f:\"display\"},{n:\"Kumbh Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Kurale\",v:[400],f:\"serif\"},{n:\"Kantumruy Pro\",v:[100,200,300,400,500,600,700,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Kdam Thmor Pro\",v:[400],f:\"sans-serif\"},{n:\"Konkhmer Sleokchher\",v:[400],f:\"display\"},{n:\"La Belle Aurore\",v:[400],f:\"handwriting\"},{n:\"Lacquer\",v:[400],f:\"display\"},{n:\"Laila\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Lakki Reddy\",v:[400],f:\"handwriting\"},{n:\"Lalezar\",v:[400],f:\"display\"},{n:\"Lancelot\",v:[400],f:\"display\"},{n:\"Langar\",v:[400],f:\"display\"},{n:\"Lateef\",v:[200,300,400,500,600,700,800],f:\"handwriting\"},{n:\"Lato\",v:[\"100\",\"100i\",\"300\",\"300i\",400,\"400i\",700,\"700i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Lavishly Yours\",v:[400],f:\"handwriting\"},{n:\"League Gothic\",v:[400],f:\"sans-serif\"},{n:\"League Script\",v:[400],f:\"handwriting\"},{n:\"League Spartan\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Leckerli One\",v:[400],f:\"handwriting\"},{n:\"Ledger\",v:[400],f:\"serif\"},{n:\"Lekton\",v:[400,\"400i\",700],f:\"sans-serif\"},{n:\"Lemon\",v:[400],f:\"display\"},{n:\"Lemonada\",v:[\"300\",400,500,600,700],f:\"display\"},{n:\"Lexend\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Deca\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Exa\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Giga\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Mega\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Peta\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Tera\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Zetta\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Libre Barcode 128\",v:[400],f:\"display\"},{n:\"Libre Barcode 128 Text\",v:[400],f:\"display\"},{n:\"Libre Barcode 39\",v:[400],f:\"display\"},{n:\"Libre Barcode 39 Extended\",v:[400],f:\"display\"},{n:\"Libre Barcode 39 Extended Text\",v:[400],f:\"display\"},{n:\"Libre Barcode 39 Text\",v:[400],f:\"display\"},{n:\"Libre Barcode EAN13 Text\",v:[400],f:\"display\"},{n:\"Libre Baskerville\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Libre Bodoni\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Libre Caslon Display\",v:[400],f:\"serif\"},{n:\"Libre Caslon Text\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Libre Franklin\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Licorice\",v:[400],f:\"handwriting\"},{n:\"Life Savers\",v:[400,700,800],f:\"display\"},{n:\"Lilita One\",v:[400],f:\"display\"},{n:\"Lily Script One\",v:[400],f:\"display\"},{n:\"Limelight\",v:[400],f:\"display\"},{n:\"Linden Hill\",v:[400,\"400i\"],f:\"serif\"},{n:\"Literata\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Liu Jian Mao Cao\",v:[400],f:\"handwriting\"},{n:\"Livvic\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Lobster\",v:[400],f:\"display\"},{n:\"Lobster Two\",v:[400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Londrina Outline\",v:[400],f:\"display\"},{n:\"Londrina Shadow\",v:[400],f:\"display\"},{n:\"Londrina Sketch\",v:[400],f:\"display\"},{n:\"Londrina Solid\",v:[\"100\",\"300\",400,900],f:\"display\"},{n:\"Long Cang\",v:[400],f:\"handwriting\"},{n:\"Lora\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Love Light\",v:[400],f:\"handwriting\"},{n:\"Love Ya Like A Sister\",v:[400],f:\"display\"},{n:\"Loved by the King\",v:[400],f:\"handwriting\"},{n:\"Lovers Quarrel\",v:[400],f:\"handwriting\"},{n:\"Luckiest Guy\",v:[400],f:\"display\"},{n:\"Lusitana\",v:[400,700],f:\"serif\"},{n:\"Lustria\",v:[400],f:\"serif\"},{n:\"Luxurious Roman\",v:[400],f:\"display\"},{n:\"Luxurious Script\",v:[400],f:\"handwriting\"},{n:\"Labrada\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"M PLUS 1\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"M PLUS 1 Code\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"M PLUS 1p\",v:[\"100\",\"300\",400,500,700,800,900],f:\"sans-serif\"},{n:\"M PLUS 2\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"M PLUS Code Latin\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"M PLUS Rounded 1c\",v:[\"100\",\"300\",400,500,700,800,900],f:\"sans-serif\"},{n:\"Ma Shan Zheng\",v:[400],f:\"handwriting\"},{n:\"Macondo\",v:[400],f:\"display\"},{n:\"Macondo Swash Caps\",v:[400],f:\"display\"},{n:\"Mada\",v:[\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Magra\",v:[400,700],f:\"sans-serif\"},{n:\"Maiden Orange\",v:[400],f:\"display\"},{n:\"Maitree\",v:[\"200\",\"300\",400,500,600,700],f:\"serif\"},{n:\"Major Mono Display\",v:[400],f:\"monospace\"},{n:\"Mako\",v:[400],f:\"sans-serif\"},{n:\"Mali\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"handwriting\"},{n:\"Mallanna\",v:[400],f:\"sans-serif\"},{n:\"Mandali\",v:[400],f:\"sans-serif\"},{n:\"Manjari\",v:[\"100\",400,700],f:\"sans-serif\"},{n:\"Manrope\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mansalva\",v:[400],f:\"handwriting\"},{n:\"Manuale\",v:[\"300\",400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Marcellus\",v:[400],f:\"serif\"},{n:\"Marcellus SC\",v:[400],f:\"serif\"},{n:\"Marck Script\",v:[400],f:\"handwriting\"},{n:\"Margarine\",v:[400],f:\"display\"},{n:\"Markazi Text\",v:[400,500,600,700],f:\"serif\"},{n:\"Marko One\",v:[400],f:\"serif\"},{n:\"Marmelad\",v:[400],f:\"sans-serif\"},{n:\"Martel\",v:[\"200\",\"300\",400,600,700,800,900],f:\"serif\"},{n:\"Martel Sans\",v:[\"200\",\"300\",400,600,700,800,900],f:\"sans-serif\"},{n:\"Marvel\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Mate\",v:[400,\"400i\"],f:\"serif\"},{n:\"Mate SC\",v:[400],f:\"serif\"},{n:\"Maven Pro\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"McLaren\",v:[400],f:\"display\"},{n:\"Mea Culpa\",v:[400],f:\"handwriting\"},{n:\"Meddon\",v:[400],f:\"handwriting\"},{n:\"MedievalSharp\",v:[400],f:\"display\"},{n:\"Medula One\",v:[400],f:\"display\"},{n:\"Meera Inimai\",v:[400],f:\"sans-serif\"},{n:\"Megrim\",v:[400],f:\"display\"},{n:\"Meie Script\",v:[400],f:\"handwriting\"},{n:\"Meow Script\",v:[400],f:\"handwriting\"},{n:\"Merienda\",v:[300,400,500,600,700,800,900],f:\"handwriting\"},{n:\"Merriweather\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\",900,\"900i\"],f:\"serif\"},{n:\"Merriweather Sans\",v:[\"300\",400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Metal\",v:[400],f:\"display\"},{n:\"Metal Mania\",v:[400],f:\"display\"},{n:\"Metamorphous\",v:[400],f:\"display\"},{n:\"Metrophobic\",v:[400],f:\"sans-serif\"},{n:\"Michroma\",v:[400],f:\"sans-serif\"},{n:\"Milonga\",v:[400],f:\"display\"},{n:\"Miltonian\",v:[400],f:\"display\"},{n:\"Miltonian Tattoo\",v:[400],f:\"display\"},{n:\"Mina\",v:[400,700],f:\"sans-serif\"},{n:\"Miniver\",v:[400],f:\"display\"},{n:\"Miriam Libre\",v:[400,700],f:\"sans-serif\"},{n:\"Mirza\",v:[400,500,600,700],f:\"display\"},{n:\"Miss Fajardose\",v:[400],f:\"handwriting\"},{n:\"Mitr\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Mochiy Pop One\",v:[400],f:\"sans-serif\"},{n:\"Mochiy Pop P One\",v:[400],f:\"sans-serif\"},{n:\"Modak\",v:[400],f:\"display\"},{n:\"Modern Antiqua\",v:[400],f:\"display\"},{n:\"Mogra\",v:[400],f:\"display\"},{n:\"Mohave\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Molengo\",v:[400],f:\"sans-serif\"},{n:\"Molle\",v:[\"400i\"],f:\"handwriting\"},{n:\"Monda\",v:[400,700],f:\"sans-serif\"},{n:\"Monofett\",v:[400],f:\"monospace\"},{n:\"Monoton\",v:[400],f:\"display\"},{n:\"Monsieur La Doulaise\",v:[400],f:\"handwriting\"},{n:\"Montaga\",v:[400],f:\"serif\"},{n:\"Montagu Slab\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"serif\"},{n:\"MonteCarlo\",v:[400],f:\"handwriting\"},{n:\"Montez\",v:[400],f:\"handwriting\"},{n:\"Montserrat\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Montserrat Alternates\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Montserrat Subrayada\",v:[400,700],f:\"sans-serif\"},{n:\"Moo Lah Lah\",v:[400],f:\"display\"},{n:\"Moon Dance\",v:[400],f:\"handwriting\"},{n:\"Moul\",v:[400],f:\"display\"},{n:\"Moulpali\",v:[400],f:\"display\"},{n:\"Mountains of Christmas\",v:[400,700],f:\"display\"},{n:\"Mouse Memoirs\",v:[400],f:\"sans-serif\"},{n:\"Mr Bedfort\",v:[400],f:\"handwriting\"},{n:\"Mr Dafoe\",v:[400],f:\"handwriting\"},{n:\"Mr De Haviland\",v:[400],f:\"handwriting\"},{n:\"Mrs Saint Delafield\",v:[400],f:\"handwriting\"},{n:\"Mrs Sheppards\",v:[400],f:\"handwriting\"},{n:\"Ms Madi\",v:[400],f:\"handwriting\"},{n:\"Mukta\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mukta Mahee\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mukta Malar\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mukta Vaani\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mulish\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Murecho\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"MuseoModerno\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"display\"},{n:\"My Soul\",v:[400],f:\"handwriting\"},{n:\"Mystery Quest\",v:[400],f:\"display\"},{n:\"Marhey\",v:[300,400,500,600,700],f:\"display\"},{n:\"Martian Mono\",v:[100,200,300,400,500,600,700,800],f:\"monospace\"},{n:\"Material Icons\",v:[400],f:\"monospace\"},{n:\"Material Icons Outlined\",v:[400],f:\"monospace\"},{n:\"Material Icons Round\",v:[400],f:\"monospace\"},{n:\"Material Icons Sharp\",v:[400],f:\"monospace\"},{n:\"Material Icons Two Tone\",v:[400],f:\"monospace\"},{n:\"Material Symbols Outlined\",v:[100,200,300,400,500,600,700],f:\"monospace\"},{n:\"Material Symbols Rounded\",v:[100,200,300,400,500,600,700],f:\"monospace\"},{n:\"Material Symbols Sharp\",v:[100,200,300,400,500,600,700],f:\"monospace\"},{n:\"Mingzat\",v:[400],f:\"sans-serif\"},{n:\"Monomaniac One\",v:[400],f:\"sans-serif\"},{n:\"Mynerve\",v:[400],f:\"handwriting\"},{n:\"NTR\",v:[400],f:\"sans-serif\"},{n:\"Nanum Brush Script\",v:[400],f:\"handwriting\"},{n:\"Nanum Gothic\",v:[400,700,800],f:\"sans-serif\"},{n:\"Nanum Gothic Coding\",v:[400,700],f:\"monospace\"},{n:\"Nanum Myeongjo\",v:[400,700,800],f:\"serif\"},{n:\"Nanum Pen Script\",v:[400],f:\"handwriting\"},{n:\"Neonderthaw\",v:[400],f:\"handwriting\"},{n:\"Nerko One\",v:[400],f:\"handwriting\"},{n:\"Neucha\",v:[400],f:\"handwriting\"},{n:\"Neuton\",v:[\"200\",\"300\",400,\"400i\",700,800],f:\"serif\"},{n:\"New Rocker\",v:[400],f:\"display\"},{n:\"New Tegomin\",v:[400],f:\"serif\"},{n:\"News Cycle\",v:[400,700],f:\"sans-serif\"},{n:\"Newsreader\",v:[\"200\",\"300\",400,500,600,700,800,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Niconne\",v:[400],f:\"handwriting\"},{n:\"Niramit\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Nixie One\",v:[400],f:\"display\"},{n:\"Nobile\",v:[400,\"400i\",500,\"500i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Nokora\",v:[\"100\",\"300\",400,700,900],f:\"sans-serif\"},{n:\"Norican\",v:[400],f:\"handwriting\"},{n:\"Nosifer\",v:[400],f:\"display\"},{n:\"Notable\",v:[400],f:\"sans-serif\"},{n:\"Nothing You Could Do\",v:[400],f:\"handwriting\"},{n:\"Noticia Text\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Noto Emoji\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Noto Kufi Arabic\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Music\",v:[400],f:\"sans-serif\"},{n:\"Noto Naskh Arabic\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Nastaliq Urdu\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Rashi Hebrew\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Sans\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Noto Sans Adlam\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Adlam Unjoined\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Anatolian Hieroglyphs\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Arabic\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Armenian\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Avestan\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Balinese\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Bamum\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Bassa Vah\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Batak\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Bengali\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Bhaiksuki\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Brahmi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Buginese\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Buhid\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Canadian Aboriginal\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Carian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Caucasian Albanian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Chakma\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Cham\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Cherokee\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Coptic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Cuneiform\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Cypriot\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Deseret\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Devanagari\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Noto Sans Duployan\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Egyptian Hieroglyphs\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Elbasan\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Elymaic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Georgian\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Glagolitic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Gothic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Grantha\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Gujarati\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Gunjala Gondi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Gurmukhi\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans HK\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Noto Sans Hanifi Rohingya\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Hanunoo\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Hatran\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Hebrew\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Imperial Aramaic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Indic Siyaq Numbers\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Inscriptional Pahlavi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Inscriptional Parthian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans JP\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Javanese\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans KR\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Noto Sans Kaithi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Kannada\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Kayah Li\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Kharoshthi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Khmer\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Khojki\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Khudawadi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Lao\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Lepcha\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Limbu\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Linear A\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Linear B\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Lisu\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Lycian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Lydian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Mahajani\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Malayalam\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Mandaic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Manichaean\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Marchen\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Masaram Gondi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Math\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Mayan Numerals\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Medefaidrin\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Meetei Mayek\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Meroitic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Miao\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Modi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Mongolian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Mono\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"monospace\"},{n:\"Noto Sans Mro\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Multani\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Myanmar\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans NKo\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Nabataean\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans New Tai Lue\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Newa\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Nushu\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Ogham\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Ol Chiki\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Old Hungarian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Italic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old North Arabian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Permic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Persian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Sogdian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old South Arabian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Turkic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Oriya\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Osage\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Osmanya\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Pahawh Hmong\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Palmyrene\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Pau Cin Hau\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Phags Pa\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Phoenician\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Psalter Pahlavi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Rejang\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Runic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans SC\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Noto Sans Samaritan\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Saurashtra\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Sharada\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Shavian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Siddham\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Sinhala\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Sogdian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Sora Sompeng\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Soyombo\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Sundanese\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Syloti Nagri\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Symbols\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Symbols 2\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Syriac\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans TC\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Noto Sans Tagalog\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tagbanwa\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tai Le\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tai Tham\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Tai Viet\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Takri\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tamil\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Tamil Supplement\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Telugu\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Thaana\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Thai\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Thai Looped\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Tifinagh\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tirhuta\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Ugaritic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Vai\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Wancho\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Warang Citi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Yi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Zanabazar Square\",v:[400],f:\"sans-serif\"},{n:\"Noto Serif\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Noto Serif Ahom\",v:[400],f:\"serif\"},{n:\"Noto Serif Armenian\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Balinese\",v:[400],f:\"serif\"},{n:\"Noto Serif Bengali\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Devanagari\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Noto Serif Dogra\",v:[400],f:\"serif\"},{n:\"Noto Serif Ethiopic\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Georgian\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Grantha\",v:[400],f:\"serif\"},{n:\"Noto Serif Gujarati\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Gurmukhi\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Hebrew\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif JP\",v:[\"200\",\"300\",400,500,600,700,900],f:\"serif\"},{n:\"Noto Serif KR\",v:[\"200\",\"300\",400,500,600,700,900],f:\"serif\"},{n:\"Noto Serif Kannada\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Khmer\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Lao\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Malayalam\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Myanmar\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Nyiakeng Puachue Hmong\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Serif SC\",v:[\"200\",\"300\",400,500,600,700,900],f:\"serif\"},{n:\"Noto Serif Sinhala\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif TC\",v:[\"200\",\"300\",400,500,600,700,900],f:\"serif\"},{n:\"Noto Serif Tamil\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Noto Serif Tangut\",v:[400],f:\"serif\"},{n:\"Noto Serif Telugu\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Thai\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Tibetan\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Yezidi\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Traditional Nushu\",v:[300,400,500,600,700],f:\"sans-serif\"},{n:\"Nova Cut\",v:[400],f:\"display\"},{n:\"Nova Flat\",v:[400],f:\"display\"},{n:\"Nova Mono\",v:[400],f:\"monospace\"},{n:\"Nova Oval\",v:[400],f:\"display\"},{n:\"Nova Round\",v:[400],f:\"display\"},{n:\"Nova Script\",v:[400],f:\"display\"},{n:\"Nova Slim\",v:[400],f:\"display\"},{n:\"Nova Square\",v:[400],f:\"display\"},{n:\"Numans\",v:[400],f:\"sans-serif\"},{n:\"Nunito\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Nunito Sans\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Nabla\",v:[400],f:\"display\"},{n:\"Noto Color Emoji\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Chorasmian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Ethiopic\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Lao Looped\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Mende Kikakui\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Nag Mundari\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Nandinagari\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans SignWriting\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tangsa\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Serif HK\",v:[200,300,400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif NP Hmong\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Serif Oriya\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Serif Toto\",v:[400,500,600,700],f:\"serif\"},{n:\"Nuosu SIL\",v:[400],f:\"serif\"},{n:\"Odibee Sans\",v:[400],f:\"display\"},{n:\"Odor Mean Chey\",v:[400],f:\"serif\"},{n:\"Offside\",v:[400],f:\"display\"},{n:\"Oi\",v:[400],f:\"display\"},{n:\"Old Standard TT\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Oldenburg\",v:[400],f:\"display\"},{n:\"Ole\",v:[400],f:\"handwriting\"},{n:\"Oleo Script\",v:[400,700],f:\"display\"},{n:\"Oleo Script Swash Caps\",v:[400,700],f:\"display\"},{n:\"Oooh Baby\",v:[400],f:\"handwriting\"},{n:\"Open Sans\",v:[\"300\",400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Oranienbaum\",v:[400],f:\"serif\"},{n:\"Orbitron\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Oregano\",v:[400,\"400i\"],f:\"display\"},{n:\"Orelega One\",v:[400],f:\"display\"},{n:\"Orienta\",v:[400],f:\"sans-serif\"},{n:\"Original Surfer\",v:[400],f:\"display\"},{n:\"Oswald\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Outfit\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Over the Rainbow\",v:[400],f:\"handwriting\"},{n:\"Overlock\",v:[400,\"400i\",700,\"700i\",900,\"900i\"],f:\"display\"},{n:\"Overlock SC\",v:[400],f:\"display\"},{n:\"Overpass\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Overpass Mono\",v:[\"300\",400,500,600,700],f:\"monospace\"},{n:\"Ovo\",v:[400],f:\"serif\"},{n:\"Oxanium\",v:[\"200\",\"300\",400,500,600,700,800],f:\"display\"},{n:\"Oxygen\",v:[\"300\",400,700],f:\"sans-serif\"},{n:\"Oxygen Mono\",v:[400],f:\"monospace\"},{n:\"PT Mono\",v:[400],f:\"monospace\"},{n:\"PT Sans\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"PT Sans Caption\",v:[400,700],f:\"sans-serif\"},{n:\"PT Sans Narrow\",v:[400,700],f:\"sans-serif\"},{n:\"PT Serif\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"PT Serif Caption\",v:[400,\"400i\"],f:\"serif\"},{n:\"Pacifico\",v:[400],f:\"handwriting\"},{n:\"Padauk\",v:[400,700],f:\"sans-serif\"},{n:\"Palanquin\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Palanquin Dark\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Pangolin\",v:[400],f:\"handwriting\"},{n:\"Paprika\",v:[400],f:\"display\"},{n:\"Parisienne\",v:[400],f:\"handwriting\"},{n:\"Passero One\",v:[400],f:\"display\"},{n:\"Passion One\",v:[400,700,900],f:\"display\"},{n:\"Passions Conflict\",v:[400],f:\"handwriting\"},{n:\"Pathway Gothic One\",v:[400],f:\"sans-serif\"},{n:\"Patrick Hand\",v:[400],f:\"handwriting\"},{n:\"Patrick Hand SC\",v:[400],f:\"handwriting\"},{n:\"Pattaya\",v:[400],f:\"sans-serif\"},{n:\"Patua One\",v:[400],f:\"display\"},{n:\"Pavanam\",v:[400],f:\"sans-serif\"},{n:\"Paytone One\",v:[400],f:\"sans-serif\"},{n:\"Peddana\",v:[400],f:\"serif\"},{n:\"Peralta\",v:[400],f:\"display\"},{n:\"Permanent Marker\",v:[400],f:\"handwriting\"},{n:\"Petemoss\",v:[400],f:\"handwriting\"},{n:\"Petit Formal Script\",v:[400],f:\"handwriting\"},{n:\"Petrona\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Philosopher\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Piazzolla\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Piedra\",v:[400],f:\"display\"},{n:\"Pinyon Script\",v:[400],f:\"handwriting\"},{n:\"Pirata One\",v:[400],f:\"display\"},{n:\"Plaster\",v:[400],f:\"display\"},{n:\"Play\",v:[400,700],f:\"sans-serif\"},{n:\"Playball\",v:[400],f:\"display\"},{n:\"Playfair Display\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Playfair Display SC\",v:[400,\"400i\",700,\"700i\",900,\"900i\"],f:\"serif\"},{n:\"Plus Jakarta Sans\",v:[\"200\",\"300\",400,500,600,700,800,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Podkova\",v:[400,500,600,700,800],f:\"serif\"},{n:\"Poiret One\",v:[400],f:\"display\"},{n:\"Poller One\",v:[400],f:\"display\"},{n:\"Poly\",v:[400,\"400i\"],f:\"serif\"},{n:\"Pompiere\",v:[400],f:\"display\"},{n:\"Pontano Sans\",v:[300,400,500,600,700],f:\"sans-serif\"},{n:\"Poor Story\",v:[400],f:\"display\"},{n:\"Poppins\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Port Lligat Sans\",v:[400],f:\"sans-serif\"},{n:\"Port Lligat Slab\",v:[400],f:\"serif\"},{n:\"Potta One\",v:[400],f:\"display\"},{n:\"Pragati Narrow\",v:[400,700],f:\"sans-serif\"},{n:\"Praise\",v:[400],f:\"handwriting\"},{n:\"Prata\",v:[400],f:\"serif\"},{n:\"Preahvihear\",v:[400],f:\"sans-serif\"},{n:\"Press Start 2P\",v:[400],f:\"display\"},{n:\"Pridi\",v:[\"200\",\"300\",400,500,600,700],f:\"serif\"},{n:\"Princess Sofia\",v:[400],f:\"handwriting\"},{n:\"Prociono\",v:[400],f:\"serif\"},{n:\"Prompt\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Prosto One\",v:[400],f:\"display\"},{n:\"Proza Libre\",v:[400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"sans-serif\"},{n:\"Public Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Puppies Play\",v:[400],f:\"handwriting\"},{n:\"Puritan\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Purple Purse\",v:[400],f:\"display\"},{n:\"Padyakke Expanded One\",v:[400],f:\"display\"},{n:\"Pathway Extreme\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Phudu\",v:[300,400,500,600,700,800,900],f:\"display\"},{n:\"Playfair\",v:[300,400,500,600,700,800,900,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Poltawski Nowy\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Qahiri\",v:[400],f:\"sans-serif\"},{n:\"Quando\",v:[400],f:\"serif\"},{n:\"Quantico\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Quattrocento\",v:[400,700],f:\"serif\"},{n:\"Quattrocento Sans\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Questrial\",v:[400],f:\"sans-serif\"},{n:\"Quicksand\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Quintessential\",v:[400],f:\"handwriting\"},{n:\"Qwigley\",v:[400],f:\"handwriting\"},{n:\"Qwitcher Grypen\",v:[400,700],f:\"handwriting\"},{n:\"Racing Sans One\",v:[400],f:\"display\"},{n:\"Radio Canada\",v:[300,400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Radley\",v:[400,\"400i\"],f:\"serif\"},{n:\"Rajdhani\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Rakkas\",v:[400],f:\"display\"},{n:\"Raleway\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Raleway Dots\",v:[400],f:\"display\"},{n:\"Ramabhadra\",v:[400],f:\"sans-serif\"},{n:\"Ramaraja\",v:[400],f:\"serif\"},{n:\"Rambla\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Rammetto One\",v:[400],f:\"display\"},{n:\"Rampart One\",v:[400],f:\"display\"},{n:\"Ranchers\",v:[400],f:\"display\"},{n:\"Rancho\",v:[400],f:\"handwriting\"},{n:\"Ranga\",v:[400,700],f:\"display\"},{n:\"Rasa\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Rationale\",v:[400],f:\"sans-serif\"},{n:\"Ravi Prakash\",v:[400],f:\"display\"},{n:\"Readex Pro\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Recursive\",v:[\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Red Hat Display\",v:[\"300\",400,500,600,700,800,900,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Red Hat Mono\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"monospace\"},{n:\"Red Hat Text\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Red Rose\",v:[\"300\",400,500,600,700],f:\"display\"},{n:\"Redacted\",v:[400],f:\"display\"},{n:\"Redacted Script\",v:[\"300\",400,700],f:\"display\"},{n:\"Redressed\",v:[400],f:\"handwriting\"},{n:\"Reem Kufi\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Reenie Beanie\",v:[400],f:\"handwriting\"},{n:\"Reggae One\",v:[400],f:\"display\"},{n:\"Revalia\",v:[400],f:\"display\"},{n:\"Rhodium Libre\",v:[400],f:\"serif\"},{n:\"Ribeye\",v:[400],f:\"display\"},{n:\"Ribeye Marrow\",v:[400],f:\"display\"},{n:\"Righteous\",v:[400],f:\"display\"},{n:\"Risque\",v:[400],f:\"display\"},{n:\"Road Rage\",v:[400],f:\"display\"},{n:\"Roboto\",v:[\"100\",\"100i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",700,\"700i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Roboto Condensed\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Roboto Flex\",v:[400],f:\"sans-serif\"},{n:\"Roboto Mono\",v:[\"100\",\"200\",\"300\",400,500,600,700,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"monospace\"},{n:\"Roboto Serif\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Roboto Slab\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Rochester\",v:[400],f:\"handwriting\"},{n:\"Rock Salt\",v:[400],f:\"handwriting\"},{n:\"RocknRoll One\",v:[400],f:\"sans-serif\"},{n:\"Rokkitt\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Romanesco\",v:[400],f:\"handwriting\"},{n:\"Ropa Sans\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Rosario\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Rosarivo\",v:[400,\"400i\"],f:\"serif\"},{n:\"Rouge Script\",v:[400],f:\"handwriting\"},{n:\"Rowdies\",v:[\"300\",400,700],f:\"display\"},{n:\"Rozha One\",v:[400],f:\"serif\"},{n:\"Rubik\",v:[\"300\",400,500,600,700,800,900,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Rubik Beastly\",v:[400],f:\"display\"},{n:\"Rubik Bubbles\",v:[400],f:\"display\"},{n:\"Rubik Glitch\",v:[400],f:\"display\"},{n:\"Rubik Microbe\",v:[400],f:\"display\"},{n:\"Rubik Mono One\",v:[400],f:\"sans-serif\"},{n:\"Rubik Moonrocks\",v:[400],f:\"display\"},{n:\"Rubik Puddles\",v:[400],f:\"display\"},{n:\"Rubik Wet Paint\",v:[400],f:\"display\"},{n:\"Ruda\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Rufina\",v:[400,700],f:\"serif\"},{n:\"Ruge Boogie\",v:[400],f:\"handwriting\"},{n:\"Ruluko\",v:[400],f:\"sans-serif\"},{n:\"Rum Raisin\",v:[400],f:\"sans-serif\"},{n:\"Ruslan Display\",v:[400],f:\"display\"},{n:\"Russo One\",v:[400],f:\"sans-serif\"},{n:\"Ruthie\",v:[400],f:\"handwriting\"},{n:\"Rye\",v:[400],f:\"display\"},{n:\"Reem Kufi Fun\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Reem Kufi Ink\",v:[400],f:\"sans-serif\"},{n:\"Rubik 80s Fade\",v:[400],f:\"display\"},{n:\"Rubik Burned\",v:[400],f:\"display\"},{n:\"Rubik Dirt\",v:[400],f:\"display\"},{n:\"Rubik Distressed\",v:[400],f:\"display\"},{n:\"Rubik Gemstones\",v:[400],f:\"display\"},{n:\"Rubik Iso\",v:[400],f:\"display\"},{n:\"Rubik Marker Hatch\",v:[400],f:\"display\"},{n:\"Rubik Maze\",v:[400],f:\"display\"},{n:\"Rubik Pixels\",v:[400],f:\"display\"},{n:\"Rubik Spray Paint\",v:[400],f:\"display\"},{n:\"Rubik Storm\",v:[400],f:\"display\"},{n:\"Rubik Vinyl\",v:[400],f:\"display\"},{n:\"STIX Two Text\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Sacramento\",v:[400],f:\"handwriting\"},{n:\"Sahitya\",v:[400,700],f:\"serif\"},{n:\"Sail\",v:[400],f:\"display\"},{n:\"Saira\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Saira Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Saira Extra Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Saira Semi Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Saira Stencil One\",v:[400],f:\"display\"},{n:\"Salsa\",v:[400],f:\"display\"},{n:\"Sanchez\",v:[400,\"400i\"],f:\"serif\"},{n:\"Sancreek\",v:[400],f:\"display\"},{n:\"Sansita\",v:[400,\"400i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Sansita Swashed\",v:[\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Sarabun\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"sans-serif\"},{n:\"Sarala\",v:[400,700],f:\"sans-serif\"},{n:\"Sarina\",v:[400],f:\"display\"},{n:\"Sarpanch\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Sassy Frass\",v:[400],f:\"handwriting\"},{n:\"Satisfy\",v:[400],f:\"handwriting\"},{n:\"Sawarabi Gothic\",v:[400],f:\"sans-serif\"},{n:\"Sawarabi Mincho\",v:[400],f:\"serif\"},{n:\"Scada\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Scheherazade New\",v:[400,500,600,700],f:\"serif\"},{n:\"Schoolbell\",v:[400],f:\"handwriting\"},{n:\"Scope One\",v:[400],f:\"serif\"},{n:\"Seaweed Script\",v:[400],f:\"display\"},{n:\"Secular One\",v:[400],f:\"sans-serif\"},{n:\"Sedgwick Ave\",v:[400],f:\"handwriting\"},{n:\"Sedgwick Ave Display\",v:[400],f:\"handwriting\"},{n:\"Sen\",v:[400,700,800],f:\"sans-serif\"},{n:\"Send Flowers\",v:[400],f:\"handwriting\"},{n:\"Sevillana\",v:[400],f:\"display\"},{n:\"Seymour One\",v:[400],f:\"sans-serif\"},{n:\"Shadows Into Light\",v:[400],f:\"handwriting\"},{n:\"Shadows Into Light Two\",v:[400],f:\"handwriting\"},{n:\"Shalimar\",v:[400],f:\"handwriting\"},{n:\"Shanti\",v:[400],f:\"sans-serif\"},{n:\"Share\",v:[400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Share Tech\",v:[400],f:\"sans-serif\"},{n:\"Share Tech Mono\",v:[400],f:\"monospace\"},{n:\"Shippori Antique\",v:[400],f:\"sans-serif\"},{n:\"Shippori Antique B1\",v:[400],f:\"sans-serif\"},{n:\"Shippori Mincho\",v:[400,500,600,700,800],f:\"serif\"},{n:\"Shippori Mincho B1\",v:[400,500,600,700,800],f:\"serif\"},{n:\"Shojumaru\",v:[400],f:\"display\"},{n:\"Short Stack\",v:[400],f:\"handwriting\"},{n:\"Shrikhand\",v:[400],f:\"display\"},{n:\"Siemreap\",v:[400],f:\"display\"},{n:\"Sigmar One\",v:[400],f:\"display\"},{n:\"Signika\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Signika Negative\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Simonetta\",v:[400,\"400i\",900,\"900i\"],f:\"display\"},{n:\"Single Day\",v:[400],f:\"display\"},{n:\"Sintony\",v:[400,700],f:\"sans-serif\"},{n:\"Sirin Stencil\",v:[400],f:\"display\"},{n:\"Six Caps\",v:[400],f:\"sans-serif\"},{n:\"Skranji\",v:[400,700],f:\"display\"},{n:\"Slabo 13px\",v:[400],f:\"serif\"},{n:\"Slabo 27px\",v:[400],f:\"serif\"},{n:\"Slackey\",v:[400],f:\"display\"},{n:\"Smokum\",v:[400],f:\"display\"},{n:\"Smooch\",v:[400],f:\"handwriting\"},{n:\"Smooch Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Smythe\",v:[400],f:\"display\"},{n:\"Sniglet\",v:[400,800],f:\"display\"},{n:\"Snippet\",v:[400],f:\"sans-serif\"},{n:\"Snowburst One\",v:[400],f:\"display\"},{n:\"Sofadi One\",v:[400],f:\"display\"},{n:\"Sofia\",v:[400],f:\"handwriting\"},{n:\"Solway\",v:[\"300\",400,500,700,800],f:\"serif\"},{n:\"Song Myung\",v:[400],f:\"serif\"},{n:\"Sonsie One\",v:[400],f:\"display\"},{n:\"Sora\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Sorts Mill Goudy\",v:[400,\"400i\"],f:\"serif\"},{n:\"Source Code Pro\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"monospace\"},{n:\"Source Sans 3\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Source Sans Pro\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",600,\"600i\",700,\"700i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Source Serif 4\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Source Serif Pro\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",600,\"600i\",700,\"700i\",900,\"900i\"],f:\"serif\"},{n:\"Space Grotesk\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Space Mono\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Special Elite\",v:[400],f:\"display\"},{n:\"Spectral\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"serif\"},{n:\"Spectral SC\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"serif\"},{n:\"Spicy Rice\",v:[400],f:\"display\"},{n:\"Spinnaker\",v:[400],f:\"sans-serif\"},{n:\"Spirax\",v:[400],f:\"display\"},{n:\"Spline Sans\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Squada One\",v:[400],f:\"display\"},{n:\"Square Peg\",v:[400],f:\"handwriting\"},{n:\"Sree Krushnadevaraya\",v:[400],f:\"serif\"},{n:\"Sriracha\",v:[400],f:\"handwriting\"},{n:\"Srisakdi\",v:[400,700],f:\"display\"},{n:\"Staatliches\",v:[400],f:\"display\"},{n:\"Stalemate\",v:[400],f:\"handwriting\"},{n:\"Stalinist One\",v:[400],f:\"display\"},{n:\"Stardos Stencil\",v:[400,700],f:\"display\"},{n:\"Stick\",v:[400],f:\"sans-serif\"},{n:\"Stick No Bills\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Stint Ultra Condensed\",v:[400],f:\"display\"},{n:\"Stint Ultra Expanded\",v:[400],f:\"display\"},{n:\"Stoke\",v:[\"300\",400],f:\"serif\"},{n:\"Strait\",v:[400],f:\"sans-serif\"},{n:\"Style Script\",v:[400],f:\"handwriting\"},{n:\"Stylish\",v:[400],f:\"sans-serif\"},{n:\"Sue Ellen Francisco\",v:[400],f:\"handwriting\"},{n:\"Suez One\",v:[400],f:\"serif\"},{n:\"Sulphur Point\",v:[\"300\",400,700],f:\"sans-serif\"},{n:\"Sumana\",v:[400,700],f:\"serif\"},{n:\"Sunflower\",v:[\"300\",500,700],f:\"sans-serif\"},{n:\"Sunshiney\",v:[400],f:\"handwriting\"},{n:\"Supermercado One\",v:[400],f:\"display\"},{n:\"Sura\",v:[400,700],f:\"serif\"},{n:\"Suranna\",v:[400],f:\"serif\"},{n:\"Suravaram\",v:[400],f:\"serif\"},{n:\"Suwannaphum\",v:[\"100\",\"300\",400,700,900],f:\"serif\"},{n:\"Swanky and Moo Moo\",v:[400],f:\"handwriting\"},{n:\"Syncopate\",v:[400,700],f:\"sans-serif\"},{n:\"Syne\",v:[400,500,600,700,800],f:\"sans-serif\"},{n:\"Syne Mono\",v:[400],f:\"monospace\"},{n:\"Syne Tactile\",v:[400],f:\"display\"},{n:\"Schibsted Grotesk\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Shantell Sans\",v:[300,400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"display\"},{n:\"Sigmar\",v:[400],f:\"display\"},{n:\"Silkscreen\",v:[400,700],f:\"display\"},{n:\"Slackside One\",v:[400],f:\"handwriting\"},{n:\"Sofia Sans\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Sofia Sans Condensed\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Sofia Sans Extra Condensed\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Sofia Sans Semi Condensed\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Solitreo\",v:[400],f:\"handwriting\"},{n:\"Sono\",v:[200,300,400,500,600,700,800],f:\"sans-serif\"},{n:\"Splash\",v:[400],f:\"handwriting\"},{n:\"Spline Sans Mono\",v:[300,400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"monospace\"},{n:\"Tajawal\",v:[\"200\",\"300\",400,500,700,800,900],f:\"sans-serif\"},{n:\"Tangerine\",v:[400,700],f:\"handwriting\"},{n:\"Tapestry\",v:[400],f:\"handwriting\"},{n:\"Taprom\",v:[400],f:\"display\"},{n:\"Tauri\",v:[400],f:\"sans-serif\"},{n:\"Taviraj\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"serif\"},{n:\"Teko\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Telex\",v:[400],f:\"sans-serif\"},{n:\"Tenali Ramakrishna\",v:[400],f:\"sans-serif\"},{n:\"Tenor Sans\",v:[400],f:\"sans-serif\"},{n:\"Text Me One\",v:[400],f:\"sans-serif\"},{n:\"Texturina\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Thasadith\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"The Girl Next Door\",v:[400],f:\"handwriting\"},{n:\"The Nautigal\",v:[400,700],f:\"handwriting\"},{n:\"Tienne\",v:[400,700,900],f:\"serif\"},{n:\"Tillana\",v:[400,500,600,700,800],f:\"handwriting\"},{n:\"Timmana\",v:[400],f:\"sans-serif\"},{n:\"Tinos\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Titan One\",v:[400],f:\"display\"},{n:\"Titillium Web\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",600,\"600i\",700,\"700i\",900],f:\"sans-serif\"},{n:\"Tomorrow\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Tourney\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"display\"},{n:\"Trade Winds\",v:[400],f:\"display\"},{n:\"Train One\",v:[400],f:\"display\"},{n:\"Trirong\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"serif\"},{n:\"Trispace\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Trocchi\",v:[400],f:\"serif\"},{n:\"Trochut\",v:[400,\"400i\",700],f:\"display\"},{n:\"Truculenta\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Trykker\",v:[400],f:\"serif\"},{n:\"Tulpen One\",v:[400],f:\"display\"},{n:\"Turret Road\",v:[\"200\",\"300\",400,500,700,800],f:\"display\"},{n:\"Twinkle Star\",v:[400],f:\"handwriting\"},{n:\"Tai Heritage Pro\",v:[400,700],f:\"serif\"},{n:\"Tilt Neon\",v:[400],f:\"display\"},{n:\"Tilt Prism\",v:[400],f:\"display\"},{n:\"Tilt Warp\",v:[400],f:\"display\"},{n:\"Tiro Bangla\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Devanagari Hindi\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Devanagari Marathi\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Devanagari Sanskrit\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Gurmukhi\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Kannada\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Tamil\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Telugu\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tsukimi Rounded\",v:[300,400,500,600,700],f:\"sans-serif\"},{n:\"Ubuntu\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Ubuntu Condensed\",v:[400],f:\"sans-serif\"},{n:\"Ubuntu Mono\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Uchen\",v:[400],f:\"serif\"},{n:\"Ultra\",v:[400],f:\"serif\"},{n:\"Uncial Antiqua\",v:[400],f:\"display\"},{n:\"Underdog\",v:[400],f:\"display\"},{n:\"Unica One\",v:[400],f:\"display\"},{n:\"UnifrakturCook\",v:[700],f:\"display\"},{n:\"UnifrakturMaguntia\",v:[400],f:\"display\"},{n:\"Unkempt\",v:[400,700],f:\"display\"},{n:\"Unlock\",v:[400],f:\"display\"},{n:\"Unna\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Updock\",v:[400],f:\"handwriting\"},{n:\"Urbanist\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Unbounded\",v:[200,300,400,500,600,700,800,900],f:\"display\"},{n:\"VT323\",v:[400],f:\"monospace\"},{n:\"Vampiro One\",v:[400],f:\"display\"},{n:\"Varela\",v:[400],f:\"sans-serif\"},{n:\"Varela Round\",v:[400],f:\"sans-serif\"},{n:\"Varta\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Vast Shadow\",v:[400],f:\"display\"},{n:\"Vazirmatn\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Vesper Libre\",v:[400,500,700,900],f:\"serif\"},{n:\"Viaoda Libre\",v:[400],f:\"display\"},{n:\"Vibes\",v:[400],f:\"display\"},{n:\"Vibur\",v:[400],f:\"handwriting\"},{n:\"Vidaloka\",v:[400],f:\"serif\"},{n:\"Viga\",v:[400],f:\"sans-serif\"},{n:\"Voces\",v:[400],f:\"display\"},{n:\"Volkhov\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Vollkorn\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Vollkorn SC\",v:[400,600,700,900],f:\"serif\"},{n:\"Voltaire\",v:[400],f:\"sans-serif\"},{n:\"Vujahday Script\",v:[400],f:\"handwriting\"},{n:\"Vina Sans\",v:[400],f:\"display\"},{n:\"Waiting for the Sunrise\",v:[400],f:\"handwriting\"},{n:\"Wallpoet\",v:[400],f:\"display\"},{n:\"Walter Turncoat\",v:[400],f:\"handwriting\"},{n:\"Warnes\",v:[400],f:\"display\"},{n:\"Water Brush\",v:[400],f:\"handwriting\"},{n:\"Waterfall\",v:[400],f:\"handwriting\"},{n:\"Wellfleet\",v:[400],f:\"display\"},{n:\"Wendy One\",v:[400],f:\"sans-serif\"},{n:\"Whisper\",v:[400],f:\"handwriting\"},{n:\"WindSong\",v:[400,500],f:\"handwriting\"},{n:\"Wire One\",v:[400],f:\"sans-serif\"},{n:\"Work Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Wix Madefor Display\",v:[400,500,600,700,800],f:\"sans-serif\"},{n:\"Wix Madefor Text\",v:[400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"sans-serif\"},{n:\"Xanh Mono\",v:[400,\"400i\"],f:\"monospace\"},{n:\"Yaldevi\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Yanone Kaffeesatz\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Yantramanav\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Yatra One\",v:[400],f:\"display\"},{n:\"Yellowtail\",v:[400],f:\"handwriting\"},{n:\"Yeon Sung\",v:[400],f:\"display\"},{n:\"Yeseva One\",v:[400],f:\"display\"},{n:\"Yesteryear\",v:[400],f:\"handwriting\"},{n:\"Yomogi\",v:[400],f:\"handwriting\"},{n:\"Yrsa\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Yuji Boku\",v:[400],f:\"serif\"},{n:\"Yuji Mai\",v:[400],f:\"serif\"},{n:\"Yuji Syuku\",v:[400],f:\"serif\"},{n:\"Yusei Magic\",v:[400],f:\"sans-serif\"},{n:\"Ysabeau\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"ZCOOL KuaiLe\",v:[400],f:\"sans-serif\"},{n:\"ZCOOL QingKe HuangYou\",v:[400],f:\"sans-serif\"},{n:\"ZCOOL XiaoWei\",v:[400],f:\"sans-serif\"},{n:\"Zen Antique\",v:[400],f:\"serif\"},{n:\"Zen Antique Soft\",v:[400],f:\"serif\"},{n:\"Zen Dots\",v:[400],f:\"display\"},{n:\"Zen Kaku Gothic Antique\",v:[\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Zen Kaku Gothic New\",v:[\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Zen Kurenaido\",v:[400],f:\"sans-serif\"},{n:\"Zen Loop\",v:[400,\"400i\"],f:\"display\"},{n:\"Zen Maru Gothic\",v:[\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Zen Old Mincho\",v:[400,500,600,700,900],f:\"serif\"},{n:\"Zen Tokyo Zoo\",v:[400],f:\"display\"},{n:\"Zeyada\",v:[400],f:\"handwriting\"},{n:\"Zhi Mang Xing\",v:[400],f:\"handwriting\"},{n:\"Zilla Slab\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"Zilla Slab Highlight\",v:[400,700],f:\"display\"}]},7763:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294);const r={};r.left=(0,a.createElement)(\"svg\",{width:24,height:24,xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M4 19.8h8.9v-1.5H4v1.5zm8.9-15.6H4v1.5h8.9V4.2zm-8.9 7v1.5h16v-1.5H4z\"})),r.center=(0,a.createElement)(\"svg\",{width:24,height:24,xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.4 4.2H7.6v1.5h8.9V4.2zM4 11.2v1.5h16v-1.5H4zm3.6 8.6h8.9v-1.5H7.6v1.5z\"})),r.right=(0,a.createElement)(\"svg\",{width:24,height:24,xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.1 19.8H20v-1.5h-8.9v1.5zm0-15.6v1.5H20V4.2h-8.9zM4 12.8h16v-1.5H4v1.5z\"})),r.spacing=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:24,height:24,fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"#1E1E1E\",strokeWidth:\"1.5\",d:\"m10 8-3.3 3.3a1 1 0 0 0 0 1.4L10 16m4-8 3.3 3.3a1 1 0 0 1 0 1.4L14 16m-7.59-4H17.6M20 4v16M4 4v16\"})),r.updateLink=(0,a.createElement)(\"svg\",{style:{height:\"20px\",width:\"20px\"},xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"20\",height:\"20\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fill:\"#070707\",fillRule:\"evenodd\",d:\"M12.95 2.93a5.75 5.75 0 0 1 8.13 8.13v.01l-3 3a5.75 5.75 0 0 1-8.68-.62.75.75 0 0 1 1.2-.9 4.25 4.25 0 0 0 6.41.46l3-3a4.25 4.25 0 0 0-6.02-6l-1.71 1.7a.75.75 0 1 1-1.06-1.06l1.73-1.72Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fill:\"#070707\",fillRule:\"evenodd\",d:\"M7.99 8.6a5.75 5.75 0 0 1 6.61 1.95.75.75 0 1 1-1.2.9 4.25 4.25 0 0 0-6.41-.46l-3 3a4.25 4.25 0 0 0 6.01 6l1.71-1.7a.75.75 0 0 1 1.06 1.06l-1.72 1.72a5.75 5.75 0 0 1-8.13-8.13l.01-.01 3-3a5.75 5.75 0 0 1 2.06-1.32Z\",clipRule:\"evenodd\"})),r.addSubmenu=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"16\",height:\"16\",fill:\"none\",viewBox:\"0 0 16 16\"},(0,a.createElement)(\"g\",{fill:\"#070707\",fillRule:\"evenodd\",clipPath:\"url(#a)\",clipRule:\"evenodd\"},(0,a.createElement)(\"path\",{d:\"M.17 2C.17.99.99.17 2 .17h12c1.01 0 1.83.82 1.83 1.83v1.33c0 1.02-.82 1.84-1.83 1.84H2A1.83 1.83 0 0 1 .17 3.33V2ZM2 1.17a.83.83 0 0 0-.83.83v1.33c0 .46.37.84.83.84h12c.46 0 .83-.38.83-.84V2a.83.83 0 0 0-.83-.83H2ZM5.5 8c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83v.67c0 1-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 8.67V8Zm1.83-.83A.83.83 0 0 0 6.5 8v.67c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83V8a.83.83 0 0 0-.83-.83H7.33ZM5.5 13.33c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83V14c0 1.01-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 14v-.67Zm1.83-.83a.83.83 0 0 0-.83.83V14c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83v-.67a.83.83 0 0 0-.83-.83H7.33Z\"}),(0,a.createElement)(\"path\",{d:\"M2.17 13V4.67h1V13c0 .1.07.17.16.17H6.5v1H3.33c-.64 0-1.16-.53-1.16-1.17Z\"}),(0,a.createElement)(\"path\",{d:\"M2.17 7.83H6.5v1H2.17v-1Z\"})),(0,a.createElement)(\"defs\",null,(0,a.createElement)(\"clipPath\",{id:\"a\"},(0,a.createElement)(\"path\",{fill:\"#fff\",d:\"M0 0h16v16H0z\"})))),r.textTab=(0,a.createElement)(\"span\",{className:\"ultp-tab-button\"},(0,a.createElement)(\"svg\",{width:24,height:24,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4 18V6C4 4.89543 4.89543 4 6 4H14.8639C15.3943 4 15.903 4.21071 16.2781 4.58579L19.4142 7.72191C19.7893 8.09698 20 8.60569 20 9.13612V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M8 15H16\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M8 12H16\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M8 9H14\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"})),(0,a.createElement)(\"span\",null,\"Text\")),r.style=(0,a.createElement)(\"span\",{className:\"ultp-tab-button\"},(0,a.createElement)(\"svg\",{width:24,height:24,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"circle\",{cx:\"16.25\",cy:\"9.25\",r:\"1.25\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z\",fill:\"#1E1E1E\"})),(0,a.createElement)(\"span\",null,\"Style\")),r.settings3=(0,a.createElement)(\"span\",{className:\"ultp-tab-button\"},(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M20.0733 7.98829L19.5027 6.9982C19.02 6.16044 17.9503 5.87144 17.1114 6.35213C16.7121 6.58737 16.2356 6.65411 15.787 6.53764C15.3384 6.42116 14.9546 6.13103 14.7201 5.73123C14.5693 5.47711 14.4882 5.18767 14.4852 4.89218C14.4988 4.41843 14.3201 3.95934 13.9897 3.61951C13.6593 3.27967 13.2055 3.08802 12.7316 3.08821H11.5821C11.1177 3.08821 10.6725 3.27323 10.345 3.60234C10.0175 3.93145 9.83459 4.37752 9.83682 4.84183C9.82306 5.80049 9.04195 6.57039 8.08319 6.57029C7.7877 6.56722 7.49826 6.48617 7.24414 6.33535C6.40523 5.85465 5.33553 6.14366 4.85284 6.98142L4.24033 7.98829C3.75822 8.825 4.04329 9.89403 4.87801 10.3796C5.42059 10.6928 5.75483 11.2718 5.75483 11.8983C5.75483 12.5248 5.42059 13.1037 4.87801 13.417C4.04435 13.8993 3.75897 14.9657 4.24033 15.7999L4.81927 16.7984C5.04543 17.2064 5.42489 17.5076 5.87369 17.6351C6.32248 17.7627 6.8036 17.7061 7.21058 17.478C7.61067 17.2445 8.08743 17.1806 8.5349 17.3003C8.98238 17.4201 9.36347 17.7136 9.59349 18.1157C9.74431 18.3698 9.82536 18.6592 9.82843 18.9547C9.82843 19.9232 10.6136 20.7083 11.5821 20.7083H12.7316C13.6968 20.7083 14.4806 19.9283 14.4852 18.9631C14.4829 18.4973 14.667 18.05 14.9963 17.7206C15.3257 17.3913 15.773 17.2073 16.2388 17.2095C16.5336 17.2174 16.8218 17.2981 17.0779 17.4444C17.9146 17.9265 18.9836 17.6415 19.4692 16.8067L20.0733 15.7999C20.3071 15.3985 20.3713 14.9205 20.2516 14.4717C20.1319 14.0228 19.8382 13.6402 19.4356 13.4086C19.033 13.1769 18.7393 12.7943 18.6196 12.3455C18.4999 11.8967 18.5641 11.4186 18.7979 11.0173C18.95 10.7518 19.1701 10.5317 19.4356 10.3796C20.2653 9.89429 20.5497 8.83151 20.0733 7.99668V7.98829Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12.1606 14.3147C13.4952 14.3147 14.5771 13.2329 14.5771 11.8983C14.5771 10.5637 13.4952 9.4818 12.1606 9.4818C10.826 9.4818 9.74414 10.5637 9.74414 11.8983C9.74414 13.2329 10.826 14.3147 12.1606 14.3147Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),(0,a.createElement)(\"span\",null,\"Settings\")),r.add=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:22,height:24,viewBox:\"0 0 22 24\",fill:\"none\"},(0,a.createElement)(\"g\",{clipPath:\"url(#clip0_16_9344)\"},(0,a.createElement)(\"path\",{d:\"M15.7131 0.87241C16.6876 0.87241 17.4896 1.67503 17.4896 2.66957V17.6401C17.4896 18.626 16.6962 19.4373 15.7131 19.4373H2.63896C1.66445 19.4373 0.862407 18.6347 0.862407 17.6401V2.66957C0.862407 1.68375 1.65582 0.87241 2.63896 0.87241H15.7131ZM15.7131 0H2.63896C1.1815 0 0 1.1952 0 2.66957V17.6401C0 19.1145 1.1815 20.3097 2.63896 20.3097H15.7131C17.1705 20.3097 18.352 19.1145 18.352 17.6401V2.66957C18.352 1.1952 17.1705 0 15.7131 0Z\",fill:\"black\"}),(0,a.createElement)(\"path\",{d:\"M19.2921 10.2683H11.1337C9.63817 10.2683 8.42578 11.4948 8.42578 13.0077V21.2607C8.42578 22.7736 9.63817 24 11.1337 24H19.2921C20.7877 24 22.0001 22.7736 22.0001 21.2607V13.0077C22.0001 11.4948 20.7877 10.2683 19.2921 10.2683Z\",fill:\"black\"}),(0,a.createElement)(\"path\",{d:\"M15.7047 13.9934H14.7129V20.2835H15.7047V13.9934Z\",fill:\"white\"}),(0,a.createElement)(\"path\",{d:\"M18.3264 16.6282H12.1084V17.6314H18.3264V16.6282Z\",fill:\"white\"})),(0,a.createElement)(\"defs\",null,(0,a.createElement)(\"clipPath\",{id:\"clip0_16_9344\"},(0,a.createElement)(\"rect\",{width:22,height:24,fill:\"white\"})))),r.setting=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",role:\"img\",\"aria-hidden\":\"true\",focusable:\"false\"},(0,a.createElement)(\"path\",{d:\"M14.5 13.8c-1.1 0-2.1.7-2.4 1.8H4V17h8.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20v-1.5h-3.1c-.3-1-1.3-1.7-2.4-1.7zM11.9 7c-.3-1-1.3-1.8-2.4-1.8S7.4 6 7.1 7H4v1.5h3.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20V7h-8.1z\"})),r.styleIcon=(0,a.createElement)(\"svg\",{width:24,height:24,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",style:{fill:\"white\"}},(0,a.createElement)(\"path\",{d:\"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"circle\",{cx:\"16.25\",cy:\"9.25\",r:\"1.25\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z\",fill:\"#1E1E1E\"})),r.chatgpt=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",style:{fill:\"#10a37f\"},width:\"25\",height:\"25.06\",viewBox:\"0 0 25 25.06\"},(0,a.createElement)(\"path\",{\"data-name\":\"Path 146\",d:\"M24.795 12.941a6.153 6.153 0 0 0-1.519-2.7A6.07 6.07 0 0 0 22.8 5.1a6.327 6.327 0 0 0-6.88-2.917A6.28 6.28 0 0 0 5.139 4.471 6.223 6.223 0 0 0 .846 7.45a6.137 6.137 0 0 0 .862 7.358 6.07 6.07 0 0 0 .479 5.138 6.281 6.281 0 0 0 6.88 2.91A6.278 6.278 0 0 0 19.851 20.6a6.23 6.23 0 0 0 4.293-2.979 6.092 6.092 0 0 0 .651-4.682m-4.888 5.947v-6.22a.639.639 0 0 0-.285-.621L13.913 8.82l2.061-1.17L20.8 10.4a4.636 4.636 0 0 1 2.209 2.854 4.566 4.566 0 0 1-.475 3.517 4.662 4.662 0 0 1-2.185 1.943c-.146.063-.3.122-.446.178M5.083 6.178v6.2a.624.624 0 0 0 .279.622l5.708 3.226L9.011 17.4l-4.852-2.752a4.639 4.639 0 0 1-2.21-2.854 4.562 4.562 0 0 1 .473-3.514 4.687 4.687 0 0 1 1.784-1.736 4.551 4.551 0 0 1 .877-.367m11.268.023a.714.714 0 0 0-.707 0L9.855 9.5V7.1l4.92-2.748a4.79 4.79 0 0 1 6.485 1.721 4.574 4.574 0 0 1 .616 2.648c-.014.19-.039.393-.07.58zm-3.859 3.47 2.637 1.5v2.756l-2.637 1.457-2.631-1.5v-2.741zM8.8 6.067a.684.684 0 0 0-.3.624v6.4l-2.082-1.137V6.587a1.017 1.017 0 0 0 0-.112 4.75 4.75 0 0 1 7.364-3.911 6.33 6.33 0 0 1 .547.412zm-5.614 9.692 5.448 3.1a.713.713 0 0 0 .707 0l5.8-3.294v2.4l-4.927 2.729a4.79 4.79 0 0 1-6.485-1.713 4.573 4.573 0 0 1-.588-2.917c.013-.1.031-.2.05-.3m13 3.226a.647.647 0 0 0 .3-.627v-6.4l2.07 1.137v5.367a.637.637 0 0 0 0 .112 4.75 4.75 0 0 1-7.441 3.851 7.315 7.315 0 0 1-.467-.356z\",transform:\"translate(0 .001)\"})),r.fs_comment=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"50\",height:\"50.003\",viewBox:\"0 0 50 50.003\"},(0,a.createElement)(\"path\",{id:\"Path_2150\",\"data-name\":\"Path 2150\",d:\"M25,11.6c-21.64,0-25,2.79-25,20.8C0,46.131,1.963,51.017,12.476,52.567V61.6l10.646-8.4c.611.005,1.235.008,1.878.008,21.65,0,25-2.8,25-20.81S46.65,11.6,25,11.6m0,18.04a2.765,2.765,0,1,1-2.76,2.76A2.768,2.768,0,0,1,25,29.642m-9.53,0a2.765,2.765,0,1,1-2.76,2.76,2.768,2.768,0,0,1,2.76-2.76m19.06,5.53A2.765,2.765,0,1,1,37.3,32.4a2.768,2.768,0,0,1-2.77,2.77\",transform:\"translate(0 -11.602)\",fill:\"#037FFF\"})),r.fs_comment_selected=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"70\",height:\"70\",viewBox:\"0 0 70 70\"},(0,a.createElement)(\"g\",{id:\"Group_4357\",\"data-name\":\"Group 4357\",transform:\"translate(-221.11 2002)\"},(0,a.createElement)(\"path\",{id:\"Path_2154\",\"data-name\":\"Path 2154\",d:\"M172.35,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2155\",\"data-name\":\"Path 2155\",d:\"M181.88,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2156\",\"data-name\":\"Path 2156\",d:\"M191.41,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2157\",\"data-name\":\"Path 2157\",d:\"M204.65,0H153.58a9.468,9.468,0,0,0-9.47,9.46V60.54A9.468,9.468,0,0,0,153.58,70h51.07a9.46,9.46,0,0,0,9.46-9.46V9.46A9.46,9.46,0,0,0,204.65,0M179.11,51.61c-.64,0-1.26,0-1.87-.01L166.59,60V50.96c-10.51-1.55-12.48-6.43-12.48-20.16,0-18.01,3.36-20.8,25-20.8s25,2.79,25,20.8-3.35,20.81-25,20.81\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}))),r.fs_suggestion=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"50.001\",height:\"49.997\",viewBox:\"0 0 50.001 49.997\"},(0,a.createElement)(\"g\",{id:\"Group_4358\",\"data-name\":\"Group 4358\",transform:\"translate(-137.503 1994.592)\"},(0,a.createElement)(\"path\",{id:\"Path_2151\",\"data-name\":\"Path 2151\",d:\"M104.722,20.306H89.545V24.08a4.274,4.274,0,0,1-4.267,4.267H76.261a4.218,4.218,0,0,1-1.812-.424,4.272,4.272,0,0,1-4.107,3.166h-6.1V51.623A5.773,5.773,0,0,0,70.021,57.4h34.7a5.78,5.78,0,0,0,5.782-5.782V26.1a5.789,5.789,0,0,0-5.782-5.793M90.13,47.791H76.835a1.692,1.692,0,0,1,0-3.384H90.13a1.692,1.692,0,0,1,0,3.384m7.778-7.915H76.835a1.692,1.692,0,0,1,0-3.384H97.908a1.692,1.692,0,0,1,0,3.384\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2152\",\"data-name\":\"Path 2152\",d:\"M86.1,24.077V15.065a.827.827,0,0,0-.827-.827H80.619a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194h-2a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366v9.646a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2153\",\"data-name\":\"Path 2153\",d:\"M71.169,26.82V17.808a.827.827,0,0,0-.827-.827H65.684a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194H64.392a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366V26.82a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}))),r.fs_suggestion_selected=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"70\",height:\"70\",viewBox:\"0 0 70 70\"},(0,a.createElement)(\"path\",{id:\"Path_2158\",\"data-name\":\"Path 2158\",d:\"M329.38,0H278.3a9.46,9.46,0,0,0-9.46,9.46V60.54A9.46,9.46,0,0,0,278.3,70h51.08a9.466,9.466,0,0,0,9.46-9.46V9.46A9.466,9.466,0,0,0,329.38,0M293.77,17.03a.779.779,0,0,1,.09-.37l3.06-6.2a.834.834,0,0,1,.74-.46h2.01a.833.833,0,0,1,.74,1.2l-2.2,4.44a.825.825,0,0,0,.74,1.19h4.66a.828.828,0,0,1,.83.83v9.01a.828.828,0,0,1-.83.83H294.6a.828.828,0,0,1-.83-.83ZM278.84,29.41V19.77a.946.946,0,0,1,.08-.37l3.06-6.19a.82.82,0,0,1,.75-.46h2a.825.825,0,0,1,.74,1.19l-2.19,4.44a.826.826,0,0,0,.74,1.2h4.66a.824.824,0,0,1,.82.82v9.01a.826.826,0,0,1-.82.83h-9.02a.826.826,0,0,1-.82-.83m50,24.81A5.783,5.783,0,0,1,323.06,60H288.35a5.77,5.77,0,0,1-5.78-5.78V33.68h6.11a4.26,4.26,0,0,0,4.1-3.16,4.257,4.257,0,0,0,1.81.42h9.02a4.274,4.274,0,0,0,4.27-4.27V22.9h15.18a5.791,5.791,0,0,1,5.78,5.79Zm-12.6-15.13H295.17a1.69,1.69,0,1,0,0,3.38h21.07a1.69,1.69,0,1,0,0-3.38M308.46,47H295.17a1.7,1.7,0,0,0,0,3.39h13.29a1.7,1.7,0,0,0,0-3.39\",transform:\"translate(-268.84)\",fill:\"#037FFF\"})),r.grid_col1=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"22\",height:\"22\",viewBox:\"0 0 22 22\",fill:\"currentColor\"},(0,a.createElement)(\"g\",{transform:\"translate(-770 -381)\"},(0,a.createElement)(\"rect\",{width:\"10\",height:\"10\",transform:\"translate(770 381)\"}),(0,a.createElement)(\"rect\",{width:\"10\",height:\"10\",transform:\"translate(770 393)\"}),(0,a.createElement)(\"rect\",{width:\"10\",height:\"10\",transform:\"translate(782 381)\"}),(0,a.createElement)(\"rect\",{width:\"10\",height:\"10\",transform:\"translate(782 393)\"}))),r.grid_col2=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"22\",height:\"22\",viewBox:\"0 0 22 22\",fill:\"currentColor\"},(0,a.createElement)(\"g\",{transform:\"translate(-858 -381)\"},(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(858 381)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(858 389)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(858 397)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(866 381)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(866 389)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(866 397)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(874 381)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(874 389)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(874 397)\"}))),r.grid_col3=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"22\",height:\"22\",viewBox:\"0 0 22 22\"},(0,a.createElement)(\"g\",{transform:\"translate(-909 -381)\"},(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(909 381)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(909 387)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(909 393)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(909 399)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(915 381)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(915 387)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(915 393)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(915 399)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(921 381)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(921 387)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(921 393)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(921 399)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(927 381)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(927 387)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(927 393)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(927 399)\"}))),r.rocketPro=(0,a.createElement)(\"svg\",{width:\"16\",height:\"16\",viewBox:\"0 0 16 16\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M10.7991 7.20004C9.69681 7.20004 8.7993 6.30253 8.7993 5.20024C8.7993 4.09795 9.69681 3.20044 10.7991 3.20044C11.9014 3.20044 12.7989 4.09795 12.7989 5.20024C12.7989 6.30253 11.9014 7.20004 10.7991 7.20004ZM10.7991 4.00036C10.1376 4.00036 9.59922 4.53871 9.59922 5.20024C9.59922 5.86177 10.1376 6.40012 10.7991 6.40012C11.4606 6.40012 11.999 5.86177 11.999 5.20024C11.999 4.53871 11.4606 4.00036 10.7991 4.00036ZM0.400132 15.9992C0.335857 15.9993 0.272494 15.984 0.215433 15.9544C0.158371 15.9248 0.109297 15.8819 0.0723848 15.8292C0.0354726 15.7766 0.0118133 15.7159 0.00341887 15.6521C-0.00497556 15.5884 0.00214312 15.5236 0.0241696 15.4632C1.25525 12.0788 2.54952 10.3621 3.87019 10.3621C4.30615 10.3621 4.7133 10.5493 5.08207 10.9173C5.66441 11.4996 5.68521 12.0796 5.60042 12.4635C5.33324 13.6698 3.62941 14.8513 0.536919 15.976C0.49303 15.9917 0.446764 15.9998 0.400132 16V15.9992ZM3.87099 11.1612C3.47503 11.1612 3.00867 11.5084 2.52312 12.1651C2.04557 12.8107 1.56562 13.7306 1.09286 14.9065C2.16076 14.4769 3.01907 14.041 3.65181 13.6066C4.50533 13.0203 4.7581 12.5667 4.81969 12.2899C4.88129 12.0132 4.7821 11.7484 4.51652 11.4828C4.30055 11.2668 4.08937 11.162 3.87019 11.162L3.87099 11.1612Z\",fill:\"white\"}),(0,a.createElement)(\"path\",{d:\"M15.5986 0.00079992C13.5228 0.00079992 11.6734 0.352765 10.1 1.0471C8.80329 1.61984 7.693 2.42296 6.79949 3.43566C6.63311 3.62444 6.47872 3.81562 6.33554 4.0076C5.64601 4.05319 4.94048 4.32757 4.23655 4.82352C3.64061 5.24268 3.04227 5.82342 2.45673 6.54894C1.47282 7.76802 0.868084 8.9703 0.842486 9.0207C0.800011 9.10558 0.789106 9.2028 0.81172 9.29498C0.834335 9.38716 0.888995 9.4683 0.96593 9.52388C1.04287 9.57947 1.13706 9.60588 1.23168 9.5984C1.3263 9.59092 1.41518 9.55003 1.48242 9.48305C1.48642 9.47905 1.86878 9.10309 2.52072 8.73433C3.05826 8.43036 3.88698 8.07279 4.88928 8.0096C5.14286 8.65833 5.86838 9.43426 6.21635 9.78222C6.56431 10.1302 7.34024 10.8557 7.98897 11.1093C7.92578 12.1116 7.56821 12.9403 7.26425 13.4779C6.89468 14.1306 6.51952 14.5121 6.51632 14.5153C6.45032 14.5828 6.41026 14.6714 6.40318 14.7655C6.3961 14.8596 6.42247 14.9532 6.47763 15.0298C6.5328 15.1064 6.61322 15.1611 6.70473 15.1842C6.79625 15.2073 6.89297 15.1973 6.97787 15.1561C7.02827 15.1305 8.23055 14.5257 9.44963 13.5418C10.1752 12.9563 10.7559 12.358 11.1751 11.762C11.671 11.0573 11.9446 10.3526 11.991 9.66303C12.1822 9.52065 12.3733 9.36626 12.5629 9.19908C13.5756 8.30557 14.3787 7.19528 14.9515 5.89861C15.6458 4.32597 15.9978 2.47575 15.9978 0.39996V0H15.5978L15.5986 0.00079992ZM2.48552 7.84641C3.24785 6.74013 4.41333 5.36826 5.7268 4.93711C5.20765 5.84661 4.93888 6.68173 4.84209 7.21128C4.02236 7.26546 3.22145 7.48132 2.48552 7.84641ZM8.15376 13.5114C8.51883 12.7761 8.73444 11.9757 8.78809 11.1565C9.31684 11.0597 10.1528 10.7909 11.0615 10.2726C10.6295 11.5836 9.25845 12.7491 8.15296 13.5114H8.15376ZM12.0342 8.59994C10.3703 10.0678 8.64731 10.3998 8.39933 10.3998C8.39773 10.3998 8.23375 10.3966 7.79219 10.0854C7.48422 9.86861 7.12506 9.55984 6.78269 9.21748C6.44033 8.87511 6.13156 8.51595 5.91478 8.20798C5.60361 7.76642 5.60041 7.60244 5.60041 7.60084C5.60041 7.35286 5.93238 5.62984 7.40023 3.966C9.15686 1.9758 11.8454 0.887111 15.1947 0.806319C15.1139 4.15558 14.026 6.84411 12.035 8.60074L12.0342 8.59994Z\",fill:\"white\"})),r.subtract=(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"#070707\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.rightMark=(0,a.createElement)(\"svg\",{width:\"14\",height:\"11\",viewBox:\"0 0 14 11\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M1 5L5 9L13 1\",stroke:\"#5ECA70\",strokeWidth:\"1.5\"})),r.plus=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z\"})),r.delete=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M18.2 6.5H16c-.4 0-.8-.3-1-.7l-.3-1c-.1-.4-.5-.7-1-.7h-3.5c-.4 0-.8.3-1 .7l-.2 1c-.1.4-.5.7-1 .7H5.8c-.5 0-.8.3-.8.7s.3.8.8.8h12.5c.4 0 .7-.3.7-.8s-.3-.7-.8-.7zM12.5 16.5c0 .3-.2.5-.5.5s-.5-.2-.5-.5V9H6l1.3 9.3c.1 1 1 1.7 2 1.7h5.5c1 0 1.8-.7 2-1.7L18 9h-5.5v7.5z\"})),r.edit=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M19.3 18.1h-5.9c-.4 0-.8.3-.8.8s.3.8.8.8h5.9c.4 0 .8-.3.8-.8s-.4-.8-.8-.8zM16.2 11c1.5-1.9 1.5-2 1.6-2 .4-.6.5-1.2.3-1.9-.1-.7-.6-1.2-1.1-1.5 0 0-1.3-1-1.4-1.1-1.1-.9-2.7-.7-3.6.4l-7.7 9.6c-.3.4-.5 1.1-.3 1.7l.7 2.8c.1.3.4.6.7.6h3c.6 0 1.2-.3 1.6-.8 3.2-4.1 5.1-6.4 6.2-7.8zm-1.5-5.3s1.4 1.1 1.5 1.2c.2.1.4.4.5.6.1.3 0 .5-.1.7 0 .1-.4.6-1.1 1.3L12.3 7l.9-1.2c.4-.4 1-.5 1.5-.1zM8.8 17.8c-.1.1-.3.2-.5.2H5.9l-.5-2.2c0-.2 0-.4.1-.5l5.8-7.2 3.2 2.5c-1.7 2.2-4.1 5.3-5.7 7.2z\"})),r.duplicate=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"24\",height:\"24\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fill:\"currentColor\",fillRule:\"evenodd\",d:\"M11 9.75c-.69 0-1.25.56-1.25 1.25v9c0 .69.56 1.25 1.25 1.25h9c.69 0 1.25-.56 1.25-1.25v-9c0-.69-.56-1.25-1.25-1.25h-9ZM8.25 11A2.75 2.75 0 0 1 11 8.25h9A2.75 2.75 0 0 1 22.75 11v9A2.75 2.75 0 0 1 20 22.75h-9A2.75 2.75 0 0 1 8.25 20v-9Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fill:\"currentColor\",fillRule:\"evenodd\",d:\"M4 2.75A1.25 1.25 0 0 0 2.75 4v9A1.25 1.25 0 0 0 4 14.25h1a.75.75 0 0 1 0 1.5H4A2.75 2.75 0 0 1 1.25 13V4A2.75 2.75 0 0 1 4 1.25h9A2.75 2.75 0 0 1 15.75 4v1a.75.75 0 0 1-1.5 0V4A1.25 1.25 0 0 0 13 2.75H4Z\",clipRule:\"evenodd\"})),r.tabLongArrowRight=(0,a.createElement)(\"svg\",{width:\"33\",height:\"8\",viewBox:\"0 0 33 8\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M32.8536 4.35355C33.0488 4.15829 33.0488 3.84171 32.8536 3.64645L29.6716 0.464466C29.4763 0.269204 29.1597 0.269204 28.9645 0.464466C28.7692 0.659728 28.7692 0.976311 28.9645 1.17157L31.7929 4L28.9645 6.82843C28.7692 7.02369 28.7692 7.34027 28.9645 7.53553C29.1597 7.7308 29.4763 7.7308 29.6716 7.53553L32.8536 4.35355ZM0.5 4V4.5H32.5V4V3.5H0.5V4Z\",fill:\"currentColor\"})),r.saveLine=(0,a.createElement)(\"svg\",{width:\"16\",height:\"16\",viewBox:\"0 0 16 16\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3 8.66667L6.33333 12L13 4\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.rightAngle=(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M17.9333 12.8C18.4667 12.4 18.4667 11.6 17.9333 11.2L8.6 4.2C7.94076 3.70557 7 4.17595 7 5V19C7 19.824 7.94076 20.2944 8.6 19.8L17.9333 12.8Z\",fill:\"currentColor\"})),r.arrowRight=(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3 12H20M14 5L21 12L14 19\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.arrowLeft=(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M21 12H4M10 5L3 12L10 19\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.fiveStar=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M9.18029 2.60415C9.5027 1.90962 10.4975 1.90962 10.8199 2.60415L12.6 6.43897C12.7314 6.72197 13.0016 6.91689 13.3134 6.95362L17.5362 7.45111C18.3006 7.54117 18.6078 8.47852 18.043 8.99753L14.9193 11.8678C14.6892 12.0792 14.5862 12.394 14.6473 12.6992L15.4762 16.8444C15.6261 17.5942 14.8215 18.1737 14.1496 17.7999L10.4414 15.7375C10.1673 15.585 9.83291 15.585 9.55876 15.7375L5.8506 17.7999C5.17864 18.1737 4.37404 17.5942 4.52397 16.8444L5.35289 12.6992C5.41393 12.394 5.31093 12.0792 5.08084 11.8678L1.95716 8.99753C1.39232 8.47852 1.69954 7.54117 2.464 7.45111L6.68675 6.95362C6.99858 6.91689 7.26875 6.72197 7.40012 6.43897L9.18029 2.60415Z\",stroke:\"currentColor\",strokeWidth:\"1.31579\",strokeLinejoin:\"round\"})),r.knowledgeBase=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4.16667 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V7.35702C17.5 6.915 17.3244 6.49107 17.0118 6.17851L13.8215 2.98816C13.5089 2.67559 13.085 2.5 12.643 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V15.8333C2.5 16.7538 3.24619 17.5 4.16667 17.5Z\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.6665 7.5L9.99984 7.5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.6665 10L13.3332 10\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.6665 12.5L11.6665 12.5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.commentCount2=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M16.6667 3.33325H3.33341C2.41294 3.33325 1.66675 4.07944 1.66675 4.99992V12.4999C1.66675 13.4204 2.41294 14.1666 3.33341 14.1666H7.08341V17.4999L11.2501 14.1666H16.6667C17.5872 14.1666 18.3334 13.4204 18.3334 12.4999V4.99992C18.3334 4.07944 17.5872 3.33325 16.6667 3.33325Z\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.66675 9.16659L6.66675 8.33325\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M10 9.16659L10 8.33325\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M13.3333 9.16659L13.3333 8.33325\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.customerSupport=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4.1665 7.5C4.1665 4.73857 6.77818 2.5 9.99984 2.5C13.2215 2.5 15.8332 4.73857 15.8332 7.5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15.8333 14.1667V15.8334C15.8333 16.7539 15.0872 17.5001 14.1667 17.5001H10\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M3.42064 7.99896L2.038 8.91951C1.80593 9.07401 1.6665 9.33434 1.6665 9.61317V12.0538C1.6665 12.3327 1.80593 12.593 2.038 12.7475L3.42064 13.6681C3.88395 13.9765 4.47696 14.0133 4.97485 13.7645C5.50087 13.5016 5.83317 12.964 5.83317 12.376V9.29101C5.83317 8.70301 5.50087 8.16542 4.97485 7.90253C4.47696 7.65369 3.88395 7.69048 3.42064 7.99896Z\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15.0248 7.90253C15.5227 7.65369 16.1158 7.69048 16.579 7.99896L17.9617 8.91951C18.1938 9.07401 18.3332 9.33434 18.3332 9.61317V12.0538C18.3332 12.3327 18.1938 12.593 17.9617 12.7475L16.579 13.6681C16.1158 13.9765 15.5227 14.0133 15.0248 13.7645C14.4988 13.5016 14.1665 12.964 14.1665 12.376V9.29101C14.1665 8.70301 14.4988 8.16542 15.0248 7.90253Z\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.facebook=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4.16667 1.875C2.90101 1.875 1.875 2.90101 1.875 4.16667V15.8333C1.875 17.099 2.90101 18.125 4.16667 18.125H9.51011V12.2281H7.91667V9.86675H9.51011V8.84924C9.51011 6.2191 10.7004 5 13.2825 5C13.7721 5 14.6168 5.09601 14.9624 5.19201V7.33258C14.78 7.31338 14.4632 7.3038 14.0696 7.3038C12.8026 7.3038 12.313 7.78373 12.313 9.03161V9.86675H14.8371L14.4034 12.2281H12.313V18.125H15.8333C17.099 18.125 18.125 17.099 18.125 15.8333V4.16667C18.125 2.90101 17.099 1.875 15.8333 1.875H4.16667Z\",fill:\"currentColor\"})),r.typography=(0,a.createElement)(\"svg\",{viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"rect\",{x:\"2.5\",y:\"2.5\",width:\"15\",height:\"15\",rx:\"1.66667\",stroke:\"currentColor\",strokeWidth:\"1.25\"}),(0,a.createElement)(\"path\",{d:\"M5.83203 7.91671V6.66671C5.83203 6.20647 6.20513 5.83337 6.66536 5.83337H13.332C13.7923 5.83337 14.1654 6.20647 14.1654 6.66671V7.91671M9.9987 5.83337V14.1667M7.91536 14.1667H12.082\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"})),r.reload=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3.43552 16C4.90822 18.9634 7.96628 21 11.5 21C16.4706 21 20.5 16.9706 20.5 12C20.5 7.02944 16.4706 3 11.5 3C7.96628 3 4.90822 5.03656 3.43552 8M8.5 8.5H3V3\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.border=(0,a.createElement)(\"svg\",{viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M8.33398 2.5H11.6673\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M2.5 11.6666L2.5 8.33329\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8.33398 17.5H11.6673\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.5 11.6666L17.5 8.33329\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M5 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M5 17.5H4.16667C3.24619 17.5 2.5 16.7538 2.5 15.8333V15\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15 2.5H15.8333C16.7538 2.5 17.5 3.24619 17.5 4.16667V5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V15\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"})),r.boxShadow=(0,a.createElement)(\"svg\",{viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"rect\",{x:\"2.5\",y:\"2.5\",width:\"12.5\",height:\"12.5\",rx:\"0.833333\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15 5H16.6667C17.1269 5 17.5 5.3731 17.5 5.83333V6.66667\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M5 15V16.6667C5 17.1269 5.3731 17.5 5.83333 17.5H6.66667\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.5007 15.8333V16.6666C17.5007 17.1268 17.1276 17.4999 16.6673 17.4999H15.834\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8.75 17.5H10.2083\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12.291 17.5H13.7493\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.5 8.75V10.2083\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.5 12.2916V13.75\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}));const o=r},2044:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});const a={example:{source:\"db-postx-featurename\",medium:\"block-feature\",campaign:\"postx-dashboard\"},db_hellobar:{source:\"db-postx-hellobar\",medium:\"summer-sale\",campaign:\"postx-dashboard\"},explore_pro_feature:{source:\"db-postx-wizard\",medium:\"explore-features\",campaign:\"postx-dashboard\"},ticket_support:{source:\"db-postx-wizard\",medium:\"ticket-support\",campaign:\"postx-dashboard\"},postx_doc:{source:\"db-postx-wizard\",medium:\"postx-doc\",campaign:\"postx-dashboard\"},addons_popup:{source:\"db-postx-addons\",medium:\"popup\",campaign:\"postx-dashboard\"},builder_popup:{source:\"db-postx-builder\",medium:\"popup-upgrade-pro\",campaign:\"postx-dashboard\"},block_docs:{source:\"db-postx-editor\",medium:\"block-docs\",campaign:\"postx-dashboard\"},blockProFeat:{source:\"db-postx-editor\",medium:\"pro-features\",campaign:\"postx-dashboard\"},blockUpgrade:{source:\"db-postx-editor\",medium:\"block-pro\",campaign:\"postx-dashboard\"},blockPatternPro:{source:\"db-postx-editor\",medium:\"blocks-premade\",campaign:\"postx-dashboard\"},blockProLay:{source:\"db-postx-editor\",medium:\"pro-layout\",campaign:\"postx-dashboard\"},wizardPatternPro:{source:\"db-postx-wizard\",medium:\"core_features-patterns\",campaign:\"postx-dashboard\"},wizardStaterPackPro:{source:\"db-postx-wizard\",medium:\"core_features-SP\",campaign:\"postx-dashboard\"},slider_2:{source:\"db-postx-editor\",medium:\"slider2-pro\",campaign:\"postx-dashboard\"},advanced_search:{source:\"db-postx-editor\",medium:\"adv_search-pro\",campaign:\"postx-dashboard\"},customFont:{source:\"db-postx-editor\",medium:\"custom-font\",campaign:\"postx-dashboard\"},dc:{source:\"db-postx-editor\",medium:\"acf-pro\",campaign:\"postx-dashboard\"},postx_dashboard_settings:{source:\"db-postx-setting\",medium:\"upgrade-pro-sidebar\",campaign:\"postx-dashboard\"},postx_dashboard_tutorials:{source:\"db-postx-tutorial\",medium:\"tutorials-upgrade_to_pro\",campaign:\"postx-dashboard\"},postx_dashboard_tutorialsdocs:{source:\"db-postx-tutorial\",medium:\"tutorials-doc\",campaign:\"postx-dashboard\"},menu_save_temp_pro:{source:\"db-postx-save-template\",medium:\"popup-upgrade\",campaign:\"postx-dashboard\"},settingsFR:{source:\"db-postx-setting\",medium:\"settings-upgrade-pro\",campaign:\"postx-dashboard\"},tutorialsFR:{source:\"db-postx-tutorial\",medium:\"tutorials-FR\",campaign:\"postx-dashboard\"},editor_darklight:{source:\"db-postx-editor\",medium:\"darklight-pro\",campaign:\"postx-dashboard\"},final_hour_sale:{source:\"db-postx-hellobar\",medium:\"final-hour-sale\",campaign:\"postx-dashboard\"},massive_sale:{source:\"db-postx-hellobar\",medium:\"massive-sale\",campaign:\"postx-dashboard\"},flash_sale:{source:\"db-postx-hellobar\",medium:\"flash-sale\",campaign:\"postx-dashboard\"},exclusive_deals:{source:\"db-postx-hellobar\",medium:\"exclusive-deals\",campaign:\"postx-dashboard\"},black_friday_sale:{source:\"db-postx-hellobar\",medium:\"black-friday\",campaign:\"postx-dashboard\"},new_year_sale:{source:\"db-postx-hellobar\",medium:\"new-year-sale\",campaign:\"postx-dashboard\"}},r=e=>{const{url:t,utmKey:n,affiliate:r,hash:o}=e,i=new URL(t||\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F\"),l=a[n];return l&&(i.searchParams.set(\"utm_source\",l.source),i.searchParams.set(\"utm_medium\",l.medium),i.searchParams.set(\"utm_campaign\",l.campaign)),r&&i.searchParams.set(\"ref\",r),o&&(i.hash=o.startsWith(\"#\")?o:`#${o}`),i.toString()}},6511:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>u});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o),l=n(1667),s=n.n(l),p=new URL(n(4975),n.b),c=i()(r()),d=s()(p);c.push([e.id,`.ultp-gettingstart-message{display:grid;grid-template-columns:440px auto;gap:30px;align-items:center;justify-content:space-between}@media only screen and (max-width: 1200px){.ultp-gettingstart-message{grid-template-columns:1fr 1fr}}.ultp-gettingstart-message .ultp-start-left{position:relative;line-height:0;height:100%}.ultp-gettingstart-message .ultp-start-left img{width:100%;height:100%;border-radius:4px}@media only screen and (max-width: 1400px){.ultp-gettingstart-message .ultp-start-left img{object-fit:cover}}.ultp-gettingstart-message .ultp-start-left .ultp-start-content{position:absolute;flex-direction:column;gap:20px;display:flex;bottom:24px;left:24px;line-height:normal}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-text{color:#fff;font-size:18px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns{display:flex;align-items:center;flex-wrap:wrap;gap:12px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-primary-button,.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button{padding:10px 20px;font-size:14px;border-radius:4px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button{background:unset;border:1px solid #fff;color:#fff !important;font-weight:600}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button:hover{background:unset}.ultp-gettingstart-message .ultp-start-right{display:grid;grid-template-columns:1fr 1fr;height:100%}@media only screen and (max-width: 1200px){.ultp-gettingstart-message .ultp-start-right{grid-template-columns:1fr}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content{background:#fff;padding:24px 32px;border-radius:0 4px 4px 0;display:flex;flex-direction:column;justify-content:center}@media only screen and (min-width: 1200px)and (max-width: 1360px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content{padding:24px 15px}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-title{color:#091f36;font-size:16px;font-weight:600;margin-bottom:8px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-title._pro{font-size:20px;margin-bottom:12px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description{margin-bottom:22px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description._pro{color:#070707;margin-bottom:32px}@media only screen and (min-width: 1200px)and (max-width: 1300px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description{display:none}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists{display:flex;flex-direction:column;gap:5px;margin-bottom:22px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists .ultp-list{display:flex;align-items:center;gap:7px;color:#070707;font-weight:500;font-size:14px}@media only screen and (min-width: 1200px)and (max-width: 1300px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists .ultp-list{font-size:12px}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-upgrade-btn{background:linear-gradient(180deg, #ea5e40, transparent) #e36f16;padding:12px 25px;border-radius:4px;font-size:14px;margin-bottom:15px;display:flex;align-items:center;gap:10px;width:fit-content;cursor:pointer;text-decoration:none;color:#fff}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-upgrade-btn:hover{background:linear-gradient(180deg, #e36f16, transparent) #ea5e40}.ultp-gettingstart-message .ultp-dashborad-banner{width:100%;position:relative;line-height:0}@media only screen and (max-width: 1200px){.ultp-gettingstart-message .ultp-dashborad-banner{display:none}}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container{max-width:25%;position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;max-height:fit-content;cursor:pointer;height:fit-content}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container .ultp-play-icon{max-width:100%}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container .ultp-animate{-webkit-animation:pulse 1.2s ease infinite;animation:pulse 1.2s ease infinite;background:var(--postx-primary-color);position:absolute;width:100%;height:100%;left:0;right:0;top:0;bottom:0;margin:auto;border-radius:100%}.ultp-gettingstart-message .ultp-dashborad-banner img.ultp-banner-img{max-width:100%;height:100%;border-radius:4px 0 0 4px}@media only screen and (max-width: 1420px){.ultp-gettingstart-message .ultp-dashborad-banner img.ultp-banner-img{object-fit:cover}}@-webkit-keyframes pulse{0%{opacity:0;transform:scale(1, 1)}50%{opacity:.3}100%{transform:scale(1.5);opacity:0}}@keyframes pulse{0%{opacity:0;transform:scale(1, 1)}50%{opacity:.3}100%{transform:scale(1.5);opacity:0}}.ultp-dashboard-addons-container{display:flex;flex-direction:column;gap:50px}.ultp-dashboard-addons-container .ultp-addon-parent-heading.mt{margin-top:50px}.ultp-dashboard-addons-container .ultp-addon-parent-heading{margin-bottom:32px;color:#070707;font-size:24px;font-weight:600}.ultp-dashboard-addons-container .ultp-addon-parent-heading>span{color:var(--postx-primary-color)}.ultp-dashboard-addons-container .ultp-addons-grid{display:grid;justify-content:space-between;grid-template-columns:1fr 1fr;gap:30px;position:relative}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item{display:flex;flex-direction:column;justify-content:space-between;padding:unset !important;position:relative;overflow:hidden;border:1px solid #e6e6e6;border-radius:8px;background:#fbfbfb}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item img{height:24px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .dashicons{height:unset;width:unset;line-height:unset;font-size:16px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-new-tag{font-weight:500;font-size:10px;color:#070707;padding:4px 8px;background:#ffbd42;border-radius:24px;padding:4px 8px;height:fit-content;line-height:10px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-shortcode-copy{cursor:copy}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents{padding:24px;position:relative}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name{display:flex;gap:12px;align-items:center;margin-bottom:16px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name .name{font-size:20px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name .ultp-addon-item-title{font-weight:500;display:flex;align-items:center;gap:8px;line-height:24px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock{position:absolute;top:0;left:0}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock span{position:absolute;top:4px;left:2px;font-weight:600;font-size:12px;transform:rotate(315deg);color:#fff}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock::after{content:\"\";width:42px;height:42px;background-image:url(${d});display:block}.ultp-dashboard-addons-container .ultp-addons-container-grid{display:grid;grid-template-columns:auto 360px;gap:32px}.ultp-dashboard-addons-container .ultp-addons-container-grid.ultp-gs{display:block}.ultp-dashboard-addons-container .ultp-addons-container-grid .ultp-addons-items{display:flex;gap:32px;flex-direction:column}.ultp-dashboard-addons-container .ultp-addon-item-actions{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;border-top:1px solid #eaedf2}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action{display:flex;justify-content:space-between;align-items:center;gap:6px}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip{display:flex;align-items:center;text-decoration:none;gap:6px;border:1px solid #e6e6e6;padding:2px 6px;color:#6e6e6e;font-size:14px;font-weight:500;border-radius:4px;transition:400ms}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip svg{width:14px;height:14px}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip:hover{color:#070707;font-weight:500;border:1px solid #070707}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .dashicons,.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action a{font-size:14px;color:#575a5d;cursor:pointer}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .dashicons-admin-collapse{transform:rotate(180deg)}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting{position:relative;height:20px !important;width:20px !important;margin-left:10px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting svg{color:#6e6e6e;cursor:pointer;opacity:1}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting svg:hover{color:#070707}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting::before{position:absolute;left:-12px;font-size:30px;top:-13px;border-left:1px solid #eaedf2;padding-left:9px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings{width:150%;height:100vh;background-color:rgba(0,0,0,.5);position:fixed;top:0%;right:10%;transition:.5s;z-index:999}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup{height:100%;width:600px;position:fixed;z-index:99;top:32px;right:0px;margin:0 auto;border-radius:4px;box-sizing:border-box;background-color:var(--postx-white-color);box-shadow:0 1px 2px 0 rgba(8,68,129,.2);overflow-x:hidden;transition:.5s}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup::-webkit-scrollbar{display:none}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-addon-settings-title{padding:15px 20px;background:#e3f1ff;position:sticky;top:0;z-index:1}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form{display:flex;flex-direction:column;justify-content:space-between;height:100%;position:relative}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-body{position:relative;padding:40px 40px 30px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer{text-align:center;background:#e3f1ff;padding:16px;position:sticky;bottom:32px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer .onloading{cursor:no-drop}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer .onloading svg{height:14px;width:14px;vertical-align:middle;margin-left:4px;animation:ultp-spin 1s linear infinite;color:#fff}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addons-setting-save{color:var(--postx-white-color);cursor:pointer;width:600px;border:none;position:fixed;right:0;bottom:0;padding:10px 25px;background:var(--postx-primary-color)}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close{position:fixed;top:40px;right:11px;color:var(--postx-white-color);font-size:25px;cursor:pointer;border:none;padding:0px 9px 3px;background-color:var(--postx-dark-color);z-index:99}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close::after{content:\"×\"}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close:hover{background:red}.addons_promotions{margin-top:40px;border:1px solid #b9cff0;background-color:#e0ecff;padding:30px;border-radius:4px;text-align:center;font-size:16px;color:#091f36}.addons_promotions.ultp-gs{max-width:80%;margin-left:auto;margin-right:auto}.addons_promotions .addons_promotions_label{line-height:20px;font-size:16px}.addons_promotions .addons_promotions_btns{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-top:15px}.addons_promotions .addons_promotions_btns .addons_promotions_btn{padding:6px 12px;border-radius:4px;cursor:pointer;font-size:12px}.addons_promotions .addons_promotions_btns .addons_promotions_btn.btn1{background:#07cc92;color:#fff;text-decoration:none}.addons_promotions .addons_promotions_btns .addons_promotions_btn.btn2{background:#fff;color:#000;text-decoration:none}.ultp_dash_key_features{margin-top:60px;margin-bottom:30px}.ultp_dash_key_features .ultp_dash_key_features_content{display:grid;grid-template-columns:repeat(4, 1fr);gap:20px;margin-top:30px}.ultp_dash_key_features .ultp_dash_key_features_label{font-size:18px;font-weight:600;margin-bottom:10px;color:#091f36}.ultp_dash_key_features .ultp-description{font-size:14px}.ultp-description{color:#4a4a4a;font-size:14px}.ultp-description-notice{margin-top:5px;color:#e68429}.ultp-plugin-required{font-size:14px;text-align:center;display:inline-block;padding:20px 0px 0;color:var(--postx-warning-button-color);margin-top:-16px}@media only screen and (max-width: 1200px){.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp_dash_key_features .ultp_dash_key_features_content{grid-template-columns:1fr 1fr 1fr}}@media only screen and (max-width: 1100px){.ultp-dashboard-addons-container .ultp-addons-container-grid{grid-template-columns:auto}.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 768px){.ultp-dashboard-addons-container .ultp-addons-container-grid{grid-template-columns:auto}.addons_promotions.ultp-gs{max-width:100%}.ultp-gettingstart-message{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp_dash_key_features .ultp_dash_key_features_content{grid-template-columns:1fr}}@media only screen and (max-width: 425px){.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(1, 1fr)}}.ultp-addon-group{background:#fff;border-radius:8px;padding:32px}`,\"\"]);const u=c},3038:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-dashboard-blocks-container{display:flex;flex-direction:column;gap:50px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .frequency{margin-bottom:0px !important}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{margin-top:20px;display:grid;gap:30px;grid-template-columns:1fr 1fr 1fr}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item{display:flex;justify-content:space-between;padding:20px 15px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-item-meta{display:flex;gap:10px;align-items:center;font-size:16px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-item-meta img{height:25px;width:25px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option{display:flex;align-items:center;gap:10px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option a{text-decoration:none}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option .ultp-option-tooltip{display:flex;align-items:center;text-decoration:none;gap:3px;font-size:14px;color:#575a5d}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option .ultp-option-tooltip .dashicons{height:unset;width:unset;line-height:unset;font-size:14px;color:#575a5d}@media only screen and (max-width: 1350px){.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 990px){.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{grid-template-columns:1fr}}\",\"\"]);const l=i},725:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-builder-dashboard__content{width:100%;margin:0;display:grid;grid-template-columns:200px 1fr}.ultp-builder-dashboard__content .ultp-builder-tab__content{display:flex;flex-direction:column;justify-content:flex-start}.ultp-builder-dashboard__content .ultp-builder-tab__content .ultp-tab__content{height:100%}.ultp-builder-tab__option{background:#edf6ff;border:1px solid rgba(3,127,255,.03);min-height:100vh;border-radius:4px 0 0 4px}.ultp-builder-tab__option ul{padding:0px;margin:0px}.ultp-builder-tab__option ul li{font-size:14px;cursor:pointer;color:#091f36;padding:12px 0px 12px 30px;display:flex;align-items:center;transition:400ms}.ultp-builder-tab__option ul li.active,.ultp-builder-tab__option ul li.active *{color:var(--postx-primary-color);background-color:var(--postx-white-color)}.ultp-builder-tab__option ul li:hover,.ultp-builder-tab__option ul li:hover *{color:var(--postx-primary-color)}.ultp-builder-tab__option ul li img{margin-right:8px;height:20px;text-align:left}.ultp-builder-tab__option ul li span{margin-right:8px;font-size:24px;text-align:left;display:block;line-height:1;height:auto}.ultp-builder-tab__option ul ul li{padding-left:50px}.ultp-builder-tab__option .ultp-popup-sync{font-size:14px;cursor:pointer;display:flex;align-items:center;transition:400ms;padding:12px 0px 12px 30px;margin-bottom:0}.ultp-builder-tab__option .ultp-popup-sync i{margin-right:4px;font-size:25px;height:auto;width:auto}.ultp-builder-tab__option .ultp-popup-sync:hover,.ultp-builder-tab__option .ultp-popup-sync:hover *{color:var(--postx-primary-color)}.ultp-builder-tab__content .ultp-builder-tab__heading{display:flex;align-items:center;justify-content:space-between;padding:0 0 20px 30px;max-height:30px}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title .heading{display:inline-block;font-size:18px;text-transform:capitalize}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title span{margin-right:20px;padding-right:20px;border-right:1px solid #575a5d;font-size:18px;cursor:pointer;color:#575a5d}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title span svg{height:12px;width:14px;color:#575a5d;margin-right:5px}.ultp-builder-tab__content .ultp-tab__content{display:none !important;opacity:0;transition:.3s;padding:30px;background:var(--postx-white-color);border-radius:0 4px 4px 0;box-shadow:0 1px 2px 0 rgba(8,68,129,.2)}.ultp-builder-tab__content .ultp-tab__content.active{display:block !important;opacity:100;transition:.3s}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab{display:flex;flex-direction:column;gap:20px}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper{background:#f6f8fa;padding:15px 20px 15px 20px;border-radius:4px;border:solid 1px #eaedf2}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading{display:flex;align-items:center;flex-wrap:wrap;gap:15px;justify-content:space-between}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta{display:flex;gap:15px;color:#172c41}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta>div{font-size:14px;font-weight:normal;margin:0px !important}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta>div>span{font-weight:600;text-transform:capitalize}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__content div{display:flex;align-items:center;justify-content:space-between}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control{display:flex;gap:12px;position:relative;min-height:26px;align-items:center}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a{text-decoration:none;font-size:13px;color:#575a5d;display:flex;align-items:center;justify-content:center;text-transform:capitalize}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a span{font-size:12px;color:#091f36;height:auto}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a.status{min-width:56px}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-dashboard__action{line-height:1.2;cursor:pointer}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-action__active{position:absolute;top:52px;cursor:pointer;right:-20px;padding:10px 36px;background:#f9f9f9;box-shadow:4px 6px 12px -10px #000;z-index:9999}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-action__active .dashicons{font-size:18px;top:3px;position:relative}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-condition__edit{padding:5px 10px;border-radius:2px;font-size:12px;border:none;color:#fff;cursor:pointer;background-color:#091f36}.ultp-builder-tab__content .ultp-builder-items{display:grid;gap:30px;grid-template-columns:1fr 1fr 1fr}.ultp-builder-tab__content .ultp-builder-items .newScreen{border-radius:4px;border:solid 1px #eaedf2;background-color:#fff}.ultp-builder-tab__content .ultp-builder-items .newScreen .listInfo{padding:8px 12px;border-bottom:solid 1px #eaedf2;text-transform:capitalize;margin-bottom:12px}.ultp-builder-tab__content .ultp-builder-items .newScreen .listInfo .ultp_h6{font-size:16px;font-weight:500}.ultp-builder-tab__content .ultp-builder-items .newScreen .listOverlays{height:250px}.ultp-builder-tab__content .ultp-builder-items .newScreen .listOverlays img{height:100%;object-fit:fill}.premadeScreen .ultp-item-list{border-radius:4px;border:solid 1px #eaedf2;background-color:#fff}.premadeScreen .ultp-item-list .listInfo{padding:10px;display:flex;justify-content:space-between;align-items:center;border-bottom:solid 1px #eaedf2;text-transform:capitalize;flex-wrap:wrap;row-gap:10px}.premadeScreen .ultp-item-list .listInfo .title{font-size:14px;color:#091f36;font-weight:500}.premadeScreen .ultp-item-list .listInfo .title .parent{font-weight:400;font-size:12px;color:rgba(9,31,54,.67)}.premadeScreen .ultp-item-list .listInfo .btnImport{display:flex;align-items:center;border-radius:4px;background-image:linear-gradient(#18dd5c, #0c8d20);padding:5px 10px;color:#fff;font-size:12px}.premadeScreen .ultp-item-list .listInfo .btnImport svg{height:12px;color:#fff;margin-right:6px}.premadeScreen .ultp-item-list .listInfo .btnImport span{color:#fff}.premadeScreen .ultp-item-list .listInfo .ultp-upgrade-pro-btn{font-size:12px;padding:5px 10px}.premadeScreen .ultp-item-list .listOverlay{box-sizing:border-box;position:relative;line-height:0;padding:10px}.premadeScreen .ultp-item-list .listOverlay img{border-radius:4px}.premadeScreen.ultp-builder-items.ultpheader .bg-image-aspect,.premadeScreen.ultp-builder-items.ultpfooter .bg-image-aspect{aspect-ratio:1.8}.premadeScreen.ultp-builder-items.ultpheader .ultp-list-blank-img img,.premadeScreen.ultp-builder-items.ultpfooter .ultp-list-blank-img img{max-height:190px}.premadeScreen.ultp-builder-items.ultpheader .dashicons-visibility,.premadeScreen.ultp-builder-items.ultpfooter .dashicons-visibility{font-size:50px}.ultp-builder-items .ultp-item-list img{width:100%;max-width:100%}.ultp-item-list{position:relative}.ultp-premade-item{transition:.3s}.ultp-premade-item:hover{box-shadow:1px 4px 18px -12px #000}.ultp-list-white-overlay{cursor:pointer;font-weight:600;width:100%;height:100%;justify-content:center;align-items:center;top:0;left:0;position:absolute;display:flex;align-items:center;color:var(--postx-primary-color);font-size:12px}.ultp-list-white-overlay .dashicons{margin-right:15px;font-size:32px;display:block;height:auto;color:var(--postx-primary-color)}.ultp-condition-wrapper{z-index:100000;position:fixed;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;background:rgba(0,0,0,.7)}.ultp-condition-wrapper .ultp-condition-popup{max-width:700px;width:100%;position:relative;background:#fff;padding:40px 60px;border-radius:4px;height:fit-content;max-height:90%;overflow:unset !important;margin:50px auto 0}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close{position:absolute;top:0;right:-52px;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff;transition:400ms}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close svg{color:#000}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close:hover{background:red}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close:hover svg{color:#fff}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content{display:flex;gap:30px;align-items:center;justify-content:center;flex-wrap:wrap;position:relative}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap{height:450px;width:100%;display:flex;flex-direction:column;align-items:center;overflow-y:scroll !important;-ms-overflow-style:none;scrollbar-width:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap-heading{margin-bottom:14px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap::-webkit-scrollbar{display:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-items{width:600px;margin-top:20px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .btnCondition{margin-top:20px;color:#fff;border-radius:4px;background-color:#091f36;padding:8px 16px;border:none;cursor:pointer}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition_cancel{cursor:pointer;position:absolute;right:-30px;color:#de1010;font-size:24px;line-height:.7;transition:400ms}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition_cancel:hover{color:#c00a0a}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields,.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap__field{display:flex;align-items:center;position:relative;width:100%}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap__field{background:#fff;margin-top:15px;border:1px solid #eaedf2;border-radius:2px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields{padding:0px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields select{color:#575a5d;border:none;margin-right:0;padding-top:7px;padding-bottom:7px;border-right:1px solid #eaedf2;border-radius:0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields select:last-child{border-right:none;width:100%;max-width:100%}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__label{display:inline-flex;align-items:center;background:#7c8084;padding:4px 8px;border-radius:2px;color:#fff}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__label::-webkit-scrollbar{display:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown{text-align:left;width:100%;display:flex;align-items:center;position:relative}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-condition-text{width:100%;display:inline-flex;padding:0 10px 0 10px;align-items:center}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-condition-text .ultp-condition-arrow{font-size:15px;display:inline-block;padding-left:15px;line-height:1.5}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown span{cursor:pointer}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-dropdown-value__close{color:#fff;background:#000;margin-left:8px;border-radius:50%;font-size:14px;line-height:1;height:auto;width:auto}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__default{width:100%;display:block;padding:12px 0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__content{width:100%;display:flex;align-items:center;justify-content:space-between}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__content .ultp-condition-arrow{top:3px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search{background:#fff;position:absolute;left:0;z-index:1;top:39px;width:100%;padding:10px;border-radius:0;box-sizing:border-box;border:1px solid #eaedf2}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search input{width:100%;border-radius:2px;min-height:34px;border:1px solid #eaedf2}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search li{cursor:pointer;text-align:left;margin-bottom:12px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search li:last-child{margin-bottom:0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-save-condition{width:100%;font-size:14px;position:sticky;bottom:0;color:#fff;border-radius:4px;padding:15px;border:none;cursor:pointer;background-image:linear-gradient(#399aff, #016cdb)}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-save-condition span{font-size:17px;margin-left:4px;color:#fff}.ultp-builder-items .ultp-premade-img__blank{height:100%;display:flex;align-items:center;justify-content:center;padding:20px}.ultp-premade-img__blank img{max-height:395px}.ultp-list-blank-img img{opacity:.1}.ultp-list-blank-img a{text-decoration:none !important}@media only screen and (max-width: 1100px){.ultp-builder-dashboard__content{gap:20px;grid-template-columns:auto}.ultp-builder-dashboard__content .ultp-builder-tab__option{min-width:300px;width:fit-content;min-height:fit-content}.ultp-builder-tab__content .ultp-builder-items{grid-template-columns:1fr 1fr}}.ultp-builder-create-btn{text-transform:capitalize}\",\"\"]);const l=i},5735:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'@media only screen and (max-width: 1350px){.ultp-menu-items div{margin:0px 10px 0 0}}@media only screen and (max-width: 1250px){.ultp-menu-items div a:after{bottom:-2px;height:2px}}.dash-faq-container{min-width:170px}.dash-faq-container a{text-decoration:none;font-size:14px;color:#575a5d;display:flex;gap:8px;align-items:center;width:-webkit-fill-available;padding-right:32px}.dash-faq-container a:focus{box-shadow:none}.dash-faq-container a .dashicons{padding-top:2px}.dash-faq-container a:hover{color:var(--postx-primary-color)}.dash-faq-container{display:flex;flex-direction:column;gap:15px;padding:25px;position:absolute;right:20px;top:70px;border-radius:2px;box-shadow:0 2px 4px 0 rgba(8,68,129,.2);background-color:#fff;z-index:1}.dash-faq-container::before{content:\"\";content:\"\";position:absolute;right:0px;top:-29px;font:normal 42px dashicons;color:#fff}.ultp-dashboard-container-grid{display:grid;grid-template-columns:auto 424px;gap:32px}@media only screen and (max-width: 1250px){.ultp-dashboard-container-grid{display:flex;flex-direction:column}}@media only screen and (max-width: 1250px){.ultp-dashboard-container-grid{display:flex;flex-direction:column}}.ultp-dashboard-container-grid .ultp-dashboard-content{display:flex;gap:32px;flex-direction:column}.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-banner,.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-pro-promo,.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-blocks{padding:32px}.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-item-con{box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863)}.ultp-dash-banner{padding:32px;display:flex;gap:80px;justify-content:space-between}@media screen and (max-width: 758px){.ultp-dash-banner{padding:16px;flex-direction:column-reverse;gap:8px;width:fit-content}}.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-title{font-weight:600;font-size:24px;line-height:32px;color:#070707}@media screen and (max-width: 768px){.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-title{font-size:18px;display:inline-block}}.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-description{max-width:365px;font-size:16px;line-height:24px;color:#41474e;margin-top:14px}.ultp-dash-banner .ultp-dash-banner-left .ultp-primary-alter-button{padding:10px 24px;margin-top:32px}.ultp-dash-banner .ultp-dash-banner-right{width:352px}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img{position:relative}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img img{max-width:100%}@keyframes pulse-border{0%{box-shadow:0 0 0 5px rgba(241,19,108,.6)}70%{box-shadow:0 0 0 15px rgba(255,67,142,0)}100%{box-shadow:0 0 0 5px rgba(255,67,142,0)}}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img .ultp-dash-banner-right-play-button{cursor:pointer;width:64px;height:64px;border-radius:50%;background-color:#fff;display:flex;align-items:center;justify-content:center;position:absolute;top:50%;right:50%;transform:translate(50%, -50%);animation:pulse-border 1.2s ease-in infinite}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img .ultp-dash-banner-right-play-button svg{width:24px;height:24px;color:#070707;margin-top:-1px;margin-left:1px}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-video{width:352px;height:240px;border-radius:8px;overflow:hidden;box-shadow:0px 0px 42.67px 0px rgba(212,212,221,.4784313725)}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-video iframe{width:100%;height:100%}.ultp-dash-pro-promo{padding:32px;background-color:#fff;display:flex;gap:80px;justify-content:space-between}@media only screen and (max-width: 1400px){.ultp-dash-pro-promo{flex-direction:column-reverse;gap:24px}}@media only screen and (max-width: 758px){.ultp-dash-pro-promo{flex-direction:column-reverse;gap:24px;padding:16px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-title{font-weight:600;font-size:24px;line-height:32px;color:#070707}@media only screen and (max-width: 1250px){.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-title{font-size:18px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-description{max-width:365px;font-size:16px;line-height:24px;color:#41474e;margin-top:14px}@media only screen and (max-width: 1250px){.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-description{font-size:14px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-primary-alter-button{margin-top:32px}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature{display:flex;column-gap:24px;row-gap:12px;flex-wrap:wrap;margin-top:24px}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature .ultp-dash-pro-promo-left-keyfeature-item{display:flex;align-items:center;gap:6px;font-weight:500;font-size:14px;line-height:20px;color:#070707}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature .ultp-dash-pro-promo-left-keyfeature-item svg{width:20px;height:20px;color:#1f66ff}.ultp-dash-pro-promo .ultp-dash-pro-promo-right-img{max-width:352px;object-fit:contain}.ultp-dash-blocks{padding:32px}@media only screen and (max-width: 1250px){.ultp-dash-blocks{padding:16px}}.ultp-dash-blocks .ultp-dash-blocks-heading{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-dash-blocks-heading-title{font-weight:600;font-size:18px;line-height:24px;color:#0a0d14}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-transparent-button{color:#1f66ff !important}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-transparent-button svg{fill:#1f66ff !important;width:20px;height:20px}.ultp-dash-blocks .ultp-dash-blocks-items{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px}@media only screen and (max-width: 1500px){.ultp-dash-blocks .ultp-dash-blocks-items{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 1250px){.ultp-dash-blocks .ultp-dash-blocks-items{grid-template-columns:1fr}}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-dash-blocks-item{display:flex;gap:8px;align-items:center;justify-content:space-between;border:1px solid #e6e6e6;border-radius:8px;background:#fbfbfb;box-shadow:none}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta{display:flex;align-items:center;gap:8px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta .ultp-blocks-item-icon{width:24px;height:24px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta .ultp-blocks-item-title{font-weight:500;font-size:14px;line-height:20px;color:#2e2e2e}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-control-option{display:flex;align-items:center;gap:8px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-control-option .ultp-option-tooltip{font-size:12px;line-height:16px;color:#6e6e6e;text-decoration:none}',\"\"]);const l=i},9455:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-dashboard-general-settings-container{display:grid;grid-template-columns:auto 360px;gap:32px}.ultp-dashboard-general-settings-container .ultp-general-settings{height:fit-content;width:-webkit-fill-available;padding:32px}.ultp-dashboard-general-settings-container .ultp-general-settings form{margin-top:40px}.ultp-dashboard-general-settings-container .ultp-general-settings .skeletonOverflow{display:flex;gap:30px;flex-direction:column;margin-top:40px}.ultp-dashboard-general-settings-container .ultp-general-settings .onloading{cursor:no-drop}.ultp-dashboard-general-settings-container .ultp-general-settings .onloading svg{height:14px;width:14px;vertical-align:middle;margin-left:4px;animation:ultp-spin 1s linear infinite;color:#fff}@media only screen and (max-width: 1100px){.ultp-dashboard-general-settings-container{grid-template-columns:auto;justify-items:center}.ultp-dashboard-general-settings-container .ultp-general-settings-content-right{width:360px}}@media only screen and (max-width: 768px){.ultp-dashboard-general-settings-container .ultp-general-settings-content-right{width:100%}}\",\"\"]);const l=i},283:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp_h1{font-size:var(--postx-h1-fontsize);font-weight:var(--postx-h1-weight)}.ultp_h2{font-size:var(--postx-h2-fontsize);font-weight:var(--postx-h2-weight)}.ultp_h3{font-size:var(--postx-h3-fontsize);font-weight:var(--postx-h3-weight)}.ultp_h4{font-size:var(--postx-h4-fontsize);font-weight:var(--postx-h4-weight)}.ultp_h5{font-size:var(--postx-h5-fontsize);font-weight:var(--postx-h5-weight)}.ultp_h6{font-size:var(--postx-h6-fontsize);font-weight:var(--postx-h6-weight)}.ultp_h1,.ultp_h2,.ultp_h3,.ultp_h4,.ultp_h5,.ultp_h6{color:#091f36}.ultp-settings-container{margin:0 !important;background:#f6f8fa;padding:32px;min-height:100vh;height:100%}.ultp-settings-container .ultp-settings-content .ultp-premade-grid{background:#f6f8fa}@media screen and (max-width: 1250px){.ultp-settings-container{padding:12px}}.ultp-settings-content{margin:0 auto 40px !important;max-width:1376px}@media screen and (max-width: 768px){.ultp-settings-content{max-width:100%;overflow:scroll}}.ultp-dash-item-con{background:#fff;padding:12px;border-radius:8px;box-shadow:0 2px 4px 0 rgba(27,28,29,.0392156863)}.ultp-setting-header{display:grid;align-items:center;grid-template-columns:148px 502px auto 72px;gap:16px;background:var(--postx-white-color);border-bottom:1px solid var(--postx-border-color);padding:0 32px;position:sticky;top:32px;width:100%;height:67px;min-height:67px;box-sizing:border-box;z-index:99}@media screen and (max-width: 1200px){.ultp-setting-header{grid-template-columns:152px auto;background-color:#fff;gap:32px;height:auto;padding-top:12px;column-gap:38px;box-shadow:0px 0px 11px rgba(0,0,0,.168627451)}}@media screen and (max-width: 768px){.ultp-setting-header{display:flex;flex-wrap:wrap;padding:8px;height:auto}}.ultp-pro-feature-lists{display:flex;flex-direction:column;gap:15px;margin-top:24px}.ultp-pro-feature-lists>span{display:inline-flex;gap:8px;align-items:center}.ultp-pro-feature-lists>span,.ultp-pro-feature-lists>span>span{color:#070707;font-weight:500;font-size:14px;line-height:20px}.ultp-pro-feature-lists>span>span>a{text-decoration:none}.ultp-pro-feature-lists>span>span>a .dashicons{color:var(--postx-primary-color);font-size:17px;line-height:1.2}.ultp-pro-feature-lists>span svg{height:16px;width:16px;vertical-align:middle;color:#070707;flex-shrink:0}.settingsLink{color:var(--postx-primary-color) !important}.ultp-ring{display:inline-block;margin-right:5px;font-size:20px;position:relative;top:2px;color:#fff;animation:ring 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite}@keyframes ring{0%{transform:rotate(0)}5%{transform:rotate(25deg)}10%{transform:rotate(-20deg)}15%{transform:rotate(12deg)}20%{transform:rotate(-6deg)}25%{transform:rotate(2deg)}28%,100%{transform:rotate(0)}}#postx-regenerate-css{display:none;margin-top:10px}#postx-regenerate-css span{color:var(--postx-white-color)}#postx-regenerate-css.active{display:inline-block}#postx-regenerate-css .dashicons{display:none;margin-right:8px;-webkit-animation:ultp-spin 1s linear infinite;animation:ultp-spin 1s linear infinite}#postx-regenerate-css.ultp-spinner .dashicons{display:inline-block}@keyframes ultp-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}form .ultp-settings-wrap{display:flex;flex-direction:column;gap:12px;margin-bottom:30px}form .ultp-settings-wrap strong{font-size:14px;color:#091f36;font-weight:500}form .ultp-settings-wrap .ultp-settings-field-wrap select,form .ultp-settings-wrap .ultp-settings-field-wrap input[type=text],form .ultp-settings-wrap .ultp-settings-field-wrap input[type=number]{height:36px;width:100%;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:0px 13px 0px;background-color:#fff;margin-bottom:3px}form .ultp-settings-wrap .ultp-settings-field-wrap textarea{width:100%;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:0px 13px 0px;background-color:#fff;margin-bottom:3px}form .ultp-settings-wrap .ultp-settings-field-wrap select[multiple]{max-height:100px;height:100%}form .ultp-settings-wrap .ultp-settings-field-wrap .ultp-description{font-size:12px}form .ultp-data-message{display:none;position:fixed;bottom:10%;padding:13px 14px 14px 15px;border-radius:4px;box-shadow:0 1px 2px 0 rgba(8,68,129,.2);background:rgba(115,184,28,.1);width:224px;color:#091f36}.ultp-upgrade-pro-btn{display:inline-block;padding:10px 25px;color:#fff;font-size:14px;background:linear-gradient(180deg, #ff9336, transparent) #de521e;border-radius:4px;text-decoration:none;width:fit-content;transition:background-color 400ms}.ultp-upgrade-pro-btn:hover{background-color:#ff9336;color:#fff}.ultp-upgrade-pro-btn:focus{outline:0;box-shadow:none}.ultp-upgrade-pro-btn:active{color:#fff}input[type=checkbox]{width:22px;height:20px;border-radius:2px;border:solid 1px #eaedf2;background:#fff;position:relative;margin:0;box-shadow:none;display:inline-block}input[type=checkbox]+.ultp-description{margin-left:10px}input[type=checkbox]:checked{background:var(--postx-primary-color);border:none}input[type=checkbox]:checked::before{content:\"✓\";color:#fff;height:unset;width:unset;margin:unset;position:absolute;left:5px;top:9px;font-weight:900}.ultp-primary-button{cursor:pointer;padding:12px 25px;color:#fff !important;font-size:14px;background:#070707;border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;border:none;transition:background-color 400ms;gap:8px;line-height:20px}.ultp-primary-button:hover{background-color:var(--postx-primary-color)}.ultp-primary-button:focus{outline:0;box-shadow:none}.ultp-secondary-button{cursor:pointer;padding:10px 25px;color:#070707;font-size:14px;background:rgba(0,0,0,0);border-radius:4px;text-decoration:none;border:1px solid #070707;display:inline-flex;align-items:center;width:fit-content;transition:background-color 400ms}.ultp-secondary-button:hover{background-color:#dee5fa}.ultp-secondary-button:focus{outline:0;box-shadow:none}.ultp-primary-alter-button{cursor:pointer;padding:12px 24px;color:#fff !important;font-size:14px;background:var(--postx-primary-color);border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;border:none;transition:background-color 400ms;gap:8px;line-height:20px}.ultp-primary-alter-button:hover{background-color:#070707}.ultp-primary-alter-button:focus{outline:0;box-shadow:none}.ultp-transparent-button{cursor:pointer;color:#a1a1a1 !important;font-size:14px;background:rgba(0,0,0,0);border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;transition:background-color 400ms;gap:8px}.ultp-transparent-button:hover{text-decoration:underline}.ultp-transparent-button:focus{outline:0;box-shadow:none}.ultp-transparent-alter-button{cursor:pointer;color:#4a4a4a;font-size:14px;background:rgba(0,0,0,0);text-decoration:underline;display:flex;align-items:center;width:fit-content;transition:background-color 400ms;gap:8px}.ultp-transparent-alter-button:hover{color:#3c3c3c}.ultp-transparent-alter-button:focus{outline:0;box-shadow:none}.ultp-primary-button svg,.ultp-primary-alter-button svg,.ultp-secondary-button svg,.ultp-transparent-button svg,.ultp-transparent-alter-button svg{width:24px;height:24px}.cursor{cursor:pointer}#wpbody-content:has(.ultp-menu-items-wrap){padding:0 !important;background-color:#f6f8fa}.ultp-menu-items-wrap{line-height:1.6}.ultp-menu-items-wrap h1,.ultp-menu-items-wrap h2,.ultp-menu-items-wrap h3,.ultp-menu-items-wrap h4,.ultp-menu-items-wrap h5,.ultp-menu-items-wrap h6{padding:0;margin:0}.ultp-menu-items-wrap .ultp-discount-wrap{transform:rotate(-90deg);width:150px;height:40px;display:flex;gap:10px;align-items:center;justify-content:center;border-radius:4px 4px 0 0;position:fixed;top:200px;right:-55px;z-index:99999;text-decoration:none;background:linear-gradient(60deg, hsl(224, 88%, 61%), hsl(359, 85%, 66%), hsl(44, 74%, 55%), hsl(89, 72%, 47%), hsl(114, 79%, 48%), hsl(179, 85%, 66%));background-size:300% 300%;background-position:0 50%;animation:ultp_moveGradient 4s alternate infinite;transition:.4s}.ultp-menu-items-wrap .ultp-discount-wrap .ultp-discount-text{font-weight:600;color:#fff;text-transform:uppercase;font-size:14px}@keyframes ultp_moveGradient{50%{background-position:100% 50%}}.ultp-ml-auto{margin-left:auto}.ultp-dash-control-options .ultp-addons-enable,.ultp-dash-control-options .ultp-blocks-enable{width:0;height:0;display:none}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label{position:relative;background-color:var(--postx-primary-color);opacity:unset}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label>span,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label>span{display:none}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label::after,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label::after{left:calc(100% - 3px);transform:translateX(-100%)}.ultp-dash-control-options .ultp-addons-enable.disabled+.ultp-control__label,.ultp-dash-control-options .ultp-blocks-enable.disabled+.ultp-control__label{opacity:.25 !important}.ultp-dash-control-options>label{width:36px;height:18px;display:block;cursor:pointer;border-radius:100px;text-indent:-9999px;background:#d2d2d2;opacity:1;position:relative}.ultp-dash-control-options>label::after{content:\"\";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:90px;background:var(--postx-white-color);transition:.3s}.rotate{animation:rotate 1.5s linear infinite}@keyframes rotate{to{transform:rotate(360deg)}}.ultp-setting-logo{display:flex;gap:4px;align-items:center;border-right:1px solid #e2e4e9;height:100%;width:100%;max-width:152px}@media screen and (max-width: 1300px){.ultp-setting-logo{padding-right:11px}}@media screen and (max-width: 768px){.ultp-setting-logo{border-right:none}}.ultp-setting-logo .ultp-setting-header-img{height:26px}.ultp-setting-logo .ultp-setting-version{font-size:14px;border:1px solid var(--postx-primary-color);border-radius:100px;padding:7px 11px;background:#edf6ff;color:var(--postx-primary-color);line-height:18px;font-weight:500}.ultp-menu-items{display:flex;gap:24px}@media screen and (max-width: 1200px){.ultp-menu-items{margin-top:-9px}}@media screen and (max-width: 768px){.ultp-menu-items{flex-wrap:wrap;gap:16px}}.ultp-menu-item{position:relative;text-decoration:none;font-size:14px;padding:0;color:#070707;position:relative;display:flex;gap:8px;font-weight:500;align-items:center;transition:400ms;white-space:nowrap}.ultp-menu-item:hover{color:#1f66ff}.ultp-menu-item:focus{outline:none;box-shadow:none}.ultp-menu-item:after{content:\"\";position:absolute;bottom:-21px;width:100%;height:2px;background:var(--postx-primary-color);left:0;opacity:0}@media only screen and (max-width: 1250px){.ultp-menu-item:after{bottom:-9px}}.ultp-menu-item svg{width:20px;height:20px;color:#1f66ff}.ultp-menu-item.current{color:var(--postx-primary-color)}.ultp-menu-item.current:after{opacity:1}.ultp-menu-item .ultp-menu-item-tag{position:absolute;top:-14px;right:-20px;background:#fdedf0;border-radius:100px;padding:2px 6px;font-size:10px;font-weight:500;color:#dc2671;animation:ultpMenuTagColor 2s ease-in-out infinite}@keyframes ultpMenuTagColor{0%{background-color:#f8d7dd}50%{background-color:#fdedf0}100%{background-color:#f8d7dd}}.ultp-menu-items div a:active,.ultp-menu-items div a:focus{outline:none;box-shadow:none;border:none}.ultp-secondary-menu{display:flex;align-items:center;gap:8px;justify-content:space-between;padding:12px 0 12px 16px;border-left:1px solid var(--postx-border-color);height:-webkit-fill-available}@media screen and (max-width: 1300px){.ultp-secondary-menu{padding-left:0px !important;width:fit-content;border:0px !important}}@media screen and (max-width: 768px){.ultp-secondary-menu{border-left:none;padding:0}}.ultp-secondary-menu .ultp-pro-button{background-color:#edf6ff;color:#1f66ff !important;border:1px solid #1f66ff;padding:8px 20px;font-weight:500;font-size:16px;text-wrap:nowrap;display:flex;align-items:center;gap:8px}@media screen and (max-width: 768px){.ultp-secondary-menu .ultp-pro-button{padding:4px 8px}}.ultp-secondary-menu .ultp-pro-button svg{width:24px;height:24px;color:#1f66ff}.ultp-secondary-menu .ultp-pro-button:hover{background-color:#1f66ff;color:#fff !important}.ultp-secondary-menu .ultp-pro-button:hover svg{color:#fff}ul:has(.ultp-dash-faq-icon){position:relative}.ultp-dash-faq-con{height:100%;border-left:1px solid var(--postx-border-color);display:flex;align-items:center;justify-content:center;position:relative}@media screen and (max-width: 1200px){.ultp-dash-faq-con{width:fit-content;margin-left:0px !important;padding-left:2%}}@media screen and (max-width: 768px){.ultp-dash-faq-con{border-left:none;margin:0px;position:relative}}.ultp-dash-faq-icon{height:auto;width:auto;font-size:35px;cursor:pointer}.ultp-ms-container{position:relative}.ultp-ms-container .ultp-ms-results-con{min-height:30px;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:8px 14px;background-color:#fff;margin-bottom:3px;display:flex;gap:10px;justify-content:space-between}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results{display:flex;gap:8px;flex-wrap:wrap}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected{padding:4px 8px;border-radius:2px;background-color:#7c8084;color:#fff;display:inline-flex;align-items:center;gap:6px}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove{height:16px;width:14px}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove:hover svg{color:var(--postx-primary-color)}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove svg{color:#fff}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results-collapse{height:12px;width:12px;display:inline-block}.ultp-ms-container .ultp-ms-options{display:flex;flex-direction:column;gap:5px;z-index:1;position:absolute;width:100%;box-sizing:border-box;margin-top:4px;border:1px solid #eaedf2;box-shadow:0 1px 2px 0 rgba(8,68,129,.2);border-radius:4px;color:#000;padding:8px 14px;background-color:#fff;margin-bottom:3px}.ultp-ms-container .ultp-ms-options .ultp-ms-option{padding:4px 8px;border-radius:2px}.ultp-ms-container .ultp-ms-options .ultp-ms-option:hover{background-color:#7c8084;color:#fff}.ultp-field-radio .ultp-field-radio-items{display:flex;gap:20px;flex-wrap:wrap}.ultp-field-radio .ultp-field-radio-items input[type=radio]:checked::before{background-color:var(--postx-primary-color)}.ultp-sidebar-features{display:flex;flex-direction:column;gap:32px}.ultp-sidebar-card-item{border-radius:8px;padding:24px;display:flex;flex-direction:column;box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863);background-color:#fff}@media only screen and (max-width: 1250px){.ultp-sidebar-card-item{padding:16px}}.ultp-sidebar-card-item:has(.ultp-sidebar-card-title) img{margin-bottom:20px}.ultp-sidebar-card-item .ultp-sidebar-card-title{font-weight:600;font-size:18px;line-height:24px;color:#0a0d14}.ultp-sidebar-card-item .ultp-sidebar-card-description{font-size:14px;line-height:20px;color:#4a4a4a;margin-top:16px}.ultp-sidebar-card-item .ultp-primary-button,.ultp-sidebar-card-item .ultp-secondary-button,.ultp-sidebar-card-item .ultp-primary-alter-button,.ultp-sidebar-card-item .ultp-transparent-alter-button{padding:10px 24px;display:flex;align-items:center;gap:8px;margin-top:20px}.ultp-sidebar-card-item .ultp-primary-button svg,.ultp-sidebar-card-item .ultp-secondary-button svg,.ultp-sidebar-card-item .ultp-primary-alter-button svg,.ultp-sidebar-card-item .ultp-transparent-alter-button svg{width:20px;height:20px}.ultp-sidebar-card-item .ultp-sidebar-card-buttons{margin-top:24px}.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-primary-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-secondary-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-primary-alter-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-transparent-alter-button{margin-top:0}.ultp-sidebar-card-item .ultp-sidebar-card-links{display:flex;gap:16px;flex-direction:column;margin-top:24px}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link{text-decoration:none;color:#000;font-size:16px;font-weight:400;display:flex;align-items:center;gap:12px;line-height:normal}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link:hover{text-decoration:underline}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link span{display:flex}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link svg{width:24px;height:24px;color:#1f66ff}.ultp-sidebar-card-item .ultp-sidebar-card-buttons{display:flex;gap:20px;align-items:center}.ultp-setting-hellobar-wrapper a{text-decoration:none}.ultp-setting-hellobar{background:#027fff;padding:6px 0;text-align:center;color:rgba(255,255,255,.85);font-size:14px;display:flex;gap:20px;justify-content:center;align-items:center}.ultp-setting-hellobar a{margin-left:4px;font-size:14px;color:#fff}.ultp-setting-hellobar strong{color:#fff;font-weight:700}.ultp-ring{-webkit-animation:ring 4s .7s ease-in-out infinite;-moz-animation:ring 4s .7s ease-in-out infinite;animation:ring 4s .7s ease-in-out infinite;color:#fff}.helobarClose{position:absolute;cursor:pointer;right:15px}.helobarClose svg{height:18px;color:#fff}@keyframes ring{0%{transform:rotate(0)}1%{transform:rotate(30deg)}3%{transform:rotate(-28deg)}5%{transform:rotate(34deg)}7%{transform:rotate(-32deg)}9%{transform:rotate(30deg)}11%{transform:rotate(-28deg)}13%{transform:rotate(26deg)}15%{transform:rotate(-24deg)}17%{transform:rotate(22deg)}19%{transform:rotate(-20deg)}21%{transform:rotate(18deg)}23%{transform:rotate(-16deg)}25%{transform:rotate(14deg)}27%{transform:rotate(-12deg)}29%{transform:rotate(10deg)}31%{transform:rotate(-8deg)}33%{transform:rotate(6deg)}35%{transform:rotate(-4deg)}37%{transform:rotate(2deg)}39%{transform:rotate(-1deg)}41%{transform:rotate(1deg)}43%{transform:rotate(0)}100%{transform:rotate(0)}}',\"\"]);const l=i},4421:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-license{--brand-color: #037fff;--brand-color-fade: #f0f7ff;max-width:1600px;padding:32px !important;display:flex;margin:0 auto !important;gap:32px}.ultp-license__activation{background-color:#fff;padding:32px !important;box-shadow:0px 2px 4px 0px rgba(91,95,88,.078);max-width:890px;width:60%}.ultp-license__title{margin-bottom:32px !important;color:#000;font-size:24px;line-height:1.2em;font-weight:600}.ultp-license__form{margin-bottom:30px !important}.ultp-license__form input{width:100%;padding:0 8px;color:#000 !important;border-radius:4px !important;max-height:40px !important;border-color:currentColor !important}.ultp-license__helper-text{font-size:12px;color:#80837f;margin-top:8px !important}.ultp-license__renew-link{display:flex;align-items:center;gap:6px;color:#fff;background-color:#f17b2c;border-radius:6px;box-shadow:none;padding:4px 8px;cursor:pointer;text-decoration:none;margin-left:12px}.ultp-license__renew-link:hover{color:#fff}.ultp-license__link{color:var(--brand-color)}.ultp-license__status-messages{display:flex;flex-direction:column;gap:30px;margin-top:48px !important;margin-bottom:48px !important}.ultp-license__status-message{display:flex;align-items:center;font-size:14px}.ultp-license__status-message-label{text-align:left;color:#000;width:133px}.ultp-license__status-message-value{color:#000;text-align:left}.ultp-license__status-message-value::before{content:\":\";margin-right:33px !important;color:#000}.ultp-license__faq{max-width:567px;width:40%;padding-left:32px !important;border-left:1px solid #d5dad4}.ultp_license_action_btn{display:flex;gap:10px;margin-left:auto;margin-top:32px !important;text-transform:none;text-decoration:none;justify-content:center;font-size:14px;font-weight:500;border-radius:4px;background-color:var(--brand-color);width:fit-content;padding:10px 20px !important;color:#fff;cursor:pointer}.ultp-activate-loading{--loader-size: 22px;--loader-thickness: 3px;--loader-brand-color: #ffffff;width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top\u002Fvar(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:ultp-activate-loading 1s infinite linear}@keyframes ultp-activate-loading{100%{transform:rotate(1turn)}}.ultp-license-faq__item{margin-bottom:32px !important}.ultp-license-faq__question{text-align:left;color:#000;font-size:24px;font-weight:600;line-height:1.3em}.ultp-license-faq__answer{text-align:left;color:#262a25;margin-top:8px !important;font-size:14px}.ultp-license-message{display:flex;align-items:flex-start;background-color:var(--brand-color-fade);border:1px solid var(--brand-color);border-radius:8px;padding:24px !important}.ultp-license-message__icon{color:var(--brand-color);font-size:24px;margin-right:16px !important}.ultp-license-message__content{flex:1}.ultp-license-message__title{color:#0b0e04;margin-top:-8px !important;margin-bottom:8px !important}.ultp-license-message__text{text-align:left;color:#0b0e04;font-size:14px}.ultp-license-message-congrats{font-size:24px;font-weight:600}.ultp-custom-skeleton-loader{background:linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);background-size:200% 100%;animation:ultp-custom-skeleton-anim 4s infinite;display:inline-block}@keyframes ultp-custom-skeleton-anim{0%{background-position:200% 0}100%{background-position:-200% 0}}.ultp-license__upgrade-message{display:flex;gap:12px;align-items:end}.ultp-license__upgrade-message .ultp-license__upgrade-message-title{display:flex;flex-direction:column;gap:4px}.ultp-license__upgrade-message .ultp-license__upgrade-message-title select{min-height:36px;width:100%;max-width:100%}.ultp-license__upgrade-message .ultp-license__upgrade-link{color:#fff;background-color:var(--brand-color);text-decoration:none;font-weight:500;font-size:14px;padding:8px 16px;border-radius:4px}',\"\"]);const l=i},2041:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-plugins-wrapper{background-color:var(--postx-h1-fontsize)}.ultp-plugin-items{display:grid;grid-template-columns:repeat(4, 1fr);gap:32px}@media only screen and (max-width: 1200px){.ultp-plugin-items{grid-template-columns:repeat(2, 1fr)}}@media only screen and (max-width: 425px){.ultp-plugin-items{grid-template-columns:repeat(1, 1fr)}}.ultp-plugin-items .ultp-plugin-item{padding:24px;background:#fff;box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863);border-radius:8px;display:flex;gap:12px;flex-direction:column}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-title{display:flex;align-items:center;gap:16px;font-weight:600;font-size:18px;line-height:24px;color:#070707}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-title img{width:40px;height:40px}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-desc{font-weight:400;font-size:14px;line-height:20px;color:#4a4a4a}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action{display:flex;align-items:center;gap:20px}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-secondary-button{padding:10px 24px;font-weight:500}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-secondary-button:hover{background-color:#070707;color:#fff}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-transparent-alter-button{color:#070707;font-weight:500}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-activated-button{background-color:#fff;color:#1f66ff;border:1px solid #1f66ff;cursor:not-allowed}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-activated-button:hover{background-color:#fff;color:#1f66ff}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-active-btn{gap:10px}.ultp-plugin-items .ultp-plugin-item-loading{--loader-size: 18px;--loader-thickness: 3px;--loader-brand-color: var(--postx-primary-color);width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top\u002Fvar(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:ultp-install-loading 1s infinite linear}@keyframes ultp-install-loading{100%{transform:rotate(1turn)}}\",\"\"]);const l=i},6657:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultpPages li.active{color:#ee0404}.tableCon{margin-top:30px;border-radius:4px;box-shadow:0 1px 2px 0 rgba(8,68,129,.2)}.ultp-bulk-con{display:flex;justify-content:space-between;border-radius:4px 4px 0 0 !important;box-shadow:unset !important;flex-wrap:wrap;gap:20px}.ultp-bulk-con>div{display:flex;gap:15px}.ultp-bulk-con select,.ultp-bulk-con input{max-height:35px}.ultp-bulk-con .ultp-primary-button{padding:6px 15px}.ultp-bulk-con input[type=text],.ultp-bulk-con select{border:1px solid #eaedf2;padding-left:12px}.ultp-bulk-con input[type=text]:focus,.ultp-bulk-con select:focus{box-shadow:none;outline:0;border:1px solid var(--postx-primary-color)}.pageCon{display:flex;justify-content:space-between;border-radius:0 0 4px 4px;padding:22px 25px;background:#fff}.pageCon .ultpPages{display:flex;gap:12px}.pageCon .ultpPages .currentPage{background:#000;border-radius:50%;font-size:14px;color:var(--postx-white-color);height:25px;width:25px;text-align:center}.pageCon .ultpPages span:not(.currentPage){cursor:pointer;display:flex;align-items:center}.pageCon .ultpPages span:not(.currentPage) svg{height:14px;width:14px}.shortCode{cursor:copy;position:relative}.shortCode span{background:rgba(0,0,0,.7);color:#fff;border-radius:6px;position:absolute;left:calc(100% + 6px);padding:2px 6px}th.title{width:220px}th.fontType{width:65px}th.fontpreview{width:300px}.fontType{text-align:center}.actions{position:relative}.actions .dashicons{cursor:pointer}.actions .actionPopUp{position:absolute;width:130px;right:0;text-align:left;padding:10px;z-index:1}.actions .actionPopUp li{cursor:pointer;margin-bottom:8px;padding:0 6px}.actions .actionPopUp li a{display:block;text-decoration:none}.actions .actionPopUp li:hover{background:rgba(3,127,255,.04);border-radius:4px}.actions .actionPopUp li .dashicons{font-size:16px;margin-right:5px}.ultpTable{width:100%}.ultpTable table{width:100%;border-spacing:0px}.ultpTable table thead tr{background:rgba(3,127,255,.04)}.ultpTable table thead tr th{font-size:14px;border-bottom:1px solid #e7eef7;border-top:1px solid #e7eef7;padding:15px 0px;color:#091f36}.ultpTable table th:first-child,.ultpTable table td:first-child{padding-left:25px;padding-right:12px;width:55px}.ultpTable table th:last-child,.ultpTable table td:last-child{text-align:center;padding-right:25px}.ultpTable table tbody{background:#fff}.ultpTable table tbody .dashicons{vertical-align:middle}.ultpTable table tbody tr td{border-bottom:1px solid #eaedf2;padding:15px 0px;color:#575a5d;font-size:14px}.ultpTable table tbody tr td.title a{color:var(--postx-primary-color)}.ultpTable table tbody tr td.typeDate{text-transform:capitalize}@media only screen and (max-width: 1350px){.ultpTable{overflow-x:auto}.ultpTable table{width:1200px}}\",\"\"]);const l=i},2793:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-addon-lock-container{position:fixed;top:20%;z-index:999;background:#fff;padding:40px 100px;border-radius:4px;box-shadow:0 50px 99px 0 rgba(62,51,51,.5)}.ultp-addon-lock-container .ultp-popup-unlock{display:flex;flex-direction:column;align-items:center;justify-content:center;max-width:300px;width:100%;width:100%;gap:20px}.ultp-addon-lock-container .ultp-popup-unlock .title{text-align:center}.ultp-addon-lock-container .ultp-popup-unlock img{height:112px}.ultp-addon-lock-container .ultp-popup-unlock .ultp-description{text-align:center}.ultp-addon-lock-container .ultp-popup-close{position:absolute;font-size:0px;top:0;right:-10%;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff}.ultp-addon-lock-container .ultp-popup-close:hover{background:red}.ultp-addon-lock-container .ultp-popup-close:hover svg{color:#fff}.ultp-addon-lock-container-overlay{background:rgba(0,0,0,.7);position:absolute;right:0;height:100%;width:100%;z-index:999;top:0;display:flex;justify-content:center}\",\"\"]);const l=i},4558:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-settings-container.ultp-settings-container-startersites{padding-top:0;padding-left:0;padding-right:0}.ultp-settings-container.ultp-settings-container-startersites .ultp-settings-content{max-width:100%}.ultp-settings-container.ultp-settings-container-startersites .ultp-premade-grid{max-width:1376px;margin:0 auto;padding-left:30px;padding-right:30px}#ultp-starter-preview.mobileView,#ultp-starter-preview.tabletView{box-shadow:#828282 0px 0px 12px -3px;border-radius:8px 8px 0px 0px;margin-top:24px}.ultp_starter_packs_demo .wp-full-overlay-sidebar{width:300px !important}.ultp_starter_packs_demo.expanded .wp-full-overlay-footer{width:299px !important}.ultp_starter_packs_demo .wp-full-overlay-main::before{content:unset}.ultp_starter_packs_demo.wp-full-overlay.expanded{margin-left:300px !important}.ultp_starter_packs_demo.inactive.expanded{margin-left:0 !important}.ultp_starter_packs_demo.inactive.expanded .wp-full-overlay-sidebar,.ultp_starter_packs_demo.inactive.expanded .wp-full-overlay-footer{margin-left:-300px !important}.ultp_starter_packs_demo .ultp_starter_packs_demo_header{display:flex;justify-content:space-between;padding-right:12px;padding-left:12px;align-items:center;height:100%}.ultp_starter_packs_demo .ultp_starter_packs_demo_header .packs_title{font-size:14px}.ultp_starter_packs_demo .ultp-starter-packs-device-container{display:flex;gap:10px;line-height:normal;align-items:center;justify-content:center}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device{border:1px solid rgba(0,0,0,0);height:14px;padding:2px;transition:400ms}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device svg{width:15px;cursor:pointer;color:#091f36;opacity:.5}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device.d-active{border:1px solid #091f36;border-radius:2px}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device.d-active svg{opacity:1}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device:hover svg{opacity:1}.ultp_starter_packs_demo .close-full-overlay{margin-left:12px;border:none;padding:0;width:auto}.ultp_starter_packs_demo .close-full-overlay:hover{background:none;color:var(--postx-primary-color)}.ultp_starter_packs_demo .ultp_starter_preset_container{padding:20px}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp_starter_reset_container{display:flex;justify-content:space-between;margin-bottom:15px;align-items:center}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp_starter_reset_container .dashicons{font-size:16px;height:16px;cursor:pointer}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group{display:grid;grid-template-columns:1fr 1fr;gap:10px}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list{background:#fff;display:flex;padding:4px;gap:2px;align-items:center;justify-content:space-between;margin-bottom:0;cursor:pointer;border-radius:4px;border:1px solid #ededed}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list.active,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list:hover{border:1px solid #037fff}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-global-color,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-global-current-color{width:20px;height:20px;border-radius:50%;display:inline-block;box-shadow:0 0 5px 1px rgba(0,0,0,.05);border:1px solid #e5e5e5}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:25px;position:relative}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list{background:#fff;display:flex;padding:5px;cursor:pointer;border-radius:2px;border:1px solid #ededed;margin-bottom:0;width:55px;box-sizing:border-box;justify-content:center}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list.active,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list:hover{border:1px solid #037fff}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list>span{font-size:24px}.ultp_starter_packs_demo .ultp_starter_import_options{position:absolute;bottom:0;width:100%;box-sizing:border-box;padding:15px 20px;border-top:1px solid #dcdcde;background:#fff}.ultp_starter_packs_demo .ultp_starter_import_options .title{text-align:center}.ultp_starter_packs_demo .ultp_starter_import_options .option_buttons{display:flex;gap:10px;justify-content:center;margin-top:10px;margin-bottom:15px}.ultp_starter_packs_demo .ultp_starter_import_options .option_buttons a{width:100%;box-sizing:border-box;text-align:center}.ultp_starter_packs_demo .close-full-overlay{background:#fff}.ultp_starter_packs_demo .wp-full-overlay-header{background:#fff;height:60px}.ultp_starter_packs_demo .packs_title{color:#091f36;font-size:16px;font-weight:600;line-height:normal}.ultp_starter_packs_demo .packs_title span{text-transform:capitalize;display:block;color:#575a5d;font-weight:normal;margin-top:5px}.ultp_starter_packs_demo .ultp-starter-collapse{position:absolute;width:40px;height:40px;right:-20px;background:#fff;border-radius:100px;top:70px;box-shadow:inset 0 0 0 1px rgba(9,32,54,.15),0 2px 15px 6px rgba(9,32,54,.15);text-align:center;line-height:40px;cursor:pointer;transition:400ms;z-index:9999}.ultp_starter_packs_demo .ultp-starter-collapse svg{transform:rotate(90deg);width:100%;transition:400ms;color:#091f36;margin-left:-2px}.ultp_starter_packs_demo .ultp-starter-collapse:hover{transform:scale(1.1);background:#091f36}.ultp_starter_packs_demo .ultp-starter-collapse:hover svg{color:#fff}.ultp_starter_packs_demo .ultp-starter-collapse.inactive{right:-44px}.ultp_starter_packs_demo .ultp-starter-collapse.inactive svg{transform:rotate(-90deg);margin-left:2px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content{background:#f7f9ff;bottom:112px;top:60px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow{padding:25px 20px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow>.ultp_skeleton__custom_size{margin:auto}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors{margin-top:30px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors>.ultp_skeleton__custom_size{margin-bottom:20px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors .demos-color{display:grid;grid-template-columns:1fr 1fr;gap:10px}.ultp_starter_packs_demo .close-full-overlay{height:60px}.ultp_starter_packs_demo .close-full-overlay::before{font-size:32px}.ultp-stater-container-settings-overlay{background:rgba(0,0,0,.7);position:absolute;right:0;height:100vh;width:100vw;z-index:999999999999;top:-32px;display:flex;justify-content:center}.ultp-stater-settings-container{position:fixed;top:6%;z-index:999;background:#fff;border-radius:4px;box-shadow:0 50px 99px 0 rgba(62,51,51,.5);display:flex}.ultp-stater-settings-container>div:first-child{flex:1;max-height:auto;width:600px}.ultp-stater-settings-container .ultp-info{margin-bottom:15px;color:#575a5d}.ultp-stater-settings-container .ultp-info.ultp-info-desc{font-size:16px}.ultp-stater-settings-container .ultp-stater-settings-header{color:#091f36;font-size:16px;font-weight:400;position:absolute;box-sizing:border-box;width:100%;top:0;padding:12px 30px;border-bottom:1px solid #eaedf2}.ultp-stater-settings-container .stater_title{color:#091f36;margin-bottom:15px;font-size:16px;font-weight:600}.ultp-stater-settings-container .ultp-popup-stater{padding:40px 40px 20px;max-height:calc(75vh - 20px);overflow:auto}.ultp-stater-settings-container .ultp-popup-stater .input_container{margin-bottom:15px}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]{margin-right:8px;width:22px;height:20px}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]:checked{background:#092036}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]:checked::before{left:6px;top:9px;font-size:13px;transform:rotate(6deg)}.ultp-stater-settings-container .starter_page_impports{margin-top:25px;margin-bottom:20px}.ultp-stater-settings-container .starter_page_impports .cursor{font-size:14px;margin-top:15px;transition:400ms;color:#091f36;opacity:.7}.ultp-stater-settings-container .starter_page_impports .cursor:hover{opacity:1}.ultp-stater-settings-container .starter_page_impports .cursor svg{height:10px;width:10px;margin-left:4px}.ultp-stater-settings-container .starter_import{padding-left:40px;padding-right:40px;padding-bottom:40px;text-align:center}.ultp-stater-settings-container .starter_import .ultp-primary-button{width:100%;box-sizing:border-box;justify-content:center}.ultp-stater-settings-container .ultp-popup-close{position:absolute;font-size:0px;top:0;right:-10%;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff}.ultp-stater-settings-container .ultp-popup-close:hover{background:red}.ultp-stater-settings-container .ultp-popup-close:hover svg{color:#fff}.ultp-stater-settings-container .ultp-popup-close.s_loading{cursor:no-drop}.ultp-stater-settings-container .input_container .email_box{width:100%;box-sizing:border-box;margin:8px 0;border:1px solid #dcdcde;border-radius:2px;padding:5px 15px}.ultp-stater-settings-container .input_container .get_newsletter{background:#888}.ultp-stater-settings-container .ultp_successful_import .stater_title{font-size:20px}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders{margin:20px 0;max-width:80%;font-size:16px}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders a{color:var(--postx-primary-color);text-decoration:underline}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders a:hover{color:var(--postx-primary-hover-color)}.ultp-stater-settings-container .ultp_successful_import .ultp-primary-button{margin-bottom:20px}.ultp-stater-settings-container .ultp_processing_import .stater_title{font-size:20px}.ultp-stater-settings-container .ultp_processing_import .progress{font-size:16px;margin-top:12px}.ultp-stater-settings-container .ultp_processing_import .ultp_import_notice{margin-top:10px;margin-bottom:20px;color:var(--postx-warning-button-color)}.ultp-stater-settings-container .ultp_processing_import .ultp_import_notice>span{font-size:14px;font-weight:500}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show{margin-top:20px;margin-bottom:0;text-align:center}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show .ultp-importer-loader{width:100%;height:20px;background-color:#f0f0f0;position:relative;border-radius:4px;overflow:hidden}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show #ultp-importer-loader-bar{width:0;height:100%;background-color:var(--postx-primary-color);position:absolute;transition:width .5s}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show #ultp-importer-loader-percentage{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show .ultp_processing_loader{border-radius:4px;width:80%;height:12px;display:inline-block;background-color:#f7f9ff;background-image:linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%, transparent 50%, rgba(3, 127, 255, 0.75) 50%, rgba(3, 127, 255, 0.75) 75%, transparent 75%, transparent);font-size:30px;background-size:1em 1em;box-sizing:border-box;animation:ultp_processing_loader .5s linear infinite}@keyframes ultp_processing_loader{0%{background-position:0 0}100%{background-position:1em 0}}.ultp_starter_dark_container{display:flex;gap:5px;align-items:center;margin-bottom:25px;margin-top:15px;font-size:16px}.ultp_starter_dark_container .ultp_starter_dark_enable{display:none;height:0;width:0;border-radius:2px;border:solid 1px #eaedf2;background:#fff;position:relative;margin:0;box-shadow:none}.ultp_starter_dark_container .ultp_starter_dark_enable:checked+label{opacity:unset}.ultp_starter_dark_container .ultp_starter_dark_enable:checked+label::after{left:calc(100% - 3px);transform:translateX(-100%)}.ultp_starter_dark_container>label{color:#037fff;width:36px;height:18px;display:block;cursor:pointer;border-radius:100px;text-indent:-9999px;background:var(--postx-primary-color);opacity:.4;position:relative;margin:0 8px}.ultp_starter_dark_container>label::after{content:\"\";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:90px;background:#fff;transition:.3s}.ultp_starter_dark_container{justify-content:center}.ultp_starter_dark_container .ultp-dl-container{cursor:pointer;display:flex;background:#fff;gap:10px;align-items:center;border-radius:100px;width:140px;height:40px;box-shadow:0px 0px 0 2px rgba(9,32,54,.2),2px 4px 15px 5px rgba(9,32,54,.1)}.ultp_starter_dark_container .ultp-dl-container svg{height:20px;width:20px}.ultp_starter_dark_container .ultp-dl-container .ultp-dl-svg-con{transform:translateX(4px)}.ultp_starter_dark_container .ultp-dl-container .ultp-dl-svg-con.dark svg{color:#fff}.ultp_starter_dark_container .ultp-dl-svg{display:flex;background:#091f36;padding:6px;border-radius:50%}.ultp_starter_dark_container .ultp-dl-svg svg{fill:#ffc107}.iframe_loader{height:100%;width:100%;background-color:#fff;overflow-y:scroll}.iframe_loader .iframe_container{width:calc(100% - 80px);height:100%;display:flex;flex-direction:column;gap:40px;padding:60px 40px}.iframe_loader .iframe_header_top{display:flex;justify-content:space-between;gap:40px;align-items:center}.iframe_loader .header_top_right{display:flex;justify-content:space-between;align-items:center;gap:20px}.iframe_loader .iframe_body{height:100%;display:flex;flex-wrap:wrap;gap:24px;margin-top:20px}.iframe_loader .iframe_body_slider{margin-bottom:60px}.iframe_loader .iframe_body_left{flex-basis:calc(60% - 12px);border-radius:4px;display:flex;flex-direction:column;gap:20px}.iframe_loader .iframe_body_right{flex-basis:calc(40% - 12px);border-radius:4px;display:flex;flex-direction:column;gap:20px}.ultp-starter-button{cursor:pointer;padding:12px 25px;color:#fff !important;font-size:14px;background:linear-gradient(180deg, #399aff, transparent) #004fd0;border-radius:4px;text-decoration:none;display:inline-block;width:fit-content;border:none;transition:background-color 400ms}.ultp-starter-button:hover{background-color:var(--postx-primary-color)}',\"\"]);const l=i},6922:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,':root{--xpo-support-color-primary: #335cff;--xpo-support-color-secondary: #4263eb;--xpo-support-color-base-one: #ffffff;--xpo-support-color-base-two: #e1e7ff;--xpo-support-color-base-three: #e0e0e0;--xpo-support-color-green: #09fd09;--xpo-support-color-red: #fb3748;--xpo-support-color-dark: #070707;--xpo-support-color-reverse: #ffffff;--xpo-support-color-title: #0e121b;--xpo-support-color-border-primary: #e1e4ea;--xpo-support-color-shadow: rgba(0, 0, 0, 0.1)}.xpo-support-pops-btn{position:fixed;bottom:34px;right:20px;background-color:var(--xpo-support-color-primary);border-radius:50%;width:56px;height:56px;display:flex;justify-content:center;align-items:center;box-shadow:0 4px 15px var(--xpo-support-color-shadow);cursor:pointer;z-index:9999;transition-property:all;transition-duration:.2s}.xpo-support-pops-btn--small{scale:.8;bottom:0px;right:0px;transition-property:all;transition-duration:.2s}.xpo-support-pops-btn--small:hover:after{content:\"\";position:absolute;inset:-20px;z-index:-10}.xpo-support-pops-btn--small:hover{scale:1;bottom:34px;right:20px}.xpo-support-pops-btn--big{scale:1 !important;bottom:34px !important;right:20px !important}.xpo-support-pops-container--full-height{max-height:551px;height:calc(100vh - 150px);overflow:auto !important}.xpo-support-pops-container{position:fixed;bottom:90px;right:20px;background-color:var(--xpo-support-color-base-one);border-radius:8px;box-shadow:0 4px 15px var(--xpo-support-color-shadow);overflow:hidden;width:400px;max-width:calc(100% - 40px);z-index:9999;margin-bottom:8px}.xpo-support-pops-header{background-color:var(--xpo-support-color-primary);color:var(--xpo-support-color-reverse);text-align:center;padding:24px 24px 0;position:relative;overflow:hidden;z-index:0}.xpo-support-header-bg{position:absolute;inset:0;z-index:-1;opacity:.2;background:radial-gradient(circle, var(--xpo-support-color-secondary) 4px, transparent 5px),radial-gradient(circle, var(--xpo-support-color-reverse) 5px, transparent 5px);background-repeat:repeat;background-size:20px 20px,20px 20px}.xpo-support-pops-avatars{width:fit-content;margin:0 auto;position:relative}.xpo-support-pops-avatars img{display:inline-block;justify-content:center;align-items:center;margin-bottom:15px;width:60px;height:60px;border-radius:50%;margin-left:-20px;border:2px solid var(--xpo-support-color-primary);margin-bottom:5px}.xpo-support-signal{width:10px;height:10px;border-radius:50%;display:inline-block;margin-left:5px;border:2px solid var(--xpo-support-color-base-one);position:absolute;bottom:14px;right:6px}.xpo-support-signal-green{background-color:var(--xpo-support-color-green)}.xpo-support-signal-red{background-color:var(--xpo-support-color-red)}.xpo-support-pops-text{font-weight:600;font-size:14px;padding-bottom:24px}.xpo-support-chat-body{padding:20px}.xpo-support-title{font-size:14px;font-weight:500;line-height:20px;letter-spacing:-0.08px;color:var(--xpo-support-color-title);margin-bottom:4px}input.xpo-input-support,textarea.xpo-input-support{width:100%;padding:12px;border:1px solid var(--xpo-support-color-border-primary);border-radius:4px;font-size:16px;outline:none;margin-bottom:16px}input[type=email].xpo-input-support{max-height:48px}textarea.xpo-input-support{min-height:150px;resize:none}.xpo-send-button{background-color:var(--xpo-support-color-primary);color:var(--xpo-support-color-reverse);width:100%;padding:15px;border:none;border-radius:4px;font-size:16px;font-weight:500;cursor:pointer;display:flex;justify-content:center;align-items:center;gap:10px}.xpo-support-animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px !important;color:var(--xpo-support-color-base-one);stroke-miterlimit:10;box-shadow:inset 0 0 0 var(--xpo-support-color-base-two);animation:fill-message .4s ease-in-out .4s forwards,scale-message .3s ease-in-out .9s both;margin-right:10px !important}@keyframes scale-message{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fill-message{100%{box-shadow:inset 0px 0px 0px 30px var(--xpo-support-color-base-two)}}.xpo-support-circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:var(--xpo-support-color-base-two);fill:none;animation:stroke-message .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.xpo-support-check{stroke-width:2;color:var(--xpo-support-color-primary)}@keyframes stroke-message{100%{stroke-dashoffset:0}}.xpo-support-thankyou-icon{line-height:0;margin:0 auto;width:fit-content}.xpo-support-thankyou-title{margin:24px auto 12px;font-size:24px;font-weight:600;line-height:32px;letter-spacing:-0.36px;color:var(--xpo-support-color-dark);text-align:center}.xpo-support-thankyou-subtitle{font-size:14px;line-height:20px;font-weight:400;letter-spacing:-0.18px;text-align:center}.xpo-support-entry-anim{animation:xpo-support-entry-anim 200ms ease 0s 1 normal forwards}@keyframes xpo-support-entry-anim{0%{opacity:0;transform:translateY(50px)}100%{opacity:1;transform:translateY(0)}}.xpo-support-loading{--loader-size: 21px;--loader-thickness: 3px;--loader-brand-color: var(--xpo-support-color-reverse);width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top\u002Fvar(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:xpo-support-loading-anim 1s infinite linear}@keyframes xpo-support-loading-anim{100%{transform:rotate(1turn)}}#xpo-support-file-input{width:100%;max-width:100%;color:#444;padding:4px;background:#fff;border:1px solid var(--xpo-support-color-border-primary);border-radius:4px;font-size:14px;min-height:unset}#xpo-support-file-input::file-selector-button{margin-right:20px;border:none;background:var(--xpo-support-color-primary);padding:5px 10px;font-size:16px;border-radius:4px;color:var(--xpo-support-color-reverse);cursor:pointer;transition:background .2s ease-in-out}#xpo-support-file-input::file-selector-button:hover{background:var(--xpo-support-color-secondary)}',\"\"]);const l=i},439:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".toastMessages{display:flex;flex-direction:column;gap:10px;padding:10px;position:fixed;right:400px;z-index:1001;top:70px}.toast{position:absolute}.toaster{position:fixed;visibility:hidden;width:345px;background-color:#fefefe;height:76px;border-radius:4px;box-shadow:0px 0px 4px #9f9f9f;display:flex;align-items:center}.toaster span{display:block}.toaster .itmCenter{font-size:14px}.toaster .itmLast{padding:0 15px;margin-left:auto;height:100%;display:flex;align-items:center;border-left:1px solid #f2f2f2}.toaster .itmLast:hover{cursor:pointer;background-color:#f2f2f2}.toaster.show{visibility:visible;-webkit-animation:fadeinmessage .7s;animation:fadeinmessage .7s}@keyframes fadeinmessage{from{right:0;opacity:0}to{right:65px;opacity:1}}.circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:#7ac142;fill:none;animation:strokemessage .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px;color:#fff;stroke-miterlimit:10;box-shadow:inset 0px 0px 0px #7ac142;animation:fillmessage .4s ease-in-out .4s forwards,scalemessage .3s ease-in-out .9s both;margin-right:10px}.check{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;animation:strokemessage .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards}.cross{color:red;fill:red}@keyframes strokemessage{100%{stroke-dashoffset:0}}@keyframes scalemessage{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fillmessage{100%{box-shadow:inset 0px 0px 0px 30px #7ac142}}\",\"\"]);const l=i},9839:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-dashboard-modal-wrapper{position:fixed;left:0;top:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;z-index:999999;background:rgba(0,0,0,.35)}.ultp-dashboard-modal-wrapper .ultp-dashboard-modal{width:fit-content;background:#fff;max-width:90%;max-height:80%;overflow:hidden}.ultp-dashboard-modal-wrapper .ultp-modal-header{display:flex;align-items:center;height:40px;padding:0 20px 0;background:#e3f1ff;position:relative}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-modal-title{font-size:1.2rem;font-weight:600;color:#091f36}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close{position:absolute;top:-3px;right:0;color:var(--postx-white-color);font-size:25px;cursor:pointer;border:none;padding:0px 9px 3px;background-color:var(--postx-dark-color);z-index:99}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close::after{content:\"×\"}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close:hover{background:red}.ultp-dashboard-modal-wrapper .ultp-modal-body{padding:20px}.ultp-dashboard-modal-wrapper .ultp-modal-body iframe{max-width:100%;max-height:100%}',\"\"]);const l=i},1211:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp_skeleton__image{height:300px;width:300px;border-radius:4px}.ultp_skeleton__circle{height:300px;width:300px;border-radius:50%}.ultp_skeleton__title{height:20px;width:100%;border-radius:4px}.ultp_skeleton__button{height:40px;width:90px;border-radius:4px}.ultp_frequency{position:relative;background-color:#e2e2e2;overflow:hidden}.ultp_frequency.loop{margin-bottom:10px}.ultp_frequency.loop:last-child{margin-bottom:0}.ultp_frequency::after{display:block;content:\"\";position:absolute;width:100%;height:100%;transform:translateX(-100%);background:-webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));background:linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);animation:loadings .8s infinite}.skeletonOverflow{overflow:hidden}@keyframes loadings{100%{transform:translateX(100%)}}',\"\"]);const l=i},1589:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-tooltip-wrapper{display:inline-block;position:relative;width:inherit;height:inherit}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip{position:unset}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip .tooltip-content{width:fit-content;bottom:unset;left:90px;top:-36px !important}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip .tooltip-content::before{content:unset}.tooltip-content{top:unset !important;background:#000;color:#fff;font-size:12px;line-height:1.4;z-index:100;white-space:pre-wrap;width:250px;position:absolute;bottom:25px;transform:translateX(-46%);padding:8px 12px;border-radius:4px;white-space:pre-wrap}.tooltip-content::before{content:\" \";left:50%;border:solid rgba(0,0,0,0);height:0;width:0;position:absolute;pointer-events:none;border-width:6px;margin-left:-6px}.tooltip-content.top::before{top:100%;border-top-color:#000}.tooltip-content.right{left:calc(100% + 30px);top:50%;transform:translateX(0) translateY(-50%)}.tooltip-content.right::before{left:-6px;top:50%;transform:translateX(0) translateY(-50%);border-right-color:#000}.tooltip-content.bottom{bottom:-30px}.tooltip-content.bottom::before{bottom:100%;border-bottom-color:#000}.tooltip-content.left{left:auto;right:calc(100% + 30px);top:50%;transform:translateX(0) translateY(-50%)}.tooltip-content.left::before{left:auto;right:-12px;top:50%;transform:translateX(0) translateY(-50%);border-left-color:#000}.tooltip-icon{width:inherit;height:inherit;font-size:28px}',\"\"]);const l=i},1729:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-design-search-wrapper{margin-bottom:20px;width:fit-content;margin-left:auto;margin-right:auto}@media only screen and (max-width: 1250px){.ultp-design-search-wrapper{display:none}}.ultp-design-search-wrapper .ultp-design-search-input{color:#575a5d;padding:8px 15px;min-width:250px;height:36px;font-size:14px;border-radius:2px;border:solid 1px #eaedf2;background-color:#fff}.ultp-design-search-wrapper .ultp-design-search-input:focus{border:1px solid var(--postx-primary-color);box-shadow:unset}@media only screen and (max-width: 1350px){.ultp-design-search-wrapper .ultp-design-search-input{min-width:220px}}\",\"\"]);const l=i},3645:e=>{\"use strict\";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=\"\",a=void 0!==t[5];return t[4]&&(n+=\"@supports (\".concat(t[4],\") {\")),t[2]&&(n+=\"@media \".concat(t[2],\" {\")),a&&(n+=\"@layer\".concat(t[5].length>0?\" \".concat(t[5]):\"\",\" {\")),n+=e(t),a&&(n+=\"}\"),t[2]&&(n+=\"}\"),t[4]&&(n+=\"}\"),n})).join(\"\")},t.i=function(e,n,a,r,o){\"string\"==typeof e&&(e=[[null,e,void 0]]);var i={};if(a)for(var l=0;l\u003Cthis.length;l++){var s=this[l][0];null!=s&&(i[s]=!0)}for(var p=0;p\u003Ce.length;p++){var c=[].concat(e[p]);a&&i[c[0]]||(void 0!==o&&(void 0===c[5]||(c[1]=\"@layer\".concat(c[5].length>0?\" \".concat(c[5]):\"\",\" {\").concat(c[1],\"}\")),c[5]=o),n&&(c[2]?(c[1]=\"@media \".concat(c[2],\" {\").concat(c[1],\"}\"),c[2]=n):c[2]=n),r&&(c[4]?(c[1]=\"@supports (\".concat(c[4],\") {\").concat(c[1],\"}\"),c[4]=r):c[4]=\"\".concat(r)),t.push(c))}},t}},1667:e=>{\"use strict\";e.exports=function(e,t){return t||(t={}),e?(e=String(e.__esModule?e.default:e),\u002F^['\"].*['\"]$\u002F.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),\u002F[\"'() \\t\\n]|(%20)\u002F.test(e)||t.needQuotes?'\"'.concat(e.replace(\u002F\"\u002Fg,'\\\\\"').replace(\u002F\\n\u002Fg,\"\\\\n\"),'\"'):e):e}},8081:e=>{\"use strict\";e.exports=function(e){return e[1]}},7418:e=>{\"use strict\";var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String(\"abc\");if(e[5]=\"de\",\"5\"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n\u003C10;n++)t[\"_\"+String.fromCharCode(n)]=n;if(\"0123456789\"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(\"\"))return!1;var a={};return\"abcdefghijklmnopqrst\".split(\"\").forEach((function(e){a[e]=e})),\"abcdefghijklmnopqrst\"===Object.keys(Object.assign({},a)).join(\"\")}catch(e){return!1}}()?Object.assign:function(e,r){for(var o,i,l=function(e){if(null==e)throw new TypeError(\"Object.assign cannot be called with null or undefined\");return Object(e)}(e),s=1;s\u003Carguments.length;s++){for(var p in o=Object(arguments[s]))n.call(o,p)&&(l[p]=o[p]);if(t){i=t(o);for(var c=0;c\u003Ci.length;c++)a.call(o,i[c])&&(l[i[c]]=o[i[c]])}}return l}},4448:(e,t,n)=>{\"use strict\";var a=n(7294),r=n(7418),o=n(3840);function i(e){for(var t=\"https:\u002F\u002Freactjs.org\u002Fdocs\u002Ferror-decoder.html?invariant=\"+e,n=1;n\u003Carguments.length;n++)t+=\"&args[]=\"+encodeURIComponent(arguments[n]);return\"Minified React error #\"+e+\"; visit \"+t+\" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\"}if(!a)throw Error(i(227));var l=new Set,s={};function p(e,t){c(e,t),c(e+\"Capture\",t)}function c(e,t){for(s[e]=t,e=0;e\u003Ct.length;e++)l.add(t[e])}var d=!(\"undefined\"==typeof window||void 0===window.document||void 0===window.document.createElement),u=\u002F^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$\u002F,m=Object.prototype.hasOwnProperty,f={},h={};function g(e,t,n,a,r,o,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=a,this.attributeNamespace=r,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}var v={};\"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style\".split(\" \").forEach((function(e){v[e]=new g(e,0,!1,e,null,!1,!1)})),[[\"acceptCharset\",\"accept-charset\"],[\"className\",\"class\"],[\"htmlFor\",\"for\"],[\"httpEquiv\",\"http-equiv\"]].forEach((function(e){var t=e[0];v[t]=new g(t,1,!1,e[1],null,!1,!1)})),[\"contentEditable\",\"draggable\",\"spellCheck\",\"value\"].forEach((function(e){v[e]=new g(e,2,!1,e.toLowerCase(),null,!1,!1)})),[\"autoReverse\",\"externalResourcesRequired\",\"focusable\",\"preserveAlpha\"].forEach((function(e){v[e]=new g(e,2,!1,e,null,!1,!1)})),\"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope\".split(\" \").forEach((function(e){v[e]=new g(e,3,!1,e.toLowerCase(),null,!1,!1)})),[\"checked\",\"multiple\",\"muted\",\"selected\"].forEach((function(e){v[e]=new g(e,3,!0,e,null,!1,!1)})),[\"capture\",\"download\"].forEach((function(e){v[e]=new g(e,4,!1,e,null,!1,!1)})),[\"cols\",\"rows\",\"size\",\"span\"].forEach((function(e){v[e]=new g(e,6,!1,e,null,!1,!1)})),[\"rowSpan\",\"start\"].forEach((function(e){v[e]=new g(e,5,!1,e.toLowerCase(),null,!1,!1)}));var _=\u002F[\\-:]([a-z])\u002Fg;function w(e){return e[1].toUpperCase()}function b(e,t,n,a){var r=v.hasOwnProperty(t)?v[t]:null;(null!==r?0===r.type:!a&&2\u003Ct.length&&(\"o\"===t[0]||\"O\"===t[0])&&(\"n\"===t[1]||\"N\"===t[1]))||(function(e,t,n,a){if(null==t||function(e,t,n,a){if(null!==n&&0===n.type)return!1;switch(typeof t){case\"function\":case\"symbol\":return!0;case\"boolean\":return!a&&(null!==n?!n.acceptsBooleans:\"data-\"!==(e=e.toLowerCase().slice(0,5))&&\"aria-\"!==e);default:return!1}}(e,t,n,a))return!0;if(a)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,n,r,a)&&(n=null),a||null===r?function(e){return!!m.call(h,e)||!m.call(f,e)&&(u.test(e)?h[e]=!0:(f[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,\"\"+n)):r.mustUseProperty?e[r.propertyName]=null===n?3!==r.type&&\"\":n:(t=r.attributeName,a=r.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(r=r.type)||4===r&&!0===n?\"\":\"\"+n,a?e.setAttributeNS(a,t,n):e.setAttribute(t,n))))}\"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height\".split(\" \").forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,null,!1,!1)})),\"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type\".split(\" \").forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxlink\",!1,!1)})),[\"xml:base\",\"xml:lang\",\"xml:space\"].forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,\"http:\u002F\u002Fwww.w3.org\u002FXML\u002F1998\u002Fnamespace\",!1,!1)})),[\"tabIndex\",\"crossOrigin\"].forEach((function(e){v[e]=new g(e,1,!1,e.toLowerCase(),null,!1,!1)})),v.xlinkHref=new g(\"xlinkHref\",1,!1,\"xlink:href\",\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxlink\",!0,!1),[\"src\",\"href\",\"action\",\"formAction\"].forEach((function(e){v[e]=new g(e,1,!1,e.toLowerCase(),null,!0,!0)}));var x=a.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,y=60103,k=60106,E=60107,C=60108,S=60114,M=60109,L=60110,N=60112,Z=60113,P=60120,z=60115,A=60116,B=60121,H=60128,T=60129,R=60130,O=60131;if(\"function\"==typeof Symbol&&Symbol.for){var j=Symbol.for;y=j(\"react.element\"),k=j(\"react.portal\"),E=j(\"react.fragment\"),C=j(\"react.strict_mode\"),S=j(\"react.profiler\"),M=j(\"react.provider\"),L=j(\"react.context\"),N=j(\"react.forward_ref\"),Z=j(\"react.suspense\"),P=j(\"react.suspense_list\"),z=j(\"react.memo\"),A=j(\"react.lazy\"),B=j(\"react.block\"),j(\"react.scope\"),H=j(\"react.opaque.id\"),T=j(\"react.debug_trace_mode\"),R=j(\"react.offscreen\"),O=j(\"react.legacy_hidden\")}var V,F=\"function\"==typeof Symbol&&Symbol.iterator;function W(e){return null===e||\"object\"!=typeof e?null:\"function\"==typeof(e=F&&e[F]||e[\"@@iterator\"])?e:null}function D(e){if(void 0===V)try{throw Error()}catch(e){var t=e.stack.trim().match(\u002F\\n( *(at )?)\u002F);V=t&&t[1]||\"\"}return\"\\n\"+V+e}var I=!1;function U(e,t){if(!e||I)return\"\";I=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,\"props\",{set:function(){throw Error()}}),\"object\"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(e){var a=e}Reflect.construct(e,[],t)}else{try{t.call()}catch(e){a=e}e.call(t.prototype)}else{try{throw Error()}catch(e){a=e}e()}}catch(e){if(e&&a&&\"string\"==typeof e.stack){for(var r=e.stack.split(\"\\n\"),o=a.stack.split(\"\\n\"),i=r.length-1,l=o.length-1;1\u003C=i&&0\u003C=l&&r[i]!==o[l];)l--;for(;1\u003C=i&&0\u003C=l;i--,l--)if(r[i]!==o[l]){if(1!==i||1!==l)do{if(i--,0>--l||r[i]!==o[l])return\"\\n\"+r[i].replace(\" at new \",\" at \")}while(1\u003C=i&&0\u003C=l);break}}}finally{I=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:\"\")?D(e):\"\"}function $(e){switch(e.tag){case 5:return D(e.type);case 16:return D(\"Lazy\");case 13:return D(\"Suspense\");case 19:return D(\"SuspenseList\");case 0:case 2:case 15:return U(e.type,!1);case 11:return U(e.type.render,!1);case 22:return U(e.type._render,!1);case 1:return U(e.type,!0);default:return\"\"}}function G(e){if(null==e)return null;if(\"function\"==typeof e)return e.displayName||e.name||null;if(\"string\"==typeof e)return e;switch(e){case E:return\"Fragment\";case k:return\"Portal\";case S:return\"Profiler\";case C:return\"StrictMode\";case Z:return\"Suspense\";case P:return\"SuspenseList\"}if(\"object\"==typeof e)switch(e.$$typeof){case L:return(e.displayName||\"Context\")+\".Consumer\";case M:return(e._context.displayName||\"Context\")+\".Provider\";case N:var t=e.render;return t=t.displayName||t.name||\"\",e.displayName||(\"\"!==t?\"ForwardRef(\"+t+\")\":\"ForwardRef\");case z:return G(e.type);case B:return G(e._render);case A:t=e._payload,e=e._init;try{return G(e(t))}catch(e){}}return null}function q(e){switch(typeof e){case\"boolean\":case\"number\":case\"object\":case\"string\":case\"undefined\":return e;default:return\"\"}}function K(e){var t=e.type;return(e=e.nodeName)&&\"input\"===e.toLowerCase()&&(\"checkbox\"===t||\"radio\"===t)}function X(e){e._valueTracker||(e._valueTracker=function(e){var t=K(e)?\"checked\":\"value\",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),a=\"\"+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&\"function\"==typeof n.get&&\"function\"==typeof n.set){var r=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return r.call(this)},set:function(e){a=\"\"+e,o.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return a},setValue:function(e){a=\"\"+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function Q(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),a=\"\";return e&&(a=K(e)?e.checked?\"true\":\"false\":e.value),(e=a)!==n&&(t.setValue(e),!0)}function J(e){if(void 0===(e=e||(\"undefined\"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function Y(e,t){var n=t.checked;return r({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function ee(e,t){var n=null==t.defaultValue?\"\":t.defaultValue,a=null!=t.checked?t.checked:t.defaultChecked;n=q(null!=t.value?t.value:n),e._wrapperState={initialChecked:a,initialValue:n,controlled:\"checkbox\"===t.type||\"radio\"===t.type?null!=t.checked:null!=t.value}}function te(e,t){null!=(t=t.checked)&&b(e,\"checked\",t,!1)}function ne(e,t){te(e,t);var n=q(t.value),a=t.type;if(null!=n)\"number\"===a?(0===n&&\"\"===e.value||e.value!=n)&&(e.value=\"\"+n):e.value!==\"\"+n&&(e.value=\"\"+n);else if(\"submit\"===a||\"reset\"===a)return void e.removeAttribute(\"value\");t.hasOwnProperty(\"value\")?re(e,t.type,n):t.hasOwnProperty(\"defaultValue\")&&re(e,t.type,q(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function ae(e,t,n){if(t.hasOwnProperty(\"value\")||t.hasOwnProperty(\"defaultValue\")){var a=t.type;if(!(\"submit\"!==a&&\"reset\"!==a||void 0!==t.value&&null!==t.value))return;t=\"\"+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}\"\"!==(n=e.name)&&(e.name=\"\"),e.defaultChecked=!!e._wrapperState.initialChecked,\"\"!==n&&(e.name=n)}function re(e,t,n){\"number\"===t&&J(e.ownerDocument)===e||(null==n?e.defaultValue=\"\"+e._wrapperState.initialValue:e.defaultValue!==\"\"+n&&(e.defaultValue=\"\"+n))}function oe(e,t){return e=r({children:void 0},t),(t=function(e){var t=\"\";return a.Children.forEach(e,(function(e){null!=e&&(t+=e)})),t}(t.children))&&(e.children=t),e}function ie(e,t,n,a){if(e=e.options,t){t={};for(var r=0;r\u003Cn.length;r++)t[\"$\"+n[r]]=!0;for(n=0;n\u003Ce.length;n++)r=t.hasOwnProperty(\"$\"+e[n].value),e[n].selected!==r&&(e[n].selected=r),r&&a&&(e[n].defaultSelected=!0)}else{for(n=\"\"+q(n),t=null,r=0;r\u003Ce.length;r++){if(e[r].value===n)return e[r].selected=!0,void(a&&(e[r].defaultSelected=!0));null!==t||e[r].disabled||(t=e[r])}null!==t&&(t.selected=!0)}}function le(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(i(91));return r({},t,{value:void 0,defaultValue:void 0,children:\"\"+e._wrapperState.initialValue})}function se(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(i(92));if(Array.isArray(n)){if(!(1>=n.length))throw Error(i(93));n=n[0]}t=n}null==t&&(t=\"\"),n=t}e._wrapperState={initialValue:q(n)}}function pe(e,t){var n=q(t.value),a=q(t.defaultValue);null!=n&&((n=\"\"+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=a&&(e.defaultValue=\"\"+a)}function ce(e){var t=e.textContent;t===e._wrapperState.initialValue&&\"\"!==t&&null!==t&&(e.value=t)}var de={html:\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxhtml\",mathml:\"http:\u002F\u002Fwww.w3.org\u002F1998\u002FMath\u002FMathML\",svg:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"};function ue(e){switch(e){case\"svg\":return\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\";case\"math\":return\"http:\u002F\u002Fwww.w3.org\u002F1998\u002FMath\u002FMathML\";default:return\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxhtml\"}}function me(e,t){return null==e||\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxhtml\"===e?ue(t):\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"===e&&\"foreignObject\"===t?\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxhtml\":e}var fe,he,ge=(he=function(e,t){if(e.namespaceURI!==de.svg||\"innerHTML\"in e)e.innerHTML=t;else{for((fe=fe||document.createElement(\"div\")).innerHTML=\"\u003Csvg>\"+t.valueOf().toString()+\"\u003C\u002Fsvg>\",t=fe.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},\"undefined\"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,t,n,a){MSApp.execUnsafeLocalFunction((function(){return he(e,t)}))}:he);function ve(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}var _e={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},we=[\"Webkit\",\"ms\",\"Moz\",\"O\"];function be(e,t,n){return null==t||\"boolean\"==typeof t||\"\"===t?\"\":n||\"number\"!=typeof t||0===t||_e.hasOwnProperty(e)&&_e[e]?(\"\"+t).trim():t+\"px\"}function xe(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var a=0===n.indexOf(\"--\"),r=be(n,t[n],a);\"float\"===n&&(n=\"cssFloat\"),a?e.setProperty(n,r):e[n]=r}}Object.keys(_e).forEach((function(e){we.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),_e[t]=_e[e]}))}));var ye=r({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ke(e,t){if(t){if(ye[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(i(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(i(60));if(\"object\"!=typeof t.dangerouslySetInnerHTML||!(\"__html\"in t.dangerouslySetInnerHTML))throw Error(i(61))}if(null!=t.style&&\"object\"!=typeof t.style)throw Error(i(62))}}function Ee(e,t){if(-1===e.indexOf(\"-\"))return\"string\"==typeof t.is;switch(e){case\"annotation-xml\":case\"color-profile\":case\"font-face\":case\"font-face-src\":case\"font-face-uri\":case\"font-face-format\":case\"font-face-name\":case\"missing-glyph\":return!1;default:return!0}}function Ce(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var Se=null,Me=null,Le=null;function Ne(e){if(e=ar(e)){if(\"function\"!=typeof Se)throw Error(i(280));var t=e.stateNode;t&&(t=or(t),Se(e.stateNode,e.type,t))}}function Ze(e){Me?Le?Le.push(e):Le=[e]:Me=e}function Pe(){if(Me){var e=Me,t=Le;if(Le=Me=null,Ne(e),t)for(e=0;e\u003Ct.length;e++)Ne(t[e])}}function ze(e,t){return e(t)}function Ae(e,t,n,a,r){return e(t,n,a,r)}function Be(){}var He=ze,Te=!1,Re=!1;function Oe(){null===Me&&null===Le||(Be(),Pe())}function je(e,t){var n=e.stateNode;if(null===n)return null;var a=or(n);if(null===a)return null;n=a[t];e:switch(t){case\"onClick\":case\"onClickCapture\":case\"onDoubleClick\":case\"onDoubleClickCapture\":case\"onMouseDown\":case\"onMouseDownCapture\":case\"onMouseMove\":case\"onMouseMoveCapture\":case\"onMouseUp\":case\"onMouseUpCapture\":case\"onMouseEnter\":(a=!a.disabled)||(a=!(\"button\"===(e=e.type)||\"input\"===e||\"select\"===e||\"textarea\"===e)),e=!a;break e;default:e=!1}if(e)return null;if(n&&\"function\"!=typeof n)throw Error(i(231,t,typeof n));return n}var Ve=!1;if(d)try{var Fe={};Object.defineProperty(Fe,\"passive\",{get:function(){Ve=!0}}),window.addEventListener(\"test\",Fe,Fe),window.removeEventListener(\"test\",Fe,Fe)}catch(he){Ve=!1}function We(e,t,n,a,r,o,i,l,s){var p=Array.prototype.slice.call(arguments,3);try{t.apply(n,p)}catch(e){this.onError(e)}}var De=!1,Ie=null,Ue=!1,$e=null,Ge={onError:function(e){De=!0,Ie=e}};function qe(e,t,n,a,r,o,i,l,s){De=!1,Ie=null,We.apply(Ge,arguments)}function Ke(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026&(t=e).flags)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function Xe(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&null!==(e=e.alternate)&&(t=e.memoizedState),null!==t)return t.dehydrated}return null}function Qe(e){if(Ke(e)!==e)throw Error(i(188))}function Je(e){if(e=function(e){var t=e.alternate;if(!t){if(null===(t=Ke(e)))throw Error(i(188));return t!==e?null:e}for(var n=e,a=t;;){var r=n.return;if(null===r)break;var o=r.alternate;if(null===o){if(null!==(a=r.return)){n=a;continue}break}if(r.child===o.child){for(o=r.child;o;){if(o===n)return Qe(r),e;if(o===a)return Qe(r),t;o=o.sibling}throw Error(i(188))}if(n.return!==a.return)n=r,a=o;else{for(var l=!1,s=r.child;s;){if(s===n){l=!0,n=r,a=o;break}if(s===a){l=!0,a=r,n=o;break}s=s.sibling}if(!l){for(s=o.child;s;){if(s===n){l=!0,n=o,a=r;break}if(s===a){l=!0,a=o,n=r;break}s=s.sibling}if(!l)throw Error(i(189))}}if(n.alternate!==a)throw Error(i(190))}if(3!==n.tag)throw Error(i(188));return n.stateNode.current===n?e:t}(e),!e)return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function Ye(e,t){for(var n=e.alternate;null!==t;){if(t===e||t===n)return!0;t=t.return}return!1}var et,tt,nt,at,rt=!1,ot=[],it=null,lt=null,st=null,pt=new Map,ct=new Map,dt=[],ut=\"mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit\".split(\" \");function mt(e,t,n,a,r){return{blockedOn:e,domEventName:t,eventSystemFlags:16|n,nativeEvent:r,targetContainers:[a]}}function ft(e,t){switch(e){case\"focusin\":case\"focusout\":it=null;break;case\"dragenter\":case\"dragleave\":lt=null;break;case\"mouseover\":case\"mouseout\":st=null;break;case\"pointerover\":case\"pointerout\":pt.delete(t.pointerId);break;case\"gotpointercapture\":case\"lostpointercapture\":ct.delete(t.pointerId)}}function ht(e,t,n,a,r,o){return null===e||e.nativeEvent!==o?(e=mt(t,n,a,r,o),null!==t&&null!==(t=ar(t))&&tt(t),e):(e.eventSystemFlags|=a,t=e.targetContainers,null!==r&&-1===t.indexOf(r)&&t.push(r),e)}function gt(e){var t=nr(e.target);if(null!==t){var n=Ke(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Xe(n)))return e.blockedOn=t,void at(e.lanePriority,(function(){o.unstable_runWithPriority(e.priority,(function(){nt(n)}))}))}else if(3===t&&n.stateNode.hydrate)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function vt(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0\u003Ct.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n)return null!==(t=ar(n))&&tt(t),e.blockedOn=n,!1;t.shift()}return!0}function _t(e,t,n){vt(e)&&n.delete(t)}function wt(){for(rt=!1;0\u003Cot.length;){var e=ot[0];if(null!==e.blockedOn){null!==(e=ar(e.blockedOn))&&et(e);break}for(var t=e.targetContainers;0\u003Ct.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n){e.blockedOn=n;break}t.shift()}null===e.blockedOn&&ot.shift()}null!==it&&vt(it)&&(it=null),null!==lt&&vt(lt)&&(lt=null),null!==st&&vt(st)&&(st=null),pt.forEach(_t),ct.forEach(_t)}function bt(e,t){e.blockedOn===t&&(e.blockedOn=null,rt||(rt=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,wt)))}function xt(e){function t(t){return bt(t,e)}if(0\u003Cot.length){bt(ot[0],e);for(var n=1;n\u003Cot.length;n++){var a=ot[n];a.blockedOn===e&&(a.blockedOn=null)}}for(null!==it&&bt(it,e),null!==lt&&bt(lt,e),null!==st&&bt(st,e),pt.forEach(t),ct.forEach(t),n=0;n\u003Cdt.length;n++)(a=dt[n]).blockedOn===e&&(a.blockedOn=null);for(;0\u003Cdt.length&&null===(n=dt[0]).blockedOn;)gt(n),null===n.blockedOn&&dt.shift()}function yt(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n[\"Webkit\"+e]=\"webkit\"+t,n[\"Moz\"+e]=\"moz\"+t,n}var kt={animationend:yt(\"Animation\",\"AnimationEnd\"),animationiteration:yt(\"Animation\",\"AnimationIteration\"),animationstart:yt(\"Animation\",\"AnimationStart\"),transitionend:yt(\"Transition\",\"TransitionEnd\")},Et={},Ct={};function St(e){if(Et[e])return Et[e];if(!kt[e])return e;var t,n=kt[e];for(t in n)if(n.hasOwnProperty(t)&&t in Ct)return Et[e]=n[t];return e}d&&(Ct=document.createElement(\"div\").style,\"AnimationEvent\"in window||(delete kt.animationend.animation,delete kt.animationiteration.animation,delete kt.animationstart.animation),\"TransitionEvent\"in window||delete kt.transitionend.transition);var Mt=St(\"animationend\"),Lt=St(\"animationiteration\"),Nt=St(\"animationstart\"),Zt=St(\"transitionend\"),Pt=new Map,zt=new Map,At=[\"abort\",\"abort\",Mt,\"animationEnd\",Lt,\"animationIteration\",Nt,\"animationStart\",\"canplay\",\"canPlay\",\"canplaythrough\",\"canPlayThrough\",\"durationchange\",\"durationChange\",\"emptied\",\"emptied\",\"encrypted\",\"encrypted\",\"ended\",\"ended\",\"error\",\"error\",\"gotpointercapture\",\"gotPointerCapture\",\"load\",\"load\",\"loadeddata\",\"loadedData\",\"loadedmetadata\",\"loadedMetadata\",\"loadstart\",\"loadStart\",\"lostpointercapture\",\"lostPointerCapture\",\"playing\",\"playing\",\"progress\",\"progress\",\"seeking\",\"seeking\",\"stalled\",\"stalled\",\"suspend\",\"suspend\",\"timeupdate\",\"timeUpdate\",Zt,\"transitionEnd\",\"waiting\",\"waiting\"];function Bt(e,t){for(var n=0;n\u003Ce.length;n+=2){var a=e[n],r=e[n+1];r=\"on\"+(r[0].toUpperCase()+r.slice(1)),zt.set(a,t),Pt.set(a,r),p(r,[a])}}(0,o.unstable_now)();var Ht=8;function Tt(e){if(0!=(1&e))return Ht=15,1;if(0!=(2&e))return Ht=14,2;if(0!=(4&e))return Ht=13,4;var t=24&e;return 0!==t?(Ht=12,t):0!=(32&e)?(Ht=11,32):0!=(t=192&e)?(Ht=10,t):0!=(256&e)?(Ht=9,256):0!=(t=3584&e)?(Ht=8,t):0!=(4096&e)?(Ht=7,4096):0!=(t=4186112&e)?(Ht=6,t):0!=(t=62914560&e)?(Ht=5,t):67108864&e?(Ht=4,67108864):0!=(134217728&e)?(Ht=3,134217728):0!=(t=805306368&e)?(Ht=2,t):0!=(1073741824&e)?(Ht=1,1073741824):(Ht=8,e)}function Rt(e,t){var n=e.pendingLanes;if(0===n)return Ht=0;var a=0,r=0,o=e.expiredLanes,i=e.suspendedLanes,l=e.pingedLanes;if(0!==o)a=o,r=Ht=15;else if(0!=(o=134217727&n)){var s=o&~i;0!==s?(a=Tt(s),r=Ht):0!=(l&=o)&&(a=Tt(l),r=Ht)}else 0!=(o=n&~i)?(a=Tt(o),r=Ht):0!==l&&(a=Tt(l),r=Ht);if(0===a)return 0;if(a=n&((0>(a=31-Dt(a))?0:1\u003C\u003Ca)\u003C\u003C1)-1,0!==t&&t!==a&&0==(t&i)){if(Tt(t),r\u003C=Ht)return t;Ht=r}if(0!==(t=e.entangledLanes))for(e=e.entanglements,t&=a;0\u003Ct;)r=1\u003C\u003C(n=31-Dt(t)),a|=e[n],t&=~r;return a}function Ot(e){return 0!=(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function jt(e,t){switch(e){case 15:return 1;case 14:return 2;case 12:return 0===(e=Vt(24&~t))?jt(10,t):e;case 10:return 0===(e=Vt(192&~t))?jt(8,t):e;case 8:return 0===(e=Vt(3584&~t))&&0===(e=Vt(4186112&~t))&&(e=512),e;case 2:return 0===(t=Vt(805306368&~t))&&(t=268435456),t}throw Error(i(358,e))}function Vt(e){return e&-e}function Ft(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Wt(e,t,n){e.pendingLanes|=t;var a=t-1;e.suspendedLanes&=a,e.pingedLanes&=a,(e=e.eventTimes)[t=31-Dt(t)]=n}var Dt=Math.clz32?Math.clz32:function(e){return 0===e?32:31-(It(e)\u002FUt|0)|0},It=Math.log,Ut=Math.LN2,$t=o.unstable_UserBlockingPriority,Gt=o.unstable_runWithPriority,qt=!0;function Kt(e,t,n,a){Te||Be();var r=Qt,o=Te;Te=!0;try{Ae(r,e,t,n,a)}finally{(Te=o)||Oe()}}function Xt(e,t,n,a){Gt($t,Qt.bind(null,e,t,n,a))}function Qt(e,t,n,a){var r;if(qt)if((r=0==(4&t))&&0\u003Cot.length&&-1\u003Cut.indexOf(e))e=mt(null,e,t,n,a),ot.push(e);else{var o=Jt(e,t,n,a);if(null===o)r&&ft(e,a);else{if(r){if(-1\u003Cut.indexOf(e))return e=mt(o,e,t,n,a),void ot.push(e);if(function(e,t,n,a,r){switch(t){case\"focusin\":return it=ht(it,e,t,n,a,r),!0;case\"dragenter\":return lt=ht(lt,e,t,n,a,r),!0;case\"mouseover\":return st=ht(st,e,t,n,a,r),!0;case\"pointerover\":var o=r.pointerId;return pt.set(o,ht(pt.get(o)||null,e,t,n,a,r)),!0;case\"gotpointercapture\":return o=r.pointerId,ct.set(o,ht(ct.get(o)||null,e,t,n,a,r)),!0}return!1}(o,e,t,n,a))return;ft(e,a)}Ha(e,t,a,null,n)}}}function Jt(e,t,n,a){var r=Ce(a);if(null!==(r=nr(r))){var o=Ke(r);if(null===o)r=null;else{var i=o.tag;if(13===i){if(null!==(r=Xe(o)))return r;r=null}else if(3===i){if(o.stateNode.hydrate)return 3===o.tag?o.stateNode.containerInfo:null;r=null}else o!==r&&(r=null)}}return Ha(e,t,a,r,n),null}var Yt=null,en=null,tn=null;function nn(){if(tn)return tn;var e,t,n=en,a=n.length,r=\"value\"in Yt?Yt.value:Yt.textContent,o=r.length;for(e=0;e\u003Ca&&n[e]===r[e];e++);var i=a-e;for(t=1;t\u003C=i&&n[a-t]===r[o-t];t++);return tn=r.slice(e,1\u003Ct?1-t:void 0)}function an(e){var t=e.keyCode;return\"charCode\"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32\u003C=e||13===e?e:0}function rn(){return!0}function on(){return!1}function ln(e){function t(t,n,a,r,o){for(var i in this._reactName=t,this._targetInst=a,this.type=n,this.nativeEvent=r,this.target=o,this.currentTarget=null,e)e.hasOwnProperty(i)&&(t=e[i],this[i]=t?t(r):r[i]);return this.isDefaultPrevented=(null!=r.defaultPrevented?r.defaultPrevented:!1===r.returnValue)?rn:on,this.isPropagationStopped=on,this}return r(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():\"unknown\"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=rn)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():\"unknown\"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=rn)},persist:function(){},isPersistent:rn}),t}var sn,pn,cn,dn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},un=ln(dn),mn=r({},dn,{view:0,detail:0}),fn=ln(mn),hn=r({},mn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Ln,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return\"movementX\"in e?e.movementX:(e!==cn&&(cn&&\"mousemove\"===e.type?(sn=e.screenX-cn.screenX,pn=e.screenY-cn.screenY):pn=sn=0,cn=e),sn)},movementY:function(e){return\"movementY\"in e?e.movementY:pn}}),gn=ln(hn),vn=ln(r({},hn,{dataTransfer:0})),wn=ln(r({},mn,{relatedTarget:0})),bn=ln(r({},dn,{animationName:0,elapsedTime:0,pseudoElement:0})),xn=r({},dn,{clipboardData:function(e){return\"clipboardData\"in e?e.clipboardData:window.clipboardData}}),yn=ln(xn),kn=ln(r({},dn,{data:0})),En={Esc:\"Escape\",Spacebar:\" \",Left:\"ArrowLeft\",Up:\"ArrowUp\",Right:\"ArrowRight\",Down:\"ArrowDown\",Del:\"Delete\",Win:\"OS\",Menu:\"ContextMenu\",Apps:\"ContextMenu\",Scroll:\"ScrollLock\",MozPrintableKey:\"Unidentified\"},Cn={8:\"Backspace\",9:\"Tab\",12:\"Clear\",13:\"Enter\",16:\"Shift\",17:\"Control\",18:\"Alt\",19:\"Pause\",20:\"CapsLock\",27:\"Escape\",32:\" \",33:\"PageUp\",34:\"PageDown\",35:\"End\",36:\"Home\",37:\"ArrowLeft\",38:\"ArrowUp\",39:\"ArrowRight\",40:\"ArrowDown\",45:\"Insert\",46:\"Delete\",112:\"F1\",113:\"F2\",114:\"F3\",115:\"F4\",116:\"F5\",117:\"F6\",118:\"F7\",119:\"F8\",120:\"F9\",121:\"F10\",122:\"F11\",123:\"F12\",144:\"NumLock\",145:\"ScrollLock\",224:\"Meta\"},Sn={Alt:\"altKey\",Control:\"ctrlKey\",Meta:\"metaKey\",Shift:\"shiftKey\"};function Mn(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Sn[e])&&!!t[e]}function Ln(){return Mn}var Nn=r({},mn,{key:function(e){if(e.key){var t=En[e.key]||e.key;if(\"Unidentified\"!==t)return t}return\"keypress\"===e.type?13===(e=an(e))?\"Enter\":String.fromCharCode(e):\"keydown\"===e.type||\"keyup\"===e.type?Cn[e.keyCode]||\"Unidentified\":\"\"},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Ln,charCode:function(e){return\"keypress\"===e.type?an(e):0},keyCode:function(e){return\"keydown\"===e.type||\"keyup\"===e.type?e.keyCode:0},which:function(e){return\"keypress\"===e.type?an(e):\"keydown\"===e.type||\"keyup\"===e.type?e.keyCode:0}}),Zn=ln(Nn),Pn=ln(r({},hn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),zn=ln(r({},mn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Ln})),An=ln(r({},dn,{propertyName:0,elapsedTime:0,pseudoElement:0})),Bn=r({},hn,{deltaX:function(e){return\"deltaX\"in e?e.deltaX:\"wheelDeltaX\"in e?-e.wheelDeltaX:0},deltaY:function(e){return\"deltaY\"in e?e.deltaY:\"wheelDeltaY\"in e?-e.wheelDeltaY:\"wheelDelta\"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),Hn=ln(Bn),Tn=[9,13,27,32],Rn=d&&\"CompositionEvent\"in window,On=null;d&&\"documentMode\"in document&&(On=document.documentMode);var jn=d&&\"TextEvent\"in window&&!On,Vn=d&&(!Rn||On&&8\u003COn&&11>=On),Fn=String.fromCharCode(32),Wn=!1;function Dn(e,t){switch(e){case\"keyup\":return-1!==Tn.indexOf(t.keyCode);case\"keydown\":return 229!==t.keyCode;case\"keypress\":case\"mousedown\":case\"focusout\":return!0;default:return!1}}function In(e){return\"object\"==typeof(e=e.detail)&&\"data\"in e?e.data:null}var Un=!1,$n={color:!0,date:!0,datetime:!0,\"datetime-local\":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Gn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return\"input\"===t?!!$n[e.type]:\"textarea\"===t}function qn(e,t,n,a){Ze(a),0\u003C(t=Ra(t,\"onChange\")).length&&(n=new un(\"onChange\",\"change\",null,n,a),e.push({event:n,listeners:t}))}var Kn=null,Xn=null;function Qn(e){Na(e,0)}function Jn(e){if(Q(rr(e)))return e}function Yn(e,t){if(\"change\"===e)return t}var ea=!1;if(d){var ta;if(d){var na=\"oninput\"in document;if(!na){var aa=document.createElement(\"div\");aa.setAttribute(\"oninput\",\"return;\"),na=\"function\"==typeof aa.oninput}ta=na}else ta=!1;ea=ta&&(!document.documentMode||9\u003Cdocument.documentMode)}function ra(){Kn&&(Kn.detachEvent(\"onpropertychange\",oa),Xn=Kn=null)}function oa(e){if(\"value\"===e.propertyName&&Jn(Xn)){var t=[];if(qn(t,Xn,e,Ce(e)),e=Qn,Te)e(t);else{Te=!0;try{ze(e,t)}finally{Te=!1,Oe()}}}}function ia(e,t,n){\"focusin\"===e?(ra(),Xn=n,(Kn=t).attachEvent(\"onpropertychange\",oa)):\"focusout\"===e&&ra()}function la(e){if(\"selectionchange\"===e||\"keyup\"===e||\"keydown\"===e)return Jn(Xn)}function sa(e,t){if(\"click\"===e)return Jn(t)}function pa(e,t){if(\"input\"===e||\"change\"===e)return Jn(t)}var ca=\"function\"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1\u002Fe==1\u002Ft)||e!=e&&t!=t},da=Object.prototype.hasOwnProperty;function ua(e,t){if(ca(e,t))return!0;if(\"object\"!=typeof e||null===e||\"object\"!=typeof t||null===t)return!1;var n=Object.keys(e),a=Object.keys(t);if(n.length!==a.length)return!1;for(a=0;a\u003Cn.length;a++)if(!da.call(t,n[a])||!ca(e[n[a]],t[n[a]]))return!1;return!0}function ma(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function fa(e,t){var n,a=ma(e);for(e=0;a;){if(3===a.nodeType){if(n=e+a.textContent.length,e\u003C=t&&n>=t)return{node:a,offset:t-e};e=n}e:{for(;a;){if(a.nextSibling){a=a.nextSibling;break e}a=a.parentNode}a=void 0}a=ma(a)}}function ha(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?ha(e,t.parentNode):\"contains\"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function ga(){for(var e=window,t=J();t instanceof e.HTMLIFrameElement;){try{var n=\"string\"==typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;t=J((e=t.contentWindow).document)}return t}function va(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(\"input\"===t&&(\"text\"===e.type||\"search\"===e.type||\"tel\"===e.type||\"url\"===e.type||\"password\"===e.type)||\"textarea\"===t||\"true\"===e.contentEditable)}var _a=d&&\"documentMode\"in document&&11>=document.documentMode,wa=null,ba=null,xa=null,ya=!1;function ka(e,t,n){var a=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;ya||null==wa||wa!==J(a)||(a=\"selectionStart\"in(a=wa)&&va(a)?{start:a.selectionStart,end:a.selectionEnd}:{anchorNode:(a=(a.ownerDocument&&a.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:a.anchorOffset,focusNode:a.focusNode,focusOffset:a.focusOffset},xa&&ua(xa,a)||(xa=a,0\u003C(a=Ra(ba,\"onSelect\")).length&&(t=new un(\"onSelect\",\"select\",null,t,n),e.push({event:t,listeners:a}),t.target=wa)))}Bt(\"cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange\".split(\" \"),0),Bt(\"drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel\".split(\" \"),1),Bt(At,2);for(var Ea=\"change selectionchange textInput compositionstart compositionend compositionupdate\".split(\" \"),Ca=0;Ca\u003CEa.length;Ca++)zt.set(Ea[Ca],0);c(\"onMouseEnter\",[\"mouseout\",\"mouseover\"]),c(\"onMouseLeave\",[\"mouseout\",\"mouseover\"]),c(\"onPointerEnter\",[\"pointerout\",\"pointerover\"]),c(\"onPointerLeave\",[\"pointerout\",\"pointerover\"]),p(\"onChange\",\"change click focusin focusout input keydown keyup selectionchange\".split(\" \")),p(\"onSelect\",\"focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange\".split(\" \")),p(\"onBeforeInput\",[\"compositionend\",\"keypress\",\"textInput\",\"paste\"]),p(\"onCompositionEnd\",\"compositionend focusout keydown keypress keyup mousedown\".split(\" \")),p(\"onCompositionStart\",\"compositionstart focusout keydown keypress keyup mousedown\".split(\" \")),p(\"onCompositionUpdate\",\"compositionupdate focusout keydown keypress keyup mousedown\".split(\" \"));var Sa=\"abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting\".split(\" \"),Ma=new Set(\"cancel close invalid load scroll toggle\".split(\" \").concat(Sa));function La(e,t,n){var a=e.type||\"unknown-event\";e.currentTarget=n,function(e,t,n,a,r,o,l,s,p){if(qe.apply(this,arguments),De){if(!De)throw Error(i(198));var c=Ie;De=!1,Ie=null,Ue||(Ue=!0,$e=c)}}(a,t,void 0,e),e.currentTarget=null}function Na(e,t){t=0!=(4&t);for(var n=0;n\u003Ce.length;n++){var a=e[n],r=a.event;a=a.listeners;e:{var o=void 0;if(t)for(var i=a.length-1;0\u003C=i;i--){var l=a[i],s=l.instance,p=l.currentTarget;if(l=l.listener,s!==o&&r.isPropagationStopped())break e;La(r,l,p),o=s}else for(i=0;i\u003Ca.length;i++){if(s=(l=a[i]).instance,p=l.currentTarget,l=l.listener,s!==o&&r.isPropagationStopped())break e;La(r,l,p),o=s}}}if(Ue)throw e=$e,Ue=!1,$e=null,e}function Za(e,t){var n=ir(t),a=e+\"__bubble\";n.has(a)||(Ba(t,e,2,!1),n.add(a))}var Pa=\"_reactListening\"+Math.random().toString(36).slice(2);function za(e){e[Pa]||(e[Pa]=!0,l.forEach((function(t){Ma.has(t)||Aa(t,!1,e,null),Aa(t,!0,e,null)})))}function Aa(e,t,n,a){var r=4\u003Carguments.length&&void 0!==arguments[4]?arguments[4]:0,o=n;if(\"selectionchange\"===e&&9!==n.nodeType&&(o=n.ownerDocument),null!==a&&!t&&Ma.has(e)){if(\"scroll\"!==e)return;r|=2,o=a}var i=ir(o),l=e+\"__\"+(t?\"capture\":\"bubble\");i.has(l)||(t&&(r|=4),Ba(o,e,r,t),i.add(l))}function Ba(e,t,n,a){var r=zt.get(t);switch(void 0===r?2:r){case 0:r=Kt;break;case 1:r=Xt;break;default:r=Qt}n=r.bind(null,t,n,e),r=void 0,!Ve||\"touchstart\"!==t&&\"touchmove\"!==t&&\"wheel\"!==t||(r=!0),a?void 0!==r?e.addEventListener(t,n,{capture:!0,passive:r}):e.addEventListener(t,n,!0):void 0!==r?e.addEventListener(t,n,{passive:r}):e.addEventListener(t,n,!1)}function Ha(e,t,n,a,r){var o=a;if(0==(1&t)&&0==(2&t)&&null!==a)e:for(;;){if(null===a)return;var i=a.tag;if(3===i||4===i){var l=a.stateNode.containerInfo;if(l===r||8===l.nodeType&&l.parentNode===r)break;if(4===i)for(i=a.return;null!==i;){var s=i.tag;if((3===s||4===s)&&((s=i.stateNode.containerInfo)===r||8===s.nodeType&&s.parentNode===r))return;i=i.return}for(;null!==l;){if(null===(i=nr(l)))return;if(5===(s=i.tag)||6===s){a=o=i;continue e}l=l.parentNode}}a=a.return}!function(e,t,n){if(Re)return e();Re=!0;try{return He(e,t,n)}finally{Re=!1,Oe()}}((function(){var a=o,r=Ce(n),i=[];e:{var l=Pt.get(e);if(void 0!==l){var s=un,p=e;switch(e){case\"keypress\":if(0===an(n))break e;case\"keydown\":case\"keyup\":s=Zn;break;case\"focusin\":p=\"focus\",s=wn;break;case\"focusout\":p=\"blur\",s=wn;break;case\"beforeblur\":case\"afterblur\":s=wn;break;case\"click\":if(2===n.button)break e;case\"auxclick\":case\"dblclick\":case\"mousedown\":case\"mousemove\":case\"mouseup\":case\"mouseout\":case\"mouseover\":case\"contextmenu\":s=gn;break;case\"drag\":case\"dragend\":case\"dragenter\":case\"dragexit\":case\"dragleave\":case\"dragover\":case\"dragstart\":case\"drop\":s=vn;break;case\"touchcancel\":case\"touchend\":case\"touchmove\":case\"touchstart\":s=zn;break;case Mt:case Lt:case Nt:s=bn;break;case Zt:s=An;break;case\"scroll\":s=fn;break;case\"wheel\":s=Hn;break;case\"copy\":case\"cut\":case\"paste\":s=yn;break;case\"gotpointercapture\":case\"lostpointercapture\":case\"pointercancel\":case\"pointerdown\":case\"pointermove\":case\"pointerout\":case\"pointerover\":case\"pointerup\":s=Pn}var c=0!=(4&t),d=!c&&\"scroll\"===e,u=c?null!==l?l+\"Capture\":null:l;c=[];for(var m,f=a;null!==f;){var h=(m=f).stateNode;if(5===m.tag&&null!==h&&(m=h,null!==u&&null!=(h=je(f,u))&&c.push(Ta(f,h,m))),d)break;f=f.return}0\u003Cc.length&&(l=new s(l,p,null,n,r),i.push({event:l,listeners:c}))}}if(0==(7&t)){if(s=\"mouseout\"===e||\"pointerout\"===e,(!(l=\"mouseover\"===e||\"pointerover\"===e)||0!=(16&t)||!(p=n.relatedTarget||n.fromElement)||!nr(p)&&!p[er])&&(s||l)&&(l=r.window===r?r:(l=r.ownerDocument)?l.defaultView||l.parentWindow:window,s?(s=a,null!==(p=(p=n.relatedTarget||n.toElement)?nr(p):null)&&(p!==(d=Ke(p))||5!==p.tag&&6!==p.tag)&&(p=null)):(s=null,p=a),s!==p)){if(c=gn,h=\"onMouseLeave\",u=\"onMouseEnter\",f=\"mouse\",\"pointerout\"!==e&&\"pointerover\"!==e||(c=Pn,h=\"onPointerLeave\",u=\"onPointerEnter\",f=\"pointer\"),d=null==s?l:rr(s),m=null==p?l:rr(p),(l=new c(h,f+\"leave\",s,n,r)).target=d,l.relatedTarget=m,h=null,nr(r)===a&&((c=new c(u,f+\"enter\",p,n,r)).target=m,c.relatedTarget=d,h=c),d=h,s&&p)e:{for(u=p,f=0,m=c=s;m;m=Oa(m))f++;for(m=0,h=u;h;h=Oa(h))m++;for(;0\u003Cf-m;)c=Oa(c),f--;for(;0\u003Cm-f;)u=Oa(u),m--;for(;f--;){if(c===u||null!==u&&c===u.alternate)break e;c=Oa(c),u=Oa(u)}c=null}else c=null;null!==s&&ja(i,l,s,c,!1),null!==p&&null!==d&&ja(i,d,p,c,!0)}if(\"select\"===(s=(l=a?rr(a):window).nodeName&&l.nodeName.toLowerCase())||\"input\"===s&&\"file\"===l.type)var g=Yn;else if(Gn(l))if(ea)g=pa;else{g=la;var v=ia}else(s=l.nodeName)&&\"input\"===s.toLowerCase()&&(\"checkbox\"===l.type||\"radio\"===l.type)&&(g=sa);switch(g&&(g=g(e,a))?qn(i,g,n,r):(v&&v(e,l,a),\"focusout\"===e&&(v=l._wrapperState)&&v.controlled&&\"number\"===l.type&&re(l,\"number\",l.value)),v=a?rr(a):window,e){case\"focusin\":(Gn(v)||\"true\"===v.contentEditable)&&(wa=v,ba=a,xa=null);break;case\"focusout\":xa=ba=wa=null;break;case\"mousedown\":ya=!0;break;case\"contextmenu\":case\"mouseup\":case\"dragend\":ya=!1,ka(i,n,r);break;case\"selectionchange\":if(_a)break;case\"keydown\":case\"keyup\":ka(i,n,r)}var _;if(Rn)e:{switch(e){case\"compositionstart\":var w=\"onCompositionStart\";break e;case\"compositionend\":w=\"onCompositionEnd\";break e;case\"compositionupdate\":w=\"onCompositionUpdate\";break e}w=void 0}else Un?Dn(e,n)&&(w=\"onCompositionEnd\"):\"keydown\"===e&&229===n.keyCode&&(w=\"onCompositionStart\");w&&(Vn&&\"ko\"!==n.locale&&(Un||\"onCompositionStart\"!==w?\"onCompositionEnd\"===w&&Un&&(_=nn()):(en=\"value\"in(Yt=r)?Yt.value:Yt.textContent,Un=!0)),0\u003C(v=Ra(a,w)).length&&(w=new kn(w,e,null,n,r),i.push({event:w,listeners:v}),(_||null!==(_=In(n)))&&(w.data=_))),(_=jn?function(e,t){switch(e){case\"compositionend\":return In(t);case\"keypress\":return 32!==t.which?null:(Wn=!0,Fn);case\"textInput\":return(e=t.data)===Fn&&Wn?null:e;default:return null}}(e,n):function(e,t){if(Un)return\"compositionend\"===e||!Rn&&Dn(e,t)?(e=nn(),tn=en=Yt=null,Un=!1,e):null;switch(e){case\"paste\":default:return null;case\"keypress\":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1\u003Ct.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case\"compositionend\":return Vn&&\"ko\"!==t.locale?null:t.data}}(e,n))&&0\u003C(a=Ra(a,\"onBeforeInput\")).length&&(r=new kn(\"onBeforeInput\",\"beforeinput\",null,n,r),i.push({event:r,listeners:a}),r.data=_)}Na(i,t)}))}function Ta(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Ra(e,t){for(var n=t+\"Capture\",a=[];null!==e;){var r=e,o=r.stateNode;5===r.tag&&null!==o&&(r=o,null!=(o=je(e,n))&&a.unshift(Ta(e,o,r)),null!=(o=je(e,t))&&a.push(Ta(e,o,r))),e=e.return}return a}function Oa(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function ja(e,t,n,a,r){for(var o=t._reactName,i=[];null!==n&&n!==a;){var l=n,s=l.alternate,p=l.stateNode;if(null!==s&&s===a)break;5===l.tag&&null!==p&&(l=p,r?null!=(s=je(n,o))&&i.unshift(Ta(n,s,l)):r||null!=(s=je(n,o))&&i.push(Ta(n,s,l))),n=n.return}0!==i.length&&e.push({event:t,listeners:i})}function Va(){}var Fa=null,Wa=null;function Da(e,t){switch(e){case\"button\":case\"input\":case\"select\":case\"textarea\":return!!t.autoFocus}return!1}function Ia(e,t){return\"textarea\"===e||\"option\"===e||\"noscript\"===e||\"string\"==typeof t.children||\"number\"==typeof t.children||\"object\"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var Ua=\"function\"==typeof setTimeout?setTimeout:void 0,$a=\"function\"==typeof clearTimeout?clearTimeout:void 0;function Ga(e){(1===e.nodeType||9===e.nodeType&&null!=(e=e.body))&&(e.textContent=\"\")}function qa(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Ka(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if(\"$\"===n||\"$!\"===n||\"$?\"===n){if(0===t)return e;t--}else\"\u002F$\"===n&&t++}e=e.previousSibling}return null}var Xa=0,Qa=Math.random().toString(36).slice(2),Ja=\"__reactFiber$\"+Qa,Ya=\"__reactProps$\"+Qa,er=\"__reactContainer$\"+Qa,tr=\"__reactEvents$\"+Qa;function nr(e){var t=e[Ja];if(t)return t;for(var n=e.parentNode;n;){if(t=n[er]||n[Ja]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=Ka(e);null!==e;){if(n=e[Ja])return n;e=Ka(e)}return t}n=(e=n).parentNode}return null}function ar(e){return!(e=e[Ja]||e[er])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function rr(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(i(33))}function or(e){return e[Ya]||null}function ir(e){var t=e[tr];return void 0===t&&(t=e[tr]=new Set),t}var lr=[],sr=-1;function pr(e){return{current:e}}function cr(e){0>sr||(e.current=lr[sr],lr[sr]=null,sr--)}function dr(e,t){sr++,lr[sr]=e.current,e.current=t}var ur={},mr=pr(ur),fr=pr(!1),hr=ur;function gr(e,t){var n=e.type.contextTypes;if(!n)return ur;var a=e.stateNode;if(a&&a.__reactInternalMemoizedUnmaskedChildContext===t)return a.__reactInternalMemoizedMaskedChildContext;var r,o={};for(r in n)o[r]=t[r];return a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function vr(e){return null!=e.childContextTypes}function _r(){cr(fr),cr(mr)}function wr(e,t,n){if(mr.current!==ur)throw Error(i(168));dr(mr,t),dr(fr,n)}function br(e,t,n){var a=e.stateNode;if(e=t.childContextTypes,\"function\"!=typeof a.getChildContext)return n;for(var o in a=a.getChildContext())if(!(o in e))throw Error(i(108,G(t)||\"Unknown\",o));return r({},n,a)}function xr(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||ur,hr=mr.current,dr(mr,e),dr(fr,fr.current),!0}function yr(e,t,n){var a=e.stateNode;if(!a)throw Error(i(169));n?(e=br(e,t,hr),a.__reactInternalMemoizedMergedChildContext=e,cr(fr),cr(mr),dr(mr,e)):cr(fr),dr(fr,n)}var kr=null,Er=null,Cr=o.unstable_runWithPriority,Sr=o.unstable_scheduleCallback,Mr=o.unstable_cancelCallback,Lr=o.unstable_shouldYield,Nr=o.unstable_requestPaint,Zr=o.unstable_now,Pr=o.unstable_getCurrentPriorityLevel,zr=o.unstable_ImmediatePriority,Ar=o.unstable_UserBlockingPriority,Br=o.unstable_NormalPriority,Hr=o.unstable_LowPriority,Tr=o.unstable_IdlePriority,Rr={},Or=void 0!==Nr?Nr:function(){},jr=null,Vr=null,Fr=!1,Wr=Zr(),Dr=1e4>Wr?Zr:function(){return Zr()-Wr};function Ir(){switch(Pr()){case zr:return 99;case Ar:return 98;case Br:return 97;case Hr:return 96;case Tr:return 95;default:throw Error(i(332))}}function Ur(e){switch(e){case 99:return zr;case 98:return Ar;case 97:return Br;case 96:return Hr;case 95:return Tr;default:throw Error(i(332))}}function $r(e,t){return e=Ur(e),Cr(e,t)}function Gr(e,t,n){return e=Ur(e),Sr(e,t,n)}function qr(){if(null!==Vr){var e=Vr;Vr=null,Mr(e)}Kr()}function Kr(){if(!Fr&&null!==jr){Fr=!0;var e=0;try{var t=jr;$r(99,(function(){for(;e\u003Ct.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}})),jr=null}catch(t){throw null!==jr&&(jr=jr.slice(e+1)),Sr(zr,qr),t}finally{Fr=!1}}}var Xr=x.ReactCurrentBatchConfig;function Qr(e,t){if(e&&e.defaultProps){for(var n in t=r({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}return t}var Jr=pr(null),Yr=null,eo=null,to=null;function no(){to=eo=Yr=null}function ao(e){var t=Jr.current;cr(Jr),e.type._context._currentValue=t}function ro(e,t){for(;null!==e;){var n=e.alternate;if((e.childLanes&t)===t){if(null===n||(n.childLanes&t)===t)break;n.childLanes|=t}else e.childLanes|=t,null!==n&&(n.childLanes|=t);e=e.return}}function oo(e,t){Yr=e,to=eo=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!=(e.lanes&t)&&(Ri=!0),e.firstContext=null)}function io(e,t){if(to!==e&&!1!==t&&0!==t)if(\"number\"==typeof t&&1073741823!==t||(to=e,t=1073741823),t={context:e,observedBits:t,next:null},null===eo){if(null===Yr)throw Error(i(308));eo=t,Yr.dependencies={lanes:0,firstContext:t,responders:null}}else eo=eo.next=t;return e._currentValue}var lo=!1;function so(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null},effects:null}}function po(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function co(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function uo(e,t){if(null!==(e=e.updateQueue)){var n=(e=e.shared).pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}}function mo(e,t){var n=e.updateQueue,a=e.alternate;if(null!==a&&n===(a=a.updateQueue)){var r=null,o=null;if(null!==(n=n.firstBaseUpdate)){do{var i={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};null===o?r=o=i:o=o.next=i,n=n.next}while(null!==n);null===o?r=o=t:o=o.next=t}else r=o=t;return n={baseState:a.baseState,firstBaseUpdate:r,lastBaseUpdate:o,shared:a.shared,effects:a.effects},void(e.updateQueue=n)}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function fo(e,t,n,a){var o=e.updateQueue;lo=!1;var i=o.firstBaseUpdate,l=o.lastBaseUpdate,s=o.shared.pending;if(null!==s){o.shared.pending=null;var p=s,c=p.next;p.next=null,null===l?i=c:l.next=c,l=p;var d=e.alternate;if(null!==d){var u=(d=d.updateQueue).lastBaseUpdate;u!==l&&(null===u?d.firstBaseUpdate=c:u.next=c,d.lastBaseUpdate=p)}}if(null!==i){for(u=o.baseState,l=0,d=c=p=null;;){s=i.lane;var m=i.eventTime;if((a&s)===s){null!==d&&(d=d.next={eventTime:m,lane:0,tag:i.tag,payload:i.payload,callback:i.callback,next:null});e:{var f=e,h=i;switch(s=t,m=n,h.tag){case 1:if(\"function\"==typeof(f=h.payload)){u=f.call(m,u,s);break e}u=f;break e;case 3:f.flags=-4097&f.flags|64;case 0:if(null==(s=\"function\"==typeof(f=h.payload)?f.call(m,u,s):f))break e;u=r({},u,s);break e;case 2:lo=!0}}null!==i.callback&&(e.flags|=32,null===(s=o.effects)?o.effects=[i]:s.push(i))}else m={eventTime:m,lane:s,tag:i.tag,payload:i.payload,callback:i.callback,next:null},null===d?(c=d=m,p=u):d=d.next=m,l|=s;if(null===(i=i.next)){if(null===(s=o.shared.pending))break;i=s.next,s.next=null,o.lastBaseUpdate=s,o.shared.pending=null}}null===d&&(p=u),o.baseState=p,o.firstBaseUpdate=c,o.lastBaseUpdate=d,Vl|=l,e.lanes=l,e.memoizedState=u}}function ho(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t\u003Ce.length;t++){var a=e[t],r=a.callback;if(null!==r){if(a.callback=null,a=n,\"function\"!=typeof r)throw Error(i(191,r));r.call(a)}}}var go=(new a.Component).refs;function vo(e,t,n,a){n=null==(n=n(a,t=e.memoizedState))?t:r({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var _o={isMounted:function(e){return!!(e=e._reactInternals)&&Ke(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var a=ds(),r=us(e),o=co(a,r);o.payload=t,null!=n&&(o.callback=n),uo(e,o),ms(e,r,a)},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var a=ds(),r=us(e),o=co(a,r);o.tag=1,o.payload=t,null!=n&&(o.callback=n),uo(e,o),ms(e,r,a)},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=ds(),a=us(e),r=co(n,a);r.tag=2,null!=t&&(r.callback=t),uo(e,r),ms(e,a,n)}};function wo(e,t,n,a,r,o,i){return\"function\"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(a,o,i):!(t.prototype&&t.prototype.isPureReactComponent&&ua(n,a)&&ua(r,o))}function bo(e,t,n){var a=!1,r=ur,o=t.contextType;return\"object\"==typeof o&&null!==o?o=io(o):(r=vr(t)?hr:mr.current,o=(a=null!=(a=t.contextTypes))?gr(e,r):ur),t=new t(n,o),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=_o,e.stateNode=t,t._reactInternals=e,a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=r,e.__reactInternalMemoizedMaskedChildContext=o),t}function xo(e,t,n,a){e=t.state,\"function\"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,a),\"function\"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,a),t.state!==e&&_o.enqueueReplaceState(t,t.state,null)}function yo(e,t,n,a){var r=e.stateNode;r.props=n,r.state=e.memoizedState,r.refs=go,so(e);var o=t.contextType;\"object\"==typeof o&&null!==o?r.context=io(o):(o=vr(t)?hr:mr.current,r.context=gr(e,o)),fo(e,n,r,a),r.state=e.memoizedState,\"function\"==typeof(o=t.getDerivedStateFromProps)&&(vo(e,t,o,n),r.state=e.memoizedState),\"function\"==typeof t.getDerivedStateFromProps||\"function\"==typeof r.getSnapshotBeforeUpdate||\"function\"!=typeof r.UNSAFE_componentWillMount&&\"function\"!=typeof r.componentWillMount||(t=r.state,\"function\"==typeof r.componentWillMount&&r.componentWillMount(),\"function\"==typeof r.UNSAFE_componentWillMount&&r.UNSAFE_componentWillMount(),t!==r.state&&_o.enqueueReplaceState(r,r.state,null),fo(e,n,r,a),r.state=e.memoizedState),\"function\"==typeof r.componentDidMount&&(e.flags|=4)}var ko=Array.isArray;function Eo(e,t,n){if(null!==(e=n.ref)&&\"function\"!=typeof e&&\"object\"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(i(309));var a=n.stateNode}if(!a)throw Error(i(147,e));var r=\"\"+e;return null!==t&&null!==t.ref&&\"function\"==typeof t.ref&&t.ref._stringRef===r?t.ref:(t=function(e){var t=a.refs;t===go&&(t=a.refs={}),null===e?delete t[r]:t[r]=e},t._stringRef=r,t)}if(\"string\"!=typeof e)throw Error(i(284));if(!n._owner)throw Error(i(290,e))}return e}function Co(e,t){if(\"textarea\"!==e.type)throw Error(i(31,\"[object Object]\"===Object.prototype.toString.call(t)?\"object with keys {\"+Object.keys(t).join(\", \")+\"}\":t))}function So(e){function t(t,n){if(e){var a=t.lastEffect;null!==a?(a.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.flags=8}}function n(n,a){if(!e)return null;for(;null!==a;)t(n,a),a=a.sibling;return null}function a(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function r(e,t){return(e=Us(e,t)).index=0,e.sibling=null,e}function o(t,n,a){return t.index=a,e?null!==(a=t.alternate)?(a=a.index)\u003Cn?(t.flags=2,n):a:(t.flags=2,n):n}function l(t){return e&&null===t.alternate&&(t.flags=2),t}function s(e,t,n,a){return null===t||6!==t.tag?((t=Ks(n,e.mode,a)).return=e,t):((t=r(t,n)).return=e,t)}function p(e,t,n,a){return null!==t&&t.elementType===n.type?((a=r(t,n.props)).ref=Eo(e,t,n),a.return=e,a):((a=$s(n.type,n.key,n.props,null,e.mode,a)).ref=Eo(e,t,n),a.return=e,a)}function c(e,t,n,a){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?((t=Xs(n,e.mode,a)).return=e,t):((t=r(t,n.children||[])).return=e,t)}function d(e,t,n,a,o){return null===t||7!==t.tag?((t=Gs(n,e.mode,a,o)).return=e,t):((t=r(t,n)).return=e,t)}function u(e,t,n){if(\"string\"==typeof t||\"number\"==typeof t)return(t=Ks(\"\"+t,e.mode,n)).return=e,t;if(\"object\"==typeof t&&null!==t){switch(t.$$typeof){case y:return(n=$s(t.type,t.key,t.props,null,e.mode,n)).ref=Eo(e,null,t),n.return=e,n;case k:return(t=Xs(t,e.mode,n)).return=e,t}if(ko(t)||W(t))return(t=Gs(t,e.mode,n,null)).return=e,t;Co(e,t)}return null}function m(e,t,n,a){var r=null!==t?t.key:null;if(\"string\"==typeof n||\"number\"==typeof n)return null!==r?null:s(e,t,\"\"+n,a);if(\"object\"==typeof n&&null!==n){switch(n.$$typeof){case y:return n.key===r?n.type===E?d(e,t,n.props.children,a,r):p(e,t,n,a):null;case k:return n.key===r?c(e,t,n,a):null}if(ko(n)||W(n))return null!==r?null:d(e,t,n,a,null);Co(e,n)}return null}function f(e,t,n,a,r){if(\"string\"==typeof a||\"number\"==typeof a)return s(t,e=e.get(n)||null,\"\"+a,r);if(\"object\"==typeof a&&null!==a){switch(a.$$typeof){case y:return e=e.get(null===a.key?n:a.key)||null,a.type===E?d(t,e,a.props.children,r,a.key):p(t,e,a,r);case k:return c(t,e=e.get(null===a.key?n:a.key)||null,a,r)}if(ko(a)||W(a))return d(t,e=e.get(n)||null,a,r,null);Co(t,a)}return null}function h(r,i,l,s){for(var p=null,c=null,d=i,h=i=0,g=null;null!==d&&h\u003Cl.length;h++){d.index>h?(g=d,d=null):g=d.sibling;var v=m(r,d,l[h],s);if(null===v){null===d&&(d=g);break}e&&d&&null===v.alternate&&t(r,d),i=o(v,i,h),null===c?p=v:c.sibling=v,c=v,d=g}if(h===l.length)return n(r,d),p;if(null===d){for(;h\u003Cl.length;h++)null!==(d=u(r,l[h],s))&&(i=o(d,i,h),null===c?p=d:c.sibling=d,c=d);return p}for(d=a(r,d);h\u003Cl.length;h++)null!==(g=f(d,r,h,l[h],s))&&(e&&null!==g.alternate&&d.delete(null===g.key?h:g.key),i=o(g,i,h),null===c?p=g:c.sibling=g,c=g);return e&&d.forEach((function(e){return t(r,e)})),p}function g(r,l,s,p){var c=W(s);if(\"function\"!=typeof c)throw Error(i(150));if(null==(s=c.call(s)))throw Error(i(151));for(var d=c=null,h=l,g=l=0,v=null,_=s.next();null!==h&&!_.done;g++,_=s.next()){h.index>g?(v=h,h=null):v=h.sibling;var w=m(r,h,_.value,p);if(null===w){null===h&&(h=v);break}e&&h&&null===w.alternate&&t(r,h),l=o(w,l,g),null===d?c=w:d.sibling=w,d=w,h=v}if(_.done)return n(r,h),c;if(null===h){for(;!_.done;g++,_=s.next())null!==(_=u(r,_.value,p))&&(l=o(_,l,g),null===d?c=_:d.sibling=_,d=_);return c}for(h=a(r,h);!_.done;g++,_=s.next())null!==(_=f(h,r,g,_.value,p))&&(e&&null!==_.alternate&&h.delete(null===_.key?g:_.key),l=o(_,l,g),null===d?c=_:d.sibling=_,d=_);return e&&h.forEach((function(e){return t(r,e)})),c}return function(e,a,o,s){var p=\"object\"==typeof o&&null!==o&&o.type===E&&null===o.key;p&&(o=o.props.children);var c=\"object\"==typeof o&&null!==o;if(c)switch(o.$$typeof){case y:e:{for(c=o.key,p=a;null!==p;){if(p.key===c){if(7===p.tag){if(o.type===E){n(e,p.sibling),(a=r(p,o.props.children)).return=e,e=a;break e}}else if(p.elementType===o.type){n(e,p.sibling),(a=r(p,o.props)).ref=Eo(e,p,o),a.return=e,e=a;break e}n(e,p);break}t(e,p),p=p.sibling}o.type===E?((a=Gs(o.props.children,e.mode,s,o.key)).return=e,e=a):((s=$s(o.type,o.key,o.props,null,e.mode,s)).ref=Eo(e,a,o),s.return=e,e=s)}return l(e);case k:e:{for(p=o.key;null!==a;){if(a.key===p){if(4===a.tag&&a.stateNode.containerInfo===o.containerInfo&&a.stateNode.implementation===o.implementation){n(e,a.sibling),(a=r(a,o.children||[])).return=e,e=a;break e}n(e,a);break}t(e,a),a=a.sibling}(a=Xs(o,e.mode,s)).return=e,e=a}return l(e)}if(\"string\"==typeof o||\"number\"==typeof o)return o=\"\"+o,null!==a&&6===a.tag?(n(e,a.sibling),(a=r(a,o)).return=e,e=a):(n(e,a),(a=Ks(o,e.mode,s)).return=e,e=a),l(e);if(ko(o))return h(e,a,o,s);if(W(o))return g(e,a,o,s);if(c&&Co(e,o),void 0===o&&!p)switch(e.tag){case 1:case 22:case 0:case 11:case 15:throw Error(i(152,G(e.type)||\"Component\"))}return n(e,a)}}var Mo=So(!0),Lo=So(!1),No={},Zo=pr(No),Po=pr(No),zo=pr(No);function Ao(e){if(e===No)throw Error(i(174));return e}function Bo(e,t){switch(dr(zo,t),dr(Po,e),dr(Zo,No),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:me(null,\"\");break;default:t=me(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}cr(Zo),dr(Zo,t)}function Ho(){cr(Zo),cr(Po),cr(zo)}function To(e){Ao(zo.current);var t=Ao(Zo.current),n=me(t,e.type);t!==n&&(dr(Po,e),dr(Zo,n))}function Ro(e){Po.current===e&&(cr(Zo),cr(Po))}var Oo=pr(0);function jo(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||\"$?\"===n.data||\"$!\"===n.data))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(64&t.flags))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Vo=null,Fo=null,Wo=!1;function Do(e,t){var n=Ds(5,null,null,0);n.elementType=\"DELETED\",n.type=\"DELETED\",n.stateNode=t,n.return=e,n.flags=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function Io(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,!0);case 6:return null!==(t=\"\"===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,!0);default:return!1}}function Uo(e){if(Wo){var t=Fo;if(t){var n=t;if(!Io(e,t)){if(!(t=qa(n.nextSibling))||!Io(e,t))return e.flags=-1025&e.flags|2,Wo=!1,void(Vo=e);Do(Vo,n)}Vo=e,Fo=qa(t.firstChild)}else e.flags=-1025&e.flags|2,Wo=!1,Vo=e}}function $o(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;Vo=e}function Go(e){if(e!==Vo)return!1;if(!Wo)return $o(e),Wo=!0,!1;var t=e.type;if(5!==e.tag||\"head\"!==t&&\"body\"!==t&&!Ia(t,e.memoizedProps))for(t=Fo;t;)Do(e,t),t=qa(t.nextSibling);if($o(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(i(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if(\"\u002F$\"===n){if(0===t){Fo=qa(e.nextSibling);break e}t--}else\"$\"!==n&&\"$!\"!==n&&\"$?\"!==n||t++}e=e.nextSibling}Fo=null}}else Fo=Vo?qa(e.stateNode.nextSibling):null;return!0}function qo(){Fo=Vo=null,Wo=!1}var Ko=[];function Xo(){for(var e=0;e\u003CKo.length;e++)Ko[e]._workInProgressVersionPrimary=null;Ko.length=0}var Qo=x.ReactCurrentDispatcher,Jo=x.ReactCurrentBatchConfig,Yo=0,ei=null,ti=null,ni=null,ai=!1,ri=!1;function oi(){throw Error(i(321))}function ii(e,t){if(null===t)return!1;for(var n=0;n\u003Ct.length&&n\u003Ce.length;n++)if(!ca(e[n],t[n]))return!1;return!0}function li(e,t,n,a,r,o){if(Yo=o,ei=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,Qo.current=null===e||null===e.memoizedState?Ai:Bi,e=n(a,r),ri){o=0;do{if(ri=!1,!(25>o))throw Error(i(301));o+=1,ni=ti=null,t.updateQueue=null,Qo.current=Hi,e=n(a,r)}while(ri)}if(Qo.current=zi,t=null!==ti&&null!==ti.next,Yo=0,ni=ti=ei=null,ai=!1,t)throw Error(i(300));return e}function si(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===ni?ei.memoizedState=ni=e:ni=ni.next=e,ni}function pi(){if(null===ti){var e=ei.alternate;e=null!==e?e.memoizedState:null}else e=ti.next;var t=null===ni?ei.memoizedState:ni.next;if(null!==t)ni=t,ti=e;else{if(null===e)throw Error(i(310));e={memoizedState:(ti=e).memoizedState,baseState:ti.baseState,baseQueue:ti.baseQueue,queue:ti.queue,next:null},null===ni?ei.memoizedState=ni=e:ni=ni.next=e}return ni}function ci(e,t){return\"function\"==typeof t?t(e):t}function di(e){var t=pi(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var a=ti,r=a.baseQueue,o=n.pending;if(null!==o){if(null!==r){var l=r.next;r.next=o.next,o.next=l}a.baseQueue=r=o,n.pending=null}if(null!==r){r=r.next,a=a.baseState;var s=l=o=null,p=r;do{var c=p.lane;if((Yo&c)===c)null!==s&&(s=s.next={lane:0,action:p.action,eagerReducer:p.eagerReducer,eagerState:p.eagerState,next:null}),a=p.eagerReducer===e?p.eagerState:e(a,p.action);else{var d={lane:c,action:p.action,eagerReducer:p.eagerReducer,eagerState:p.eagerState,next:null};null===s?(l=s=d,o=a):s=s.next=d,ei.lanes|=c,Vl|=c}p=p.next}while(null!==p&&p!==r);null===s?o=a:s.next=l,ca(a,t.memoizedState)||(Ri=!0),t.memoizedState=a,t.baseState=o,t.baseQueue=s,n.lastRenderedState=a}return[t.memoizedState,n.dispatch]}function ui(e){var t=pi(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var a=n.dispatch,r=n.pending,o=t.memoizedState;if(null!==r){n.pending=null;var l=r=r.next;do{o=e(o,l.action),l=l.next}while(l!==r);ca(o,t.memoizedState)||(Ri=!0),t.memoizedState=o,null===t.baseQueue&&(t.baseState=o),n.lastRenderedState=o}return[o,a]}function mi(e,t,n){var a=t._getVersion;a=a(t._source);var r=t._workInProgressVersionPrimary;if(null!==r?e=r===a:(e=e.mutableReadLanes,(e=(Yo&e)===e)&&(t._workInProgressVersionPrimary=a,Ko.push(t))),e)return n(t._source);throw Ko.push(t),Error(i(350))}function fi(e,t,n,a){var r=zl;if(null===r)throw Error(i(349));var o=t._getVersion,l=o(t._source),s=Qo.current,p=s.useState((function(){return mi(r,t,n)})),c=p[1],d=p[0];p=ni;var u=e.memoizedState,m=u.refs,f=m.getSnapshot,h=u.source;u=u.subscribe;var g=ei;return e.memoizedState={refs:m,source:t,subscribe:a},s.useEffect((function(){m.getSnapshot=n,m.setSnapshot=c;var e=o(t._source);if(!ca(l,e)){e=n(t._source),ca(d,e)||(c(e),e=us(g),r.mutableReadLanes|=e&r.pendingLanes),e=r.mutableReadLanes,r.entangledLanes|=e;for(var a=r.entanglements,i=e;0\u003Ci;){var s=31-Dt(i),p=1\u003C\u003Cs;a[s]|=e,i&=~p}}}),[n,t,a]),s.useEffect((function(){return a(t._source,(function(){var e=m.getSnapshot,n=m.setSnapshot;try{n(e(t._source));var a=us(g);r.mutableReadLanes|=a&r.pendingLanes}catch(e){n((function(){throw e}))}}))}),[t,a]),ca(f,n)&&ca(h,t)&&ca(u,a)||((e={pending:null,dispatch:null,lastRenderedReducer:ci,lastRenderedState:d}).dispatch=c=Pi.bind(null,ei,e),p.queue=e,p.baseQueue=null,d=mi(r,t,n),p.memoizedState=p.baseState=d),d}function hi(e,t,n){return fi(pi(),e,t,n)}function gi(e){var t=si();return\"function\"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={pending:null,dispatch:null,lastRenderedReducer:ci,lastRenderedState:e}).dispatch=Pi.bind(null,ei,e),[t.memoizedState,e]}function vi(e,t,n,a){return e={tag:e,create:t,destroy:n,deps:a,next:null},null===(t=ei.updateQueue)?(t={lastEffect:null},ei.updateQueue=t,t.lastEffect=e.next=e):null===(n=t.lastEffect)?t.lastEffect=e.next=e:(a=n.next,n.next=e,e.next=a,t.lastEffect=e),e}function _i(e){return e={current:e},si().memoizedState=e}function wi(){return pi().memoizedState}function bi(e,t,n,a){var r=si();ei.flags|=e,r.memoizedState=vi(1|t,n,void 0,void 0===a?null:a)}function xi(e,t,n,a){var r=pi();a=void 0===a?null:a;var o=void 0;if(null!==ti){var i=ti.memoizedState;if(o=i.destroy,null!==a&&ii(a,i.deps))return void vi(t,n,o,a)}ei.flags|=e,r.memoizedState=vi(1|t,n,o,a)}function yi(e,t){return bi(516,4,e,t)}function ki(e,t){return xi(516,4,e,t)}function Ei(e,t){return xi(4,2,e,t)}function Ci(e,t){return\"function\"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function Si(e,t,n){return n=null!=n?n.concat([e]):null,xi(4,2,Ci.bind(null,t,e),n)}function Mi(){}function Li(e,t){var n=pi();t=void 0===t?null:t;var a=n.memoizedState;return null!==a&&null!==t&&ii(t,a[1])?a[0]:(n.memoizedState=[e,t],e)}function Ni(e,t){var n=pi();t=void 0===t?null:t;var a=n.memoizedState;return null!==a&&null!==t&&ii(t,a[1])?a[0]:(e=e(),n.memoizedState=[e,t],e)}function Zi(e,t){var n=Ir();$r(98>n?98:n,(function(){e(!0)})),$r(97\u003Cn?97:n,(function(){var n=Jo.transition;Jo.transition=1;try{e(!1),t()}finally{Jo.transition=n}}))}function Pi(e,t,n){var a=ds(),r=us(e),o={lane:r,action:n,eagerReducer:null,eagerState:null,next:null},i=t.pending;if(null===i?o.next=o:(o.next=i.next,i.next=o),t.pending=o,i=e.alternate,e===ei||null!==i&&i===ei)ri=ai=!0;else{if(0===e.lanes&&(null===i||0===i.lanes)&&null!==(i=t.lastRenderedReducer))try{var l=t.lastRenderedState,s=i(l,n);if(o.eagerReducer=i,o.eagerState=s,ca(s,l))return}catch(e){}ms(e,r,a)}}var zi={readContext:io,useCallback:oi,useContext:oi,useEffect:oi,useImperativeHandle:oi,useLayoutEffect:oi,useMemo:oi,useReducer:oi,useRef:oi,useState:oi,useDebugValue:oi,useDeferredValue:oi,useTransition:oi,useMutableSource:oi,useOpaqueIdentifier:oi,unstable_isNewReconciler:!1},Ai={readContext:io,useCallback:function(e,t){return si().memoizedState=[e,void 0===t?null:t],e},useContext:io,useEffect:yi,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,bi(4,2,Ci.bind(null,t,e),n)},useLayoutEffect:function(e,t){return bi(4,2,e,t)},useMemo:function(e,t){var n=si();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var a=si();return t=void 0!==n?n(t):t,a.memoizedState=a.baseState=t,e=(e=a.queue={pending:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=Pi.bind(null,ei,e),[a.memoizedState,e]},useRef:_i,useState:gi,useDebugValue:Mi,useDeferredValue:function(e){var t=gi(e),n=t[0],a=t[1];return yi((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=gi(!1),t=e[0];return _i(e=Zi.bind(null,e[1])),[e,t]},useMutableSource:function(e,t,n){var a=si();return a.memoizedState={refs:{getSnapshot:t,setSnapshot:null},source:e,subscribe:n},fi(a,e,t,n)},useOpaqueIdentifier:function(){if(Wo){var e=!1,t=function(e){return{$$typeof:H,toString:e,valueOf:e}}((function(){throw e||(e=!0,n(\"r:\"+(Xa++).toString(36))),Error(i(355))})),n=gi(t)[1];return 0==(2&ei.mode)&&(ei.flags|=516,vi(5,(function(){n(\"r:\"+(Xa++).toString(36))}),void 0,null)),t}return gi(t=\"r:\"+(Xa++).toString(36)),t},unstable_isNewReconciler:!1},Bi={readContext:io,useCallback:Li,useContext:io,useEffect:ki,useImperativeHandle:Si,useLayoutEffect:Ei,useMemo:Ni,useReducer:di,useRef:wi,useState:function(){return di(ci)},useDebugValue:Mi,useDeferredValue:function(e){var t=di(ci),n=t[0],a=t[1];return ki((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=di(ci)[0];return[wi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return di(ci)[0]},unstable_isNewReconciler:!1},Hi={readContext:io,useCallback:Li,useContext:io,useEffect:ki,useImperativeHandle:Si,useLayoutEffect:Ei,useMemo:Ni,useReducer:ui,useRef:wi,useState:function(){return ui(ci)},useDebugValue:Mi,useDeferredValue:function(e){var t=ui(ci),n=t[0],a=t[1];return ki((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=ui(ci)[0];return[wi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return ui(ci)[0]},unstable_isNewReconciler:!1},Ti=x.ReactCurrentOwner,Ri=!1;function Oi(e,t,n,a){t.child=null===e?Lo(t,null,n,a):Mo(t,e.child,n,a)}function ji(e,t,n,a,r){n=n.render;var o=t.ref;return oo(t,r),a=li(e,t,n,a,o,r),null===e||Ri?(t.flags|=1,Oi(e,t,a,r),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~r,rl(e,t,r))}function Vi(e,t,n,a,r,o){if(null===e){var i=n.type;return\"function\"!=typeof i||Is(i)||void 0!==i.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=$s(n.type,null,a,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=i,Fi(e,t,i,a,r,o))}return i=e.child,0==(r&o)&&(r=i.memoizedProps,(n=null!==(n=n.compare)?n:ua)(r,a)&&e.ref===t.ref)?rl(e,t,o):(t.flags|=1,(e=Us(i,a)).ref=t.ref,e.return=t,t.child=e)}function Fi(e,t,n,a,r,o){if(null!==e&&ua(e.memoizedProps,a)&&e.ref===t.ref){if(Ri=!1,0==(o&r))return t.lanes=e.lanes,rl(e,t,o);0!=(16384&e.flags)&&(Ri=!0)}return Ii(e,t,n,a,o)}function Wi(e,t,n){var a=t.pendingProps,r=a.children,o=null!==e?e.memoizedState:null;if(\"hidden\"===a.mode||\"unstable-defer-without-hiding\"===a.mode)if(0==(4&t.mode))t.memoizedState={baseLanes:0},xs(0,n);else{if(0==(1073741824&n))return e=null!==o?o.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e},xs(0,e),null;t.memoizedState={baseLanes:0},xs(0,null!==o?o.baseLanes:n)}else null!==o?(a=o.baseLanes|n,t.memoizedState=null):a=n,xs(0,a);return Oi(e,t,r,n),t.child}function Di(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=128)}function Ii(e,t,n,a,r){var o=vr(n)?hr:mr.current;return o=gr(t,o),oo(t,r),n=li(e,t,n,a,o,r),null===e||Ri?(t.flags|=1,Oi(e,t,n,r),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~r,rl(e,t,r))}function Ui(e,t,n,a,r){if(vr(n)){var o=!0;xr(t)}else o=!1;if(oo(t,r),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),bo(t,n,a),yo(t,n,a,r),a=!0;else if(null===e){var i=t.stateNode,l=t.memoizedProps;i.props=l;var s=i.context,p=n.contextType;p=\"object\"==typeof p&&null!==p?io(p):gr(t,p=vr(n)?hr:mr.current);var c=n.getDerivedStateFromProps,d=\"function\"==typeof c||\"function\"==typeof i.getSnapshotBeforeUpdate;d||\"function\"!=typeof i.UNSAFE_componentWillReceiveProps&&\"function\"!=typeof i.componentWillReceiveProps||(l!==a||s!==p)&&xo(t,i,a,p),lo=!1;var u=t.memoizedState;i.state=u,fo(t,a,i,r),s=t.memoizedState,l!==a||u!==s||fr.current||lo?(\"function\"==typeof c&&(vo(t,n,c,a),s=t.memoizedState),(l=lo||wo(t,n,l,a,u,s,p))?(d||\"function\"!=typeof i.UNSAFE_componentWillMount&&\"function\"!=typeof i.componentWillMount||(\"function\"==typeof i.componentWillMount&&i.componentWillMount(),\"function\"==typeof i.UNSAFE_componentWillMount&&i.UNSAFE_componentWillMount()),\"function\"==typeof i.componentDidMount&&(t.flags|=4)):(\"function\"==typeof i.componentDidMount&&(t.flags|=4),t.memoizedProps=a,t.memoizedState=s),i.props=a,i.state=s,i.context=p,a=l):(\"function\"==typeof i.componentDidMount&&(t.flags|=4),a=!1)}else{i=t.stateNode,po(e,t),l=t.memoizedProps,p=t.type===t.elementType?l:Qr(t.type,l),i.props=p,d=t.pendingProps,u=i.context,s=\"object\"==typeof(s=n.contextType)&&null!==s?io(s):gr(t,s=vr(n)?hr:mr.current);var m=n.getDerivedStateFromProps;(c=\"function\"==typeof m||\"function\"==typeof i.getSnapshotBeforeUpdate)||\"function\"!=typeof i.UNSAFE_componentWillReceiveProps&&\"function\"!=typeof i.componentWillReceiveProps||(l!==d||u!==s)&&xo(t,i,a,s),lo=!1,u=t.memoizedState,i.state=u,fo(t,a,i,r);var f=t.memoizedState;l!==d||u!==f||fr.current||lo?(\"function\"==typeof m&&(vo(t,n,m,a),f=t.memoizedState),(p=lo||wo(t,n,p,a,u,f,s))?(c||\"function\"!=typeof i.UNSAFE_componentWillUpdate&&\"function\"!=typeof i.componentWillUpdate||(\"function\"==typeof i.componentWillUpdate&&i.componentWillUpdate(a,f,s),\"function\"==typeof i.UNSAFE_componentWillUpdate&&i.UNSAFE_componentWillUpdate(a,f,s)),\"function\"==typeof i.componentDidUpdate&&(t.flags|=4),\"function\"==typeof i.getSnapshotBeforeUpdate&&(t.flags|=256)):(\"function\"!=typeof i.componentDidUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=4),\"function\"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=256),t.memoizedProps=a,t.memoizedState=f),i.props=a,i.state=f,i.context=s,a=p):(\"function\"!=typeof i.componentDidUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=4),\"function\"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=256),a=!1)}return $i(e,t,n,a,o,r)}function $i(e,t,n,a,r,o){Di(e,t);var i=0!=(64&t.flags);if(!a&&!i)return r&&yr(t,n,!1),rl(e,t,o);a=t.stateNode,Ti.current=t;var l=i&&\"function\"!=typeof n.getDerivedStateFromError?null:a.render();return t.flags|=1,null!==e&&i?(t.child=Mo(t,e.child,null,o),t.child=Mo(t,null,l,o)):Oi(e,t,l,o),t.memoizedState=a.state,r&&yr(t,n,!0),t.child}function Gi(e){var t=e.stateNode;t.pendingContext?wr(0,t.pendingContext,t.pendingContext!==t.context):t.context&&wr(0,t.context,!1),Bo(e,t.containerInfo)}var qi,Ki,Xi,Qi,Ji={dehydrated:null,retryLane:0};function Yi(e,t,n){var a,r=t.pendingProps,o=Oo.current,i=!1;return(a=0!=(64&t.flags))||(a=(null===e||null!==e.memoizedState)&&0!=(2&o)),a?(i=!0,t.flags&=-65):null!==e&&null===e.memoizedState||void 0===r.fallback||!0===r.unstable_avoidThisFallback||(o|=1),dr(Oo,1&o),null===e?(void 0!==r.fallback&&Uo(t),e=r.children,o=r.fallback,i?(e=el(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Ji,e):\"number\"==typeof r.unstable_expectedLoadTime?(e=el(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Ji,t.lanes=33554432,e):((n=qs({mode:\"visible\",children:e},t.mode,n,null)).return=t,t.child=n)):(e.memoizedState,i?(r=function(e,t,n,a,r){var o=t.mode,i=e.child;e=i.sibling;var l={mode:\"hidden\",children:n};return 0==(2&o)&&t.child!==i?((n=t.child).childLanes=0,n.pendingProps=l,null!==(i=n.lastEffect)?(t.firstEffect=n.firstEffect,t.lastEffect=i,i.nextEffect=null):t.firstEffect=t.lastEffect=null):n=Us(i,l),null!==e?a=Us(e,a):(a=Gs(a,o,r,null)).flags|=2,a.return=t,n.return=t,n.sibling=a,t.child=n,a}(e,t,r.children,r.fallback,n),i=t.child,o=e.child.memoizedState,i.memoizedState=null===o?{baseLanes:n}:{baseLanes:o.baseLanes|n},i.childLanes=e.childLanes&~n,t.memoizedState=Ji,r):(n=function(e,t,n,a){var r=e.child;return e=r.sibling,n=Us(r,{mode:\"visible\",children:n}),0==(2&t.mode)&&(n.lanes=a),n.return=t,n.sibling=null,null!==e&&(e.nextEffect=null,e.flags=8,t.firstEffect=t.lastEffect=e),t.child=n}(e,t,r.children,n),t.memoizedState=null,n))}function el(e,t,n,a){var r=e.mode,o=e.child;return t={mode:\"hidden\",children:t},0==(2&r)&&null!==o?(o.childLanes=0,o.pendingProps=t):o=qs(t,r,0,null),n=Gs(n,r,a,null),o.return=e,n.return=e,o.sibling=n,e.child=o,n}function tl(e,t){e.lanes|=t;var n=e.alternate;null!==n&&(n.lanes|=t),ro(e.return,t)}function nl(e,t,n,a,r,o){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:a,tail:n,tailMode:r,lastEffect:o}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=a,i.tail=n,i.tailMode=r,i.lastEffect=o)}function al(e,t,n){var a=t.pendingProps,r=a.revealOrder,o=a.tail;if(Oi(e,t,a.children,n),0!=(2&(a=Oo.current)))a=1&a|2,t.flags|=64;else{if(null!==e&&0!=(64&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&tl(e,n);else if(19===e.tag)tl(e,n);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}a&=1}if(dr(Oo,a),0==(2&t.mode))t.memoizedState=null;else switch(r){case\"forwards\":for(n=t.child,r=null;null!==n;)null!==(e=n.alternate)&&null===jo(e)&&(r=n),n=n.sibling;null===(n=r)?(r=t.child,t.child=null):(r=n.sibling,n.sibling=null),nl(t,!1,r,n,o,t.lastEffect);break;case\"backwards\":for(n=null,r=t.child,t.child=null;null!==r;){if(null!==(e=r.alternate)&&null===jo(e)){t.child=r;break}e=r.sibling,r.sibling=n,n=r,r=e}nl(t,!0,n,null,o,t.lastEffect);break;case\"together\":nl(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}function rl(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),Vl|=t.lanes,0!=(n&t.childLanes)){if(null!==e&&t.child!==e.child)throw Error(i(153));if(null!==t.child){for(n=Us(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Us(e,e.pendingProps)).return=t;n.sibling=null}return t.child}return null}function ol(e,t){if(!Wo)switch(e.tailMode){case\"hidden\":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case\"collapsed\":n=e.tail;for(var a=null;null!==n;)null!==n.alternate&&(a=n),n=n.sibling;null===a?t||null===e.tail?e.tail=null:e.tail.sibling=null:a.sibling=null}}function il(e,t,n){var a=t.pendingProps;switch(t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return null;case 1:case 17:return vr(t.type)&&_r(),null;case 3:return Ho(),cr(fr),cr(mr),Xo(),(a=t.stateNode).pendingContext&&(a.context=a.pendingContext,a.pendingContext=null),null!==e&&null!==e.child||(Go(t)?t.flags|=4:a.hydrate||(t.flags|=256)),Ki(t),null;case 5:Ro(t);var o=Ao(zo.current);if(n=t.type,null!==e&&null!=t.stateNode)Xi(e,t,n,a,o),e.ref!==t.ref&&(t.flags|=128);else{if(!a){if(null===t.stateNode)throw Error(i(166));return null}if(e=Ao(Zo.current),Go(t)){a=t.stateNode,n=t.type;var l=t.memoizedProps;switch(a[Ja]=t,a[Ya]=l,n){case\"dialog\":Za(\"cancel\",a),Za(\"close\",a);break;case\"iframe\":case\"object\":case\"embed\":Za(\"load\",a);break;case\"video\":case\"audio\":for(e=0;e\u003CSa.length;e++)Za(Sa[e],a);break;case\"source\":Za(\"error\",a);break;case\"img\":case\"image\":case\"link\":Za(\"error\",a),Za(\"load\",a);break;case\"details\":Za(\"toggle\",a);break;case\"input\":ee(a,l),Za(\"invalid\",a);break;case\"select\":a._wrapperState={wasMultiple:!!l.multiple},Za(\"invalid\",a);break;case\"textarea\":se(a,l),Za(\"invalid\",a)}for(var p in ke(n,l),e=null,l)l.hasOwnProperty(p)&&(o=l[p],\"children\"===p?\"string\"==typeof o?a.textContent!==o&&(e=[\"children\",o]):\"number\"==typeof o&&a.textContent!==\"\"+o&&(e=[\"children\",\"\"+o]):s.hasOwnProperty(p)&&null!=o&&\"onScroll\"===p&&Za(\"scroll\",a));switch(n){case\"input\":X(a),ae(a,l,!0);break;case\"textarea\":X(a),ce(a);break;case\"select\":case\"option\":break;default:\"function\"==typeof l.onClick&&(a.onclick=Va)}a=e,t.updateQueue=a,null!==a&&(t.flags|=4)}else{switch(p=9===o.nodeType?o:o.ownerDocument,e===de.html&&(e=ue(n)),e===de.html?\"script\"===n?((e=p.createElement(\"div\")).innerHTML=\"\u003Cscript>\u003C\\\u002Fscript>\",e=e.removeChild(e.firstChild)):\"string\"==typeof a.is?e=p.createElement(n,{is:a.is}):(e=p.createElement(n),\"select\"===n&&(p=e,a.multiple?p.multiple=!0:a.size&&(p.size=a.size))):e=p.createElementNS(e,n),e[Ja]=t,e[Ya]=a,qi(e,t,!1,!1),t.stateNode=e,p=Ee(n,a),n){case\"dialog\":Za(\"cancel\",e),Za(\"close\",e),o=a;break;case\"iframe\":case\"object\":case\"embed\":Za(\"load\",e),o=a;break;case\"video\":case\"audio\":for(o=0;o\u003CSa.length;o++)Za(Sa[o],e);o=a;break;case\"source\":Za(\"error\",e),o=a;break;case\"img\":case\"image\":case\"link\":Za(\"error\",e),Za(\"load\",e),o=a;break;case\"details\":Za(\"toggle\",e),o=a;break;case\"input\":ee(e,a),o=Y(e,a),Za(\"invalid\",e);break;case\"option\":o=oe(e,a);break;case\"select\":e._wrapperState={wasMultiple:!!a.multiple},o=r({},a,{value:void 0}),Za(\"invalid\",e);break;case\"textarea\":se(e,a),o=le(e,a),Za(\"invalid\",e);break;default:o=a}ke(n,o);var c=o;for(l in c)if(c.hasOwnProperty(l)){var d=c[l];\"style\"===l?xe(e,d):\"dangerouslySetInnerHTML\"===l?null!=(d=d?d.__html:void 0)&&ge(e,d):\"children\"===l?\"string\"==typeof d?(\"textarea\"!==n||\"\"!==d)&&ve(e,d):\"number\"==typeof d&&ve(e,\"\"+d):\"suppressContentEditableWarning\"!==l&&\"suppressHydrationWarning\"!==l&&\"autoFocus\"!==l&&(s.hasOwnProperty(l)?null!=d&&\"onScroll\"===l&&Za(\"scroll\",e):null!=d&&b(e,l,d,p))}switch(n){case\"input\":X(e),ae(e,a,!1);break;case\"textarea\":X(e),ce(e);break;case\"option\":null!=a.value&&e.setAttribute(\"value\",\"\"+q(a.value));break;case\"select\":e.multiple=!!a.multiple,null!=(l=a.value)?ie(e,!!a.multiple,l,!1):null!=a.defaultValue&&ie(e,!!a.multiple,a.defaultValue,!0);break;default:\"function\"==typeof o.onClick&&(e.onclick=Va)}Da(n,a)&&(t.flags|=4)}null!==t.ref&&(t.flags|=128)}return null;case 6:if(e&&null!=t.stateNode)Qi(e,t,e.memoizedProps,a);else{if(\"string\"!=typeof a&&null===t.stateNode)throw Error(i(166));n=Ao(zo.current),Ao(Zo.current),Go(t)?(a=t.stateNode,n=t.memoizedProps,a[Ja]=t,a.nodeValue!==n&&(t.flags|=4)):((a=(9===n.nodeType?n:n.ownerDocument).createTextNode(a))[Ja]=t,t.stateNode=a)}return null;case 13:return cr(Oo),a=t.memoizedState,0!=(64&t.flags)?(t.lanes=n,t):(a=null!==a,n=!1,null===e?void 0!==t.memoizedProps.fallback&&Go(t):n=null!==e.memoizedState,a&&!n&&0!=(2&t.mode)&&(null===e&&!0!==t.memoizedProps.unstable_avoidThisFallback||0!=(1&Oo.current)?0===Rl&&(Rl=3):(0!==Rl&&3!==Rl||(Rl=4),null===zl||0==(134217727&Vl)&&0==(134217727&Fl)||vs(zl,Bl))),(a||n)&&(t.flags|=4),null);case 4:return Ho(),Ki(t),null===e&&za(t.stateNode.containerInfo),null;case 10:return ao(t),null;case 19:if(cr(Oo),null===(a=t.memoizedState))return null;if(l=0!=(64&t.flags),null===(p=a.rendering))if(l)ol(a,!1);else{if(0!==Rl||null!==e&&0!=(64&e.flags))for(e=t.child;null!==e;){if(null!==(p=jo(e))){for(t.flags|=64,ol(a,!1),null!==(l=p.updateQueue)&&(t.updateQueue=l,t.flags|=4),null===a.lastEffect&&(t.firstEffect=null),t.lastEffect=a.lastEffect,a=n,n=t.child;null!==n;)e=a,(l=n).flags&=2,l.nextEffect=null,l.firstEffect=null,l.lastEffect=null,null===(p=l.alternate)?(l.childLanes=0,l.lanes=e,l.child=null,l.memoizedProps=null,l.memoizedState=null,l.updateQueue=null,l.dependencies=null,l.stateNode=null):(l.childLanes=p.childLanes,l.lanes=p.lanes,l.child=p.child,l.memoizedProps=p.memoizedProps,l.memoizedState=p.memoizedState,l.updateQueue=p.updateQueue,l.type=p.type,e=p.dependencies,l.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return dr(Oo,1&Oo.current|2),t.child}e=e.sibling}null!==a.tail&&Dr()>Ul&&(t.flags|=64,l=!0,ol(a,!1),t.lanes=33554432)}else{if(!l)if(null!==(e=jo(p))){if(t.flags|=64,l=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),ol(a,!0),null===a.tail&&\"hidden\"===a.tailMode&&!p.alternate&&!Wo)return null!==(t=t.lastEffect=a.lastEffect)&&(t.nextEffect=null),null}else 2*Dr()-a.renderingStartTime>Ul&&1073741824!==n&&(t.flags|=64,l=!0,ol(a,!1),t.lanes=33554432);a.isBackwards?(p.sibling=t.child,t.child=p):(null!==(n=a.last)?n.sibling=p:t.child=p,a.last=p)}return null!==a.tail?(n=a.tail,a.rendering=n,a.tail=n.sibling,a.lastEffect=t.lastEffect,a.renderingStartTime=Dr(),n.sibling=null,t=Oo.current,dr(Oo,l?1&t|2:1&t),n):null;case 23:case 24:return ys(),null!==e&&null!==e.memoizedState!=(null!==t.memoizedState)&&\"unstable-defer-without-hiding\"!==a.mode&&(t.flags|=4),null}throw Error(i(156,t.tag))}function ll(e){switch(e.tag){case 1:vr(e.type)&&_r();var t=e.flags;return 4096&t?(e.flags=-4097&t|64,e):null;case 3:if(Ho(),cr(fr),cr(mr),Xo(),0!=(64&(t=e.flags)))throw Error(i(285));return e.flags=-4097&t|64,e;case 5:return Ro(e),null;case 13:return cr(Oo),4096&(t=e.flags)?(e.flags=-4097&t|64,e):null;case 19:return cr(Oo),null;case 4:return Ho(),null;case 10:return ao(e),null;case 23:case 24:return ys(),null;default:return null}}function sl(e,t){try{var n=\"\",a=t;do{n+=$(a),a=a.return}while(a);var r=n}catch(e){r=\"\\nError generating stack: \"+e.message+\"\\n\"+e.stack}return{value:e,source:t,stack:r}}function pl(e,t){try{console.error(t.value)}catch(e){setTimeout((function(){throw e}))}}qi=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},Ki=function(){},Xi=function(e,t,n,a){var o=e.memoizedProps;if(o!==a){e=t.stateNode,Ao(Zo.current);var i,l=null;switch(n){case\"input\":o=Y(e,o),a=Y(e,a),l=[];break;case\"option\":o=oe(e,o),a=oe(e,a),l=[];break;case\"select\":o=r({},o,{value:void 0}),a=r({},a,{value:void 0}),l=[];break;case\"textarea\":o=le(e,o),a=le(e,a),l=[];break;default:\"function\"!=typeof o.onClick&&\"function\"==typeof a.onClick&&(e.onclick=Va)}for(d in ke(n,a),n=null,o)if(!a.hasOwnProperty(d)&&o.hasOwnProperty(d)&&null!=o[d])if(\"style\"===d){var p=o[d];for(i in p)p.hasOwnProperty(i)&&(n||(n={}),n[i]=\"\")}else\"dangerouslySetInnerHTML\"!==d&&\"children\"!==d&&\"suppressContentEditableWarning\"!==d&&\"suppressHydrationWarning\"!==d&&\"autoFocus\"!==d&&(s.hasOwnProperty(d)?l||(l=[]):(l=l||[]).push(d,null));for(d in a){var c=a[d];if(p=null!=o?o[d]:void 0,a.hasOwnProperty(d)&&c!==p&&(null!=c||null!=p))if(\"style\"===d)if(p){for(i in p)!p.hasOwnProperty(i)||c&&c.hasOwnProperty(i)||(n||(n={}),n[i]=\"\");for(i in c)c.hasOwnProperty(i)&&p[i]!==c[i]&&(n||(n={}),n[i]=c[i])}else n||(l||(l=[]),l.push(d,n)),n=c;else\"dangerouslySetInnerHTML\"===d?(c=c?c.__html:void 0,p=p?p.__html:void 0,null!=c&&p!==c&&(l=l||[]).push(d,c)):\"children\"===d?\"string\"!=typeof c&&\"number\"!=typeof c||(l=l||[]).push(d,\"\"+c):\"suppressContentEditableWarning\"!==d&&\"suppressHydrationWarning\"!==d&&(s.hasOwnProperty(d)?(null!=c&&\"onScroll\"===d&&Za(\"scroll\",e),l||p===c||(l=[])):\"object\"==typeof c&&null!==c&&c.$$typeof===H?c.toString():(l=l||[]).push(d,c))}n&&(l=l||[]).push(\"style\",n);var d=l;(t.updateQueue=d)&&(t.flags|=4)}},Qi=function(e,t,n,a){n!==a&&(t.flags|=4)};var cl=\"function\"==typeof WeakMap?WeakMap:Map;function dl(e,t,n){(n=co(-1,n)).tag=3,n.payload={element:null};var a=t.value;return n.callback=function(){Kl||(Kl=!0,Xl=a),pl(0,t)},n}function ul(e,t,n){(n=co(-1,n)).tag=3;var a=e.type.getDerivedStateFromError;if(\"function\"==typeof a){var r=t.value;n.payload=function(){return pl(0,t),a(r)}}var o=e.stateNode;return null!==o&&\"function\"==typeof o.componentDidCatch&&(n.callback=function(){\"function\"!=typeof a&&(null===Ql?Ql=new Set([this]):Ql.add(this),pl(0,t));var e=t.stack;this.componentDidCatch(t.value,{componentStack:null!==e?e:\"\"})}),n}var ml=\"function\"==typeof WeakSet?WeakSet:Set;function fl(e){var t=e.ref;if(null!==t)if(\"function\"==typeof t)try{t(null)}catch(t){js(e,t)}else t.current=null}function hl(e,t){switch(t.tag){case 0:case 11:case 15:case 22:case 5:case 6:case 4:case 17:return;case 1:if(256&t.flags&&null!==e){var n=e.memoizedProps,a=e.memoizedState;t=(e=t.stateNode).getSnapshotBeforeUpdate(t.elementType===t.type?n:Qr(t.type,n),a),e.__reactInternalSnapshotBeforeUpdate=t}return;case 3:return void(256&t.flags&&Ga(t.stateNode.containerInfo))}throw Error(i(163))}function gl(e,t,n){switch(n.tag){case 0:case 11:case 15:case 22:if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{if(3==(3&e.tag)){var a=e.create;e.destroy=a()}e=e.next}while(e!==t)}if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{var r=e;a=r.next,0!=(4&(r=r.tag))&&0!=(1&r)&&(Ts(n,e),Hs(n,e)),e=a}while(e!==t)}return;case 1:return e=n.stateNode,4&n.flags&&(null===t?e.componentDidMount():(a=n.elementType===n.type?t.memoizedProps:Qr(n.type,t.memoizedProps),e.componentDidUpdate(a,t.memoizedState,e.__reactInternalSnapshotBeforeUpdate))),void(null!==(t=n.updateQueue)&&ho(n,t,e));case 3:if(null!==(t=n.updateQueue)){if(e=null,null!==n.child)switch(n.child.tag){case 5:case 1:e=n.child.stateNode}ho(n,t,e)}return;case 5:return e=n.stateNode,void(null===t&&4&n.flags&&Da(n.type,n.memoizedProps)&&e.focus());case 6:case 4:case 12:case 19:case 17:case 20:case 21:case 23:case 24:return;case 13:return void(null===n.memoizedState&&(n=n.alternate,null!==n&&(n=n.memoizedState,null!==n&&(n=n.dehydrated,null!==n&&xt(n)))))}throw Error(i(163))}function vl(e,t){for(var n=e;;){if(5===n.tag){var a=n.stateNode;if(t)\"function\"==typeof(a=a.style).setProperty?a.setProperty(\"display\",\"none\",\"important\"):a.display=\"none\";else{a=n.stateNode;var r=n.memoizedProps.style;r=null!=r&&r.hasOwnProperty(\"display\")?r.display:null,a.style.display=be(\"display\",r)}}else if(6===n.tag)n.stateNode.nodeValue=t?\"\":n.memoizedProps;else if((23!==n.tag&&24!==n.tag||null===n.memoizedState||n===e)&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)break;for(;null===n.sibling;){if(null===n.return||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}}function _l(e,t){if(Er&&\"function\"==typeof Er.onCommitFiberUnmount)try{Er.onCommitFiberUnmount(kr,t)}catch(e){}switch(t.tag){case 0:case 11:case 14:case 15:case 22:if(null!==(e=t.updateQueue)&&null!==(e=e.lastEffect)){var n=e=e.next;do{var a=n,r=a.destroy;if(a=a.tag,void 0!==r)if(0!=(4&a))Ts(t,n);else{a=t;try{r()}catch(e){js(a,e)}}n=n.next}while(n!==e)}break;case 1:if(fl(t),\"function\"==typeof(e=t.stateNode).componentWillUnmount)try{e.props=t.memoizedProps,e.state=t.memoizedState,e.componentWillUnmount()}catch(e){js(t,e)}break;case 5:fl(t);break;case 4:El(e,t)}}function wl(e){e.alternate=null,e.child=null,e.dependencies=null,e.firstEffect=null,e.lastEffect=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.return=null,e.updateQueue=null}function bl(e){return 5===e.tag||3===e.tag||4===e.tag}function xl(e){e:{for(var t=e.return;null!==t;){if(bl(t))break e;t=t.return}throw Error(i(160))}var n=t;switch(t=n.stateNode,n.tag){case 5:var a=!1;break;case 3:case 4:t=t.containerInfo,a=!0;break;default:throw Error(i(161))}16&n.flags&&(ve(t,\"\"),n.flags&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||bl(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag&&18!==n.tag;){if(2&n.flags)continue t;if(null===n.child||4===n.tag)continue t;n.child.return=n,n=n.child}if(!(2&n.flags)){n=n.stateNode;break e}}a?yl(e,n,t):kl(e,n,t)}function yl(e,t,n){var a=e.tag,r=5===a||6===a;if(r)e=r?e.stateNode:e.stateNode.instance,t?8===n.nodeType?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(8===n.nodeType?(t=n.parentNode).insertBefore(e,n):(t=n).appendChild(e),null!=(n=n._reactRootContainer)||null!==t.onclick||(t.onclick=Va));else if(4!==a&&null!==(e=e.child))for(yl(e,t,n),e=e.sibling;null!==e;)yl(e,t,n),e=e.sibling}function kl(e,t,n){var a=e.tag,r=5===a||6===a;if(r)e=r?e.stateNode:e.stateNode.instance,t?n.insertBefore(e,t):n.appendChild(e);else if(4!==a&&null!==(e=e.child))for(kl(e,t,n),e=e.sibling;null!==e;)kl(e,t,n),e=e.sibling}function El(e,t){for(var n,a,r=t,o=!1;;){if(!o){o=r.return;e:for(;;){if(null===o)throw Error(i(160));switch(n=o.stateNode,o.tag){case 5:a=!1;break e;case 3:case 4:n=n.containerInfo,a=!0;break e}o=o.return}o=!0}if(5===r.tag||6===r.tag){e:for(var l=e,s=r,p=s;;)if(_l(l,p),null!==p.child&&4!==p.tag)p.child.return=p,p=p.child;else{if(p===s)break e;for(;null===p.sibling;){if(null===p.return||p.return===s)break e;p=p.return}p.sibling.return=p.return,p=p.sibling}a?(l=n,s=r.stateNode,8===l.nodeType?l.parentNode.removeChild(s):l.removeChild(s)):n.removeChild(r.stateNode)}else if(4===r.tag){if(null!==r.child){n=r.stateNode.containerInfo,a=!0,r.child.return=r,r=r.child;continue}}else if(_l(e,r),null!==r.child){r.child.return=r,r=r.child;continue}if(r===t)break;for(;null===r.sibling;){if(null===r.return||r.return===t)return;4===(r=r.return).tag&&(o=!1)}r.sibling.return=r.return,r=r.sibling}}function Cl(e,t){switch(t.tag){case 0:case 11:case 14:case 15:case 22:var n=t.updateQueue;if(null!==(n=null!==n?n.lastEffect:null)){var a=n=n.next;do{3==(3&a.tag)&&(e=a.destroy,a.destroy=void 0,void 0!==e&&e()),a=a.next}while(a!==n)}return;case 1:case 12:case 17:return;case 5:if(null!=(n=t.stateNode)){a=t.memoizedProps;var r=null!==e?e.memoizedProps:a;e=t.type;var o=t.updateQueue;if(t.updateQueue=null,null!==o){for(n[Ya]=a,\"input\"===e&&\"radio\"===a.type&&null!=a.name&&te(n,a),Ee(e,r),t=Ee(e,a),r=0;r\u003Co.length;r+=2){var l=o[r],s=o[r+1];\"style\"===l?xe(n,s):\"dangerouslySetInnerHTML\"===l?ge(n,s):\"children\"===l?ve(n,s):b(n,l,s,t)}switch(e){case\"input\":ne(n,a);break;case\"textarea\":pe(n,a);break;case\"select\":e=n._wrapperState.wasMultiple,n._wrapperState.wasMultiple=!!a.multiple,null!=(o=a.value)?ie(n,!!a.multiple,o,!1):e!==!!a.multiple&&(null!=a.defaultValue?ie(n,!!a.multiple,a.defaultValue,!0):ie(n,!!a.multiple,a.multiple?[]:\"\",!1))}}}return;case 6:if(null===t.stateNode)throw Error(i(162));return void(t.stateNode.nodeValue=t.memoizedProps);case 3:return void((n=t.stateNode).hydrate&&(n.hydrate=!1,xt(n.containerInfo)));case 13:return null!==t.memoizedState&&(Il=Dr(),vl(t.child,!0)),void Sl(t);case 19:return void Sl(t);case 23:case 24:return void vl(t,null!==t.memoizedState)}throw Error(i(163))}function Sl(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new ml),t.forEach((function(t){var a=Fs.bind(null,e,t);n.has(t)||(n.add(t),t.then(a,a))}))}}function Ml(e,t){return null!==e&&(null===(e=e.memoizedState)||null!==e.dehydrated)&&null!==(t=t.memoizedState)&&null===t.dehydrated}var Ll=Math.ceil,Nl=x.ReactCurrentDispatcher,Zl=x.ReactCurrentOwner,Pl=0,zl=null,Al=null,Bl=0,Hl=0,Tl=pr(0),Rl=0,Ol=null,jl=0,Vl=0,Fl=0,Wl=0,Dl=null,Il=0,Ul=1\u002F0;function $l(){Ul=Dr()+500}var Gl,ql=null,Kl=!1,Xl=null,Ql=null,Jl=!1,Yl=null,es=90,ts=[],ns=[],as=null,rs=0,os=null,is=-1,ls=0,ss=0,ps=null,cs=!1;function ds(){return 0!=(48&Pl)?Dr():-1!==is?is:is=Dr()}function us(e){if(0==(2&(e=e.mode)))return 1;if(0==(4&e))return 99===Ir()?1:2;if(0===ls&&(ls=jl),0!==Xr.transition){0!==ss&&(ss=null!==Dl?Dl.pendingLanes:0),e=ls;var t=4186112&~ss;return 0==(t&=-t)&&0==(t=(e=4186112&~e)&-e)&&(t=8192),t}return e=Ir(),e=jt(0!=(4&Pl)&&98===e?12:e=function(e){switch(e){case 99:return 15;case 98:return 10;case 97:case 96:return 8;case 95:return 2;default:return 0}}(e),ls)}function ms(e,t,n){if(50\u003Crs)throw rs=0,os=null,Error(i(185));if(null===(e=fs(e,t)))return null;Wt(e,t,n),e===zl&&(Fl|=t,4===Rl&&vs(e,Bl));var a=Ir();1===t?0!=(8&Pl)&&0==(48&Pl)?_s(e):(hs(e,n),0===Pl&&($l(),qr())):(0==(4&Pl)||98!==a&&99!==a||(null===as?as=new Set([e]):as.add(e)),hs(e,n)),Dl=e}function fs(e,t){e.lanes|=t;var n=e.alternate;for(null!==n&&(n.lanes|=t),n=e,e=e.return;null!==e;)e.childLanes|=t,null!==(n=e.alternate)&&(n.childLanes|=t),n=e,e=e.return;return 3===n.tag?n.stateNode:null}function hs(e,t){for(var n=e.callbackNode,a=e.suspendedLanes,r=e.pingedLanes,o=e.expirationTimes,l=e.pendingLanes;0\u003Cl;){var s=31-Dt(l),p=1\u003C\u003Cs,c=o[s];if(-1===c){if(0==(p&a)||0!=(p&r)){c=t,Tt(p);var d=Ht;o[s]=10\u003C=d?c+250:6\u003C=d?c+5e3:-1}}else c\u003C=t&&(e.expiredLanes|=p);l&=~p}if(a=Rt(e,e===zl?Bl:0),t=Ht,0===a)null!==n&&(n!==Rr&&Mr(n),e.callbackNode=null,e.callbackPriority=0);else{if(null!==n){if(e.callbackPriority===t)return;n!==Rr&&Mr(n)}15===t?(n=_s.bind(null,e),null===jr?(jr=[n],Vr=Sr(zr,Kr)):jr.push(n),n=Rr):14===t?n=Gr(99,_s.bind(null,e)):(n=function(e){switch(e){case 15:case 14:return 99;case 13:case 12:case 11:case 10:return 98;case 9:case 8:case 7:case 6:case 4:case 5:return 97;case 3:case 2:case 1:return 95;case 0:return 90;default:throw Error(i(358,e))}}(t),n=Gr(n,gs.bind(null,e))),e.callbackPriority=t,e.callbackNode=n}}function gs(e){if(is=-1,ss=ls=0,0!=(48&Pl))throw Error(i(327));var t=e.callbackNode;if(Bs()&&e.callbackNode!==t)return null;var n=Rt(e,e===zl?Bl:0);if(0===n)return null;var a=n,r=Pl;Pl|=16;var o=Cs();for(zl===e&&Bl===a||($l(),ks(e,a));;)try{Ls();break}catch(t){Es(e,t)}if(no(),Nl.current=o,Pl=r,null!==Al?a=0:(zl=null,Bl=0,a=Rl),0!=(jl&Fl))ks(e,0);else if(0!==a){if(2===a&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Ga(e.containerInfo)),0!==(n=Ot(e))&&(a=Ss(e,n))),1===a)throw t=Ol,ks(e,0),vs(e,n),hs(e,Dr()),t;switch(e.finishedWork=e.current.alternate,e.finishedLanes=n,a){case 0:case 1:throw Error(i(345));case 2:case 5:Ps(e);break;case 3:if(vs(e,n),(62914560&n)===n&&10\u003C(a=Il+500-Dr())){if(0!==Rt(e,0))break;if(((r=e.suspendedLanes)&n)!==n){ds(),e.pingedLanes|=e.suspendedLanes&r;break}e.timeoutHandle=Ua(Ps.bind(null,e),a);break}Ps(e);break;case 4:if(vs(e,n),(4186112&n)===n)break;for(a=e.eventTimes,r=-1;0\u003Cn;){var l=31-Dt(n);o=1\u003C\u003Cl,(l=a[l])>r&&(r=l),n&=~o}if(n=r,10\u003C(n=(120>(n=Dr()-n)?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*Ll(n\u002F1960))-n)){e.timeoutHandle=Ua(Ps.bind(null,e),n);break}Ps(e);break;default:throw Error(i(329))}}return hs(e,Dr()),e.callbackNode===t?gs.bind(null,e):null}function vs(e,t){for(t&=~Wl,t&=~Fl,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0\u003Ct;){var n=31-Dt(t),a=1\u003C\u003Cn;e[n]=-1,t&=~a}}function _s(e){if(0!=(48&Pl))throw Error(i(327));if(Bs(),e===zl&&0!=(e.expiredLanes&Bl)){var t=Bl,n=Ss(e,t);0!=(jl&Fl)&&(n=Ss(e,t=Rt(e,t)))}else n=Ss(e,t=Rt(e,0));if(0!==e.tag&&2===n&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Ga(e.containerInfo)),0!==(t=Ot(e))&&(n=Ss(e,t))),1===n)throw n=Ol,ks(e,0),vs(e,t),hs(e,Dr()),n;return e.finishedWork=e.current.alternate,e.finishedLanes=t,Ps(e),hs(e,Dr()),null}function ws(e,t){var n=Pl;Pl|=1;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}}function bs(e,t){var n=Pl;Pl&=-2,Pl|=8;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}}function xs(e,t){dr(Tl,Hl),Hl|=t,jl|=t}function ys(){Hl=Tl.current,cr(Tl)}function ks(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,$a(n)),null!==Al)for(n=Al.return;null!==n;){var a=n;switch(a.tag){case 1:null!=(a=a.type.childContextTypes)&&_r();break;case 3:Ho(),cr(fr),cr(mr),Xo();break;case 5:Ro(a);break;case 4:Ho();break;case 13:case 19:cr(Oo);break;case 10:ao(a);break;case 23:case 24:ys()}n=n.return}zl=e,Al=Us(e.current,null),Bl=Hl=jl=t,Rl=0,Ol=null,Wl=Fl=Vl=0}function Es(e,t){for(;;){var n=Al;try{if(no(),Qo.current=zi,ai){for(var a=ei.memoizedState;null!==a;){var r=a.queue;null!==r&&(r.pending=null),a=a.next}ai=!1}if(Yo=0,ni=ti=ei=null,ri=!1,Zl.current=null,null===n||null===n.return){Rl=1,Ol=t,Al=null;break}e:{var o=e,i=n.return,l=n,s=t;if(t=Bl,l.flags|=2048,l.firstEffect=l.lastEffect=null,null!==s&&\"object\"==typeof s&&\"function\"==typeof s.then){var p=s;if(0==(2&l.mode)){var c=l.alternate;c?(l.updateQueue=c.updateQueue,l.memoizedState=c.memoizedState,l.lanes=c.lanes):(l.updateQueue=null,l.memoizedState=null)}var d=0!=(1&Oo.current),u=i;do{var m;if(m=13===u.tag){var f=u.memoizedState;if(null!==f)m=null!==f.dehydrated;else{var h=u.memoizedProps;m=void 0!==h.fallback&&(!0!==h.unstable_avoidThisFallback||!d)}}if(m){var g=u.updateQueue;if(null===g){var v=new Set;v.add(p),u.updateQueue=v}else g.add(p);if(0==(2&u.mode)){if(u.flags|=64,l.flags|=16384,l.flags&=-2981,1===l.tag)if(null===l.alternate)l.tag=17;else{var _=co(-1,1);_.tag=2,uo(l,_)}l.lanes|=1;break e}s=void 0,l=t;var w=o.pingCache;if(null===w?(w=o.pingCache=new cl,s=new Set,w.set(p,s)):void 0===(s=w.get(p))&&(s=new Set,w.set(p,s)),!s.has(l)){s.add(l);var b=Vs.bind(null,o,p,l);p.then(b,b)}u.flags|=4096,u.lanes=t;break e}u=u.return}while(null!==u);s=Error((G(l.type)||\"A React component\")+\" suspended while rendering, but no fallback UI was specified.\\n\\nAdd a \u003CSuspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display.\")}5!==Rl&&(Rl=2),s=sl(s,l),u=i;do{switch(u.tag){case 3:o=s,u.flags|=4096,t&=-t,u.lanes|=t,mo(u,dl(0,o,t));break e;case 1:o=s;var x=u.type,y=u.stateNode;if(0==(64&u.flags)&&(\"function\"==typeof x.getDerivedStateFromError||null!==y&&\"function\"==typeof y.componentDidCatch&&(null===Ql||!Ql.has(y)))){u.flags|=4096,t&=-t,u.lanes|=t,mo(u,ul(u,o,t));break e}}u=u.return}while(null!==u)}Zs(n)}catch(e){t=e,Al===n&&null!==n&&(Al=n=n.return);continue}break}}function Cs(){var e=Nl.current;return Nl.current=zi,null===e?zi:e}function Ss(e,t){var n=Pl;Pl|=16;var a=Cs();for(zl===e&&Bl===t||ks(e,t);;)try{Ms();break}catch(t){Es(e,t)}if(no(),Pl=n,Nl.current=a,null!==Al)throw Error(i(261));return zl=null,Bl=0,Rl}function Ms(){for(;null!==Al;)Ns(Al)}function Ls(){for(;null!==Al&&!Lr();)Ns(Al)}function Ns(e){var t=Gl(e.alternate,e,Hl);e.memoizedProps=e.pendingProps,null===t?Zs(e):Al=t,Zl.current=null}function Zs(e){var t=e;do{var n=t.alternate;if(e=t.return,0==(2048&t.flags)){if(null!==(n=il(n,t,Hl)))return void(Al=n);if(24!==(n=t).tag&&23!==n.tag||null===n.memoizedState||0!=(1073741824&Hl)||0==(4&n.mode)){for(var a=0,r=n.child;null!==r;)a|=r.lanes|r.childLanes,r=r.sibling;n.childLanes=a}null!==e&&0==(2048&e.flags)&&(null===e.firstEffect&&(e.firstEffect=t.firstEffect),null!==t.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=t.firstEffect),e.lastEffect=t.lastEffect),1\u003Ct.flags&&(null!==e.lastEffect?e.lastEffect.nextEffect=t:e.firstEffect=t,e.lastEffect=t))}else{if(null!==(n=ll(t)))return n.flags&=2047,void(Al=n);null!==e&&(e.firstEffect=e.lastEffect=null,e.flags|=2048)}if(null!==(t=t.sibling))return void(Al=t);Al=t=e}while(null!==t);0===Rl&&(Rl=5)}function Ps(e){var t=Ir();return $r(99,zs.bind(null,e,t)),null}function zs(e,t){do{Bs()}while(null!==Yl);if(0!=(48&Pl))throw Error(i(327));var n=e.finishedWork;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(i(177));e.callbackNode=null;var a=n.lanes|n.childLanes,r=a,o=e.pendingLanes&~r;e.pendingLanes=r,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=r,e.mutableReadLanes&=r,e.entangledLanes&=r,r=e.entanglements;for(var l=e.eventTimes,s=e.expirationTimes;0\u003Co;){var p=31-Dt(o),c=1\u003C\u003Cp;r[p]=0,l[p]=-1,s[p]=-1,o&=~c}if(null!==as&&0==(24&a)&&as.has(e)&&as.delete(e),e===zl&&(Al=zl=null,Bl=0),1\u003Cn.flags?null!==n.lastEffect?(n.lastEffect.nextEffect=n,a=n.firstEffect):a=n:a=n.firstEffect,null!==a){if(r=Pl,Pl|=32,Zl.current=null,Fa=qt,va(l=ga())){if(\"selectionStart\"in l)s={start:l.selectionStart,end:l.selectionEnd};else e:if(s=(s=l.ownerDocument)&&s.defaultView||window,(c=s.getSelection&&s.getSelection())&&0!==c.rangeCount){s=c.anchorNode,o=c.anchorOffset,p=c.focusNode,c=c.focusOffset;try{s.nodeType,p.nodeType}catch(e){s=null;break e}var d=0,u=-1,m=-1,f=0,h=0,g=l,v=null;t:for(;;){for(var _;g!==s||0!==o&&3!==g.nodeType||(u=d+o),g!==p||0!==c&&3!==g.nodeType||(m=d+c),3===g.nodeType&&(d+=g.nodeValue.length),null!==(_=g.firstChild);)v=g,g=_;for(;;){if(g===l)break t;if(v===s&&++f===o&&(u=d),v===p&&++h===c&&(m=d),null!==(_=g.nextSibling))break;v=(g=v).parentNode}g=_}s=-1===u||-1===m?null:{start:u,end:m}}else s=null;s=s||{start:0,end:0}}else s=null;Wa={focusedElem:l,selectionRange:s},qt=!1,ps=null,cs=!1,ql=a;do{try{As()}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);ps=null,ql=a;do{try{for(l=e;null!==ql;){var w=ql.flags;if(16&w&&ve(ql.stateNode,\"\"),128&w){var b=ql.alternate;if(null!==b){var x=b.ref;null!==x&&(\"function\"==typeof x?x(null):x.current=null)}}switch(1038&w){case 2:xl(ql),ql.flags&=-3;break;case 6:xl(ql),ql.flags&=-3,Cl(ql.alternate,ql);break;case 1024:ql.flags&=-1025;break;case 1028:ql.flags&=-1025,Cl(ql.alternate,ql);break;case 4:Cl(ql.alternate,ql);break;case 8:El(l,s=ql);var y=s.alternate;wl(s),null!==y&&wl(y)}ql=ql.nextEffect}}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);if(x=Wa,b=ga(),w=x.focusedElem,l=x.selectionRange,b!==w&&w&&w.ownerDocument&&ha(w.ownerDocument.documentElement,w)){null!==l&&va(w)&&(b=l.start,void 0===(x=l.end)&&(x=b),\"selectionStart\"in w?(w.selectionStart=b,w.selectionEnd=Math.min(x,w.value.length)):(x=(b=w.ownerDocument||document)&&b.defaultView||window).getSelection&&(x=x.getSelection(),s=w.textContent.length,y=Math.min(l.start,s),l=void 0===l.end?y:Math.min(l.end,s),!x.extend&&y>l&&(s=l,l=y,y=s),s=fa(w,y),o=fa(w,l),s&&o&&(1!==x.rangeCount||x.anchorNode!==s.node||x.anchorOffset!==s.offset||x.focusNode!==o.node||x.focusOffset!==o.offset)&&((b=b.createRange()).setStart(s.node,s.offset),x.removeAllRanges(),y>l?(x.addRange(b),x.extend(o.node,o.offset)):(b.setEnd(o.node,o.offset),x.addRange(b))))),b=[];for(x=w;x=x.parentNode;)1===x.nodeType&&b.push({element:x,left:x.scrollLeft,top:x.scrollTop});for(\"function\"==typeof w.focus&&w.focus(),w=0;w\u003Cb.length;w++)(x=b[w]).element.scrollLeft=x.left,x.element.scrollTop=x.top}qt=!!Fa,Wa=Fa=null,e.current=n,ql=a;do{try{for(w=e;null!==ql;){var k=ql.flags;if(36&k&&gl(w,ql.alternate,ql),128&k){b=void 0;var E=ql.ref;if(null!==E){var C=ql.stateNode;ql.tag,b=C,\"function\"==typeof E?E(b):E.current=b}}ql=ql.nextEffect}}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);ql=null,Or(),Pl=r}else e.current=n;if(Jl)Jl=!1,Yl=e,es=t;else for(ql=a;null!==ql;)t=ql.nextEffect,ql.nextEffect=null,8&ql.flags&&((k=ql).sibling=null,k.stateNode=null),ql=t;if(0===(a=e.pendingLanes)&&(Ql=null),1===a?e===os?rs++:(rs=0,os=e):rs=0,n=n.stateNode,Er&&\"function\"==typeof Er.onCommitFiberRoot)try{Er.onCommitFiberRoot(kr,n,void 0,64==(64&n.current.flags))}catch(e){}if(hs(e,Dr()),Kl)throw Kl=!1,e=Xl,Xl=null,e;return 0!=(8&Pl)||qr(),null}function As(){for(;null!==ql;){var e=ql.alternate;cs||null===ps||(0!=(8&ql.flags)?Ye(ql,ps)&&(cs=!0):13===ql.tag&&Ml(e,ql)&&Ye(ql,ps)&&(cs=!0));var t=ql.flags;0!=(256&t)&&hl(e,ql),0==(512&t)||Jl||(Jl=!0,Gr(97,(function(){return Bs(),null}))),ql=ql.nextEffect}}function Bs(){if(90!==es){var e=97\u003Ces?97:es;return es=90,$r(e,Rs)}return!1}function Hs(e,t){ts.push(t,e),Jl||(Jl=!0,Gr(97,(function(){return Bs(),null})))}function Ts(e,t){ns.push(t,e),Jl||(Jl=!0,Gr(97,(function(){return Bs(),null})))}function Rs(){if(null===Yl)return!1;var e=Yl;if(Yl=null,0!=(48&Pl))throw Error(i(331));var t=Pl;Pl|=32;var n=ns;ns=[];for(var a=0;a\u003Cn.length;a+=2){var r=n[a],o=n[a+1],l=r.destroy;if(r.destroy=void 0,\"function\"==typeof l)try{l()}catch(e){if(null===o)throw Error(i(330));js(o,e)}}for(n=ts,ts=[],a=0;a\u003Cn.length;a+=2){r=n[a],o=n[a+1];try{var s=r.create;r.destroy=s()}catch(e){if(null===o)throw Error(i(330));js(o,e)}}for(s=e.current.firstEffect;null!==s;)e=s.nextEffect,s.nextEffect=null,8&s.flags&&(s.sibling=null,s.stateNode=null),s=e;return Pl=t,qr(),!0}function Os(e,t,n){uo(e,t=dl(0,t=sl(n,t),1)),t=ds(),null!==(e=fs(e,1))&&(Wt(e,1,t),hs(e,t))}function js(e,t){if(3===e.tag)Os(e,e,t);else for(var n=e.return;null!==n;){if(3===n.tag){Os(n,e,t);break}if(1===n.tag){var a=n.stateNode;if(\"function\"==typeof n.type.getDerivedStateFromError||\"function\"==typeof a.componentDidCatch&&(null===Ql||!Ql.has(a))){var r=ul(n,e=sl(t,e),1);if(uo(n,r),r=ds(),null!==(n=fs(n,1)))Wt(n,1,r),hs(n,r);else if(\"function\"==typeof a.componentDidCatch&&(null===Ql||!Ql.has(a)))try{a.componentDidCatch(t,e)}catch(e){}break}}n=n.return}}function Vs(e,t,n){var a=e.pingCache;null!==a&&a.delete(t),t=ds(),e.pingedLanes|=e.suspendedLanes&n,zl===e&&(Bl&n)===n&&(4===Rl||3===Rl&&(62914560&Bl)===Bl&&500>Dr()-Il?ks(e,0):Wl|=n),hs(e,t)}function Fs(e,t){var n=e.stateNode;null!==n&&n.delete(t),0==(t=0)&&(0==(2&(t=e.mode))?t=1:0==(4&t)?t=99===Ir()?1:2:(0===ls&&(ls=jl),0===(t=Vt(62914560&~ls))&&(t=4194304))),n=ds(),null!==(e=fs(e,t))&&(Wt(e,t,n),hs(e,n))}function Ws(e,t,n,a){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=a,this.flags=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childLanes=this.lanes=0,this.alternate=null}function Ds(e,t,n,a){return new Ws(e,t,n,a)}function Is(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Us(e,t){var n=e.alternate;return null===n?((n=Ds(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function $s(e,t,n,a,r,o){var l=2;if(a=e,\"function\"==typeof e)Is(e)&&(l=1);else if(\"string\"==typeof e)l=5;else e:switch(e){case E:return Gs(n.children,r,o,t);case T:l=8,r|=16;break;case C:l=8,r|=1;break;case S:return(e=Ds(12,n,t,8|r)).elementType=S,e.type=S,e.lanes=o,e;case Z:return(e=Ds(13,n,t,r)).type=Z,e.elementType=Z,e.lanes=o,e;case P:return(e=Ds(19,n,t,r)).elementType=P,e.lanes=o,e;case R:return qs(n,r,o,t);case O:return(e=Ds(24,n,t,r)).elementType=O,e.lanes=o,e;default:if(\"object\"==typeof e&&null!==e)switch(e.$$typeof){case M:l=10;break e;case L:l=9;break e;case N:l=11;break e;case z:l=14;break e;case A:l=16,a=null;break e;case B:l=22;break e}throw Error(i(130,null==e?e:typeof e,\"\"))}return(t=Ds(l,n,t,r)).elementType=e,t.type=a,t.lanes=o,t}function Gs(e,t,n,a){return(e=Ds(7,e,a,t)).lanes=n,e}function qs(e,t,n,a){return(e=Ds(23,e,a,t)).elementType=R,e.lanes=n,e}function Ks(e,t,n){return(e=Ds(6,e,null,t)).lanes=n,e}function Xs(e,t,n){return(t=Ds(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Qs(e,t,n){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=0,this.eventTimes=Ft(0),this.expirationTimes=Ft(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Ft(0),this.mutableSourceEagerHydrationData=null}function Js(e,t,n,a){var r=t.current,o=ds(),l=us(r);e:if(n){t:{if(Ke(n=n._reactInternals)!==n||1!==n.tag)throw Error(i(170));var s=n;do{switch(s.tag){case 3:s=s.stateNode.context;break t;case 1:if(vr(s.type)){s=s.stateNode.__reactInternalMemoizedMergedChildContext;break t}}s=s.return}while(null!==s);throw Error(i(171))}if(1===n.tag){var p=n.type;if(vr(p)){n=br(n,p,s);break e}}n=s}else n=ur;return null===t.context?t.context=n:t.pendingContext=n,(t=co(o,l)).payload={element:e},null!==(a=void 0===a?null:a)&&(t.callback=a),uo(r,t),ms(r,l,o),l}function Ys(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function ep(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n\u003Ct?n:t}}function tp(e,t){ep(e,t),(e=e.alternate)&&ep(e,t)}function np(e,t,n){var a=null!=n&&null!=n.hydrationOptions&&n.hydrationOptions.mutableSources||null;if(n=new Qs(e,t,null!=n&&!0===n.hydrate),t=Ds(3,null,null,2===t?7:1===t?3:0),n.current=t,t.stateNode=n,so(t),e[er]=n.current,za(8===e.nodeType?e.parentNode:e),a)for(e=0;e\u003Ca.length;e++){var r=(t=a[e])._getVersion;r=r(t._source),null==n.mutableSourceEagerHydrationData?n.mutableSourceEagerHydrationData=[t,r]:n.mutableSourceEagerHydrationData.push(t,r)}this._internalRoot=n}function ap(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||\" react-mount-point-unstable \"!==e.nodeValue))}function rp(e,t,n,a,r){var o=n._reactRootContainer;if(o){var i=o._internalRoot;if(\"function\"==typeof r){var l=r;r=function(){var e=Ys(i);l.call(e)}}Js(t,i,e,r)}else{if(o=n._reactRootContainer=function(e,t){if(t||(t=!(!(t=e?9===e.nodeType?e.documentElement:e.firstChild:null)||1!==t.nodeType||!t.hasAttribute(\"data-reactroot\"))),!t)for(var n;n=e.lastChild;)e.removeChild(n);return new np(e,0,t?{hydrate:!0}:void 0)}(n,a),i=o._internalRoot,\"function\"==typeof r){var s=r;r=function(){var e=Ys(i);s.call(e)}}bs((function(){Js(t,i,e,r)}))}return Ys(i)}function op(e,t){var n=2\u003Carguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!ap(t))throw Error(i(200));return function(e,t,n){var a=3\u003Carguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:k,key:null==a?null:\"\"+a,children:e,containerInfo:t,implementation:n}}(e,t,null,n)}Gl=function(e,t,n){var a=t.lanes;if(null!==e)if(e.memoizedProps!==t.pendingProps||fr.current)Ri=!0;else{if(0==(n&a)){switch(Ri=!1,t.tag){case 3:Gi(t),qo();break;case 5:To(t);break;case 1:vr(t.type)&&xr(t);break;case 4:Bo(t,t.stateNode.containerInfo);break;case 10:a=t.memoizedProps.value;var r=t.type._context;dr(Jr,r._currentValue),r._currentValue=a;break;case 13:if(null!==t.memoizedState)return 0!=(n&t.child.childLanes)?Yi(e,t,n):(dr(Oo,1&Oo.current),null!==(t=rl(e,t,n))?t.sibling:null);dr(Oo,1&Oo.current);break;case 19:if(a=0!=(n&t.childLanes),0!=(64&e.flags)){if(a)return al(e,t,n);t.flags|=64}if(null!==(r=t.memoizedState)&&(r.rendering=null,r.tail=null,r.lastEffect=null),dr(Oo,Oo.current),a)break;return null;case 23:case 24:return t.lanes=0,Wi(e,t,n)}return rl(e,t,n)}Ri=0!=(16384&e.flags)}else Ri=!1;switch(t.lanes=0,t.tag){case 2:if(a=t.type,null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=gr(t,mr.current),oo(t,n),r=li(null,t,a,e,r,n),t.flags|=1,\"object\"==typeof r&&null!==r&&\"function\"==typeof r.render&&void 0===r.$$typeof){if(t.tag=1,t.memoizedState=null,t.updateQueue=null,vr(a)){var o=!0;xr(t)}else o=!1;t.memoizedState=null!==r.state&&void 0!==r.state?r.state:null,so(t);var l=a.getDerivedStateFromProps;\"function\"==typeof l&&vo(t,a,l,e),r.updater=_o,t.stateNode=r,r._reactInternals=t,yo(t,a,e,n),t=$i(null,t,a,!0,o,n)}else t.tag=0,Oi(null,t,r,n),t=t.child;return t;case 16:r=t.elementType;e:{switch(null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=(o=r._init)(r._payload),t.type=r,o=t.tag=function(e){if(\"function\"==typeof e)return Is(e)?1:0;if(null!=e){if((e=e.$$typeof)===N)return 11;if(e===z)return 14}return 2}(r),e=Qr(r,e),o){case 0:t=Ii(null,t,r,e,n);break e;case 1:t=Ui(null,t,r,e,n);break e;case 11:t=ji(null,t,r,e,n);break e;case 14:t=Vi(null,t,r,Qr(r.type,e),a,n);break e}throw Error(i(306,r,\"\"))}return t;case 0:return a=t.type,r=t.pendingProps,Ii(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 1:return a=t.type,r=t.pendingProps,Ui(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 3:if(Gi(t),a=t.updateQueue,null===e||null===a)throw Error(i(282));if(a=t.pendingProps,r=null!==(r=t.memoizedState)?r.element:null,po(e,t),fo(t,a,null,n),(a=t.memoizedState.element)===r)qo(),t=rl(e,t,n);else{if((o=(r=t.stateNode).hydrate)&&(Fo=qa(t.stateNode.containerInfo.firstChild),Vo=t,o=Wo=!0),o){if(null!=(e=r.mutableSourceEagerHydrationData))for(r=0;r\u003Ce.length;r+=2)(o=e[r])._workInProgressVersionPrimary=e[r+1],Ko.push(o);for(n=Lo(t,null,a,n),t.child=n;n;)n.flags=-3&n.flags|1024,n=n.sibling}else Oi(e,t,a,n),qo();t=t.child}return t;case 5:return To(t),null===e&&Uo(t),a=t.type,r=t.pendingProps,o=null!==e?e.memoizedProps:null,l=r.children,Ia(a,r)?l=null:null!==o&&Ia(a,o)&&(t.flags|=16),Di(e,t),Oi(e,t,l,n),t.child;case 6:return null===e&&Uo(t),null;case 13:return Yi(e,t,n);case 4:return Bo(t,t.stateNode.containerInfo),a=t.pendingProps,null===e?t.child=Mo(t,null,a,n):Oi(e,t,a,n),t.child;case 11:return a=t.type,r=t.pendingProps,ji(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 7:return Oi(e,t,t.pendingProps,n),t.child;case 8:case 12:return Oi(e,t,t.pendingProps.children,n),t.child;case 10:e:{a=t.type._context,r=t.pendingProps,l=t.memoizedProps,o=r.value;var s=t.type._context;if(dr(Jr,s._currentValue),s._currentValue=o,null!==l)if(s=l.value,0==(o=ca(s,o)?0:0|(\"function\"==typeof a._calculateChangedBits?a._calculateChangedBits(s,o):1073741823))){if(l.children===r.children&&!fr.current){t=rl(e,t,n);break e}}else for(null!==(s=t.child)&&(s.return=t);null!==s;){var p=s.dependencies;if(null!==p){l=s.child;for(var c=p.firstContext;null!==c;){if(c.context===a&&0!=(c.observedBits&o)){1===s.tag&&((c=co(-1,n&-n)).tag=2,uo(s,c)),s.lanes|=n,null!==(c=s.alternate)&&(c.lanes|=n),ro(s.return,n),p.lanes|=n;break}c=c.next}}else l=10===s.tag&&s.type===t.type?null:s.child;if(null!==l)l.return=s;else for(l=s;null!==l;){if(l===t){l=null;break}if(null!==(s=l.sibling)){s.return=l.return,l=s;break}l=l.return}s=l}Oi(e,t,r.children,n),t=t.child}return t;case 9:return r=t.type,a=(o=t.pendingProps).children,oo(t,n),a=a(r=io(r,o.unstable_observedBits)),t.flags|=1,Oi(e,t,a,n),t.child;case 14:return o=Qr(r=t.type,t.pendingProps),Vi(e,t,r,o=Qr(r.type,o),a,n);case 15:return Fi(e,t,t.type,t.pendingProps,a,n);case 17:return a=t.type,r=t.pendingProps,r=t.elementType===a?r:Qr(a,r),null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),t.tag=1,vr(a)?(e=!0,xr(t)):e=!1,oo(t,n),bo(t,a,r),yo(t,a,r,n),$i(null,t,a,!0,e,n);case 19:return al(e,t,n);case 23:case 24:return Wi(e,t,n)}throw Error(i(156,t.tag))},np.prototype.render=function(e){Js(e,this._internalRoot,null,null)},np.prototype.unmount=function(){var e=this._internalRoot,t=e.containerInfo;Js(null,e,null,(function(){t[er]=null}))},et=function(e){13===e.tag&&(ms(e,4,ds()),tp(e,4))},tt=function(e){13===e.tag&&(ms(e,67108864,ds()),tp(e,67108864))},nt=function(e){if(13===e.tag){var t=ds(),n=us(e);ms(e,n,t),tp(e,n)}},at=function(e,t){return t()},Se=function(e,t,n){switch(t){case\"input\":if(ne(e,n),t=n.name,\"radio\"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll(\"input[name=\"+JSON.stringify(\"\"+t)+'][type=\"radio\"]'),t=0;t\u003Cn.length;t++){var a=n[t];if(a!==e&&a.form===e.form){var r=or(a);if(!r)throw Error(i(90));Q(a),ne(a,r)}}}break;case\"textarea\":pe(e,n);break;case\"select\":null!=(t=n.value)&&ie(e,!!n.multiple,t,!1)}},ze=ws,Ae=function(e,t,n,a,r){var o=Pl;Pl|=4;try{return $r(98,e.bind(null,t,n,a,r))}finally{0===(Pl=o)&&($l(),qr())}},Be=function(){0==(49&Pl)&&(function(){if(null!==as){var e=as;as=null,e.forEach((function(e){e.expiredLanes|=24&e.pendingLanes,hs(e,Dr())}))}qr()}(),Bs())},He=function(e,t){var n=Pl;Pl|=2;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}};var ip={Events:[ar,rr,or,Ze,Pe,Bs,{current:!1}]},lp={findFiberByHostInstance:nr,bundleType:0,version:\"17.0.2\",rendererPackageName:\"react-dom\"},sp={bundleType:lp.bundleType,version:lp.version,rendererPackageName:lp.rendererPackageName,rendererConfig:lp.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:x.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=Je(e))?null:e.stateNode},findFiberByHostInstance:lp.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null};if(\"undefined\"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var pp=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!pp.isDisabled&&pp.supportsFiber)try{kr=pp.inject(sp),Er=pp}catch(he){}}t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ip,t.createPortal=op,t.findDOMNode=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternals;if(void 0===t){if(\"function\"==typeof e.render)throw Error(i(188));throw Error(i(268,Object.keys(e)))}return null===(e=Je(t))?null:e.stateNode},t.flushSync=function(e,t){var n=Pl;if(0!=(48&n))return e(t);Pl|=1;try{if(e)return $r(99,e.bind(null,t))}finally{Pl=n,qr()}},t.hydrate=function(e,t,n){if(!ap(t))throw Error(i(200));return rp(null,e,t,!0,n)},t.render=function(e,t,n){if(!ap(t))throw Error(i(200));return rp(null,e,t,!1,n)},t.unmountComponentAtNode=function(e){if(!ap(e))throw Error(i(40));return!!e._reactRootContainer&&(bs((function(){rp(null,null,e,!1,(function(){e._reactRootContainer=null,e[er]=null}))})),!0)},t.unstable_batchedUpdates=ws,t.unstable_createPortal=function(e,t){return op(e,t,2\u003Carguments.length&&void 0!==arguments[2]?arguments[2]:null)},t.unstable_renderSubtreeIntoContainer=function(e,t,n,a){if(!ap(n))throw Error(i(200));if(null==e||void 0===e._reactInternals)throw Error(i(38));return rp(e,t,n,!1,a)},t.version=\"17.0.2\"},3935:(e,t,n)=>{\"use strict\";!function e(){if(\"undefined\"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&\"function\"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),e.exports=n(4448)},2408:(e,t,n)=>{\"use strict\";var a=n(7418),r=60103,o=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var i=60109,l=60110,s=60112;t.Suspense=60113;var p=60115,c=60116;if(\"function\"==typeof Symbol&&Symbol.for){var d=Symbol.for;r=d(\"react.element\"),o=d(\"react.portal\"),t.Fragment=d(\"react.fragment\"),t.StrictMode=d(\"react.strict_mode\"),t.Profiler=d(\"react.profiler\"),i=d(\"react.provider\"),l=d(\"react.context\"),s=d(\"react.forward_ref\"),t.Suspense=d(\"react.suspense\"),p=d(\"react.memo\"),c=d(\"react.lazy\")}var u=\"function\"==typeof Symbol&&Symbol.iterator;function m(e){for(var t=\"https:\u002F\u002Freactjs.org\u002Fdocs\u002Ferror-decoder.html?invariant=\"+e,n=1;n\u003Carguments.length;n++)t+=\"&args[]=\"+encodeURIComponent(arguments[n]);return\"Minified React error #\"+e+\"; visit \"+t+\" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\"}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h={};function g(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||f}function v(){}function _(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||f}g.prototype.isReactComponent={},g.prototype.setState=function(e,t){if(\"object\"!=typeof e&&\"function\"!=typeof e&&null!=e)throw Error(m(85));this.updater.enqueueSetState(this,e,t,\"setState\")},g.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,\"forceUpdate\")},v.prototype=g.prototype;var w=_.prototype=new v;w.constructor=_,a(w,g.prototype),w.isPureReactComponent=!0;var b={current:null},x=Object.prototype.hasOwnProperty,y={key:!0,ref:!0,__self:!0,__source:!0};function k(e,t,n){var a,o={},i=null,l=null;if(null!=t)for(a in void 0!==t.ref&&(l=t.ref),void 0!==t.key&&(i=\"\"+t.key),t)x.call(t,a)&&!y.hasOwnProperty(a)&&(o[a]=t[a]);var s=arguments.length-2;if(1===s)o.children=n;else if(1\u003Cs){for(var p=Array(s),c=0;c\u003Cs;c++)p[c]=arguments[c+2];o.children=p}if(e&&e.defaultProps)for(a in s=e.defaultProps)void 0===o[a]&&(o[a]=s[a]);return{$$typeof:r,type:e,key:i,ref:l,props:o,_owner:b.current}}function E(e){return\"object\"==typeof e&&null!==e&&e.$$typeof===r}var C=\u002F\\\u002F+\u002Fg;function S(e,t){return\"object\"==typeof e&&null!==e&&null!=e.key?function(e){var t={\"=\":\"=0\",\":\":\"=2\"};return\"$\"+e.replace(\u002F[=:]\u002Fg,(function(e){return t[e]}))}(\"\"+e.key):t.toString(36)}function M(e,t,n,a,i){var l=typeof e;\"undefined\"!==l&&\"boolean\"!==l||(e=null);var s=!1;if(null===e)s=!0;else switch(l){case\"string\":case\"number\":s=!0;break;case\"object\":switch(e.$$typeof){case r:case o:s=!0}}if(s)return i=i(s=e),e=\"\"===a?\".\"+S(s,0):a,Array.isArray(i)?(n=\"\",null!=e&&(n=e.replace(C,\"$&\u002F\")+\"\u002F\"),M(i,t,n,\"\",(function(e){return e}))):null!=i&&(E(i)&&(i=function(e,t){return{$$typeof:r,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(i,n+(!i.key||s&&s.key===i.key?\"\":(\"\"+i.key).replace(C,\"$&\u002F\")+\"\u002F\")+e)),t.push(i)),1;if(s=0,a=\"\"===a?\".\":a+\":\",Array.isArray(e))for(var p=0;p\u003Ce.length;p++){var c=a+S(l=e[p],p);s+=M(l,t,n,c,i)}else if(c=function(e){return null===e||\"object\"!=typeof e?null:\"function\"==typeof(e=u&&e[u]||e[\"@@iterator\"])?e:null}(e),\"function\"==typeof c)for(e=c.call(e),p=0;!(l=e.next()).done;)s+=M(l=l.value,t,n,c=a+S(l,p++),i);else if(\"object\"===l)throw t=\"\"+e,Error(m(31,\"[object Object]\"===t?\"object with keys {\"+Object.keys(e).join(\", \")+\"}\":t));return s}function L(e,t,n){if(null==e)return e;var a=[],r=0;return M(e,a,\"\",\"\",(function(e){return t.call(n,e,r++)})),a}function N(e){if(-1===e._status){var t=e._result;t=t(),e._status=0,e._result=t,t.then((function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)}),(function(t){0===e._status&&(e._status=2,e._result=t)}))}if(1===e._status)return e._result;throw e._result}var Z={current:null};function P(){var e=Z.current;if(null===e)throw Error(m(321));return e}var z={ReactCurrentDispatcher:Z,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:b,IsSomeRendererActing:{current:!1},assign:a};t.Children={map:L,forEach:function(e,t,n){L(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return L(e,(function(){t++})),t},toArray:function(e){return L(e,(function(e){return e}))||[]},only:function(e){if(!E(e))throw Error(m(143));return e}},t.Component=g,t.PureComponent=_,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=z,t.cloneElement=function(e,t,n){if(null==e)throw Error(m(267,e));var o=a({},e.props),i=e.key,l=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(l=t.ref,s=b.current),void 0!==t.key&&(i=\"\"+t.key),e.type&&e.type.defaultProps)var p=e.type.defaultProps;for(c in t)x.call(t,c)&&!y.hasOwnProperty(c)&&(o[c]=void 0===t[c]&&void 0!==p?p[c]:t[c])}var c=arguments.length-2;if(1===c)o.children=n;else if(1\u003Cc){p=Array(c);for(var d=0;d\u003Cc;d++)p[d]=arguments[d+2];o.children=p}return{$$typeof:r,type:e.type,key:i,ref:l,props:o,_owner:s}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:l,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:i,_context:e},e.Consumer=e},t.createElement=k,t.createFactory=function(e){var t=k.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:s,render:e}},t.isValidElement=E,t.lazy=function(e){return{$$typeof:c,_payload:{_status:-1,_result:e},_init:N}},t.memo=function(e,t){return{$$typeof:p,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return P().useCallback(e,t)},t.useContext=function(e,t){return P().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return P().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return P().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return P().useLayoutEffect(e,t)},t.useMemo=function(e,t){return P().useMemo(e,t)},t.useReducer=function(e,t,n){return P().useReducer(e,t,n)},t.useRef=function(e){return P().useRef(e)},t.useState=function(e){return P().useState(e)},t.version=\"17.0.2\"},7294:(e,t,n)=>{\"use strict\";e.exports=n(2408)},53:(e,t)=>{\"use strict\";var n,a,r,o;if(\"object\"==typeof performance&&\"function\"==typeof performance.now){var i=performance;t.unstable_now=function(){return i.now()}}else{var l=Date,s=l.now();t.unstable_now=function(){return l.now()-s}}if(\"undefined\"==typeof window||\"function\"!=typeof MessageChannel){var p=null,c=null,d=function(){if(null!==p)try{var e=t.unstable_now();p(!0,e),p=null}catch(e){throw setTimeout(d,0),e}};n=function(e){null!==p?setTimeout(n,0,e):(p=e,setTimeout(d,0))},a=function(e,t){c=setTimeout(e,t)},r=function(){clearTimeout(c)},t.unstable_shouldYield=function(){return!1},o=t.unstable_forceFrameRate=function(){}}else{var u=window.setTimeout,m=window.clearTimeout;if(\"undefined\"!=typeof console){var f=window.cancelAnimationFrame;\"function\"!=typeof window.requestAnimationFrame&&console.error(\"This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https:\u002F\u002Freactjs.org\u002Flink\u002Freact-polyfills\"),\"function\"!=typeof f&&console.error(\"This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https:\u002F\u002Freactjs.org\u002Flink\u002Freact-polyfills\")}var h=!1,g=null,v=-1,_=5,w=0;t.unstable_shouldYield=function(){return t.unstable_now()>=w},o=function(){},t.unstable_forceFrameRate=function(e){0>e||125\u003Ce?console.error(\"forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported\"):_=0\u003Ce?Math.floor(1e3\u002Fe):5};var b=new MessageChannel,x=b.port2;b.port1.onmessage=function(){if(null!==g){var e=t.unstable_now();w=e+_;try{g(!0,e)?x.postMessage(null):(h=!1,g=null)}catch(e){throw x.postMessage(null),e}}else h=!1},n=function(e){g=e,h||(h=!0,x.postMessage(null))},a=function(e,n){v=u((function(){e(t.unstable_now())}),n)},r=function(){m(v),v=-1}}function y(e,t){var n=e.length;e.push(t);e:for(;;){var a=n-1>>>1,r=e[a];if(!(void 0!==r&&0\u003CC(r,t)))break e;e[a]=t,e[n]=r,n=a}}function k(e){return void 0===(e=e[0])?null:e}function E(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var a=0,r=e.length;a\u003Cr;){var o=2*(a+1)-1,i=e[o],l=o+1,s=e[l];if(void 0!==i&&0>C(i,n))void 0!==s&&0>C(s,i)?(e[a]=s,e[l]=n,a=l):(e[a]=i,e[o]=n,a=o);else{if(!(void 0!==s&&0>C(s,n)))break e;e[a]=s,e[l]=n,a=l}}}return t}return null}function C(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var S=[],M=[],L=1,N=null,Z=3,P=!1,z=!1,A=!1;function B(e){for(var t=k(M);null!==t;){if(null===t.callback)E(M);else{if(!(t.startTime\u003C=e))break;E(M),t.sortIndex=t.expirationTime,y(S,t)}t=k(M)}}function H(e){if(A=!1,B(e),!z)if(null!==k(S))z=!0,n(T);else{var t=k(M);null!==t&&a(H,t.startTime-e)}}function T(e,n){z=!1,A&&(A=!1,r()),P=!0;var o=Z;try{for(B(n),N=k(S);null!==N&&(!(N.expirationTime>n)||e&&!t.unstable_shouldYield());){var i=N.callback;if(\"function\"==typeof i){N.callback=null,Z=N.priorityLevel;var l=i(N.expirationTime\u003C=n);n=t.unstable_now(),\"function\"==typeof l?N.callback=l:N===k(S)&&E(S),B(n)}else E(S);N=k(S)}if(null!==N)var s=!0;else{var p=k(M);null!==p&&a(H,p.startTime-n),s=!1}return s}finally{N=null,Z=o,P=!1}}var R=o;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){z||P||(z=!0,n(T))},t.unstable_getCurrentPriorityLevel=function(){return Z},t.unstable_getFirstCallbackNode=function(){return k(S)},t.unstable_next=function(e){switch(Z){case 1:case 2:case 3:var t=3;break;default:t=Z}var n=Z;Z=t;try{return e()}finally{Z=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=R,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=Z;Z=e;try{return t()}finally{Z=n}},t.unstable_scheduleCallback=function(e,o,i){var l=t.unstable_now();switch(i=\"object\"==typeof i&&null!==i&&\"number\"==typeof(i=i.delay)&&0\u003Ci?l+i:l,e){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return e={id:L++,callback:o,priorityLevel:e,startTime:i,expirationTime:s=i+s,sortIndex:-1},i>l?(e.sortIndex=i,y(M,e),null===k(S)&&e===k(M)&&(A?r():A=!0,a(H,i-l))):(e.sortIndex=s,y(S,e),z||P||(z=!0,n(T))),e},t.unstable_wrapCallback=function(e){var t=Z;return function(){var n=Z;Z=t;try{return e.apply(this,arguments)}finally{Z=n}}}},3840:(e,t,n)=>{\"use strict\";e.exports=n(53)},8975:(e,t,n)=>{var a;!function(){\"use strict\";var r={not_string:\u002F[^s]\u002F,not_bool:\u002F[^t]\u002F,not_type:\u002F[^T]\u002F,not_primitive:\u002F[^v]\u002F,number:\u002F[diefg]\u002F,numeric_arg:\u002F[bcdiefguxX]\u002F,json:\u002F[j]\u002F,not_json:\u002F[^j]\u002F,text:\u002F^[^\\x25]+\u002F,modulo:\u002F^\\x25{2}\u002F,placeholder:\u002F^\\x25(?:([1-9]\\d*)\\$|\\(([^)]+)\\))?(\\+)?(0|'[^$])?(-)?(\\d+)?(?:\\.(\\d+))?([b-gijostTuvxX])\u002F,key:\u002F^([a-z_][a-z_\\d]*)\u002Fi,key_access:\u002F^\\.([a-z_][a-z_\\d]*)\u002Fi,index_access:\u002F^\\[(\\d+)\\]\u002F,sign:\u002F^[+-]\u002F};function o(e){return function(e,t){var n,a,i,l,s,p,c,d,u,m=1,f=e.length,h=\"\";for(a=0;a\u003Cf;a++)if(\"string\"==typeof e[a])h+=e[a];else if(\"object\"==typeof e[a]){if((l=e[a]).keys)for(n=t[m],i=0;i\u003Cl.keys.length;i++){if(null==n)throw new Error(o('[sprintf] Cannot access property \"%s\" of undefined value \"%s\"',l.keys[i],l.keys[i-1]));n=n[l.keys[i]]}else n=l.param_no?t[l.param_no]:t[m++];if(r.not_type.test(l.type)&&r.not_primitive.test(l.type)&&n instanceof Function&&(n=n()),r.numeric_arg.test(l.type)&&\"number\"!=typeof n&&isNaN(n))throw new TypeError(o(\"[sprintf] expecting number but found %T\",n));switch(r.number.test(l.type)&&(d=n>=0),l.type){case\"b\":n=parseInt(n,10).toString(2);break;case\"c\":n=String.fromCharCode(parseInt(n,10));break;case\"d\":case\"i\":n=parseInt(n,10);break;case\"j\":n=JSON.stringify(n,null,l.width?parseInt(l.width):0);break;case\"e\":n=l.precision?parseFloat(n).toExponential(l.precision):parseFloat(n).toExponential();break;case\"f\":n=l.precision?parseFloat(n).toFixed(l.precision):parseFloat(n);break;case\"g\":n=l.precision?String(Number(n.toPrecision(l.precision))):parseFloat(n);break;case\"o\":n=(parseInt(n,10)>>>0).toString(8);break;case\"s\":n=String(n),n=l.precision?n.substring(0,l.precision):n;break;case\"t\":n=String(!!n),n=l.precision?n.substring(0,l.precision):n;break;case\"T\":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=l.precision?n.substring(0,l.precision):n;break;case\"u\":n=parseInt(n,10)>>>0;break;case\"v\":n=n.valueOf(),n=l.precision?n.substring(0,l.precision):n;break;case\"x\":n=(parseInt(n,10)>>>0).toString(16);break;case\"X\":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}r.json.test(l.type)?h+=n:(!r.number.test(l.type)||d&&!l.sign?u=\"\":(u=d?\"+\":\"-\",n=n.toString().replace(r.sign,\"\")),p=l.pad_char?\"0\"===l.pad_char?\"0\":l.pad_char.charAt(1):\" \",c=l.width-(u+n).length,s=l.width&&c>0?p.repeat(c):\"\",h+=l.align?u+n+s:\"0\"===p?u+s+n:s+u+n)}return h}(function(e){if(l[e])return l[e];for(var t,n=e,a=[],o=0;n;){if(null!==(t=r.text.exec(n)))a.push(t[0]);else if(null!==(t=r.modulo.exec(n)))a.push(\"%\");else{if(null===(t=r.placeholder.exec(n)))throw new SyntaxError(\"[sprintf] unexpected placeholder\");if(t[2]){o|=1;var i=[],s=t[2],p=[];if(null===(p=r.key.exec(s)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");for(i.push(p[1]);\"\"!==(s=s.substring(p[0].length));)if(null!==(p=r.key_access.exec(s)))i.push(p[1]);else{if(null===(p=r.index_access.exec(s)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");i.push(p[1])}t[2]=i}else o|=2;if(3===o)throw new Error(\"[sprintf] mixing positional and named placeholders is not (yet) supported\");a.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}n=n.substring(t[0].length)}return l[e]=a}(e),arguments)}function i(e,t){return o.apply(null,[e].concat(t||[]))}var l=Object.create(null);\"undefined\"!=typeof window&&(window.sprintf=o,window.vsprintf=i,void 0===(a=function(){return{sprintf:o,vsprintf:i}}.call(t,n,t,e))||(e.exports=a))}()},6129:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6511),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},563:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(3038),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3493:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(725),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},9780:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(5735),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},8350:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(9455),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2156:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(283),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},977:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(4421),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},7376:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(2041),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},6680:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6657),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3479:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(2793),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},4602:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(4558),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3358:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6922),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2413:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(439),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},6509:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(9839),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},619:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1211),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2158:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1589),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},4201:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1729),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3379:e=>{\"use strict\";var t=[];function n(e){for(var n=-1,a=0;a\u003Ct.length;a++)if(t[a].identifier===e){n=a;break}return n}function a(e,a){for(var o={},i=[],l=0;l\u003Ce.length;l++){var s=e[l],p=a.base?s[0]+a.base:s[0],c=o[p]||0,d=\"\".concat(p,\" \").concat(c);o[p]=c+1;var u=n(d),m={css:s[1],media:s[2],sourceMap:s[3],supports:s[4],layer:s[5]};if(-1!==u)t[u].references++,t[u].updater(m);else{var f=r(m,a);a.byIndex=l,t.splice(l,0,{identifier:d,updater:f,references:1})}i.push(d)}return i}function r(e,t){var n=t.domAPI(t);return n.update(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap&&t.supports===e.supports&&t.layer===e.layer)return;n.update(e=t)}else n.remove()}}e.exports=function(e,r){var o=a(e=e||[],r=r||{});return function(e){e=e||[];for(var i=0;i\u003Co.length;i++){var l=n(o[i]);t[l].references--}for(var s=a(e,r),p=0;p\u003Co.length;p++){var c=n(o[p]);0===t[c].references&&(t[c].updater(),t.splice(c,1))}o=s}}},569:e=>{\"use strict\";var t={};e.exports=function(e,n){var a=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!a)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");a.appendChild(n)}},9216:e=>{\"use strict\";e.exports=function(e){var t=document.createElement(\"style\");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{\"use strict\";e.exports=function(e){var t=n.nc;t&&e.setAttribute(\"nonce\",t)}},7795:e=>{\"use strict\";e.exports=function(e){if(\"undefined\"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var a=\"\";n.supports&&(a+=\"@supports (\".concat(n.supports,\") {\")),n.media&&(a+=\"@media \".concat(n.media,\" {\"));var r=void 0!==n.layer;r&&(a+=\"@layer\".concat(n.layer.length>0?\" \".concat(n.layer):\"\",\" {\")),a+=n.css,r&&(a+=\"}\"),n.media&&(a+=\"}\"),n.supports&&(a+=\"}\");var o=n.sourceMap;o&&\"undefined\"!=typeof btoa&&(a+=\"\\n\u002F*# sourceMappingURL=data:application\u002Fjson;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o)))),\" *\u002F\")),t.styleTagTransform(a,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{\"use strict\";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},5022:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7680),r={contextDelimiter:\"\u0004\",onMissingKey:null};function o(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},r)this.options[n]=void 0!==t&&n in t?t[n]:r[n]}o.prototype.getPluralForm=function(e,t){var n,r,o,i=this.pluralForms[e];return i||(\"function\"!=typeof(o=(n=this.data[e][\"\"])[\"Plural-Forms\"]||n[\"plural-forms\"]||n.plural_forms)&&(r=function(e){var t,n,a;for(t=e.split(\";\"),n=0;n\u003Ct.length;n++)if(0===(a=t[n].trim()).indexOf(\"plural=\"))return a.substr(7)}(n[\"Plural-Forms\"]||n[\"plural-forms\"]||n.plural_forms),o=(0,a.Z)(r)),i=this.pluralForms[e]=o),i(t)},o.prototype.dcnpgettext=function(e,t,n,a,r){var o,i,l;return o=void 0===r?0:this.getPluralForm(e,r),i=n,t&&(i=t+this.options.contextDelimiter+n),(l=this.data[e][i])&&l[o]?l[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===o?n:a)}},4975:e=>{\"use strict\";e.exports=\"data:image\u002Fsvg+xml,%3Csvg width=%2742%27 height=%2742%27 viewBox=%270 0 42 42%27 fill=%27none%27 xmlns=%27http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg%27%3E%3Cpath d=%27M0 42V7C0 3.13401 3.13401 0 7 0H42L0 42Z%27 fill=%27%23FF285E%27\u002F%3E%3C\u002Fsvg%3E\"},7462:(e,t,n)=>{\"use strict\";function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t\u003Carguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},a.apply(this,arguments)}n.d(t,{Z:()=>a})},6290:(e,t,n)=>{\"use strict\";function a(e,t){var n,a,r=0;function o(){var o,i,l=n,s=arguments.length;e:for(;l;){if(l.args.length===arguments.length){for(i=0;i\u003Cs;i++)if(l.args[i]!==arguments[i]){l=l.next;continue e}return l!==n&&(l===a&&(a=l.prev),l.prev.next=l.next,l.next&&(l.next.prev=l.prev),l.next=n,l.prev=null,n.prev=l,n=l),l.val}l=l.next}for(o=new Array(s),i=0;i\u003Cs;i++)o[i]=arguments[i];return l={args:o,val:e.apply(null,o)},n?(n.prev=l,l.next=n):a=l,r===t.maxSize?(a=a.prev).next=null:r++,n=l,l.val}return t=t||{},o.clear=function(){n=null,a=null,r=0},o}n.d(t,{Z:()=>a})}},t={};function n(a){var r=t[a];if(void 0!==r)return r.exports;var o=t[a]={id:a,exports:{}};return e[a](o,o.exports,n),o.exports}n.m=e,n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var a in t)n.o(t,a)&&!n.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.b=document.baseURI||self.location.href,n.nc=void 0,(()=>{\"use strict\";var e=n(7294),t=n(3935),a=n(8351);if(document.querySelector(\".block-editor-page\")){const{subscribe:n}=wp.data,r=n((()=>{let n=document.querySelector(\".editor-header__toolbar\");if(n||(n=document.querySelector(\".edit-post-header__toolbar\")),n||(n=document.querySelector(\".edit-post-header-toolbar\")),!n)return;const o=document.createElement(\"div\");o.className=\"toolbar-insert-layout\",o.innerHTML='\u003Cbutton id=\"UltpConditionButton\" class=\"ultp-popup-button\" aria-label=\"Insert Layout\">\u003Cspan class=\"dashicons dashicons-admin-settings\">\u003C\u002Fspan>Condition\u003C\u002Fbutton>',[\"404\",\"front_page\"].includes(ultp_data.archive)||n.appendChild(o),setTimeout((function(){void 0!==document.getElementsByClassName(\"edit-post-fullscreen-mode-close\")[0]&&(document.getElementsByClassName(\"edit-post-fullscreen-mode-close\")[0].href=ultp_condition.builder_url)}),0);let i=1;function l(){if(i){const n=document.createElement(\"div\");n.id=\"ultp-modal-conditions\",n.className=\"ultp-builder-modal ultp-blocks-layouts\",document.body.appendChild(n),t.render((0,e.createElement)(a.Z,{has_ultp_condition:!0,notEditor:\"yes\"}),n),i=0,setTimeout((function(){i=1}),2e3)}}void 0!==document.getElementsByClassName(\"editor-post-publish-button__button editor-post-publish-panel__toggle\")[0]&&([\"404\",\"front_page\"].includes(ultp_data.archive)||l()),[\"404\",\"front_page\"].includes(ultp_data.archive)||document.getElementById(\"UltpConditionButton\")?.addEventListener(\"click\",(function(){l()})),r()}))}})()})();\n\\ No newline at end of file\n+(()=>{var e={1974:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(2141),r=n(192);function o(e){var t=(0,a.Z)(e);return function(e){return(0,r.Z)(t,e)}}},192:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a={\"!\":function(e){return!e},\"*\":function(e,t){return e*t},\"\u002F\":function(e,t){return e\u002Ft},\"%\":function(e,t){return e%t},\"+\":function(e,t){return e+t},\"-\":function(e,t){return e-t},\"\u003C\":function(e,t){return e\u003Ct},\"\u003C=\":function(e,t){return e\u003C=t},\">\":function(e,t){return e>t},\">=\":function(e,t){return e>=t},\"==\":function(e,t){return e===t},\"!=\":function(e,t){return e!==t},\"&&\":function(e,t){return e&&t},\"||\":function(e,t){return e||t},\"?:\":function(e,t,n){if(e)throw t;return n}};function r(e,t){var n,r,o,i,l,s,p=[];for(n=0;n\u003Ce.length;n++){if(l=e[n],i=a[l]){for(r=i.length,o=Array(r);r--;)o[r]=p.pop();try{s=i.apply(null,o)}catch(e){return e}}else s=t.hasOwnProperty(l)?t[l]:+l;p.push(s)}return p[0]}},7680:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(1974);function r(e){var t=(0,a.Z)(e);return function(e){return+t({n:e})}}},2141:(e,t,n)=>{\"use strict\";var a,r,o,i;function l(e){for(var t,n,l,s,p=[],c=[];t=e.match(i);){for(n=t[0],(l=e.substr(0,t.index).trim())&&p.push(l);s=c.pop();){if(o[n]){if(o[n][0]===s){n=o[n][1]||n;break}}else if(r.indexOf(s)>=0||a[s]\u003Ca[n]){c.push(s);break}p.push(s)}o[n]||c.push(n),e=e.substr(t.index+n.length)}return(e=e.trim())&&p.push(e),p.concat(c.reverse())}n.d(t,{Z:()=>l}),a={\"(\":9,\"!\":8,\"*\":7,\"\u002F\":7,\"%\":7,\"+\":6,\"-\":6,\"\u003C\":5,\"\u003C=\":5,\">\":5,\">=\":5,\"==\":4,\"!=\":4,\"&&\":3,\"||\":2,\"?\":1,\"?:\":1},r=[\"(\",\"?\"],o={\")\":[\"(\"],\":\":[\"?\",\"?:\"]},i=\u002F\u003C=|>=|==|!=|&&|\\|\\||\\?:|\\(|!|\\*|\\\u002F|%|\\+|-|\u003C|>|\\?|\\)|:\u002F},8247:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(4103),r=n(1755);const o=function(e,t){return function(n,o,i,l=10){const s=e[t];if(!(0,r.Z)(n))return;if(!(0,a.Z)(o))return;if(\"function\"!=typeof i)return void console.error(\"The hook callback must be a function.\");if(\"number\"!=typeof l)return void console.error(\"If specified, the hook priority must be a number.\");const p={callback:i,priority:l,namespace:o};if(s[n]){const e=s[n].handlers;let t;for(t=e.length;t>0&&!(l>=e[t-1].priority);t--);t===e.length?e[t]=p:e.splice(t,0,p),s.__current.forEach((e=>{e.name===n&&e.currentIndex>=t&&e.currentIndex++}))}else s[n]={handlers:[p],runs:0};\"hookAdded\"!==n&&e.doAction(\"hookAdded\",n,o,i,l)}}},9992:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e,t){return function(){var n;const a=e[t];return null!==(n=a.__current[a.__current.length-1]?.name)&&void 0!==n?n:null}}},3972:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(1755);const r=function(e,t){return function(n){const r=e[t];if((0,a.Z)(n))return r[n]&&r[n].runs?r[n].runs:0}}},1786:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e,t){return function(n){const a=e[t];return void 0===n?void 0!==a.__current[0]:!!a.__current[0]&&n===a.__current[0].name}}},8642:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e,t){return function(n,a){const r=e[t];return void 0!==a?n in r&&r[n].handlers.some((e=>e.namespace===a)):n in r}}},1019:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>d});var a=n(8247),r=n(9099),o=n(8642),i=n(6424),l=n(9992),s=n(1786),p=n(3972);class c{constructor(){this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=(0,a.Z)(this,\"actions\"),this.addFilter=(0,a.Z)(this,\"filters\"),this.removeAction=(0,r.Z)(this,\"actions\"),this.removeFilter=(0,r.Z)(this,\"filters\"),this.hasAction=(0,o.Z)(this,\"actions\"),this.hasFilter=(0,o.Z)(this,\"filters\"),this.removeAllActions=(0,r.Z)(this,\"actions\",!0),this.removeAllFilters=(0,r.Z)(this,\"filters\",!0),this.doAction=(0,i.Z)(this,\"actions\"),this.applyFilters=(0,i.Z)(this,\"filters\",!0),this.currentAction=(0,l.Z)(this,\"actions\"),this.currentFilter=(0,l.Z)(this,\"filters\"),this.doingAction=(0,s.Z)(this,\"actions\"),this.doingFilter=(0,s.Z)(this,\"filters\"),this.didAction=(0,p.Z)(this,\"actions\"),this.didFilter=(0,p.Z)(this,\"filters\")}}const d=function(){return new c}},9099:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(4103),r=n(1755);const o=function(e,t,n=!1){return function(o,i){const l=e[t];if(!(0,r.Z)(o))return;if(!n&&!(0,a.Z)(i))return;if(!l[o])return 0;let s=0;if(n)s=l[o].handlers.length,l[o]={runs:l[o].runs,handlers:[]};else{const e=l[o].handlers;for(let t=e.length-1;t>=0;t--)e[t].namespace===i&&(e.splice(t,1),s++,l.__current.forEach((e=>{e.name===o&&e.currentIndex>=t&&e.currentIndex--})))}return\"hookRemoved\"!==o&&e.doAction(\"hookRemoved\",o,i),s}}},6424:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e,t,n=!1){return function(a,...r){const o=e[t];o[a]||(o[a]={handlers:[],runs:0}),o[a].runs++;const i=o[a].handlers;if(!i||!i.length)return n?r[0]:void 0;const l={name:a,currentIndex:0};for(o.__current.push(l);l.currentIndex\u003Ci.length;){const e=i[l.currentIndex].callback.apply(null,r);n&&(r[0]=e),l.currentIndex++}return o.__current.pop(),n?r[0]:void 0}}},1957:(e,t,n)=>{\"use strict\";n.d(t,{JQ:()=>a});const a=(0,n(1019).Z)(),{addAction:r,addFilter:o,removeAction:i,removeFilter:l,hasAction:s,hasFilter:p,removeAllActions:c,removeAllFilters:d,doAction:u,applyFilters:m,currentAction:f,currentFilter:h,doingAction:g,doingFilter:v,didAction:_,didFilter:w,actions:b,filters:x}=a},1755:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e){return\"string\"!=typeof e||\"\"===e?(console.error(\"The hook name must be a non-empty string.\"),!1):\u002F^__\u002F.test(e)?(console.error(\"The hook name cannot begin with `__`.\"),!1):!!\u002F^[a-zA-Z][a-zA-Z0-9_.-]*$\u002F.test(e)||(console.error(\"The hook name can only contain numbers, letters, dashes, periods and underscores.\"),!1)}},4103:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e){return\"string\"!=typeof e||\"\"===e?(console.error(\"The namespace must be a non-empty string.\"),!1):!!\u002F^[a-zA-Z][a-zA-Z0-9_.\\-\\\u002F]*$\u002F.test(e)||(console.error(\"The namespace can only contain numbers, letters, dashes, periods, underscores and slashes.\"),!1)}},6016:(e,t,n)=>{\"use strict\";n.d(t,{o:()=>i});var a=n(5022);const r={plural_forms:e=>1===e?0:1},o=\u002F^i18n\\.(n?gettext|has_translation)(_|$)\u002F,i=(e,t,n)=>{const i=new a.Z({}),l=new Set,s=()=>{l.forEach((e=>e()))},p=(e,t=\"default\")=>{i.data[t]={...i.data[t],...e},i.data[t][\"\"]={...r,...i.data[t]?.[\"\"]},delete i.pluralForms[t]},c=(e,t)=>{p(e,t),s()},d=(e=\"default\",t,n,a,r)=>(i.data[e]||p(void 0,e),i.dcnpgettext(e,t,n,a,r)),u=(e=\"default\")=>e,_x=(e,t,a)=>{let r=d(a,t,e);return n?(r=n.applyFilters(\"i18n.gettext_with_context\",r,e,t,a),n.applyFilters(\"i18n.gettext_with_context_\"+u(a),r,e,t,a)):r};if(e&&c(e,t),n){const e=e=>{o.test(e)&&s()};n.addAction(\"hookAdded\",\"core\u002Fi18n\",e),n.addAction(\"hookRemoved\",\"core\u002Fi18n\",e)}return{getLocaleData:(e=\"default\")=>i.data[e],setLocaleData:c,addLocaleData:(e,t=\"default\")=>{i.data[t]={...i.data[t],...e,\"\":{...r,...i.data[t]?.[\"\"],...e?.[\"\"]}},delete i.pluralForms[t],s()},resetLocaleData:(e,t)=>{i.data={},i.pluralForms={},c(e,t)},subscribe:e=>(l.add(e),()=>l.delete(e)),__:(e,t)=>{let a=d(t,void 0,e);return n?(a=n.applyFilters(\"i18n.gettext\",a,e,t),n.applyFilters(\"i18n.gettext_\"+u(t),a,e,t)):a},_x,_n:(e,t,a,r)=>{let o=d(r,void 0,e,t,a);return n?(o=n.applyFilters(\"i18n.ngettext\",o,e,t,a,r),n.applyFilters(\"i18n.ngettext_\"+u(r),o,e,t,a,r)):o},_nx:(e,t,a,r,o)=>{let i=d(o,r,e,t,a);return n?(i=n.applyFilters(\"i18n.ngettext_with_context\",i,e,t,a,r,o),n.applyFilters(\"i18n.ngettext_with_context_\"+u(o),i,e,t,a,r,o)):i},isRTL:()=>\"rtl\"===_x(\"ltr\",\"text direction\"),hasTranslation:(e,t,a)=>{const r=t?t+\"\u0004\"+e:e;let o=!!i.data?.[null!=a?a:\"default\"]?.[r];return n&&(o=n.applyFilters(\"i18n.has_translation\",o,e,t,a),o=n.applyFilters(\"i18n.has_translation_\"+u(a),o,e,t,a)),o}}}},7836:(e,t,n)=>{\"use strict\";n.d(t,{__:()=>__});var a=n(6016),r=n(1957);const o=(0,a.o)(void 0,void 0,r.JQ);o.getLocaleData.bind(o),o.setLocaleData.bind(o),o.resetLocaleData.bind(o),o.subscribe.bind(o);const __=o.__.bind(o);o._x.bind(o),o._n.bind(o),o._nx.bind(o),o.isRTL.bind(o),o.hasTranslation.bind(o)},2304:(e,t,n)=>{\"use strict\";n.d(t,{__:()=>a.__}),n(5917),n(6016);var a=n(7836)},5917:(e,t,n)=>{\"use strict\";var a=n(6290);n(8975),(0,a.Z)(console.error)},4528:(e,t,n)=>{\"use strict\";n.d(t,{c:()=>r});var a=n(7294);const r={add_plus_shopping_cart_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5.862 3.76A1.75 1.75 0 0 0 4.13 2.25H2a.75.75 0 0 0 0 1.5h2.129a.25.25 0 0 1 .247.216l1.762 12.773c.059.427.27.8.572 1.069a2.5 2.5 0 1 0 4.33.442h5.17a2.5 2.5 0 1 0 2.29-1.5H7.871a.25.25 0 0 1-.247-.216l-.183-1.32 12.36-1.068a1.75 1.75 0 0 0 1.573-1.433l1.152-6.403a1.75 1.75 0 0 0-1.722-2.06H5.93l-.068-.49ZM7.75 19.25a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm9.75 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm-4.505-7.75v-1.245H11.75a.75.75 0 0 1 0-1.5h1.245V7.5a.75.75 0 0 1 1.5 0v1.255h1.255a.75.75 0 0 1 0 1.5h-1.255V11.5a.75.75 0 0 1-1.5 0Z\",clipRule:\"evenodd\"})),android_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M20 10.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Zm-16 0a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75ZM8.05 1.4a.75.75 0 0 0-.15 1.05l1.153 1.537A6.249 6.249 0 0 0 5.75 9.5v.5h12.5v-.5a6.249 6.249 0 0 0-3.303-5.513L16.1 2.45a.75.75 0 1 0-1.2-.9l-1.41 1.879a6.266 6.266 0 0 0-2.98 0L9.1 1.55a.75.75 0 0 0-1.05-.15ZM9.74 8a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 0 1.5h-.01A.75.75 0 0 1 9.74 8Zm3.75-.75a.75.75 0 0 0 0 1.5h.01a.75.75 0 0 0 0-1.5h-.01Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M5.75 11.5V17a2.75 2.75 0 0 0 2.75 2.75h.25V22a.75.75 0 0 0 1.5 0v-2.25h4V22a.75.75 0 0 0 1.5 0v-2.261A2.75 2.75 0 0 0 18.25 17v-5.5H5.75Z\"})),angry_emoji_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM6.25 9.5A.75.75 0 0 1 7 8.75c.549 0 1.303.068 1.982.285.632.202 1.458.619 1.704 1.493.043.152.064.31.064.472 0 .527-.197 1.1-.77 1.322-.493.192-.974-.001-1.25-.237-.277-.238-.62-.793-.262-1.39.044-.074.096-.14.153-.2a2.804 2.804 0 0 0-.095-.031C8.04 10.309 7.45 10.25 7 10.25a.75.75 0 0 1-.75-.75Zm8.768-.465c.678-.217 1.433-.285 1.982-.285a.75.75 0 0 1 0 1.5c-.451 0-1.041.059-1.526.214-.033.01-.065.021-.095.032.057.059.109.125.153.2.359.596.015 1.151-.262 1.389-.276.236-.758.429-1.25.237-.573-.223-.77-.795-.77-1.322 0-.162.021-.32.064-.472.246-.874 1.072-1.291 1.704-1.493Zm-6.347 8.3C9.262 16.153 10.58 15.5 12 15.5c1.42 0 2.738.653 3.33 1.835a.75.75 0 1 0 1.34-.67C15.763 14.847 13.83 14 12 14s-3.762.847-4.67 2.665a.75.75 0 0 0 1.34.67Z\",clipRule:\"evenodd\"})),apple_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M20.054 8.58c-.123.096-2.287 1.337-2.287 4.095 0 3.191 2.754 4.32 2.836 4.348-.012.069-.437 1.546-1.452 3.051-.904 1.325-1.849 2.647-3.286 2.647s-1.806-.85-3.465-.85c-1.617 0-2.192.878-3.506.878-1.315 0-2.232-1.226-3.286-2.73-1.222-1.768-2.209-4.514-2.209-7.12 0-2.07.655-3.658 1.636-4.735 1-1.097 2.337-1.662 3.664-1.662 1.397 0 2.562.933 3.439.933.834 0 2.136-.989 3.725-.989.602 0 2.767.056 4.19 2.133Zm-4.945-3.904a5.04 5.04 0 0 0 .84-1.467 4.462 4.462 0 0 0 .282-1.528c0-.152-.013-.307-.04-.432-1.07.04-2.342.725-3.109 1.63-.602.697-1.164 1.797-1.164 2.913 0 .168.027.336.04.39.068.013.178.028.287.028.96 0 2.167-.654 2.864-1.534Z\"})),arrow_down_bottom_downward_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1 6.25a1 1 0 1 0-2 0v6.586l-1.793-1.793a1 1 0 0 0-1.414 1.414l3.5 3.5a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0-1.414-1.414L13 14.086V7.5Z\",clipRule:\"evenodd\"})),arrow_down_bottom_downward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11 3.5a1 1 0 1 1 2 0v14.586l6.793-6.793a1 1 0 1 1 1.414 1.414l-8.5 8.5a1 1 0 0 1-1.414 0l-8.5-8.5a1 1 0 0 1 1.338-1.482l.076.068L11 18.086V3.5Z\"})),arrow_down_bottom_left_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M17.293 5.293a1 1 0 1 1 1.414 1.414L8.414 17H18a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1V6a1 1 0 0 1 2 0v9.586L17.293 5.293Z\"})),arrow_down_bottom_right_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M5.293 5.293a1 1 0 0 1 1.414 0L17 15.586V6a1 1 0 1 1 2 0v12a1 1 0 0 1-1 1H6a1 1 0 1 1 0-2h9.586L5.293 6.707a1 1 0 0 1 0-1.414Z\"})),arrow_down_dropdown_maximize_chevron_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M18 8.25a.75.75 0 0 1 .53 1.28l-6 6a.75.75 0 0 1-1.06 0l-6-6A.75.75 0 0 1 6 8.25h12Z\"})),arrow_left_backward_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm-.293 7.957a1 1 0 0 0-1.414-1.414l-3.5 3.5a1 1 0 0 0 0 1.414l3.5 3.5a1 1 0 0 0 1.414-1.414L9.914 13H16.5a1 1 0 1 0 0-2H9.914l1.793-1.793Z\",clipRule:\"evenodd\"})),arrow_left_backward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.293 2.793a1 1 0 1 1 1.414 1.414L5.914 11H20.5a1 1 0 1 1 0 2H5.914l6.793 6.793.068.076a1 1 0 0 1-1.406 1.406l-.076-.068-8.5-8.5a1 1 0 0 1 0-1.414l8.5-8.5Z\"})),arrow_left_previous_backward_chevron_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M14.47 5.47a.75.75 0 0 1 1.28.53v12a.75.75 0 0 1-1.28.53l-6-6a.75.75 0 0 1 0-1.06l6-6Z\"})),arrow_move_down_left_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M6.293 7.293A1 1 0 0 1 8 8v4h10a3 3 0 0 0 3-3V6a1 1 0 1 1 2 0v3a5 5 0 0 1-5 5H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5Z\"})),arrow_move_down_right_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.617 7.076a1 1 0 0 1 1.09.217l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 18v-4H6a5 5 0 0 1-5-5V6a1 1 0 0 1 2 0v3a3 3 0 0 0 3 3h10V8a1 1 0 0 1 .617-.924Z\"})),arrow_move_up_left_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 18v-3a3 3 0 0 0-3-3H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5A1 1 0 0 1 8 6v4h10a5 5 0 0 1 5 5v3a1 1 0 1 1-2 0Z\"})),arrow_move_up_right_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M1 18v-3a5 5 0 0 1 5-5h10V6a1 1 0 0 1 1.707-.707l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 16v-4H6a3 3 0 0 0-3 3v3a1 1 0 1 1-2 0Z\"})),arrow_right_forward_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1.707 6.543a1 1 0 1 0-1.414 1.414L14.086 11H7.5a1 1 0 1 0 0 2h6.586l-1.793 1.793a1 1 0 0 0 1.414 1.414l3.5-3.5a1 1 0 0 0 0-1.414l-3.5-3.5Z\",clipRule:\"evenodd\"})),arrow_right_forward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.293 2.793a1 1 0 0 1 1.414 0l8.5 8.5a1 1 0 0 1 0 1.414l-8.5 8.5a1 1 0 1 1-1.414-1.414L18.086 13H3.5a1 1 0 1 1 0-2h14.586l-6.793-6.793-.068-.076a1 1 0 0 1 .068-1.338Z\"})),arrow_right_next_forward_chevron_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M8.713 5.307a.75.75 0 0 1 .817.163l6 6a.75.75 0 0 1 0 1.06l-6 6A.75.75 0 0 1 8.25 18V6a.75.75 0 0 1 .463-.693Z\"})),arrow_up_dropdown_minimize_chevron_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.527 8.418a.75.75 0 0 1 1.004.052l6 6a.75.75 0 0 1-.53 1.28H6a.75.75 0 0 1-.531-1.28l6-6 .057-.052Z\"})),arrow_up_top_left_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M5 18V6a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H8.414l10.293 10.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L7 8.414V18a1 1 0 1 1-2 0Z\"})),arrow_up_top_right_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M19 18a1 1 0 1 1-2 0V8.414L6.707 18.707a1 1 0 1 1-1.414-1.414L15.586 7H6a1 1 0 0 1 0-2h12a1 1 0 0 1 1 1v12Z\"})),arrow_up_top_upward_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.207 9.043-3.5-3.5a1 1 0 0 0-1.414 0l-3.5 3.5a1 1 0 1 0 1.414 1.414L11 9.914V16.5a1 1 0 1 0 2 0V9.914l1.793 1.793a1 1 0 0 0 1.414-1.414Z\",clipRule:\"evenodd\"})),arrow_up_top_upward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11 20.5V5.914l-6.793 6.793a1 1 0 1 1-1.414-1.414l8.5-8.5.076-.068a1 1 0 0 1 1.338.068l8.5 8.5.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L13 5.914V20.5a1 1 0 1 1-2 0Z\"})),at_a_mail_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 7c1.126 0 2.164.372 3 1a1 1 0 1 1 2 0v7a1 1 0 0 0 1 1 3 3 0 0 0 3-3v-1a9 9 0 1 0-9 9c1.64 0 3.176-.438 4.499-1.203a1 1 0 0 1 1.002 1.73A10.955 10.955 0 0 1 12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11v1a5 5 0 0 1-5 5 3.002 3.002 0 0 1-2.865-2.106A5 5 0 1 1 12 7Zm-3 5a3 3 0 1 0 6 0 3 3 0 0 0-6 0Z\"})),author_user_human_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm3.5 13.533c0 .672-.545 1.217-1.217 1.217H4.967a1.217 1.217 0 0 1-1.217-1.217 7.283 7.283 0 0 1 7.283-7.283h1.934a7.283 7.283 0 0 1 7.283 7.283Z\"})),author_user_human_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M7.5 8a4.5 4.5 0 0 0 2.43 3.996A8.754 8.754 0 0 0 3.25 20.5c0 .414.336.75.75.75h16a.75.75 0 0 0 .75-.75 8.754 8.754 0 0 0-6.68-8.504A4.5 4.5 0 1 0 7.5 8Z\"})),author_user_human_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm4 14a.75.75 0 0 1-.75.75H4a.75.75 0 0 1-.75-.75v-3A4.75 4.75 0 0 1 8 13.25h8A4.75 4.75 0 0 1 20.75 18v3Z\"})),author_user_human_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0ZM12 12.75c3.518 0 6.62 1.696 8.337 4.088.411.573.6 1.197.568 1.816a2.84 2.84 0 0 1-.645 1.626c-.723.902-1.951 1.47-3.26 1.47H7c-1.308 0-2.537-.568-3.26-1.47a2.838 2.838 0 0 1-.644-1.626c-.032-.62.156-1.243.568-1.816C5.38 14.446 8.483 12.75 12 12.75Z\"})),book_reading_time_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M14.5 1.25a6.25 6.25 0 0 1 4.25 10.83V16a.75.75 0 0 1-.75.75H7a2.25 2.25 0 0 0 0 4.5h11a.75.75 0 0 1 0 1.5H7A3.75 3.75 0 0 1 3.25 19V7A3.75 3.75 0 0 1 7 3.25h2.92c1.141-1.23 2.77-2 4.58-2ZM7 4.75A2.25 2.25 0 0 0 4.75 7v9A3.733 3.733 0 0 1 7 15.25h10.25v-2.137A6.25 6.25 0 0 1 8.887 4.75H7Zm7.5-.5a.75.75 0 0 0-.75.75v3a.75.75 0 0 0 .415.67l2 1a.75.75 0 0 0 .67-1.34l-1.585-.794V5a.75.75 0 0 0-.75-.75Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M16 19.75a.75.75 0 0 0 0-1.5H7a.75.75 0 0 0 0 1.5h9Z\"})),book_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm6.75 17.25v-1.75h-3.5v1.75a.75.75 0 0 1-1.5 0v-3.092c0-.74.22-1.464.63-2.08l1.219-1.828a1.684 1.684 0 0 1 2.802 0l1.22 1.828c.41.616.629 1.34.629 2.08V18.5a.75.75 0 0 1-1.5 0Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11.847 12.332a.184.184 0 0 1 .306 0l1.22 1.828c.216.326.344.701.371 1.09h-3.488a2.25 2.25 0 0 1 .372-1.09l1.219-1.828Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z\"})),calendar_date_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M8.01 12.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Z\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M2.25 9v10.5A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5V9Zm18 .75H3.75v9.75c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V9.75Z\",clipRule:\"evenodd\"})),calendar_date_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M15.76 1.376a.751.751 0 0 1 1.48.247l-.104.626H21a.751.751 0 0 1 .749.75h.002v16A2.75 2.75 0 0 1 19 21.75H8a2.75 2.75 0 0 1-2.736-2.468L5.251 19v-.75H3.314a1.75 1.75 0 0 1-1.688-2.216L5.278 2.8l.043-.117A.75.75 0 0 1 6 2.25h3.614l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873Zm2.368 14.855a2.751 2.751 0 0 1-2.65 2.018H6.75V19l.006.128A1.25 1.25 0 0 0 8 20.251h11c.69 0 1.25-.56 1.25-1.25V8.538l-2.123 7.693Zm-5.152-8.812a.75.75 0 0 0-.81-.09l-2 1a.75.75 0 0 0 .67 1.341l.5-.25-.909 3.33h-.926a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.518l1.241-4.553a.75.75 0 0 0-.248-.778Z\",clipRule:\"evenodd\"})),calendar_date_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M17 2.75V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2Zm-13.25 7h16.5v9.75c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25V9.75Z\"})),calendar_date_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M17.5 2a1 1 0 1 0-2 0v.75H13V2a1 1 0 1 0-2 0v.75H8.5V2a1 1 0 0 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-1.5V2Zm-1.49 7a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 11 7 10.552 7 10s.457-1 1.01-1Zm1 4.5a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm3-1a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm5 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 18 7 17.552 7 17s.457-1 1.01-1Z\",clipRule:\"evenodd\"})),caret_up_top_triangle_angle_arrow_upward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19 17.75c1.442 0 2.265-1.646 1.4-2.8l-7-9.333a1.75 1.75 0 0 0-2.8 0l-7 9.333c-.865 1.154-.042 2.8 1.4 2.8h14Z\",clipRule:\"evenodd\"})),category_book_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75v-8H15v-3h5.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm3.5 13.5a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Zm.75 3.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z\"})),category_file_documents_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M21 2.25a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.22.53l-1.28 1.28V18a.75.75 0 0 1-.75.75h-2.25V21a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75V5c0-.027.001-.053.004-.08A2.748 2.748 0 0 1 5 2.25h16ZM5 3.75a1.25 1.25 0 1 0 0 2.5h11.5a.75.75 0 0 1 .75.75v10.25h1.5V11c0-.199.08-.39.22-.53l1.28-1.28V3.75H5Zm5.25 10.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Zm-.75 2.25a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Z\",clipRule:\"evenodd\"})),category_file_documents_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M22.75 19A1.75 1.75 0 0 1 21 20.75H4A2.75 2.75 0 0 1 1.25 18V6A2.75 2.75 0 0 1 4 3.25h11.172c.73 0 1.429.29 1.944.806l2.195 2.194H21c.966 0 1.75.784 1.75 1.75v11Zm-20-1c0 .69.56 1.25 1.25 1.25h.25V8c0-.966.784-1.75 1.75-1.75h11.19l-1.134-1.134a1.25 1.25 0 0 0-.884-.366H4c-.69 0-1.25.56-1.25 1.25v12Z\"})),category_file_documents_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19 3.25c.966 0 1.75.784 1.75 1.75v1.25H21c.966 0 1.75.784 1.75 1.75v11A1.75 1.75 0 0 1 21 20.75H6A1.75 1.75 0 0 1 4.25 19v-.25H3A1.75 1.75 0 0 1 1.25 17V8c0-.966.784-1.75 1.75-1.75h8.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513H19Zm-3.586 1.5a.25.25 0 0 0-.177.073l-2.414 2.414a1.75 1.75 0 0 1-1.237.513H3a.25.25 0 0 0-.25.25v9c0 .138.112.25.25.25h1.25V11c0-.966.784-1.75 1.75-1.75h7.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513h1.836V5a.25.25 0 0 0-.25-.25h-3.586Z\",clipRule:\"evenodd\"})),category_file_documents_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M8.586 3.25c.464 0 .91.185 1.237.513L11.81 5.75H18a2.75 2.75 0 0 1 2.75 2.75v1.75H22a.75.75 0 0 1 .686 1.055l-4 9a.75.75 0 0 1-.686.445H2a.75.75 0 0 1-.749-.75L1.25 5c0-.966.784-1.75 1.75-1.75h5.586ZM3 4.75a.25.25 0 0 0-.25.25v11.465l2.564-5.77.052-.096A.75.75 0 0 1 6 10.25h13.25V8.5c0-.69-.56-1.25-1.25-1.25H8a.75.75 0 0 1 0-1.5h1.69l-.927-.927a.25.25 0 0 0-.177-.073H3Z\",clipRule:\"evenodd\"})),clock_reading_time_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25 1.25 6.063 1.25 12 6.063 22.75 12 22.75ZM11 6a1 1 0 1 1 2 0v5.382l3.447 1.723.09.051a1 1 0 0 1-.89 1.78l-.094-.041-4-2A1 1 0 0 1 11 12V6Z\",clipRule:\"evenodd\"})),clock_reading_time_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11 2.5V1.296A10.753 10.753 0 0 0 1.296 11H2.5a1 1 0 1 1 0 2H1.296A10.753 10.753 0 0 0 11 22.704V21.5a1 1 0 1 1 2 0v1.204A10.753 10.753 0 0 0 22.704 13H21.5a1 1 0 1 1 0-2h1.204A10.753 10.753 0 0 0 13 1.296V2.5a1 1 0 1 1-2 0Zm5.707 4.793a1 1 0 0 0-1.414 0L12 10.586l-1.793-1.793-.076-.068a1 1 0 0 0-1.338 1.482L10.586 12l-.793.793a1 1 0 1 0 1.414 1.414l.793-.793.793.793.076.068a1 1 0 0 0 1.406-1.406l-.068-.076-.793-.793 3.293-3.293a1 1 0 0 0 0-1.414Z\",clipRule:\"evenodd\"})),clock_reading_time_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M15.5 1.25a7.25 7.25 0 0 1 7.25 7.25 7.222 7.222 0 0 1-2.001 4.997L20.75 16A6.75 6.75 0 0 1 14 22.75H2a.75.75 0 0 1-.75-.75v-7A6.75 6.75 0 0 1 8 8.25h.257a7.248 7.248 0 0 1 7.243-7Zm0 1.5a5.75 5.75 0 1 0 0 11.5 5.75 5.75 0 0 0 0-11.5ZM14 18.5a1 1 0 0 0-1-1H6a1 1 0 1 0 0 2h7a1 1 0 0 0 1-1Zm-5-5a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2h3Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M14.5 5.111a1 1 0 1 1 2 0v3.3l1.485.826.087.054a1 1 0 0 1-.966 1.739l-.091-.045-2-1.111A1 1 0 0 1 14.5 9V5.11Z\"})),confused_emoji_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 9a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm-5.95 8.51c.63-.68 2.871-2.237 6.317-1.617a.75.75 0 1 0 .266-1.476c-4.02-.723-6.758 1.075-7.683 2.073a.75.75 0 1 0 1.1 1.02Z\",clipRule:\"evenodd\"})),correct_save_check_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.737 8.426a1 1 0 0 0-1.474-1.352l-4.794 5.23-1.762-1.761a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.444-.031l5.5-6Z\",clipRule:\"evenodd\"})),correct_save_check_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M18.731 5.36a1 1 0 0 1 1.537 1.28l-10 12a1.001 1.001 0 0 1-1.475.067l-5-5a1 1 0 1 1 1.414-1.414l4.225 4.225 9.3-11.159Z\"})),cross_close_x_minimize_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.707 7.293a1 1 0 0 0-1.414 1.414L10.586 12l-3.293 3.293a1 1 0 1 0 1.414 1.414L12 13.414l3.293 3.293a1 1 0 0 0 1.414-1.414L13.414 12l3.293-3.293a1 1 0 0 0-1.414-1.414L12 10.586 8.707 7.293Z\",clipRule:\"evenodd\"})),cross_x_close_minimize_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M17.293 5.293a1 1 0 1 1 1.414 1.414L13.414 12l5.293 5.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L12 13.414l-5.293 5.293a1 1 0 1 1-1.414-1.414L10.586 12 5.293 6.707a1 1 0 1 1 1.414-1.414L12 10.586l5.293-5.293Z\"})),desktop_monitor_computer_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11 17.75H4A2.75 2.75 0 0 1 1.25 15V5A2.75 2.75 0 0 1 4 2.25h16A2.75 2.75 0 0 1 22.75 5v10A2.75 2.75 0 0 1 20 17.75h-7V20h3a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h3v-2.25Zm1.01-5.25a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Z\",clipRule:\"evenodd\"})),dot_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Z\",clipRule:\"evenodd\"})),download_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M2 19v-4a1 1 0 1 1 2 0v4c0 .548.452 1 1 1h14a1 1 0 0 0 1-1v-4a1 1 0 1 1 2 0v4a3 3 0 0 1-3 3H5c-1.652 0-3-1.348-3-3Z\"}),(0,a.createElement)(\"path\",{d:\"M12 1.5a1 1 0 0 0-1 1V8H7a1 1 0 0 0-.707 1.707l5 5a1 1 0 0 0 1.414 0l5-5A1 1 0 0 0 17 8h-4V2.5a1 1 0 0 0-1-1Z\"})),download_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11.47 21.53a.75.75 0 0 0 1.06 0l2.5-2.5a.75.75 0 0 0-.53-1.28h-1.75V13a.75.75 0 0 0-1.5 0v4.75H9.5a.75.75 0 0 0-.53 1.28l2.5 2.5Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z\",clipRule:\"evenodd\"})),facebook_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h6.412v-7.076H9.5V11.84h1.912v-1.22C11.412 7.462 12.84 6 15.94 6c.587 0 1.601.115 2.016.23V8.8a11.904 11.904 0 0 0-1.071-.035c-1.52 0-2.108.575-2.108 2.073v1.002h3.029l-.52 2.834h-2.51v7.076H19A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Z\"})),google_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"m21.882 10.42-.103-.438h-9.485v4.036h5.667c-.588 2.81-3.318 4.289-5.549 4.289-1.623 0-3.333-.686-4.465-1.79a6.412 6.412 0 0 1-1.902-4.524c0-1.7.76-3.402 1.865-4.52 1.106-1.12 2.776-1.745 4.437-1.745 1.902 0 3.264 1.015 3.774 1.478l2.853-2.853c-.837-.74-3.136-2.603-6.72-2.603-2.764 0-5.414 1.065-7.352 3.007C2.99 6.669 2 9.434 2 12c0 2.566.937 5.193 2.79 7.12 1.98 2.056 4.784 3.13 7.671 3.13 2.627 0 5.117-1.035 6.892-2.913C21.098 17.488 22 14.93 22 12.249c0-1.129-.113-1.8-.118-1.829Z\"})),growth_increase_up_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 6a1 1 0 0 1 1 1v6a1 1 0 0 1-1.706.707L18 11.414l-4.793 4.793a1 1 0 0 1-1.414 0L8.5 12.914l-4.993 4.993a1 1 0 0 1-1.414-1.414l5.7-5.7.073-.066a1 1 0 0 1 1.34.066l3.294 3.293L16.587 10l-2.293-2.293A1 1 0 0 1 15 6h6Z\"})),hamicon_4_sloid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 3h18v3H3zm0 7.5h18v3H3v-3ZM3 18h18v3H3v-3Z\"})),hamicon_5_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M4 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1ZM4 18a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1Zm6.5-13a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM17 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Z\"})),hamicon_6_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0-7a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0 14a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z\"})),happy_emoji_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 0 1-2 0V8a1 1 0 0 1 1-1Zm-8 5.575a.675.675 0 0 0-.675.675 5.175 5.175 0 1 0 10.35 0 .675.675 0 0 0-.675-.675h-9Z\",clipRule:\"evenodd\"})),heart_love_wishlist_favourite_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M20.433 5.288a5.797 5.797 0 0 0-8.198 0L12 5.523l-.235-.235a5.797 5.797 0 0 0-8.198 0 6.428 6.428 0 0 0 0 9.09l7.52 7.52a1.292 1.292 0 0 0 1.826 0l7.519-7.52a6.428 6.428 0 0 0 0-9.09Zm-4.169 1.285a1 1 0 1 0 0 2c.299 0 .595.114.822.341.323.323.46.76.41 1.183a1 1 0 0 0 1.986.234A3.43 3.43 0 0 0 18.5 7.5a3.156 3.156 0 0 0-2.236-.927Z\",clipRule:\"evenodd\"})),hemicon_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z\"})),hemicon_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z\"})),hemicon_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h7.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z\"})),hidden_hide_invisible_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19.87 3.07a.75.75 0 0 1 1.06 1.061l-16.799 16.8a.75.75 0 0 1-1.06-1.06l1.857-1.859c-1.397-1.145-2.487-2.454-3.25-3.516a20.19 20.19 0 0 1-1.255-1.985 9.52 9.52 0 0 1-.067-.127l-.025-.049a.758.758 0 0 1 0-.673l.015-.03.016-.03.016-.03.007-.014a18.243 18.243 0 0 1 .72-1.217A20.435 20.435 0 0 1 3.33 7.486c1.938-2.067 4.873-4.237 8.672-4.238 2.269 0 4.231.778 5.852 1.84L19.87 3.07ZM8.874 14.067A3.73 3.73 0 0 1 8.25 12 3.75 3.75 0 0 1 12 8.25a3.73 3.73 0 0 1 2.066.624l-5.192 5.192Zm11.657-6.405c.205.008.397.1.533.253a20.672 20.672 0 0 1 1.933 2.583 17.693 17.693 0 0 1 .661 1.138l.01.019a.77.77 0 0 1 .004.68l-.016.03-.032.06-.007.014a18.22 18.22 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.224 2.855c-1.938 2.067-4.872 4.237-8.672 4.237a9.97 9.97 0 0 1-3.243-.545.752.752 0 0 1-.277-1.25l11.5-11.082.057-.05a.753.753 0 0 1 .493-.16Z\",clipRule:\"evenodd\"})),home_house_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21.75 19A2.75 2.75 0 0 1 19 21.75h-3.5A1.75 1.75 0 0 1 13.75 20v-5a.25.25 0 0 0-.25-.25h-3a.25.25 0 0 0-.25.25v5a1.75 1.75 0 0 1-1.75 1.75H5A2.75 2.75 0 0 1 2.25 19v-8.1c0-.786.336-1.534.923-2.056l7-6.223a2.75 2.75 0 0 1 3.654 0l7 6.223a2.75 2.75 0 0 1 .923 2.056V19Z\"})),hourglass_timer_time_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M20 1.25a.75.75 0 0 1 0 1.5h-1.25v4.18c0 .92-.46 1.778-1.225 2.288L13.352 12l4.173 2.782a2.75 2.75 0 0 1 1.225 2.288v4.18H20a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1 0-1.5h1.25v-4.18c0-.92.46-1.778 1.225-2.288L10.648 12 6.475 9.218A2.75 2.75 0 0 1 5.25 6.93V2.75H4a.75.75 0 0 1 0-1.5h16ZM13.75 16.5a.75.75 0 0 0-.75-.75h-2a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 .75-.75Zm.75 2.25a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1 0-1.5h5Z\",clipRule:\"evenodd\"})),instagram_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M9 12a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm12.5 5.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM12 7a5 5 0 1 0 0 10 5 5 0 0 0 0-10Z\",clipRule:\"evenodd\"})),laptop_computer_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M2.75 15.25V6A2.75 2.75 0 0 1 5.5 3.25h13A2.75 2.75 0 0 1 21.25 6v9.25H2.75ZM13.5 6a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3ZM1.25 18v-1.25h21.5V18A2.75 2.75 0 0 1 20 20.75H4A2.75 2.75 0 0 1 1.25 18Z\",clipRule:\"evenodd\"})),left_align_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18ZM11 20a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h8Zm10-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18ZM11 8a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h8Z\"})),left_triangle_angle_arrow_backward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M17.75 19c0 1.442-1.646 2.265-2.8 1.4l-9.333-7a1.75 1.75 0 0 1 0-2.8l9.333-7c1.154-.865 2.8-.042 2.8 1.4v14Z\"})),linkedin_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm11.15 16.792h2.893v-5.945c0-2.515-1.425-3.731-3.417-3.731-1.992 0-2.83 1.552-2.83 1.552V9.652h-2.79v9.389h2.79v-4.929c0-1.32.607-2.106 1.77-2.106 1.07 0 1.584.755 1.584 2.106v4.929ZM4.96 6.69c0 .957.77 1.732 1.72 1.732s1.719-.775 1.719-1.732-.77-1.733-1.72-1.733S4.96 5.733 4.96 6.69Zm3.188 12.35H5.24V9.654h2.908v9.389Z\",clipRule:\"evenodd\"})),link_chains_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M6.264 9.281a1 1 0 0 1 1.415 1.415L5.165 13.21a3.977 3.977 0 1 0 5.625 5.625l2.514-2.514a1 1 0 0 1 1.415 1.414l-2.515 2.514a5.977 5.977 0 1 1-8.453-8.453L6.264 9.28Zm5.532-5.53a5.977 5.977 0 1 1 8.453 8.453l-2.514 2.515a1 1 0 0 1-1.414-1.415l2.514-2.514a3.977 3.977 0 1 0-5.625-5.625l-2.514 2.514a1.001 1.001 0 0 1-1.415-1.414l2.515-2.514Z\"}),(0,a.createElement)(\"path\",{d:\"M13.793 8.793a1 1 0 1 1 1.414 1.414l-5 5a1 1 0 0 1-1.414-1.414l5-5Z\"})),location_gps_map_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.625 22.65 12 22l.375.65a.75.75 0 0 1-.75 0Z\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11.625 22.65 12 22c.375.65.376.649.376.649l.002-.001.006-.004.02-.012.034-.02.04-.024a19.765 19.765 0 0 0 1.212-.814 22.44 22.44 0 0 0 2.847-2.456c2.058-2.11 4.213-5.239 4.213-9.113 0-4.928-3.9-8.955-8.75-8.955s-8.75 4.027-8.75 8.955c0 3.874 2.155 7.002 4.213 9.113a22.436 22.436 0 0 0 3.788 3.101 12.961 12.961 0 0 0 .344.213l.021.012.006.004.003.001ZM12 6.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Z\",clipRule:\"evenodd\"})),long_arrow_up_top_increase_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11 21V10H6a1 1 0 0 1-.707-1.707l6-6 .076-.068a1 1 0 0 1 1.338.068l6 6A1 1 0 0 1 18 10h-5v11a1 1 0 1 1-2 0Z\"})),mail_email_messege_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M4 3.25A2.75 2.75 0 0 0 1.25 6v12A2.75 2.75 0 0 0 4 20.75h16A2.75 2.75 0 0 0 22.75 18V6A2.75 2.75 0 0 0 20 3.25H4ZM6.6 7.2a1 1 0 1 0-1.2 1.6l4.8 3.6a3 3 0 0 0 3.6 0l4.8-3.6a1 1 0 0 0-1.2-1.6l-4.8 3.6a1 1 0 0 1-1.2 0L6.6 7.2Z\",clipRule:\"evenodd\"})),media_document_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M2.25 19V5A2.75 2.75 0 0 1 5 2.25h10.172c.73 0 1.429.29 1.944.806l3.828 3.828a2.75 2.75 0 0 1 .806 1.944V19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19ZM15 15.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2-7a1 1 0 0 0-1-1H8a1 1 0 0 0 0 2h4a1 1 0 0 0 1-1Zm4 3.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h8a1 1 0 0 0 1-1Z\"})),messege_comment_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M22.75 16A2.75 2.75 0 0 1 20 18.75H7.264l-4.795 3.836A.75.75 0 0 1 1.25 22V7A2.75 2.75 0 0 1 4 4.25h16A2.75 2.75 0 0 1 22.75 7v9ZM14 9.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z\",clipRule:\"evenodd\"})),messege_comment_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9ZM14 8.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z\",clipRule:\"evenodd\"})),messege_comment_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M4 3.25A2.75 2.75 0 0 0 1.25 6v9A2.75 2.75 0 0 0 4 17.75h3.75V21a.75.75 0 0 0 1.219.586l4.794-3.836H20A2.75 2.75 0 0 0 22.75 15V6A2.75 2.75 0 0 0 20 3.25H4ZM9 10a1 1 0 0 0-2 0v1a1 1 0 1 0 2 0v-1Zm3-1a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm5 1a1 1 0 1 0-2 0v1a1 1 0 1 0 2 0v-1Z\",clipRule:\"evenodd\"})),messege_comment_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9Z\"})),messege_comment_5_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M21.75 12A9.75 9.75 0 0 1 12 21.75H3a.75.75 0 0 1-.75-.75v-9c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z\",clipRule:\"evenodd\"})),messege_comment_6_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M17 3.25A5.75 5.75 0 0 1 22.75 9v7a.75.75 0 0 1-.75.75h-5.31a4.75 4.75 0 0 1-4.69 4H2a.75.75 0 0 1-.75-.75v-6a4.751 4.751 0 0 1 4-4.691V9A5.75 5.75 0 0 1 11 3.25h6ZM5.25 10.838A3.25 3.25 0 0 0 2.75 14v5.25H12a3.25 3.25 0 0 0 3.162-2.5H11A5.75 5.75 0 0 1 5.25 11v-.162ZM11 10.75a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2h-6Zm0-3.5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z\",clipRule:\"evenodd\"})),messege_comment_7_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M22.75 11.5c0 5.218-4.932 9.25-10.75 9.25-.921 0-1.817-.101-2.672-.29l-2.956 1.691A.75.75 0 0 1 5.25 21.5v-2.8c-2.411-1.675-4-4.258-4-7.2 0-5.218 4.932-9.25 10.75-9.25s10.75 4.032 10.75 9.25ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2 2.5a1 1 0 1 1 0 2h-4a1 1 0 1 1 0-2h4Z\",clipRule:\"evenodd\"})),messege_comment_8_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M14.5 3.25c4.542 0 8.25 3.613 8.25 8.102 0 2.519-1.172 4.764-3 6.247V20a.75.75 0 0 1-1.163.626l-2.13-1.404a8.41 8.41 0 0 1-1.957.231 8.323 8.323 0 0 1-4.61-1.382 7.867 7.867 0 0 1-3.075-.06l-1.82 1.127A.75.75 0 0 1 3.85 18.5v-1.87c-1.576-1.222-2.6-3.07-2.6-5.157C1.25 7.7 4.557 4.75 8.5 4.75c.319 0 .634.02.942.057a.755.755 0 0 1 .15.033A8.318 8.318 0 0 1 14.5 3.25ZM8.08 6.265c-3.03.195-5.33 2.505-5.33 5.208 0 1.68.878 3.196 2.276 4.162a.75.75 0 0 1 .324.617v.903l.943-.583a.75.75 0 0 1 .587-.086c.45.12.925.188 1.416.203A7.98 7.98 0 0 1 8.08 6.265Z\",clipRule:\"evenodd\"})),messenger_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M1.25 11.677C1.25 5.687 5.945 1.25 12 1.25s10.75 4.44 10.75 10.43c0 5.99-4.695 10.427-10.75 10.427a11.75 11.75 0 0 1-3.112-.414.864.864 0 0 0-.575.043l-2.134.94a.86.86 0 0 1-1.207-.76l-.059-1.913a.85.85 0 0 0-.288-.613c-2.09-1.87-3.375-4.58-3.375-7.713Zm7.452-1.959-3.157 5.01c-.304.48.287 1.02.739.677l3.391-2.575a.644.644 0 0 1 .777-.003l2.513 1.884a1.612 1.612 0 0 0 2.332-.43l3.161-5.006c.301-.481-.29-1.024-.742-.68l-3.391 2.574a.644.644 0 0 1-.777.003l-2.513-1.884a1.613 1.613 0 0 0-2.333.43Z\",clipRule:\"evenodd\"})),microsoft_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.25 2.25v9h-9V5A2.75 2.75 0 0 1 5 2.25h6.25Zm1.5 0v9h9V5A2.75 2.75 0 0 0 19 2.25h-6.25Zm9 10.5h-9v9H19A2.75 2.75 0 0 0 21.75 19v-6.25Zm-10.5 9v-9h-9V19A2.75 2.75 0 0 0 5 21.75h6.25Z\"})),middle_align_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm-5 18a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h8Zm5-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm-5-6a1 1 0 1 1 0 2H8a1 1 0 0 1 0-2h8Z\"})),mobile_smartphone_phone_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M17 22.75A2.75 2.75 0 0 0 19.75 20V4A2.75 2.75 0 0 0 17 1.25H7A2.75 2.75 0 0 0 4.25 4v16A2.75 2.75 0 0 0 7 22.75h10ZM13.5 4a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3Z\",clipRule:\"evenodd\"})),pause_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M2.25 5A2.75 2.75 0 0 1 5 2.25h2.5A2.75 2.75 0 0 1 10.25 5v14a2.75 2.75 0 0 1-2.75 2.75H5A2.75 2.75 0 0 1 2.25 19V5Zm11.5 0a2.75 2.75 0 0 1 2.75-2.75H19A2.75 2.75 0 0 1 21.75 5v14A2.75 2.75 0 0 1 19 21.75h-2.5A2.75 2.75 0 0 1 13.75 19V5Z\",clipRule:\"evenodd\"})),pinterest_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 4.554 2.833 8.448 6.832 10.014-.094-.85-.178-2.159.038-3.087.195-.84 1.26-5.344 1.26-5.344s-.321-.644-.321-1.596c0-1.495.866-2.61 1.945-2.61.917 0 1.36.688 1.36 1.514 0 .922-.587 2.301-.89 3.579-.254 1.07.536 1.943 1.592 1.943 1.91 0 3.379-2.015 3.379-4.923 0-2.574-1.85-4.374-4.49-4.374-3.06 0-4.855 2.295-4.855 4.665 0 .925.356 1.915.8 2.454.088.106.101.2.075.308-.082.34-.263 1.07-.298 1.22-.047.196-.156.238-.36.143-1.343-.625-2.182-2.588-2.182-4.165 0-3.39 2.464-6.505 7.103-6.505 3.729 0 6.627 2.657 6.627 6.209 0 3.705-2.336 6.686-5.578 6.686-1.09 0-2.114-.566-2.464-1.234 0 0-.54 2.053-.67 2.555-.243.934-.898 2.105-1.336 2.819A10.76 10.76 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Z\"})),play_media_video_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 22.75c5.936 0 10.75-4.813 10.75-10.75S17.936 1.25 12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75ZM10.416 7.376A.75.75 0 0 0 9.25 8v8a.75.75 0 0 0 1.166.624l6-4a.75.75 0 0 0 0-1.248l-6-4Z\",clipRule:\"evenodd\"})),price_tag_label_category_sale_discount_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M21.444 13.616a2.75 2.75 0 0 0 .806-1.944V3.5a1.75 1.75 0 0 0-1.75-1.75h-8.172c-.73 0-1.429.29-1.945.806l-8 8a2.75 2.75 0 0 0 0 3.888l7.172 7.172a2.75 2.75 0 0 0 3.889 0l8-8ZM8.707 12.293a1 1 0 1 0-1.414 1.414l3 3 .076.068a1 1 0 0 0 1.406-1.406l-.068-.076-3-3ZM18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\",clipRule:\"evenodd\"})),price_tag_offer_sale_coupon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M18.796 6.963c-.367 1.048-1.172 1.993-2.432 2.693a.75.75 0 1 1-.728-1.311c.99-.55 1.517-1.229 1.744-1.878a2.583 2.583 0 0 0-.1-1.941c-.55-1.208-1.999-2.11-3.853-1.618-2.791.74-6.15 1.333-9.695-.024a.75.75 0 1 1 .536-1.401c3.09 1.183 6.062.695 8.774-.025 2.566-.68 4.75.577 5.603 2.445.425.933.517 2.017.151 3.06Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19.74 7.294c-.46 1.313-1.45 2.436-2.89 3.236a1.75 1.75 0 1 1-1.7-3.06c.81-.45 1.152-.95 1.286-1.333a1.59 1.59 0 0 0-.066-1.197 1.835 1.835 0 0 0-.101-.19h-4.44c-.73 0-1.43.29-1.945.805l-6.5 6.5a2.75 2.75 0 0 0 0 3.89l6.171 6.171a2.75 2.75 0 0 0 3.89 0l6.5-6.5a2.75 2.75 0 0 0 .805-1.944V6.5c0-.598-.3-1.127-.759-1.442.083.73.01 1.49-.252 2.236Zm-8.71 5.176a.75.75 0 0 0-1.06 1.06l2 2a.75.75 0 0 0 1.06-1.06l-2-2Zm-2.5 1.5a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06-1.06l-3-3Z\",clipRule:\"evenodd\"})),reddit_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M13.875 4.75h2.354a2.751 2.751 0 1 0 0-1.5h-2.354A2.75 2.75 0 0 0 11.125 6v2.028c-1.76.115-3.39.571-4.771 1.281a2.875 2.875 0 1 0-3.964 4.109A5.777 5.777 0 0 0 2 15.5C2 19.642 6.477 23 12 23s10-3.358 10-7.5c0-.722-.136-1.421-.39-2.082a2.875 2.875 0 1 0-3.963-4.109C16.2 8.566 14.48 8.1 12.624 8.014V6c0-.69.56-1.25 1.25-1.25ZM9 14.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 2.97a.75.75 0 0 0-1.06 1.06c.954.955 2.57 1.345 4.03 1.345 1.46 0 3.075-.39 4.03-1.345a.75.75 0 0 0-1.06-1.06c-.546.545-1.68.905-2.97.905-1.29 0-2.424-.36-2.97-.905ZM16.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\",clipRule:\"evenodd\"})),refresh_reset_cycle_loop_infinity_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 21v-5a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H5.756A7.977 7.977 0 0 0 12 20a8 8 0 0 0 8-8 1 1 0 1 1 2 0c0 5.523-4.477 10-10 10a9.967 9.967 0 0 1-7-2.863V21a1 1 0 1 1-2 0Zm-1-9C2 6.477 6.477 2 12 2a9.966 9.966 0 0 1 7 2.86V3a1 1 0 1 1 2 0v5a1 1 0 0 1-1 1h-5a1 1 0 1 1 0-2h3.245A8 8 0 0 0 4 12a1 1 0 1 1-2 0Z\"})),restriction_no_stop_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM6.383 19.03A9 9 0 0 0 19.03 6.383L6.383 19.03ZM12 3a9 9 0 0 0-7.031 14.616L17.616 4.97A8.96 8.96 0 0 0 12 3Z\",clipRule:\"evenodd\"})),right_align_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm0 18a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Zm0-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm0-6a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Z\"})),right_triangle_angle_play_arrow_forward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M6.25 5c0-1.442 1.646-2.265 2.8-1.4l9.334 7c.933.7.933 2.1 0 2.8l-9.334 7c-1.154.865-2.8.042-2.8-1.4V5Z\"})),search_magnify_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M16.618 18.032a9 9 0 1 1 1.414-1.414l3.675 3.675a1 1 0 0 1-1.414 1.414l-3.675-3.675ZM4 11a7 7 0 1 1 12.042 4.856 1.006 1.006 0 0 0-.186.186A7 7 0 0 1 4 11Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M10 6.5a1 1 0 0 1 1-1 5.5 5.5 0 0 1 5.5 5.5 1 1 0 1 1-2 0A3.5 3.5 0 0 0 11 7.5a1 1 0 0 1-1-1Z\",clipRule:\"evenodd\"})),settings_tool_function_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M15.183 2.612a1.75 1.75 0 0 0-1.706-1.362h-2.953a1.75 1.75 0 0 0-1.706 1.362l-.355 1.562a1.25 1.25 0 0 1-1.587.918L5.25 4.59a1.75 1.75 0 0 0-2.021.782L1.772 7.837a1.75 1.75 0 0 0 .338 2.193l1.16 1.04a1.25 1.25 0 0 1 0 1.862L2.11 13.97a1.75 1.75 0 0 0-.337 2.193l1.455 2.464a1.751 1.751 0 0 0 2.021.783l1.628-.5a1.25 1.25 0 0 1 1.586.917l.355 1.56a1.75 1.75 0 0 0 1.707 1.363h2.952a1.75 1.75 0 0 0 1.706-1.362l.355-1.56a1.25 1.25 0 0 1 1.586-.919l1.628.501a1.75 1.75 0 0 0 2.02-.783l1.457-2.464a1.75 1.75 0 0 0-.34-2.193l-1.157-1.038a1.25 1.25 0 0 1 0-1.863l1.159-1.039a1.75 1.75 0 0 0 .338-2.193l-1.456-2.464a1.75 1.75 0 0 0-2.02-.782l-1.629.5a1.25 1.25 0 0 1-1.586-.917l-.355-1.562ZM15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z\",clipRule:\"evenodd\"})),share_social_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"m9.075 9.42 5.865-2.933a3.45 3.45 0 1 1 1.005 1.734l-5.976 2.988a3.915 3.915 0 0 1 0 1.583l5.976 2.987a3.45 3.45 0 1 1-1.005 1.734L9.074 14.58a3.9 3.9 0 1 1 0-5.16Z\",clipRule:\"evenodd\"})),shopping_cart_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M9.75 19.25a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm9.75 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm1.5 0a2.5 2.5 0 1 1-4.79-1h-5.17a2.5 2.5 0 1 1-4.33-.442 1.745 1.745 0 0 1-.572-1.069L4.376 3.966a.25.25 0 0 0-.247-.216H2a.75.75 0 0 1 0-1.5h2.129a1.75 1.75 0 0 1 1.733 1.51l.068.49h14.874a1.75 1.75 0 0 1 1.722 2.06l-1.152 6.403a1.75 1.75 0 0 1-1.572 1.434l-12.36 1.067.182 1.32a.25.25 0 0 0 .247.216H18.5a2.5 2.5 0 0 1 2.5 2.5Z\"})),skype_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M7.5 1.25a6.25 6.25 0 0 0-5.197 9.723 9.75 9.75 0 0 0 10.724 10.724 6.25 6.25 0 0 0 8.67-8.67A9.75 9.75 0 0 0 10.973 2.303 6.224 6.224 0 0 0 7.5 1.25Zm4.5 6C9.8 7.25 8.25 8.4 8.25 10c0 1.015.647 1.627 1.337 1.991.644.34 1.468.546 2.178.723l.053.014c.778.194 1.429.361 1.894.607.435.23.538.43.538.665 0 .4-.45 1.25-2.25 1.25S9.75 14.4 9.75 14a.75.75 0 0 0-1.5 0c0 1.6 1.55 2.75 3.75 2.75s3.75-1.15 3.75-2.75c0-1.015-.647-1.627-1.337-1.991-.644-.34-1.468-.546-2.178-.723l-.053-.014c-.778-.194-1.429-.361-1.894-.607-.435-.23-.538-.43-.538-.665 0-.4.45-1.25 2.25-1.25s2.25.85 2.25 1.25a.75.75 0 0 0 1.5 0c0-1.6-1.55-2.75-3.75-2.75Z\",clipRule:\"evenodd\"})),smile_emoji_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7.5a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm-7.556 6.275a.75.75 0 1 0-1.43.45 5.752 5.752 0 0 0 10.973 0 .75.75 0 1 0-1.431-.45 4.252 4.252 0 0 1-8.112 0Z\",clipRule:\"evenodd\"})),social_community_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.75a3.384 3.384 0 0 1 3.238 2.408C18.858 5.46 21.4 8.895 21.4 13c0 .506-.039 1.002-.113 1.486a3.388 3.388 0 0 1 1.463 2.791 3.386 3.386 0 0 1-4.785 3.085A9.3 9.3 0 0 1 12 22.5a9.302 9.302 0 0 1-5.965-2.138 3.386 3.386 0 0 1-4.785-3.085c0-1.156.579-2.179 1.463-2.79A9.77 9.77 0 0 1 2.6 13c0-4.105 2.543-7.54 6.162-8.841A3.384 3.384 0 0 1 12 1.75ZM19.4 13c0-2.998-1.707-5.533-4.22-6.704A3.383 3.383 0 0 1 12 8.527a3.383 3.383 0 0 1-3.18-2.231C6.307 7.467 4.6 10.002 4.6 13c0 .301.017.598.05.889a3.385 3.385 0 0 1 3.363 3.388c0 .63-.172 1.221-.471 1.727A7.322 7.322 0 0 0 12 20.5a7.321 7.321 0 0 0 4.458-1.495 3.384 3.384 0 0 1-.47-1.728 3.385 3.385 0 0 1 3.361-3.388c.034-.291.05-.588.05-.889Z\",clipRule:\"evenodd\"})),square_rounded_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21.75 19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19V5A2.75 2.75 0 0 1 5 2.25h14A2.75 2.75 0 0 1 21.75 5v14Z\"})),star_rating_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M10.3 2.793c.67-1.443 2.73-1.443 3.4 0l2.136 4.602a.294.294 0 0 0 .232.166l5.068.596c1.578.186 2.232 2.136 1.05 3.222l-3.748 3.444a.28.28 0 0 0-.087.261l.995 4.975c.315 1.574-1.369 2.76-2.75 1.99l-4.45-2.474a.3.3 0 0 0-.291 0l-4.45 2.475c-1.382.768-3.065-.417-2.75-1.991l.995-4.975a.28.28 0 0 0-.087-.26l-3.748-3.445c-1.182-1.086-.529-3.036 1.05-3.222l5.067-.596a.293.293 0 0 0 .232-.166L10.3 2.793Z\"})),stopwatch_reading_time_timer_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M15 1.5a1 1 0 0 0-1-1h-4a1 1 0 1 0 0 2h1v.8c-4.915.502-8.75 4.653-8.75 9.7 0 5.385 4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75c0-5.047-3.835-9.198-8.75-9.7v-.8h1a1 1 0 0 0 1-1Zm-4 6a1 1 0 1 1 2 0v4.985l3.081 2.202.08.063a1 1 0 0 1-1.156 1.62l-.086-.056-3.5-2.5A1 1 0 0 1 11 13V7.5Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M18.293 3.293a1 1 0 0 1 1.414 0l2 2 .068.076a1 1 0 0 1-1.406 1.406l-.076-.068-2-2a1 1 0 0 1 0-1.414Z\"})),tablet_ipad_pad_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M18 22.75A2.75 2.75 0 0 0 20.75 20V4A2.75 2.75 0 0 0 18 1.25H6A2.75 2.75 0 0 0 3.25 4v16A2.75 2.75 0 0 0 6 22.75h12ZM12.01 4a1 1 0 1 1 0 2C11.457 6 11 5.552 11 5s.457-1 1.01-1Z\",clipRule:\"evenodd\"})),tag_bookmark_save_favourite_mark_discount_solid_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M20.75 22a.75.75 0 0 1-1.2.6l-6.8-5.1a1.25 1.25 0 0 0-1.415-.059l-.085.059-6.8 5.1a.75.75 0 0 1-1.2-.6V4A2.75 2.75 0 0 1 6 1.25h12A2.75 2.75 0 0 1 20.75 4v18Z\"})),tiktok_logo_icon_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm2.364 5.25a1 1 0 1 0-2 0v7.792a2.195 2.195 0 0 1-2.182 2.208A2.195 2.195 0 0 1 8 14.292c0-1.228.985-2.209 2.182-2.209a1 1 0 1 0 0-2C7.864 10.083 6 11.975 6 14.292c0 2.316 1.864 4.208 4.182 4.208 2.317 0 4.182-1.892 4.182-4.208V9.934a4.74 4.74 0 0 0 2.636.774 1 1 0 1 0 0-2c-1.713 0-2.636-1.377-2.636-2.208Z\",clipRule:\"evenodd\"})),tiktok_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19 21.75A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14ZM6 14.292c0-2.316 1.864-4.209 4.182-4.209a1 1 0 0 1 0 2c-1.197 0-2.182.982-2.182 2.209s.985 2.208 2.182 2.208 2.181-.98 2.181-2.208V6.5a1 1 0 0 1 2 0c0 .83.924 2.208 2.637 2.208a1 1 0 0 1 0 2 4.738 4.738 0 0 1-2.637-.776v4.36c0 2.316-1.864 4.208-4.181 4.208C7.864 18.5 6 16.608 6 14.292Z\",clipRule:\"evenodd\"})),triangle_rounded_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632Z\",clipRule:\"evenodd\"})),triangle_shape_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 2.25a.75.75 0 0 1 .646.37l10 17A.75.75 0 0 1 22 20.75H2a.75.75 0 0 1-.646-1.13l10-17A.75.75 0 0 1 12 2.25Z\",clipRule:\"evenodd\"})),twitter_x_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M20.292 2.293a1.001 1.001 0 0 1 1.415 1.414l-7.125 7.124 7.026 9.73A.751.751 0 0 1 21 21.75h-5a.751.751 0 0 1-.608-.311l-4.789-6.63-6.896 6.897a1 1 0 0 1-1.414-1.415l7.124-7.125L2.392 3.44A.751.751 0 0 1 3 2.25h5l.09.005a.751.751 0 0 1 .518.306l4.787 6.628 6.897-6.896Z\",clipRule:\"evenodd\"})),upload_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11.47 12.47a.75.75 0 0 1 1.06 0l2.5 2.5a.75.75 0 0 1-.53 1.28h-1.75V21a.75.75 0 0 1-1.5 0v-4.75H9.5a.75.75 0 0 1-.53-1.28l2.5-2.5Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z\",clipRule:\"evenodd\"})),view_count_show_visible_eye_open_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"m23.67 11.663-.015-.03-.032-.06-.007-.013a18.339 18.339 0 0 0-.72-1.217 20.43 20.43 0 0 0-2.224-2.856C18.733 5.42 15.799 3.25 12 3.25c-3.8 0-6.734 2.17-8.672 4.237a20.43 20.43 0 0 0-2.796 3.801 11.69 11.69 0 0 0-.149.272l-.007.014-.032.06-.015.03a.76.76 0 0 0 0 .673l.015.03.032.06.007.013a18.262 18.262 0 0 0 .72 1.217 20.432 20.432 0 0 0 2.225 2.856C5.266 18.58 8.2 20.75 12 20.75c3.8 0 6.733-2.17 8.672-4.237a20.433 20.433 0 0 0 2.795-3.801c.065-.115.115-.208.149-.272l.007-.013.02-.037.012-.024.015-.03a.756.756 0 0 0 0-.673ZM12 5.75a4.25 4.25 0 1 1 0 8.5 4.25 4.25 0 0 1 0-8.5Z\",clipRule:\"evenodd\"})),view_count_show_visible_eye_open_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"m.33 11.664.015-.03.032-.06.007-.014a18.263 18.263 0 0 1 .72-1.217 20.43 20.43 0 0 1 2.224-2.856C5.268 5.42 8.201 3.25 12 3.25c3.8 0 6.734 2.17 8.672 4.237a20.425 20.425 0 0 1 2.796 3.801c.065.115.115.208.149.272l.007.014.032.06.014.03a.75.75 0 0 1 .001.672l-.015.03a5.739 5.739 0 0 1-.032.06l-.007.014a18.252 18.252 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.225 2.856C18.734 18.58 15.8 20.75 12 20.75c-3.8 0-6.733-2.17-8.671-4.237a20.432 20.432 0 0 1-2.796-3.801 12.06 12.06 0 0 1-.149-.272l-.007-.013-.032-.06-.015-.03a.756.756 0 0 1 0-.673ZM15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z\",clipRule:\"evenodd\"})),view_count_show_visible_eye_open_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M23.616 11.573C20.503 7.077 16.29 4.75 12 4.75c-4.291 0-8.504 2.327-11.617 6.823a.75.75 0 0 0 0 .854C3.496 16.922 7.71 19.25 12 19.25c4.29 0 8.503-2.328 11.616-6.823a.75.75 0 0 0 0-.854ZM17.25 12a5.25 5.25 0 1 0-10.5 0 5.25 5.25 0 0 0 10.5 0Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M14.25 12A2.25 2.25 0 0 0 12 9.75a.75.75 0 0 1 0-1.5A3.75 3.75 0 0 1 15.75 12a.75.75 0 0 1-1.5 0Z\"})),view_count_show_visible_eye_open_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M14.25 10a1.75 1.75 0 0 0 3.366.673l.049-.098a.751.751 0 0 1 1.318.06 7.75 7.75 0 1 1-3.62-3.62.75.75 0 0 1-.036 1.369A1.751 1.751 0 0 0 14.25 10Z\"}),(0,a.createElement)(\"path\",{d:\"M12 2c4.335 0 8.706 2.263 10.89 6.546a1 1 0 1 1-1.78.908C19.301 5.911 15.664 4 12 4 8.335 4 4.698 5.911 2.89 9.454a1 1 0 0 1-1.78-.908C3.293 4.263 7.664 2 12 2Z\"})),view_count_show_visible_eye_open_5_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.75 12H12V7.25A4.75 4.75 0 1 0 16.75 12Z\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"m23.167 12.083.727.364c.141-.281.14-.613 0-.895l-.002-.003-.003-.007-.011-.022a10.615 10.615 0 0 0-.192-.354 20.675 20.675 0 0 0-2.831-3.85C18.895 5.226 15.899 3 12 3 8.1 3 5.104 5.226 3.145 7.316a20.674 20.674 0 0 0-2.831 3.85 12.375 12.375 0 0 0-.192.354l-.011.022-.003.007-.002.002s0 .002.894.449l-.894-.447a1 1 0 0 0 0 .894l.002.004.003.007.011.022a8.267 8.267 0 0 0 .192.354 20.67 20.67 0 0 0 2.831 3.85C5.105 18.774 8.1 21 12 21c3.9 0 6.895-2.226 8.855-4.316a20.672 20.672 0 0 0 2.831-3.85 11.81 11.81 0 0 0 .175-.322l.017-.032.011-.022.003-.007.002-.002s0-.002-.727-.366Zm-.096-.119.823-.412-.823.412ZM12 5a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z\",clipRule:\"evenodd\"})),warning_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM13 8a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0V8Zm-1 6.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z\",clipRule:\"evenodd\"})),warning_triangle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632ZM11 9v4a1 1 0 1 0 2 0V9a1 1 0 1 0-2 0Zm0 7.5v.5a1 1 0 1 0 2 0v-.5a1 1 0 1 0-2 0Z\",clipRule:\"evenodd\"})),whatsapp_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 1.802.444 3.501 1.228 4.994l-1.206 4.824a.75.75 0 0 0 .91.91l4.824-1.206A10.706 10.706 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Zm3.16 12.04c.245.09 1.56.733 1.828.866v.001l.145.071c.187.09.313.151.367.24.067.111.067.645-.156 1.266-.223.622-1.292 1.19-1.805 1.266-.461.069-1.044.097-1.685-.106a15.383 15.383 0 0 1-1.525-.56c-2.506-1.078-4.2-3.495-4.522-3.954l-.047-.066-.002-.002c-.14-.186-1.09-1.447-1.09-2.752 0-1.226.605-1.87.883-2.165l.053-.056a.984.984 0 0 1 .713-.333c.179 0 .357.002.513.01h.06c.156 0 .35-.001.541.456.078.185.193.463.313.753.225.547.469 1.137.512 1.224.067.133.112.288.022.466l-.039.08a1.49 1.49 0 0 1-.228.364l-.14.166c-.09.111-.182.222-.261.3-.134.133-.273.277-.117.544.156.266.692 1.138 1.488 1.844a6.905 6.905 0 0 0 1.973 1.241c.074.032.134.058.178.08.267.133.423.111.58-.067.155-.177.668-.777.846-1.043.178-.267.357-.223.602-.134Z\",clipRule:\"evenodd\"})),wordpress_logo_icon_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M2.778 12a9.225 9.225 0 0 0 5.198 8.3l-4.4-12.054A9.18 9.18 0 0 0 2.779 12Zm15.447-.465c0-1.139-.409-1.929-.76-2.543-.466-.76-.905-1.402-.905-2.162 0-.847.642-1.637 1.548-1.637.04 0 .079.005.119.007A9.185 9.185 0 0 0 12 2.778a9.21 9.21 0 0 0-7.705 4.158c.216.007.421.01.593.01.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.055.087l3.359 9.988 2.018-6.052-1.437-3.936c-.497-.03-.967-.088-.967-.088-.497-.03-.439-.79.058-.76 0 0 1.523.118 2.428.118.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.054.087l3.332 9.913.92-3.074c.398-1.276.701-2.192.701-2.982l-.002.002Z\"}),(0,a.createElement)(\"path\",{d:\"m12.16 12.807-2.766 8.04a9.25 9.25 0 0 0 5.667-.147.719.719 0 0 1-.065-.126l-2.835-7.767Zm7.931-5.231c.04.293.062.61.062.948 0 .935-.176 1.988-.702 3.302l-2.816 8.145a9.22 9.22 0 0 0 4.585-7.973 9.157 9.157 0 0 0-1.13-4.424l.002.002Z\"}),(0,a.createElement)(\"path\",{d:\"M12 1.25C6.071 1.25 1.25 6.072 1.25 12S6.072 22.75 12 22.75c5.926 0 10.748-4.822 10.748-10.75C22.75 6.072 17.926 1.25 12 1.25Zm0 21.007c-5.656 0-10.257-4.601-10.257-10.259 0-5.657 4.6-10.255 10.256-10.255 5.655 0 10.256 4.601 10.256 10.257S17.655 22.259 12 22.259v-.002Z\"})),wordpress_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 1.25C6.075 1.25 1.25 6.074 1.25 12c0 5.928 4.824 10.75 10.75 10.75 5.928 0 10.75-4.822 10.75-10.75 0-5.926-4.822-10.75-10.75-10.75ZM2.336 12c0-1.4.302-2.732.837-3.933l4.61 12.63a9.665 9.665 0 0 1-5.447-8.696Zm9.666 9.665a9.629 9.629 0 0 1-2.731-.394l2.9-8.426 2.97 8.14c.02.047.044.091.07.132a9.655 9.655 0 0 1-3.21.548Zm1.33-14.195a19.275 19.275 0 0 0 1.106-.094c.522-.06.46-.826-.061-.795 0 0-1.565.122-2.577.122-.949 0-2.545-.122-2.545-.122-.52-.03-.583.765-.06.795 0 0 .492.062 1.013.094l1.506 4.125-2.117 6.342L6.08 7.47a20.357 20.357 0 0 0 1.106-.092c.52-.063.46-.828-.063-.797 0 0-1.563.122-2.575.122-.182 0-.395-.004-.621-.011A9.651 9.651 0 0 1 12 2.335a9.63 9.63 0 0 1 6.527 2.538c-.043-.002-.083-.007-.127-.007-.95 0-1.622.825-1.622 1.715 0 .795.46 1.47.949 2.266.367.644.796 1.471.796 2.665 0 .827-.316 1.787-.736 3.124l-.963 3.222L13.332 7.47Zm3.528 12.884 2.951-8.535c.552-1.38.734-2.481.734-3.461 0-.357-.022-.686-.064-.995A9.608 9.608 0 0 1 21.665 12a9.661 9.661 0 0 1-4.805 8.353Z\"})),youtube_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19.29 3.608c-3.693-.479-10.531-.477-14.402.003-1.874.233-3.194 1.843-3.41 3.831-.304 2.773-.304 6.343 0 9.116.216 1.988 1.536 3.598 3.41 3.83 3.87.481 10.71.483 14.401.004 1.784-.232 2.995-1.77 3.21-3.63.334-2.868.334-6.656 0-9.524-.215-1.86-1.426-3.398-3.21-3.63Zm-8.904 4.749A.75.75 0 0 0 9.25 9v6a.75.75 0 0 0 1.136.643l5-3a.75.75 0 0 0 0-1.286l-5-3Z\",clipRule:\"evenodd\"})),full_screen_corners_out_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M2 8.5V5C2 3.34315 3.34315 2 5 2H8.5C9.05228 2 9.5 2.44772 9.5 3C9.5 3.55228 9.05228 4 8.5 4H5C4.44772 4 4 4.44772 4 5V8.5C4 9.05228 3.55228 9.5 3 9.5C2.44772 9.5 2 9.05228 2 8.5Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M2 19V15.5C2 14.9477 2.44772 14.5 3 14.5C3.55228 14.5 4 14.9477 4 15.5V19C4 19.5523 4.44772 20 5 20H8.5C9.05228 20 9.5 20.4477 9.5 21C9.5 21.5523 9.05228 22 8.5 22H5C3.34315 22 2 20.6569 2 19Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M20 8V5C20 4.44772 19.5523 4 19 4H15.5C14.9477 4 14.5 3.55228 14.5 3C14.5 2.44772 14.9477 2 15.5 2H19C20.6569 2 22 3.34315 22 5V8C22 8.55228 21.5523 9 21 9C20.4477 9 20 8.55228 20 8Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M20 19V15.5C20 14.9477 20.4477 14.5 21 14.5C21.5523 14.5 22 14.9477 22 15.5V19C22 20.6569 20.6569 22 19 22H15.5C14.9477 22 14.5 21.5523 14.5 21C14.5 20.4477 14.9477 20 15.5 20H19C19.5523 20 20 19.5523 20 19Z\",fill:\"currentColor\"})),zoom_in_magnifying_glass_plus_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M9.99512 14V12.0049H8C7.44772 12.0049 7 11.5572 7 11.0049C7.00007 10.4527 7.44776 10.0049 8 10.0049H9.99512V8C9.99512 7.44772 10.4428 7 10.9951 7C11.5473 7.00007 11.9951 7.44776 11.9951 8V10.0049H14C14.5522 10.0049 14.9999 10.4527 15 11.0049C15 11.5572 14.5523 12.0049 14 12.0049H11.9951V14C11.9951 14.5522 11.5473 14.9999 10.9951 15C10.4428 15 9.99512 14.5523 9.99512 14Z\",fill:\"currentColor\"})),zoom_out_magnifying_glass_minus_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M14 10.005C14.5523 10.005 15 10.4527 15 11.005C15 11.5573 14.5523 12.005 14 12.005H8C7.44772 12.005 7 11.5573 7 11.005C7 10.4527 7.44772 10.005 8 10.005H14Z\",fill:\"currentColor\"})),gallery_indicator_image_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M16.75 7C16.75 8.10457 15.8546 9 14.75 9C13.6454 9 12.75 8.10457 12.75 7C12.75 5.89543 13.6454 5 14.75 5C15.8546 5 16.75 5.89543 16.75 7Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M6.5 18.5C6.5 18.3619 6.38807 18.25 6.25 18.25H4C3.86193 18.25 3.75 18.3619 3.75 18.5V20C3.75 20.1381 3.86193 20.25 4 20.25H6.25C6.38807 20.25 6.5 20.1381 6.5 20V18.5ZM8 20C8 20.9665 7.2165 21.75 6.25 21.75H4C3.0335 21.75 2.25 20.9665 2.25 20V18.5C2.25 17.5335 3.0335 16.75 4 16.75H6.25C7.2165 16.75 8 17.5335 8 18.5V20Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M13.5 18.5C13.5 18.3619 13.3881 18.25 13.25 18.25H11C10.8619 18.25 10.75 18.3619 10.75 18.5V20C10.75 20.1381 10.8619 20.25 11 20.25H13.25C13.3881 20.25 13.5 20.1381 13.5 20V18.5ZM15 20C15 20.9665 14.2165 21.75 13.25 21.75H11C10.0335 21.75 9.25 20.9665 9.25 20V18.5C9.25 17.5335 10.0335 16.75 11 16.75H13.25C14.2165 16.75 15 17.5335 15 18.5V20Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M20.25 18.5C20.25 18.3619 20.1381 18.25 20 18.25H18C17.8619 18.25 17.75 18.3619 17.75 18.5V20C17.75 20.1381 17.8619 20.25 18 20.25H20C20.1381 20.25 20.25 20.1381 20.25 20V18.5ZM21.75 20C21.75 20.9665 20.9665 21.75 20 21.75H18C17.0335 21.75 16.25 20.9665 16.25 20V18.5C16.25 17.5335 17.0335 16.75 18 16.75H20C20.9665 16.75 21.75 17.5335 21.75 18.5V20Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M19 15.75C20.5188 15.75 21.75 14.5188 21.75 13V5C21.75 3.4812 20.5188 2.25 19 2.25H5C3.4812 2.25 2.25 3.4812 2.25 5V13C2.25 14.5188 3.4812 15.75 5 15.75H19ZM3.75 11.8613V5C3.75 4.30957 4.30963 3.75 5 3.75H19C19.6904 3.75 20.25 4.30957 20.25 5V10.8613L19.9442 10.5557C18.8703 9.48169 17.1295 9.48169 16.0555 10.5557L15.3837 11.2266C14.8956 11.7146 14.1042 11.7146 13.6161 11.2266L10.9442 8.55566C9.8703 7.48169 8.12946 7.48169 7.05554 8.55566L3.75 11.8613Z\",fill:\"currentColor\"})),rocket_fly_boost_launch_pro_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M7.79289 14.7929C8.18342 14.4024 8.81643 14.4024 9.20696 14.7929C9.59748 15.1834 9.59748 15.8164 9.20696 16.207L4.20696 21.207C3.81643 21.5975 3.18342 21.5975 2.79289 21.207C2.40237 20.8164 2.40237 20.1834 2.79289 19.7929L7.79289 14.7929Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M10.2929 17.2929C10.6834 16.9024 11.3164 16.9024 11.707 17.2929C12.0975 17.6834 12.0975 18.3164 11.707 18.707L9.70696 20.707C9.31643 21.0975 8.68342 21.0975 8.29289 20.707C7.90237 20.3164 7.90237 19.6834 8.29289 19.2929L10.2929 17.2929Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M5.29289 12.2929C5.68342 11.9024 6.31643 11.9024 6.70696 12.2929C7.09748 12.6834 7.09748 13.3164 6.70696 13.707L4.70696 15.707C4.31643 16.0975 3.68342 16.0975 3.29289 15.707C2.90237 15.3164 2.90237 14.6834 3.29289 14.2929L5.29289 12.2929Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M21.5002 1.75C21.9145 1.75 22.2502 2.08569 22.2502 2.5V3.10059C22.2502 5.88916 21.0051 8.88525 19.2672 11.1758L19.7473 16.9375C19.7656 17.1575 19.6865 17.3743 19.5305 17.5303L15.5305 21.5303C15.3439 21.717 15.0726 21.792 14.8167 21.7275C14.5609 21.6631 14.3574 21.4685 14.2815 21.2158L12.8049 16.2939L7.7063 11.1953L2.78442 9.71875C2.62842 9.67188 2.49463 9.57642 2.39984 9.4502C2.34113 9.37183 2.29742 9.28149 2.27271 9.18359C2.20819 8.92773 2.28333 8.65649 2.46997 8.46973L6.46997 4.46973L6.53149 4.41504C6.68048 4.29565 6.87042 4.23682 7.06274 4.25293L12.8245 4.73315C15.115 2.99512 18.111 1.75 20.8997 1.75H21.5002ZM19.0002 6.5C19.0002 7.32837 18.3287 8 17.5002 8C16.6718 8 16.0002 7.32837 16.0002 6.5C16.0002 5.67163 16.6718 5 17.5002 5C18.3287 5 19.0002 5.67163 19.0002 6.5Z\",fill:\"currentColor\"})),plugin_connect_socket_integration_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M5.20699 8.79297L6.99995 10.5859L8.79292 8.79297C9.18343 8.40234 9.81642 8.40234 10.207 8.79297C10.5975 9.18335 10.5975 9.81641 10.207 10.207L8.41402 12L12 15.5859L13.7929 13.793C14.1834 13.4023 14.8164 13.4023 15.207 13.793C15.5975 14.1833 15.5975 14.8164 15.207 15.207L13.414 17L15.207 18.793C15.5975 19.1833 15.5975 19.8164 15.207 20.207C14.8164 20.5974 14.1834 20.5974 13.7929 20.207L12.8233 19.2375L10.9445 21.1162C9.87056 22.1902 8.12886 22.1902 7.05489 21.1162L5.67653 19.7375L3.20699 22.207C2.81642 22.5974 2.18343 22.5974 1.79292 22.207C1.40236 21.8164 1.40236 21.1833 1.79292 20.793L4.26265 18.3232L2.88405 16.9443C1.81007 15.8706 1.81007 14.1296 2.88405 13.0557L4.76277 11.177L3.79292 10.207C3.40236 9.81641 3.40236 9.18335 3.79292 8.79297C4.18343 8.40234 4.81642 8.40234 5.20699 8.79297Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M11.1768 4.7627L10.207 3.79297C9.81641 3.40234 9.18341 3.40234 8.79291 3.79297C8.40234 4.18335 8.40234 4.81641 8.79291 5.20703L18.7929 15.207C19.1834 15.5974 19.8164 15.5974 20.207 15.207C20.5975 14.8164 20.5975 14.1833 20.207 13.793L19.2374 12.8232L21.1161 10.9446C22.1901 9.87061 22.1901 8.12891 21.1161 7.05493L19.7374 5.67651L22.207 3.20703C22.5975 2.81641 22.5975 2.18335 22.207 1.79297C21.8164 1.40234 21.1834 1.40234 20.7929 1.79297L18.3232 4.2627L16.9443 2.88403C15.8703 1.81006 14.1295 1.81006 13.0556 2.88403L11.1768 4.7627Z\",fill:\"currentColor\"})),unlink_link_break_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M2.29286 4.29325C2.68338 3.90273 3.31639 3.90273 3.70692 4.29325L10.9999 11.5862L13.7929 8.79325C14.1834 8.40273 14.8164 8.40273 15.2069 8.79325C15.5972 9.1838 15.5974 9.81687 15.2069 10.2073L12.4139 13.0003L19.7069 20.2933C20.0972 20.6838 20.0974 21.3169 19.7069 21.7073C19.3165 22.0977 18.6834 22.0976 18.2929 21.7073L14.5194 17.9339L12.204 20.2493C9.86964 22.5836 6.08522 22.5835 3.75086 20.2493C1.41651 17.915 1.41657 14.1306 3.75086 11.7962L6.06532 9.47978L2.29286 5.70732C1.90236 5.31682 1.90241 4.68379 2.29286 4.29325ZM5.16493 13.2102C3.61168 14.7636 3.61162 17.2819 5.16493 18.8352C6.71823 20.3884 9.23662 20.3884 10.7899 18.8352L13.1054 16.5198L10.9999 14.4143L10.2069 15.2073C9.81646 15.5977 9.18337 15.5976 8.79286 15.2073C8.40236 14.8168 8.40241 14.1838 8.79286 13.7933L9.58582 13.0003L7.48036 10.8948L5.16493 13.2102Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M11.7958 3.75126C14.1302 1.4169 17.9145 1.41689 20.2489 3.75126C22.5832 6.08564 22.5833 9.87005 20.2489 12.2044L17.7352 14.719C17.3449 15.1092 16.7117 15.109 16.3212 14.719C15.9307 14.3285 15.9307 13.6945 16.3212 13.304L18.8348 10.7903C20.3881 9.23703 20.3881 6.71866 18.8348 5.16533C17.2815 3.612 14.7632 3.61201 13.2098 5.16533L10.6962 7.679C10.3057 8.06941 9.67164 8.06939 9.28114 7.679C8.89103 7.28851 8.89092 6.65536 9.28114 6.26493L11.7958 3.75126Z\",fill:\"currentColor\"})),unlocked_open_security_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M12 1C15.3136 1.00007 18 3.68634 18 7V9.25C19.5188 9.25 20.75 10.4812 20.75 12V20C20.75 21.5188 19.5188 22.75 18 22.75H6C4.48122 22.75 3.25 21.5188 3.25 20V12C3.25 10.4812 4.48122 9.25 6 9.25H16V7C16 4.79091 14.2091 3.00007 12 3C10.5207 3.00001 9.22731 3.80281 8.53418 5.00098C8.25756 5.47873 7.6459 5.64163 7.16797 5.36523C6.69018 5.0886 6.52723 4.47697 6.80371 3.99902C7.83968 2.20846 9.77808 1.00001 12 1ZM12 14.5C11.4477 14.5 11 14.9477 11 15.5V16.5C11 17.0523 11.4477 17.5 12 17.5C12.5523 17.5 13 17.0523 13 16.5V15.5C13 14.9477 12.5523 14.5 12 14.5Z\",fill:\"currentColor\"})),sort_ascending_order_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M2.25 5C2.25 3.4812 3.4812 2.25 5 2.25L19 2.25C20.5188 2.25 21.75 3.4812 21.75 5L21.75 19C21.75 20.5188 20.5188 21.75 19 21.75L5 21.75C3.4812 21.75 2.25 20.5188 2.25 19L2.25 5ZM16.75 7.5C16.75 7.08569 16.4142 6.75 16 6.75L6 6.75C5.58581 6.75 5.25 7.08569 5.25 7.5C5.25 7.91431 5.58581 8.25 6 8.25L16 8.25C16.4142 8.25 16.75 7.91431 16.75 7.5ZM11.5 11C11.9142 11 12.25 11.3357 12.25 11.75C12.25 12.1643 11.9142 12.5 11.5 12.5L6 12.5C5.58581 12.5 5.25 12.1643 5.25 11.75C5.25 11.3357 5.58581 11 6 11L11.5 11ZM10.75 16C10.75 15.5857 10.4142 15.25 10 15.25L6 15.25C5.58581 15.25 5.25 15.5857 5.25 16C5.25 16.4143 5.58581 16.75 6 16.75L10 16.75C10.4142 16.75 10.75 16.4143 10.75 16ZM15.25 11C15.25 10.5857 15.5857 10.25 16 10.25C16.4142 10.25 16.75 10.5857 16.75 11L16.75 15.1895L17.9697 13.9697C18.2626 13.6768 18.7373 13.6768 19.0303 13.9697C19.3231 14.2627 19.3231 14.7373 19.0303 15.0303L16.5303 17.5303C16.2373 17.8232 15.7626 17.8232 15.4697 17.5303L12.9697 15.0303C12.6768 14.7373 12.6768 14.2627 12.9697 13.9697C13.2626 13.6768 13.7373 13.6768 14.0303 13.9697L15.25 15.1895L15.25 11Z\",fill:\"currentColor\"})),sort_descending_order_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M21.75 19C21.75 20.5188 20.5188 21.75 19 21.75H5C3.4812 21.75 2.25 20.5188 2.25 19V5C2.25 3.4812 3.4812 2.25 5 2.25H19C20.5188 2.25 21.75 3.4812 21.75 5V19ZM10.75 8C10.75 8.41431 10.4142 8.75 10 8.75H6C5.58582 8.75 5.25 8.41431 5.25 8C5.25 7.58569 5.58582 7.25 6 7.25H10C10.4142 7.25 10.75 7.58569 10.75 8ZM11.5 13C11.9142 13 12.25 12.6643 12.25 12.25C12.25 11.8357 11.9142 11.5 11.5 11.5H6C5.58582 11.5 5.25 11.8357 5.25 12.25C5.25 12.6643 5.58582 13 6 13H11.5ZM6 15.75H16C16.4142 15.75 16.75 16.0857 16.75 16.5C16.75 16.9143 16.4142 17.25 16 17.25H6C5.58582 17.25 5.25 16.9143 5.25 16.5C5.25 16.0857 5.58582 15.75 6 15.75ZM15.25 13V8.81055L14.0303 10.0303C13.7373 10.3232 13.2626 10.3232 12.9697 10.0303C12.6768 9.73755 12.6768 9.2627 12.9697 8.96973L15.4697 6.46973L15.5264 6.41797C15.8209 6.17773 16.2556 6.19531 16.5303 6.46973L19.0303 8.96973C19.3231 9.2627 19.3231 9.73755 19.0303 10.0303C18.7373 10.3232 18.2626 10.3232 17.9697 10.0303L16.75 8.81055V13C16.75 13.4143 16.4142 13.75 16 13.75C15.5857 13.75 15.25 13.4143 15.25 13Z\",fill:\"currentColor\"})),plus_circle_zoom_in_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75ZM11 16.9999V12.9999H7C6.44771 12.9999 6 12.5522 6 11.9999C6.00006 11.4477 6.44775 10.9999 7 10.9999H11V6.99988C11 6.4476 11.4477 5.99988 12 5.99988C12.5523 5.99988 13 6.4476 13 6.99988V10.9999H17C17.5522 10.9999 17.9999 11.4477 18 11.9999C18 12.5522 17.5523 12.9999 17 12.9999H13V16.9999C13 17.5522 12.5523 17.9999 12 17.9999C11.4477 17.9999 11 17.5522 11 16.9999Z\",fill:\"currentColor\"})),right_circle_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25ZM16.7372 9.67573C17.1103 9.26861 17.0828 8.63604 16.6757 8.26285C16.2686 7.88966 15.636 7.91716 15.2628 8.32428L10.4686 13.5544L8.70711 11.7929C8.31658 11.4024 7.68342 11.4024 7.29289 11.7929C6.90237 12.1834 6.90237 12.8166 7.29289 13.2071L9.79289 15.7071C9.98576 15.9 10.249 16.0057 10.5217 15.9998C10.7944 15.9938 11.0528 15.8768 11.2372 15.6757L16.7372 9.67573Z\",fill:\"currentColor\"}))}},4766:(e,t,n)=>{\"use strict\";n.d(t,{ZP:()=>s});var a=n(7294),r=n(1900),o=n(4528);(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"#070707\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 100 99.964\"},(0,a.createElement)(\"path\",{d:\"M97.637 61.79a3.8 3.8 0 0 1-.265-2.338c2.854-16.467-1.618-30.679-13.443-42.449A46.289 46.289 0 0 0 57.307 3.971a45.987 45.987 0 0 0-13.429.031 3.88 3.88 0 0 1-2.678-.468 27.868 27.868 0 0 0-37.106 9.469 27.009 27.009 0 0 0-.722 27.349 2.2 2.2 0 0 1 .268 1.577c-4.109 21.989 7.627 42.639 27.735 51.084a48.685 48.685 0 0 0 26.784 3.2 3.168 3.168 0 0 1 2.058.3 28.253 28.253 0 0 0 14.99 3.392 24.78 24.78 0 0 0 10.7-3.344 28.036 28.036 0 0 0 13.784-19.714 26.476 26.476 0 0 0-2.054-15.057Zm-22.9 2.118c-1.145 6.065-5.1 9.919-10.639 12.005a34.579 34.579 0 0 1-25.014.047 17.5 17.5 0 0 1-10.124-9.767 10.7 10.7 0 0 1-.823-3.5 4.786 4.786 0 0 1 2.69-4.8 5.42 5.42 0 0 1 5.954.641 8.434 8.434 0 0 1 1.858 2.609c.575 1.166 1.117 2.344 1.763 3.477a10.145 10.145 0 0 0 8.116 5.239c3.849.439 7.6.181 11.051-1.866 3.034-1.8 4.327-4.8 3.344-7.958a6.789 6.789 0 0 0-3.821-3.96 36.8 36.8 0 0 0-8.484-2.527c-4.659-1.075-9.32-2.134-13.636-4.306-6.146-3.093-8.925-8.983-7.25-15.629a12.974 12.974 0 0 1 5.917-7.83 26.362 26.362 0 0 1 12.494-3.723c1.1-.089 2.212-.11 2.953-.145 5.344.04 10.179.739 14.54 3.347 3.038 1.816 5.483 4.183 6.521 7.712a5.465 5.465 0 0 1-1.221 5.8 5.212 5.212 0 0 1-8.142-.932c-.8-1.185-1.506-2.436-2.312-3.618a9.062 9.062 0 0 0-6.6-4.222c-3.583-.437-7.092-.415-10.344 1.435a5.654 5.654 0 0 0-3.072 3.721c-.446 2.16.408 3.849 2.36 5.136 2.449 1.616 5.253 2.209 8.032 2.887a123.979 123.979 0 0 1 12.525 3.358 19.776 19.776 0 0 1 8.3 4.956c3.252 3.573 3.917 7.862 3.06 12.414Z\"})),(0,a.createElement)(\"svg\",{viewBox:\"0 0 16 16\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M9.34084 11.3521L7.66481 13.0281C6.36891 14.324 4.26783 14.324 2.97193 13.0281C1.67602 11.7322 1.67602 9.63111 2.97193 8.33521L4.64796 6.65918M6.65916 4.64795L8.33519 2.97193C9.63109 1.67603 11.7322 1.67602 13.0281 2.97192C14.324 4.26782 14.324 6.36889 13.0281 7.66479L11.352 9.34082\",stroke:\"currentColor\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.33398 9.66665L9.66732 6.33331\",stroke:\"currentColor\",strokeLinecap:\"round\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 50 50\"},(0,a.createElement)(\"path\",{fill:\"currentColor\",d:\"M50 4.4v41.1c0 2.5-2 4.4-4.4 4.4H34.5V31.1c0-.4.1-.6.5-.5h5.4c.4 0 .6 0 .6-.5.3-2.3.6-4.6.9-7 0-.4-.1-.4-.4-.4h-6.6c-.3 0-.5-.1-.5-.4v-4.8c-.1-1.5 1-2.9 2.6-3H41.6c.3 0 .4-.1.4-.4V7.9c0-.4-.1-.4-.5-.4-1.5 0-6.7 0-7.8.2-4 .7-6.9 4-7.2 8.1-.1 2.2 0 4.4 0 6.6 0 .5-.1.6-.6.6h-5.5c-.3 0-.4.1-.4.4v7c0 .3.1.4.4.4h5.5c.5 0 .6.1.6.6v18.8H4.4C2 50 0 48 0 45.5V4.4C0 2 2 0 4.4 0h41.1C48 0 50 2 50 4.4z\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 35.699 50\"},(0,a.createElement)(\"path\",{d:\"M27.638 5.514A13.716 13.716 0 0 1 26.162 0h-6.835v28.914a6.244 6.244 0 1 1-6.241-6.247 6.086 6.086 0 0 1 1.965.32v-7.002a12.836 12.836 0 0 0-1.965-.149A13.082 13.082 0 1 0 26.16 28.918V14.134a17.847 17.847 0 0 0 10.454 3.277l.162-6.834c-4.405-.105-7.4-1.761-9.14-5.063\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{d:\"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m11.606 21.714a11.347 11.347 0 0 1-6.656-2.086v9.413a8.323 8.323 0 1 1-7.076-8.236v4.461a3.9 3.9 0 0 0-1.251-.2 3.978 3.978 0 1 0 3.974 3.977V10.628h4.353a8.761 8.761 0 0 0 .94 3.514c1.112 2.1 3.015 3.156 5.821 3.223Z\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 44 44\"},(0,a.createElement)(\"g\",null,(0,a.createElement)(\"path\",{d:\"M30.889 22a8.883 8.883 0 0 1-8.976 8.888A8.932 8.932 0 1 1 30.889 22\"}),(0,a.createElement)(\"path\",{d:\"M22 0C1.18 0 0 1.179 0 22s1.18 22 22 22 22-1.179 22-22S42.821 0 22 0m0 35.816A13.818 13.818 0 1 1 35.816 22 13.817 13.817 0 0 1 22 35.816m14.362-24.948a3.194 3.194 0 0 1-3.256-3.256 3.248 3.248 0 0 1 3.256-3.256 3.175 3.175 0 0 1 3.168 3.256 3.123 3.123 0 0 1-3.168 3.256\"}))),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 42 42\"},(0,a.createElement)(\"path\",{d:\"M37.53 0H4.47A4.468 4.468 0 0 0 0 4.47v33.06A4.468 4.468 0 0 0 4.47 42h33.06A4.468 4.468 0 0 0 42 37.53V4.47A4.468 4.468 0 0 0 37.53 0M12.49 35.12c0 .51-.09.59-.59.59H6.87c-.5 0-.59-.17-.59-.59V16.43c0-.5.09-.67.67-.67h5.03c.42 0 .59.08.59.59-.08 6.28-.08 12.49-.08 18.77m-3.1-22.04a3.583 3.583 0 0 1-3.61-3.61 3.626 3.626 0 0 1 3.61-3.6 3.572 3.572 0 0 1 3.6 3.6 3.692 3.692 0 0 1-3.6 3.61m25.65 22.63h-4.78c-.5 0-.75-.08-.75-.67v-9.3a13.485 13.485 0 0 0-.26-2.6 2.664 2.664 0 0 0-2.43-2.35 3.264 3.264 0 0 0-3.69 1.68 6.537 6.537 0 0 0-.58 2.51v9.98c0 .67-.17.84-.84.75-1.59-.08-3.19 0-4.78 0-.42 0-.59-.17-.59-.59V16.35c0-.42.09-.59.51-.59h4.86c.42 0 .5.17.5.5v2.1a7.617 7.617 0 0 1 3.69-2.77 8.813 8.813 0 0 1 6.2.51 5.948 5.948 0 0 1 3.11 4.44 20.4 20.4 0 0 1 .42 3.94v10.56c.08.59-.09.67-.59.67\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 44 44.26\"},(0,a.createElement)(\"path\",{d:\"M22.311 0A21.555 21.555 0 0 0 .798 21.6a22.259 22.259 0 0 0 3.01 11.067l-3.807 11.6 11.951-3.805A21.656 21.656 0 0 0 44 21.517 21.687 21.687 0 0 0 22.311 0m10.637 29.915a5.156 5.156 0 0 1-3.487 2.414c-4.559.983-9.387-2.593-12.338-5.633a22.894 22.894 0 0 1-5.275-8.046c-.983-2.861.358-8.583 4.381-7.689.984.179 1.163 1.073 1.431 1.878.447 1.162.8 2.235 1.251 3.4a1.514 1.514 0 0 1 0 .894c-.357.805-1.162 1.341-1.7 2.056-.805 1.252 2.324 4.292 3.218 5.1 1.163 1.072 2.951 2.682 4.56 2.861.894.089 2.056-1.7 2.5-2.325.358-.447.626-.536 1.073-.358 1.52.626 2.951 1.52 4.47 2.325a.811.811 0 0 1 .537.983 3.565 3.565 0 0 1-.626 2.146\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{d:\"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0M2.724 24a21.149 21.149 0 0 1 1.844-8.657L14.716 43.15A21.283 21.283 0 0 1 2.724 24M24 45.278a21.317 21.317 0 0 1-6.01-.865l6.384-18.55 6.538 17.917a1.806 1.806 0 0 0 .154.293 21.224 21.224 0 0 1-7.066 1.2m2.931-31.249c1.282-.065 2.436-.2 2.436-.2a.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-2.09 0-5.6-.272-5.6-.272a.88.88 0 0 0-.133 1.754s1.084.136 2.23.2l3.317 9.084-4.657 13.963-7.754-23.047a42.05 42.05 0 0 0 2.436-.2.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-.4 0-.871-.009-1.371-.025a21.273 21.273 0 0 1 32.144-4.006c-.093-.006-.182-.015-.275-.015a3.682 3.682 0 0 0-3.573 3.774c0 1.754 1.01 3.237 2.091 4.991a11.211 11.211 0 0 1 1.754 5.869 24.615 24.615 0 0 1-1.547 7.014l-2.2 6.952Zm7.764 28.366 6.5-18.788a20.025 20.025 0 0 0 1.618-7.62 16.1 16.1 0 0 0-.142-2.189 21.276 21.276 0 0 1-7.974 28.6\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"g\",null,(0,a.createElement)(\"path\",{d:\"M4 23.999a20 20 0 0 0 11.272 18L5.732 15.86A19.923 19.923 0 0 0 4 24m33.5-1.009a10.531 10.531 0 0 0-1.646-5.517c-1.014-1.648-1.964-3.042-1.964-4.69a3.463 3.463 0 0 1 3.358-3.55c.089 0 .173.011.259.016A20 20 0 0 0 7.29 13.013c.47.015.912.025 1.288.025 2.091 0 5.33-.254 5.33-.254a.827.827 0 0 1 .128 1.648s-1.084.127-2.289.19l7.283 21.664 4.378-13.127-3.117-8.535c-1.078-.063-2.1-.19-2.1-.19a.827.827 0 0 1 .127-1.648s3.3.254 5.267.254c2.092 0 5.331-.254 5.331-.254a.827.827 0 0 1 .128 1.648s-1.085.127-2.289.19l7.228 21.5 2.063-6.538a23.047 23.047 0 0 0 1.454-6.593m-13.146 2.755-6 17.437a20.006 20.006 0 0 0 12.292-.319 1.835 1.835 0 0 1-.143-.276Zm17.2-11.344a15.342 15.342 0 0 1 .134 2.057 18.884 18.884 0 0 1-1.524 7.163l-6.11 17.661a20 20 0 0 0 7.5-26.881\"}),(0,a.createElement)(\"path\",{d:\"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m0 46.56A22.56 22.56 0 1 1 46.56 24 22.559 22.559 0 0 1 24 46.56\"}))),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 33.86\"},(0,a.createElement)(\"path\",{d:\"M47.134 5.29a5.893 5.893 0 0 0-4.232-4.232C39.055 0 24.05 0 24.05 0S9.044 0 5.293.962A6.146 6.146 0 0 0 .965 5.29C.003 9.041.003 16.929.003 16.929s0 7.887.962 11.638A5.894 5.894 0 0 0 5.197 32.8c3.847 1.058 18.853 1.058 18.853 1.058s15.005 0 18.756-1.058a6.059 6.059 0 0 0 4.232-4.233C48 24.816 48 16.929 48 16.929s.1-7.888-.866-11.639M19.141 21.928v-10a1.237 1.237 0 0 1 1.845-1.077l8.85 5a1.237 1.237 0 0 1 0 2.153l-8.85 5a1.237 1.237 0 0 1-1.845-1.077\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{d:\"M48.004 23.995a24 24 0 0 1-24 24.005 23.735 23.735 0 0 1-10.948-2.65h.086a15.084 15.084 0 0 0 4.8-6.914 35.685 35.685 0 0 0 1.729-7.009v-.192c.1-.384.192-.384.48-.192.1 0 .1.1.192.1a7.385 7.385 0 0 0 4.322 2.112 11.879 11.879 0 0 0 7.491-.96 16.739 16.739 0 0 0 4.513-3.649 11.277 11.277 0 0 0 1-1.354 17.413 17.413 0 0 0 2.574-7.278 16.381 16.381 0 0 0-1.1-8.555 13.1 13.1 0 0 0-4.774-5.569 17.523 17.523 0 0 0-8.067-2.977A20.935 20.935 0 0 0 15.45 4.065a15.91 15.91 0 0 0-9.028 8.258 11.865 11.865 0 0 0-.288 9.89 8.5 8.5 0 0 0 5.859 4.993c.288.1.384 0 .384-.288.192-1.056.384-2.112.576-3.073 0-.192 0-.384-.192-.48a8.869 8.869 0 0 1-1.825-2.688 6.966 6.966 0 0 1 .1-5.377 12.226 12.226 0 0 1 7.875-7.778 14.92 14.92 0 0 1 7.4-.672c5.475.912 7.914 6.625 7.559 11.685a15.147 15.147 0 0 1-2.757 7.423 7.589 7.589 0 0 1-4.129 2.976 5.108 5.108 0 0 1-4.226-.768 2.864 2.864 0 0 1-1.153-2.3 9.668 9.668 0 0 1 .769-3.745c.48-1.44 1.056-2.785 1.44-4.225a10.787 10.787 0 0 0 .384-3.072 3.408 3.408 0 0 0-4.206-2.977 5.336 5.336 0 0 0-2.641 1.364c-1.892 1.785-2.4 5.175-1.6 7.566a7.772 7.772 0 0 1-.1 4.9c-.864 2.976-1.825 6.049-2.5 9.122a28.284 28.284 0 0 0-.672 7.489 8.268 8.268 0 0 0 .576 3.063 24 24 0 1 1 34.949-21.356\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 45.85 48\"},(0,a.createElement)(\"path\",{d:\"M44.492 25.179a6.625 6.625 0 0 0 .192-7.766 6.482 6.482 0 0 0-9.492-1.151c-.192.1-.288.192-.384.1a28.339 28.339 0 0 0-9.684-2.493c-.192 0-.287-.095-.192-.287.288-.959.672-1.822 1.055-2.781a29.239 29.239 0 0 1 3.068-5.657 7.62 7.62 0 0 1 2.017-1.919 2.338 2.338 0 0 1 2.493 0 6.138 6.138 0 0 1 1.246.959c.192.191.192.287.192.575a3.868 3.868 0 0 0 3.26 4.506 3.786 3.786 0 0 0 4.309-3.739 3.8 3.8 0 0 0-5.463-3.547.358.358 0 0 1-.479-.1 4.481 4.481 0 0 0-1.151-.863 5.486 5.486 0 0 0-6.232-.1 14.609 14.609 0 0 0-3.26 3.643 38.376 38.376 0 0 0-4.123 9.013c-.1.287-.192.383-.479.383a26.861 26.861 0 0 0-10.163 2.493c-.192.1-.288.1-.48-.1a6.631 6.631 0 0 0-8.054-.383 6.539 6.539 0 0 0-1.246 9.4c.192.192.192.288.1.479a13.425 13.425 0 0 0-.959 3.74 14.384 14.384 0 0 0 2.3 8.821 20.414 20.414 0 0 0 7.191 6.519 27.739 27.739 0 0 0 12.752 3.069 27.311 27.311 0 0 0 12.464-2.781 19.211 19.211 0 0 0 7.282-5.933c3.068-4.219 3.835-8.725 1.822-13.615a.865.865 0 0 1 .1-.48m-12.656 5.421a3.645 3.645 0 1 1 3.024-3.023 3.646 3.646 0 0 1-3.024 3.023m-.192 8.1a14.556 14.556 0 0 1-9.013 3.26 14.886 14.886 0 0 1-8.533-3.164 1.469 1.469 0 1 1 1.822-2.3 11.081 11.081 0 0 0 7.862 2.493 11.805 11.805 0 0 0 5.369-2.014c.288-.191.479-.383.767-.575a1.488 1.488 0 0 1 2.014.288 1.6 1.6 0 0 1-.288 2.013m-16.683-15.34a3.646 3.646 0 1 1-3.644 3.643 3.526 3.526 0 0 1 3.644-3.643m-12.464.767a4.959 4.959 0 0 1 7.095-6.808 18.573 18.573 0 0 0-7.095 6.808m41.036-.288a18.259 18.259 0 0 0-6.807-6.424c-.1-.1-.192-.1-.288-.192a5.75 5.75 0 0 1 2.4-.959 4.811 4.811 0 0 1 4.794 2.206 4.978 4.978 0 0 1 .1 5.273c0 .1-.1.384-.192.1\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 47.04 48\"},(0,a.createElement)(\"path\",{d:\"M24 19.625v8.907h13.227a11.731 11.731 0 0 1-4.907 7.786 14.2 14.2 0 0 1-8.32 2.4 14.447 14.447 0 0 1-13.653-9.973 14.764 14.764 0 0 1-.8-4.747 15.523 15.523 0 0 1 .773-4.746A14.507 14.507 0 0 1 24 9.278a13.3 13.3 0 0 1 9.28 3.574l6.773-6.614A23.061 23.061 0 0 0 24-.002a24 24 0 0 0 0 48 22.873 22.873 0 0 0 15.893-5.813c4.534-4.187 7.147-10.347 7.147-17.653a20.536 20.536 0 0 0-.507-4.907Z\"}));const i=new class{constructor(){this.icons=new Map,this.aliases=new Map}initializeIcons(e){Object.entries(e).forEach((([e,t])=>{this.icons.set(e,t)}))}storeAliases(e){Object.entries(e).forEach((([e,t])=>{this.icons.has(t)&&this.aliases.set(e,this.icons.get(t))}))}getAliases(){return Object.fromEntries(this.aliases)}toObject(){return{...Object.fromEntries(this.icons),...Object.fromEntries(this.aliases)}}toCurrentIconObj(){return{...Object.fromEntries(this.icons)}}};i.initializeIcons({...o.c,...r.e}),i.storeAliases({angle_bottom_left_line:\"arrow_down_bottom_left_solid\",angle_bottom_right_line:\"arrow_down_bottom_right_solid\",angle_top_left_line:\"arrow_up_top_left_solid\",angle_top_right_line:\"arrow_up_top_right_solid\",rightFillAngle:\"right_triangle_angle_play_arrow_forward_solid\",leftAngle2:\"arrow_left_previous_backward_chevron_line\",rightAngle2:\"arrow_right_next_forward_chevron_line\",collapse_bottom_line:\"arrow_down_dropdown_maximize_chevron_line\",arrowUp2:\"arrow_up_dropdown_minimize_chevron_line\",longArrowUp2:\"long_arrow_up_top_increase_solid\",arrow_left_circle_line:\"arrow_left_backward_circle_line\",arrow_bottom_circle_line:\"arrow_down_bottom_downward_circle_line\",arrow_right_circle_line:\"arrow_right_forward_circle_line\",arrow_top_circle_line:\"arrow_up_top_upward_circle_line\",close_circle_line:\"cross_close_x_minimize_circle_line\",close_line:\"cross_x_close_minimize_line\",arrow_down_line:\"arrow_down_bottom_downward_line\",leftArrowLg:\"arrow_left_backward_line\",rightArrowLg:\"arrow_left_forward_line\",arrow_up_line:\"long_arrow_up_top_increase_line\",down_solid:\"arrow_down_bottom_downward_circle_solid\",right_solid:\"arrow_right_forward_circle_solid\",left_solid:\"arrow_left_backward_circle_solid\",up_solid:\"arrow_up_top_upward_circle_solid\",wrong_solid:\"cross_close_x_minimize_circle_solid\",bottom_right_line:\"arrow_move_up_right_line\",bottom_left_line:\"arrow_move_up_left_line\",top_left_angle_line:\"arrow_move_down_left_line\",top_right_line:\"arrow_move_down_right_line\",at_line:\"at_a_mail_line\",refresh:\"refresh_reset_cycle_loop_infinity_line\",cart_line:\"shopping_cart_line\",cart_solid:\"add_plus_shopping_cart_solid\",cog_line:\"settings_tool_function_line\",cog_solid:\"settings_tool_function_solid\",correct_solid:\"right_circle_solid\",dot_solid:\"dot_circle_solid\",clock:\"clock_reading_time_1_line.svg\",book:\"book_line\",download_line:\"download_1_line\",download_solid:\"download_1_solid\",downlod_bottom_solid:\"download_1_solid\",eye:\"view_count_show_visible_eye_open_2_line\",hidden_line:\"hidden_hide_invisible_line\",home_line:\"home_house_line\",home_solid:\"home_house_solid\",location_line:\"location_gps_map_line\",location_solid:\"location_gps_map_solid\",love_line:\"heart_love_wishlist_favourite_line\",love_solid:\"heart_love_wishlist_favourite_solid\",notice_circle_solid:\"warning_circle_solid\",notice_solid:\"warning_triangle_solid\",play_line:\"play_media_video_circle_line\",plus2:\"\",videoplay:\"right_triangle_angle_play_arrow_forward_solid\",left_angle_solid:\"left_triangle_angle_arrow_backward_solid\",caretArrow:\"caret_up_top_triangle_angle_arrow_upward_solid\",rectangle_solid:\"square_rounded_solid\",restriction_line:\"restriction_no_stop_line\",right_circle_line:\"correct_save_check_circle_line\",save_line:\"correct_save_check_line\",search_line:\"search_magnify_line\",search_solid:\"search_magnify_solid\",triangle_solid:\"triangle_shape_solid\",warning_circle_line:\"warning_circle_line\",warning_triangle_line:\"warning_triangle_line\",upload_solid:\"upload_1_solid\",cat1:\"category_file_documents_1_solid\",cat2:\"category_book_line\",cat3:\"category_file_documents_2_line\",cat4:\"category_file_documents_3_line\",cat5:\"category_file_documents_3_solid\",cat6:\"category_file_documents_4_line\",cat7:\"category_book_line\",commentCount1:\"messege_comment_1_line\",commentCount2:\"messege_comment_3_solid\",commentCount3:\"messege_comment_3_line\",commentCount4:\"messege_comment_6_line\",commentCount5:\"messege_comment_7_line\",commentCount6:\"messege_comment_8_line\",comment:\"messege_comment_4_line\",date1:\"calendar_date_4_line\",date2:\"calendar_date_1_solid\",date3:\"calendar_date_2_line\",date4:\"calendar_date_4_solid\",date5:\"calendar_date_3_line\",calendar:\"calendar_date_3_line\",readingTime1:\"clock_reading_time_3_line\",readingTime2:\"clock_reading_time_2_line\",readingTime3:\"book_reading_time_line\",readingTime4:\"clock_reading_time_1_line\",readingTime5:\"hourglass_timer_time_line\",tag1:\"tag_bookmark_save_favourite_mark_discount_sale_line\",tag2:\"price_tag_label_category_sale_discount_solid\",tag3:\"price_tag_label_category_sale_discount_line\",tag4:\"price_tag_offer_sale_coupon_solid\",tag5:\"price_tag_label_category_sale_discount_line\",tag6:\"growth_increase_up_solid\",viewCount1:\"view_count_show_visible_eye_open_1_line\",viewCount2:\"view_count_show_visible_eye_open_2_line\",viewCount3:\"view_count_show_visible_eye_open_3_line\",viewCount4:\"view_count_show_visible_eye_open_4_solid\",viewCount5:\"view_count_show_visible_eye_open_5_solid\",viewCount6:\"view_count_show_visible_eye_open_5_solid\",author1:\"author_user_human_1_line\",author2:\"author_user_human_4_line\",author3:\"author_user_human_4_solid\",author4:\"author_user_human_4_line\",author5:\"author_user_human_3_solid\",user:\"author_user_human_3_line\",desktop:\"desktop_monitor_computer_line\",laptop:\"laptop_computer_line\",tablet:\"tablet_ipad_pad_line\",mobile:\"mobile_smartphone_phone_line\",angry_line:\"angry_emoji_line\",angry_solid:\"angry_emoji_solid\",confused_line:\"confused_emoji_line\",confused_solid:\"confused_emoji_solid\",happy_line:\"happy_emoji_line\",happy_solid:\"happy_emoji_solid\",smile_line:\"smile_emoji_line\",smile_solid:\"smile_emoji_solid\",share_line:\"social_community_line\",share:\"share_social_solid\",apple_solid:\"apple_logo_icon_solid\",android_solid:\"android_logo_icon_solid\",google_solid:\"google_logo_icon_solid\",messenger:\"messenger_logo_icon_solid\",microsoft_solid:\"microsoft_logo_icon_solid\",mail:\"mail_email_messege_solid\",media_document:\"media_document\",facebook:\"facebook_logo_icon_solid\",twitter:\"twitter_x_logo_icon_line\",arrowDown2:\"arrow_down_dropdown_maximize_chevron_line\",setting:\"settings_tool_function_solid\",right_circle_solid:\"correct_save_check_circle_solid\",full_screen:\"full_screen_corners_out_solid\",zoom_in:\"zoom_in_magnifying_glass_plus_line\",zoom_out:\"zoom_out_magnifying_glass_minus_line\",gallery_indicator:\"gallery_indicator_image_solid\",ascending:\"sort_ascending_order_line\",descending:\"sort_descending_order_line\",unlink:\"unlink_link_break_line\",rocket:\"rocket_fly_boost_launch_pro_solid\",unlock:\"unlocked_open_security_solid\",connect:\"plugin_connect_socket_integration_line\",leftAngle:\"arrow_left_previous_backward_chevron_line\",rightAngle:\"right_triangle_angle_play_arrow_forward_line\",link:\"link_chains_line\",subtract:(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"#070707\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),skype:\"skype_logo_icon_solid\",updated_link:\"link_chains_line\",tiktok_lite_solid:\"tiktok_logo_icon_circle_line\",tiktok_solid:\"tiktok_logo_icon_solid\",instagram_solid:\"instagram_logo_icon_solid\",linkedin:\"linkedin_logo_icon_solid\",whatsapp:\"whatsapp_logo_icon_solid\",wordpress_lite_solid:\"wordpress_logo_icon_solid\",wordpress_solid:\"wordpress_logo_icon_2_solid\",youtube_solid:\"youtube_logo_icon_solid\",pinterest:\"pinterest_logo_icon_solid\",reddit:\"reddit_logo_icon_solid\",five_star_line:\"star_rating_line\",rightAngleBold:\"arrow_right_next_forward_chevron_line\",leftAngleBold:\"arrow_left_previous_backward_chevron_line\",reset_left_line:\"refresh_reset_cycle_loop_infinity_line\",hamicon_1:\"hamicon_1_line\",hamicon_2:\"hemicon_2_line\",hamicon_3:\"hemicon_3_line\",hamicon_4:\"hamicon_5_line\",hamicon_5:\"hemicon_2_solid\",hamicon_6:\"hamicon_6_line\"});const l=i.toObject(),s=((0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"#070707\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),l.skype_logo_icon_solid,l.link_chains_line,l.facebook_logo_icon_solid,l.twitter_x_logo_icon_line,l.tiktok_logo_icon_circle_line,l.tiktok_logo_icon_solid,l.instagram_logo_icon_solid,l.linkedin_logo_icon_solid,l.whatsapp_logo_icon_solid,l.wordpress_logo_icon_solid,l.wordpress_logo_icon_2_solid,l.youtube_logo_icon_solid,l.pinterest_logo_icon_solid,l.reddit_logo_icon_solid,l.google_logo_icon_solid,l.link_chains_line,l.share_social_solid,i.toCurrentIconObj(),l)},1900:(e,t,n)=>{\"use strict\";n.d(t,{e:()=>r});var a=n(7294);const r={add_plus_shopping_cart_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M13.745 7.5v4M11.75 9.505h4\"})),android_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6.5 9.5a5.5 5.5 0 1 1 11 0V17a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2V9.5ZM20 11v6M4 11v6\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"m14 4 1.5-2M10 4 8.5 2m-2 8.5h11m-8 8.5v3m5.5-3v3M10.49 8h.01m2.99 0h.01\"})),angry_emoji_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7 9.5c1 0 2.69.254 2.964 1.231m0 0A.988.988 0 0 1 10 11c0 1.5-2.072-.037-.036-.269ZM17 9.5c-1 0-2.69.254-2.964 1.231m0 0A.99.99 0 0 0 14 11c0 1.5 2.072-.037.036-.269Z\"}),(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8 17c1.5-3 6.5-3 8 0\"})),apple_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M19.489 8.963c-.114.089-2.127 1.23-2.127 3.768 0 2.936 2.561 3.975 2.638 4-.012.064-.407 1.423-1.35 2.808-.841 1.219-1.72 2.435-3.056 2.435-1.337 0-1.68-.781-3.223-.781-1.504 0-2.039.807-3.261.807-1.223 0-2.075-1.128-3.056-2.512C4.918 17.86 4 15.335 4 12.938 4 9.09 6.484 7.05 8.93 7.05c1.298 0 2.381.859 3.197.859.776 0 1.987-.91 3.465-.91.56 0 2.572.051 3.897 1.963ZM14.59 4.415c.533-.64.91-1.527.91-2.415 0-.123-.01-.248-.033-.349-.867.033-1.9.585-2.522 1.315-.489.561-.945 1.45-.945 2.349 0 .135.022.27.033.314.055.01.144.022.233.022.778 0 1.758-.527 2.323-1.236Z\"})),arrow_down_bottom_downward_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15.5 13 12 16.5m0 0L8.5 13m3.5 3.5v-9\"})),arrow_down_bottom_downward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m3.5 12 8.5 8.5m0 0 8.5-8.5M12 20.5v-17\"})),arrow_down_bottom_left_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 6v12m0 0h12M6 18 18 6\"})),arrow_down_bottom_right_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M18 6v12m0 0H6m12 0L6 6\"})),arrow_down_dropdown_maximize_chevron_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m6 9 6 6 6-6\"})),arrow_left_backward_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M11 15.5 7.5 12m0 0L11 8.5M7.5 12h9\"})),arrow_left_backward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 20.5 3.5 12m0 0L12 3.5M3.5 12h17\"})),arrow_left_forward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m12 20.5 8.5-8.5m0 0L12 3.5m8.5 8.5h-17\"})),arrow_left_previous_backward_chevron_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m15 18-6-6 6-6\"})),arrow_move_down_left_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 6v3a4 4 0 0 1-4 4H2m0 0 5 5m-5-5 5-5\"})),arrow_move_down_right_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 6v3a4 4 0 0 0 4 4h16m0 0-5 5m5-5-5-5\"})),arrow_move_up_left_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 18v-3a4 4 0 0 0-4-4H2m0 0 5-5m-5 5 5 5\"})),arrow_move_up_right_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 18v-3a4 4 0 0 1 4-4h16m0 0-5-5m5 5-5 5\"})),arrow_right_forward_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m13 8.5 3.5 3.5m0 0L13 15.5m3.5-3.5h-9\"})),arrow_right_next_forward_chevron_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m9 18 6-6-6-6\"})),arrow_up_dropdown_minimize_chevron_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m18 15-6-6-6 6\"})),arrow_up_top_left_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 18V6m0 0h12M6 6l12 12\"})),arrow_up_top_right_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M18 18V6m0 0H6m12 0L6 18\"})),arrow_up_top_upward_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.5 11 12 7.5m0 0 3.5 3.5M12 7.5v9\"})),arrow_up_top_upward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3.5 12 12 3.5m0 0 8.5 8.5M12 3.5v17\"})),at_a_mail_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16 8v7a2 2 0 0 0 2 2 4 4 0 0 0 4-4v-1c0-5.523-4.477-10-10-10S2 6.477 2 12s4.477 10 10 10c1.821 0 3.53-.487 5-1.338M16 12a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z\"})),author_user_human_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"7\",r:\"4\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4.5 20.533A6.533 6.533 0 0 1 11.033 14h1.934a6.533 6.533 0 0 1 6.533 6.533.467.467 0 0 1-.467.467H4.967a.467.467 0 0 1-.467-.467Z\"})),author_user_human_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16.5 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 20.5a8 8 0 1 0-16 0\"})),author_user_human_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"7\",r:\"4\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 21v-3a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v3\"})),author_user_human_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"7\",r:\"4\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 13.5c-3.283 0-6.156 1.585-7.728 3.776C2.984 19.07 4.791 21 7 21h10c2.209 0 4.015-1.93 2.727-3.724C18.155 15.086 15.283 13.5 12 13.5Z\"})),book_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M9.5 18.5v-3.092a3 3 0 0 1 .504-1.664l1.219-1.828a.934.934 0 0 1 1.554 0l1.22 1.828a3 3 0 0 1 .503 1.664V18.5m-5-2.5h5\"})),book_reading_time_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7 19h9M4 19V7a3 3 0 0 1 3-3h3M4 19a3 3 0 0 0 3 3h11M4 19a3 3 0 0 1 3-3h11v-4\"}),(0,a.createElement)(\"circle\",{cx:\"14.5\",cy:\"7.5\",r:\"5.5\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M14.5 5v3l2 1\"})),calendar_date_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18M8 13.5h.01M8 17h.01M12 13.5h.01M12 17h.01M16 13.5h.01M16 17h.01\"})),calendar_date_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 3h15v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 3h15l-3.595 13.032a2 2 0 0 1-1.928 1.468H3.313a1 1 0 0 1-.964-1.266L6 3Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M11 13.5 12.5 8l-2 1m-1 4.5h3m4-12-.5 3m-2.5-3-.5 3m-2.5-3-.5 3\"})),calendar_date_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18\"})),calendar_date_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM7.5 2v3M12 2v3m4.5-3v3M8 13.5h.01M8 10h.01M8 17h.01M12 13.5h.01M12 10h.01M12 17h.01M16 13.5h.01M16 10h.01M16 17h.01\"})),caret_up_top_triangle_angle_arrow_upward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12.8 6.067a1 1 0 0 0-1.6 0l-7 9.333A1 1 0 0 0 5 17h14a1 1 0 0 0 .8-1.6l-7-9.333Z\"})),category_book_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 11h-5v3h5M7.5 15.5h3m-3 3h3\"})),category_file_documents_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16.5 7H5a2 2 0 1 1 0-4h16v6.5L19.5 11v7h-3\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5v16h13.5V7m-10 7.5h3m-3 3h3\"})),category_file_documents_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M5 20h16a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12Zm0 0H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h11.172a2 2 0 0 1 1.414.586L19 7\"})),category_file_documents_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M21 20H6a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h7.586a1 1 0 0 0 .707-.293l2.414-2.414A1 1 0 0 1 17.414 7H21a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M20 7V5a1 1 0 0 0-1-1h-3.586a1 1 0 0 0-.707.293l-2.414 2.414a1 1 0 0 1-.707.293H3a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h2\"})),category_file_documents_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 20V5a1 1 0 0 1 1-1h5.586a1 1 0 0 1 .707.293L11.5 6.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8 6.5h10a2 2 0 0 1 2 2V11M6 11l-4 9h16l4-9H6Z\"})),clock_reading_time_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 6v6l4 2\"})),clock_reading_time_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M12 2v1.5M2 12h1.5M12 22v-1.5M22 12h-1.5M13 13 9.5 9.5M11 13l5-5\"})),clock_reading_time_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 13.5V16a6 6 0 0 1-6 6H2v-7a6 6 0 0 1 6-6h1\"}),(0,a.createElement)(\"circle\",{cx:\"15.5\",cy:\"8.5\",r:\"6.5\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15.5 5.111V9l2 1.111M6 15h3m-3 3h7\"})),confused_emoji_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.5 10v1.5m7-1.5v1.5M9 17c.778-.839 3.267-2.516 7-1.845\"})),correct_save_check_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m8 12.5 2.5 2.5L16 9\"})),correct_save_check_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m4.5 13 5 5 10-12\"})),cross_close_x_minimize_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m8 8 8 8m0-8-8 8\"})),cross_x_close_minimize_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"m6 6 6 6m0 0 6 6m-6-6 6-6m-6 6-6 6\"})),desktop_monitor_computer_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2ZM8 21h8m-4-4v4m0-7.5h.01\"})),dot_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Z\",clipRule:\"evenodd\"})),download_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 15v4c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2v-4m-4-6-5 5-5-5m5 3.8V2.5\"})),download_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 13v8m0 0-2.5-2.5M12 21l2.5-2.5\"})),facebook_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M16.5 8H14a2 2 0 0 0-2 2v11m-2-7h5\"})),google_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m21.882 10.459-.103-.428h-9.485v3.938h5.667c-.588 2.741-3.318 4.184-5.549 4.184-1.623 0-3.333-.67-4.465-1.746a6.25 6.25 0 0 1-1.4-2.021 6.152 6.152 0 0 1-.502-2.393c0-1.66.76-3.318 1.865-4.41 1.106-1.091 2.776-1.702 4.437-1.702 1.902 0 3.264.99 3.774 1.442l2.853-2.784C18.137 3.818 15.838 2 12.254 2 9.49 2 6.84 3.039 4.903 4.933 2.99 6.8 2 9.497 2 12s.937 5.066 2.79 6.946C6.77 20.952 9.574 22 12.46 22c2.627 0 5.117-1.01 6.892-2.842 1.745-1.803 2.647-4.3 2.647-6.915 0-1.101-.113-1.755-.118-1.784Z\"})),growth_increase_up_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m20.2 7.8-7.7 7.7-4-4-5.7 5.7\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15 7h6v6\"})),hamicon_5_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M5 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 20a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"})),hamicon_6_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0-7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"})),happy_emoji_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.5 8v1.5m7-1.5v1.5M12 18a5 5 0 0 0 5-5H7a5 5 0 0 0 5 5Z\"})),heart_love_wishlist_favourite_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m4.098 13.848 7.52 7.519a.542.542 0 0 0 .765 0l7.52-7.52a5.678 5.678 0 0 0 0-8.028 5.047 5.047 0 0 0-7.138 0l-.711.71a.076.076 0 0 1-.107 0l-.711-.71a5.047 5.047 0 0 0-7.138 0 5.678 5.678 0 0 0 0 8.029Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16.334 7.48c.553 0 1.107.21 1.53.633.547.548.78 1.292.695 2.006\"})),hemicon_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M4 5h16M4 12h11.5M4 19h16\"})),hemicon_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M4 5h16M4 12h16M4 19h16\"})),hemicon_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M4 5h16M4 12h11.5M4 19h8\"})),hidden_hide_invisible_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M17.862 5.999c-1.61-1.148-3.576-2-5.86-2-7 0-11 8-11 8s1.764 3.529 5 5.899m3 1.596a9.213 9.213 0 0 0 3 .505c7 0 11-8 11-8s-.867-1.734-2.5-3.587\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M14 9.764A3 3 0 0 0 9.764 14m5.21-1.601a3.002 3.002 0 0 1-2.59 2.577M3.6 20.4 20.4 3.6\"})),home_house_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m3.671 9.403 7-6.222a2 2 0 0 1 2.658 0l7 6.222A2 2 0 0 1 21 10.898V19a2 2 0 0 1-2 2h-3.5a1 1 0 0 1-1-1v-5a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1v5a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2v-8.102a2 2 0 0 1 .671-1.495Z\"})),hourglass_timer_time_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 2v4.93a2 2 0 0 0 .89 1.664l4.555 3.036a1 1 0 0 0 1.11 0l4.554-3.036A2 2 0 0 0 18 6.93V2M6 22v-4.93a2 2 0 0 1 .89-1.664l4.555-3.036a1 1 0 0 1 1.11 0l4.554 3.036A2 2 0 0 1 18 17.07V22\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 2h16M4 22h16M9.5 19.5h5M11 17h2\"})),instagram_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"}),(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"2\",d:\"M17 7h.01\"})),laptop_computer_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3.5 6a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v10h-17V6Zm7 1h3M2 16h20v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-2Z\"})),left_align_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M3 3h18M3 21h8m-8-6h18M3 9h8\"})),left_triangle_angle_arrow_backward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6.067 12.8a1 1 0 0 1 0-1.6l9.333-7A1 1 0 0 1 17 5v14a1 1 0 0 1-1.6.8l-9.333-7Z\"})),linkedin_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M7.75 10.25v6\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"2\",d:\"M7.75 7.75h.01\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M11.25 10.25v6m5 0v-3.5a2.5 2.5 0 0 0-5 0\"})),link_chains_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m14.011 17.028-2.514 2.514a4.977 4.977 0 1 1-7.04-7.04L6.973 9.99M9.99 6.973l2.514-2.514a4.978 4.978 0 1 1 7.04 7.04l-2.515 2.513M9.5 14.5l5-5\"})),location_gps_map_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"10\",r:\"3\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 10.205C20 17.385 12 22 12 22s-8-4.615-8-11.795C4 5.674 7.582 2 12 2s8 3.674 8 8.205Z\"})),long_arrow_up_top_increase_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 21V3m0 0L6 9m6-6 6 6\"})),mail_email_messege_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m6 8 4.8 3.6a2 2 0 0 0 2.4 0L18 8\"})),media_document_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M5 21h14a2 2 0 0 0 2-2V8.828a2 2 0 0 0-.586-1.414l-3.828-3.828A2 2 0 0 0 15.172 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2ZM8 9h4m-4 3h8m-8 3h6\"})),messege_comment_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 7v15l5-4h13a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Zm7 3h4m-4 3h6\"})),messege_comment_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM9 9h4m-4 3h6\"})),messege_comment_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM8 11v-1m4 1v-1m4 1v-1\"})),messege_comment_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z\"})),messege_comment_5_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 12a9 9 0 1 1 9 9H3v-9Zm6-1.5h6m-6 3h6\"})),messege_comment_6_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16 16a4 4 0 0 1-4 4H2v-6a4 4 0 0 1 4-4\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 9a5 5 0 0 1 5-5h6a5 5 0 0 1 5 5v7H11a5 5 0 0 1-5-5V9Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M11 8.5h4m-4 3h6\"})),messege_comment_7_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 20c5.523 0 10-3.806 10-8.5S17.523 3 12 3 2 6.806 2 11.5c0 2.78 1.571 5.25 4 6.8v3.2l3.211-1.835A11.66 11.66 0 0 0 12 20Zm-3-9.5h6m-5 3h4\"})),messege_comment_8_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M14.5 18.703c-4.142 0-7.5-3.292-7.5-7.352C7 7.291 10.358 4 14.5 4c4.142 0 7.5 3.291 7.5 7.351 0 2.405-1.178 4.54-3 5.882V20l-2.408-1.587a7.645 7.645 0 0 1-2.092.29Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M9.352 5.55A7.131 7.131 0 0 0 8.5 5.5C4.91 5.5 2 8.174 2 11.473c0 1.954 1.021 3.69 2.6 4.779V18.5l2.087-1.29a7.04 7.04 0 0 0 2.813.166c.169-.024.336-.054.5-.09\"})),messenger_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12c0 1.834.494 3.553 1.355 5.03L2 22l4.818-1.445A9.954 9.954 0 0 0 12 22Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m7 13.75 3-3 3.5 3 3.5-3.5\"})),microsoft_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm9-2v18m-9-9h18\"})),middle_align_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M3 3h18M8 21h8M3 15h18M8 9h8\"})),mobile_smartphone_phone_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M17 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6.5 3h3\"})),pause_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h2.5a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm11.5 0a2 2 0 0 1 2-2H19a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2.5a2 2 0 0 1-2-2V5Z\"})),pinterest_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 11 8 21m1.818-4.5A5 5 0 1 0 7.416 14\"}),(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"})),play_media_video_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 2c5.522 0 10 4.477 10 10s-4.478 10-10 10C6.477 22 2 17.523 2 12S6.477 2 12 2Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m16 12-6-4v8l6-4Z\"})),price_tag_label_category_sale_discount_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12.328 2.5H20.5a1 1 0 0 1 1 1v8.172a2 2 0 0 1-.586 1.414l-8 8a2 2 0 0 1-2.829 0l-7.171-7.172a2 2 0 0 1 0-2.828l8-8a2 2 0 0 1 1.414-.586Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m8 13 3 3\"})),price_tag_offer_sale_coupon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15.5 5.5h-3.672a2 2 0 0 0-1.414.586l-6.5 6.5a2 2 0 0 0 0 2.828l6.171 6.172a2 2 0 0 0 2.829 0l6.5-6.5A2 2 0 0 0 20 13.672V6.5a1 1 0 0 0-1-1h-.5M8 14.5l3 3m-.5-4.5 2 2\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16 9c4.5-2.5 1.655-7.99-2.766-6.817-2.752.73-5.916 1.27-9.234 0\"})),reddit_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M12 9c-4.97 0-9 2.91-9 6.5S7.03 22 12 22s9-2.91 9-6.5S16.97 9 12 9Zm0 0V6a2 2 0 0 1 2-2h3m3.506 9.37a2.25 2.25 0 1 0-2.856-2.93M17 4a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM3.494 13.37a2.25 2.25 0 1 1 2.856-2.93\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M8.5 16.75c1.5 1.5 5.5 1.5 7 0M15 13h.01M9 13h.01\"})),refresh_reset_cycle_loop_infinity_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M21 12a9 9 0 0 1-17 4.127M3 12a9 9 0 0 1 17-4.127M20 3v5h-5M4 21v-5h5\"})),restriction_no_stop_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M5 19 19 5\"})),right_align_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M3 3h18m-8 18h8M3 15h18m-8-6h8\"})),right_triangle_angle_play_arrow_forward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M17.933 12.8a1 1 0 0 0 0-1.6L8.6 4.2A1 1 0 0 0 7 5v14a1 1 0 0 0 1.6.8l9.333-7Z\"})),search_magnify_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm10 2-4.35-4.35\"})),settings_tool_function_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M9.55 2.778A1 1 0 0 1 10.523 2h2.953a1 1 0 0 1 .975.778l.355 1.562a2 2 0 0 0 2.538 1.468l1.627-.5a1 1 0 0 1 1.155.447l1.456 2.464a1 1 0 0 1-.193 1.253l-1.16 1.04a2 2 0 0 0 0 2.978l1.16 1.038a1 1 0 0 1 .193 1.254l-1.456 2.464a1 1 0 0 1-1.155.447l-1.627-.5a2 2 0 0 0-2.538 1.468l-.355 1.56a1 1 0 0 1-.976.779h-2.952a1 1 0 0 1-.975-.778l-.355-1.562a2 2 0 0 0-2.538-1.468l-1.628.5a1 1 0 0 1-1.154-.446l-1.456-2.464a1 1 0 0 1 .193-1.254l1.16-1.038a2 2 0 0 0 0-2.979L2.61 9.472a1 1 0 0 1-.194-1.253l1.456-2.464a1 1 0 0 1 1.155-.447l1.628.5A2 2 0 0 0 9.194 4.34l.355-1.562Z\"}),(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"3\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"})),share_social_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.968 10.591a3.15 3.15 0 1 0 0 2.818m0-2.818c.212.424.332.902.332 1.409s-.12.985-.332 1.409m0-2.818 7.013-3.507M8.968 13.41l7.013 3.507m0-9.832a2.7 2.7 0 1 0 4.637-2.769 2.7 2.7 0 0 0-4.637 2.77Zm0 9.832a2.7 2.7 0 1 0 4.637 2.769 2.7 2.7 0 0 0-4.637-2.77Z\"})),shopping_cart_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5\"})),skype_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 3c-.415 0-.823.028-1.223.082a5.5 5.5 0 0 0-7.695 7.695 9 9 0 0 0 10.14 10.14 5.5 5.5 0 0 0 7.695-7.695A9 9 0 0 0 12 3Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15 10c0-1-1-2-3-2s-3 1-3 2c0 2.5 6 1.5 6 4 0 1-1 2-3 2s-3-1-3-2\"})),smile_emoji_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.5 8.5V10m7-1.5V10m-8.271 4a5.002 5.002 0 0 0 9.542 0\"})),social_community_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M14.632 5.032a8.446 8.446 0 0 1 5.79 8.024 8.5 8.5 0 0 1-.18 1.74M9.368 5.031a8.446 8.446 0 0 0-5.79 8.024c.001.596.063 1.178.18 1.74m13.915 4.5c.458.387 1.05.62 1.695.62A2.635 2.635 0 0 0 22 17.279a2.635 2.635 0 0 0-2.632-2.64 2.635 2.635 0 0 0-2.631 2.64c0 .81.364 1.534.936 2.018Zm0 0A8.378 8.378 0 0 1 12 21.5a8.378 8.378 0 0 1-5.673-2.204m0 0a2.636 2.636 0 0 0 .936-2.018 2.635 2.635 0 0 0-2.631-2.64A2.635 2.635 0 0 0 2 17.279a2.635 2.635 0 0 0 2.632 2.639c.645 0 1.237-.234 1.695-.62ZM14.632 5.14A2.635 2.635 0 0 1 12 7.778a2.635 2.635 0 0 1-2.632-2.64A2.635 2.635 0 0 1 12 2.5a2.635 2.635 0 0 1 2.632 2.639Z\"})),square_rounded_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"})),star_rating_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.579\",d:\"M11.016 3.125c.387-.833 1.58-.833 1.968 0l2.136 4.602c.158.34.482.573.856.617l5.067.597c.918.108 1.286 1.233.608 1.856l-3.748 3.444a1.07 1.07 0 0 0-.326.998l.994 4.974c.18.9-.785 1.595-1.592 1.147l-4.45-2.475a1.09 1.09 0 0 0-1.059 0L7.02 21.36c-.806.448-1.771-.247-1.591-1.147l.994-4.974a1.07 1.07 0 0 0-.326-.998l-3.749-3.444c-.677-.623-.309-1.748.609-1.856l5.067-.597c.374-.044.698-.278.856-.617l2.136-4.602Z\"})),stopwatch_reading_time_timer_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M21 13a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 7.5V13l3.5 2.5M12 4V1.5m-2 0h4M21 6l-2-2\"})),tablet_ipad_pad_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6 3h.01\"})),tag_bookmark_save_favourite_mark_discount_sale_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 4v18l6.8-5.1a2 2 0 0 1 2.4 0L20 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2Z\"})),tiktok_logo_icon_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208\"})),tiktok_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208\"})),triangle_rounded_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997Z\"})),triangle_shape_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 20 12 3l10 17H2Z\"})),twitter_x_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548\"})),upload_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 21v-8m0 0-2.5 2.5M12 13l2.5 2.5\"})),view_count_show_visible_eye_open_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 15a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z\"})),view_count_show_visible_eye_open_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z\"})),view_count_show_visible_eye_open_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M1 12c6-8.667 16-8.667 22 0-6 8.667-16 8.667-22 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M18 12a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15 12a3 3 0 0 0-3-3\"})),view_count_show_visible_eye_open_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 9c-1.996-3.913-6-6-10-6S3.996 5.087 2 9\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 21a7 7 0 0 0 6.308-10.038 2.5 2.5 0 1 1-3.27-3.27A7 7 0 1 0 12 21Z\"})),view_count_show_visible_eye_open_5_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 17a5 5 0 0 0 5-5h-5V7a5 5 0 0 0 0 10Z\"})),warning_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm0-14v4.5m0 3v.5\"})),warning_triangle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997ZM12 9v4.5m0 3v.5\"})),whatsapp_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12.806 14.02c-.849-.282-1.532-.824-1.768-1.06-.236-.235-.778-.919-1.06-1.767l1.202-1.91L9.553 5.96c-.943 0-3.04.778-3.323 3.323-.283 2.546 1.532 5.068 2.475 6.01.942.944 3.464 2.759 6.01 2.476 2.546-.283 3.323-2.381 3.323-3.324l-3.323-1.626-1.91 1.202Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10a9.953 9.953 0 0 1-5.183-1.446L2 22l1.445-4.818A9.953 9.953 0 0 1 2 12C2 6.477 6.477 2 12 2Z\"})),wordpress_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7 7.454H3.818\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-6.137 9.318 5.228-13.636m-3.864 9.772-4.09-10m-3.41 0 5.455 13.864\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.117 17.322 6.09 7.454H3.223m-.303.605 5.217 13.26\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M9.045 7.454h5M8.59 21.318l3.183-8.409M19.5 5.41h-.334a2.273 2.273 0 0 0-2.123 3.083l1.775 4.643\"})),youtube_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10 15V9l5 3-5 3Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M19.193 4.352c-3.627-.47-10.402-.47-14.213.004-1.456.18-2.57 1.446-2.757 3.168-.297 2.719-.297 6.233 0 8.952.188 1.722 1.301 2.988 2.757 3.168 3.811.473 10.586.475 14.213.004 1.36-.177 2.375-1.365 2.562-2.972.327-2.811.327-6.541 0-9.352-.187-1.607-1.202-2.795-2.562-2.972Z\"})),full_screen_corners_out_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3 8.5V5C3 3.89543 3.89543 3 5 3H8.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M3 15.5V19C3 20.1046 3.89543 21 5 21H8.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M21 8V5C21 3.89543 20.1046 3 19 3H15.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M21 15.5V19C21 20.1046 20.1046 21 19 21H15.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"})),zoom_in_magnifying_glass_plus_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M21.0004 21L16.6504 16.65\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M10.995 8V14M8 11.005L14 11.005\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"})),zoom_out_magnifying_glass_minus_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M21.0004 21L16.6504 16.65\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8 11.005L14 11.005\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"})),plugin_connect_socket_integration_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M21.5 2.5L18.5 5.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M18 12.9999L20.5858 10.4142C21.3668 9.63311 21.3668 8.36678 20.5858 7.58573L16.4142 3.41416C15.6332 2.63311 14.3668 2.63311 13.5858 3.41416L11 5.99994\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M5.9997 11L3.41391 13.5858C2.63286 14.3668 2.63286 15.6332 3.41391 16.4142L7.58549 20.5858C8.36653 21.3668 9.63286 21.3668 10.4139 20.5858L12.9997 18\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M2.5 21.5L5.5 18.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4.5 9.5L14.5 19.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M9.5 4.5L19.5 14.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M7 12L9.5 9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12 17L14.5 14.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),rocket_fly_boost_launch_pro_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M20.8991 2.5H21.5V3.10086C21.5 6.28346 19.7357 9.83572 17.4853 12.0862L13.5714 16L8 10.4286L11.9139 6.51473C14.1643 4.26429 17.7165 2.5 20.8991 2.5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M18.5 11L19 17L15 21L13.5 16\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8 10.5L3 9L7 5L13 5.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M9 15L3.5 20.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M11.5 17.5L9 20\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.5 12.5L4 15\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.4902 6.5H17.5002\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),gallery_indicator_image_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3 5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V13C21 14.1046 20.1046 15 19 15H5C3.89543 15 3 14.1046 3 13V5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M21.0002 12.6716L19.4144 11.0858C18.6333 10.3047 17.367 10.3047 16.5859 11.0858L15.9144 11.7574C15.1333 12.5384 13.867 12.5384 13.0859 11.7574L10.4144 9.08579C9.63332 8.30474 8.36699 8.30474 7.58594 9.08579L3.33594 13.3358\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M16.25 7C16.25 7.82843 15.5784 8.5 14.75 8.5C13.9216 8.5 13.25 7.82843 13.25 7C13.25 6.17157 13.9216 5.5 14.75 5.5C15.5784 5.5 16.25 6.17157 16.25 7Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M3 18.5C3 17.9477 3.44772 17.5 4 17.5H6.25C6.80228 17.5 7.25 17.9477 7.25 18.5V20C7.25 20.5523 6.80228 21 6.25 21H4C3.44772 21 3 20.5523 3 20V18.5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M10 18.5C10 17.9477 10.4477 17.5 11 17.5H13.25C13.8023 17.5 14.25 17.9477 14.25 18.5V20C14.25 20.5523 13.8023 21 13.25 21H11C10.4477 21 10 20.5523 10 20V18.5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M17 18.5C17 17.9477 17.4477 17.5 18 17.5H20C20.5523 17.5 21 17.9477 21 18.5V20C21 20.5523 20.5523 21 20 21H18C17.4477 21 17 20.5523 17 20V18.5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"})),unlocked_open_security_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4 12C4 10.8954 4.89543 10 6 10H18C19.1046 10 20 10.8954 20 12V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V12Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17 10V7C17 4.23858 14.7615 2 12 2C10.1493 2 8.53347 3.0055 7.66895 4.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12 15.5L12 16.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),unlink_link_break_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M14.0113 17.0281L11.4972 19.5421C9.55336 21.486 6.40175 21.486 4.45789 19.5421C2.51404 17.5983 2.51404 14.4467 4.45789 12.5028L6.97193 9.98877M9.98875 6.97192L12.5028 4.45789C14.4466 2.51404 17.5983 2.51404 19.5421 4.45789C21.486 6.40174 21.486 9.55334 19.5421 11.4972L17.0281 14.0112\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M9.5 14.5L14.5 9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M3 5L19 21\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"})),plus_circle_zoom_in_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12 7V12.0001M12 12.0001V17M12 12.0001H17M12 12.0001H7\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),sort_descending_order_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4 18.5H17\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4 6.5H9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4 12.5H11.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17 14.5V5.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M13 9.5L17 5.5L21 9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),sort_ascending_order_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4 5.5H17\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4 17.5H9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4 11.5H11.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17 9.5V18.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M13 14.5L17 18.5L21 14.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),right_circle_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8 12.5L10.5 15L16 9\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),plus:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z\"})),subtract:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}))}},5404:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294);const r={};r.moon=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M22 14.27A10.14 10.14 0 1 1 9.73 2 8.84 8.84 0 0 0 22 14.27Z\"})),r.moon_line=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M8.17 4.53A9.54 9.54 0 0 0 19.5 15.69a8.26 8.26 0 0 1-7.76 4.29 8.36 8.36 0 0 1-7.71-7.7 8.23 8.23 0 0 1 4.15-7.76m1-2.52c-.16 0-.32.03-.48.09a10.28 10.28 0 0 0 3.56 19.9c4.47 0 8.27-2.85 9.67-6.84a1.36 1.36 0 0 0-1.27-1.82c-.15 0-.31.03-.47.1a7.48 7.48 0 0 1-3.41.43 7.59 7.59 0 0 1-6.33-10.04A1.36 1.36 0 0 0 9.17 2Z\"})),r.sun=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\"},(0,a.createElement)(\"g\",null,(0,a.createElement)(\"path\",{d:\"M12 18.36a6.36 6.36 0 1 0 0-12.72 6.36 6.36 0 0 0 0 12.72ZM12.98.96V2.8c0 .53-.43.95-.97.95h-.02a.96.96 0 0 1-.97-.95V.96c0-.53.43-.96.96-.96h.05c.53 0 .96.43.96.96ZM4.89 3.5l1.3 1.3c.38.38.37.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.37 0l-1.3-1.3a.96.96 0 0 1 0-1.35l.04-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .95.43.95.97v.02c0 .53-.42.97-.95.97H.96a.95.95 0 0 1-.96-.96v-.05c0-.53.43-.96.96-.96ZM3.5 19.11l1.3-1.3a.96.96 0 0 1 1.36 0v.01l.02.01c.38.38.39.99 0 1.37l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.04a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.95.97-.95h.02c.53 0 .97.42.97.95v1.84c0 .53-.43.96-.96.96h-.05a.95.95 0 0 1-.96-.96ZM19.11 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.37 0l1.3 1.3c.38.37.38.98 0 1.35l-.04.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.95-.97v-.02c0-.53.42-.97.95-.97h1.84c.53 0 .96.43.96.96v.05c0 .53-.43.96-.96.96ZM20.5 4.89l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1 0-1.37l1.3-1.3a.96.96 0 0 1 1.35 0l.04.04c.37.37.37.98 0 1.35Z\"})),(0,a.createElement)(\"defs\",null)),r.sun_line=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 7.64a4.36 4.36 0 1 1-.01 8.73A4.36 4.36 0 0 1 12 7.64Zm0-2a6.35 6.35 0 1 0 0 12.71 6.35 6.35 0 0 0 0-12.7ZM12.98.96V2.8c0 .53-.43.96-.96.96h-.03a.96.96 0 0 1-.97-.96V.96c0-.53.43-.96.96-.96h.06c.52 0 .95.43.95.96ZM4.88 3.5l1.3 1.3c.38.38.38.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.36.01L3.5 4.9a.96.96 0 0 1 0-1.35l.03-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .96.43.96.96v.03c0 .53-.42.97-.96.97H.96a.96.96 0 0 1-.96-.96v-.06c0-.52.43-.95.96-.95ZM3.5 19.12l1.3-1.3a.96.96 0 0 1 1.38.02c.38.38.39.99.01 1.36l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.03a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.96.96-.96h.03c.53 0 .97.42.97.96v1.84c0 .53-.43.96-.96.96h-.06a.96.96 0 0 1-.95-.96ZM19.12 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.36-.01l1.3 1.3c.38.37.38.98 0 1.35l-.03.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.96-.96v-.03c0-.53.42-.97.96-.97h1.84c.53 0 .96.43.96.96v.06c0 .52-.43.95-.96.95ZM20.5 4.88l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1-.01-1.36l1.3-1.3a.96.96 0 0 1 1.35 0l.04.03c.38.37.38.98 0 1.35Z\"}));const o=r},3644:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>d});var a=n(7294),r=n(2304),o=n(1383),i=n(3100),l=n(4766),s=n(8949),p=n(356);const c=()=>{const[e,t]=(0,a.useState)({}),[n,i]=(0,a.useState)(!0),[l,c]=(0,a.useState)({status:\"\",messages:[],state:!1}),d={post_list_1:{label:(0,r.__)(\"Post List #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6836\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-1\u002F\",icon:\"post-list-1.svg\"},post_slider_2:{label:(0,r.__)(\"Post Slider #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7487\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-slider-2\u002F\",icon:\"post-slider-2.svg\"},post_list_4:{label:(0,r.__)(\"Post List #4\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6839\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-4\u002F\",icon:\"post-list-4.svg\"},post_slider_1:{label:(0,r.__)(\"Post Slider #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6840\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-slider-1\u002F\",icon:\"post-slider-1.svg\"},post_grid_4:{label:(0,r.__)(\"Post Grid #4\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6832\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-4\u002F\",icon:\"post-grid-4.svg\"},post_module_1:{label:(0,r.__)(\"Post Module #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6825\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-module-1\u002F\",icon:\"post-module-1.svg\"},post_grid_2:{label:(0,r.__)(\"Post Grid #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6830\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-2\u002F\",icon:\"post-grid-2.svg\"},advanced_search:{label:(0,r.__)(\"Search - PostX\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8233\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fsearch-block\",icon:\"advanced-search.svg\"},button_group:{label:(0,r.__)(\"Button Group\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7952\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fbutton-block\u002F\",icon:\"button-group.svg\"}},u=(0,o.t)();(0,a.useEffect)((()=>{m()}),[]);const m=()=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_all_settings\",method:\"POST\",data:{key:\"key\",value:\"value\"}}).then((e=>{e.success&&u.current&&(t(e.settings),i(!1))}))};return(0,a.createElement)(a.Fragment,null,l.state&&(0,a.createElement)(p.Z,{delay:2e3,toastMessages:l,setToastMessages:c}),Object.keys(d).map(((o,i)=>{const l=d[o];let p=!!l.default;return\"\"==e[o]&&(p=\"yes\"==e[o]),(0,a.createElement)(\"div\",{key:o},n?(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-item ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-meta\"},(0,a.createElement)(s.Z,{type:\"custom_size\",c_s:{size1:24,unit1:\"px\",size2:24,unit2:\"px\",br:4}}),(0,a.createElement)(s.Z,{type:\"custom_size\",c_s:{size1:70,unit1:\"px\",size2:24,unit2:\"px\",br:4}})),(0,a.createElement)(\"div\",{className:\"ultp-blocks-control-option ultp-dash-control-options\"},(0,a.createElement)(s.Z,{type:\"custom_size\",c_s:{size1:30,unit1:\"px\",size2:20,unit2:\"px\",br:4}}),(0,a.createElement)(s.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"px\",size2:20,unit2:\"px\",br:20}}))):(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-item ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-meta\"},(0,a.createElement)(\"img\",{className:\"ultp-blocks-item-icon\",src:`${ultp_dashboard_pannel.url}assets\u002Fimg\u002Fblocks\u002F${l.icon}`,alt:l.label}),(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-title\"},l.label)),(0,a.createElement)(\"div\",{className:\"ultp-blocks-control-option ultp-dash-control-options\"},l.live&&(0,a.createElement)(\"a\",{href:l.live,className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},(0,r.__)(\"Demo\",\"ultimate-post\")),(0,a.createElement)(\"input\",{type:\"checkbox\",className:\"ultp-blocks-enable\",id:o,checked:p,onChange:()=>{(n=>{const a=e?.hasOwnProperty(n)&&\"yes\"!=e[n]?\"yes\":\"\";t({...e,[n]:a}),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Faddon_block_action\",method:\"POST\",data:{key:n,value:a}}).then((e=>{e.success&&c({status:\"success\",messages:[e.message],state:!0})}))})(o)}}),(0,a.createElement)(\"label\",{className:\"ultp-control__label\",htmlFor:o}))))})))},d=()=>{const e=[{label:(0,r.__)(\"50+ Custom Layouts\",\"ultimate-post\")},{label:(0,r.__)(\"250+ Pattern\",\"ultimate-post\")},{label:(0,r.__)(\"45+ Custom Post Blocks\",\"ultimate-post\")},{label:(0,r.__)(\"Pin-point Customization\",\"ultimate-post\")},{label:(0,r.__)(\"Dynamic Site Building\",\"ultimate-post\")},{label:(0,r.__)(\"Limitless Flexibility\",\"ultimate-post\")}],[t,n]=(0,a.useState)(!1);return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-container-grid\"},(0,a.createElement)(\"div\",{className:\"ultp-dashboard-content\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-banner ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-left\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-title\"},\"Create Engaging Sites in Minutes…\"),(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-description\"},\"Thrilled to improve your WordPress blog? PostX supports you in creating and customizing stunning blogs! Design smooth, powerful websites - no compromises, unlimited options.\"),(0,a.createElement)(\"a\",{className:\"ultp-primary-alter-button\",onClick:e=>{e.preventDefault(),window.location.replace(\"#startersites\")}},(0,r.__)(\"Build with Starter Sites\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-right\"},t?(0,a.createElement)(\"iframe\",{className:\"ultp-dash-banner-right-video\",src:\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FFYgSe7kgb6M?autoplay=1\",allow:\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; fullscreen\",title:\"Ultimate Post\"}):(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-right-img\"},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdashboard_banner_right.png\",alt:(0,r.__)(\"Ultimate Post\",\"ultimate-post\")}),(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-right-play-button\",onClick:()=>{n(!0)}},l.ZP.rightFillAngle)))),(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-heading\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-heading-title\"},(0,r.__)(\"Blocks\",\"ultimate-post\")),(0,a.createElement)(\"a\",{onClick:e=>{e.preventDefault(),window.location.replace(\"#blocks\")},className:\"ultp-transparent-button\"},(0,r.__)(\"View All\",\"ultimate-post\"),l.ZP.angle_top_right_line)),(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-items\"},(0,a.createElement)(c,null))),!ultp_dashboard_pannel?.active&&(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left-title\"},(0,r.__)(\"Go Pro & Unlock More! 🚀\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left-description\"},(0,r.__)(\"Harness the true power of PostX: build, customize, and launch dynamic WordPress sites with unrestricted creative control - no code, no hassle.\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left-keyfeature\"},e.map(((e,t)=>(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left-keyfeature-item\",key:e.label},l.ZP.right_circle_solid,e.label)))),(0,a.createElement)(\"a\",{href:(0,i.Z)(\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-topbar&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing\"),target:\"_blank\",rel:\"noreferrer\",className:\"ultp-primary-alter-button\"},l.ZP.rocket,\"Upgrade to Pro\")),(0,a.createElement)(\"img\",{className:\"ultp-dash-pro-promo-right-img\",src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdashboard_pro_promo.png\",alt:\"Ultimate Post\"}))),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-features\"},(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-item ultp-sidebar-starter-sites\"},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fsidebar-starter-sites.png\",alt:\"Starter Sites Make it Easy\"}),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-title\"},\"Starter Sites Make it Easy\"),(0,a.createElement)(\"span\",{className:\"ultp-sidebar-card-description\"},\"Create awesome-looking webpages without any code with PostX starter sites - simply import the starter template of your choice. Drag, drop, and deploy your site in minutes.\"),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-buttons\"},(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fstarter-sites\u002F?utm_source=db-postx-started&utm_medium=starter-sites&utm_campaign=postx-dashboard&pux_link=dbstartersite\",className:\"ultp-primary-button\",target:\"_blank\",rel:\"noreferrer\"},l.ZP.angle_top_right_line,\"Explore Starter Templates\"))),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-item ultp-sidebar-community\"},(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-title\"},\"PostX Community\"),(0,a.createElement)(\"span\",{className:\"ultp-sidebar-card-description\"},\"Join the Facebook community of PostX to stay up-to-date and share your thoughts and feedback.\"),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-buttons\"},(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fgutenbergpostx\",className:\"ultp-primary-button\",target:\"_blank\",rel:\"noreferrer\"},l.ZP.facebook,\"Join PostX Community\")))))}},4482:(e,t,n)=>{\"use strict\";n.d(t,{DC:()=>p,WO:()=>m,ac:()=>u,cs:()=>d,gR:()=>f,hx:()=>c,u4:()=>l});var a=n(7294),r=n(4766),o=n(3100),i=n(4190);n(3479);const{__}=wp.i18n,l={preloader_style:{type:\"select\",label:__(\"Preloader Style\",\"ultimate-post\"),options:{style1:__(\"Preloader Style 1\",\"ultimate-post\"),style2:__(\"Preloader Style 2\",\"ultimate-post\")},default:\"style1\",desc:__(\"Select Preloader Style.\",\"ultimate-post\"),tooltip:__(\"PostX has two preloader variations that display while loading PostX's blocks if you enable the preloader for that blocks.\",\"ultimate-post\")},container_width:{type:\"number\",label:__(\"Container Width\",\"ultimate-post\"),default:\"1140\",desc:__(\"Change Container Width of the Page Template(PostX Template).\",\"ultimate-post\"),tooltip:__(\"Here you can increase or decrease the container width. It will be applicable when you create any dynamic template with the PostX Builder or select PostX's Template while creating a page.\",\"ultimate-post\")},hide_import_btn:{type:\"switch\",label:__(\"Hide Template Kits Button\",\"ultimate-post\"),default:\"\",desc:__(\"Hide Template Kits Button from toolbar of the Gutenberg Editor.\",\"ultimate-post\"),tooltip:__(\"Click on the check box to hide the Template Kits button from posts, pages, and the Builder of PostX.\",\"ultimate-post\")},disable_image_size:{type:\"switch\",label:__(\"Disable Image Size\",\"ultimate-post\"),default:\"\",desc:__(\"Disable Image Size of the Plugins.\",\"ultimate-post\"),tooltip:__(\"Click on the check box to turn off the PostX's size of the post images.\",\"ultimate-post\")},disable_view_cookies:{type:\"switch\",label:__(\"Disable All Cookies\",\"ultimate-post\"),default:\"\",desc:__(\"Disable All Frontend Cookies (Cookies Used for Post View Count).\",\"ultimate-post\"),tooltip:__(\"Click on the check box to restrict PostX from collecting cookies. PostX contains cookies to display the post view count.\",\"ultimate-post\")},disable_google_font:{type:\"switchButton\",label:__(\"Disable All Google Fonts\",\"ultimate-post\"),default:\"\",desc:__(\"Disable All Google Fonts From Frontend and Backend PostX Blocks.\",\"ultimate-post\"),tooltip:__(\"Click the check box to disable all Google Fonts from PostX's typography options.\",\"ultimate-post\")}},s=({multikey:e,value:t,multiValue:n})=>{var o;const[i,l]=(0,a.useState)([...n]),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(null!==(o=t.options)&&void 0!==o?o:{}),[u,m]=(0,a.useState)(\"\"),f=e=>{e.target.closest(\".ultp-ms-container\")||p(!1)};return(0,a.useEffect)((()=>(document.addEventListener(\"mousedown\",f),()=>document.removeEventListener(\"mousedown\",f))),[]),(0,a.useEffect)((()=>{setTimeout((()=>{const e=Object.fromEntries(Object.entries(t.options).filter((([e,t])=>t.toLowerCase().includes(u.toLowerCase())||e.toLowerCase().includes(u.toLowerCase()))));d(e)}),500)}),[u]),(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"input\",{type:\"hidden\",name:e,value:i,\"data-customprop\":\"custom_multiselect\"}),(0,a.createElement)(\"div\",{className:\"ultp-ms-container\"},(0,a.createElement)(\"div\",{onClick:()=>p(!s),className:\"ultp-ms-results-con cursor\"},(0,a.createElement)(\"div\",{className:\"ultp-ms-results\"},i.length>0?i?.map(((e,n)=>(0,a.createElement)(\"span\",{key:n,className:\"ultp-ms-selected\"},t.options[e],(0,a.createElement)(\"span\",{className:\"ultp-ms-remove cursor\",onClick:t=>{var n;t.stopPropagation(),n=e,l(i.filter((e=>e!=n)))}},r.ZP.close_circle_line)))):(0,a.createElement)(\"span\",null,__(\"Select options\"))),(0,a.createElement)(\"span\",{onClick:()=>p(!s),className:\"ultp-ms-results-collapse cursor\"},r.ZP.collapse_bottom_line)),s&&c&&(0,a.createElement)(\"div\",{className:\"ultp-ms-options\"},(0,a.createElement)(\"input\",{type:\"text\",className:\"ultp-multiselect-search\",value:u,onChange:e=>m(e.target.value)}),Object.keys(c)?.map(((e,n)=>(0,a.createElement)(\"span\",{className:\"ultp-ms-option cursor\",onClick:()=>(e=>{if(-1==i.indexOf(e)&&\"all\"!=e&&l([...i,e]),\"all\"===e){const e=Object.fromEntries(Object.entries(t.options).filter((([e,t])=>!t.toLowerCase().includes(\"all\"))));l(Object.keys(e))}})(e),key:n,value:e},c[e]))))))},p=(e,t)=>(0,a.createElement)(a.Fragment,null,Object.keys(e).map(((n,r)=>{const o=e[n];return(0,a.createElement)(\"span\",{key:r},\"hidden\"==o.type&&(0,a.createElement)(\"input\",{key:n,type:\"hidden\",name:n,defaultValue:o.value}),\"hidden\"!=o.type&&(0,a.createElement)(a.Fragment,null,\"heading\"==o.type&&(0,a.createElement)(\"div\",{className:\"ultp_h2 ultp-settings-heading\"},o.label)&&(0,a.createElement)(a.Fragment,null,o.desc&&(0,a.createElement)(\"div\",{className:\"ultp-settings-subheading\"},o.desc)),\"heading\"!=o.type&&(0,a.createElement)(\"div\",{className:\"ultp-settings-wrap\"},o.label&&(0,a.createElement)(\"strong\",null,o.label,o.tooltip&&(0,a.createElement)(i.Z,{content:o.tooltip},(0,a.createElement)(\"span\",{className:\" cursor dashicons dashicons-editor-help\"}))),(0,a.createElement)(\"div\",{className:\"ultp-settings-field-wrap\"},((e,t,n)=>{const r=n.hasOwnProperty(e)?n[e]:t.default?t.default:\"multiselect\"==t.type?[]:\"\";switch(t.type){case\"select\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"select\",{defaultValue:r,name:e,id:e},Object.keys(t.options).map(((e,n)=>(0,a.createElement)(\"option\",{key:n,value:e},t.options[e])))),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"radio\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"div\",{className:\"ultp-field-radio\"},(0,a.createElement)(\"div\",{className:\"ultp-field-radio-items\"},Object.keys(t.options).map(((n,o)=>(0,a.createElement)(\"div\",{key:o,className:\"ultp-field-radio-item\"},(0,a.createElement)(\"input\",{type:\"radio\",id:n,name:e,value:n,defaultChecked:n===r}),(0,a.createElement)(\"label\",{htmlFor:n},t.options[n])))))),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"color\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"input\",{type:\"text\",defaultValue:r,className:\"ultp-color-picker\"}),(0,a.createElement)(\"span\",{className:\"ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"text\",name:e,className:\"ultp-color-code\",defaultValue:r})),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"number\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"number\",name:e,defaultValue:r}),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"switch\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-field-inline\"},(0,a.createElement)(\"input\",{value:\"yes\",type:\"checkbox\",name:e,defaultChecked:\"yes\"==r||\"on\"==r}),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"switchButton\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-field-inline\"},(0,a.createElement)(\"input\",{type:\"checkbox\",value:\"yes\",name:e,defaultChecked:\"yes\"==r||\"on\"==r}),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"span\",{id:\"postx-regenerate-css\",className:`ultp-upgrade-pro-btn cursor ${\"yes\"==r?\"active\":\"\"} `},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-admin-generic\"}),(0,a.createElement)(\"span\",{className:\"ultp-text\"},__(\"Re-Generate Font Files\",\"ultimate-post\")))));case\"multiselect\":const n=Array.isArray(r)?r:[r];return(0,a.createElement)(s,{multikey:e,value:t,multiValue:n});case\"text\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"text\",name:e,defaultValue:r}),(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc,t.link&&(0,a.createElement)(\"a\",{className:\"settingsLink\",target:\"_blank\",href:t.link,rel:\"noreferrer\"},t.linkText)));case\"textarea\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"textarea\",{name:e,defaultValue:r}),(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc,t.link&&(0,a.createElement)(\"a\",{className:\"settingsLink\",target:\"_blank\",href:t.link,rel:\"noreferrer\"},t.linkText)));case\"shortcode\":return(0,a.createElement)(\"code\",{className:\"ultp-shortcode-copy\"},\"[\",t.value,\"]\")}})(n,o,t)))))}))),c=(e,t,n=\"\")=>{const r=n||__(\"Upgrade to Pro\",\"ultimate-post\");return(0,a.createElement)(\"a\",{href:(0,o.Z)(e,t,\"\"),className:\"ultp-upgrade-pro-btn\",target:\"_blank\",rel:\"noreferrer\"},r,\"  ➤\")},d=({tags:e,func:t,data:n})=>(0,a.createElement)(\"div\",{className:\"ultp-addon-lock-container-overlay\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-lock-container\"},(0,a.createElement)(\"div\",{className:\"ultp-popup-unlock\"},(0,a.createElement)(\"img\",{src:`${ultp_option_panel.url}\u002Fassets\u002Fimg\u002Fdashboard\u002F${n.icon}`,alt:\"lock icon\"}),(0,a.createElement)(\"div\",{className:\"title ultp_h5\"},n?.title),(0,a.createElement)(\"div\",{className:\"ultp-description\"},n?.description),c(\"\",e),(0,a.createElement)(\"button\",{onClick:()=>{t(!1)},className:\"ultp-popup-close\"},r.ZP.close_line)))),u=(e,t,n,r=\"\")=>(0,a.createElement)(\"a\",{href:(0,o.Z)(e,t,\"\"),className:\"ultp-primary-button \"+r,target:\"_blank\",rel:\"noreferrer\"},n),m=(e,t,n,r=\"\")=>(0,a.createElement)(\"a\",{href:(0,o.Z)(e,t,\"\"),className:\"ultp-secondary-button \"+r,target:\"_blank\",rel:\"noreferrer\"},n),f=({proBtnTags:e,FRBtnTag:t})=>{const[n,i]=(0,a.useState)([{id:\"go-pro-unlock-more\",title:\"Go Pro & Unlock More! 🚀\",description:\"Unlock the full potential of PostX to create and manage professional News Magazines and Blogging sites with complete creative freedom.\",features:[__(\"Access to 40+ Blocks\",\"ultimate-post\"),__(\"Access to 250+ Patterns\",\"ultimate-post\"),__(\"All Starter Packs Access\",\"ultimate-post\"),__(\"Advanced Query Builder\",\"ultimate-post\"),__(\"Ajax Filter and Pagination\",\"ultimate-post\"),__(\"Custom Fonts with Typography\",\"ultimate-post\")],visible:!ultp_option_panel.active,buttons:[{type:\"primary-alter\",icon:r.ZP.rocket,url:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-setting&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing\",label:\"Upgrade Pro\"},{type:\"transparent-alter\",label:\"Free VS Pro\"}]},{id:\"feature-request\",title:\"Feature Request\",description:\"Can't find your desired feature? Let us know your requirements. We will definitely take them into our consideration.\",buttons:[{type:\"primary\",url:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Froadmap\u002F?utm_source=postx-menu&utm_medium=DB-roadmap&utm_campaign=postx-dashboard\",label:\"Request a Feature\"}],visible:!0},{id:\"web-community\",title:\"PostX Community\",description:\"Join the Facebook community of PostX to stay up-to-date and share your thoughts and feedback.\",buttons:[{type:\"primary\",icon:r.ZP.facebook,url:\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fgutenbergpostx\",label:\"Join PostX Community\"}],visible:!0},{id:\"news-tips\",title:\"News, Tips & Update\",linkIcon:r.ZP.rightArrowLg,links:[{text:\"Getting Started with PostX\",url:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fgetting-started\u002F?utm_source=postx-menu&utm_medium=DB-news-postx_GT&utm_campaign=postx-dashboard\"},{text:\"How to use the Dynamic Site Builder\",url:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F?utm_source=postx-menu&utm_medium=DB-news-DSB_guide&utm_campaign=postx-dashboard\"},{text:\"How to use the PostX Features\",url:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fpostx-features\u002F?utm_source=postx-menu&utm_medium=DB-news-feature_guide&utm_campaign=postx-dashboard\"},{text:\"PostX Blog\",url:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcategory\u002Fpostx\u002F?utm_source=postx-menu&utm_medium=DB-news-blog&utm_campaign=postx-dashboard\"}],visible:!0},{id:\"rating\",title:\"Show your love\",description:\"Enjoying PostX? Give us a 5 Star review to support our ongoing work.\",buttons:[{type:\"primary\",url:\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Fultimate-post\u002Freviews\u002F\",label:\"Rate it Now\"}],visible:!0}]);return(0,a.createElement)(\"div\",{className:\"ultp-sidebar-features\"},!ultp_option_panel.active&&new Date>=new Date(\"2024-03-07\")&&new Date\u003C=new Date(\"2024-03-13\")&&(0,a.createElement)(\"div\",{className:\"ultp-dashboard-pro-features ultp-dash-item-con\"},(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=postx-ad&utm_medium=sidebar-banner&utm_campaign=postx-dashboard#pricing\",target:\"_blank\",style:{textDecoration:\"none !important\",display:\"block\"},rel:\"noreferrer\"},(0,a.createElement)(\"img\",{src:ultp_option_panel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdb_sidebar.jpg\",style:{width:\"100%\",height:\"100%\",borderRadius:\"8px\"},alt:\"40k+ Banner\"}))),n.map(((e,t)=>!1!==e.visible&&(0,a.createElement)(\"div\",{key:t,className:`ultp-sidebar-card-item ultp-sidebar-${e.id}`},\"banner\"===e.type?(0,a.createElement)(\"a\",{href:e.bannerUrl,target:\"_blank\",rel:\"noreferrer\",style:{textDecoration:\"none !important\",display:\"block\"}},(0,a.createElement)(\"img\",{src:e.imageUrl,style:{width:\"100%\",height:\"100%\",borderRadius:\"8px\"},alt:e.alt})):(0,a.createElement)(a.Fragment,null,e.title&&(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-title\"},__(e.title,\"ultimate-post\")),e.description&&(0,a.createElement)(\"span\",{className:\"ultp-sidebar-card-description\"},__(e.description,\"ultimate-post\")),e.features?(0,a.createElement)(\"div\",{className:\"ultp-pro-feature-lists\"},e.features.map(((e,t)=>(0,a.createElement)(\"span\",{key:t},r.ZP.right_circle_line,\" \",__(e,\"ultimate-post\"))))):e.links?(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-links\"},e.links.map(((t,n)=>(0,a.createElement)(\"a\",{className:\"ultp-sidebar-card-link\",key:n,target:\"_blank\",href:t.url,rel:\"noreferrer\"},e.linkIcon&&(0,a.createElement)(\"span\",null,e.linkIcon),__(t.text,\"ultimate-post\"))))):null,e.buttons&&e.buttons.length>0&&(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-buttons\"},e.buttons.map((e=>(({type:e=\"primary\",icon:t,url:n,tags:r,label:i,classname:l=\"\"})=>(0,a.createElement)(\"a\",{href:(0,o.Z)(n,r,\"\"),className:\"ultp-\"+e+\"-button \"+l,target:\"_blank\",rel:\"noreferrer\",key:i+Math.random()},t&&t,i))({type:e.type,icon:e.icon,url:e.url,tags:e.tags||\"\",label:e.label,classname:e.classname||\"\"})))))))))}},860:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>m});var a=n(7294),r=n(1383),o=n(7763),i=n(4766),l=n(4482),s=n(1389),p=n(8949),c=n(356),d=(n(6129),n(1370)),u=n(6731);const{__}=wp.i18n,m=({integrations:e,generalDiscount:t={}})=>{const[n,m]=(0,a.useState)(\"\"),[f,h]=(0,a.useState)(!1),[g,v]=(0,a.useState)({}),[_,w]=(0,a.useState)(\"\"),[b,x]=(0,a.useState)({state:!1,status:\"\"}),[y,k]=(0,a.useState)(\"\"),[E,C]=(0,a.useState)(!1);let S=d.q;const M=ultp_dashboard_pannel.addons_settings,L=Object.entries(S);L.sort(((e,t)=>e[1].position-t[1].position)),S=Object.fromEntries(L),(0,a.useEffect)((()=>(P(),document.addEventListener(\"mousedown\",A),()=>document.removeEventListener(\"mousedown\",A))),[]);const N=[{label:__(\"45+ Blocks\",\"ultimate-post\"),descp:__(\"PostX comes with over 45 Gutenberg blocks\",\"ultimate-post\")},{label:__(\"250+ Patterns\",\"ultimate-post\"),descp:__(\"Get full access to all ready post sections\",\"ultimate-post\")},{label:__(\"50+ Starter Sites\",\"ultimate-post\"),descp:__(\"Pre-built websites are ready to import in one click\",\"ultimate-post\")},{label:__(\"Global Styles\",\"ultimate-post\"),descp:__(\"Control the full website’s colors and typography globally\",\"ultimate-post\")},{label:__(\"Dark\u002FLight Mode\",\"ultimate-post\"),descp:__(\"Let your readers switch between light and dark modes\",\"ultimate-post\")},{label:__(\"Advanced Query Builder\",\"ultimate-post\"),descp:__(\"Display\u002Freorder posts, pages, and custom post types\",\"ultimate-post\")},{label:__(\"Dynamic Site Builder\",\"ultimate-post\"),descp:__(\"Dynamically create templates for essential pages\",\"ultimate-post\")},{label:__(\"Ajax Powered Filter\",\"ultimate-post\"),descp:__(\"Let your visitors filter posts by categories and tags\",\"ultimate-post\")},{label:__(\"Advanced Post Slider\",\"ultimate-post\"),descp:__(\"Display posts in engaging sliders and carousels\",\"ultimate-post\")},{label:__(\"SEO Meta Support\",\"ultimate-post\"),descp:__(\"Replace the post excerpts with meta descriptions\",\"ultimate-post\")},{label:__(\"Custom Fonts\",\"ultimate-post\"),descp:__(\"Upload custom fonts per your requirements\",\"ultimate-post\")},{label:__(\"Ajax Powered Pagination\",\"ultimate-post\"),descp:__(\"PostX comes with three types of Ajax pagination\",\"ultimate-post\")}],Z=(0,r.t)(),P=()=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_all_settings\",method:\"POST\",data:{key:\"key\",value:\"value\"}}).then((e=>{e.success&&Z.current&&v(e.settings)}))},z=e=>{C(!0),e.preventDefault();const t=new FormData(e.target),n={};for(const a of e.target.elements)a.name&&(\"checkbox\"!==a.type||a.checked?\"radio\"===a.type?a.checked&&(n[a.name]=a.value):\"select-multiple\"===a.type?n[a.name]=t.getAll(a.name):\"custom_multiselect\"==a.dataset.customprop?n[a.name]=a.value?a.value.split(\",\"):[]:n[a.name]=a.value:n[a.name]=\"\");wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fsave_plugin_settings\",method:\"POST\",data:{settings:n,action:\"action\",type:\"type\"}}).then((e=>{C(!1),e.success&&x({status:\"success\",messages:[e.message],state:!0})}))},A=e=>{e.target.closest(\".ultp-addon-settings-popup\")||m(\"\")},B=[__(\"Access to Pro Starter Site Templates\",\"ultimate-post\"),__(\"Access to All Pro Features\",\"ultimate-post\"),__(\"Fully Unlocked Site Builder\",\"ultimate-post\"),__(\"And more…\",\"ultimate-post\")],H=[{label:__(\"Add-Ons\",\"ultimate-post\"),value:\"addons\",integration:!1},{label:__(\"Integration Add-Ons\",\"ultimate-post\"),value:\"integration-addons\",integration:!0}];return(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-dashboard-addons-container \"+(Object.keys(g).length>0?\"\":\" skeletonOverflow\")},!e&&(0,a.createElement)(\"div\",{className:\"ultp-gettingstart-message\"},(0,a.createElement)(\"div\",{className:\"ultp-start-left\"},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdashboard_banner.jpg\",alt:\"Banner\"}),(0,a.createElement)(\"div\",{className:\"ultp-start-content\"},(0,a.createElement)(\"span\",{className:\"ultp-start-text\"},__(\"Enjoy Pro-level Ready Templates!\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-start-btns\"},(0,l.ac)(\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fstarter-sites\u002F?utm_source=db-postx-started&utm_medium=starter-sites&utm_campaign=postx-dashboard&pux_link=dbstartersite\",\"\",__(\"Explore Starter Sites\",\"ultimate-post\"),\"\"),(0,l.WO)(\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-started&utm_medium=details&utm_campaign=postx-dashboard\",\"\",__(\"Plugin Details\",\"ultimate-post\"),\"\")))),(0,a.createElement)(\"div\",{className:\"ultp-start-right\"},(0,a.createElement)(\"div\",{className:\"ultp-dashborad-banner\",style:{cursor:\"pointer\"},onClick:()=>k((0,a.createElement)(\"iframe\",{width:\"1100\",height:\"500\",src:\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FFYgSe7kgb6M?autoplay=1\",title:__(\"How to add Product Filter to WooCommerce Shop Page\",\"ultimate-post\"),allow:\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\",allowFullScreen:!0}))},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdashboard_right_banner.jpg\",className:\"ultp-banner-img\"}),(0,a.createElement)(\"div\",{className:\"ultp-play-icon-container\"},(0,a.createElement)(\"img\",{className:\"ultp-play-icon\",src:ultp_dashboard_pannel.url+\"\u002Fassets\u002Fimg\u002Fdashboard\u002Fplay.png\",alt:__(\"Play\",\"ultimate-post\")}),(0,a.createElement)(\"span\",{className:\"ultp-animate\"}))),(0,a.createElement)(\"div\",{className:\"ultp-dashboard-content\"},ultp_dashboard_pannel.active?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-title _pro\"},__(\"What Do You Need?\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-description _pro\"},__(\"Do you have something in mind you want to share? Both we and our users would like to hear about it. Share your ideas on our Facebook group and let us know what you need.\",\"ultimate-post\")),(0,l.ac)(\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fgutenbergpostx\",\"\",\"Share Ideas\",\"\")):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-title\"},__(\"Do More with\",\"ultimate-post\"),\" \",(0,a.createElement)(\"span\",{style:{color:\"var(--postx-primary-color)\"}},__(\"PRO:\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"ultp-description\"},__(\"Unlock powerful customizations with PostX Pro:\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-lists\"},B.map(((e,t)=>(0,a.createElement)(\"span\",{className:\"ultp-list\",key:t},o.Z.rightMark,\" \",e)))),(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-started&utm_medium=upgrade-pro-hero&utm_campaign=postx-dashboard#pricing\",className:\"ultp-upgrade-btn\",target:\"_blank\",rel:\"noreferrer\"},__(\"Upgrade to Pro\",\"ultimate-post\"),o.Z.rocketPro))))),f&&(0,l.cs)({tags:\"addons_popup\",func:e=>{h(e)},data:{icon:\"addon_lock.svg\",title:__(\"Unlock All Addons of PostX\",\"ultimate-post\"),description:__(\"Sorry, this addon is not available in the free version of PostX. Please upgrade to a pro plan to unlock all pro addons and features of PostX.\",\"ultimate-post\")}}),(0,a.createElement)(\"div\",{className:\"ultp-addons-container-grid\"},(0,a.createElement)(\"div\",{className:\"ultp-addons-items\"},H.map((t=>(0,a.createElement)(\"div\",{key:t.value,className:\"ultp-addon-group\"},(0,a.createElement)(\"div\",{className:\"ultp_h2 ultp-addon-parent-heading\"},t.label),Object.keys(g).length>0?((e=!1)=>(0,a.createElement)(\"div\",{className:\"ultp-addons-grid \"+(e?\"\":\"ultp-gs\")},Object.keys(S).map(((t,r)=>{const o=S[t];if(e&&!o.integration||!e&&o.integration)return;let s=!0;return s=!(\"true\"!=g[t]&&1!=g[t]||o.is_pro&&!ultp_dashboard_pannel.active),(0,a.createElement)(\"div\",{className:\"ultp-addon-item\",key:t},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-contents\",style:{paddingBottom:o.notice?\"10px\":\"auto\"}},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-name\"},(0,a.createElement)(\"img\",{src:`${ultp_dashboard_pannel.url}assets\u002Fimg\u002Faddons\u002F${o.img}`,alt:o.name}),(0,a.createElement)(\"div\",{className:\"ultp_h6 ultp-addon-item-title\"},o.name,o?.new&&(0,a.createElement)(\"span\",{className:\"ultp-new-tag\"},\"New\")),(0,a.createElement)(\"div\",{className:\"ultp-dash-control-options ultp-ml-auto\"},(0,a.createElement)(\"input\",{type:\"checkbox\",datatype:t,className:\"ultp-addons-enable \"+(o.is_pro&&!ultp_dashboard_pannel.active?\"disabled\":\"\"),id:t,checked:s,onChange:()=>{(e=>{const t=\"true\"==g[e]?\"false\":\"true\";!ultp_dashboard_pannel.active&&S[e].is_pro?(v({...g,[e]:\"false\"}),h(!0)):(v({...g,[e]:t}),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Faddon_block_action\",method:\"POST\",data:{key:e,value:t}}).then((n=>{n.success&&([\"ultp_templates\",\"ultp_custom_font\",\"ultp_builder\"].includes(e)&&(document.getElementById(\"postx-submenu-\"+e.replace(\"templates\",\"saved_templates\").replace(\"ultp_\",\"\").replace(\"_\",\"-\")).style.display=\"true\"==t?\"block\":\"none\",document.getElementById(e.replace(\"templates\",\"saved_templates\").replace(\"ultp_\",\"ultp-dasnav-\").replace(\"_\",\"-\")).style.display=\"true\"==t?\"\":\"none\"),setTimeout((function(){x({status:\"success\",messages:[n.message],state:!0})}),400))})))})(t)}}),(0,a.createElement)(\"label\",{htmlFor:t,className:\"ultp-control__label\"},o.is_pro&&!ultp_dashboard_pannel.active&&(0,a.createElement)(\"span\",{className:\"dashicons dashicons-lock\"})))),(0,a.createElement)(\"div\",{className:\"ultp-description\"},o.desc,o.notice&&(0,a.createElement)(\"div\",{className:\"ultp-description-notice\"},o.notice)),o.required&&o.required?.name&&(0,a.createElement)(\"span\",{className:\"ultp-plugin-required\"},\" \",__(\"This addon required this plugin:\",\"ultimate-post\"),o.required.name),o.is_pro&&!ultp_dashboard_pannel.active&&(0,a.createElement)(\"div\",{onClick:()=>{h(!0)},className:\"ultp-pro-lock\"},(0,a.createElement)(\"span\",null,\"PRO\"))),(0,a.createElement)(\"div\",{className:\"ultp-addon-item-actions ultp-dash-control-options\"},(0,a.createElement)(\"div\",{className:\"ultp-docs-action\"},o.live&&(0,a.createElement)(\"a\",{href:o.live.replace(\"live_demo_args\",`?utm_source=${e?\"db-postx-integration\":\"db-postx-addons\"}&utm_medium=${e?\"\":t+\"-\"}demo&utm_campaign=postx-dashboard`),className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},i.ZP.desktop,__(\"Demo\",\"ultimate-post\")),o.docs&&(0,a.createElement)(\"a\",{href:o.docs+(e?\"?utm_source=db-postx-integration\":\"?utm_source=db-postx-addons\")+\"&utm_medium=docs&utm_campaign=postx-dashboard\",className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},i.ZP.media_document,__(\"Docs\",\"ultimate-post\")),o.video&&(0,a.createElement)(\"a\",{href:o.video,className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},i.ZP.rightAngle,__(\"Video\",\"ultimate-post\")),M[t]&&(0,a.createElement)(\"div\",{className:\"ultp-popup-setting\",onClick:()=>{m(t)}},i.ZP.setting),n==t&&(0,a.createElement)(\"div\",{className:\"ultp-addon-settings\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-settings-popup\"},M[t]&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-addon-settings-title\"},(0,a.createElement)(\"div\",{className:\"ultp_h6\"},o.name,\": \",__(\"Settings\",\"ultimate-post\"))),(0,a.createElement)(\"form\",{onSubmit:z,action:\"\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-settings-body\"},\"ultp_frontend_submission\"===t&&(0,a.createElement)(u.Z,{attr:M[t].attr,settings:g,setSettings:v}),\"ultp_frontend_submission\"!=t&&(0,l.DC)(M[t].attr,g),(0,a.createElement)(\"div\",{className:\"ultp-data-message\"})),(0,a.createElement)(\"div\",{className:\"ultp-addon-settings-footer\"},(0,a.createElement)(\"button\",{type:\"submit\",className:\"cursor ultp-primary-button \"+(E?\"onloading\":\"\")},__(\"Save Settings\",\"ultimate-post\"),E&&i.ZP.refresh))),(0,a.createElement)(\"button\",{onClick:()=>{m(\"\")},className:\"ultp-popup-close\"})))))))}))))(!!t.integration):(0,a.createElement)(\"div\",{className:\"ultp-addons-grid \"+(e?\"\":\"ultp-gs\")},Array(6).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{key:t,className:\"ultp-addon-item\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-contents\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-name\"},(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"px\",size2:50,unit2:\"px\",br:18}}),(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:190,unit1:\"px\",size2:28,unit2:\"px\",br:4}})),(0,a.createElement)(\"div\",{className:\"ultp-description\"},(0,a.createElement)(p.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:100,unit1:\"%\",size2:14,unit2:\"px\",br:2}}),(0,a.createElement)(p.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:70,unit1:\"%\",size2:14,unit2:\"px\",br:2}}))),(0,a.createElement)(\"div\",{className:\"ultp-addon-item-actions ultp-dash-control-options\"},(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"px\",size2:20,unit2:\"px\",br:8}}),(0,a.createElement)(\"div\",{className:\"ultp-docs-action\"},(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:22,unit2:\"px\",br:2}}))))))),!e&&(0,a.createElement)(\"div\",{className:\"ultp_dash_key_features\"},(0,a.createElement)(\"div\",{className:\"ultp_h2\"},__(\"Key Features of PostX\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp_dash_key_features_content\"},N?.map(((e,t)=>(0,a.createElement)(\"div\",{key:t},(0,a.createElement)(\"div\",{className:\"ultp_dash_key_features_label\"},e.label),(0,a.createElement)(\"div\",{className:\"ultp-description\"},e.descp)))))))))),e&&(0,a.createElement)(l.gR,{FRBtnTag:\"settingsFR\",proBtnTags:\"postx_dashboard_settings\"}))),b.state&&(0,a.createElement)(c.Z,{delay:2e3,toastMessages:b,setToastMessages:x}),y&&(0,a.createElement)(s.Z,{title:__(\"Postx Intro\",\"ultimate-post\"),modalContent:y,setModalContent:k}))}},6731:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>i});var a=n(7294),r=n(4190),o=n(4766);const{__}=wp.i18n,i=({attr:e,settings:t,setSettings:n})=>{const i=e,l=({multikey:e,value:r,multiValue:i})=>{var l;const[s,p]=(0,a.useState)([...i]),[c,d]=(0,a.useState)(!1),[u,m]=(0,a.useState)(null!==(l=r.options)&&void 0!==l?l:{}),[f,h]=(0,a.useState)(\"\"),g=e=>{e.target.closest(\".ultp-ms-container\")||d(!1)};return(0,a.useEffect)((()=>(document.addEventListener(\"mousedown\",g),()=>document.removeEventListener(\"mousedown\",g))),[]),(0,a.useEffect)((()=>{setTimeout((()=>{const e=Object.fromEntries(Object.entries(r.options).filter((([e,t])=>t.toLowerCase().includes(f.toLowerCase())||e.toLowerCase().includes(f.toLowerCase()))));m(e)}),500)}),[f]),(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"input\",{type:\"hidden\",name:e,value:s,\"data-customprop\":\"custom_multiselect\"}),(0,a.createElement)(\"div\",{className:\"ultp-ms-container\"},(0,a.createElement)(\"div\",{onClick:()=>d(!c),className:\"ultp-ms-results-con cursor\"},(0,a.createElement)(\"div\",{className:\"ultp-ms-results\"},s.length>0?s?.map(((i,l)=>(0,a.createElement)(\"span\",{key:l,className:\"ultp-ms-selected\"},r.options[i],(0,a.createElement)(\"span\",{className:\"ultp-ms-remove cursor\",onClick:a=>{a.stopPropagation(),(a=>{const r=s.filter((e=>e!=a));p(r),n({...t,[e]:r})})(i)}},o.ZP.close_circle_line)))):(0,a.createElement)(\"span\",null,__(\"Select options\"))),(0,a.createElement)(\"span\",{onClick:()=>d(!c),className:\"ultp-ms-results-collapse cursor\"},o.ZP.collapse_bottom_line)),c&&u&&(0,a.createElement)(\"div\",{className:\"ultp-ms-options\"},(0,a.createElement)(\"input\",{type:\"text\",className:\"ultp-multiselect-search\",value:f,onChange:e=>h(e.target.value)}),Object.keys(u)?.map(((o,i)=>(0,a.createElement)(\"span\",{className:\"ultp-ms-option cursor\",onClick:()=>(a=>{let o=[];if(-1==s.indexOf(a)&&\"all\"!=a&&(o=[...s,a]),\"all\"===a){const e=Object.fromEntries(Object.entries(r.options).filter((([e,t])=>!t.toLowerCase().includes(\"all\"))));o=Object.keys(e)}p(o),n({...t,[e]:o})})(o),key:i,value:o},u[o]))))))};return(0,a.createElement)(a.Fragment,null,Object.keys(i).map(((e,o)=>{const s=i[e];return(0,a.createElement)(\"span\",{key:o},\"hidden\"==s.type&&(0,a.createElement)(\"input\",{key:e,type:\"hidden\",name:e,defaultValue:s.value}),\"hidden\"!=s.type&&(0,a.createElement)(a.Fragment,null,\"heading\"==s.type&&(0,a.createElement)(\"h2\",{className:\"ultp-settings-heading\"},s.label)&&(0,a.createElement)(a.Fragment,null,s.desc&&(0,a.createElement)(\"div\",{className:\"ultp-settings-subheading\"},s.desc)),\"heading\"!=s.type&&((e,n)=>{let a=!0;return n.hasOwnProperty(\"depends_on\")&&n.depends_on.forEach((e=>{\"==\"==e.condition&&t[e.key]!=e.value&&(a=!1)})),a})(0,s)&&(0,a.createElement)(\"div\",{className:\"ultp-settings-wrap\"},s.label&&(0,a.createElement)(\"strong\",null,s.label,s.tooltip&&(0,a.createElement)(r.Z,{placement:\"bottom\",content:s.tooltip},(0,a.createElement)(\"span\",{className:\" cursor dashicons dashicons-editor-help\"}))),(0,a.createElement)(\"div\",{className:\"ultp-settings-field-wrap\"},((e,r,o)=>{const i=t.hasOwnProperty(e)?t[e]:t.default?t.default:\"multiselect\"==r.type?[]:\"\",s=e=>{n((t=>\"checkbox\"===e.target.type?{...t,[e.target.name]:e.target.checked?\"yes\":\"no\"}:{...t,[e.target.name]:e.target.value}))};switch(r.type){case\"select\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"select\",{defaultValue:i,name:e,id:e,onChange:s},Object.keys(r.options).map(((e,t)=>(0,a.createElement)(\"option\",{key:t,value:e},r.options[e])))),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"radio\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"div\",{className:\"ultp-field-radio\"},(0,a.createElement)(\"div\",{className:\"ultp-field-radio-items\"},Object.keys(r.options).map(((t,n)=>(0,a.createElement)(\"div\",{key:n,className:\"ultp-field-radio-item\"},(0,a.createElement)(\"input\",{type:\"radio\",id:t,name:e,value:t,defaultChecked:t==i,onChange:s}),(0,a.createElement)(\"label\",{htmlFor:t},r.options[t])))))),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"color\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"input\",{type:\"text\",defaultValue:i,className:\"ultp-color-picker\"}),(0,a.createElement)(\"span\",{className:\"ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"text\",name:e,className:\"ultp-color-code\",defaultValue:i})),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"number\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"number\",name:e,defaultValue:i,onChange:s}),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"switch\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-field-inline\"},(0,a.createElement)(\"input\",{value:\"yes\",type:\"checkbox\",name:e,defaultChecked:\"yes\"==i||\"on\"==i,onChange:s}),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"switchButton\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-field-inline\"},(0,a.createElement)(\"input\",{type:\"checkbox\",value:\"yes\",name:e,defaultChecked:\"yes\"==i||\"on\"==i}),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"span\",{id:\"postx-regenerate-css\",className:`ultp-upgrade-pro-btn cursor ${\"yes\"==i?\"active\":\"\"} `},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-admin-generic\"}),(0,a.createElement)(\"span\",{className:\"ultp-text\"},__(\"Re-Generate Font Files\",\"ultimate-post\")))));case\"multiselect\":const t=Array.isArray(i)?i:[i];return(0,a.createElement)(l,{multikey:e,value:r,multiValue:t});case\"text\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"text\",name:e,defaultValue:i,onChange:s}),(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc,r.link&&(0,a.createElement)(\"a\",{className:\"settingsLink\",target:\"_blank\",href:r.link,rel:\"noreferrer\"},r.linkText)));case\"textarea\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"textarea\",{name:e,defaultValue:i}),(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc,r.link&&(0,a.createElement)(\"a\",{className:\"settingsLink\",target:\"_blank\",href:r.link,rel:\"noreferrer\"},r.linkText)));case\"shortcode\":return(0,a.createElement)(\"code\",{className:\"ultp-shortcode-copy\"},\"[\",r.value,\"]\")}})(e,s)))))})))}},1370:(e,t,n)=>{\"use strict\";n.d(t,{q:()=>a});const{__}=wp.i18n,a={ultp_wpbakery:{name:\"WPBakery\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the WPBakery Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"wpbakery.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fwpbakery-page-builder-addon\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=f99NZ6N9uDQ\",position:20,integration:!0},ultp_templates:{name:\"Saved Templates\",desc:__(\"Create unlimited templates by converting Gutenberg blocks into shortcodes to use them anywhere.\",\"ultimate-post\"),img:\"saved-template.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fshortcodes-support\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Faddons\u002Fsave-template\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=6ydwiIp2Jkg\",position:10},ultp_table_of_content:{name:\"Table of Contents\",desc:__(\"It enables a highly customizable block to the Gutenberg blocks library to display the Table of Contents.\",\"ultimate-post\"),img:\"table-of-content.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Ftable-of-content\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Faddons\u002Ftable-of-content\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=xKu_E720MkE\",position:25},ultp_oxygen:{name:\"Oxygen\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Oxygen Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"oxygen.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Foxygen-builder-addon\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=iGik4w3ZEuE\",position:20,integration:!0},ultp_elementor:{name:\"Elementor\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Elementor Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"elementor-icon.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Felementor-addon\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=GJEa2_Tow58\",position:20,integration:!0},ultp_dynamic_content:{name:\"Dynamic Content\",desc:__(\"Insert dynamic, real-time content like excerpts, dates, author names, etc. in PostX blocks.\",\"ultimate-post\"),img:\"dynamic-content.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fpostx-features\u002Fdynamic-content\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcreate-custom-fields-in-wordpress\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=4oeXkHCRVCA\",position:6,notice:\"ACF, Meta Box and Pods (PRO)\",new:!0},ultp_divi:{name:\"Divi\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Divi Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"divi.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fdivi-addon\u002F?utm_source=postx-menu&utm_medium=addons-demo&utm_campaign=postx-dashboard\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=p9RKTYzqU48\",position:20,integration:!0},ultp_custom_font:{name:\"Custom Font\",desc:__(\"It allows you to upload custom fonts and use them on any PostX blocks with all typographical options.\",\"ultimate-post\"),img:\"custom_font.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fwordpress-custom-fonts\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fcustom-fonts\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=tLqUpj_gL-U\",position:7},ultp_bricks_builder:{name:\"Bricks Builder\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Bricks Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"bricks.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fbricks-builder-addon\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=t0ae3TL48u0\",position:20,integration:!0},ultp_beaver_builder:{name:\"Beaver\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Beaver Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"beaver.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fbeaver-builder-addon\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=aLfI0RkJO6g\",position:20,integration:!0},ultp_frontend_submission:{name:\"Front End Post Submission\",desc:__(\"Registered\u002Fguest writers can submit posts from frontend. Admins can easily manage, review, and publish posts.\",\"ultimate-post\"),img:\"frontend_submission.svg\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Ffront-end-post-submission\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Ffront-end-post-submission\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=KofF7BUwNC0\",is_pro:!0,position:6,integration:!1},ultp_category:{name:\"Taxonomy Image & Color\",desc:__(\"It allows you to add category or taxonomy-specific featured images and colors to make them attractive.\",\"ultimate-post\"),is_pro:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fcategory-addon\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Ftaxonomy-image-and-color\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=cd75q-lJIwg\",img:\"category-style.svg\",position:15},ultp_progressbar:{name:\"Progress Bar\",desc:__(\"Display a visual indicator of the reading progression of blog posts and the scrolling progression of pages.\",\"ultimate-post\"),img:\"progressbar.svg\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fprogress-bar\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fprogress-bar\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=QErQoDhWi4c\",is_pro:!0,position:30},ultp_yoast:{name:\"Yoast\",desc:__(\"It allows you to display custom meta descriptions added with the Yoast SEO plugin instead of excerpts.\",\"ultimate-post\"),img:\"yoast.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"Yoast\",slug:\"wordpress-seo\u002Fwp-seo.php\"},position:55,integration:!0},ultp_aioseo:{name:\"All in One SEO\",desc:__(\"It allows you to display custom meta descriptions added with the All in One SEO plugin instead of excerpts.\",\"ultimate-post\"),img:\"aioseo.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"All in One SEO\",slug:\"all-in-one-seo-pack\u002Fall_in_one_seo_pack.php\"},position:35,integration:!0},ultp_rankmath:{name:\"Rank Math\",desc:__(\"It allows you to display custom meta descriptions added with the Rank Math plugin instead of excerpts.\",\"ultimate-post\"),img:\"rankmath.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"Rank Math\",slug:\"seo-by-rank-math\u002Frank-math.php\"},position:40,integration:!0},ultp_seopress:{name:\"SEOPress\",desc:__(\"It allows you to display custom meta descriptions added with the SEOPress plugin instead of excerpts.\",\"ultimate-post\"),img:\"seopress.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"SEOPress\",slug:\"wp-seopress\u002Fseopress.php\"},position:45,integration:!0},ultp_squirrly:{name:\"Squirrly\",desc:__(\"It allows you to display custom meta descriptions added with the Squirrly plugin instead of excerpts.\",\"ultimate-post\"),img:\"squirrly.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"Squirrly\",slug:\"squirrly-seo\u002Fsquirrly.php\"},position:50,integration:!0},ultp_builder:{name:\"Dynamic Site Builder\",desc:__(\"The Gutenberg-based Builder allows users to create dynamic templates for Home and all Archive pages.\",\"ultimate-post\"),img:\"builder-icon.svg\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fgutenberg-site-builder\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=0qQmnUqWcIg\",is_pro:!1,position:5},ultp_chatgpt:{name:\"ChatGPT\",desc:__(\"PostX brings the ChatGPT into the WordPress Dashboard to let you generate content effortlessly.\",\"ultimate-post\"),img:\"ChatGPT.svg\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fchatgpt-addon\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx-chatgpt-wordpress-ai-content-generator\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=NE4BPw4OTAA\",is_pro:!1,position:6}}},7191:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>s});var a=n(7294),r=n(1383),o=n(8949),i=n(356);n(563);const{__}=wp.i18n,l={grid:{label:__(\"Post Grid Blocks\",\"ultimate-post\"),attr:{post_grid_1:{label:__(\"Post Grid #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6829\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-1\u002F\",icon:\"post-grid-1.svg\"},post_grid_2:{label:__(\"Post Grid #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6830\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-2\u002F\",icon:\"post-grid-2.svg\"},post_grid_3:{label:__(\"Post Grid #3\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6831\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-3\u002F\",icon:\"post-grid-3.svg\"},post_grid_4:{label:__(\"Post Grid #4\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6832\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-4\u002F\",icon:\"post-grid-4.svg\"},post_grid_5:{label:__(\"Post Grid #5\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6833\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-5\u002F\",icon:\"post-grid-5.svg\"},post_grid_6:{label:__(\"Post Grid #6\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6834\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-6\u002F\",icon:\"post-grid-6.svg\"},post_grid_7:{label:__(\"Post Grid #7\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6835\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-7\u002F\",icon:\"post-grid-7.svg\"}}},list:{label:__(\"Post List Blocks\",\"ultimate-post\"),attr:{post_list_1:{label:__(\"Post List #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6836\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-1\u002F\",icon:\"post-list-1.svg\"},post_list_2:{label:__(\"Post List #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6837\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-2\u002F\",icon:\"post-list-2.svg\"},post_list_3:{label:__(\"Post List #3\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6838\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-3\u002F\",icon:\"post-list-3.svg\"},post_list_4:{label:__(\"Post List #4\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6839\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-4\u002F\",icon:\"post-list-4.svg\"}}},slider:{label:__(\"Post Slider Blocks\",\"ultimate-post\"),attr:{post_slider_1:{label:__(\"Post Slider #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6840\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-slider-1\u002F\",icon:\"post-slider-1.svg\"},post_slider_2:{label:__(\"Post Slider #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7487\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-slider-2\u002F\",icon:\"post-slider-2.svg\"}}},other:{label:__(\"Others PostX Blocks\",\"ultimate-post\"),attr:{menu:{label:__(\"Menu - PostX\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fintroducing-postx-mega-menu\u002F\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fpostx-menu\u002F\",icon:\"\u002Fmenu\u002Fmenu.svg\"},post_module_1:{label:__(\"Post Module #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6825\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-module-1\u002F\",icon:\"post-module-1.svg\"},post_module_2:{label:__(\"Post Module #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6827\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-module-2\u002F\",icon:\"post-module-2.svg\"},heading:{label:__(\"Heading\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6842\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fheading-blocks\u002F\",icon:\"heading.svg\"},image:{label:__(\"Image\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6843\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fimage-blocks\u002F\",icon:\"image.svg\"},taxonomy:{label:__(\"Taxonomy\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6841\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Ftaxonomy-1\u002F\",icon:\"ultp-taxonomy.svg\"},wrapper:{label:__(\"Wrapper\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6844\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fwrapper\u002F\",icon:\"wrapper.svg\"},news_ticker:{label:__(\"News Ticker\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6845\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fnews-ticker-block\u002F\",icon:\"news-ticker.svg\"},advanced_list:{label:__(\"List - PostX\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7994\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Flist-block\u002F\",icon:\"advanced-list.svg\"},button_group:{label:__(\"Button Group\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7952\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fbutton-block\u002F\",icon:\"button-group.svg\"},row:{label:__(\"Row\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx-row-column-block\u002F\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fpostx-features\u002Frow-column\u002F\",icon:\"row.svg\"},advanced_search:{label:__(\"Search - PostX\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8233\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fsearch-block\",icon:\"advanced-search.svg\"},dark_light:{label:__(\"Dark Light\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8233\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fsearch-block\",icon:\"advanced-search.svg\"},star_ratings:{label:__(\"Star Rating\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8858\",icon:\"star-rating.svg\"},accordion:{label:__(\"Accordion\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8851\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Faccordion-block\u002F\",icon:\"accordion.svg\"},tabs:{label:__(\"Tabs\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid9045\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Ftabs-block\u002F\",icon:\"tabs.svg\"},gallery:{label:__(\"PostX Gallery\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8951\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpostx-gallery-block\u002F\",icon:\"gallery.svg\"},youtube_gallery:{label:__(\"Youtube Gallery\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid9096\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fyoutube-gallery-block\u002F\",icon:\"youtube-gallery.svg\"}}},builder:{label:__(\"Site Builder Blocks\",\"ultimate-post\"),attr:{builder_post_title:{label:__(\"Post Title\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fpost_title.svg\"},builder_advance_post_meta:{label:__(\"Advance Post Meta\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fpost_meta.svg\"},builder_archive_title:{label:__(\"Archive Title\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"archive-title.svg\"},builder_author_box:{label:__(\"Post Author Box\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fauthor_box.svg\"},builder_post_next_previous:{label:__(\"Post Next Previous\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fnext_previous.svg\"},builder_post_author_meta:{label:__(\"Post Author Meta\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fauthor.svg\"},builder_post_breadcrumb:{label:__(\"Post Breadcrumb\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fbreadcrumb.svg\"},builder_post_category:{label:__(\"Post Category\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fcategory.svg\"},builder_post_comment_count:{label:__(\"Post Comment Count\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fcomment_count.svg\"},builder_post_comments:{label:__(\"Post Comments\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fcomments.svg\"},builder_post_content:{label:__(\"Post Content\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fcontent.svg\"},builder_post_date_meta:{label:__(\"Post Date Meta\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fpost_date.svg\"},builder_post_excerpt:{label:__(\"Post Excerpt\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fexcerpt.svg\"},builder_post_featured_image:{label:__(\"Post Featured Image\u002FVideo\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Ffeatured_img.svg\"},builder_post_reading_time:{label:__(\"Post Reading Time\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Freading_time.svg\"},builder_post_social_share:{label:__(\"Post Social Share\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fshare.svg\"},builder_post_tag:{label:__(\"Post Tag\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fpost_tag.svg\"},builder_post_view_count:{label:__(\"Post View Count\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fview_count.svg\"}}}},s=()=>{const[e,t]=(0,a.useState)({}),[n,s]=(0,a.useState)({state:!1,status:\"\"}),[p,c]=(0,a.useState)(!1),d=(0,r.t)();(0,a.useEffect)((()=>{u()}),[]);const u=()=>{c(!0),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_all_settings\",method:\"POST\",data:{key:\"key\",value:\"value\"}}).then((e=>{e.success&&d.current&&(t(e.settings),c(!1))}))};return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-blocks-container\"},n.state&&(0,a.createElement)(i.Z,{delay:2e3,toastMessages:n,setToastMessages:s}),Object.keys(l).map(((n,r)=>{const i=l[n];return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-blocks-group\",key:r},p?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:180,unit1:\"px\",size2:32,unit2:\"px\",br:4}}),(0,a.createElement)(\"div\",{className:\"ultp-dashboard-group-blocks\"},Array(3).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{className:\"ultp-dashboard-group-blocks-item ultp-dash-item-con\",key:t},(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-meta\"},(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:22,unit1:\"px\",size2:25,unit2:\"px\",br:4}}),(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"px\",size2:20,unit2:\"px\",br:2}})),(0,a.createElement)(\"div\",{className:\"ultp-blocks-control-option ultp-dash-control-options\"},(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:46,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:36,unit1:\"px\",size2:20,unit2:\"px\",br:8}}))))))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp_h5\"},i.label),(0,a.createElement)(\"div\",{className:\"ultp-dashboard-group-blocks\"},Object.keys(i.attr).map(((n,r)=>{const o=i.attr[n];let l=!!o.default;return\"\"==e[n]&&(l=\"yes\"==e[n]),(0,a.createElement)(\"div\",{className:\"ultp-dashboard-group-blocks-item ultp-dash-item-con\",key:r},(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-meta\"},(0,a.createElement)(\"img\",{src:`${ultp_dashboard_pannel.url}assets\u002Fimg\u002Fblocks\u002F${o.icon}`,alt:o.label}),(0,a.createElement)(\"div\",null,o.label)),(0,a.createElement)(\"div\",{className:\"ultp-blocks-control-option ultp-dash-control-options\"},o.docs&&(0,a.createElement)(\"a\",{href:o.docs+\"?utm_source=db-postx-blocks&utm_medium=docs&utm_campaign=postx-dashboard\",className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"div\",{className:\"dashicons dashicons-media-document\"}),__(\"Docs\",\"ultimate-post\")),o.live&&(0,a.createElement)(\"a\",{href:o.live,className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"div\",{className:\"dashicons dashicons-external\"}),__(\"Live\",\"ultimate-post\")),(0,a.createElement)(\"input\",{type:\"checkbox\",className:\"ultp-blocks-enable\",id:n,checked:l,onChange:()=>{(n=>{const a=e?.hasOwnProperty(n)&&\"yes\"!=e[n]?\"yes\":\"\";t({...e,[n]:a}),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Faddon_block_action\",method:\"POST\",data:{key:n,value:a}}).then((e=>{e.success&&s({status:\"success\",messages:[e.message],state:!0})}))})(n)}}),(0,a.createElement)(\"label\",{className:\"ultp-control__label\",htmlFor:n})))})))))})))}},4872:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>i});var a=n(7294),r=n(1078),o=n(6765);const{__}=wp.i18n,i=e=>{const{id:t,type:n,settings:i,defaults:l,setShowCondition:s}=e,[p,c]=(0,a.useState)(t&&void 0!==i[n]&&void 0!==i[n][t]?i[n][t]:[\"include\u002F\"+n]),[d,u]=(0,a.useState)({reload:!1,dataSaved:!1});return(0,a.createElement)(\"div\",{className:\"ultp-modal-content\"},(0,a.createElement)(\"div\",{className:\"ultp-condition-wrap\"},(0,a.createElement)(\"div\",{className:\"ultp_h3\"},__(\"Where Do You Want to Display Your Template?\",\"ultimate-post\")),(0,a.createElement)(\"p\",{className:\"ultp-description\"},__(\"Set the conditions that determine where your Template is used throughout your site.\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-condition-items\"},p.map(((e,i)=>{if(e)return(0,a.createElement)(\"div\",{key:i,className:\"ultp-condition-wrap__field\"},\"header\"==n||\"footer\"==n?(0,a.createElement)(r.Z,{key:e,id:t,index:i,type:n,value:e,defaults:l,setChange:(e,t)=>{u({dataSaved:!1});let n=JSON.parse(JSON.stringify(p));n[t]=e,c(n)}}):(0,a.createElement)(o.Z,{key:e,id:t,index:i,type:n,value:e,defaults:l,setChange:(e,t)=>{u({dataSaved:!1});let n=JSON.parse(JSON.stringify(p));n[t]=e,c(n)}}),(0,a.createElement)(\"span\",{className:\"dashicons dashicons-no-alt ultp-condition_cancel\",onClick:()=>{u({dataSaved:!1});let e=JSON.parse(JSON.stringify(p));e.splice(i,1),c(e)}}))}))),(0,a.createElement)(\"button\",{className:\"btnCondition cursor\",onClick:()=>{const e=\"singular\"==n?\"include\u002Fsingular\u002Fpost\":\"header\"==n||\"footer\"==n?\"include\u002F\"+n+\"\u002Fentire_site\":\"include\u002F\"+n;c([...p,e])}},__(\"Add Conditions\",\"ultimate-post\"))),(0,a.createElement)(\"button\",{className:\"ultp-save-condition cursor\",onClick:()=>{u({reload:!0});let e=Object.assign({},i);void 0!==e[n]||(e[n]={}),e[n][t]=p.filter((e=>e)),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fcondition_save\",method:\"POST\",data:{settings:e}}).then((e=>{e.success&&(u({reload:!1,dataSaved:!0}),setTimeout((function(){u({reload:!1,dataSaved:!1}),s&&s(\"\")}),2e3))}))}},d.dataSaved?\"Condition Saved.\":\"Save Condition\",(0,a.createElement)(\"span\",{style:{visibility:d.reload?\"visible\":\"hidden\"},className:\"dashicons dashicons-update rotate ultp-builder-import\"})))}},1078:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);const r=e=>{const t=(0,a.useRef)(),{value:n,type:r,defaults:o,setChange:i,index:l}=e,s=n.split(\"\u002F\"),[p,c]=(0,a.useState)([]),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)(!1),[h,g]=(0,a.useState)(s[2]||\"\"),[v,_]=(0,a.useState)(\"\"),w=e=>{null!=t.current&&(t.current.contains(e.target)||u(!1))};(0,a.useEffect)((()=>(s[4]?x(s[4],!0):b(),document.addEventListener(\"mousedown\",w),()=>document.removeEventListener(\"mousedown\",w))),[]);const b=()=>{let e=\"\";const t=s[3];return t&&o[s[2]]&&o[s[2]].forEach((n=>{n.value==t?(e=n.search,f(!0)):n.attr&&n.attr.forEach((n=>{n.value==t&&(e=n.search,f(!0))}))})),e},x=(e,t)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fcondition\",method:\"POST\",data:{type:b(),term:e,title_return:t}}).then((e=>{e.success&&(t?_(e.data):c(e.data))}))};return(0,a.createElement)(\"div\",{className:\"ultp-condition-fields\"},(0,a.createElement)(\"select\",{value:s[0]||\"include\",onChange:e=>{s.splice(0,1,e.target.value),i(s.join(\"\u002F\"),l)}},(0,a.createElement)(\"option\",{value:\"include\"},\"Include\"),(0,a.createElement)(\"option\",{value:\"exclude\"},\"Exclude\")),(0,a.createElement)(\"select\",{value:s[2]||\"entire_site\",onChange:e=>{s.splice(2,1,e.target.value||\"entire_site\"),s.splice(3),\"singular\"==e.target.value&&s.push(\"post\"),i(s.join(\"\u002F\"),l)}},o[r].map(((e,t)=>(0,a.createElement)(\"option\",{key:t,value:e.value},e.label)))),s[2]&&\"entire_site\"!=s[2]&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"select\",{value:s[3]||\"\",onChange:e=>{const t=e.target.options[e.target.options.selectedIndex].dataset.search;f(!!t),g(\"\"),c([]),s.splice(3,1,e.target.value),s.splice(e.target.value?4:3);const n=s.filter((function(e){return e}));i(n.join(\"\u002F\"),l)}},o[s[2]]&&o[s[2]].map(((e,t)=>e.attr?(0,a.createElement)(\"optgroup\",{label:e.label,key:t},e.attr.map(((e,t)=>!e.attr&&(0,a.createElement)(\"option\",{value:e.value,\"data-search\":e.search,key:t},e.label)))):(0,a.createElement)(\"option\",{value:e.value,\"data-search\":e.search,key:t},e.label)))),(m||s[4])&&(0,a.createElement)(\"div\",{ref:t,className:\"ultp-condition-dropdown\"},(0,a.createElement)(\"div\",{onClick:()=>u(!0),className:`ultp-condition-text ${h&&\"ultp-condition-dropdown__content\"}`},h&&v?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"span\",{className:\"ultp-condition-dropdown__label\"},v,(0,a.createElement)(\"span\",{className:\"dashicons dashicons-no-alt ultp-dropdown-value__close\",onClick:()=>{f(!0),g(\"\"),s.splice(4,1,\"\");const e=s.filter((function(e){return e}));i(e.join(\"\u002F\"),l)}}))):(0,a.createElement)(\"span\",{className:\"ultp-condition-dropdown__default\"},\" \",\"All\",\" \"),(0,a.createElement)(\"span\",{className:\"ultp-condition-arrow dashicons dashicons-arrow-down-alt2\"})),d&&(0,a.createElement)(\"div\",{className:\"ultp-condition-search\"},(0,a.createElement)(\"input\",{type:\"text\",name:\"search\",autoComplete:\"off\",placeholder:\"Search\",onChange:e=>{x(e.target.value,!1)}}),p.length>0&&(0,a.createElement)(\"ul\",null,p.map(((e,t)=>(0,a.createElement)(\"li\",{key:t,onClick:()=>{u(!1),g(e.value),_(e.title),s.splice(4,1,e.value),i(s.join(\"\u002F\"),l)}},e.title))))))))}},6765:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);const r=e=>{const t=(0,a.useRef)(),{value:n,type:r,defaults:o,setChange:i,index:l}=e,s=n.split(\"\u002F\"),[p,c]=(0,a.useState)([]),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)(!1),[h,g]=(0,a.useState)(s[2]||\"\"),[v,_]=(0,a.useState)(\"\"),w=e=>{null!=t.current&&(t.current.contains(e.target)||u(!1))};(0,a.useEffect)((()=>(s[3]?x(s[3],!0):b(),document.addEventListener(\"mousedown\",w),()=>document.removeEventListener(\"mousedown\",w))),[]);const b=()=>{let e=\"\";const t=s[2];return t&&o[r]&&o[r].forEach((n=>{n.value==t?(e=n.search,f(!0)):n.attr&&n.attr.forEach((n=>{n.value==t&&(e=n.search,f(!0))}))})),e},x=(e,t)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fcondition\",method:\"POST\",data:{type:b(),term:e,title_return:t}}).then((e=>{e.success&&(t?_(e.data):c(e.data))}))};return(0,a.createElement)(\"div\",{className:\"ultp-condition-fields\"},(0,a.createElement)(\"select\",{value:s[0]||\"include\",onChange:e=>{s[0]=e.target.value,i(s.join(\"\u002F\"),l)}},(0,a.createElement)(\"option\",{value:\"include\"},\"Include\"),(0,a.createElement)(\"option\",{value:\"exclude\"},\"Exclude\")),(0,a.createElement)(\"select\",{value:s[2]||\"post\",onChange:e=>{const t=e.target.options[e.target.options.selectedIndex].dataset.search;f(!!t),g(\"\"),c([]),s[2]=e.target.value;const n=s.filter((function(e){return e}));i(n.join(\"\u002F\"),l)}},o[r]&&o[r].map(((e,t)=>e.attr?(0,a.createElement)(\"optgroup\",{label:e.label,key:t},e.attr.map(((e,t)=>(0,a.createElement)(\"option\",{value:e.value,\"data-search\":e.search,key:t},e.label)))):(0,a.createElement)(\"option\",{value:e.value,\"data-search\":e.search,key:t},e.label)))),(m||s[3])&&(0,a.createElement)(\"div\",{ref:t,className:\"ultp-condition-dropdown\"},(0,a.createElement)(\"div\",{onClick:()=>u(!0),className:`ultp-condition-text ${h&&\"ultp-condition-dropdown__content\"}`},h&&v?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"span\",{className:\"ultp-condition-dropdown__label\"},v,(0,a.createElement)(\"span\",{className:\"dashicons dashicons-no-alt ultp-dropdown-value__close\",onClick:()=>{f(!0),g(\"\"),s[3]=\"\";const e=s.filter((function(e){return e}));i(e.join(\"\u002F\"),l)}}))):(0,a.createElement)(\"span\",{className:\"ultp-condition-dropdown__default\"},\" \",\"All\",\" \"),(0,a.createElement)(\"span\",{className:\"ultp-condition-arrow dashicons dashicons-arrow-down-alt2\"})),d&&(0,a.createElement)(\"div\",{className:\"ultp-condition-search\"},(0,a.createElement)(\"input\",{type:\"text\",name:\"search\",autoComplete:\"off\",placeholder:\"Search\",onChange:e=>{x(e.target.value,!1)}}),p.length>0&&(0,a.createElement)(\"ul\",null,p.map(((e,t)=>(0,a.createElement)(\"li\",{key:t,onClick:()=>{u(!1),g(e.value),_(e.title),s[3]=e.value,i(s.join(\"\u002F\"),l)}},e.title)))))))}},8351:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>d});var a=n(7462),r=n(7294),o=n(1383),i=n(4766),l=n(356),s=n(4482),p=n(8949),c=n(4872);n(3493);const{__}=wp.i18n,d=e=>{const t=e.has_ultp_condition?ultp_condition:ultp_dashboard_pannel,{notEditor:n}=e,d=[\"singular\",\"archive\",\"category\",\"search\",\"author\",\"post_tag\",\"date\",\"header\",\"footer\",\"404\"],[u,m]=(0,r.useState)(\"\"),[f,h]=(0,r.useState)([]),[g,v]=(0,r.useState)(\"all\"),[_,w]=(0,r.useState)(!1),[b,x]=(0,r.useState)([]),[y,k]=(0,r.useState)(n||\"\"),[E,C]=(0,r.useState)([]),[S,M]=(0,r.useState)(!1),[L,N]=(0,r.useState)(\"\"),[Z,P]=(0,r.useState)([]),[z,A]=(0,r.useState)(\"\"),[B,H]=(0,r.useState)(!1),[T,R]=(0,r.useState)(!1),[O,j]=(0,r.useState)(!1),[V,F]=(0,r.useState)(\"\"),[W,D]=(0,r.useState)(!1),I=\"yes\"==n?wp.data.select(\"core\u002Feditor\").getCurrentPostId():\"\",[U,$]=(0,r.useState)([]),[G,q]=(0,r.useState)(!1),[K,X]=(0,r.useState)({state:!1,status:\"\"}),Q=(0,o.t)(),J=async()=>{await wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ffetch_premade_data\",method:\"POST\",data:{type:\"starter_lists\"}}).then((e=>{if(e.success&&e.data){const t=JSON.parse(e.data);Y(t)}}))},Y=e=>{const t=[],n=[];e.forEach((e=>{e.templates.forEach((a=>{const r={...a,parentID:e.ID};r.hasOwnProperty(\"home_page\")&&\"home_page\"==r.home_page&&t.push(r),\"ultp_builder\"==r.type&&n.push(r)}))})),P(n),$(t)},ee=async()=>{await wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fdata_builder\",method:\"POST\",data:{pid:I}}).then((e=>{e.success&&Q.current&&(h(e.postlist),x(e.settings),C(e.defaults),m(e.type),j(!0),J())}))};(0,r.useEffect)((()=>(ee(),document.addEventListener(\"mousedown\",ne),()=>document.removeEventListener(\"mousedown\",ne))),[]);const te=(e,t)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_single_premade\",method:\"POST\",data:{type:L,ID:e,apiEndPoint:t}}).then((e=>{e.success?(A(\"\"),window.open(e?.link?.replaceAll(\"&amp;\",\"&\"))):(H(!0),A(\"\"),R(!0))}))},ne=e=>{e.target&&!e.target.classList?.contains(\"ultp-reserve-button\")&&(F(\"\"),D(!1))},ae=(e,n)=>{const a=`https:\u002F\u002Fpostxkit.wpxpo.com\u002F${e.live}\u002Fwp-content\u002Fuploads\u002Fsites\u002F${e.parentID}\u002Fpostx_importer_img\u002Fpages\u002F${e.name.toLowerCase().replaceAll(\" \",\"_\")}.jpg`,o=\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+([\"header\",\"footer\",\"front_page\"].includes(L)?e.live:e.live+\"\u002Fpostx_\"+(\"archive\"==e.builder_type?e.archive_type:e.builder_type));return(0,r.createElement)(\"div\",{key:n,className:\"ultp-item-list ultp-premade-item\"},(0,r.createElement)(\"div\",{className:\"listInfo\"},(0,r.createElement)(\"div\",{className:\"title\"},(0,r.createElement)(\"span\",null,e.name),(0,r.createElement)(\"div\",{className:\"parent\"},e.parent)),e.pro&&!t.active?(0,r.createElement)(\"a\",{className:\"ultp-upgrade-pro-btn\",target:\"_blank\",href:`https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-builder&utm_medium=${L}-template&utm_campaign=postx-dashboard#pricing`,rel:\"noreferrer\"},__(\"Upgrade to Pro\",\"ultimate-post\"),\"  ➤\"):e.pro&&T?(0,r.createElement)(\"a\",{className:\"ultp-btn-success\",target:\"_blank\",href:`https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-builder&utm_medium=${L}-template&utm_campaign=postx-dashboard#pricing`,rel:\"noreferrer\"},__(\"Get License\",\"ultimate-post\")):(0,r.createElement)(\"span\",{onClick:()=>{A(e.ID),te(e.ID,\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+e.live)},className:\"btnImport cursor\"},\" \",i.ZP.arrow_down_line,__(\"Import\",\"ultimate-post\"),z&&z==e.ID?(0,r.createElement)(\"span\",{className:\"dashicons dashicons-update rotate\"}):\"\")),(0,r.createElement)(\"div\",{className:\"listOverlay bg-image-aspect\",style:{backgroundImage:`url(${a})`}},(0,r.createElement)(\"div\",{className:\"ultp-list-dark-overlay\"},(0,r.createElement)(\"a\",{className:\"ultp-overlay-view ultp-dashboverlay\",href:o,target:\"_blank\",rel:\"noreferrer\"},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-visibility\"}),\" \",__(\"Live Preview\",\"ultimate-post\")))))},re=()=>\"all\"!=g&&\"archive\"!=g?(N(g),v(g),void((Z.length\u003C=0||\"front_page\"==g&&U.length\u003C=0)&&J())):(0,r.createElement)(\"div\",{className:\"ultp-builder-items\"},(\"all\"==g?[\"front_page\",...d]:\"archive\"==g?d.filter((e=>\"singular\"!=e)):[g]).map(((e,n)=>(0,r.createElement)(\"div\",{key:n,onClick:()=>{N(e),v(e),(Z.length\u003C=0||\"front_page\"==e&&U.length\u003C=0)&&J()}},(0,r.createElement)(\"div\",{className:\"newScreen ultp-item-list ultp-premade-item\"},(0,r.createElement)(\"div\",{className:\"listInfo\"},(0,r.createElement)(\"div\",{className:\"ultp_h6\"},e)),(0,r.createElement)(\"div\",{className:\"listOverlays\"},(0,r.createElement)(\"img\",{src:t.url+`addons\u002Fbuilder\u002Fassets\u002Ficons\u002Ftemplate\u002F${e.toLowerCase()}.svg`}),(0,r.createElement)(\"span\",{className:\"ultp-list-white-overlay\"},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-plus-alt\"}),__(\"Add\",\"ultimate-post\"),\" \",e)))))));return(0,r.createElement)(\"div\",{className:\"ultp-builder-dashboard\"},K.state&&(0,r.createElement)(l.Z,{delay:2e3,toastMessages:K,setToastMessages:X}),!n&&(0,r.createElement)(\"div\",{className:\"ultp-builder-dashboard__content ultp-builder-tab\"},(0,r.createElement)(\"div\",{className:\"ultp-builder-tab__option\"},(0,r.createElement)(\"span\",{onClick:()=>(M(!0),void wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ffetch_premade_data\",method:\"POST\",data:{type:\"fetch_all_data\"}}).then((e=>{e.success&&(ee(),M(!1),X({status:\"success\",messages:[e.message],state:!0}))}))),className:\"ultp-popup-sync\"},(0,r.createElement)(\"i\",{className:\"dashicons dashicons-update-alt\"+(S?\" rotate\":\"\")}),__(\"Synchronize\",\"ultimate-post\")),(0,r.createElement)(\"ul\",null,(0,r.createElement)(\"li\",(0,a.Z)({},\"all\"==g&&{className:\"active\"},{onClick:()=>{v(\"all\"),w(!1),N(\"\")}}),(0,r.createElement)(\"span\",{className:\"dashicons dashicons-admin-home\"}),\" \",__(\"All Template\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"front_page\"==g&&{className:\"active\"},{onClick:()=>{v(\"front_page\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Ffront_page.svg\"}),__(\"Front Page\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"singular\"==g&&{className:\"active\"},{onClick:()=>{v(\"singular\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fsingular.svg\"}),__(\"Singular\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"search\"==g&&{className:\"active\"},{onClick:()=>{v(\"search\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fsearch.svg\"}),__(\"Search Result\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"archive\"==g&&{className:\"active\"},{onClick:()=>{v(\"archive\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Farchive.svg\"}),__(\"Archive\",\"ultimate-post\")),(0,r.createElement)(\"ul\",null,(0,r.createElement)(\"li\",(0,a.Z)({},\"category\"==g&&{className:\"active\"},{onClick:()=>{v(\"category\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fcategory.svg\"}),__(\"Category\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"author\"==g&&{className:\"active\"},{onClick:()=>{v(\"author\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fauthor.svg\"}),__(\"Authors\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"post_tag\"==g&&{className:\"active\"},{onClick:()=>{v(\"post_tag\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Ftag.svg\"}),__(\"Tags\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"date\"==g&&{className:\"active\"},{onClick:()=>{v(\"date\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fdate.svg\"}),__(\"Date\",\"ultimate-post\"))),(0,r.createElement)(\"li\",(0,a.Z)({},\"header\"==g&&{className:\"active\"},{onClick:()=>{v(\"header\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fheader.svg\"}),__(\"Header\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"footer\"==g&&{className:\"active\"},{onClick:()=>{v(\"footer\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Ffooter.svg\"}),__(\"Footer\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"404\"==g&&{className:\"active\"},{onClick:()=>{v(\"404\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002F404.svg\"}),\"404\"))),(0,r.createElement)(\"div\",{className:\"ultp-builder-tab__content ultp-builder-tab__template\"},(0,r.createElement)(\"div\",{className:\"ultp-builder-tab__heading\"},(0,r.createElement)(\"div\",{className:\"ultp-builder-heading__title\"},(\"\"!=L||_)&&G&&(0,r.createElement)(\"span\",{onClick:()=>{q(!1),w(!1),N(\"\")}},\" \",i.ZP.leftAngle2,__(\"Back\",\"ultimate-post\")),(0,r.createElement)(\"div\",{className:\"ultp_h5 heading\"},__(\"All\",\"ultimate-post\"),\" \",\"all\"==g?\"\":g.replace(\"_\",\" \"),\" \",__(\"Templates\",\"ultimate-post\"))),f.length>0&&\"\"==L&&!_?(0,r.createElement)(\"button\",{className:\"cursor ultp-primary-button ultp-builder-create-btn\",onClick:()=>{w(!0),q(!0),N(\"all\"==g||\"archive\"==g?\"\":g)}},\" \",\"+ \",__(\"Create\",\"ultimate-post\"),\" \",\"all\"==g?\"\":g.replace(\"_\",\" \"),\" \",__(\"Template\",\"ultimate-post\")):O?\"\":(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:170,unit1:\"px\",size2:42,unit2:\"px\",br:4}})),(0,r.createElement)(\"div\",{className:\"ultp-tab__content active\"},O?\"\"==L?((e=\"all\")=>{let t=0;return(0,r.createElement)(\"div\",{className:\"ultp-template-list__tab\"},0==_&&f.length>0?f.map(((n,a)=>{const o=((e,t)=>{let n=[];return e?.id&&void 0!==b[e?.type]&&b[e.type][e.id]?.map(((e,t)=>{e&&(n=e.split(\"\u002F\"))})),n})(n);if(\"all\"==e||e==n.type||e==o[2]&&n.type==o[1]&&![\"header\",\"footer\"].includes(n.type))return t++,(0,r.createElement)(\"div\",{key:a,className:\"ultp-template-list__wrapper\"},(0,r.createElement)(\"div\",{className:\"ultp-template-list__heading\"},(0,r.createElement)(\"div\",{className:\"ultp-template-list__meta\"},(0,r.createElement)(\"div\",null,(0,r.createElement)(\"span\",null,\"front_page\"==n.type?\"Front Page\":n.type,\" \",\":\"),\" \",n.title,\" \",(0,r.createElement)(\"span\",null,\"ID :\"),\" #\",n.id),n.id&&void 0!==b[n.type]&&(0,r.createElement)(\"div\",{className:\"ultp-condition__previews\"},\"(\",(b[n.type][n.id]||[]).map(((e,t)=>{if(e){const n=e.split(\"\u002F\");return(0,r.createElement)(r.Fragment,{key:t},0==t?\"\":\", \",(0,r.createElement)(\"span\",null,void 0!==n[2]?n[2]:n[1]))}})),\")\")),(0,r.createElement)(\"div\",{className:\"ultp-template-list__control ultp-template-list__content\"},\"front_page\"!=n.type&&\"404\"!=n.type&&(0,r.createElement)(\"button\",{onClick:()=>{m(n.type),k(n.id)},className:\"ultp-condition__edit\"},__(\"Conditions\",\"ultimate-post\")),(0,r.createElement)(\"a\",{className:\"status\"},\" \",\"publish\"==n.status?\"Published\":n.status),(0,r.createElement)(\"a\",{href:n?.edit?.replaceAll(\"&amp;\",\"&\"),className:\"ultp-condition-action\",target:\"_blank\",rel:\"noreferrer\"},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-edit-large\"}),__(\"Edit\",\"ultimate-post\")),(0,r.createElement)(\"a\",{className:\"ultp-condition-action ultp-single-popup__btn cursor\",onClick:e=>{e.preventDefault(),confirm(\"Are you sure you want to duplicate this template?\")&&wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ftemplate_action\",method:\"POST\",data:{id:n.id,type:\"duplicate\",section:\"builder\"}}).then((e=>{e.success&&(ee(),X({status:\"success\",messages:[e.message],state:!0}))}))}},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-admin-page\"}),__(\"Duplicate\",\"ultimate-post\")),(0,r.createElement)(\"a\",{className:\"ultp-condition-action ultp-single-popup__btn cursor\",onClick:e=>{e.preventDefault(),confirm(\"Are you sure you want to delete this template?\")&&wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ftemplate_action\",method:\"POST\",data:{id:n.id,type:\"delete\",section:\"builder\"}}).then((e=>{e.success&&(h(f.filter((e=>e.id!=n.id))),X({status:\"error\",messages:[e.message],state:!0}))}))}},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-trash\"}),__(\"Delete\",\"ultimate-post\")),(0,r.createElement)(\"span\",{onClick:e=>{D(!W),F(n.id)}},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-ellipsis ultp-builder-dashboard__action ultp-reserve-button\"})),V==n.id&&W&&(0,r.createElement)(\"span\",{className:\"ultp-builder-action__active ultp-reserve-button\",onClick:e=>{F(\"\"),D(!1),e.preventDefault(),confirm(`Are you sure you want to ${\"publish\"==n.status?\"draft\":\"publish\"} this template?`)&&wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ftemplate_action\",method:\"POST\",data:{id:n.id,type:\"status\",status:\"publish\"==n.status?\"draft\":\"publish\"}}).then((e=>{e.success&&(ee(),X({status:\"success\",messages:[e.message],state:!0}))}))}},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-open-folder ultp-reserve-button\"}),\" \",__(\"Set to\",\"ultimate-post\"),\" \",\"publish\"==n.status?__(\"Draft\",\"ultimate-post\"):__(\"Publish\",\"ultimate-post\")))))})):re(),0==_&&f.length>0&&!t&&re())})(g):(0,r.createElement)(\"div\",{className:`premadeScreen ${L&&\" ultp-builder-items ultp\"+L}`},(0,r.createElement)(\"div\",{className:\"ultp-list-blank-img ultp-item-list ultp-premade-item\"},(0,r.createElement)(\"div\",{className:\"ultp-item-list-overlay ultp-p20 ultp-premade-img__blank\"},(0,r.createElement)(\"img\",{src:t.url+\"assets\u002Fimg\u002Fdashboard\u002Fstart-scratch.svg\"}),(0,r.createElement)(\"a\",{className:\"cursor\",onClick:e=>{e.preventDefault(),te()}},(0,r.createElement)(\"span\",{className:\"ultp-list-white-overlay\"},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-plus-alt\"}),\" \",__(\"Start from Scratch\",\"ultimate-post\"),\" \")))),\"front_page\"==L?U.map(((e,t)=>ae(e,t))):Z.map(((e,t)=>{if(\"archive\"!=e.builder_type&&e.builder_type==L||\"archive\"==e.builder_type&&(e.archive_type==L||\"archive\"==L))return ae(e,t)}))):(0,r.createElement)(\"div\",{className:\"skeletonOverflow\",label:__(\"Loading…\",\"ultimate-post\")},Array(6).fill(1).map(((e,t)=>(0,r.createElement)(\"div\",{key:t,className:\"ultp-template-list__tab\",style:{marginBottom:\"15px\"}},(0,r.createElement)(\"div\",{className:\"ultp-template-list__wrapper\"},(0,r.createElement)(\"div\",{className:\"ultp-template-list__heading\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"%\",size2:22,unit2:\"px\",br:2}}),(0,r.createElement)(\"div\",{className:\"ultp-template-list__control ultp-template-list__content\"},(2==t||4==t)&&(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:42,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:42,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:56,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:25,unit1:\"px\",size2:12,unit2:\"px\",br:2}}))))))))))),y&&(0,r.createElement)(\"div\",{className:\"ultp-condition-wrapper ultp-condition--active\"},(0,r.createElement)(\"div\",{className:\"ultp-condition-popup ultp-popup-wrap\"},(0,r.createElement)(\"button\",{className:\"ultp-save-close\",onClick:()=>k(\"\")},i.ZP.close_line),Object.keys(E).length&&u?(0,r.createElement)(c.Z,{type:u,id:\"yes\"==y?I:y,settings:b,defaults:E,setShowCondition:\"yes\"==n?k:\"\"}):(0,r.createElement)(\"div\",{className:\"ultp-modal-content\"},(0,r.createElement)(\"div\",{className:\"ultp-condition-wrap\"},(0,r.createElement)(\"div\",{className:\"ultp_h3 ultp-condition-wrap-heading\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:330,unit1:\"px\",size2:22,unit2:\"px\",br:2}})),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:460,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,r.createElement)(\"div\",{className:\"ultp-condition-items\"},(0,r.createElement)(\"div\",{className:\"ultp-condition-wrap__field\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:30,unit2:\"px\",br:2}})),(0,r.createElement)(\"div\",{className:\"ultp-condition-wrap__field\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:30,unit2:\"px\",br:2}})),(0,r.createElement)(\"div\",{className:\"ultp-condition-wrap__field\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:30,unit2:\"px\",br:2}}))))))),B&&(0,s.cs)({tags:\"builder_popup\",func:e=>{H(e)},data:{icon:\"template_lock.svg\",title:__(\"Create Unlimited Templates With PostX Pro\",\"ultimate-post\"),description:__(\"We are sorry. Unfortunately, the free version of PostX lets you create only one template. Please upgrade to a pro version that unlocks the full capabilities of the dynamic site builder.\",\"ultimate-post\")}}))}},3944:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>p});var a=n(7294),r=n(1383),o=n(4766),i=n(4482),l=n(8949),s=n(356);n(8350);const{__}=wp.i18n,p=()=>{const[e,t]=(0,a.useState)({}),[n,p]=(0,a.useState)({state:!1,status:\"\"}),[c,d]=(0,a.useState)(!1);(0,a.useEffect)((()=>{m()}),[]);const u=(0,r.t)(),m=()=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_all_settings\",method:\"POST\",data:{key:\"key\",value:\"value\"}}).then((e=>{e.success&&u.current&&t(e.settings)}))};return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-general-settings-container\"},(0,a.createElement)(\"div\",{className:\"ultp-general-settings ultp-dash-item-con\"},(0,a.createElement)(\"div\",null,n.state&&(0,a.createElement)(s.Z,{delay:2e3,toastMessages:n,setToastMessages:p}),(0,a.createElement)(\"div\",{className:\"ultp_h5 heading\"},__(\"General Settings\",\"ultimate-post\")),Object.keys(e).length>0?(0,a.createElement)(\"form\",{onSubmit:e=>{d(!0),e.preventDefault();const t=new FormData(e.target),n={};for(const a of e.target.elements)a.name&&(\"checkbox\"!==a.type||a.checked?\"select-multiple\"===a.type?n[a.name]=t.getAll(a.name):\"custom_multiselect\"==a.dataset.customprop?n[a.name]=a.value?a.value.split(\",\"):[]:n[a.name]=a.value:n[a.name]=\"\");wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fsave_plugin_settings\",method:\"POST\",data:{settings:n,action:\"action\",type:\"type\"}}).then((e=>{e.success&&p({status:\"success\",messages:[e.message],state:!0}),d(!1)}))},action:\"\"},(0,i.DC)(i.u4,e),(0,a.createElement)(\"div\",{className:\"ultp-data-message\"}),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"button\",{type:\"submit\",className:\"cursor ultp-primary-button \"+(c?\"onloading\":\"\")},__(\"Save Settings\",\"ultimate-post\"),c&&o.ZP.refresh))):(0,a.createElement)(\"div\",{className:\"skeletonOverflow\"},Array(6).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{key:t},(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:150,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:\"\",unit1:\"\",size2:34,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:350,unit1:\"px\",size2:20,unit2:\"px\",br:2}})))),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:120,unit1:\"px\",size2:36,unit2:\"px\",br:2}})))),(0,a.createElement)(\"div\",{className:\"ultp-general-settings-content-right\"},(0,a.createElement)(i.gR,{FRBtnTag:\"settingsFR\",proBtnTags:\"postx_dashboard_settings\"})))}},3546:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(7294),r=n(2044);const{__}=wp.i18n,o=[{id:\"ultp_helloBar_flash_sale_2026_1\",start:\"2026-02-19\",end:\"2026-02-23\",countdownDuration:259200,utmKey:\"flash_sale\",content:(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"span\",{className:\"dashicons dashicons-bell ultp-ring\"}),\" \",(0,a.createElement)(\"span\",null,__(\"Flash Sale - Enjoy Up to 45% on\",\"ultimate-post\")),\" \",(0,a.createElement)(\"strong\",null,__(\"PostX\",\"ultimate-post\")))},{id:\"ultp_helloBar_final_hour_sale_2026_1\",start:\"2026-02-25\",end:\"2026-03-01\",countdownDuration:172800,utmKey:\"final_hour_sale\",content:(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"span\",{className:\"dashicons dashicons-bell ultp-ring\"}),\" \",(0,a.createElement)(\"span\",null,__(\"Final Hour Sale - Enjoy Up to 50% on\",\"ultimate-post\")),\" \",(0,a.createElement)(\"strong\",null,__(\"PostX\",\"ultimate-post\")))}],i=({duration:e,storageKey:t})=>{const n=1e3*Math.max(Number(e)||0,0),r=(0,a.useCallback)((()=>{if(!n||!t)return null;try{const e=window.localStorage.getItem(t),n=Number(e);if(Number.isFinite(n)&&n>0)return n}catch(e){return null}return null}),[n,t]),o=(0,a.useCallback)((e=>{if(t)try{window.localStorage.setItem(t,String(e))}catch(e){}}),[t]),i=(0,a.useCallback)((()=>{if(!n)return 0;const e=Date.now();let t=r();return(!t||t\u003C=e)&&(t=e+n,o(t)),Math.max(Math.ceil((t-e)\u002F1e3),0)}),[n,r,o]),[l,s]=(0,a.useState)(i);if((0,a.useEffect)((()=>{if(!n)return void s(0);const e=()=>{s(i())};e();const t=window.setInterval(e,1e3);return()=>{window.clearInterval(t)}}),[n,i]),!n)return null;const p=Math.floor(l\u002F86400),c=Math.floor(l%86400\u002F3600),d=Math.floor(l%3600\u002F60),u=l%60,m=String(c).padStart(2,\"0\"),f=String(d).padStart(2,\"0\"),h=String(u).padStart(2,\"0\");return(0,a.createElement)(\"strong\",null,`${p}:${m}:${f}:${h}`)},l=()=>{const[e,t]=(0,a.useState)((()=>o.find((e=>new Date>=new Date(e.start)&&new Date\u003C=new Date(e.end)&&ultp_dashboard_pannel.helloBar&&\"hide\"!==ultp_dashboard_pannel.helloBar[e.id]&&!ultp_dashboard_pannel?.active))||null));return e?(0,a.createElement)(\"div\",{className:\"ultp-setting-hellobar-wrapper\"},(0,a.createElement)(\"a\",{href:`${(0,r.Z)({utmKey:e.utmKey})}#pricing`,target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"div\",{className:\"ultp-setting-hellobar\"},(0,a.createElement)(\"span\",null,e.content),(0,a.createElement)(i,{duration:e.countdownDuration,storageKey:`ultp_hello_bar_timer_${e.id}`}),(0,a.createElement)(\"strong\",null,(0,a.createElement)(\"span\",null,__(\"Grab Now\",\"ultimate-post\")),\"  ➤\"),(0,a.createElement)(\"button\",{type:\"button\",className:\"helobarClose\",onClick:n=>{n.stopPropagation(),n.preventDefault(),wp.apiFetch({path:\"ultp\u002Fhello_bar\",method:\"POST\",data:{type:\"hello_bar\",id:e.id}}),t(null)},\"aria-label\":__(\"Close notification\",\"ultimate-post\"),style:{background:\"none\",border:\"none\",padding:0,cursor:\"pointer\"}},(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"20\",height:\"20\",fill:\"none\",viewBox:\"0 0 20 20\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",d:\"M15 5 5 15M5 5l10 10\"})))))):(console.log(\"return\"),null)}},1383:(e,t,n)=>{\"use strict\";n.d(t,{t:()=>_});var a=n(7294),r=n(3935),o=n(3100),i=n(4766),l=n(860),s=n(7191),p=n(8351),c=n(3644),d=(n(9780),n(3944)),u=n(3546),m=(n(2156),n(2470)),f=n(3701),h=n(5957),g=n(3554),v=n(58);const{__}=wp.i18n;function _(){const e=(0,a.useRef)(!1);return(0,a.useEffect)((()=>(e.current=!0,()=>e.current=!1)),[]),e}document.body.contains(document.getElementById(\"ultp-dashboard\"))&&r.render((0,a.createElement)(a.StrictMode,null,(0,a.createElement)((()=>{const[e,t]=(0,a.useState)(\"xx\"),[n,r]=(ultp_dashboard_pannel.status,ultp_dashboard_pannel.expire,(0,a.useState)(!1)),_=[{link:\"#home\",label:__(\"Dashboard\",\"ultimate-post\"),showin:\"both\"},{link:\"#startersites\",label:__(\"Starter Sites\",\"ultimate-post\"),showin:\"both\",tag:\"New\"},{link:\"#builder\",label:__(\"Site Builder\",\"ultimate-post\"),showin:ultp_dashboard_pannel.settings.hasOwnProperty(\"ultp_builder\")&&\"false\"!=ultp_dashboard_pannel.settings.ultp_builder?\"both\":\"none\",showhide:!0},{link:\"#blocks\",label:__(\"Blocks\",\"ultimate-post\"),showin:\"both\"},{link:\"#addons\",label:__(\"Add-ons\",\"ultimate-post\"),showin:\"both\"},{link:\"#settings\",label:__(\"Settings\",\"ultimate-post\"),showin:\"both\"}],w=[{label:__(\"Get Support\",\"ultimate-post\"),icon:\"dashicons-phone\",link:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcontact\u002F?utm_source=postx-menu&utm_medium=all_que-support&utm_campaign=postx-dashboard\"},{label:__(\"Welcome Guide\",\"ultimate-post\"),icon:\"dashicons-megaphone\",link:ultp_dashboard_pannel.setup_wizard_link},{label:__(\"Join Community\",\"ultimate-post\"),icon:\"dashicons-facebook-alt\",link:\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fgutenbergpostx\"},{label:__(\"Feature Request\",\"ultimate-post\"),icon:\"dashicons-email-alt\",link:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Froadmap\u002F?utm_source=postx-menu&utm_medium=all_que-FR&utm_campaign=postx-dashboard\"},{label:__(\"Youtube Tutorials\",\"ultimate-post\"),icon:\"dashicons-youtube\",link:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=_GfXTvSdJTk&list=PLPidnGLSR4qcAwVwIjMo1OVaqXqjUp_s4\"},{label:__(\"Documentation\",\"ultimate-post\"),icon:\"dashicons-book\",link:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002F?utm_source=postx-menu&utm_medium=all_que-docs&utm_campaign=postx-dashboard\"},{label:__(\"What’s New\",\"ultimate-post\"),icon:\"dashicons-edit\",link:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcategory\u002Fpostx\u002F?utm_source=postx-menu&utm_medium=all_que-roadmap&utm_campaign=postx-dashboard\"}],b=e=>{if(e.target&&!e.target.classList?.contains(\"ultp-reserve-button\")&&e.target.href&&e.target.href.indexOf(\"page=ultp-settings#\")>0){const n=e.target.href.split(\"#\");n[1]&&(t(n[1]),window.scrollTo({top:0,behavior:\"smooth\"}))}e.target.closest(\".dash-faq-container\")||e.target.classList?.contains(\"ultp-reserve-button\")||r(!1)},[x,y]=(0,a.useState)(window.location.hash||e);(0,a.useEffect)((()=>{const e=()=>{y(window.location.hash||\"#welcome\")};return window.location.hash||(window.location.hash=_[0].link.replace(\"#\",\"\")),window.addEventListener(\"hashchange\",e),()=>{window.removeEventListener(\"hashchange\",e)}}),[]),(0,a.useEffect)((()=>{const n=x.replace(\"#\",\"\");n&&n!==e&&t(n)}),[x,e]),(0,a.useEffect)((()=>((()=>{let e=window.location.href;e.includes(\"page=ultp-settings#\")&&(e=e.split(\"page=ultp-settings#\"),e[1]&&t(e[1]))})(),document.addEventListener(\"mousedown\",b),()=>document.removeEventListener(\"mousedown\",b))),[]);const[k,E]=(0,a.useState)({success:!1,license:\"\"});return(0,a.createElement)(\"div\",{className:\"ultp-menu-items-wrap\"},(0,a.createElement)(u.Z,null),(0,a.createElement)(\"div\",{className:\"ultp-setting-header\"},(0,a.createElement)(\"div\",{className:\"ultp-setting-logo\"},(0,a.createElement)(\"img\",{className:\"ultp-setting-header-img\",loading:\"lazy\",src:ultp_dashboard_pannel.url+\"\u002Fassets\u002Fimg\u002Flogo-new.png\",alt:\"PostX\"}),(0,a.createElement)(\"span\",{className:\"ultp-setting-version\"},ultp_dashboard_pannel.version)),(0,a.createElement)(\"div\",{className:\"ultp-menu-items\",id:\"ultp-dashboard-ultp-menu-items\"},_.map(((t,n)=>\"both\"==t.showin||\"menu\"==t.showin||t.showhide?(0,a.createElement)(\"a\",{href:t.link,style:{display:\"none\"==t.showin?\"none\":\"\"},id:\"ultp-dasnav-\"+t.link.replace(\"#\",\"\"),key:n,className:(t.link==\"#\"+e?\"current\":\"\")+\" ultp-menu-item\",onClick:()=>y(t.link.replace(\"#\",\"\"))},t.label,t.tag&&(0,a.createElement)(\"span\",{className:\"ultp-menu-item-tag\"},t.tag)):\"\"))),(0,a.createElement)(\"div\",{className:\"ultp-secondary-menu\"},(0,a.createElement)(\"a\",{href:\"#plugins\",className:\"ultp-menu-item \"+([\"plugins\",\"#plugins\"].includes(x)?\"current\":\"\"),onClick:()=>y(\"plugins\")},i.ZP.connect,__(\"Our Plugins\",\"ultimate-post\")),!ultp_dashboard_pannel?.active&&(0,a.createElement)(\"a\",{href:(0,o.Z)(\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-topbar&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing\"),className:\"ultp-secondary-button ultp-pro-button\"},__(\"Upgrade Pro\",\"ultimate-post\"),i.ZP.unlock)),(0,a.createElement)(\"div\",{className:\"ultp-dash-faq-con\"},(0,a.createElement)(\"span\",{onClick:()=>r(!n),className:\"ultp-dash-faq-icon ultp-reserve-button dashicons dashicons-editor-help\"}),n&&(0,a.createElement)(\"div\",{className:\"dash-faq-container\"},w.map(((e,t)=>(0,a.createElement)(\"a\",{key:t,href:e.link,target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"span\",{className:`dashicons ${e.icon}`}),e.label)))))),(0,a.createElement)(\"div\",{className:\"ultp-settings-container \"+(\"startersites\"==e?\"ultp-settings-container-startersites\":\"\")},(0,a.createElement)(\"ul\",{className:\"ultp-settings-content\"},(0,a.createElement)(\"li\",{className:\"current\"},\"xx\"!=e&&(\"home\"==e||![\"builder\",\"startersites\",\"integrations\",\"saved-templates\",\"custom-font\",\"addons\",\"blocks\",\"settings\",\"tutorials\",\"license\",\"support\",\"plugins\"].includes(e))&&(0,a.createElement)(c.Z,null),\"saved-templates\"==e&&(0,a.createElement)(h.Z,{type:\"ultp_templates\"}),\"custom-font\"==e&&(0,a.createElement)(h.Z,{type:\"ultp_custom_font\"}),\"builder\"==e&&(0,a.createElement)(p.Z,null),\"startersites\"==e&&(0,a.createElement)(g.Z,null),\"addons\"==e&&(0,a.createElement)(l.Z,{integrations:!0}),\"blocks\"==e&&(0,a.createElement)(s.Z,null),\"settings\"==e&&(0,a.createElement)(d.Z,null),\"license\"==e&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(m.C,{licenseData:k,setLicenseData:E})),\"support\"==e&&(0,a.createElement)(v.Z,null),\"plugins\"==e&&(0,a.createElement)(f.I,null))),(0,a.createElement)(v.Z,null)),!ultp_dashboard_pannel.active&&(()=>{const e=(new Date).setHours(0,0,0,0)\u002F1e3,t=345600,n=new Date(\"2024-05-21\").setHours(0,0,0,0)\u002F1e3,a=new Date(\"2024-07-22\").setHours(0,0,0,0)\u002F1e3;if(e\u003Cn||e>a)return!1;if(ultp_dashboard_pannel.settings.activated_date&&Number(ultp_dashboard_pannel.settings.activated_date)+t>=e)return!1;const r=Number(localStorage.getItem(\"ultpCouponDiscount\"));return r?r\u003C=e&&e\u003C=r+t||e>=r+691200&&(localStorage.setItem(\"ultpCouponDiscount\",String(e)),!0):(localStorage.setItem(\"ultpCouponDiscount\",String(e)),!0)})()&&(0,a.createElement)(\"a\",{className:\"ultp-discount-wrap\",href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-discount&utm_medium=coupon&utm_campaign=postx-dashboard&pux_link=postxdbcoupon#pricing\",target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"span\",{className:\"ultp-discount-text\"},__(\"Get Discount\",\"ultimate-post\"))))}),null)),document.getElementById(\"ultp-dashboard\"))},2470:(e,t,n)=>{\"use strict\";n.d(t,{C:()=>o});var a=n(7294),r=n(356);n(977);const{__}=wp.i18n,o=({licenseData:e,setLicenseData:t})=>{const[n,r]=(0,a.useState)(\"\"),[o,l]=(0,a.useState)(!1),[s,p]=(0,a.useState)(!0);return(0,a.useEffect)((()=>{(async()=>{p(!0);const e=await(async()=>{try{const e=`${ultp_dashboard_pannel.ajax}`,t=new URLSearchParams({action:\"edd_ultp_get_license_data\"}),n=await fetch(e,{method:\"POST\",body:t,headers:{\"Content-Type\":\"application\u002Fx-www-form-urlencoded\"}});if(!n.ok)throw l(!0),new Error(`HTTP error! Status: ${n.status}`);const a=await n.json();if(a.success)return a.data}catch(e){return null}})();e?.license_data&&t(e?.license_data),p(!1)})()}),[]),(0,a.useEffect)((()=>{\"valid\"===e?.license?ultp_dashboard_pannel.active=!0:\"\"!=e.license&&\"valid\"!=e?.license&&(ultp_dashboard_pannel.active=!1)}),[e]),(0,a.createElement)(\"div\",{className:\"ultp-license\"},s?(0,a.createElement)(\"div\",{className:\"ultp-license__activation\",style:{display:\"flex\",flexDirection:\"column\",gap:\"16px\",paddingTop:\"50px !important\"}},(0,a.createElement)(c,{width:\"250px\",height:\"30px\"}),(0,a.createElement)(c,{width:\"100%\",height:\"30px\",style:{marginTop:\"10px\"}}),(0,a.createElement)(c,{width:\"100%\",height:\"30px\"}),(0,a.createElement)(c,{width:\"100%\",height:\"30px\"}),(0,a.createElement)(c,{width:\"100%\",height:\"30px\"})):(0,a.createElement)(i,{proUpdate:o,licenseKey:n,setLicenseKey:r,licenseData:e,setLicenseData:t}),(0,a.createElement)(u,null))},i=({proUpdate:e,licenseKey:t,setLicenseKey:n,licenseData:o,setLicenseData:i})=>{const[p,c]=(0,a.useState)(!1),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)({state:!1,status:\"\",messages:[]}),h=async()=>{try{c(!0);const e=await g(t);e?.status&&(i(e?.license_data),window.location.reload()),f({status:e.status?\"success\":\"error\",messages:[e?.data||\"Some issues occured\"],state:!0}),n(\"\"),c(!1),u(!1)}catch(e){u(!0),f({status:\"error\",messages:[\"Some issues occured\"],state:!0}),console.error(\"License Activation Error: \",e)}},g=async e=>{const t=`${ultp_dashboard_pannel.ajax}`,n=new URLSearchParams({action:\"edd_ultp_activate_license\",security:ultp_dashboard_pannel.nonce,license_key:e}),a=await fetch(t,{method:\"POST\",body:n,headers:{\"Content-Type\":\"application\u002Fx-www-form-urlencoded\"}});if(!a.ok)throw new Error(`HTTP error! Status: ${a.status}`);return await a.json()};return(0,a.createElement)(\"div\",{className:\"ultp-license__activation\"},(0,a.createElement)(\"div\",{className:\"ultp-license__title\"},__(e?\"Notice: Upgrade PostX Pro plugin\":\"Ready to Use PostX Pro ?\",\"ultimate-post\")),m.state&&(0,a.createElement)(r.Z,{delay:2e3,toastMessages:m,setToastMessages:f}),!e&&(0,a.createElement)(a.Fragment,null,\"valid\"!==o?.license?(0,a.createElement)(\"div\",{className:\"ultp-license__form\"},(0,a.createElement)(\"input\",{type:\"password\",id:\"ultp-license-key\",placeholder:__(\"Enter Your License Key Here…\",\"ultimate-post\"),value:t||\"\",onChange:e=>n(e.target.value)}),(0,a.createElement)(\"div\",{className:\"ultp-license__helper-text\"},__(\"If you’re unable to activate your product license, please contact the\",\"ultimate-post\"),\" \",(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcontact\u002F\",target:\"_blank\",className:\"ultp-license__link\",rel:\"noreferrer\"},__(\"support team\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"ultp-activate-btn ultp_license_action_btn\",onClick:()=>h(),role:\"button\",tabIndex:-1,onKeyDown:e=>{\"Enter\"===e.key&&h()}},(0,a.createElement)(\"div\",null,__(\"Activate License\",\"ultimate-post\")),p&&(0,a.createElement)(\"span\",{className:\"ultp-activate-loading\"})),d&&(0,a.createElement)(\"div\",{className:\"ultp-license__helper-text\"},__(\"Please make sure your free and pro plugins are updated to the latest release or version. Otherwise, contact the\",\"ultimate-post\"),(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcontact\u002F\",target:\"_blank\",className:\"ultp-license__link\",rel:\"noreferrer\"},__(\"support team\",\"ultimate-post\")))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(l,{title:__(\"Congratulations on unlocking PostX Pro!\",\"ultimate-post\"),message:__(\"Ignite your imagination and design your ideal experience. Let PostX take care of you and your users.\",\"ultimate-post\")}),(0,a.createElement)(s,{licenseData:o,setLicenseData:i,setToastMessages:f}))))},l=({title:e,message:t})=>(0,a.createElement)(\"div\",{className:\"ultp-license-message\"},(0,a.createElement)(\"div\",{className:\"ultp-license-message__icon\"},(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",width:\"48px\",height:\"46px\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"g\",{fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M46.15 26.76a.94.94 0 0 0-.39-1.27 14.7 14.7 0 0 0-16.21 1.62l-1.52-1.52 2.48-2.47a.94.94 0 0 0-1.33-1.33l-2.47 2.48-6.04-6.04a13.1 13.1 0 0 0 1.07-13.98.94.94 0 0 0-1.66.88c2.02 3.8 1.7 8.3-.75 11.76l-3.98-3.98a2.3 2.3 0 0 0-3.79.84L.14 44.9c-.3.86-.1 1.78.54 2.42a2.28 2.28 0 0 0 2.42.54l31.15-11.42a2.3 2.3 0 0 0 .84-3.8l-4.2-4.2a12.83 12.83 0 0 1 13.99-1.3.94.94 0 0 0 1.27-.38ZM14.93 41.52l-8.45-8.45 2.34-6.4 12.5 12.5-6.39 2.35Zm-4.58 1.68L4.8 37.65 5.77 35l7.22 7.22-2.64.97Zm-7.9 2.9A.4.4 0 0 1 2 46a.4.4 0 0 1-.1-.45l2.19-5.96 4.32 4.32-5.96 2.19Zm31.43-11.73a.41.41 0 0 1-.27.3l-5.77 2.12-5.33-5.33a.94.94 0 0 0-1.33 1.32l4.72 4.72-2.64.97L9.53 24.74l.97-2.64 4.72 4.72a.93.93 0 0 0 1.32 0 .94.94 0 0 0 0-1.33l-5.33-5.33 2.11-5.77c.07-.19.23-.25.31-.27h.1c.09 0 .2.02.3.12l19.73 19.73c.14.15.13.31.12.4ZM28.27 7.48c.52 0 .94-.42.94-.94 0-.78.64-1.42 1.43-1.42a3.3 3.3 0 0 0 3.3-3.3.94.94 0 0 0-1.88 0c0 .79-.64 1.43-1.42 1.43a3.3 3.3 0 0 0-3.3 3.3c0 .51.42.93.93.93ZM36.6 16.33c1.87 0 3.4-1.53 3.4-3.4 0-.85.69-1.54 1.53-1.54a.94.94 0 0 0 0-1.87 3.41 3.41 0 0 0-3.4 3.4c0 .85-.7 1.54-1.54 1.54a.94.94 0 0 0 0 1.87ZM42 18.14a3 3 0 1 0 6 0 3 3 0 0 0-6 0ZM45 17a1.13 1.13 0 1 1 0 2.26A1.13 1.13 0 0 1 45 17Z\"}),(0,a.createElement)(\"path\",{d:\"M29.54 15.92a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4.12a1.13 1.13 0 1 1 0 2.25 1.13 1.13 0 0 1 0-2.25ZM12 6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4.13a1.13 1.13 0 1 1 0 2.26 1.13 1.13 0 0 1 0-2.25ZM42.42 32.91a.94.94 0 0 0-1.32 1.33l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89ZM46.84 37.33a.94.94 0 0 0-1.32 1.33l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.33l-.89-.88ZM46.4 32.91l-.88.89a.94.94 0 0 0 1.32 1.32l.89-.88a.94.94 0 0 0-1.33-1.33ZM41.98 37.33l-.88.88a.94.94 0 0 0 1.32 1.33l.89-.88a.94.94 0 0 0-1.33-1.33ZM46.18 2.76c.24 0 .48-.1.66-.28l.89-.88A.94.94 0 1 0 46.4.27l-.88.89a.94.94 0 0 0 .66 1.6ZM41.76 7.18c.24 0 .48-.1.66-.28l.89-.88a.94.94 0 0 0-1.33-1.33l-.88.89a.94.94 0 0 0 .66 1.6ZM46.84 4.7a.94.94 0 0 0-1.32 1.32l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89ZM41.98 2.48a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89A.94.94 0 0 0 41.1 1.6l.88.88ZM18.86 28.2a.94.94 0 0 0-.93.94.94.94 0 0 0 .93.93.94.94 0 0 0 .94-.93.94.94 0 0 0-.94-.94ZM32.54 18.43l-.68.68a.94.94 0 0 0 1.33 1.33l.68-.68a.94.94 0 0 0-1.33-1.33Z\"})))),(0,a.createElement)(\"div\",{className:\"ultp-license-message__content\"},(0,a.createElement)(\"div\",{className:\"ultp-license-message__title ultp-license-message-congrats\"},e),(0,a.createElement)(\"div\",{className:\"ultp-license-message__text\"},t))),s=({licenseData:e,setLicenseData:t,setToastMessages:n})=>{const[r,o]=(0,a.useState)(!1),i=async()=>{try{o(!0);const e=await l();t(e.license_data),n({status:\"success\",messages:[e?.data||\"Some issues occured\"],state:!0}),o(!1)}catch(e){n({status:\"error\",messages:[e.message||\"Some issues occured\"],state:!0}),o(!1)}},l=async()=>{const e=`${ultp_dashboard_pannel.ajax}`,t=new URLSearchParams({action:\"edd_ultp_deactivate_license\",security:ultp_dashboard_pannel.nonce,deactivate:\"yes\"}),n=await fetch(e,{method:\"POST\",body:t,headers:{\"Content-Type\":\"application\u002Fx-www-form-urlencoded\"}});if(!n.ok)throw new Error(`HTTP error! Status: ${n.status}`);const a=await n.json();if(a.status)return a};return(0,a.createElement)(\"div\",{className:\"ultp-license__status\"},(0,a.createElement)(\"div\",{className:\"ultp-license__status-messages\"},(0,a.createElement)(\"div\",{className:\"ultp-license__status-message\"},(0,a.createElement)(\"div\",{className:\"ultp-license__status-message-label\"},__(\"License Type\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-license__status-message-value\"},e.licenseType)),(0,a.createElement)(\"div\",{className:\"ultp-license__status-message\"},(0,a.createElement)(\"div\",{className:\"ultp-license__status-message-label\"},__(\"Expire On\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-license__status-message-value\"},e.expiresAt),(e?.toExpired||\"expired\"===e.license)&&(0,a.createElement)(\"a\",{href:`https:\u002F\u002Faccount.wpxpo.com\u002Fcheckout\u002F?edd_license_key=${ultp_dashboard_pannel.license}&download_id=${e.itemId}&renew=1`,target:\"_blank\",rel:\"noreferrer\",className:\"ultp-license__renew-link\"},(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M2.86 6.553a.5.5 0 01.823-.482l3.02 2.745c.196.178.506.13.64-.098L9.64 4.779a.417.417 0 01.72 0l2.297 3.939a.417.417 0 00.64.098l3.02-2.745a.5.5 0 01.823.482l-1.99 8.63a.833.833 0 01-.813.646H5.663a.833.833 0 01-.812-.646L2.86 6.553z\",stroke:\"currentColor\",strokeWidth:\"1.5\"})),__(\"Renew License\",\"ultimate-post\"))),(0,a.createElement)(p,{licenseData:e})),(0,a.createElement)(\"div\",{className:\"ultp-activate-btn ultp_license_action_btn\",onClick:()=>i(),role:\"button\",tabIndex:-1,onKeyDown:e=>{\"Enter\"===e.key&&i()}},(0,a.createElement)(\"div\",null,__(\"Deactivate License\",\"ultimate-post\")),r&&(0,a.createElement)(\"span\",{className:\"ultp-activate-loading\"})))},p=({licenseData:e})=>{const[t,n]=(0,a.useState)(\"\"),r={1:__(\"5 Sites - Yearly\",\"ultimate-post\"),2:__(\"Unlimited Sites - Yearly\",\"ultimate-post\"),3:__(\"1 Site - Lifetime\",\"ultimate-post\"),4:__(\"5 Sites - Lifetime\",\"ultimate-post\"),5:__(\"Unlimited Sites - Lifetime\",\"ultimate-post\")},o={1:[1,2,3,4,5],7:[2,3,4,5],2:[4,5],4:[2,4,5],5:[5]}[e?.priceId];return o&&0!==o.length?(0,a.createElement)(\"div\",{className:\"ultp-license__upgrade-message\"},(0,a.createElement)(\"div\",{className:\"ultp-license__upgrade-message-title\"},(0,a.createElement)(\"label\",{htmlFor:\"ultp-license-select\"},__(\"Choose a upgrade plan\",\"ultimate-post\")),(0,a.createElement)(\"select\",{id:\"ultp-license-select\",value:t,onChange:e=>{n(e.target.value)}},o.map((e=>(0,a.createElement)(\"option\",{key:e,value:e},r[e]))))),(0,a.createElement)(\"a\",{className:\"ultp-license__upgrade-link\",href:`https:\u002F\u002Faccount.wpxpo.com\u002Fcheckout\u002F?edd_action=sl_license_upgrade&license_key=${ultp_dashboard_pannel.license}&upgrade_id=${t||o[0]}`,target:\"_blank\",rel:\"noreferrer\"},__(\"Upgrade Now\",\"ultimate-post\"))):null},c=({width:e=\"100%\",height:t=\"1rem\",borderRadius:n=\"4px\",style:r={}})=>(0,a.createElement)(\"div\",{className:\"ultp-custom-skeleton-loader\",style:{width:e,height:t,borderRadius:n,...r}}),d=[{question:__(\"Do I need the free version of the plugin on my site?\",\"ultimate-post\"),answer:__(\"Yes. You can use the free version of the plugin, which includes the free features of PostX. However, please note that to use the pro features, you need the free version of the plugin installed on your WordPress site.\",\"ultimate-post\")},{question:__(\"Where do I get my product license?\",\"ultimate-post\"),answer:__(\"You can copy the product license from the client dashboard. Once you copy it, paste the license key into the PostX License validation page.\",\"ultimate-post\")},{question:__(\"How do I get help to use PostX Pro?\",\"ultimate-post\"),hasMarkup:!0,answer:__(\"Please go to the support link: \u003Ca href='https:\u002F\u002Fwww.wpxpo.com\u002Fcontact\u002F.' target='_blank'>www.wpxpo.com\u002Fcontact\u003C\u002Fa>\",\"ultimate-post\")}],u=()=>(0,a.createElement)(\"div\",{className:\"ultp-license__faq\"},d.map(((e,t)=>(0,a.createElement)(\"div\",{key:t,className:\"ultp-license-faq__item\"},(0,a.createElement)(\"div\",{className:\"ultp-license-faq__question\"},e.question),e.hasMarkup?(0,a.createElement)(\"div\",{className:\"ultp-license-faq__answer\",dangerouslySetInnerHTML:{__html:e.answer}}):(0,a.createElement)(\"div\",{className:\"ultp-license-faq__answer\"},e.answer)))),(0,a.createElement)(\"div\",{className:\"ultp-license-faq-item\"},__(\"PostX is a product of WPXPO. The contact support team is ready to help you with any queries, including how to use the pro version of PostX.\",\"ultimate-post\")))},3701:(e,t,n)=>{\"use strict\";n.d(t,{I:()=>l});var a=n(7294),r=n(1383);n(7376);const{__}=wp.i18n,o={wholesale_x:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{fill:\"#FEAD01\",d:\"M22.288 5.44498 11.1095 7.77499c-.6634.13829-1.0892.78825-.9509 1.45173l2.33 11.17848c.1383.6635.7883 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7882.9509-1.4517l-2.33-11.1785c-.1383-.66347-.7882-1.08921-1.4517-.95092Zm3.1934 15.32522-11.1785 2.33c-.6635.1383-1.0892.7882-.9509 1.4517l2.33 11.1785c.1383.6635.7882 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7883.9509-1.4517l-2.33-11.1785c-.1383-.6635-.7883-1.0892-1.4517-.9509ZM37.6161 2.25064 26.4377 4.58065c-.6635.1383-1.0893.78826-.951 1.45173l2.33 11.17852c.1383.6634.7883 1.0892 1.4518.9509l11.1784-2.33c.6635-.1383 1.0893-.7883.951-1.4518l-2.33-11.17843c-.1383-.66348-.7883-1.08922-1.4518-.95093Zm3.1934 15.32716-11.1785 2.33c-.6635.1383-1.0892.7883-.9509 1.4517l2.33 11.1785c.1383.6635.7883 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7882.9509-1.4517l-2.33-11.1785c-.1383-.6635-.7882-1.0892-1.4517-.9509Z\"}),(0,a.createElement)(\"path\",{fill:\"#6C6CFF\",d:\"M11.4509 35.4957c-.2235-.0003-.4402-.0776-.6136-.2187-.1734-.1412-.293-.3377-.3386-.5566L4.40205 5.44687c-.0671-.32174-.25914-.60372-.53395-.784-.27481-.18029-.60992-.24415-.93177-.17757-.15961.03288-.31112.09709-.44576.18889-.13464.09181-.24976.20939-.33867.34596-.08986.13594-.15175.2884-.1821.4485-.03036.16011-.02855.32465.00531.48404l.47956 2.30076c.05267.25283.00277.51622-.13875.73225-.14152.21603-.36305.367-.61587.41971-.12518.0261-.25429.02728-.37992.00348-.12564-.0238-.24534-.07212-.352302-.1422-.106958-.07007-.199074-.16054-.271063-.26622-.071988-.10568-.122425-.22451-.14848-.3497L.0686777 6.35002c-.0868909-.41-.0913681-.83319-.0132214-1.24494.0781467-.41176.2373657-.80387.4684307-1.15352.228483-.35063.524233-.65249.870113-.8881.34589-.23562.73506-.40032 1.145-.48457.8274-.1712 1.68888-.00722 2.39554.45595.70665.46317 1.20075 1.18772 1.3739 2.01471L12.4051 34.3231c.0294.1417.0269.2883-.0074.4289s-.0996.2719-.1909.3842c-.0914.1122-.2067.2028-.3374.2649-.1307.0622-.2737.0944-.4185.0944v.0002Zm8.49 5.5912c-.2408-.0005-.4729-.0901-.6515-.2515-.1786-.1615-.291-.3834-.3156-.623-.0245-.2395.0404-.4796.1825-.674.1421-.1944.3511-.3293.5868-.3786l27.0841-5.6452c.2528-.0527.5162-.0028.7322.1387.216.1415.3669.3631.4196.6159.0527.2528.0028.5162-.1387.7322-.1415.216-.363.3669-.6158.4196l-27.0841 5.6452c-.0656.0136-.1325.0205-.1995.0207Z\"}),(0,a.createElement)(\"path\",{fill:\"#070C1A\",d:\"M12.8922 45.9671c-.8322-.0016-1.647-.2389-2.3499-.6845-.70286-.4456-1.26512-1.0812-1.62162-1.8332-.35651-.752-.49266-1.5896-.39269-2.4158.09996-.8262.43196-1.6072.95753-2.2525.52558-.6452 1.22318-1.1284 2.01208-1.3935.7889-.2651 1.6367-.3012 2.4453-.1043.8086.197 1.5448.619 2.1234 1.2172.5786.5981.9759 1.348 1.1458 2.1627.2383 1.1434.0126 2.3345-.6273 3.3115-.64.977-1.6418 1.6597-2.7852 1.898-.2984.0625-.6025.0941-.9074.0944Zm.014-6.8621c-.1701 0-.3398.0176-.5062.0525-.4757.099-.9113.3369-1.2518.6835-.3404.3467-.5704.7865-.6609 1.2638-.0905.4774-.0374.9708.1525 1.418.19.4472.5083.828.9147 1.0943.4064.2663.8826.4061 1.3684.4017.4859-.0044.9595-.1527 1.361-.4263.4015-.2735.7129-.66.8948-1.1105.1819-.4505.2261-.9449.127-1.4205-.1152-.5517-.4164-1.047-.8533-1.403-.4368-.3561-.9827-.5512-1.5462-.5528v-.0007Z\"})),wow_store:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{fill:\"#FF176B\",d:\"M33.4798 8.9711 48 0l-7.1908 32.9249-4.4393 5.9884H4.9711L0 32.9249l3.90751-17.9654 8.76299 2.9827-2.6127 11.9769h6.289l3.9307-17.9653h9.4335l-3.9307 17.9653h6.2891l4.578-20.948h-3.1676ZM9.98852 48.0005c1.66478 0 2.98268-1.3411 2.98268-2.9827s-1.3411-2.9826-2.98268-2.9826c-1.64162 0-2.98266 1.341-2.98266 2.9826 0 1.6416 1.34104 2.9827 2.98266 2.9827Zm15.67578 0c1.6416 0 2.9827-1.3411 2.9827-2.9827s-1.3411-2.9826-2.9827-2.9826-2.9827 1.341-2.9827 2.9826c0 1.6416 1.3411 2.9827 2.9827 2.9827Z\"})),wow_revenue:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{fill:\"#00A464\",d:\"M47.9999 47.9999H36L24 0h12l11.9999 47.9999Zm-12 0H24L12 15.96h12l11.9999 32.0399Zm-12 .0001H12L0 32.04h12L23.9999 48Z\"})),wow_optin:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"g\",{fill:\"#F97415\",clipPath:\"url(#optin_48_path)\"},(0,a.createElement)(\"path\",{d:\"M28.7992 24.0373c0-2.6419-2.1581-4.8-4.8-4.8-2.6418 0-4.8 2.1581-4.8 4.8 0 2.6419 2.1582 4.8 4.8 4.8 2.6419 0 4.8-2.1581 4.8-4.8Z\"}),(0,a.createElement)(\"path\",{d:\"M24 48.0372v-9.6c7.9256 0 14.4-6.4744 14.4-14.4S31.9256 9.63721 24 9.63721 9.6 16.1116 9.6 24.0372H0C0 10.7907 10.7535 0 24 0s24 10.7535 24 24-10.7535 24-24 24v.0372Z\"}),(0,a.createElement)(\"path\",{d:\"m19.2 28.8369-19.2 6.4 8.8186 3.9814L12.8 48.0369l6.4372-19.2H19.2Z\"})),(0,a.createElement)(\"defs\",null,(0,a.createElement)(\"clipPath\",{id:\"optin_48_path\"},(0,a.createElement)(\"path\",{fill:\"#fff\",d:\"M0 0h48v48H0z\"})))),wow_addon:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 32 32\"},(0,a.createElement)(\"rect\",{width:\"14.12\",height:\"14.12\",x:\"1\",y:\"16.88\",fill:\"#86A62C\",rx:\"3.53\"}),(0,a.createElement)(\"rect\",{width:\"14.12\",height:\"14.12\",x:\"16.88\",y:\"1\",fill:\"#86A62C\",rx:\"3.53\"}),(0,a.createElement)(\"path\",{fill:\"#86A62C\",fillRule:\"evenodd\",d:\"M1.38 2.93C1 3.68 1 4.67 1 6.65v2.82c0 1.98 0 2.97.38 3.72.34.66.88 1.2 1.55 1.54.75.39 1.74.39 3.72.39h2.82c1.98 0 2.97 0 3.72-.39.66-.34 1.2-.88 1.54-1.54.39-.75.39-1.74.39-3.72V6.65c0-1.98 0-2.97-.39-3.72a3.53 3.53 0 0 0-1.54-1.55C12.44 1 11.45 1 9.47 1H6.65c-1.98 0-2.97 0-3.72.38-.67.34-1.2.88-1.55 1.55Zm5.98 8.62 5.73-5.73-1.24-1.25-5.11 5.1-2.47-2.46-1.25 1.25 3.1 3.09c.34.34.9.34 1.24 0ZM16.88 22.53c0-1.98 0-2.97.39-3.72.34-.66.88-1.2 1.54-1.54.75-.39 1.74-.39 3.72-.39h2.82c1.98 0 2.97 0 3.72.39.67.34 1.2.88 1.55 1.54.38.75.38 1.74.38 3.72v2.82c0 1.98 0 2.97-.38 3.72-.34.67-.88 1.2-1.55 1.55-.75.38-1.74.38-3.72.38h-2.82c-1.98 0-2.97 0-3.72-.38a3.53 3.53 0 0 1-1.54-1.55c-.39-.75-.39-1.74-.39-3.72v-2.82Zm6.18.53v-3.09h1.76v3.09h3.1v1.76h-3.1v3.1h-1.76v-3.1h-3.09v-1.76h3.09Z\",clipRule:\"evenodd\"}))},i={wholesale_x:{title:\"WholesaleX\",subtitle:`WholesaleX \\n        ${__(\"is a B2B wholesale plugin featuring advanced wholesale pricing and customization features.\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fgetwholesalex.com\u002F\"},wow_store:{title:\"WowStore\",subtitle:`WowStore ${__(\"is a complete WooCommerce store builder featuring advanced options to improve sales!\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fwww.wpxpo.com\u002Fwowstore\u002F\"},wow_revenue:{title:\"WowRevenue\",subtitle:`WowRevenue ${__(\"boost sales and maximize revenue with the advanced discount campaigns of WowRevenue.\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fwww.wowrevenue.com\u002F\"},wow_optin:{title:\"WowOptin\",subtitle:`WowOptin ${__(\"generates actionable leads and boost sales with popups, banners, and floating bars using WowOptin.\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fwww.wowoptin.com\u002F\"},wow_addon:{title:\"WowAddons\",subtitle:`WowAddons ${__(\"extends the functionality of your WooCommerce store with additional features and options.\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fwww.wpxpo.com\u002Fproduct-addons-for-woocommerce\u002F\"}},l=()=>{const[e,t]=(0,a.useState)({}),[n,l]=(0,a.useState)(ultp_dashboard_pannel.products||{}),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(ultp_dashboard_pannel.products_active||{}),u=e=>{t((t=>({...t,[e]:!0})));const n=new FormData;n.append(\"action\",\"ultp_install_plugin\"),n.append(\"wpnonce\",ultp_dashboard_pannel.security),n.append(\"plugin\",e),fetch(ultp_dashboard_pannel.ajax,{method:\"POST\",body:n}).then((e=>e.json())).then((()=>{})).catch((()=>{})).finally((()=>{t((t=>({...t,[e]:!1}))),l((t=>({...t,[e]:!0}))),d((t=>({...t,[e]:!0})))}))},m=(0,r.t)();return(0,a.useEffect)((()=>{p(!0),setTimeout((()=>{m.current&&p(!1)}),1e3)}),[]),(0,a.createElement)(\"div\",{className:\"ultp-plugins-wrapper\"},(0,a.createElement)(\"div\",{className:\"ultp-plugin-items\"},Object.keys(i).map(((t,r)=>((t,r)=>{const l=o[t]||null;return(0,a.createElement)(\"div\",{key:r,className:\"ultp-plugin-item\"},(0,a.createElement)(\"div\",{className:\"ultp-plugin-item-title\"},(0,a.createElement)(\"div\",{className:\"ultp-product-icon\"},l),i[t].title),(0,a.createElement)(\"div\",{className:\"ultp-plugin-item-desc\"},i[t].subtitle),(0,a.createElement)(\"div\",{className:\"ultp-plugin-item-action\"},(0,a.createElement)(a.Fragment,null,c[t]?(0,a.createElement)(\"div\",{className:\"ultp-secondary-button ultp-activated-button\"},__(\"Activated\",\"ultimate-post\")):(0,a.createElement)(\"div\",{className:\"ultp-secondary-button ultp-plugin-active-btn\",onClick:()=>u(t),role:\"button\",tabIndex:-1,onKeyDown:e=>{\"Enter\"===e.key&&u(t)}},(0,a.createElement)(\"div\",null,n[t]?__(\"Activate\",\"ultimate-post\"):__(\"Install\",\"ultimate-post\")),e[t]&&(0,a.createElement)(\"span\",{className:\"ultp-plugin-item-loading\"}))),(0,a.createElement)(\"div\",{className:\"ultp-transparent-alter-button\",role:\"button\",tabIndex:-1,onClick:()=>window.open(i[t].pluginUrl,\"_blank\"),onKeyDown:e=>{\"Enter\"===e.key&&window.open(i[t].pluginUrl,\"_blank\")}},__(\"Plugin Details\",\"ultimate-post\"))))})(t,r)))))}},5957:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>s});var a=n(7294),r=n(356),o=n(4766),i=n(4482),l=n(8949);n(6680);const{__}=wp.i18n,s=e=>{const[t,n]=(0,a.useState)([]),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(1),[u,m]=(0,a.useState)(0),[f,h]=(0,a.useState)(\"\"),[g,v]=(0,a.useState)(0),[_,w]=(0,a.useState)(!1),[b,x]=(0,a.useState)(\"\"),[y,k]=(0,a.useState)([]),[E,C]=(0,a.useState)(\"\"),[S,M]=(0,a.useState)(!1),[L,N]=(0,a.useState)({state:!1,status:\"\"}),[Z,P]=(0,a.useState)(!1);(0,a.useEffect)((()=>(z(),document.addEventListener(\"mousedown\",B),()=>document.removeEventListener(\"mousedown\",B))),[]);const z=(t={})=>{A({action:\"dashborad\",data:Object.assign({},{type:\"saved_templates\",pages:c,pType:e.type},t)})},A=e=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002F\"+e.action,method:\"POST\",data:e.data}).then((t=>{if(t.success)switch(e.data.type){case\"saved_templates\":k(Array(t.data.length).fill(!1)),n(t.data),p(!(t.data.length>0)),h(t.new),m(t.found),v(t.pages),x(\"\"),w(!1),e.data.search&&d(1);break;case\"status\":case\"delete\":case\"duplicate\":case\"action_draft\":case\"action_delete\":case\"action_publish\":z(),w(!1),N({status:e.data.type.includes(\"delete\")?\"error\":\"success\",messages:[t.message],state:!0})}}))},B=e=>{e.target.parentNode.classList.contains(\"ultp-reserve-button\")||(C(\"\"),M(!1))};return(0,a.createElement)(\"div\",{className:`ultp-${\"ultp_templates\"==e.type?\"saved-template\":\"custom-font\"}-container`},L.state&&(0,a.createElement)(r.Z,{delay:2e3,toastMessages:L,setToastMessages:N}),f?(0,a.createElement)(a.Fragment,null,\"ultp_templates\"==e.type&&!ultp_dashboard_pannel.active&&t?.length>0?(0,a.createElement)(\"a\",{className:\"ultp-primary-button cursor\",onClick:()=>P(!0)},__(\"Add New\",\"ultimate-post\")):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"a\",{className:\"ultp-primary-button \",target:\"_blank\",href:f,rel:\"noreferrer\"},__(\"Add New\",\"ultimate-post\")))):(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:108,unit1:\"px\",size2:46,unit2:\"px\",br:4}}),(0,a.createElement)(\"div\",{className:\"tableCon\"},(0,a.createElement)(\"div\",{className:\"ultp-bulk-con ultp-dash-item-con\"},(0,a.createElement)(\"div\",null,(0,a.createElement)(\"select\",{value:b,onChange:e=>x(e.target.value)},(0,a.createElement)(\"option\",{value:\"\"},__(\"Bulk Action\",\"ultimate-post\")),(0,a.createElement)(\"option\",{value:\"publish\"},__(\"Publish\",\"ultimate-post\")),(0,a.createElement)(\"option\",{value:\"draft\"},__(\"Draft\",\"ultimate-post\")),(0,a.createElement)(\"option\",{value:\"delete\"},__(\"Delete\",\"ultimate-post\"))),(0,a.createElement)(\"a\",{className:\"ultp-primary-button cursor\",onClick:()=>{const e=y.filter((e=>Number.isInteger(e)));b&&e.length>0&&(\"delete\"==b?confirm(\"Are you sure you want to apply the action?\")&&A({action:\"dashborad\",data:{type:\"action_\"+b,ids:e}}):A({action:\"dashborad\",data:{type:\"action_\"+b,ids:e}}))}},__(\"Apply\",\"ultimate-post\"))),(0,a.createElement)(\"input\",{type:\"text\",placeholder:\"Search...\",onChange:e=>{z({search:e.target.value})}})),(0,a.createElement)(\"div\",{className:\"ultpTable\"},(0,a.createElement)(\"table\",{className:0!=t.length||s?\"\":\"skeletonOverflow\"},(0,a.createElement)(\"thead\",null,(0,a.createElement)(\"tr\",null,(0,a.createElement)(\"th\",null,(0,a.createElement)(\"input\",{type:\"checkbox\",checked:_,onChange:e=>{k(_?Array(t.length).fill(!1):t.map((e=>e.id))),w(!_)}})),(0,a.createElement)(a.Fragment,null,\"ultp_templates\"==e.type?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"th\",{className:\"title\"},__(\"Title\",\"ultimate-post\")),(0,a.createElement)(\"th\",null,__(\"Shortcode\",\"ultimate-post\"))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"th\",{className:\"title\"},__(\"Font Family\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontpreview\"},__(\"Preview\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"WOFF\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"WOFF2\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"TTF\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"SVG\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"EOT\",\"ultimate-post\"))),(0,a.createElement)(\"th\",{className:\"dateHead\"},__(\"Date\",\"ultimate-post\")),(0,a.createElement)(\"th\",null,__(\"Action\",\"ultimate-post\"))))),(0,a.createElement)(\"tbody\",null,t?.map(((t,n)=>(0,a.createElement)(\"tr\",{key:n},(0,a.createElement)(\"td\",null,(0,a.createElement)(\"input\",{type:\"checkbox\",checked:!!y[n],onChange:()=>{const e=[...y];e.splice(n,1,!y[n]&&t.id),k(e)}})),(t=>{let n=\"\",r={fontFamily:\"\",fontWeight:\"\"};if(\"ultp_templates\"!=e.type&&t?.font_settings?.length>0){const e=t.font_settings[0],a=[];e.woff&&a.push(`url(${e.woff}) format('woff')`),e.woff2&&a.push(`url(${e.woff2}) format('woff2')`),e.ttf&&a.push(`url(${e.ttf}) format('TrueType')`),e.svg&&a.push(`url(${e.svg}) format('svg')`),e.eot&&a.push(`url(${e.eot}) format('eot')`),n+=` @font-face {\\n                font-family: \"${t.title}\";\\n                font-weight: ${e.weight};\\n                font-display: auto;\\n                src: ${a.join(\", \")};\\n            } `,r={fontFamily:t.title,fontWeight:e.weight}}return(0,a.createElement)(a.Fragment,null,\"ultp_templates\"==e.type?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"td\",{className:\"title\"},(0,a.createElement)(\"a\",{href:t?.edit?.replace(\"&amp;\",\"&\"),target:\"_blank\",rel:\"noreferrer\"},t.title||\"Untitled\")),(0,a.createElement)(\"td\",null,(0,a.createElement)(\"span\",{className:\"shortCode\",onClick:e=>{(e=>{let t=!1;if(navigator.clipboard)t=navigator.clipboard.writeText(e.target.innerHTML);else{const n=document.createElement(\"input\");n.setAttribute(\"value\",e.target.innerHTML),document.body.appendChild(n),n.select(),t=document.execCommand(\"copy\"),document.body.removeChild(n)}if(t){const t=document.createElement(\"span\");t.innerText=\"Copied!\",e.target.appendChild(t),setTimeout((()=>{e.target.removeChild(t)}),800)}})(e)}},'[postx_template id=\"',t.id,'\"]'))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"td\",{className:\"title\"},(0,a.createElement)(\"a\",{href:t?.edit?.replace(\"&amp;\",\"&\"),target:\"_blank\",rel:\"noreferrer\"},t.title||\"Untitled\")),t.title&&(0,a.createElement)(\"style\",{type:\"text\u002Fcss\"},n),(0,a.createElement)(\"td\",{style:r},__(\"The quick brown fox jumps over the lazy dog.\",\"ultimate-post\")),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.woff?\"dashicons-yes\":\"dashicons-no-alt\")})),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.woff2?\"dashicons-yes\":\"dashicons-no-alt\")})),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.ttf?\"dashicons-yes\":\"dashicons-no-alt\")})),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.svg?\"dashicons-yes\":\"dashicons-no-alt\")})),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.eot?\"dashicons-yes\":\"dashicons-no-alt\")}))))})(t),(0,a.createElement)(\"td\",{className:\"typeDate\"},\"publish\"==t.status?\"Published\":t.status,\" \",(0,a.createElement)(\"br\",null),t.date),(0,a.createElement)(\"td\",null,(0,a.createElement)(\"span\",{className:\"actions ultp-reserve-button\",onClick:e=>{M(!S),C(t.id)}},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-ellipsis\"}),E==t.id&&S&&(0,a.createElement)(\"ul\",{className:\"ultp-dash-item-con actionPopUp ultp-reserve-button\"},(0,a.createElement)(\"li\",{className:\"ultp-reserve-button\"},(0,a.createElement)(\"a\",{target:\"_blank\",href:t?.edit?.replace(\"&amp;\",\"&\"),rel:\"noreferrer\"},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-edit-large\"}),__(\"Edit\",\"ultimate-post\"))),(0,a.createElement)(\"li\",{onClick:e=>{C(\"\"),M(!1),e.preventDefault(),confirm(\"Are you sure?\")&&A({action:\"template_action\",data:{type:\"status\",id:t.id,status:\"publish\"==t.status?\"draft\":\"publish\"}})}},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-open-folder\"}),__(\"Set to\",\"ultimate-post\"),\" \",\"draft\"==t.status?\"Publish\":\"Draft\"),(0,a.createElement)(\"li\",{onClick:e=>{C(\"\"),M(!1),e.preventDefault(),confirm(\"Are you sure you want to delete?\")&&A({action:\"template_action\",data:{type:\"delete\",id:t.id}})}},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-trash\"}),__(\"Delete\",\"ultimate-post\")),\"ultp_templates\"==e.type&&(0,a.createElement)(\"li\",{onClick:e=>{C(\"\"),M(!1),e.preventDefault(),confirm(\"Are you sure you want to duplicate this template?\")&&A({action:\"template_action\",data:{type:\"duplicate\",id:t.id}})}},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-admin-page\"}),__(\"Duplicate\",\"ultimate-post\")))))))),0==t.length&&s&&(0,a.createElement)(\"tr\",null,\"ultp_templates\"==e.type?(0,a.createElement)(\"td\",{colSpan:5},(0,a.createElement)(\"div\",{className:\"ultp_h2\"},__(\"No Data Found !!!\",\"ultimate-post\"))):(0,a.createElement)(\"td\",{colSpan:10},(0,a.createElement)(\"div\",{className:\"ultp_h2\"},__(\"No Data Found !!!\",\"ultimate-post\")))),0==t.length&&!s&&(0,a.createElement)(a.Fragment,null,Array(5).fill(1).map(((t,n)=>(0,a.createElement)(\"tr\",{key:n},(0,a.createElement)(\"td\",null,(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:22,unit1:\"px\",size2:20,unit2:\"px\",br:4}})),\"ultp_templates\"==e.type?(0,a.createElement)(a.Fragment,null,Array(4).fill(1).map(((e,t)=>(0,a.createElement)(\"td\",{key:t},(0,a.createElement)(l.Z,{type:\"title\",size:\"99\"}))))):(0,a.createElement)(a.Fragment,null,Array(9).fill(1).map(((e,t)=>(0,a.createElement)(\"td\",{key:t},(0,a.createElement)(l.Z,{type:\"title\",size:\"99\"})))))))))))),(0,a.createElement)(\"div\",{className:\"pageCon\"},(0,a.createElement)(\"div\",null,__(\"Page\",\"ultimate-post\"),\" \",g>0?c:g,\" \",__(\"of\",\"ultimate-post\"),\" \",g,\" [\",\" \",u,\" \",__(\"items\",\"ultimate-post\"),\" ]\"),g>0&&(0,a.createElement)(\"div\",{className:\"ultpPages\"},c>1&&(0,a.createElement)(\"span\",{onClick:()=>{const e=c-1;z({pages:e}),d(e)}},o.ZP.leftAngle2),(0,a.createElement)(\"span\",{className:\"currentPage\"},c),g>c&&(0,a.createElement)(\"span\",{onClick:()=>{const e=c+1;z({pages:e}),d(e)}},o.ZP.rightAngle2)))),Z&&(0,i.cs)({tags:\"menu_save_temp_pro\",func:e=>{P(e)},data:{icon:\"saved_template_lock.svg\",title:__(\"Create Unlimited Saved Templates with PostX Pro\",\"ultimate-post\"),description:__(\"You can create only one saved template with the free version of PostX. Please upgrade to a pro plan to create unlimited saved templates.\",\"ultimate-post\")}}))}},3554:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>d});var a=n(7294),r=n(1383),o=n(448),i=n(4766),l=n(8949),s=n(356),p=n(814),c=n(6488);const{__}=wp.i18n,d=e=>{const[t,n]=(0,a.useState)({templates:[],designs:[],reloadId:\"\",reload:!1,isTemplate:!0,error:!1,fetching:!1,loading:!1}),[d,u]=(0,a.useState)(\"\"),[m,f]=(0,a.useState)(\"all\"),[h,g]=(0,a.useState)(\"all\"),[v,_]=(0,a.useState)(\"all\"),[w,b]=(0,a.useState)([]),[x,y]=(0,a.useState)(!1),[k,E]=(0,a.useState)({state:!1,status:\"\"}),[C,S]=(0,a.useState)(\"3\"),[M,L]=(0,a.useState)(\"\"),[N,Z]=(0,a.useState)([]),{loading:P,fetching:z}=t,A=(0,r.t)(),B=async()=>{n((e=>({...e,loading:!0}))),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ffetch_premade_data\",method:\"POST\",data:{type:\"starter_lists\"}}).then((e=>{if(e.success&&A.current&&e.data){const t=JSON.parse(e.data);Z(t),n((e=>({...e,loading:!1})))}}))},H=[{value:\"all\",label:__(\"All Categories\",\"ultimate-post\")},{value:\"news\",label:__(\"News\",\"ultimate-post\")},{value:\"magazine\",label:__(\"Magazine\",\"ultimate-post\")},{value:\"blog\",label:__(\"Blog\",\"ultimate-post\")},{value:\"sports\",label:__(\"Sports\",\"ultimate-post\")},{value:\"fashion\",label:__(\"Fashion\",\"ultimate-post\")},{value:\"tech\",label:__(\"Tech\",\"ultimate-post\")},{value:\"travel\",label:__(\"Travel\",\"ultimate-post\")},{value:\"food\",label:__(\"Food\",\"ultimate-post\")},{value:\"movie\",label:__(\"Movie\",\"ultimate-post\")},{value:\"health\",label:__(\"Health\",\"ultimate-post\")},{value:\"gaming\",label:__(\"Gaming\",\"ultimate-post\")},{value:\"nft\",label:__(\"NFT\",\"ultimate-post\")}];(0,a.useEffect)((()=>{T(\"\",\"\",\"fetchData\"),B()}),[]);const T=(e,t=\"\",n=\"\")=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fpremade_wishlist_save\",method:\"POST\",data:{id:e,action:t,type:n}}).then((e=>{e.success&&A.current&&(b(Array.isArray(e.wishListArr)?e.wishListArr:Object.values(e.wishListArr||{})),\"fetchData\"!=n&&E({status:\"success\",messages:[e.message],state:!0}))}))};if(M){document.querySelector(\"#adminmenumain\").style=\"display: none;\",document.querySelector(\".ultp-settings-container\").style=\"min-height: unset;\";const e=N.filter((e=>e.live==M))[0];return(0,a.createElement)(p.Z,{_val:e,setLiveUrl:L,liveUrl:M})}document.querySelector(\"#adminmenumain\").style=\"\",document.querySelector(\".ultp-settings-container\").style=\"\";let R=(0,o.cC)(w.join(\"\"),[]);R&&\"object\"==typeof R&&!Array.isArray(R)&&(R=Object.keys(R).sort(((e,t)=>e-t)).map((e=>R[e])));const O=N.map((e=>e.ID)).sort(((e,t)=>t-e)).slice(0,3);return(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-templatekit-wrap\"},k.state&&(0,a.createElement)(s.Z,{delay:2e3,toastMessages:k,setToastMessages:E}),(0,a.createElement)(\"div\",{className:\"ultp-templatekit-list-container \"},(0,a.createElement)(c.Z,{changeStates:(e,t)=>{\"freePro\"==e?_(t):\"search\"==e?u(t):\"column\"==e?S(t):\"wishlist\"==e?y(t):\"trend\"==e?(f(t),\"latest\"==t||\"all\"==t?N.sort(((e,t)=>t.ID-e.ID)):\"popular\"==t&&N[0]&&N[0].hit&&N.sort(((e,t)=>t.hit-e.hit))):\"filter\"==e&&g(t)},useState:a.useState,useEffect:a.useEffect,useRef:a.useRef,column:C,showWishList:x,_fetchFile:()=>{n((e=>({...e,fetching:!0}))),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ffetch_premade_data\",method:\"POST\",data:{type:\"fetch_all_data\"}}).then((e=>{e.success&&A.current&&(B(),n((e=>({...e,fetching:!1}))),E({status:\"success\",messages:[e.message],state:!0}))}))},fetching:z,searchQuery:d,fields:{filter:!0,trend:!0,freePro:!0},fieldOptions:{filterArr:H,trendArr:[],freeProArr:[]},fieldValue:{filter:h,trend:m,freePro:v}}),N.length>0?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-premade-grid ultp-templatekit-col\"+C},N.map((e=>e.title?.toLowerCase().includes(d.toLowerCase())&&(\"all\"==h||\"all\"!=h&&(h==e.category||(Array.isArray(e.parent_cat)?e.parent_cat:Object.values(e.parent_cat||{})).includes(h)))&&(\"all\"==v||\"pro\"==v&&e.pro||\"free\"==v&&!e.pro)&&(!x||x&&R?.includes(e.ID))&&(0,a.createElement)(\"div\",{key:e.ID,className:\"ultp-item-wrapper ultp-starter-group \"},(0,a.createElement)(\"div\",{className:\"ultp-item-list\"},(0,a.createElement)(\"div\",{className:\"ultp-item-list-overlay\"},(0,a.createElement)(\"a\",{className:\"ultp-templatekit-img bg-image-aspect\",href:\"#\",style:{backgroundImage:`url(https:\u002F\u002Fpostxkit.wpxpo.com\u002F${e.live}\u002Fwp-content\u002Fuploads\u002Fsites\u002F${e.ID}\u002Fpostx_importer_img\u002Fpages\u002Fhome.jpg)`}}),(0,a.createElement)(\"div\",{className:\"ultp-list-dark-overlay\"},!ultp_dashboard_pannel.active&&(0,a.createElement)(a.Fragment,null,e.pro?(0,a.createElement)(\"span\",{className:\"ultp-templatekit-premium-btn\"},__(\"Pro\",\"ultimate-post\")):(0,a.createElement)(\"span\",{className:\"ultp-templatekit-premium-btn ultp-templatekit-premium-free-btn\"},__(\"Free\",\"ultimate-post\"))),(0,a.createElement)(\"a\",{className:\"ultp-overlay-view ultp-dashboverlay\",onClick:()=>L(e.live)},i.ZP.eye,__(\"Live Preview\",\"ultimate-post\"))),e.pro&&(0,a.createElement)(\"div\",{className:\"ultp-list-info-tag-pro\"},(0,a.createElement)(\"span\",null,\"PRO\"))),(0,a.createElement)(\"div\",{className:\"ultp-item-list-info\"},(0,a.createElement)(\"div\",{className:\"ultp-list-info\",onClick:()=>L(e.live)},(0,a.createElement)(\"div\",{className:\"ultp-list-info-title\"},e.title,O.includes(e.ID)&&(0,a.createElement)(\"div\",{className:\"ultp-list-info-tag-new\"},\"NEW\")),(0,a.createElement)(\"div\",{className:\"ultp-list-info-count\"},e.templates?.length&&e.templates?.length+\" templates\")),(0,a.createElement)(\"span\",{className:\"ultp-action-btn\"},(0,a.createElement)(\"span\",{className:\"ultp-premade-wishlist\",onClick:()=>{T(e.ID,R?.includes(e.ID)?\"remove\":\"\")}},i.ZP[R?.includes(e.ID)?\"love_solid\":\"love_line\"]))))))))):P?(0,a.createElement)(\"div\",{className:\"ultp-premade-grid skeletonOverflow ultp-templatekit-col\"+C},Array(25).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{key:t,className:\"ultp-item-list\"},(0,a.createElement)(\"div\",{className:\"ultp-item-list-overlay\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:440,unit2:\"px\"}})),(0,a.createElement)(\"div\",{className:\"ultp-item-list-info\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"%\",size2:25,unit2:\"px\",br:2}}),(0,a.createElement)(\"span\",{className:\"ultp-action-btn\"},(0,a.createElement)(\"span\",{className:\"ultp-premade-wishlist\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:30,unit1:\"px\",size2:25,unit2:\"px\",br:2}})))))))):(0,a.createElement)(\"span\",{className:\"ultp-image-rotate\"},__(\"No Data Available…\",\"ultimate-post\")))))}},4371:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>i});var a=n(7294),r=n(448),o=n(5404);const{__}=wp.i18n,i=({ultpPresetColors:e,currentPresetColors:t,setCurrentPresetColors:n,setCurrentPostxGlobal:i,currentPostxGlobal:l})=>{const s={...e,rootCSS:(0,r.AJ)(\"styleCss\",e)},[p,c]=(0,a.useState)({...t,...s}),[d,u]=(0,a.useState)(\"\"),[m,f]=(0,a.useState)(!1),h=(0,r.AJ)(\"colorStacks\"),g=(0,r.AJ)(\"presetColorKeys\");(0,a.useEffect)((()=>{(0,r.x2)(\"get\",\"ultpPresetColors\",\"\",(e=>{if(e.data){const t={...e.data,...p};n({...t,rootCSS:(0,r.AJ)(\"styleCss\",t)})}}))}),[]);const v=(e,a=\"\")=>{let o={...t,...e};\"darkhandle\"!=a&&m&&(o=_(o));const i=((e={},t=\"\")=>{const n=(0,r.AJ)(\"styleCss\",e),a=document.querySelector(\"#ultp-starter-preview\");if(a.contentWindow){const e={type:\"replaceColorRoot\",id:\"#ultp-preset-colors-style-inline-css\",styleCss:n,dlMode:\"darkhandle\"==t?m?\"ultpLight\":\"ultpDark\":m?\"ultpDark\":\"ultpLight\"};a.contentWindow.postMessage(e,\"*\")}return n})(o,a);c(o),n({...o,rootCSS:i})},_=(e={})=>({...e,Base_1_color:e.Contrast_1_color,Base_2_color:e.Contrast_2_color,Base_3_color:e.Contrast_3_color,Contrast_1_color:e.Base_1_color,Contrast_2_color:e.Base_2_color,Contrast_3_color:e.Base_3_color});return(0,a.createElement)(\"div\",{className:\"ultp_starter_preset_container\"},(0,a.createElement)(\"div\",{className:\"ultp_starter_dark_container\"},(0,a.createElement)(\"div\",{onClick:()=>(()=>{const e=_(t);document.querySelector(\".ultp-dl-container .ultp-dl-svg-con\").style=`transform: translateX(${m?\"\":\"calc( 100% + 71px )\"}); transition: transform .4s ease`,document.querySelector(\".ultp-dl-container .ultp-dl-svg-title\").style=`transform: translateX(${m?\"\":\"calc( -100% + 50px )\"}); transition: transform .4s ease`,setTimeout((()=>{f(!m),i({...l,enableDark:!m}),v(e,\"darkhandle\")}),400)})(),className:\" ultp-dl-container \"},(0,a.createElement)(\"div\",{className:\"ultp-dl-svg-con \"+(m?\"dark\":\"\")},(0,a.createElement)(\"div\",{className:\"ultp-dl-svg\"},o.Z[m?\"moon\":\"sun\"])),(0,a.createElement)(\"div\",{className:\"ultp-dl-svg-title\"},m?\"Dark Mode\":\"Light Mode\"))),(0,a.createElement)(\"div\",{className:\"ultp_starter_reset_container\"},(0,a.createElement)(\"div\",{className:\"packs_title\"},__(\"Change Color Palette\",\"ultimate-post\")),d&&(0,a.createElement)(\"span\",{className:\"dashicons dashicons-image-rotate\",onClick:()=>{u(\"\"),v(s)}})),(0,a.createElement)(\"ul\",{className:\"ultp-color-group\"},h.map(((e,t)=>(0,a.createElement)(\"li\",{className:\"ultp_starter_preset_list \"+(d==t+1?\"active\":\"\"),key:t,onClick:()=>{const n={};u(t+1),g.forEach(((t,a)=>{n[t]=e[a]})),v(n)}},e.map(((e,t)=>![1,2,6,8,9].includes(t+1)&&(0,a.createElement)(\"span\",{key:t,className:\"ultp-global-color\",style:{backgroundColor:e}}))))))))}},5066:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294),r=n(448);const{__}=wp.i18n,o=({ultpPresetTypos:e,currentPresetTypos:t,setCurrentPresetTypos:n})=>{const o={...e,presetTypoCSS:(0,r.AJ)(\"typoCSS\",e,!0)},[i,l]=(0,a.useState)({...t,...o}),[s,p]=(0,a.useState)(\"\"),c=(0,r.AJ)(\"presetTypoKeys\"),d=(0,r.AJ)(\"typoStacks\");(0,a.useEffect)((()=>{(0,r.x2)(\"get\",\"ultpPresetTypos\",\"\",(e=>{if(e.data){const t={...e.data,...i};l({...t,presetTypoCSS:(0,r.AJ)(\"typoCSS\",t,!0)}),n({...t,presetTypoCSS:(0,r.AJ)(\"typoCSS\",t,!0)})}}))}),[]);const u=e=>{const a={...t,...e},o=((e={})=>{const t=(0,r.AJ)(\"typoCSS\",e,!0),n=document.querySelector(\"#ultp-starter-preview\");if(n.contentWindow){const e={type:\"replaceColorRoot\",id:\"#ultp-preset-typo-style-inline-css\",styleCss:t};n.contentWindow.postMessage(e,\"*\")}return t})(a);l(a),n({...a,presetTypoCSS:o})};return(0,a.createElement)(\"div\",{className:\"ultp_starter_preset_container\"},(0,a.createElement)(\"div\",{className:\"ultp_starter_reset_container\"},(0,a.createElement)(\"div\",{className:\"packs_title\"},__(\"Change Font & Typography\",\"ultimate-post\")),s&&(0,a.createElement)(\"span\",{className:\"dashicons dashicons-image-rotate\",onClick:()=>{p(\"\"),u(o)}})),(0,a.createElement)(\"ul\",{className:\"ultp-typo-group\"},d.map(((e,n)=>(0,a.createElement)(\"li\",{title:`${e[0].family}\u002F${e[1].family}`,className:\"ultp_starter_preset_typo_list \"+(s==n+1?\"active\":\"\"),key:n,onClick:()=>{const a={};p(n+1),c.forEach(((n,r)=>{a[n]={...t[n]},a[n].family=e[r].family,a[n].type=e[r].type,a[n].weight=e[r].weight})),u(a)}},e.map(((e,t)=>(0,a.createElement)(\"span\",{key:t},(0,a.createElement)(\"style\",null,(0,r.AJ)(\"font_load\",e,!0)),(0,a.createElement)(\"span\",{key:t,className:\"\",style:{fontFamily:`${e.family}, ${e.type}`}},0==t?\"A\":\"a\")))))))))}},5324:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294),r=n(4766);const o=e=>{const{useState:t,useEffect:n,useRef:o,onChange:i,options:l,value:s,contentWH:p}=e,[c,d]=t(!1),u=o(null),m=e=>{u?.current&&!u?.current.contains(e.target)?d(!1):u?.current&&u?.current.contains(e.target)&&!e.target.classList?.contains(\"ultp-reserve-button\")&&d(!u?.current.classList?.contains(\"open\"))};n((()=>(document.addEventListener(\"mousedown\",m),()=>document.removeEventListener(\"mousedown\",m))),[]);const f=l?.find((e=>e.value===s));return(0,a.createElement)(\"div\",{ref:u,className:\"starter_filter_select \"+(c?\"open\":\"\")},(0,a.createElement)(\"div\",{className:\"starter_filter_selected\"},f?f.label:\"Select an option\",r.ZP.collapse_bottom_line),c&&(0,a.createElement)(\"ul\",{className:\"starter_filter_select_options\",style:{minWidth:p?.width||\"100px\",maxHeight:p?.height||\"160px\"}},l.map(((e,t)=>(0,a.createElement)(\"li\",{className:\"ultp-reserve-button starter_filter_select_option\",key:t,onClick:()=>(e=>{d(!1),i(e.value)})(e)},e.label)))))}},814:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>c});var a=n(7294),r=n(448),o=n(4766),i=n(4482),l=n(8949),s=n(4371),p=n(5066);n(4602);const{__}=wp.i18n,c=e=>{const{_val:t,setLiveUrl:n,liveUrl:c}=e,[d,u]=(0,a.useState)({}),[m,f]=(0,a.useState)({}),[h,g]=(0,a.useState)({}),v={deletePrevious:\"yes\",installPlugin:\"yes\",user_email:ultp_dashboard_pannel.user_email,get_newsletter:\"yes\",importDummy:\"yes\"},[_,w]=(0,a.useState)(!1),[b,x]=(0,a.useState)(!1),[y,k]=(0,a.useState)(!1),[E,C]=(0,a.useState)([]),[S,M]=(0,a.useState)(v),[L,N]=(0,a.useState)(0),[Z,P]=(0,a.useState)({type:\"desktop\",width:\"100%\"}),[z,A]=(0,a.useState)(!1),[B,H]=(0,a.useState)(!0),[T,R]=(0,a.useState)(!1),[O,j]=(0,a.useState)({plugin:!1,content:!1}),[V,F]=(0,a.useState)(!1),[W,D]=(0,a.useState)({}),[I,U]=(0,a.useState)({}),[$,G]=(0,a.useState)([]);(0,a.useEffect)((()=>{window.fetch(\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+t.live+\"\u002Fwp-json\u002Fimporter\u002Fglobal_settings\",{method:\"GET\"}).then((e=>e.text())).then((e=>{const t=(0,r.cC)(e,{});t.success&&(((e={})=>{wp.apiFetch({path:\"\u002Fultp\u002Fv1\u002Faction_option\",method:\"POST\",data:{type:\"get\"}}).then((t=>{if(t.success){let n={...t.data,...e};n={...n,globalCSS:(0,r.AJ)(\"globalCSS\",n)},g(n)}}))})(t.postx_global),D(t.ultpPresetColors),U(t.ultpPresetTypos),G(t.plugins))})).catch((e=>{}))}),[]);const q=(e,t,n,r=\"\")=>(0,a.createElement)(\"div\",{className:\"input_container\"},\"checkbox\"==t&&(0,a.createElement)(\"input\",{id:e,className:r,name:e,type:t,defaultChecked:!(!S[e]||\"yes\"!=S[e]),onChange:t=>{const n=t.target.checked?\"yes\":\"no\";M({...S,[e]:n})}}),\"checkbox\"!=t&&(0,a.createElement)(\"input\",{id:e,className:r,name:e,type:t,defaultValue:S[e]||\"\",onChange:t=>{const n=t.target.value;M({...S,[e]:n})}}),n&&(0,a.createElement)(\"span\",null,(0,a.createElement)(\"span\",{className:\"ultp-info\"},n)));return(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\" ultp_starter_packs_demo theme-install-overlay wp-full-overlay expanded \"+(B?\"active\":\"inactive\"),style:{display:\"block\"}},(0,a.createElement)(\"div\",{className:\"wp-full-overlay-sidebar \"},(0,a.createElement)(\"div\",{className:\"wp-full-overlay-header\"},(0,a.createElement)(\"div\",{className:\"ultp_starter_packs_demo_header\"},(0,a.createElement)(\"div\",{className:\"packs_title\"},t.title,(0,a.createElement)(\"span\",null,t.category)),(0,a.createElement)(\"button\",{onClick:()=>n(\"\"),className:\"close-full-overlay\"})),(0,a.createElement)(\"div\",{className:\"ultp-starter-collapse \"+(B?\"active\":\"inactive\"),onClick:()=>{H(!B)}},o.ZP.collapse_bottom_line)),Array(6).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{key:t,className:\"ultp-addon-item ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-contents\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-name\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"px\",size2:50,unit2:\"px\",br:18}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:190,unit1:\"px\",size2:28,unit2:\"px\",br:4}})),(0,a.createElement)(\"div\",{className:\"ultp-description\"},(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:100,unit1:\"%\",size2:14,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:70,unit1:\"%\",size2:14,unit2:\"px\",br:2}}))),(0,a.createElement)(\"div\",{className:\"ultp-addon-item-actions ultp-dash-control-options\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"px\",size2:20,unit2:\"px\",br:8}}),(0,a.createElement)(\"div\",{className:\"ultp-docs-action\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:22,unit2:\"px\",br:2}})))))),(0,a.createElement)(\"div\",{className:\"wp-full-overlay-sidebar-content\"},W.hasOwnProperty(\"Base_1_color\")?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(s.Z,{ultpPresetColors:W,currentPresetColors:d,setCurrentPresetColors:u,currentPostxGlobal:h,setCurrentPostxGlobal:g})):(0,a.createElement)(\"div\",{className:\"skeletonOverflow\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:140,unit1:\"px\",size2:40,unit2:\"px\",br:40}}),(0,a.createElement)(\"div\",{className:\"skeletonOverflow_colors\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:140,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(\"div\",{className:\"demos-color\"},Array(10).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:\"custom_size\",c_s:{size1:100,unit1:\"px\",size2:30,unit2:\"px\",br:6}})))))),I.hasOwnProperty(\"Body_and_Others_typo\")?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(p.Z,{ultpPresetTypos:I,currentPresetTypos:m,setCurrentPresetTypos:f})):(0,a.createElement)(\"div\",{className:\"skeletonOverflow\"},(0,a.createElement)(\"div\",{className:\"skeletonOverflow_colors\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:140,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(\"div\",{className:\"demos-color\"},Array(10).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:\"custom_size\",c_s:{size1:100,unit1:\"px\",size2:30,unit2:\"px\",br:6}}))))))),(0,a.createElement)(\"div\",{className:\"wp-full-overlay-footer\"},(0,a.createElement)(\"div\",{className:\"ultp_starter_import_options\"},(0,a.createElement)(\"div\",{className:\"option_buttons\"},t.pro&&!ultp_dashboard_pannel.active?(0,i.hx)(`https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-starter&utm_medium=${t.live}-upgrade-pro&utm_campaign=postx-dashboard#pricing`,\"\"):(0,a.createElement)(\"a\",{className:\"ultp-starter-button\",onClick:()=>{w(!0)}},__(\"Import Site\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"ultp-starter-packs-device-container\"},(0,a.createElement)(\"span\",{onClick:()=>P({type:\"desktop\",width:\"100%\"}),className:\"ultp-starter-packs-device \"+(\"desktop\"==Z.type?\"d-active\":\"\")},o.ZP.desktop),(0,a.createElement)(\"span\",{onClick:()=>P({type:\"tablet\",width:(h.breakpointSm||\"990\")+\"px\"}),className:\"ultp-starter-packs-device \"+(\"tablet\"==Z.type?\"d-active\":\"\")},o.ZP.tablet),(0,a.createElement)(\"span\",{onClick:()=>P({type:\"mobile\",width:(h.breakpointXs||\"767\")+\"px\"}),className:\"ultp-starter-packs-device \"+(\"mobile\"==Z.type?\"d-active\":\"\")},o.ZP.mobile))))),(0,a.createElement)(\"div\",{className:\"wp-full-overlay-main\"},!T&&(0,a.createElement)(\"div\",{className:\"iframe_loader\"},(0,a.createElement)(\"div\",{className:\"iframe_container\"},(0,a.createElement)(\"div\",{className:\"iframe_header\"},(0,a.createElement)(\"div\",{className:\"iframe_header_top\"},(0,a.createElement)(\"div\",{className:\"header_top_left\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:60,unit2:\"px\",br:60}})),(0,a.createElement)(\"div\",{className:\"header_top_right\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:90,unit1:\"px\",size2:30,unit2:\"px\",br:4}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:90,unit1:\"px\",size2:30,unit2:\"px\",br:4}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:90,unit1:\"px\",size2:30,unit2:\"px\",br:4}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:90,unit1:\"px\",size2:30,unit2:\"px\",br:4}}),Array(3).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:\"custom_size\",c_s:{size1:30,unit1:\"px\",size2:30,unit2:\"px\",br:30}})))))),(0,a.createElement)(\"div\",{className:\"iframe_body_content\"},(0,a.createElement)(\"div\",{className:\"iframe_body_slider\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:300,unit2:\"px\",br:2}})),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:190,unit1:\"px\",size2:36,unit2:\"px\",br:2}}),(0,a.createElement)(\"div\",{className:\"iframe_body\"},(0,a.createElement)(\"div\",{className:\"iframe_body_left\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:300,unit2:\"px\",br:2}})),(0,a.createElement)(\"div\",{className:\"iframe_body_right\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:140,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:140,unit2:\"px\",br:2}})))))),(0,a.createElement)(\"iframe\",{className:`${Z.type}View`,onLoad:()=>{R(!0),(()=>{const e=document.querySelector(\"#ultp-starter-preview\");if(d.hasOwnProperty(\"Base_1_color\")){const t=(0,r.AJ)(\"styleCss\",d);if(e.contentWindow){const n={type:\"replaceColorRoot\",id:\"#ultp-preset-colors-style-inline-css\",styleCss:t,dlMode:h.enableDark?\"ultpDark\":\"ultpLight\"};e.contentWindow.postMessage(n,\"*\")}}if(m.hasOwnProperty(\"Body_and_Others_typo\")){const t=(0,r.AJ)(\"typoCSS\",m,!0);if(e.contentWindow){const n={type:\"replaceColorRoot\",id:\"#ultp-preset-typo-style-inline-css\",styleCss:t};e.contentWindow.postMessage(n,\"*\")}}})()},style:{display:\"block\",margin:\"0 auto\",maxWidth:Z.width},id:\"ultp-starter-preview\",src:\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+c}))),_&&(0,a.createElement)(\"div\",{className:\"ultp-stater-container-settings-overlay\"},(0,a.createElement)(\"div\",{className:\"ultp-stater-settings-container\"},(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"ultp-popup-stater\"},b?(0,a.createElement)(a.Fragment,null,y?(0,a.createElement)(\"div\",{className:\"ultp_processing_import\"},(0,a.createElement)(\"div\",{className:\"stater_title\"},__(`Started building ${t.title} website`,\"ultimate-post\")),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"ultp_import_builders ultp-info\"},__(\"The import process can take a few seconds depending on the size of the kit you are importing and speed of the connection.\",\"ultimate-post\"),\" \",(0,a.createElement)(\"br\",null),(O.plugin||O.content)&&(0,a.createElement)(\"div\",{className:\"progress\"},(0,a.createElement)(\"div\",null,(0,a.createElement)(\"strong\",null,\"Progress:\"),\" \",O.plugin?\"Plugin Installation is\":O.content?\"Page\u002FPosts\u002FMedia Importing is\":\"Site Importing\",\" \",\"on progress..\")))),(0,a.createElement)(\"div\",{className:\"ultp_processing_show\"},(0,a.createElement)(\"div\",{className:\"ultp-importer-loader\"},(0,a.createElement)(\"div\",{id:\"ultp-importer-loader-bar\",style:{width:L+\"%\"}}),(0,a.createElement)(\"div\",{id:\"ultp-importer-loader-percentage\",style:{color:L>52?\"#fff\":\"#000\"}},L+\"%\"))),(0,a.createElement)(\"div\",{className:\"ultp_import_notice\"},(0,a.createElement)(\"span\",null,__(\"Note:\",\"ultimate-post\")),__(\"Please do not close this browser window until import is completed.\",\"ultimate-post\"))):(0,a.createElement)(\"div\",{className:\"ultp_successful_import\"},(0,a.createElement)(\"div\",{className:\"stater_title\"},t.title,__(` Imported ${V?\"Failed\":\"Successfully\"} `,\"ultimate-post\")),(0,a.createElement)(\"div\",null,V?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp_import_builders\"},__(\"Due to resquest timeout this import is failed\",\"ultimate-post\"),(0,a.createElement)(\"a\",{className:\"cursor\",onClick:()=>{window.location.reload()}},__(\"Refresh\",\"ultimate-post\")),__(\"page and try again\",\"ultimate-post\"))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp_import_builders\"},__(\"Navigate to\",\"ultimate-post\"),(0,a.createElement)(\"a\",{className:\"cursor\",onClick:()=>{window.location.href=ultp_dashboard_pannel.builder_url,window.location.reload()}},__(\"Site Builder to edit\",\"ultimate-post\")),__(\"your Archive, Post, Default Page and other templates.\",\"ultimate-post\")),(0,a.createElement)(\"a\",{className:\"ultp-primary-button\",href:ultp_dashboard_pannel.home_url},__(\"View Your Website\",\"ultimate-post\")))))):(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"ultp-info ultp-info-desc\"},\" \",__(\"Import the entire site including posts, images, pages, content and plugins.\",\"ultimate-post\")),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"stater_title\"},__(\"Import Settings\",\"ultimate-post\")),q(\"importDummy\",\"checkbox\",__(\"Import dummy post, taxonomy and featured images\",\"ultimate-post\")),q(\"deletePrevious\",\"checkbox\",__(\"Delete Previously imported sites\",\"ultimate-post\")),q(\"installPlugin\",\"checkbox\",__(\"Install required plugins\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"starter_page_impports\"},(0,a.createElement)(\"div\",{className:\"stater_title\"},__(\"Template\u002FPages\",\"ultimate-post\")),t?.templates?.map(((e,t)=>(!z&&t\u003C3||z)&&(0,a.createElement)(\"div\",{key:t,className:\"input_container\"},(0,a.createElement)(\"input\",{type:\"checkbox\",defaultChecked:!E.includes(e.name),onChange:t=>{t.target.checked&&E.includes(e.name)?C(E.filter((t=>t!==e.name))):t.target.checked||E.includes(e.name)||C([...E,e.name])}}),(0,a.createElement)(\"span\",null,(0,a.createElement)(\"span\",{className:\"ultp-info\"},e.name))))),t.templates.length>3&&(0,a.createElement)(\"div\",{className:\"cursor\",onClick:()=>{A(!z)}},\"Show \"+(z?\"less\":\"more\"),\" \",o.ZP.videoplay)),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"stater_title\"},__(\"Subscribe\",\"ultimate-post\")),(0,a.createElement)(\"span\",null,__(\"Stay up to date with the latest started templates and special offers\",\"ultimate-post\")),q(\"user_email\",\"email\",\"\",\"email_box\"),q(\"get_newsletter\",\"checkbox\",__(\"Stay updated with exciting features and news.\"),\"get_newsletter\")))),!b&&(0,a.createElement)(\"div\",{className:\"starter_import \"},(0,a.createElement)(\"a\",{className:\"ultp-primary-button\",onClick:()=>(async e=>{x(!0);let n,a=0;async function o(e,t,r){n=setInterval((()=>{e>=t?clearInterval(n):(e++,a++,N(e))}),r)}if(o(a,70,\"yes\"==S.importDummy?800:400),e){x(!0),k(!0);const i=$;if((0,r.x2)(\"set\",\"ultpPresetColors\",d),(0,r.x2)(\"set\",\"ultpPresetTypos\",m),wp.apiFetch({method:\"POST\",path:\"\u002Fultp\u002Fv1\u002Faction_option\",data:{type:\"set\",data:h}}),\"yes\"==S.deletePrevious||\"yes\"==S.get_newsletter){const e=new Promise(((e,t)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv3\u002Fdeletepost_getnewsletters\",method:\"POST\",data:{deletePrevious:S.deletePrevious,get_newsletter:S.get_newsletter}}).then((t=>{e(\"responsed\")}))}));await e}if(\"yes\"==S.importDummy){const t=new Promise(((t,n)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv3\u002Fstarter_dummy_post\",method:\"POST\",data:{api_endpoint:e,importDummy:S.importDummy}}).then((e=>{t(\"responsed\")})).catch((e=>{console.log(e),t(\"responsed\")}))}));await t}if(\"yes\"==S?.installPlugin){j({...O,plugin:!0});const e=i.map(((e,t)=>new Promise(((t,n)=>{jQuery.ajax({type:\"POST\",url:ultp_dashboard_pannel.ajax,data:{action:\"install_required_plugin\",wpnonce:ultp_dashboard_pannel.security,plugin:JSON.stringify(e)}}).done((function(e){t(\"responsed\")}))}))));await Promise.all(e),j({...O,plugin:!1})}clearInterval(n),o(a+1,80,500);const l=t.templates?.filter((e=>!E.includes(e.name)));l.length>0&&(j({...O,content:!0}),wp.apiFetch({path:\"\u002Fultp\u002Fv3\u002Fstarter_import_content\",method:\"POST\",data:{excludepages:JSON.stringify(E),api_endpoint:e,importDummy:S.importDummy,installPlugin:S?.installPlugin}}).then((e=>{clearInterval(n),o(a+1,100,50),setTimeout((()=>{k(!1),j({...O,content:!1})}),50*(100-a+2)),e.success||F(!0)})).catch((e=>{console.log(e),o(a+1,100,50),setTimeout((()=>{k(!1),j({...O,content:!1})}),50*(100-a+2))})))}})(\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+t.live)},__(\"Start Importing\",\"ultimate-post\"))),(0,a.createElement)(\"button\",{onClick:()=>{y||(M(v),x(!1),N(0),k(!1),w(!1))},className:\"ultp-popup-close \"+(y?\"s_loading\":\"\")},o.ZP.close_line)))))}},6488:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>s});var a=n(7294),r=n(4766),o=n(2402),i=n(7763),l=n(5324);const{__}=wp.i18n,s=e=>{const{changeStates:t,column:n,showWishList:s,_fetchFile:p,fetching:c,searchQuery:d,fields:u,fieldValue:m,fieldOptions:f,useState:h,useEffect:g,useRef:v}=e;return(0,a.createElement)(\"div\",{className:\"ultp-templatekit-layout-search-container\"},(0,a.createElement)(\"div\",{className:\"ultp-templatekit-search-container\"},u?.filter&&(0,a.createElement)(a.Fragment,null,\" \",(0,a.createElement)(\"span\",null,__(\"Filter:\",\"ultimate-post\")),(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.filter,contentWH:{height:\"190px\",width:\"150px\"},onChange:e=>{t(\"filter\",e)},options:f?.filterArr||[]})),u?.trend&&m?.trend&&(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.trend,onChange:e=>{t(\"trend\",e)},options:[{value:\"all\",label:__(\"Popular \u002F Latest\",\"ultimate-post\")},{value:\"popular\",label:__(\"Popular\",\"ultimate-post\")},{value:\"latest\",label:__(\"Latest\",\"ultimate-post\")}]}),u?.freePro&&(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.freePro,onChange:e=>{t(\"freePro\",e)},options:[{value:\"all\",label:__(\"Free \u002F Pro\",\"ultimate-post\")},{value:\"free\",label:__(\"Free\",\"ultimate-post\")},{value:\"pro\",label:__(\"Pro\",\"ultimate-post\")}]})),(0,a.createElement)(\"div\",{className:\"ultp-templatekit-layout-container\"},(0,a.createElement)(o.Z,{changeStates:t,searchQuery:d}),(0,a.createElement)(\"span\",{className:\"ultp-templatekit-iconcol2 \"+(\"2\"==n?\"ultp-lay-active\":\"\"),onClick:()=>t(\"column\",\"2\")},i.Z.grid_col1),(0,a.createElement)(\"span\",{className:\"ultp-templatekit-iconcol3 \"+(\"3\"==n?\"ultp-lay-active\":\"\"),onClick:()=>t(\"column\",\"3\")},i.Z.grid_col2),(0,a.createElement)(\"div\",{className:\"ultp-premade-wishlist-con\"},(0,a.createElement)(\"span\",{className:\"ultp-premade-wishlist cursor \"+(s?\"ultp-wishlist-active\":\"\"),onClick:()=>{t(\"wishlist\",!s)}},r.ZP[s?\"love_solid\":\"love_line\"])),p&&(0,a.createElement)(\"div\",{onClick:()=>p(),className:\"ultp-filter-sync\"},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-update-alt \"+(c?\" rotate\":\"\")}),__(\"Synchronize\",\"ultimate-post\"))))}},58:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294);n(3358);const{__}=wp.i18n,r=()=>(0,a.createElement)(\"input\",{type:\"file\",name:\"attachment\",accept:\"image\u002Fpng, image\u002Fjpeg\",className:\"xpo-input-support\",id:\"xpo-support-file-input\"}),o=()=>{const[e,t]=(0,a.useState)(!1),[n,o]=(0,a.useState)(!1),[i,l]=(0,a.useState)(!1),s=(0,a.useRef)(null),p=(0,a.useRef)(null);return(0,a.useEffect)((()=>{!e&&i&&l(!1)}),[e,i]),(0,a.useEffect)((()=>{const n=new AbortController;if(e)return document.addEventListener(\"mousedown\",(e=>{s.current&&!s.current.contains(e.target)&&(t(!1),l(!1))}),{signal:n.signal}),()=>{n.abort()}}),[e]),(0,a.createElement)(\"div\",{ref:s},(0,a.createElement)(\"span\",{className:\"xpo-support-pops-btn xpo-support-pops-btn--small \"+(e?\"xpo-support-pops-btn--big\":\"\"),onClick:()=>t((e=>!e)),role:\"button\",tabIndex:-1,onKeyDown:e=>{\"Enter\"===e.key&&t((e=>!e))}},(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"28\",height:\"28\",fill:\"none\",viewBox:\"0 0 28 28\"},(0,a.createElement)(\"path\",{fill:\"var(--xpo-support-color-reverse)\",fillRule:\"evenodd\",d:\"M27.3 14c0 7.4-6 13.3-13.3 13.3H.7l3.9-3.9A13.3 13.3 0 0 1 14 .7c7.4 0 13.3 6 13.3 13.3Zm-19 1.7a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Zm7.4-1.7a1.7 1.7 0 1 1-3.4 0 1.7 1.7 0 0 1 3.4 0Zm5.6 0a1.7 1.7 0 1 1-3.3 0 1.7 1.7 0 0 1 3.3 0Z\",clipRule:\"evenodd\"}))),e&&(0,a.createElement)(\"div\",{className:`xpo-support-pops-container ${e?\"xpo-support-entry-anim\":\"\"} ${i?\"\":\"xpo-support-pops-container--full-height\"}`},(0,a.createElement)(\"div\",{className:\"xpo-support-pops-header\"},(0,a.createElement)(\"div\",{style:{maxHeight:i?\"0px\":\"140px\",opacity:i?\"0\":\"1\",transition:\"max-height 0.3s, opacity 0.3s\"}},(0,a.createElement)(\"div\",{className:\"xpo-support-header-bg\"}),(0,a.createElement)(\"div\",{className:\"xpo-support-pops-avatars\"},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fsupport\u002F1.png\",alt:\"WPXPO\"}),(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fsupport\u002F2.jpg\",alt:\"A. Owadud Bhuiyan\"}),(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fsupport\u002F3.jpg\",alt:\"Abdullah Al Mahmud\"}),(0,a.createElement)(\"div\",{className:\"xpo-support-signal-green xpo-support-signal\"})),(0,a.createElement)(\"div\",{className:\"xpo-support-pops-text\"},\"Questions? Create an Issue!\"))),(0,a.createElement)(\"div\",{className:\"xpo-support-chat-body\"},(0,a.createElement)(\"div\",{style:{maxHeight:i?\"174px\":\"0px\",opacity:i?\"1\":\"0\",transition:\"max-height 0.3s, opacity 0.3s\"}},i&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"xpo-support-thankyou-icon\"},(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 52 52\",className:\"xpo-support-animation\"},(0,a.createElement)(\"circle\",{className:\"xpo-support-circle\",cx:\"26\",cy:\"26\",r:\"25\",fill:\"none\"}),(0,a.createElement)(\"path\",{className:\"xpo-support-check\",fill:\"none\",d:\"M14.1 27.2l7.1 7.2 16.7-16.8\"}))),(0,a.createElement)(\"div\",{className:\"xpo-support-thankyou-title\"},__(\"Thank You!\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"xpo-support-thankyou-subtitle\"},__(\"Your message has been received. We will contact you soon on your email with a response. Stay connected and check mail!\",\"ultimate-post\")))),(0,a.createElement)(\"form\",{ref:p,onSubmit:e=>{if(n)return;e.preventDefault(),o(!0);const t=new FormData(e.target);fetch(\"https:\u002F\u002Fwpxpo.com\u002Fwp-json\u002Fv2\u002Fsupport_mail\",{method:\"POST\",body:t}).then((e=>{if(!e.ok)throw new Error(\"Failed to submit ticket\");l(!0),p.current&&p.current.reset()})).catch((e=>{console.log(e)})).finally((()=>{o(!1)}))},encType:\"multipart\u002Fform-data\",style:{maxHeight:i?\"0px\":\"376px\",opacity:i?\"0\":\"1\",transition:\"max-height 0.3s, opacity 0.3s\"}},(0,a.createElement)(\"input\",{type:\"hidden\",name:\"user_name\",defaultValue:ultp_dashboard_pannel.userInfo.name}),(0,a.createElement)(\"input\",{type:\"email\",name:\"user_email\",className:\"xpo-input-support\",defaultValue:ultp_dashboard_pannel.userInfo.email,required:!0}),(0,a.createElement)(\"input\",{type:\"hidden\",name:\"subject\",value:\"Support from PostX\"}),(0,a.createElement)(\"div\",{className:\"xpo-support-title\"},__(\"Message\",\"ultimate-post\")),(0,a.createElement)(\"textarea\",{name:\"desc\",className:\"xpo-input-support\",placeholder:\"Write your message here...\"}),(0,a.createElement)(r,null),(0,a.createElement)(\"button\",{type:\"submit\",className:\"xpo-send-button\",disabled:n},n?(0,a.createElement)(a.Fragment,null,\"Sending\",(0,a.createElement)(\"div\",{className:\"xpo-support-loading\"})):(0,a.createElement)(a.Fragment,null,\"Send\",(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"21\",height:\"20\",fill:\"none\",viewBox:\"0 0 21 20\"},(0,a.createElement)(\"path\",{fill:\"var(--xpo-support-color-reverse)\",d:\"M18.4 10c0-.6-.3-1.1-.8-1.4L5 2c-.6-.3-1.2-.3-1.7 0-.6.4-.9 1.3-.7 1.9l1.2 4.8c0 .5.5.8 1 .8h7c.3 0 .6.3.6.6 0 .4-.3.6-.6.6h-7c-.5 0-1 .4-1 .9l-1.3 4.8c-.1.6 0 1.1.5 1.5l.1.2c.5.4 1.2.4 1.8.1l12.5-6.6c.6-.3 1-.9 1-1.5Z\"}))))))))}},1389:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(6509);const r=e=>{const{title:t,modalContent:n,setModalContent:r}=e;return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-modal-wrapper\",onClick:e=>{e.target?.closest(\".ultp-dashboard-modal\")||r(\"\")}},(0,a.createElement)(\"div\",{className:\"ultp-dashboard-modal\"},(0,a.createElement)(\"div\",{className:\"ultp-modal-header\"},t&&(0,a.createElement)(\"span\",{className:\"ultp-modal-title\"},t),(0,a.createElement)(\"a\",{className:\"ultp-popup-close\",onClick:()=>r(\"\")})),(0,a.createElement)(\"div\",{className:\"ultp-modal-body\"},n)))}},8949:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(619);const r=e=>{const{type:t,size:n,loop:r,unit:o,c_s:i,classes:l}=e,s=()=>{let e={};switch(t){case\"image\":case\"circle\":e={width:n?n+\"px\":\"300px\",height:n?n+\"px\":\"300px\"};break;case\"title\":e={width:`${n||\"100\"}${o||\"%\"}`};break;case\"button\":e={width:n?n+\"px\":\"90px\"};break;case\"custom_size\":e={width:`${i.size1?i.size1:\"100\"}${i.unit1?i.unit1:\"%\"}`,height:`${i.size2?i.size2:\"20\"}${i.unit2?i.unit2:\"px\"}`,borderRadius:i.br?i.br+\"px\":\"0px\"}}return e};return(0,a.createElement)(a.Fragment,null,r?(0,a.createElement)(a.Fragment,null,Array(parseInt(r)).fill(\"1\").map(((e,n)=>(0,a.createElement)(\"div\",{key:n,className:`ultp_skeleton__${t} ultp_frequency loop ${l||\"\"}`,style:s()})))):(0,a.createElement)(\"div\",{className:`ultp_skeleton__${t} ultp_frequency ${l||\"\"}`,style:s()}))}},356:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(2413);const{__}=wp.i18n,r=({delay:e,toastMessages:t,setToastMessages:n})=>{const[r,o]=(0,a.useState)(!0),[i,l]=(0,a.useState)(\"show\");return(0,a.useEffect)((()=>{const t=setTimeout((()=>{o(!1),l(\"\"),n({state:!1,status:\"\"})}),e);return()=>clearTimeout(t)}),[e]),(0,a.createElement)(\"div\",{className:\"toast\"},r&&t.status&&t.messages.length>0&&(0,a.createElement)(\"div\",{className:\"toastMessages\"},t.messages.map(((e,r)=>(0,a.createElement)(\"span\",{key:`toast_${Date.now().toString()}_${r}`},(0,a.createElement)(\"div\",{className:`toaster ${i}`},(0,a.createElement)(\"span\",null,\"error\"==t.status?(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 52 52\",className:\"animation\",stroke:\"currentColor\"},(0,a.createElement)(\"circle\",{cx:\"26\",cy:\"26\",r:\"25\",fill:\"none\",className:\"circle cross\"}),(0,a.createElement)(\"path\",{fill:\"none\",d:\"M 12,12 L 40,40 M 40,12 L 12,40\",className:\"check\"})):(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 52 52\",className:\"animation\",stroke:\"currentColor\"},(0,a.createElement)(\"circle\",{className:\"circle\",cx:\"26\",cy:\"26\",r:\"25\",fill:\"none\"}),(0,a.createElement)(\"path\",{className:\"check\",fill:\"none\",d:\"M14.1 27.2l7.1 7.2 16.7-16.8\"}))),(0,a.createElement)(\"span\",{className:\"itmCenter\"},e),(0,a.createElement)(\"span\",{className:\"itmLast\",onClick:()=>(e=>{let a=[...t.messages];a=a.filter(((t,n)=>n!==e)),n({...t,messages:a})})(r)},__(\"Close\",\"ultimate-post\"))))))))}},448:(e,t,n)=>{\"use strict\";n.d(t,{AJ:()=>o,cC:()=>l,x2:()=>r});var a=n(2030);const{__}=wp.i18n,r=(e,t,n,a)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv1\u002Fpostx_presets\",method:\"POST\",data:{type:e,key:t,data:n}}).then((r=>{r.success&&(\"set\"==e&&i(t,n),a&&a(r))}))},o=(e,t=\"\",n=!1)=>{if(\"typoStacks\"==e)return[[{type:\"sans-serif\",weight:500,family:\"Roboto\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"serif\",weight:600,family:\"Roboto Slab\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"sans-serif\",weight:600,family:\"Jost\"},{type:\"sans-serif\",weight:400,family:\"Jost\"}],[{type:\"display\",weight:500,family:\"Roboto\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"serif\",weight:700,family:\"Arvo\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"sans-serif\",weight:500,family:\"Roboto\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"sans-serif\",weight:700,family:\"Merriweather\"},{type:\"sans-serif\",weight:400,family:\"Merriweather\"}],[{type:\"sans-serifs\",weight:500,family:\"Oswald\"},{type:\"sans-serif\",weight:400,family:\"Source Sans Pro\"}],[{type:\"display\",weight:400,family:\"Abril Fatface\"},{type:\"sans-serif\",weight:400,family:\"Poppins\"}],[{type:\"serif\",weight:700,family:\"Cardo\"},{type:\"sans-serif\",weight:400,family:\"Inter\"}]];if(\"multipleTypos\"==e)return{Body_and_Others_typo:[\"body_typo\",\"paragraph_1_typo\",\"paragraph_2_typo\",\"paragraph_3_typo\"],Heading_typo:[\"heading_h1_typo\",\"heading_h2_typo\",\"heading_h3_typo\",\"heading_h4_typo\",\"heading_h5_typo\",\"heading_h6_typo\"]};if(\"presetTypoKeys\"==e)return[\"Heading_typo\",\"Body_and_Others_typo\"];if(\"colorStacks\"==e)return[[\"#f4f4ff\",\"#dddff8\",\"#B4B4D6\",\"#3323f0\",\"#4a5fff\",\"#1B1B47\",\"#545472\",\"#262657\",\"#10102e\"],[\"#ffffff\",\"#f7f4ed\",\"#D6D1B4\",\"#fab42a\",\"#f4cd4e\",\"#3B3118\",\"#6F6C53\",\"#483d1f\",\"#29230f\"],[\"#ffffff\",\"#eaf7ea\",\"#C2DBBF\",\"#3b9138\",\"#54a757\",\"#1E381A\",\"#586E56\",\"#23411f\",\"#162c11\"],[\"#fdf7ff\",\"#eadef5\",\"#C1B4D6\",\"#8749d0\",\"#995ede\",\"#301B42\",\"#635472\",\"#38204e\",\"#231133\"],[\"#fffcfc\",\"#fce5ec\",\"#D6B4BC\",\"#f01f50\",\"#ff5878\",\"#431B23\",\"#72545B\",\"#4d2029\",\"#36141b\"],[\"#ffffff\",\"#ecf3f8\",\"#B4C2D6\",\"#2890e8\",\"#6cb0f4\",\"#1D3347\",\"#4B586C\",\"#2c4358\",\"#10202b\"],[\"#f8f3ed\",\"#f2e2d0\",\"#D6C4B4\",\"#dd8336\",\"#f09f4d\",\"#3D2A1D\",\"#6E5F52\",\"#483324\",\"#2e1e11\"],[\"#ffffff\",\"#faf0f4\",\"#D6B4CF\",\"#d948a2\",\"#e56ab5\",\"#401B2E\",\"#725468\",\"#4e2239\",\"#290e1d\"],[\"#f2f7ea\",\"#e1e6c4\",\"#D2DBBF\",\"#829d46\",\"#a1c36b\",\"#30371A\",\"#5F6551\",\"#38401f\",\"#242e10\"],[\"#ffffff\",\"#e9f7f3\",\"#B5D1C7\",\"#3cbe8b\",\"#59d5a5\",\"#1C3D3F\",\"#46675E\",\"#20484b\",\"#153234\"]];if(\"presetColorKeys\"==e)return[\"Base_1_color\",\"Base_2_color\",\"Base_3_color\",\"Primary_color\",\"Secondary_color\",\"Tertiary_color\",\"Contrast_3_color\",\"Contrast_2_color\",\"Contrast_1_color\"];if(\"presetGradientKeys\"==e)return[\"Cold_Evening_gradient\",\"Purple_Division_gradient\",\"Over_Sun_gradient\",\"Morning_Salad_gradient\",\"Fabled_Sunset_gradient\"];if(\"styleCss\"==e){let e=\":root { \";return Object.keys(t).forEach(((a,r)=>{if(![\"rootCSS\",\"globalColorCSS\"].includes(a)){const r=a,o=t[a]?.hasOwnProperty(\"openColor\")?\"color\"==t[a].type?t[a].color:t[a].gradient:t[a]||n||\"\";e+=`--postx_preset_${r}: ${o}; `}})),e+=\" }\",e}if(\"typoCSS\"==e){const e=o(\"multipleTypos\");let r=\"\",i=\":root { \";const l=[\"Arial\",\"Tahoma\",\"Verdana\",\"Helvetica\",\"Times New Roman\",\"Trebuchet MS\",\"Georgia\"];return Object.keys(t).forEach(((o,s)=>{const p=t[o],c=!![...e.Body_and_Others_typo,...e.Heading_typo].includes(o);if(![\"rootCSS\",\"presetTypoCSS\"].includes(o)&&\"object\"==typeof p&&Object.keys(p).length){const e=!l.includes(p.family),t=n?ultp_dashboard_pannel:ultp_data;!((!t?.settings?.hasOwnProperty(\"disable_google_font\")||\"yes\"==t?.settings.disable_google_font)&&t?.settings?.hasOwnProperty(\"disable_google_font\"))&&e&&p.family&&!p.family.includes(\"--postx_preset\")&&!r.includes(p.family.replace(\" \",\"+\")+\":\")&&void 0!==a.Z&&(r+=\"@import url('https:\u002F\u002Ffonts.googleapis.com\u002Fcss?family=\"+p.family.replace(\" \",\"+\")+\":\"+(a.Z?.filter((e=>e.n==p.family))[0]?.v||[]).join(\",\")+\"'); \"),c||(i+=p.family?`--postx_preset_${o}_font_family: ${p.family}; `:\"\",i+=p.family?`--postx_preset_${o}_font_family_type: ${p.type||\"sans-serif\"}; `:\"\",i+=p.weight?`--postx_preset_${o}_font_weight: ${p.weight}; `:\"\",i+=p.style?`--postx_preset_${o}_font_style: ${p.style}; `:\"\",i+=p.decoration?`--postx_preset_${o}_text_decoration: ${p.decoration}; `:\"\",i+=p.transform?`--postx_preset_${o}_text_transform: ${p.transform}; `:\"\",i+=p.spacing?.lg?`--postx_preset_${o}_letter_spacing_lg: ${p.spacing.lg}${p.spacing.ulg||\"px\"}; `:\"\",i+=p.spacing?.sm?`--postx_preset_${o}_letter_spacing_sm: ${p.spacing.sm}${p.spacing.usm||\"px\"}; `:\"\",i+=p.spacing?.xs?`--postx_preset_${o}_letter_spacing_xs: ${p.spacing.xs}${p.spacing.uxs||\"px\"}; `:\"\"),i+=p.size?.lg?`--postx_preset_${o}_font_size_lg: ${p.size.lg}${p.size.ulg||\"px\"}; `:\"\",i+=p.size?.sm?`--postx_preset_${o}_font_size_sm: ${p.size.sm}${p.size.usm||\"px\"}; `:\"\",i+=p.size?.xs?`--postx_preset_${o}_font_size_xs: ${p.size.xs}${p.size.uxs||\"px\"}; `:\"\",i+=p.height?.lg?`--postx_preset_${o}_line_height_lg: ${p.height.lg}${p.height.ulg||\"px\"}; `:\"\",i+=p.height?.sm?`--postx_preset_${o}_line_height_sm: ${p.height.sm}${p.height.usm||\"px\"}; `:\"\",i+=p.height?.xs?`--postx_preset_${o}_line_height_xs: ${p.height.xs}${p.height.uxs||\"px\"}; `:\"\"}})),i+=\"}\",r+i}if(\"font_load\"==e){let e=\"\";const a=[\"Arial\",\"Tahoma\",\"Verdana\",\"Helvetica\",\"Times New Roman\",\"Trebuchet MS\",\"Georgia\"],r=n?ultp_dashboard_pannel:ultp_data,o=!((!r.settings?.hasOwnProperty(\"disable_google_font\")||\"yes\"==r.settings.disable_google_font)&&r.settings?.hasOwnProperty(\"disable_google_font\"));if(\"object\"==typeof t&&Object.keys(t).length){const n=!a.includes(t.family);o&&n&&t.family&&(e+=\"@import url('https:\u002F\u002Ffonts.googleapis.com\u002Fcss?family=\"+t.family.replace(\" \",\"+\")+\":\"+t.weight+\"'); \")}return e}if(\"font_load_all\"==e){const e=[\"Roboto\",\"Roboto Slab\",\"Jost\",\"Arvo\",\"Merriweather\",\"Oswald\",\"Abril Fatface\",\"Cardo\",\"Source Sans Pro\",\"Poppins\",\"Inter\"],t=[\"400,500\",\"600\",\"400,600\",\"700\",\"400,700\",\"500\",\"400\",\"700\",\"400\",\"400\",\"400\"];let a=\"\";const r=[\"Arial\",\"Tahoma\",\"Verdana\",\"Helvetica\",\"Times New Roman\",\"Trebuchet MS\",\"Georgia\"],o=n?ultp_dashboard_pannel:ultp_data,i=!((!o.settings?.hasOwnProperty(\"disable_google_font\")||\"yes\"==o.settings.disable_google_font)&&o.settings?.hasOwnProperty(\"disable_google_font\"));return e.forEach(((e,n)=>{const o=!r.includes(e);i&&o&&e&&(a+=\"@import url('https:\u002F\u002Ffonts.googleapis.com\u002Fcss?family=\"+e.replace(\" \",\"+\")+\":\"+t[n]+\"'); \")})),a}if(\"bgCSS\"==e){let e={};const n=\"object\"==typeof t?{...t}:{};if(\"color\"==n.type)e.backgroundColor=n.color;else if(\"gradient\"==n.type&&n.gradient){let t=n.gradient;\"object\"==typeof n.gradient&&(t=\"linear\"==n.gradient.type?\"linear-gradient(\"+n.gradient.direction+\"deg, \"+n.gradient.color1+\" \"+n.gradient.start+\"%,\"+n.gradient.color2+\" \"+n.gradient.stop+\"%);\":\"radial-gradient( circle at \"+n.gradient.radial+\" , \"+n.gradient.color1+\" \"+n.gradient.start+\"%,\"+n.gradient.color2+\" \"+n.gradient.stop+\"%);\"),e.backgroundImage=t}else if(\"image\"==n.type){var r;(n.fallbackColor||n.color)&&(e.backgroundColor=null!==(r=n.fallbackColor)&&void 0!==r?r:n.color),n.image&&(e.backgroundImage='url(\"'+n.image+'\")',n.position&&(e.backgroundPositionX=100*n.position.x+\"%\",e.backgroundPositionY=100*n.position.y+\"%\"),n.attachment&&(e.backgroundAttachments=n.attachment),n.repeat&&(e.backgroundRepeat=n.repeat),n.size&&(e.backgroundSize=n.size))}else\"video\"==n.type&&n.fallback&&(e.backgroundImage='url(\"'+n.fallback+'\")',e.backgroundSize=\"cover\",e.backgroundPosition=\"50% 50%\");return e}if(\"globalCSS\"==e){let e=`:root {\\n            --preset-color1: ${t.presetColor1||\"#037fff\"}\\n            --preset-color2: ${t.presetColor2||\"#026fe0\"}\\n            --preset-color3: ${t.presetColor3||\"#071323\"}\\n            --preset-color4: ${t.presetColor4||\"#132133\"}\\n            --preset-color5: ${t.presetColor5||\"#34495e\"}\\n            --preset-color6: ${t.presetColor6||\"#787676\"}\\n            --preset-color7: ${t.presetColor7||\"#f0f2f3\"}\\n            --preset-color8: ${t.presetColor8||\"#f8f9fa\"}\\n            --preset-color9: ${t.presetColor9||\"#ffffff\"}\\n        }`;return t.enablePresetColorCSS&&(e+=\"\\n            html body.postx-admin-page .editor-styles-wrapper,\\n            html body.postx-admin-page .editor-styles-wrapper p,\\n            html body.postx-page,\\n            html body.postx-page p,\\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\\n            { \\n                color: var(--postx_preset_Contrast_2_color); \\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\\n            {\\n                color: var(--postx_preset_Contrast_1_color);\\n            }\\n            html.colibri-wp-theme body.postx-page h1,\\n            html.colibri-wp-theme body.postx-page h2,\\n            html.colibri-wp-theme body.postx-page h3,\\n            html.colibri-wp-theme body.postx-page h4,\\n            html.colibri-wp-theme body.postx-page h5,\\n            html.colibri-wp-theme body.postx-page h6 \\n            {\\n                color: var(--postx_preset_Contrast_1_color);\\n            }\\n\\n            body.block-editor-iframe__body h1,\\n            body.block-editor-iframe__body h2,\\n            body.block-editor-iframe__body h3,\\n            body.block-editor-iframe__body h4,\\n            body.block-editor-iframe__body h5,\\n            body.block-editor-iframe__body h6\\n            { \\n                color: var(--postx_preset_Contrast_1_color);\\n            }\\n            \",t.gbbodyBackground.openColor&&(e+=`\\n                    html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\\n                    html body.postx-admin-page.block-editor-page.post-content-style-boxed .editor-styles-wrapper::before,\\n                    html.colibri-wp-theme body.postx-page,\\n                    body.block-editor-iframe__body\\n                    { ${(e=>{let t=e.clip?\"-webkit-background-clip: text; -webkit-text-fill-color: transparent;\":\"\";if(\"color\"==e.type)t+=e.color?\"background-color: \"+e.color+\";\":\"\";else if(\"gradient\"==e.type&&e.gradient)\"object\"==typeof e.gradient?\"linear\"==e.gradient.type?t+=\"background-image : linear-gradient(\"+e.gradient.direction+\"deg, \"+e.gradient.color1+\" \"+e.gradient.start+\"%,\"+e.gradient.color2+\" \"+e.gradient.stop+\"%);\":t+=\"background-image : radial-gradient( circle at \"+e.gradient.radial+\" , \"+e.gradient.color1+\" \"+e.gradient.start+\"%,\"+e.gradient.color2+\" \"+e.gradient.stop+\"%);\":t+=\"background-image:\"+e.gradient+\";\";else if(\"image\"==e.type){var n;(e.fallbackColor||e.color)&&(t+=\"background-color:\"+(null!==(n=e.fallbackColor)&&void 0!==n?n:e.color)+\";\"),e.image&&(t+='background-image: url(\"'+e.image+'\");'+(e.position?\"background-position-x:\"+100*e.position.x+\"%;background-position-y:\"+100*e.position.y+\"%;\":\"\")+(e.attachment?\"background-attachment:\"+e.attachment+\";\":\"\")+(e.repeat?\"background-repeat:\"+e.repeat+\";\":\"\")+(e.size?\"background-size:\"+e.size+\";\":\"\"))}return t})(t.gbbodyBackground)} }\\n                `)),t.enablePresetTypoCSS&&(e+=`\\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\\n            { \\n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \\n                font-weight: var(--postx_preset_Heading_typo_font_weight);\\n                font-style: var(--postx_preset_Heading_typo_font_style);\\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\\n            }\\n            html.colibri-wp-theme body.postx-page h1,\\n            html.colibri-wp-theme body.postx-page h2,\\n            html.colibri-wp-theme body.postx-page h3,\\n            html.colibri-wp-theme body.postx-page h4,\\n            html.colibri-wp-theme body.postx-page h5,\\n            html.colibri-wp-theme body.postx-page h6\\n            { \\n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \\n                font-weight: var(--postx_preset_Heading_typo_font_weight);\\n                font-style: var(--postx_preset_Heading_typo_font_style);\\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\\n            }\\n            body.block-editor-iframe__body h1,\\n            body.block-editor-iframe__body h2,\\n            body.block-editor-iframe__body h3,\\n            body.block-editor-iframe__body h4,\\n            body.block-editor-iframe__body h5,\\n            body.block-editor-iframe__body h6\\n            { \\n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \\n                font-weight: var(--postx_preset_Heading_typo_font_weight);\\n                font-style: var(--postx_preset_Heading_typo_font_style);\\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n            html.colibri-wp-theme body.postx-page h1,\\n            body.block-editor-iframe__body h1\\n            { \\n                font-size: var(--postx_preset_heading_h1_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h1_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n            html.colibri-wp-theme body.postx-page h2,\\n            body.block-editor-iframe__body h2\\n            { \\n                font-size: var(--postx_preset_heading_h2_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h2_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n            html.colibri-wp-theme body.postx-page h3,\\n            body.block-editor-iframe__body h3\\n            { \\n                font-size: var(--postx_preset_heading_h3_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h3_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n            html.colibri-wp-theme body.postx-page h4,\\n            body.block-editor-iframe__body h4\\n            { \\n                font-size: var(--postx_preset_heading_h4_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h4_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n            html.colibri-wp-theme body.postx-page h5,\\n            body.block-editor-iframe__body h5\\n            { \\n                font-size: var(--postx_preset_heading_h5_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h5_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\\n            html.colibri-wp-theme body.postx-page h6,\\n            body.block-editor-iframe__body h6\\n            { \\n                font-size: var(--postx_preset_heading_h6_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h6_typo_line_height_lg, normal) !important;\\n            }\\n\\n            @media (max-width: ${t.breakpointSm||991}px) {\\n                html body.postx-admin-page .editor-styles-wrapper h1 , html body.postx-page h1,\\n                html body.postx-admin-page .editor-styles-wrapper h2 , html body.postx-page h2,\\n                html body.postx-admin-page .editor-styles-wrapper h3 , html body.postx-page h3,\\n                html body.postx-admin-page .editor-styles-wrapper h4 , html body.postx-page h4,\\n                html body.postx-admin-page .editor-styles-wrapper h5 , html body.postx-page h5,\\n                html body.postx-admin-page .editor-styles-wrapper h6 , html body.postx-page h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\\n                }\\n                html.colibri-wp-theme body.postx-page h1,\\n                html.colibri-wp-theme body.postx-page h2,\\n                html.colibri-wp-theme body.postx-page h3,\\n                html.colibri-wp-theme body.postx-page h4,\\n                html.colibri-wp-theme body.postx-page h5,\\n                html.colibri-wp-theme body.postx-page h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\\n                }\\n                body.block-editor-iframe__body h1,\\n                body.block-editor-iframe__body h2,\\n                body.block-editor-iframe__body h3,\\n                body.block-editor-iframe__body h4,\\n                body.block-editor-iframe__body h5,\\n                body.block-editor-iframe__body h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\\n                }\\n\\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n                html.colibri-wp-theme body.postx-page h1,\\n                body.block-editor-iframe__body h1\\n                {\\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n                html.colibri-wp-theme body.postx-page h2,\\n                body.block-editor-iframe__body h2\\n                {\\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n                html.colibri-wp-theme body.postx-page h3,\\n                body.block-editor-iframe__body h3\\n                {\\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n                html.colibri-wp-theme body.postx-page h4,\\n                body.block-editor-iframe__body h4\\n                {\\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n                html.colibri-wp-theme body.postx-page h5,\\n                body.block-editor-iframe__body h5\\n                {\\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\\n                html.colibri-wp-theme body.postx-page h6,\\n                body.block-editor-iframe__body h6\\n                {\\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_sm, normal) !important;\\n                }\\n            }\\n\\n            @media (max-width: ${t.breakpointXs||767}px) {\\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\\n                }\\n                html.colibri-wp-theme body.postx-page h1,\\n                html.colibri-wp-theme body.postx-page h2,\\n                html.colibri-wp-theme body.postx-page h3,\\n                html.colibri-wp-theme body.postx-page h4,\\n                html.colibri-wp-theme body.postx-page h5,\\n                html.colibri-wp-theme body.postx-page h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\\n                }\\n                body.block-editor-iframe__body h1,\\n                body.block-editor-iframe__body h2,\\n                body.block-editor-iframe__body h3,\\n                body.block-editor-iframe__body h4,\\n                body.block-editor-iframe__body h5,\\n                body.block-editor-iframe__body h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n                html.colibri-wp-theme body.postx-page h1,\\n                body.block-editor-iframe__body h1\\n                {\\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n                html.colibri-wp-theme body.postx-page h2,\\n                body.block-editor-iframe__body h2\\n                {\\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n                html.colibri-wp-theme body.postx-page h3,\\n                body.block-editor-iframe__body h3\\n                {\\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n                html.colibri-wp-theme body.postx-page h4,\\n                body.block-editor-iframe__body h4\\n                {\\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n                html.colibri-wp-theme body.postx-page h5,\\n                body.block-editor-iframe__body h5\\n                {\\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\\n                html.colibri-wp-theme body.postx-page h6,\\n                body.block-editor-iframe__body h6\\n                {\\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_xs, normal) !important;\\n                }\\n            }\\n            `),t.enablePresetTypoCSS&&(e+=`\\n            html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\\n            html body.postx-admin-page .editor-styles-wrapper p, html body.postx-page p,\\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\\n            { \\n                font-family: var(--postx_preset_Body_and_Others_typo_font_family),var(--postx_preset_Body_and_Others_typo_font_family_type); \\n                font-weight: var(--postx_preset_Body_and_Others_typo_font_weight);\\n                font-style: var(--postx_preset_Body_and_Others_typo_font_style);\\n                text-transform: var(--postx_preset_Body_and_Others_typo_text_transform);\\n                text-decoration: var(--postx_preset_Body_and_Others_typo_text_decoration);\\n                letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_lg, normal);\\n                font-size: var(--postx_preset_body_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_body_typo_line_height_lg, normal) !important;\\n            }\\n            @media (max-width: ${t.breakpointSm||991}px) {\\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\\n                {\\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_sm, normal);\\n                    font-size: var(--postx_preset_body_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_body_typo_line_height_sm, normal) !important;\\n                }\\n            }\\n            @media (max-width: ${t.breakpointXs||767}px) {\\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\\n                {\\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_xs, normal);\\n                    font-size: var(--postx_preset_body_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_body_typo_line_height_xs, normal) !important;\\n                }\\n            }\\n            `),e}},i=(e,t)=>{localStorage.setItem(e,JSON.stringify(t))},l=(e,t={})=>{try{return JSON.parse(e)}catch(e){return t}}},2402:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(4201);const r=({searchQuery:e,setSearchQuery:t,setTemplateModule:n,changeStates:r})=>(0,a.createElement)(\"div\",{className:\"ultp-design-search-wrapper\"},(0,a.createElement)(\"input\",{type:\"search\",id:\"ultp-design-search-form\",className:\"ultp-design-search-input\",placeholder:\"Search for...\",value:e,onChange:e=>{t&&t(e.target.value),n&&n(\"\"),r&&r(\"search\",e.target.value)}}))},3100:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(2044);const r=(e,t,n,r)=>(0,a.Z)({url:e||null,utmKey:t||null,affiliate:n||null,hash:r||null})},4190:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(2158);const r=e=>{let t;const[n,r]=(0,a.useState)(!1);return(0,a.createElement)(\"div\",{className:`ultp-tooltip-wrapper ${e.extraClass}`,onMouseEnter:()=>{t=setTimeout((()=>{r(!0)}),e.delay||400)},onMouseLeave:()=>{clearInterval(t),r(!1)}},e.children,n&&(0,a.createElement)(\"div\",{className:`tooltip-content ${e.direction||\"top\"}`},e.content))}},2030:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=[{n:\"ABeeZee\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Abel\",v:[400],f:\"sans-serif\"},{n:\"Abhaya Libre\",v:[400,500,600,700,800],f:\"serif\"},{n:\"Abril Fatface\",v:[400],f:\"display\"},{n:\"Abyssinica SIL\",v:[400],f:\"serif\"},{n:\"Aclonica\",v:[400],f:\"sans-serif\"},{n:\"Acme\",v:[400],f:\"sans-serif\"},{n:\"Actor\",v:[400],f:\"sans-serif\"},{n:\"Adamina\",v:[400],f:\"serif\"},{n:\"Advent Pro\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Aguafina Script\",v:[400],f:\"handwriting\"},{n:\"Akaya Kanadaka\",v:[400],f:\"display\"},{n:\"Akaya Telivigala\",v:[400],f:\"display\"},{n:\"Akronim\",v:[400],f:\"display\"},{n:\"Akshar\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Aladin\",v:[400],f:\"handwriting\"},{n:\"Alata\",v:[400],f:\"sans-serif\"},{n:\"Alatsi\",v:[400],f:\"sans-serif\"},{n:\"Albert Sans\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Aldrich\",v:[400],f:\"sans-serif\"},{n:\"Alef\",v:[400,700],f:\"sans-serif\"},{n:\"Alexandria\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Alegreya\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Alegreya SC\",v:[400,\"400i\",500,\"500i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"serif\"},{n:\"Alegreya Sans\",v:[\"100\",\"100i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Alegreya Sans SC\",v:[\"100\",\"100i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Aleo\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Alex Brush\",v:[400],f:\"handwriting\"},{n:\"Alfa Slab One\",v:[400],f:\"display\"},{n:\"Alice\",v:[400],f:\"serif\"},{n:\"Alike\",v:[400],f:\"serif\"},{n:\"Alike Angular\",v:[400],f:\"serif\"},{n:\"Allan\",v:[400,700],f:\"display\"},{n:\"Allerta\",v:[400],f:\"sans-serif\"},{n:\"Allerta Stencil\",v:[400],f:\"sans-serif\"},{n:\"Allison\",v:[400],f:\"handwriting\"},{n:\"Allura\",v:[400],f:\"handwriting\"},{n:\"Almarai\",v:[\"300\",400,700,800],f:\"sans-serif\"},{n:\"Almendra\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Almendra Display\",v:[400],f:\"display\"},{n:\"Almendra SC\",v:[400],f:\"serif\"},{n:\"Alumni Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Alumni Sans Inline One\",v:[400,\"400i\"],f:\"display\"},{n:\"Amarante\",v:[400],f:\"display\"},{n:\"Amaranth\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Amatic SC\",v:[400,700],f:\"handwriting\"},{n:\"Amethysta\",v:[400],f:\"serif\"},{n:\"Amiko\",v:[400,600,700],f:\"sans-serif\"},{n:\"Amiri\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Amita\",v:[400,700],f:\"handwriting\"},{n:\"Anaheim\",v:[400],f:\"sans-serif\"},{n:\"Andada Pro\",v:[400,500,600,700,800,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Andika\",v:[400],f:\"sans-serif\"},{n:\"Anek Bangla\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Devanagari\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Gujarati\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Gurmukhi\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Kannada\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Latin\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Malayalam\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Odia\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Tamil\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Telugu\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Angkor\",v:[400],f:\"display\"},{n:\"Annie Use Your Telescope\",v:[400],f:\"handwriting\"},{n:\"Anonymous Pro\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Antic\",v:[400],f:\"sans-serif\"},{n:\"Antic Didone\",v:[400],f:\"serif\"},{n:\"Antic Slab\",v:[400],f:\"serif\"},{n:\"Anton\",v:[400],f:\"sans-serif\"},{n:\"Antonio\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Anybody\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"display\"},{n:\"Arapey\",v:[400,\"400i\"],f:\"serif\"},{n:\"Arbutus\",v:[400],f:\"display\"},{n:\"Arbutus Slab\",v:[400],f:\"serif\"},{n:\"Architects Daughter\",v:[400],f:\"handwriting\"},{n:\"Archivo\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Archivo Black\",v:[400],f:\"sans-serif\"},{n:\"Archivo Narrow\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Are You Serious\",v:[400],f:\"handwriting\"},{n:\"Aref Ruqaa\",v:[400,700],f:\"serif\"},{n:\"Arimo\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Arizonia\",v:[400],f:\"handwriting\"},{n:\"Armata\",v:[400],f:\"sans-serif\"},{n:\"Arsenal\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Artifika\",v:[400],f:\"serif\"},{n:\"Arvo\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Arya\",v:[400,700],f:\"sans-serif\"},{n:\"Asap\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Asap Condensed\",v:[200,\"200i\",300,\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Asar\",v:[400],f:\"serif\"},{n:\"Asset\",v:[400],f:\"display\"},{n:\"Assistant\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Astloch\",v:[400,700],f:\"display\"},{n:\"Asul\",v:[400,700],f:\"sans-serif\"},{n:\"Athiti\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Atkinson Hyperlegible\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Atma\",v:[\"300\",400,500,600,700],f:\"display\"},{n:\"Atomic Age\",v:[400],f:\"display\"},{n:\"Aubrey\",v:[400],f:\"display\"},{n:\"Audiowide\",v:[400],f:\"display\"},{n:\"Autour One\",v:[400],f:\"display\"},{n:\"Average\",v:[400],f:\"serif\"},{n:\"Average Sans\",v:[400],f:\"sans-serif\"},{n:\"Averia Gruesa Libre\",v:[400],f:\"display\"},{n:\"Averia Libre\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Averia Sans Libre\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Averia Serif Libre\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Azeret Mono\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"monospace\"},{n:\"Aboreto\",v:[400],f:\"display\"},{n:\"Abyssinica SIL\",v:[400],f:\"serif\"},{n:\"Albert Sans\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Alexandria\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Alkalami\",v:[400],f:\"serif\"},{n:\"Alkatra\",v:[400,500,600,700],f:\"display\"},{n:\"Alumni Sans Collegiate One\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Alumni Sans Pinstripe\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Amiri Quran\",v:[400],f:\"serif\"},{n:\"Anuphan\",v:[100,200,300,400,500,600,700],f:\"sans-serif\"},{n:\"Aoboshi One\",v:[400],f:\"serif\"},{n:\"Aref Ruqaa Ink\",v:[400,700],f:\"serif\"},{n:\"Arima\",v:[100,200,300,400,500,600,700],f:\"display\"},{n:\"B612\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"B612 Mono\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"BIZ UDGothic\",v:[400,700],f:\"sans-serif\"},{n:\"BIZ UDMincho\",v:[400,700],f:\"serif\"},{n:\"BIZ UDPGothic\",v:[400,700],f:\"sans-serif\"},{n:\"BIZ UDPMincho\",v:[400,700],f:\"serif\"},{n:\"Babylonica\",v:[400],f:\"handwriting\"},{n:\"Bad Script\",v:[400],f:\"handwriting\"},{n:\"Bahiana\",v:[400],f:\"display\"},{n:\"Bahianita\",v:[400],f:\"display\"},{n:\"Bai Jamjuree\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Bakbak One\",v:[400],f:\"display\"},{n:\"Ballet\",v:[400],f:\"handwriting\"},{n:\"Baloo 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Bhai 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Bhaijaan 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Bhaina 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Chettan 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Da 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Paaji 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Tamma 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Tammudu 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Thambi 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Balsamiq Sans\",v:[400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Balthazar\",v:[400],f:\"serif\"},{n:\"Bangers\",v:[400],f:\"display\"},{n:\"Barlow\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Barlow Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Barlow Semi Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Barriecito\",v:[400],f:\"display\"},{n:\"Barrio\",v:[400],f:\"display\"},{n:\"Basic\",v:[400],f:\"sans-serif\"},{n:\"Baskervville\",v:[400,\"400i\"],f:\"serif\"},{n:\"Battambang\",v:[\"100\",\"300\",400,700,900],f:\"display\"},{n:\"Baumans\",v:[400],f:\"display\"},{n:\"Bayon\",v:[400],f:\"sans-serif\"},{n:\"Be Vietnam Pro\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Beau Rivage\",v:[400],f:\"handwriting\"},{n:\"Bebas Neue\",v:[400],f:\"sans-serif\"},{n:\"Belgrano\",v:[400],f:\"serif\"},{n:\"Bellefair\",v:[400],f:\"serif\"},{n:\"Belleza\",v:[400],f:\"sans-serif\"},{n:\"Bellota\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Bellota Text\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"BenchNine\",v:[\"300\",400,700],f:\"sans-serif\"},{n:\"Benne\",v:[400],f:\"serif\"},{n:\"Bentham\",v:[400],f:\"serif\"},{n:\"Berkshire Swash\",v:[400],f:\"handwriting\"},{n:\"Besley\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Beth Ellen\",v:[400],f:\"handwriting\"},{n:\"Bevan\",v:[400,\"400i\"],f:\"display\"},{n:\"BhuTuka Expanded One\",v:[400],f:\"display\"},{n:\"Big Shoulders Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Inline Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Inline Text\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Stencil Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Stencil Text\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Text\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Bigelow Rules\",v:[400],f:\"display\"},{n:\"Bigshot One\",v:[400],f:\"display\"},{n:\"Bilbo\",v:[400],f:\"handwriting\"},{n:\"Bilbo Swash Caps\",v:[400],f:\"handwriting\"},{n:\"BioRhyme\",v:[\"200\",\"300\",400,700,800],f:\"serif\"},{n:\"BioRhyme Expanded\",v:[\"200\",\"300\",400,700,800],f:\"serif\"},{n:\"Birthstone\",v:[400],f:\"handwriting\"},{n:\"Birthstone Bounce\",v:[400,500],f:\"handwriting\"},{n:\"Biryani\",v:[\"200\",\"300\",400,600,700,800,900],f:\"sans-serif\"},{n:\"Bitter\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Black And White Picture\",v:[400],f:\"sans-serif\"},{n:\"Black Han Sans\",v:[400],f:\"sans-serif\"},{n:\"Black Ops One\",v:[400],f:\"display\"},{n:\"Blinker\",v:[\"100\",\"200\",\"300\",400,600,700,800,900],f:\"sans-serif\"},{n:\"Bodoni Moda\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Bokor\",v:[400],f:\"display\"},{n:\"Bona Nova\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Bonbon\",v:[400],f:\"handwriting\"},{n:\"Bonheur Royale\",v:[400],f:\"handwriting\"},{n:\"Boogaloo\",v:[400],f:\"display\"},{n:\"Bowlby One\",v:[400],f:\"display\"},{n:\"Bowlby One SC\",v:[400],f:\"display\"},{n:\"Brawler\",v:[400,700],f:\"serif\"},{n:\"Bree Serif\",v:[400],f:\"serif\"},{n:\"Brygada 1918\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Bubblegum Sans\",v:[400],f:\"display\"},{n:\"Bubbler One\",v:[400],f:\"sans-serif\"},{n:\"Buda\",v:[\"300\"],f:\"display\"},{n:\"Buenard\",v:[400,700],f:\"serif\"},{n:\"Bungee\",v:[400],f:\"display\"},{n:\"Bungee Hairline\",v:[400],f:\"display\"},{n:\"Bungee Inline\",v:[400],f:\"display\"},{n:\"Bungee Outline\",v:[400],f:\"display\"},{n:\"Bungee Shade\",v:[400],f:\"display\"},{n:\"Butcherman\",v:[400],f:\"display\"},{n:\"Butterfly Kids\",v:[400],f:\"handwriting\"},{n:\"Blaka\",v:[400],f:\"display\"},{n:\"Blaka Hollow\",v:[400],f:\"display\"},{n:\"Blaka Ink\",v:[400],f:\"display\"},{n:\"Braah One\",v:[400],f:\"sans-serif\"},{n:\"Bruno Ace\",v:[400],f:\"display\"},{n:\"Bruno Ace SC\",v:[400],f:\"display\"},{n:\"Bungee Spice\",v:[400],f:\"display\"},{n:\"Bungee Spice\",v:[400],f:\"display\"},{n:\"Cabin\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Cabin Condensed\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Cabin Sketch\",v:[400,700],f:\"display\"},{n:\"Caesar Dressing\",v:[400],f:\"display\"},{n:\"Cagliostro\",v:[400],f:\"sans-serif\"},{n:\"Cairo\",v:[\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Caladea\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Calistoga\",v:[400],f:\"display\"},{n:\"Calligraffitti\",v:[400],f:\"handwriting\"},{n:\"Cambay\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Cambo\",v:[400],f:\"serif\"},{n:\"Candal\",v:[400],f:\"sans-serif\"},{n:\"Cantarell\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Cantata One\",v:[400],f:\"serif\"},{n:\"Cantora One\",v:[400],f:\"sans-serif\"},{n:\"Capriola\",v:[400],f:\"sans-serif\"},{n:\"Caramel\",v:[400],f:\"handwriting\"},{n:\"Carattere\",v:[400],f:\"handwriting\"},{n:\"Cardo\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Carme\",v:[400],f:\"sans-serif\"},{n:\"Carrois Gothic\",v:[400],f:\"sans-serif\"},{n:\"Carrois Gothic SC\",v:[400],f:\"sans-serif\"},{n:\"Carter One\",v:[400],f:\"display\"},{n:\"Castoro\",v:[400,\"400i\"],f:\"serif\"},{n:\"Catamaran\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Caudex\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Caveat\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Caveat Brush\",v:[400],f:\"handwriting\"},{n:\"Cedarville Cursive\",v:[400],f:\"handwriting\"},{n:\"Ceviche One\",v:[400],f:\"display\"},{n:\"Chakra Petch\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Changa\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Changa One\",v:[400,\"400i\"],f:\"display\"},{n:\"Chango\",v:[400],f:\"display\"},{n:\"Charm\",v:[400,700],f:\"handwriting\"},{n:\"Charmonman\",v:[400,700],f:\"handwriting\"},{n:\"Chathura\",v:[\"100\",\"300\",400,700,800],f:\"sans-serif\"},{n:\"Chau Philomene One\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Chela One\",v:[400],f:\"display\"},{n:\"Chelsea Market\",v:[400],f:\"display\"},{n:\"Chenla\",v:[400],f:\"display\"},{n:\"Cherish\",v:[400],f:\"handwriting\"},{n:\"Cherry Cream Soda\",v:[400],f:\"display\"},{n:\"Cherry Swash\",v:[400,700],f:\"display\"},{n:\"Chewy\",v:[400],f:\"display\"},{n:\"Chicle\",v:[400],f:\"display\"},{n:\"Chilanka\",v:[400],f:\"handwriting\"},{n:\"Chivo\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Chonburi\",v:[400],f:\"display\"},{n:\"Cinzel\",v:[400,500,600,700,800,900],f:\"serif\"},{n:\"Cinzel Decorative\",v:[400,700,900],f:\"display\"},{n:\"Clicker Script\",v:[400],f:\"handwriting\"},{n:\"Coda\",v:[400,800],f:\"display\"},{n:\"Coda Caption\",v:[800],f:\"sans-serif\"},{n:\"Codystar\",v:[\"300\",400],f:\"display\"},{n:\"Coiny\",v:[400],f:\"display\"},{n:\"Combo\",v:[400],f:\"display\"},{n:\"Comfortaa\",v:[\"300\",400,500,600,700],f:\"display\"},{n:\"Comforter\",v:[400],f:\"handwriting\"},{n:\"Comforter Brush\",v:[400],f:\"handwriting\"},{n:\"Comic Neue\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"handwriting\"},{n:\"Coming Soon\",v:[400],f:\"handwriting\"},{n:\"Commissioner\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Concert One\",v:[400],f:\"display\"},{n:\"Condiment\",v:[400],f:\"handwriting\"},{n:\"Content\",v:[400,700],f:\"display\"},{n:\"Contrail One\",v:[400],f:\"display\"},{n:\"Convergence\",v:[400],f:\"sans-serif\"},{n:\"Cookie\",v:[400],f:\"handwriting\"},{n:\"Copse\",v:[400],f:\"serif\"},{n:\"Corben\",v:[400,700],f:\"display\"},{n:\"Corinthia\",v:[400,700],f:\"handwriting\"},{n:\"Cormorant\",v:[300,400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Cormorant Garamond\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"Cormorant Infant\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"Cormorant SC\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Cormorant Unicase\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Cormorant Upright\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Courgette\",v:[400],f:\"handwriting\"},{n:\"Courier Prime\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Cousine\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Coustard\",v:[400,900],f:\"serif\"},{n:\"Covered By Your Grace\",v:[400],f:\"handwriting\"},{n:\"Crafty Girls\",v:[400],f:\"handwriting\"},{n:\"Creepster\",v:[400],f:\"display\"},{n:\"Crete Round\",v:[400,\"400i\"],f:\"serif\"},{n:\"Crimson Pro\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Croissant One\",v:[400],f:\"display\"},{n:\"Crushed\",v:[400],f:\"display\"},{n:\"Cuprum\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Cute Font\",v:[400],f:\"display\"},{n:\"Cutive\",v:[400],f:\"serif\"},{n:\"Cutive Mono\",v:[400],f:\"monospace\"},{n:\"Cairo Play\",v:[200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Carlito\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Castoro Titling\",v:[400],f:\"display\"},{n:\"Charis SIL\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Cherry Bomb One\",v:[400],f:\"display\"},{n:\"Chivo Mono\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"monospace\"},{n:\"Chokokutai\",v:[400],f:\"display\"},{n:\"Climate Crisis\",v:[400],f:\"display\"},{n:\"Comme\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Crimson Text\",v:[400,\"400i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"DM Mono\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\"],f:\"monospace\"},{n:\"DM Sans\",v:[400,\"400i\",500,\"500i\",700,\"700i\"],f:\"sans-serif\"},{n:\"DM Serif Display\",v:[400,\"400i\"],f:\"serif\"},{n:\"DM Serif Text\",v:[400,\"400i\"],f:\"serif\"},{n:\"Damion\",v:[400],f:\"handwriting\"},{n:\"Dancing Script\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Dangrek\",v:[400],f:\"display\"},{n:\"Darker Grotesque\",v:[\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"David Libre\",v:[400,500,700],f:\"serif\"},{n:\"Dawning of a New Day\",v:[400],f:\"handwriting\"},{n:\"Days One\",v:[400],f:\"sans-serif\"},{n:\"Dekko\",v:[400],f:\"handwriting\"},{n:\"Dela Gothic One\",v:[400],f:\"display\"},{n:\"Delius\",v:[400],f:\"handwriting\"},{n:\"Delius Swash Caps\",v:[400],f:\"handwriting\"},{n:\"Delius Unicase\",v:[400,700],f:\"handwriting\"},{n:\"Della Respira\",v:[400],f:\"serif\"},{n:\"Denk One\",v:[400],f:\"sans-serif\"},{n:\"Devonshire\",v:[400],f:\"handwriting\"},{n:\"Dhurjati\",v:[400],f:\"sans-serif\"},{n:\"Didact Gothic\",v:[400],f:\"sans-serif\"},{n:\"Diplomata\",v:[400],f:\"display\"},{n:\"Diplomata SC\",v:[400],f:\"display\"},{n:\"Do Hyeon\",v:[400],f:\"sans-serif\"},{n:\"Dokdo\",v:[400],f:\"handwriting\"},{n:\"Domine\",v:[400,500,600,700],f:\"serif\"},{n:\"Donegal One\",v:[400],f:\"serif\"},{n:\"Dongle\",v:[\"300\",400,700],f:\"sans-serif\"},{n:\"Doppio One\",v:[400],f:\"sans-serif\"},{n:\"Dorsa\",v:[400],f:\"sans-serif\"},{n:\"Dosis\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"DotGothic16\",v:[400],f:\"sans-serif\"},{n:\"Dr Sugiyama\",v:[400],f:\"handwriting\"},{n:\"Duru Sans\",v:[400],f:\"sans-serif\"},{n:\"Dynalight\",v:[400],f:\"display\"},{n:\"Darumadrop One\",v:[400],f:\"display\"},{n:\"Delicious Handrawn\",v:[400],f:\"handwriting\"},{n:\"DynaPuff\",v:[400,500,600,700],f:\"display\"},{n:\"Edu NSW ACT Foundation\",v:[400,500,600,700],f:\"handwriting\"},{n:\"EB Garamond\",v:[400,500,600,700,800,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Eagle Lake\",v:[400],f:\"handwriting\"},{n:\"East Sea Dokdo\",v:[400],f:\"handwriting\"},{n:\"Eater\",v:[400],f:\"display\"},{n:\"Economica\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Eczar\",v:[400,500,600,700,800],f:\"serif\"},{n:\"El Messiri\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Electrolize\",v:[400],f:\"sans-serif\"},{n:\"Elsie\",v:[400,900],f:\"display\"},{n:\"Elsie Swash Caps\",v:[400,900],f:\"display\"},{n:\"Emblema One\",v:[400],f:\"display\"},{n:\"Emilys Candy\",v:[400],f:\"display\"},{n:\"Encode Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans Expanded\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans SC\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans Semi Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans Semi Expanded\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Engagement\",v:[400],f:\"handwriting\"},{n:\"Englebert\",v:[400],f:\"sans-serif\"},{n:\"Enriqueta\",v:[400,500,600,700],f:\"serif\"},{n:\"Ephesis\",v:[400],f:\"handwriting\"},{n:\"Epilogue\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Erica One\",v:[400],f:\"display\"},{n:\"Esteban\",v:[400],f:\"serif\"},{n:\"Estonia\",v:[400],f:\"handwriting\"},{n:\"Euphoria Script\",v:[400],f:\"handwriting\"},{n:\"Ewert\",v:[400],f:\"display\"},{n:\"Exo\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Exo 2\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Expletus Sans\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"display\"},{n:\"Explora\",v:[400],f:\"handwriting\"},{n:\"Edu QLD Beginner\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Edu SA Beginner\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Edu TAS Beginner\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Edu VIC WA NT Beginner\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Fahkwang\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Familjen Grotesk\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Fanwood Text\",v:[400,\"400i\"],f:\"serif\"},{n:\"Farro\",v:[\"300\",400,500,700],f:\"sans-serif\"},{n:\"Farsan\",v:[400],f:\"display\"},{n:\"Fascinate\",v:[400],f:\"display\"},{n:\"Fascinate Inline\",v:[400],f:\"display\"},{n:\"Faster One\",v:[400],f:\"display\"},{n:\"Fasthand\",v:[400],f:\"display\"},{n:\"Fauna One\",v:[400],f:\"serif\"},{n:\"Faustina\",v:[\"300\",400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Federant\",v:[400],f:\"display\"},{n:\"Federo\",v:[400],f:\"sans-serif\"},{n:\"Felipa\",v:[400],f:\"handwriting\"},{n:\"Fenix\",v:[400],f:\"serif\"},{n:\"Festive\",v:[400],f:\"handwriting\"},{n:\"Finger Paint\",v:[400],f:\"display\"},{n:\"Fira Code\",v:[\"300\",400,500,600,700],f:\"monospace\"},{n:\"Fira Mono\",v:[400,500,700],f:\"monospace\"},{n:\"Fira Sans\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Fira Sans Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Fira Sans Extra Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Fjalla One\",v:[400],f:\"sans-serif\"},{n:\"Fjord One\",v:[400],f:\"serif\"},{n:\"Flamenco\",v:[\"300\",400],f:\"display\"},{n:\"Flavors\",v:[400],f:\"display\"},{n:\"Fleur De Leah\",v:[400],f:\"handwriting\"},{n:\"Flow Block\",v:[400],f:\"display\"},{n:\"Flow Circular\",v:[400],f:\"display\"},{n:\"Flow Rounded\",v:[400],f:\"display\"},{n:\"Fondamento\",v:[400,\"400i\"],f:\"handwriting\"},{n:\"Fontdiner Swanky\",v:[400],f:\"display\"},{n:\"Forum\",v:[400],f:\"display\"},{n:\"Francois One\",v:[400],f:\"sans-serif\"},{n:\"Frank Ruhl Libre\",v:[\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Fraunces\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Freckle Face\",v:[400],f:\"display\"},{n:\"Fredericka the Great\",v:[400],f:\"display\"},{n:\"Fredoka\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Freehand\",v:[400],f:\"display\"},{n:\"Fresca\",v:[400],f:\"sans-serif\"},{n:\"Frijole\",v:[400],f:\"display\"},{n:\"Fruktur\",v:[400,\"400i\"],f:\"display\"},{n:\"Fugaz One\",v:[400],f:\"display\"},{n:\"Fuggles\",v:[400],f:\"handwriting\"},{n:\"Fuzzy Bubbles\",v:[400,700],f:\"handwriting\"},{n:\"Figtree\",v:[300,400,500,600,700,800,900,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Finlandica\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Foldit\",v:[100,200,300,400,500,600,700,800,900],f:\"display\"},{n:\"Fragment Mono\",v:[400,\"400i\"],f:\"monospace\"},{n:\"GFS Didot\",v:[400],f:\"serif\"},{n:\"GFS Neohellenic\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Gabriela\",v:[400],f:\"serif\"},{n:\"Gaegu\",v:[\"300\",400,700],f:\"handwriting\"},{n:\"Gafata\",v:[400],f:\"sans-serif\"},{n:\"Galada\",v:[400],f:\"display\"},{n:\"Galdeano\",v:[400],f:\"sans-serif\"},{n:\"Galindo\",v:[400],f:\"display\"},{n:\"Gamja Flower\",v:[400],f:\"handwriting\"},{n:\"Gayathri\",v:[\"100\",400,700],f:\"sans-serif\"},{n:\"Gelasio\",v:[400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"Gemunu Libre\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Genos\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Geo\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Georama\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Geostar\",v:[400],f:\"display\"},{n:\"Geostar Fill\",v:[400],f:\"display\"},{n:\"Germania One\",v:[400],f:\"display\"},{n:\"Gideon Roman\",v:[400],f:\"display\"},{n:\"Gidugu\",v:[400],f:\"sans-serif\"},{n:\"Gilda Display\",v:[400],f:\"serif\"},{n:\"Girassol\",v:[400],f:\"display\"},{n:\"Give You Glory\",v:[400],f:\"handwriting\"},{n:\"Glass Antiqua\",v:[400],f:\"display\"},{n:\"Glegoo\",v:[400,700],f:\"serif\"},{n:\"Gloria Hallelujah\",v:[400],f:\"handwriting\"},{n:\"Glory\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Gluten\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Goblin One\",v:[400],f:\"display\"},{n:\"Gochi Hand\",v:[400],f:\"handwriting\"},{n:\"Goldman\",v:[400,700],f:\"display\"},{n:\"Gorditas\",v:[400,700],f:\"display\"},{n:\"Gothic A1\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Gotu\",v:[400],f:\"sans-serif\"},{n:\"Goudy Bookletter 1911\",v:[400],f:\"serif\"},{n:\"Gowun Batang\",v:[400,700],f:\"serif\"},{n:\"Gowun Dodum\",v:[400],f:\"sans-serif\"},{n:\"Graduate\",v:[400],f:\"display\"},{n:\"Grand Hotel\",v:[400],f:\"handwriting\"},{n:\"Grandstander\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"display\"},{n:\"Grape Nuts\",v:[400],f:\"handwriting\"},{n:\"Gravitas One\",v:[400],f:\"display\"},{n:\"Great Vibes\",v:[400],f:\"handwriting\"},{n:\"Grechen Fuemen\",v:[400],f:\"handwriting\"},{n:\"Grenze\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"serif\"},{n:\"Grenze Gotisch\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Grey Qo\",v:[400],f:\"handwriting\"},{n:\"Griffy\",v:[400],f:\"display\"},{n:\"Gruppo\",v:[400],f:\"sans-serif\"},{n:\"Gudea\",v:[400,\"400i\",700],f:\"sans-serif\"},{n:\"Gugi\",v:[400],f:\"display\"},{n:\"Gupter\",v:[400,500,700],f:\"serif\"},{n:\"Gurajada\",v:[400],f:\"serif\"},{n:\"Gwendolyn\",v:[400,700],f:\"handwriting\"},{n:\"Gajraj One\",v:[400],f:\"display\"},{n:\"Gantari\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Gloock\",v:[400],f:\"serif\"},{n:\"Golos Text\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Gulzar\",v:[400],f:\"serif\"},{n:\"Gentium Book Plus\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Gentium Plus\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Habibi\",v:[400],f:\"serif\"},{n:\"Hachi Maru Pop\",v:[400],f:\"handwriting\"},{n:\"Hahmlet\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Halant\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Hammersmith One\",v:[400],f:\"sans-serif\"},{n:\"Hanalei\",v:[400],f:\"display\"},{n:\"Hanalei Fill\",v:[400],f:\"display\"},{n:\"Handlee\",v:[400],f:\"handwriting\"},{n:\"Hanuman\",v:[\"100\",\"300\",400,700,900],f:\"serif\"},{n:\"Happy Monkey\",v:[400],f:\"display\"},{n:\"Harmattan\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Headland One\",v:[400],f:\"serif\"},{n:\"Heebo\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Henny Penny\",v:[400],f:\"display\"},{n:\"Hepta Slab\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Herr Von Muellerhoff\",v:[400],f:\"handwriting\"},{n:\"Hi Melody\",v:[400],f:\"handwriting\"},{n:\"Hina Mincho\",v:[400],f:\"serif\"},{n:\"Hind\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Hind Guntur\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Hind Madurai\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Hind Siliguri\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Hind Vadodara\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Holtwood One SC\",v:[400],f:\"serif\"},{n:\"Homemade Apple\",v:[400],f:\"handwriting\"},{n:\"Homenaje\",v:[400],f:\"sans-serif\"},{n:\"Hubballi\",v:[400],f:\"display\"},{n:\"Hurricane\",v:[400],f:\"handwriting\"},{n:\"Hanken Grotesk\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"IBM Plex Mono\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"monospace\"},{n:\"IBM Plex Sans\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"IBM Plex Sans Arabic\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"IBM Plex Sans Devanagari\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans Hebrew\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans KR\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans Thai\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans Thai Looped\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Serif\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"IM Fell DW Pica\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell DW Pica SC\",v:[400],f:\"serif\"},{n:\"IM Fell Double Pica\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell Double Pica SC\",v:[400],f:\"serif\"},{n:\"IM Fell English\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell English SC\",v:[400],f:\"serif\"},{n:\"IM Fell French Canon\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell French Canon SC\",v:[400],f:\"serif\"},{n:\"IM Fell Great Primer\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell Great Primer SC\",v:[400],f:\"serif\"},{n:\"Ibarra Real Nova\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Iceberg\",v:[400],f:\"display\"},{n:\"Iceland\",v:[400],f:\"display\"},{n:\"Imbue\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Imperial Script\",v:[400],f:\"handwriting\"},{n:\"Imprima\",v:[400],f:\"sans-serif\"},{n:\"Inconsolata\",v:[\"200\",\"300\",400,500,600,700,800,900],f:\"monospace\"},{n:\"Inder\",v:[400],f:\"sans-serif\"},{n:\"Indie Flower\",v:[400],f:\"handwriting\"},{n:\"Ingrid Darling\",v:[400],f:\"handwriting\"},{n:\"Inika\",v:[400,700],f:\"serif\"},{n:\"Inknut Antiqua\",v:[\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Inria Sans\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Inria Serif\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Inspiration\",v:[400],f:\"handwriting\"},{n:\"Inter\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Irish Grover\",v:[400],f:\"display\"},{n:\"Island Moments\",v:[400],f:\"handwriting\"},{n:\"Istok Web\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Italiana\",v:[400],f:\"serif\"},{n:\"Italianno\",v:[400],f:\"handwriting\"},{n:\"Itim\",v:[400],f:\"handwriting\"},{n:\"IBM Plex Sans JP\",v:[100,200,300,400,500,600,700],f:\"sans-serif\"},{n:\"Instrument Sans\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Instrument Serif\",v:[400,\"400i\"],f:\"serif\"},{n:\"Inter Tight\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Jacques Francois\",v:[400],f:\"serif\"},{n:\"Jacques Francois Shadow\",v:[400],f:\"display\"},{n:\"Jaldi\",v:[400,700],f:\"sans-serif\"},{n:\"JetBrains Mono\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"monospace\"},{n:\"Jim Nightshade\",v:[400],f:\"handwriting\"},{n:\"Jockey One\",v:[400],f:\"sans-serif\"},{n:\"Jolly Lodger\",v:[400],f:\"display\"},{n:\"Jomhuria\",v:[400],f:\"display\"},{n:\"Jomolhari\",v:[400],f:\"serif\"},{n:\"Josefin Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Josefin Slab\",v:[\"100\",\"200\",\"300\",400,500,600,700,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Jost\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Joti One\",v:[400],f:\"display\"},{n:\"Jua\",v:[400],f:\"sans-serif\"},{n:\"Judson\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Julee\",v:[400],f:\"handwriting\"},{n:\"Julius Sans One\",v:[400],f:\"sans-serif\"},{n:\"Junge\",v:[400],f:\"serif\"},{n:\"Jura\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Just Another Hand\",v:[400],f:\"handwriting\"},{n:\"Just Me Again Down Here\",v:[400],f:\"handwriting\"},{n:\"K2D\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"sans-serif\"},{n:\"Joan\",v:[400],f:\"serif\"},{n:\"Kadwa\",v:[400,700],f:\"serif\"},{n:\"Kaisei Decol\",v:[400,500,700],f:\"serif\"},{n:\"Kaisei HarunoUmi\",v:[400,500,700],f:\"serif\"},{n:\"Kaisei Opti\",v:[400,500,700],f:\"serif\"},{n:\"Kaisei Tokumin\",v:[400,500,700,800],f:\"serif\"},{n:\"Kalam\",v:[\"300\",400,700],f:\"handwriting\"},{n:\"Kameron\",v:[400,700],f:\"serif\"},{n:\"Kanit\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Karantina\",v:[\"300\",400,700],f:\"display\"},{n:\"Karla\",v:[\"200\",\"300\",400,500,600,700,800,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Karma\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Katibeh\",v:[400],f:\"display\"},{n:\"Kaushan Script\",v:[400],f:\"handwriting\"},{n:\"Kavivanar\",v:[400],f:\"handwriting\"},{n:\"Kavoon\",v:[400],f:\"display\"},{n:\"Keania One\",v:[400],f:\"display\"},{n:\"Kelly Slab\",v:[400],f:\"display\"},{n:\"Kenia\",v:[400],f:\"display\"},{n:\"Khand\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Khmer\",v:[400],f:\"display\"},{n:\"Khula\",v:[\"300\",400,600,700,800],f:\"sans-serif\"},{n:\"Kings\",v:[400],f:\"handwriting\"},{n:\"Kirang Haerang\",v:[400],f:\"display\"},{n:\"Kite One\",v:[400],f:\"sans-serif\"},{n:\"Kiwi Maru\",v:[\"300\",400,500],f:\"serif\"},{n:\"Klee One\",v:[400,600],f:\"handwriting\"},{n:\"Knewave\",v:[400],f:\"display\"},{n:\"KoHo\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Kodchasan\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Koh Santepheap\",v:[\"100\",\"300\",400,700,900],f:\"display\"},{n:\"Kolker Brush\",v:[400],f:\"handwriting\"},{n:\"Kosugi\",v:[400],f:\"sans-serif\"},{n:\"Kosugi Maru\",v:[400],f:\"sans-serif\"},{n:\"Kotta One\",v:[400],f:\"serif\"},{n:\"Koulen\",v:[400],f:\"display\"},{n:\"Kranky\",v:[400],f:\"display\"},{n:\"Kreon\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Kristi\",v:[400],f:\"handwriting\"},{n:\"Krona One\",v:[400],f:\"sans-serif\"},{n:\"Krub\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Kufam\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Kulim Park\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Kumar One\",v:[400],f:\"display\"},{n:\"Kumar One Outline\",v:[400],f:\"display\"},{n:\"Kumbh Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Kurale\",v:[400],f:\"serif\"},{n:\"Kantumruy Pro\",v:[100,200,300,400,500,600,700,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Kdam Thmor Pro\",v:[400],f:\"sans-serif\"},{n:\"Konkhmer Sleokchher\",v:[400],f:\"display\"},{n:\"La Belle Aurore\",v:[400],f:\"handwriting\"},{n:\"Lacquer\",v:[400],f:\"display\"},{n:\"Laila\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Lakki Reddy\",v:[400],f:\"handwriting\"},{n:\"Lalezar\",v:[400],f:\"display\"},{n:\"Lancelot\",v:[400],f:\"display\"},{n:\"Langar\",v:[400],f:\"display\"},{n:\"Lateef\",v:[200,300,400,500,600,700,800],f:\"handwriting\"},{n:\"Lato\",v:[\"100\",\"100i\",\"300\",\"300i\",400,\"400i\",700,\"700i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Lavishly Yours\",v:[400],f:\"handwriting\"},{n:\"League Gothic\",v:[400],f:\"sans-serif\"},{n:\"League Script\",v:[400],f:\"handwriting\"},{n:\"League Spartan\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Leckerli One\",v:[400],f:\"handwriting\"},{n:\"Ledger\",v:[400],f:\"serif\"},{n:\"Lekton\",v:[400,\"400i\",700],f:\"sans-serif\"},{n:\"Lemon\",v:[400],f:\"display\"},{n:\"Lemonada\",v:[\"300\",400,500,600,700],f:\"display\"},{n:\"Lexend\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Deca\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Exa\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Giga\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Mega\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Peta\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Tera\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Zetta\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Libre Barcode 128\",v:[400],f:\"display\"},{n:\"Libre Barcode 128 Text\",v:[400],f:\"display\"},{n:\"Libre Barcode 39\",v:[400],f:\"display\"},{n:\"Libre Barcode 39 Extended\",v:[400],f:\"display\"},{n:\"Libre Barcode 39 Extended Text\",v:[400],f:\"display\"},{n:\"Libre Barcode 39 Text\",v:[400],f:\"display\"},{n:\"Libre Barcode EAN13 Text\",v:[400],f:\"display\"},{n:\"Libre Baskerville\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Libre Bodoni\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Libre Caslon Display\",v:[400],f:\"serif\"},{n:\"Libre Caslon Text\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Libre Franklin\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Licorice\",v:[400],f:\"handwriting\"},{n:\"Life Savers\",v:[400,700,800],f:\"display\"},{n:\"Lilita One\",v:[400],f:\"display\"},{n:\"Lily Script One\",v:[400],f:\"display\"},{n:\"Limelight\",v:[400],f:\"display\"},{n:\"Linden Hill\",v:[400,\"400i\"],f:\"serif\"},{n:\"Literata\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Liu Jian Mao Cao\",v:[400],f:\"handwriting\"},{n:\"Livvic\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Lobster\",v:[400],f:\"display\"},{n:\"Lobster Two\",v:[400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Londrina Outline\",v:[400],f:\"display\"},{n:\"Londrina Shadow\",v:[400],f:\"display\"},{n:\"Londrina Sketch\",v:[400],f:\"display\"},{n:\"Londrina Solid\",v:[\"100\",\"300\",400,900],f:\"display\"},{n:\"Long Cang\",v:[400],f:\"handwriting\"},{n:\"Lora\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Love Light\",v:[400],f:\"handwriting\"},{n:\"Love Ya Like A Sister\",v:[400],f:\"display\"},{n:\"Loved by the King\",v:[400],f:\"handwriting\"},{n:\"Lovers Quarrel\",v:[400],f:\"handwriting\"},{n:\"Luckiest Guy\",v:[400],f:\"display\"},{n:\"Lusitana\",v:[400,700],f:\"serif\"},{n:\"Lustria\",v:[400],f:\"serif\"},{n:\"Luxurious Roman\",v:[400],f:\"display\"},{n:\"Luxurious Script\",v:[400],f:\"handwriting\"},{n:\"Labrada\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"M PLUS 1\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"M PLUS 1 Code\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"M PLUS 1p\",v:[\"100\",\"300\",400,500,700,800,900],f:\"sans-serif\"},{n:\"M PLUS 2\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"M PLUS Code Latin\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"M PLUS Rounded 1c\",v:[\"100\",\"300\",400,500,700,800,900],f:\"sans-serif\"},{n:\"Ma Shan Zheng\",v:[400],f:\"handwriting\"},{n:\"Macondo\",v:[400],f:\"display\"},{n:\"Macondo Swash Caps\",v:[400],f:\"display\"},{n:\"Mada\",v:[\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Magra\",v:[400,700],f:\"sans-serif\"},{n:\"Maiden Orange\",v:[400],f:\"display\"},{n:\"Maitree\",v:[\"200\",\"300\",400,500,600,700],f:\"serif\"},{n:\"Major Mono Display\",v:[400],f:\"monospace\"},{n:\"Mako\",v:[400],f:\"sans-serif\"},{n:\"Mali\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"handwriting\"},{n:\"Mallanna\",v:[400],f:\"sans-serif\"},{n:\"Mandali\",v:[400],f:\"sans-serif\"},{n:\"Manjari\",v:[\"100\",400,700],f:\"sans-serif\"},{n:\"Manrope\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mansalva\",v:[400],f:\"handwriting\"},{n:\"Manuale\",v:[\"300\",400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Marcellus\",v:[400],f:\"serif\"},{n:\"Marcellus SC\",v:[400],f:\"serif\"},{n:\"Marck Script\",v:[400],f:\"handwriting\"},{n:\"Margarine\",v:[400],f:\"display\"},{n:\"Markazi Text\",v:[400,500,600,700],f:\"serif\"},{n:\"Marko One\",v:[400],f:\"serif\"},{n:\"Marmelad\",v:[400],f:\"sans-serif\"},{n:\"Martel\",v:[\"200\",\"300\",400,600,700,800,900],f:\"serif\"},{n:\"Martel Sans\",v:[\"200\",\"300\",400,600,700,800,900],f:\"sans-serif\"},{n:\"Marvel\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Mate\",v:[400,\"400i\"],f:\"serif\"},{n:\"Mate SC\",v:[400],f:\"serif\"},{n:\"Maven Pro\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"McLaren\",v:[400],f:\"display\"},{n:\"Mea Culpa\",v:[400],f:\"handwriting\"},{n:\"Meddon\",v:[400],f:\"handwriting\"},{n:\"MedievalSharp\",v:[400],f:\"display\"},{n:\"Medula One\",v:[400],f:\"display\"},{n:\"Meera Inimai\",v:[400],f:\"sans-serif\"},{n:\"Megrim\",v:[400],f:\"display\"},{n:\"Meie Script\",v:[400],f:\"handwriting\"},{n:\"Meow Script\",v:[400],f:\"handwriting\"},{n:\"Merienda\",v:[300,400,500,600,700,800,900],f:\"handwriting\"},{n:\"Merriweather\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\",900,\"900i\"],f:\"serif\"},{n:\"Merriweather Sans\",v:[\"300\",400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Metal\",v:[400],f:\"display\"},{n:\"Metal Mania\",v:[400],f:\"display\"},{n:\"Metamorphous\",v:[400],f:\"display\"},{n:\"Metrophobic\",v:[400],f:\"sans-serif\"},{n:\"Michroma\",v:[400],f:\"sans-serif\"},{n:\"Milonga\",v:[400],f:\"display\"},{n:\"Miltonian\",v:[400],f:\"display\"},{n:\"Miltonian Tattoo\",v:[400],f:\"display\"},{n:\"Mina\",v:[400,700],f:\"sans-serif\"},{n:\"Miniver\",v:[400],f:\"display\"},{n:\"Miriam Libre\",v:[400,700],f:\"sans-serif\"},{n:\"Mirza\",v:[400,500,600,700],f:\"display\"},{n:\"Miss Fajardose\",v:[400],f:\"handwriting\"},{n:\"Mitr\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Mochiy Pop One\",v:[400],f:\"sans-serif\"},{n:\"Mochiy Pop P One\",v:[400],f:\"sans-serif\"},{n:\"Modak\",v:[400],f:\"display\"},{n:\"Modern Antiqua\",v:[400],f:\"display\"},{n:\"Mogra\",v:[400],f:\"display\"},{n:\"Mohave\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Molengo\",v:[400],f:\"sans-serif\"},{n:\"Molle\",v:[\"400i\"],f:\"handwriting\"},{n:\"Monda\",v:[400,700],f:\"sans-serif\"},{n:\"Monofett\",v:[400],f:\"monospace\"},{n:\"Monoton\",v:[400],f:\"display\"},{n:\"Monsieur La Doulaise\",v:[400],f:\"handwriting\"},{n:\"Montaga\",v:[400],f:\"serif\"},{n:\"Montagu Slab\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"serif\"},{n:\"MonteCarlo\",v:[400],f:\"handwriting\"},{n:\"Montez\",v:[400],f:\"handwriting\"},{n:\"Montserrat\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Montserrat Alternates\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Montserrat Subrayada\",v:[400,700],f:\"sans-serif\"},{n:\"Moo Lah Lah\",v:[400],f:\"display\"},{n:\"Moon Dance\",v:[400],f:\"handwriting\"},{n:\"Moul\",v:[400],f:\"display\"},{n:\"Moulpali\",v:[400],f:\"display\"},{n:\"Mountains of Christmas\",v:[400,700],f:\"display\"},{n:\"Mouse Memoirs\",v:[400],f:\"sans-serif\"},{n:\"Mr Bedfort\",v:[400],f:\"handwriting\"},{n:\"Mr Dafoe\",v:[400],f:\"handwriting\"},{n:\"Mr De Haviland\",v:[400],f:\"handwriting\"},{n:\"Mrs Saint Delafield\",v:[400],f:\"handwriting\"},{n:\"Mrs Sheppards\",v:[400],f:\"handwriting\"},{n:\"Ms Madi\",v:[400],f:\"handwriting\"},{n:\"Mukta\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mukta Mahee\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mukta Malar\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mukta Vaani\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mulish\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Murecho\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"MuseoModerno\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"display\"},{n:\"My Soul\",v:[400],f:\"handwriting\"},{n:\"Mystery Quest\",v:[400],f:\"display\"},{n:\"Marhey\",v:[300,400,500,600,700],f:\"display\"},{n:\"Martian Mono\",v:[100,200,300,400,500,600,700,800],f:\"monospace\"},{n:\"Material Icons\",v:[400],f:\"monospace\"},{n:\"Material Icons Outlined\",v:[400],f:\"monospace\"},{n:\"Material Icons Round\",v:[400],f:\"monospace\"},{n:\"Material Icons Sharp\",v:[400],f:\"monospace\"},{n:\"Material Icons Two Tone\",v:[400],f:\"monospace\"},{n:\"Material Symbols Outlined\",v:[100,200,300,400,500,600,700],f:\"monospace\"},{n:\"Material Symbols Rounded\",v:[100,200,300,400,500,600,700],f:\"monospace\"},{n:\"Material Symbols Sharp\",v:[100,200,300,400,500,600,700],f:\"monospace\"},{n:\"Mingzat\",v:[400],f:\"sans-serif\"},{n:\"Monomaniac One\",v:[400],f:\"sans-serif\"},{n:\"Mynerve\",v:[400],f:\"handwriting\"},{n:\"NTR\",v:[400],f:\"sans-serif\"},{n:\"Nanum Brush Script\",v:[400],f:\"handwriting\"},{n:\"Nanum Gothic\",v:[400,700,800],f:\"sans-serif\"},{n:\"Nanum Gothic Coding\",v:[400,700],f:\"monospace\"},{n:\"Nanum Myeongjo\",v:[400,700,800],f:\"serif\"},{n:\"Nanum Pen Script\",v:[400],f:\"handwriting\"},{n:\"Neonderthaw\",v:[400],f:\"handwriting\"},{n:\"Nerko One\",v:[400],f:\"handwriting\"},{n:\"Neucha\",v:[400],f:\"handwriting\"},{n:\"Neuton\",v:[\"200\",\"300\",400,\"400i\",700,800],f:\"serif\"},{n:\"New Rocker\",v:[400],f:\"display\"},{n:\"New Tegomin\",v:[400],f:\"serif\"},{n:\"News Cycle\",v:[400,700],f:\"sans-serif\"},{n:\"Newsreader\",v:[\"200\",\"300\",400,500,600,700,800,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Niconne\",v:[400],f:\"handwriting\"},{n:\"Niramit\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Nixie One\",v:[400],f:\"display\"},{n:\"Nobile\",v:[400,\"400i\",500,\"500i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Nokora\",v:[\"100\",\"300\",400,700,900],f:\"sans-serif\"},{n:\"Norican\",v:[400],f:\"handwriting\"},{n:\"Nosifer\",v:[400],f:\"display\"},{n:\"Notable\",v:[400],f:\"sans-serif\"},{n:\"Nothing You Could Do\",v:[400],f:\"handwriting\"},{n:\"Noticia Text\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Noto Emoji\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Noto Kufi Arabic\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Music\",v:[400],f:\"sans-serif\"},{n:\"Noto Naskh Arabic\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Nastaliq Urdu\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Rashi Hebrew\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Sans\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Noto Sans Adlam\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Adlam Unjoined\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Anatolian Hieroglyphs\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Arabic\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Armenian\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Avestan\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Balinese\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Bamum\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Bassa Vah\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Batak\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Bengali\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Bhaiksuki\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Brahmi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Buginese\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Buhid\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Canadian Aboriginal\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Carian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Caucasian Albanian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Chakma\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Cham\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Cherokee\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Coptic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Cuneiform\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Cypriot\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Deseret\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Devanagari\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Noto Sans Duployan\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Egyptian Hieroglyphs\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Elbasan\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Elymaic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Georgian\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Glagolitic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Gothic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Grantha\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Gujarati\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Gunjala Gondi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Gurmukhi\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans HK\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Noto Sans Hanifi Rohingya\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Hanunoo\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Hatran\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Hebrew\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Imperial Aramaic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Indic Siyaq Numbers\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Inscriptional Pahlavi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Inscriptional Parthian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans JP\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Javanese\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans KR\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Noto Sans Kaithi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Kannada\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Kayah Li\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Kharoshthi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Khmer\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Khojki\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Khudawadi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Lao\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Lepcha\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Limbu\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Linear A\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Linear B\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Lisu\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Lycian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Lydian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Mahajani\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Malayalam\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Mandaic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Manichaean\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Marchen\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Masaram Gondi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Math\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Mayan Numerals\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Medefaidrin\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Meetei Mayek\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Meroitic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Miao\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Modi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Mongolian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Mono\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"monospace\"},{n:\"Noto Sans Mro\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Multani\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Myanmar\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans NKo\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Nabataean\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans New Tai Lue\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Newa\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Nushu\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Ogham\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Ol Chiki\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Old Hungarian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Italic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old North Arabian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Permic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Persian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Sogdian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old South Arabian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Turkic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Oriya\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Osage\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Osmanya\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Pahawh Hmong\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Palmyrene\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Pau Cin Hau\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Phags Pa\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Phoenician\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Psalter Pahlavi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Rejang\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Runic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans SC\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Noto Sans Samaritan\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Saurashtra\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Sharada\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Shavian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Siddham\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Sinhala\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Sogdian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Sora Sompeng\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Soyombo\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Sundanese\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Syloti Nagri\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Symbols\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Symbols 2\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Syriac\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans TC\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Noto Sans Tagalog\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tagbanwa\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tai Le\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tai Tham\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Tai Viet\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Takri\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tamil\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Tamil Supplement\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Telugu\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Thaana\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Thai\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Thai Looped\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Tifinagh\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tirhuta\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Ugaritic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Vai\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Wancho\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Warang Citi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Yi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Zanabazar Square\",v:[400],f:\"sans-serif\"},{n:\"Noto Serif\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Noto Serif Ahom\",v:[400],f:\"serif\"},{n:\"Noto Serif Armenian\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Balinese\",v:[400],f:\"serif\"},{n:\"Noto Serif Bengali\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Devanagari\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Noto Serif Dogra\",v:[400],f:\"serif\"},{n:\"Noto Serif Ethiopic\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Georgian\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Grantha\",v:[400],f:\"serif\"},{n:\"Noto Serif Gujarati\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Gurmukhi\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Hebrew\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif JP\",v:[\"200\",\"300\",400,500,600,700,900],f:\"serif\"},{n:\"Noto Serif KR\",v:[\"200\",\"300\",400,500,600,700,900],f:\"serif\"},{n:\"Noto Serif Kannada\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Khmer\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Lao\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Malayalam\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Myanmar\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Nyiakeng Puachue Hmong\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Serif SC\",v:[\"200\",\"300\",400,500,600,700,900],f:\"serif\"},{n:\"Noto Serif Sinhala\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif TC\",v:[\"200\",\"300\",400,500,600,700,900],f:\"serif\"},{n:\"Noto Serif Tamil\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Noto Serif Tangut\",v:[400],f:\"serif\"},{n:\"Noto Serif Telugu\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Thai\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Tibetan\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Yezidi\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Traditional Nushu\",v:[300,400,500,600,700],f:\"sans-serif\"},{n:\"Nova Cut\",v:[400],f:\"display\"},{n:\"Nova Flat\",v:[400],f:\"display\"},{n:\"Nova Mono\",v:[400],f:\"monospace\"},{n:\"Nova Oval\",v:[400],f:\"display\"},{n:\"Nova Round\",v:[400],f:\"display\"},{n:\"Nova Script\",v:[400],f:\"display\"},{n:\"Nova Slim\",v:[400],f:\"display\"},{n:\"Nova Square\",v:[400],f:\"display\"},{n:\"Numans\",v:[400],f:\"sans-serif\"},{n:\"Nunito\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Nunito Sans\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Nabla\",v:[400],f:\"display\"},{n:\"Noto Color Emoji\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Chorasmian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Ethiopic\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Lao Looped\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Mende Kikakui\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Nag Mundari\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Nandinagari\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans SignWriting\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tangsa\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Serif HK\",v:[200,300,400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif NP Hmong\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Serif Oriya\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Serif Toto\",v:[400,500,600,700],f:\"serif\"},{n:\"Nuosu SIL\",v:[400],f:\"serif\"},{n:\"Odibee Sans\",v:[400],f:\"display\"},{n:\"Odor Mean Chey\",v:[400],f:\"serif\"},{n:\"Offside\",v:[400],f:\"display\"},{n:\"Oi\",v:[400],f:\"display\"},{n:\"Old Standard TT\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Oldenburg\",v:[400],f:\"display\"},{n:\"Ole\",v:[400],f:\"handwriting\"},{n:\"Oleo Script\",v:[400,700],f:\"display\"},{n:\"Oleo Script Swash Caps\",v:[400,700],f:\"display\"},{n:\"Oooh Baby\",v:[400],f:\"handwriting\"},{n:\"Open Sans\",v:[\"300\",400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Oranienbaum\",v:[400],f:\"serif\"},{n:\"Orbitron\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Oregano\",v:[400,\"400i\"],f:\"display\"},{n:\"Orelega One\",v:[400],f:\"display\"},{n:\"Orienta\",v:[400],f:\"sans-serif\"},{n:\"Original Surfer\",v:[400],f:\"display\"},{n:\"Oswald\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Outfit\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Over the Rainbow\",v:[400],f:\"handwriting\"},{n:\"Overlock\",v:[400,\"400i\",700,\"700i\",900,\"900i\"],f:\"display\"},{n:\"Overlock SC\",v:[400],f:\"display\"},{n:\"Overpass\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Overpass Mono\",v:[\"300\",400,500,600,700],f:\"monospace\"},{n:\"Ovo\",v:[400],f:\"serif\"},{n:\"Oxanium\",v:[\"200\",\"300\",400,500,600,700,800],f:\"display\"},{n:\"Oxygen\",v:[\"300\",400,700],f:\"sans-serif\"},{n:\"Oxygen Mono\",v:[400],f:\"monospace\"},{n:\"PT Mono\",v:[400],f:\"monospace\"},{n:\"PT Sans\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"PT Sans Caption\",v:[400,700],f:\"sans-serif\"},{n:\"PT Sans Narrow\",v:[400,700],f:\"sans-serif\"},{n:\"PT Serif\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"PT Serif Caption\",v:[400,\"400i\"],f:\"serif\"},{n:\"Pacifico\",v:[400],f:\"handwriting\"},{n:\"Padauk\",v:[400,700],f:\"sans-serif\"},{n:\"Palanquin\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Palanquin Dark\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Pangolin\",v:[400],f:\"handwriting\"},{n:\"Paprika\",v:[400],f:\"display\"},{n:\"Parisienne\",v:[400],f:\"handwriting\"},{n:\"Passero One\",v:[400],f:\"display\"},{n:\"Passion One\",v:[400,700,900],f:\"display\"},{n:\"Passions Conflict\",v:[400],f:\"handwriting\"},{n:\"Pathway Gothic One\",v:[400],f:\"sans-serif\"},{n:\"Patrick Hand\",v:[400],f:\"handwriting\"},{n:\"Patrick Hand SC\",v:[400],f:\"handwriting\"},{n:\"Pattaya\",v:[400],f:\"sans-serif\"},{n:\"Patua One\",v:[400],f:\"display\"},{n:\"Pavanam\",v:[400],f:\"sans-serif\"},{n:\"Paytone One\",v:[400],f:\"sans-serif\"},{n:\"Peddana\",v:[400],f:\"serif\"},{n:\"Peralta\",v:[400],f:\"display\"},{n:\"Permanent Marker\",v:[400],f:\"handwriting\"},{n:\"Petemoss\",v:[400],f:\"handwriting\"},{n:\"Petit Formal Script\",v:[400],f:\"handwriting\"},{n:\"Petrona\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Philosopher\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Piazzolla\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Piedra\",v:[400],f:\"display\"},{n:\"Pinyon Script\",v:[400],f:\"handwriting\"},{n:\"Pirata One\",v:[400],f:\"display\"},{n:\"Plaster\",v:[400],f:\"display\"},{n:\"Play\",v:[400,700],f:\"sans-serif\"},{n:\"Playball\",v:[400],f:\"display\"},{n:\"Playfair Display\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Playfair Display SC\",v:[400,\"400i\",700,\"700i\",900,\"900i\"],f:\"serif\"},{n:\"Plus Jakarta Sans\",v:[\"200\",\"300\",400,500,600,700,800,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Podkova\",v:[400,500,600,700,800],f:\"serif\"},{n:\"Poiret One\",v:[400],f:\"display\"},{n:\"Poller One\",v:[400],f:\"display\"},{n:\"Poly\",v:[400,\"400i\"],f:\"serif\"},{n:\"Pompiere\",v:[400],f:\"display\"},{n:\"Pontano Sans\",v:[300,400,500,600,700],f:\"sans-serif\"},{n:\"Poor Story\",v:[400],f:\"display\"},{n:\"Poppins\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Port Lligat Sans\",v:[400],f:\"sans-serif\"},{n:\"Port Lligat Slab\",v:[400],f:\"serif\"},{n:\"Potta One\",v:[400],f:\"display\"},{n:\"Pragati Narrow\",v:[400,700],f:\"sans-serif\"},{n:\"Praise\",v:[400],f:\"handwriting\"},{n:\"Prata\",v:[400],f:\"serif\"},{n:\"Preahvihear\",v:[400],f:\"sans-serif\"},{n:\"Press Start 2P\",v:[400],f:\"display\"},{n:\"Pridi\",v:[\"200\",\"300\",400,500,600,700],f:\"serif\"},{n:\"Princess Sofia\",v:[400],f:\"handwriting\"},{n:\"Prociono\",v:[400],f:\"serif\"},{n:\"Prompt\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Prosto One\",v:[400],f:\"display\"},{n:\"Proza Libre\",v:[400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"sans-serif\"},{n:\"Public Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Puppies Play\",v:[400],f:\"handwriting\"},{n:\"Puritan\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Purple Purse\",v:[400],f:\"display\"},{n:\"Padyakke Expanded One\",v:[400],f:\"display\"},{n:\"Pathway Extreme\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Phudu\",v:[300,400,500,600,700,800,900],f:\"display\"},{n:\"Playfair\",v:[300,400,500,600,700,800,900,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Poltawski Nowy\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Qahiri\",v:[400],f:\"sans-serif\"},{n:\"Quando\",v:[400],f:\"serif\"},{n:\"Quantico\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Quattrocento\",v:[400,700],f:\"serif\"},{n:\"Quattrocento Sans\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Questrial\",v:[400],f:\"sans-serif\"},{n:\"Quicksand\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Quintessential\",v:[400],f:\"handwriting\"},{n:\"Qwigley\",v:[400],f:\"handwriting\"},{n:\"Qwitcher Grypen\",v:[400,700],f:\"handwriting\"},{n:\"Racing Sans One\",v:[400],f:\"display\"},{n:\"Radio Canada\",v:[300,400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Radley\",v:[400,\"400i\"],f:\"serif\"},{n:\"Rajdhani\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Rakkas\",v:[400],f:\"display\"},{n:\"Raleway\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Raleway Dots\",v:[400],f:\"display\"},{n:\"Ramabhadra\",v:[400],f:\"sans-serif\"},{n:\"Ramaraja\",v:[400],f:\"serif\"},{n:\"Rambla\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Rammetto One\",v:[400],f:\"display\"},{n:\"Rampart One\",v:[400],f:\"display\"},{n:\"Ranchers\",v:[400],f:\"display\"},{n:\"Rancho\",v:[400],f:\"handwriting\"},{n:\"Ranga\",v:[400,700],f:\"display\"},{n:\"Rasa\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Rationale\",v:[400],f:\"sans-serif\"},{n:\"Ravi Prakash\",v:[400],f:\"display\"},{n:\"Readex Pro\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Recursive\",v:[\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Red Hat Display\",v:[\"300\",400,500,600,700,800,900,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Red Hat Mono\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"monospace\"},{n:\"Red Hat Text\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Red Rose\",v:[\"300\",400,500,600,700],f:\"display\"},{n:\"Redacted\",v:[400],f:\"display\"},{n:\"Redacted Script\",v:[\"300\",400,700],f:\"display\"},{n:\"Redressed\",v:[400],f:\"handwriting\"},{n:\"Reem Kufi\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Reenie Beanie\",v:[400],f:\"handwriting\"},{n:\"Reggae One\",v:[400],f:\"display\"},{n:\"Revalia\",v:[400],f:\"display\"},{n:\"Rhodium Libre\",v:[400],f:\"serif\"},{n:\"Ribeye\",v:[400],f:\"display\"},{n:\"Ribeye Marrow\",v:[400],f:\"display\"},{n:\"Righteous\",v:[400],f:\"display\"},{n:\"Risque\",v:[400],f:\"display\"},{n:\"Road Rage\",v:[400],f:\"display\"},{n:\"Roboto\",v:[\"100\",\"100i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",700,\"700i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Roboto Condensed\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Roboto Flex\",v:[400],f:\"sans-serif\"},{n:\"Roboto Mono\",v:[\"100\",\"200\",\"300\",400,500,600,700,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"monospace\"},{n:\"Roboto Serif\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Roboto Slab\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Rochester\",v:[400],f:\"handwriting\"},{n:\"Rock Salt\",v:[400],f:\"handwriting\"},{n:\"RocknRoll One\",v:[400],f:\"sans-serif\"},{n:\"Rokkitt\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Romanesco\",v:[400],f:\"handwriting\"},{n:\"Ropa Sans\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Rosario\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Rosarivo\",v:[400,\"400i\"],f:\"serif\"},{n:\"Rouge Script\",v:[400],f:\"handwriting\"},{n:\"Rowdies\",v:[\"300\",400,700],f:\"display\"},{n:\"Rozha One\",v:[400],f:\"serif\"},{n:\"Rubik\",v:[\"300\",400,500,600,700,800,900,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Rubik Beastly\",v:[400],f:\"display\"},{n:\"Rubik Bubbles\",v:[400],f:\"display\"},{n:\"Rubik Glitch\",v:[400],f:\"display\"},{n:\"Rubik Microbe\",v:[400],f:\"display\"},{n:\"Rubik Mono One\",v:[400],f:\"sans-serif\"},{n:\"Rubik Moonrocks\",v:[400],f:\"display\"},{n:\"Rubik Puddles\",v:[400],f:\"display\"},{n:\"Rubik Wet Paint\",v:[400],f:\"display\"},{n:\"Ruda\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Rufina\",v:[400,700],f:\"serif\"},{n:\"Ruge Boogie\",v:[400],f:\"handwriting\"},{n:\"Ruluko\",v:[400],f:\"sans-serif\"},{n:\"Rum Raisin\",v:[400],f:\"sans-serif\"},{n:\"Ruslan Display\",v:[400],f:\"display\"},{n:\"Russo One\",v:[400],f:\"sans-serif\"},{n:\"Ruthie\",v:[400],f:\"handwriting\"},{n:\"Rye\",v:[400],f:\"display\"},{n:\"Reem Kufi Fun\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Reem Kufi Ink\",v:[400],f:\"sans-serif\"},{n:\"Rubik 80s Fade\",v:[400],f:\"display\"},{n:\"Rubik Burned\",v:[400],f:\"display\"},{n:\"Rubik Dirt\",v:[400],f:\"display\"},{n:\"Rubik Distressed\",v:[400],f:\"display\"},{n:\"Rubik Gemstones\",v:[400],f:\"display\"},{n:\"Rubik Iso\",v:[400],f:\"display\"},{n:\"Rubik Marker Hatch\",v:[400],f:\"display\"},{n:\"Rubik Maze\",v:[400],f:\"display\"},{n:\"Rubik Pixels\",v:[400],f:\"display\"},{n:\"Rubik Spray Paint\",v:[400],f:\"display\"},{n:\"Rubik Storm\",v:[400],f:\"display\"},{n:\"Rubik Vinyl\",v:[400],f:\"display\"},{n:\"STIX Two Text\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Sacramento\",v:[400],f:\"handwriting\"},{n:\"Sahitya\",v:[400,700],f:\"serif\"},{n:\"Sail\",v:[400],f:\"display\"},{n:\"Saira\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Saira Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Saira Extra Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Saira Semi Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Saira Stencil One\",v:[400],f:\"display\"},{n:\"Salsa\",v:[400],f:\"display\"},{n:\"Sanchez\",v:[400,\"400i\"],f:\"serif\"},{n:\"Sancreek\",v:[400],f:\"display\"},{n:\"Sansita\",v:[400,\"400i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Sansita Swashed\",v:[\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Sarabun\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"sans-serif\"},{n:\"Sarala\",v:[400,700],f:\"sans-serif\"},{n:\"Sarina\",v:[400],f:\"display\"},{n:\"Sarpanch\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Sassy Frass\",v:[400],f:\"handwriting\"},{n:\"Satisfy\",v:[400],f:\"handwriting\"},{n:\"Sawarabi Gothic\",v:[400],f:\"sans-serif\"},{n:\"Sawarabi Mincho\",v:[400],f:\"serif\"},{n:\"Scada\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Scheherazade New\",v:[400,500,600,700],f:\"serif\"},{n:\"Schoolbell\",v:[400],f:\"handwriting\"},{n:\"Scope One\",v:[400],f:\"serif\"},{n:\"Seaweed Script\",v:[400],f:\"display\"},{n:\"Secular One\",v:[400],f:\"sans-serif\"},{n:\"Sedgwick Ave\",v:[400],f:\"handwriting\"},{n:\"Sedgwick Ave Display\",v:[400],f:\"handwriting\"},{n:\"Sen\",v:[400,700,800],f:\"sans-serif\"},{n:\"Send Flowers\",v:[400],f:\"handwriting\"},{n:\"Sevillana\",v:[400],f:\"display\"},{n:\"Seymour One\",v:[400],f:\"sans-serif\"},{n:\"Shadows Into Light\",v:[400],f:\"handwriting\"},{n:\"Shadows Into Light Two\",v:[400],f:\"handwriting\"},{n:\"Shalimar\",v:[400],f:\"handwriting\"},{n:\"Shanti\",v:[400],f:\"sans-serif\"},{n:\"Share\",v:[400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Share Tech\",v:[400],f:\"sans-serif\"},{n:\"Share Tech Mono\",v:[400],f:\"monospace\"},{n:\"Shippori Antique\",v:[400],f:\"sans-serif\"},{n:\"Shippori Antique B1\",v:[400],f:\"sans-serif\"},{n:\"Shippori Mincho\",v:[400,500,600,700,800],f:\"serif\"},{n:\"Shippori Mincho B1\",v:[400,500,600,700,800],f:\"serif\"},{n:\"Shojumaru\",v:[400],f:\"display\"},{n:\"Short Stack\",v:[400],f:\"handwriting\"},{n:\"Shrikhand\",v:[400],f:\"display\"},{n:\"Siemreap\",v:[400],f:\"display\"},{n:\"Sigmar One\",v:[400],f:\"display\"},{n:\"Signika\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Signika Negative\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Simonetta\",v:[400,\"400i\",900,\"900i\"],f:\"display\"},{n:\"Single Day\",v:[400],f:\"display\"},{n:\"Sintony\",v:[400,700],f:\"sans-serif\"},{n:\"Sirin Stencil\",v:[400],f:\"display\"},{n:\"Six Caps\",v:[400],f:\"sans-serif\"},{n:\"Skranji\",v:[400,700],f:\"display\"},{n:\"Slabo 13px\",v:[400],f:\"serif\"},{n:\"Slabo 27px\",v:[400],f:\"serif\"},{n:\"Slackey\",v:[400],f:\"display\"},{n:\"Smokum\",v:[400],f:\"display\"},{n:\"Smooch\",v:[400],f:\"handwriting\"},{n:\"Smooch Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Smythe\",v:[400],f:\"display\"},{n:\"Sniglet\",v:[400,800],f:\"display\"},{n:\"Snippet\",v:[400],f:\"sans-serif\"},{n:\"Snowburst One\",v:[400],f:\"display\"},{n:\"Sofadi One\",v:[400],f:\"display\"},{n:\"Sofia\",v:[400],f:\"handwriting\"},{n:\"Solway\",v:[\"300\",400,500,700,800],f:\"serif\"},{n:\"Song Myung\",v:[400],f:\"serif\"},{n:\"Sonsie One\",v:[400],f:\"display\"},{n:\"Sora\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Sorts Mill Goudy\",v:[400,\"400i\"],f:\"serif\"},{n:\"Source Code Pro\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"monospace\"},{n:\"Source Sans 3\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Source Sans Pro\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",600,\"600i\",700,\"700i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Source Serif 4\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Source Serif Pro\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",600,\"600i\",700,\"700i\",900,\"900i\"],f:\"serif\"},{n:\"Space Grotesk\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Space Mono\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Special Elite\",v:[400],f:\"display\"},{n:\"Spectral\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"serif\"},{n:\"Spectral SC\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"serif\"},{n:\"Spicy Rice\",v:[400],f:\"display\"},{n:\"Spinnaker\",v:[400],f:\"sans-serif\"},{n:\"Spirax\",v:[400],f:\"display\"},{n:\"Spline Sans\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Squada One\",v:[400],f:\"display\"},{n:\"Square Peg\",v:[400],f:\"handwriting\"},{n:\"Sree Krushnadevaraya\",v:[400],f:\"serif\"},{n:\"Sriracha\",v:[400],f:\"handwriting\"},{n:\"Srisakdi\",v:[400,700],f:\"display\"},{n:\"Staatliches\",v:[400],f:\"display\"},{n:\"Stalemate\",v:[400],f:\"handwriting\"},{n:\"Stalinist One\",v:[400],f:\"display\"},{n:\"Stardos Stencil\",v:[400,700],f:\"display\"},{n:\"Stick\",v:[400],f:\"sans-serif\"},{n:\"Stick No Bills\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Stint Ultra Condensed\",v:[400],f:\"display\"},{n:\"Stint Ultra Expanded\",v:[400],f:\"display\"},{n:\"Stoke\",v:[\"300\",400],f:\"serif\"},{n:\"Strait\",v:[400],f:\"sans-serif\"},{n:\"Style Script\",v:[400],f:\"handwriting\"},{n:\"Stylish\",v:[400],f:\"sans-serif\"},{n:\"Sue Ellen Francisco\",v:[400],f:\"handwriting\"},{n:\"Suez One\",v:[400],f:\"serif\"},{n:\"Sulphur Point\",v:[\"300\",400,700],f:\"sans-serif\"},{n:\"Sumana\",v:[400,700],f:\"serif\"},{n:\"Sunflower\",v:[\"300\",500,700],f:\"sans-serif\"},{n:\"Sunshiney\",v:[400],f:\"handwriting\"},{n:\"Supermercado One\",v:[400],f:\"display\"},{n:\"Sura\",v:[400,700],f:\"serif\"},{n:\"Suranna\",v:[400],f:\"serif\"},{n:\"Suravaram\",v:[400],f:\"serif\"},{n:\"Suwannaphum\",v:[\"100\",\"300\",400,700,900],f:\"serif\"},{n:\"Swanky and Moo Moo\",v:[400],f:\"handwriting\"},{n:\"Syncopate\",v:[400,700],f:\"sans-serif\"},{n:\"Syne\",v:[400,500,600,700,800],f:\"sans-serif\"},{n:\"Syne Mono\",v:[400],f:\"monospace\"},{n:\"Syne Tactile\",v:[400],f:\"display\"},{n:\"Schibsted Grotesk\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Shantell Sans\",v:[300,400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"display\"},{n:\"Sigmar\",v:[400],f:\"display\"},{n:\"Silkscreen\",v:[400,700],f:\"display\"},{n:\"Slackside One\",v:[400],f:\"handwriting\"},{n:\"Sofia Sans\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Sofia Sans Condensed\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Sofia Sans Extra Condensed\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Sofia Sans Semi Condensed\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Solitreo\",v:[400],f:\"handwriting\"},{n:\"Sono\",v:[200,300,400,500,600,700,800],f:\"sans-serif\"},{n:\"Splash\",v:[400],f:\"handwriting\"},{n:\"Spline Sans Mono\",v:[300,400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"monospace\"},{n:\"Tajawal\",v:[\"200\",\"300\",400,500,700,800,900],f:\"sans-serif\"},{n:\"Tangerine\",v:[400,700],f:\"handwriting\"},{n:\"Tapestry\",v:[400],f:\"handwriting\"},{n:\"Taprom\",v:[400],f:\"display\"},{n:\"Tauri\",v:[400],f:\"sans-serif\"},{n:\"Taviraj\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"serif\"},{n:\"Teko\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Telex\",v:[400],f:\"sans-serif\"},{n:\"Tenali Ramakrishna\",v:[400],f:\"sans-serif\"},{n:\"Tenor Sans\",v:[400],f:\"sans-serif\"},{n:\"Text Me One\",v:[400],f:\"sans-serif\"},{n:\"Texturina\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Thasadith\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"The Girl Next Door\",v:[400],f:\"handwriting\"},{n:\"The Nautigal\",v:[400,700],f:\"handwriting\"},{n:\"Tienne\",v:[400,700,900],f:\"serif\"},{n:\"Tillana\",v:[400,500,600,700,800],f:\"handwriting\"},{n:\"Timmana\",v:[400],f:\"sans-serif\"},{n:\"Tinos\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Titan One\",v:[400],f:\"display\"},{n:\"Titillium Web\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",600,\"600i\",700,\"700i\",900],f:\"sans-serif\"},{n:\"Tomorrow\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Tourney\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"display\"},{n:\"Trade Winds\",v:[400],f:\"display\"},{n:\"Train One\",v:[400],f:\"display\"},{n:\"Trirong\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"serif\"},{n:\"Trispace\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Trocchi\",v:[400],f:\"serif\"},{n:\"Trochut\",v:[400,\"400i\",700],f:\"display\"},{n:\"Truculenta\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Trykker\",v:[400],f:\"serif\"},{n:\"Tulpen One\",v:[400],f:\"display\"},{n:\"Turret Road\",v:[\"200\",\"300\",400,500,700,800],f:\"display\"},{n:\"Twinkle Star\",v:[400],f:\"handwriting\"},{n:\"Tai Heritage Pro\",v:[400,700],f:\"serif\"},{n:\"Tilt Neon\",v:[400],f:\"display\"},{n:\"Tilt Prism\",v:[400],f:\"display\"},{n:\"Tilt Warp\",v:[400],f:\"display\"},{n:\"Tiro Bangla\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Devanagari Hindi\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Devanagari Marathi\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Devanagari Sanskrit\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Gurmukhi\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Kannada\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Tamil\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Telugu\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tsukimi Rounded\",v:[300,400,500,600,700],f:\"sans-serif\"},{n:\"Ubuntu\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Ubuntu Condensed\",v:[400],f:\"sans-serif\"},{n:\"Ubuntu Mono\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Uchen\",v:[400],f:\"serif\"},{n:\"Ultra\",v:[400],f:\"serif\"},{n:\"Uncial Antiqua\",v:[400],f:\"display\"},{n:\"Underdog\",v:[400],f:\"display\"},{n:\"Unica One\",v:[400],f:\"display\"},{n:\"UnifrakturCook\",v:[700],f:\"display\"},{n:\"UnifrakturMaguntia\",v:[400],f:\"display\"},{n:\"Unkempt\",v:[400,700],f:\"display\"},{n:\"Unlock\",v:[400],f:\"display\"},{n:\"Unna\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Updock\",v:[400],f:\"handwriting\"},{n:\"Urbanist\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Unbounded\",v:[200,300,400,500,600,700,800,900],f:\"display\"},{n:\"VT323\",v:[400],f:\"monospace\"},{n:\"Vampiro One\",v:[400],f:\"display\"},{n:\"Varela\",v:[400],f:\"sans-serif\"},{n:\"Varela Round\",v:[400],f:\"sans-serif\"},{n:\"Varta\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Vast Shadow\",v:[400],f:\"display\"},{n:\"Vazirmatn\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Vesper Libre\",v:[400,500,700,900],f:\"serif\"},{n:\"Viaoda Libre\",v:[400],f:\"display\"},{n:\"Vibes\",v:[400],f:\"display\"},{n:\"Vibur\",v:[400],f:\"handwriting\"},{n:\"Vidaloka\",v:[400],f:\"serif\"},{n:\"Viga\",v:[400],f:\"sans-serif\"},{n:\"Voces\",v:[400],f:\"display\"},{n:\"Volkhov\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Vollkorn\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Vollkorn SC\",v:[400,600,700,900],f:\"serif\"},{n:\"Voltaire\",v:[400],f:\"sans-serif\"},{n:\"Vujahday Script\",v:[400],f:\"handwriting\"},{n:\"Vina Sans\",v:[400],f:\"display\"},{n:\"Waiting for the Sunrise\",v:[400],f:\"handwriting\"},{n:\"Wallpoet\",v:[400],f:\"display\"},{n:\"Walter Turncoat\",v:[400],f:\"handwriting\"},{n:\"Warnes\",v:[400],f:\"display\"},{n:\"Water Brush\",v:[400],f:\"handwriting\"},{n:\"Waterfall\",v:[400],f:\"handwriting\"},{n:\"Wellfleet\",v:[400],f:\"display\"},{n:\"Wendy One\",v:[400],f:\"sans-serif\"},{n:\"Whisper\",v:[400],f:\"handwriting\"},{n:\"WindSong\",v:[400,500],f:\"handwriting\"},{n:\"Wire One\",v:[400],f:\"sans-serif\"},{n:\"Work Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Wix Madefor Display\",v:[400,500,600,700,800],f:\"sans-serif\"},{n:\"Wix Madefor Text\",v:[400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"sans-serif\"},{n:\"Xanh Mono\",v:[400,\"400i\"],f:\"monospace\"},{n:\"Yaldevi\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Yanone Kaffeesatz\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Yantramanav\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Yatra One\",v:[400],f:\"display\"},{n:\"Yellowtail\",v:[400],f:\"handwriting\"},{n:\"Yeon Sung\",v:[400],f:\"display\"},{n:\"Yeseva One\",v:[400],f:\"display\"},{n:\"Yesteryear\",v:[400],f:\"handwriting\"},{n:\"Yomogi\",v:[400],f:\"handwriting\"},{n:\"Yrsa\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Yuji Boku\",v:[400],f:\"serif\"},{n:\"Yuji Mai\",v:[400],f:\"serif\"},{n:\"Yuji Syuku\",v:[400],f:\"serif\"},{n:\"Yusei Magic\",v:[400],f:\"sans-serif\"},{n:\"Ysabeau\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"ZCOOL KuaiLe\",v:[400],f:\"sans-serif\"},{n:\"ZCOOL QingKe HuangYou\",v:[400],f:\"sans-serif\"},{n:\"ZCOOL XiaoWei\",v:[400],f:\"sans-serif\"},{n:\"Zen Antique\",v:[400],f:\"serif\"},{n:\"Zen Antique Soft\",v:[400],f:\"serif\"},{n:\"Zen Dots\",v:[400],f:\"display\"},{n:\"Zen Kaku Gothic Antique\",v:[\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Zen Kaku Gothic New\",v:[\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Zen Kurenaido\",v:[400],f:\"sans-serif\"},{n:\"Zen Loop\",v:[400,\"400i\"],f:\"display\"},{n:\"Zen Maru Gothic\",v:[\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Zen Old Mincho\",v:[400,500,600,700,900],f:\"serif\"},{n:\"Zen Tokyo Zoo\",v:[400],f:\"display\"},{n:\"Zeyada\",v:[400],f:\"handwriting\"},{n:\"Zhi Mang Xing\",v:[400],f:\"handwriting\"},{n:\"Zilla Slab\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"Zilla Slab Highlight\",v:[400,700],f:\"display\"}]},7763:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294);const r={};r.left=(0,a.createElement)(\"svg\",{width:24,height:24,xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M4 19.8h8.9v-1.5H4v1.5zm8.9-15.6H4v1.5h8.9V4.2zm-8.9 7v1.5h16v-1.5H4z\"})),r.center=(0,a.createElement)(\"svg\",{width:24,height:24,xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.4 4.2H7.6v1.5h8.9V4.2zM4 11.2v1.5h16v-1.5H4zm3.6 8.6h8.9v-1.5H7.6v1.5z\"})),r.right=(0,a.createElement)(\"svg\",{width:24,height:24,xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.1 19.8H20v-1.5h-8.9v1.5zm0-15.6v1.5H20V4.2h-8.9zM4 12.8h16v-1.5H4v1.5z\"})),r.spacing=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:24,height:24,fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"#1E1E1E\",strokeWidth:\"1.5\",d:\"m10 8-3.3 3.3a1 1 0 0 0 0 1.4L10 16m4-8 3.3 3.3a1 1 0 0 1 0 1.4L14 16m-7.59-4H17.6M20 4v16M4 4v16\"})),r.updateLink=(0,a.createElement)(\"svg\",{style:{height:\"20px\",width:\"20px\"},xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"20\",height:\"20\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fill:\"#070707\",fillRule:\"evenodd\",d:\"M12.95 2.93a5.75 5.75 0 0 1 8.13 8.13v.01l-3 3a5.75 5.75 0 0 1-8.68-.62.75.75 0 0 1 1.2-.9 4.25 4.25 0 0 0 6.41.46l3-3a4.25 4.25 0 0 0-6.02-6l-1.71 1.7a.75.75 0 1 1-1.06-1.06l1.73-1.72Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fill:\"#070707\",fillRule:\"evenodd\",d:\"M7.99 8.6a5.75 5.75 0 0 1 6.61 1.95.75.75 0 1 1-1.2.9 4.25 4.25 0 0 0-6.41-.46l-3 3a4.25 4.25 0 0 0 6.01 6l1.71-1.7a.75.75 0 0 1 1.06 1.06l-1.72 1.72a5.75 5.75 0 0 1-8.13-8.13l.01-.01 3-3a5.75 5.75 0 0 1 2.06-1.32Z\",clipRule:\"evenodd\"})),r.addSubmenu=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"16\",height:\"16\",fill:\"none\",viewBox:\"0 0 16 16\"},(0,a.createElement)(\"g\",{fill:\"#070707\",fillRule:\"evenodd\",clipPath:\"url(#a)\",clipRule:\"evenodd\"},(0,a.createElement)(\"path\",{d:\"M.17 2C.17.99.99.17 2 .17h12c1.01 0 1.83.82 1.83 1.83v1.33c0 1.02-.82 1.84-1.83 1.84H2A1.83 1.83 0 0 1 .17 3.33V2ZM2 1.17a.83.83 0 0 0-.83.83v1.33c0 .46.37.84.83.84h12c.46 0 .83-.38.83-.84V2a.83.83 0 0 0-.83-.83H2ZM5.5 8c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83v.67c0 1-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 8.67V8Zm1.83-.83A.83.83 0 0 0 6.5 8v.67c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83V8a.83.83 0 0 0-.83-.83H7.33ZM5.5 13.33c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83V14c0 1.01-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 14v-.67Zm1.83-.83a.83.83 0 0 0-.83.83V14c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83v-.67a.83.83 0 0 0-.83-.83H7.33Z\"}),(0,a.createElement)(\"path\",{d:\"M2.17 13V4.67h1V13c0 .1.07.17.16.17H6.5v1H3.33c-.64 0-1.16-.53-1.16-1.17Z\"}),(0,a.createElement)(\"path\",{d:\"M2.17 7.83H6.5v1H2.17v-1Z\"})),(0,a.createElement)(\"defs\",null,(0,a.createElement)(\"clipPath\",{id:\"a\"},(0,a.createElement)(\"path\",{fill:\"#fff\",d:\"M0 0h16v16H0z\"})))),r.textTab=(0,a.createElement)(\"span\",{className:\"ultp-tab-button\"},(0,a.createElement)(\"svg\",{width:24,height:24,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4 18V6C4 4.89543 4.89543 4 6 4H14.8639C15.3943 4 15.903 4.21071 16.2781 4.58579L19.4142 7.72191C19.7893 8.09698 20 8.60569 20 9.13612V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M8 15H16\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M8 12H16\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M8 9H14\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"})),(0,a.createElement)(\"span\",null,\"Text\")),r.style=(0,a.createElement)(\"span\",{className:\"ultp-tab-button\"},(0,a.createElement)(\"svg\",{width:24,height:24,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"circle\",{cx:\"16.25\",cy:\"9.25\",r:\"1.25\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z\",fill:\"#1E1E1E\"})),(0,a.createElement)(\"span\",null,\"Style\")),r.settings3=(0,a.createElement)(\"span\",{className:\"ultp-tab-button\"},(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M20.0733 7.98829L19.5027 6.9982C19.02 6.16044 17.9503 5.87144 17.1114 6.35213C16.7121 6.58737 16.2356 6.65411 15.787 6.53764C15.3384 6.42116 14.9546 6.13103 14.7201 5.73123C14.5693 5.47711 14.4882 5.18767 14.4852 4.89218C14.4988 4.41843 14.3201 3.95934 13.9897 3.61951C13.6593 3.27967 13.2055 3.08802 12.7316 3.08821H11.5821C11.1177 3.08821 10.6725 3.27323 10.345 3.60234C10.0175 3.93145 9.83459 4.37752 9.83682 4.84183C9.82306 5.80049 9.04195 6.57039 8.08319 6.57029C7.7877 6.56722 7.49826 6.48617 7.24414 6.33535C6.40523 5.85465 5.33553 6.14366 4.85284 6.98142L4.24033 7.98829C3.75822 8.825 4.04329 9.89403 4.87801 10.3796C5.42059 10.6928 5.75483 11.2718 5.75483 11.8983C5.75483 12.5248 5.42059 13.1037 4.87801 13.417C4.04435 13.8993 3.75897 14.9657 4.24033 15.7999L4.81927 16.7984C5.04543 17.2064 5.42489 17.5076 5.87369 17.6351C6.32248 17.7627 6.8036 17.7061 7.21058 17.478C7.61067 17.2445 8.08743 17.1806 8.5349 17.3003C8.98238 17.4201 9.36347 17.7136 9.59349 18.1157C9.74431 18.3698 9.82536 18.6592 9.82843 18.9547C9.82843 19.9232 10.6136 20.7083 11.5821 20.7083H12.7316C13.6968 20.7083 14.4806 19.9283 14.4852 18.9631C14.4829 18.4973 14.667 18.05 14.9963 17.7206C15.3257 17.3913 15.773 17.2073 16.2388 17.2095C16.5336 17.2174 16.8218 17.2981 17.0779 17.4444C17.9146 17.9265 18.9836 17.6415 19.4692 16.8067L20.0733 15.7999C20.3071 15.3985 20.3713 14.9205 20.2516 14.4717C20.1319 14.0228 19.8382 13.6402 19.4356 13.4086C19.033 13.1769 18.7393 12.7943 18.6196 12.3455C18.4999 11.8967 18.5641 11.4186 18.7979 11.0173C18.95 10.7518 19.1701 10.5317 19.4356 10.3796C20.2653 9.89429 20.5497 8.83151 20.0733 7.99668V7.98829Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12.1606 14.3147C13.4952 14.3147 14.5771 13.2329 14.5771 11.8983C14.5771 10.5637 13.4952 9.4818 12.1606 9.4818C10.826 9.4818 9.74414 10.5637 9.74414 11.8983C9.74414 13.2329 10.826 14.3147 12.1606 14.3147Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),(0,a.createElement)(\"span\",null,\"Settings\")),r.add=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:22,height:24,viewBox:\"0 0 22 24\",fill:\"none\"},(0,a.createElement)(\"g\",{clipPath:\"url(#clip0_16_9344)\"},(0,a.createElement)(\"path\",{d:\"M15.7131 0.87241C16.6876 0.87241 17.4896 1.67503 17.4896 2.66957V17.6401C17.4896 18.626 16.6962 19.4373 15.7131 19.4373H2.63896C1.66445 19.4373 0.862407 18.6347 0.862407 17.6401V2.66957C0.862407 1.68375 1.65582 0.87241 2.63896 0.87241H15.7131ZM15.7131 0H2.63896C1.1815 0 0 1.1952 0 2.66957V17.6401C0 19.1145 1.1815 20.3097 2.63896 20.3097H15.7131C17.1705 20.3097 18.352 19.1145 18.352 17.6401V2.66957C18.352 1.1952 17.1705 0 15.7131 0Z\",fill:\"black\"}),(0,a.createElement)(\"path\",{d:\"M19.2921 10.2683H11.1337C9.63817 10.2683 8.42578 11.4948 8.42578 13.0077V21.2607C8.42578 22.7736 9.63817 24 11.1337 24H19.2921C20.7877 24 22.0001 22.7736 22.0001 21.2607V13.0077C22.0001 11.4948 20.7877 10.2683 19.2921 10.2683Z\",fill:\"black\"}),(0,a.createElement)(\"path\",{d:\"M15.7047 13.9934H14.7129V20.2835H15.7047V13.9934Z\",fill:\"white\"}),(0,a.createElement)(\"path\",{d:\"M18.3264 16.6282H12.1084V17.6314H18.3264V16.6282Z\",fill:\"white\"})),(0,a.createElement)(\"defs\",null,(0,a.createElement)(\"clipPath\",{id:\"clip0_16_9344\"},(0,a.createElement)(\"rect\",{width:22,height:24,fill:\"white\"})))),r.setting=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",role:\"img\",\"aria-hidden\":\"true\",focusable:\"false\"},(0,a.createElement)(\"path\",{d:\"M14.5 13.8c-1.1 0-2.1.7-2.4 1.8H4V17h8.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20v-1.5h-3.1c-.3-1-1.3-1.7-2.4-1.7zM11.9 7c-.3-1-1.3-1.8-2.4-1.8S7.4 6 7.1 7H4v1.5h3.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20V7h-8.1z\"})),r.styleIcon=(0,a.createElement)(\"svg\",{width:24,height:24,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",style:{fill:\"white\"}},(0,a.createElement)(\"path\",{d:\"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"circle\",{cx:\"16.25\",cy:\"9.25\",r:\"1.25\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z\",fill:\"#1E1E1E\"})),r.chatgpt=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",style:{fill:\"#10a37f\"},width:\"25\",height:\"25.06\",viewBox:\"0 0 25 25.06\"},(0,a.createElement)(\"path\",{\"data-name\":\"Path 146\",d:\"M24.795 12.941a6.153 6.153 0 0 0-1.519-2.7A6.07 6.07 0 0 0 22.8 5.1a6.327 6.327 0 0 0-6.88-2.917A6.28 6.28 0 0 0 5.139 4.471 6.223 6.223 0 0 0 .846 7.45a6.137 6.137 0 0 0 .862 7.358 6.07 6.07 0 0 0 .479 5.138 6.281 6.281 0 0 0 6.88 2.91A6.278 6.278 0 0 0 19.851 20.6a6.23 6.23 0 0 0 4.293-2.979 6.092 6.092 0 0 0 .651-4.682m-4.888 5.947v-6.22a.639.639 0 0 0-.285-.621L13.913 8.82l2.061-1.17L20.8 10.4a4.636 4.636 0 0 1 2.209 2.854 4.566 4.566 0 0 1-.475 3.517 4.662 4.662 0 0 1-2.185 1.943c-.146.063-.3.122-.446.178M5.083 6.178v6.2a.624.624 0 0 0 .279.622l5.708 3.226L9.011 17.4l-4.852-2.752a4.639 4.639 0 0 1-2.21-2.854 4.562 4.562 0 0 1 .473-3.514 4.687 4.687 0 0 1 1.784-1.736 4.551 4.551 0 0 1 .877-.367m11.268.023a.714.714 0 0 0-.707 0L9.855 9.5V7.1l4.92-2.748a4.79 4.79 0 0 1 6.485 1.721 4.574 4.574 0 0 1 .616 2.648c-.014.19-.039.393-.07.58zm-3.859 3.47 2.637 1.5v2.756l-2.637 1.457-2.631-1.5v-2.741zM8.8 6.067a.684.684 0 0 0-.3.624v6.4l-2.082-1.137V6.587a1.017 1.017 0 0 0 0-.112 4.75 4.75 0 0 1 7.364-3.911 6.33 6.33 0 0 1 .547.412zm-5.614 9.692 5.448 3.1a.713.713 0 0 0 .707 0l5.8-3.294v2.4l-4.927 2.729a4.79 4.79 0 0 1-6.485-1.713 4.573 4.573 0 0 1-.588-2.917c.013-.1.031-.2.05-.3m13 3.226a.647.647 0 0 0 .3-.627v-6.4l2.07 1.137v5.367a.637.637 0 0 0 0 .112 4.75 4.75 0 0 1-7.441 3.851 7.315 7.315 0 0 1-.467-.356z\",transform:\"translate(0 .001)\"})),r.fs_comment=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"50\",height:\"50.003\",viewBox:\"0 0 50 50.003\"},(0,a.createElement)(\"path\",{id:\"Path_2150\",\"data-name\":\"Path 2150\",d:\"M25,11.6c-21.64,0-25,2.79-25,20.8C0,46.131,1.963,51.017,12.476,52.567V61.6l10.646-8.4c.611.005,1.235.008,1.878.008,21.65,0,25-2.8,25-20.81S46.65,11.6,25,11.6m0,18.04a2.765,2.765,0,1,1-2.76,2.76A2.768,2.768,0,0,1,25,29.642m-9.53,0a2.765,2.765,0,1,1-2.76,2.76,2.768,2.768,0,0,1,2.76-2.76m19.06,5.53A2.765,2.765,0,1,1,37.3,32.4a2.768,2.768,0,0,1-2.77,2.77\",transform:\"translate(0 -11.602)\",fill:\"#037FFF\"})),r.fs_comment_selected=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"70\",height:\"70\",viewBox:\"0 0 70 70\"},(0,a.createElement)(\"g\",{id:\"Group_4357\",\"data-name\":\"Group 4357\",transform:\"translate(-221.11 2002)\"},(0,a.createElement)(\"path\",{id:\"Path_2154\",\"data-name\":\"Path 2154\",d:\"M172.35,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2155\",\"data-name\":\"Path 2155\",d:\"M181.88,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2156\",\"data-name\":\"Path 2156\",d:\"M191.41,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2157\",\"data-name\":\"Path 2157\",d:\"M204.65,0H153.58a9.468,9.468,0,0,0-9.47,9.46V60.54A9.468,9.468,0,0,0,153.58,70h51.07a9.46,9.46,0,0,0,9.46-9.46V9.46A9.46,9.46,0,0,0,204.65,0M179.11,51.61c-.64,0-1.26,0-1.87-.01L166.59,60V50.96c-10.51-1.55-12.48-6.43-12.48-20.16,0-18.01,3.36-20.8,25-20.8s25,2.79,25,20.8-3.35,20.81-25,20.81\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}))),r.fs_suggestion=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"50.001\",height:\"49.997\",viewBox:\"0 0 50.001 49.997\"},(0,a.createElement)(\"g\",{id:\"Group_4358\",\"data-name\":\"Group 4358\",transform:\"translate(-137.503 1994.592)\"},(0,a.createElement)(\"path\",{id:\"Path_2151\",\"data-name\":\"Path 2151\",d:\"M104.722,20.306H89.545V24.08a4.274,4.274,0,0,1-4.267,4.267H76.261a4.218,4.218,0,0,1-1.812-.424,4.272,4.272,0,0,1-4.107,3.166h-6.1V51.623A5.773,5.773,0,0,0,70.021,57.4h34.7a5.78,5.78,0,0,0,5.782-5.782V26.1a5.789,5.789,0,0,0-5.782-5.793M90.13,47.791H76.835a1.692,1.692,0,0,1,0-3.384H90.13a1.692,1.692,0,0,1,0,3.384m7.778-7.915H76.835a1.692,1.692,0,0,1,0-3.384H97.908a1.692,1.692,0,0,1,0,3.384\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2152\",\"data-name\":\"Path 2152\",d:\"M86.1,24.077V15.065a.827.827,0,0,0-.827-.827H80.619a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194h-2a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366v9.646a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2153\",\"data-name\":\"Path 2153\",d:\"M71.169,26.82V17.808a.827.827,0,0,0-.827-.827H65.684a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194H64.392a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366V26.82a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}))),r.fs_suggestion_selected=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"70\",height:\"70\",viewBox:\"0 0 70 70\"},(0,a.createElement)(\"path\",{id:\"Path_2158\",\"data-name\":\"Path 2158\",d:\"M329.38,0H278.3a9.46,9.46,0,0,0-9.46,9.46V60.54A9.46,9.46,0,0,0,278.3,70h51.08a9.466,9.466,0,0,0,9.46-9.46V9.46A9.466,9.466,0,0,0,329.38,0M293.77,17.03a.779.779,0,0,1,.09-.37l3.06-6.2a.834.834,0,0,1,.74-.46h2.01a.833.833,0,0,1,.74,1.2l-2.2,4.44a.825.825,0,0,0,.74,1.19h4.66a.828.828,0,0,1,.83.83v9.01a.828.828,0,0,1-.83.83H294.6a.828.828,0,0,1-.83-.83ZM278.84,29.41V19.77a.946.946,0,0,1,.08-.37l3.06-6.19a.82.82,0,0,1,.75-.46h2a.825.825,0,0,1,.74,1.19l-2.19,4.44a.826.826,0,0,0,.74,1.2h4.66a.824.824,0,0,1,.82.82v9.01a.826.826,0,0,1-.82.83h-9.02a.826.826,0,0,1-.82-.83m50,24.81A5.783,5.783,0,0,1,323.06,60H288.35a5.77,5.77,0,0,1-5.78-5.78V33.68h6.11a4.26,4.26,0,0,0,4.1-3.16,4.257,4.257,0,0,0,1.81.42h9.02a4.274,4.274,0,0,0,4.27-4.27V22.9h15.18a5.791,5.791,0,0,1,5.78,5.79Zm-12.6-15.13H295.17a1.69,1.69,0,1,0,0,3.38h21.07a1.69,1.69,0,1,0,0-3.38M308.46,47H295.17a1.7,1.7,0,0,0,0,3.39h13.29a1.7,1.7,0,0,0,0-3.39\",transform:\"translate(-268.84)\",fill:\"#037FFF\"})),r.grid_col1=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"22\",height:\"22\",viewBox:\"0 0 22 22\",fill:\"currentColor\"},(0,a.createElement)(\"g\",{transform:\"translate(-770 -381)\"},(0,a.createElement)(\"rect\",{width:\"10\",height:\"10\",transform:\"translate(770 381)\"}),(0,a.createElement)(\"rect\",{width:\"10\",height:\"10\",transform:\"translate(770 393)\"}),(0,a.createElement)(\"rect\",{width:\"10\",height:\"10\",transform:\"translate(782 381)\"}),(0,a.createElement)(\"rect\",{width:\"10\",height:\"10\",transform:\"translate(782 393)\"}))),r.grid_col2=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"22\",height:\"22\",viewBox:\"0 0 22 22\",fill:\"currentColor\"},(0,a.createElement)(\"g\",{transform:\"translate(-858 -381)\"},(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(858 381)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(858 389)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(858 397)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(866 381)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(866 389)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(866 397)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(874 381)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(874 389)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(874 397)\"}))),r.grid_col3=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"22\",height:\"22\",viewBox:\"0 0 22 22\"},(0,a.createElement)(\"g\",{transform:\"translate(-909 -381)\"},(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(909 381)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(909 387)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(909 393)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(909 399)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(915 381)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(915 387)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(915 393)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(915 399)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(921 381)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(921 387)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(921 393)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(921 399)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(927 381)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(927 387)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(927 393)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(927 399)\"}))),r.rocketPro=(0,a.createElement)(\"svg\",{width:\"16\",height:\"16\",viewBox:\"0 0 16 16\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M10.7991 7.20004C9.69681 7.20004 8.7993 6.30253 8.7993 5.20024C8.7993 4.09795 9.69681 3.20044 10.7991 3.20044C11.9014 3.20044 12.7989 4.09795 12.7989 5.20024C12.7989 6.30253 11.9014 7.20004 10.7991 7.20004ZM10.7991 4.00036C10.1376 4.00036 9.59922 4.53871 9.59922 5.20024C9.59922 5.86177 10.1376 6.40012 10.7991 6.40012C11.4606 6.40012 11.999 5.86177 11.999 5.20024C11.999 4.53871 11.4606 4.00036 10.7991 4.00036ZM0.400132 15.9992C0.335857 15.9993 0.272494 15.984 0.215433 15.9544C0.158371 15.9248 0.109297 15.8819 0.0723848 15.8292C0.0354726 15.7766 0.0118133 15.7159 0.00341887 15.6521C-0.00497556 15.5884 0.00214312 15.5236 0.0241696 15.4632C1.25525 12.0788 2.54952 10.3621 3.87019 10.3621C4.30615 10.3621 4.7133 10.5493 5.08207 10.9173C5.66441 11.4996 5.68521 12.0796 5.60042 12.4635C5.33324 13.6698 3.62941 14.8513 0.536919 15.976C0.49303 15.9917 0.446764 15.9998 0.400132 16V15.9992ZM3.87099 11.1612C3.47503 11.1612 3.00867 11.5084 2.52312 12.1651C2.04557 12.8107 1.56562 13.7306 1.09286 14.9065C2.16076 14.4769 3.01907 14.041 3.65181 13.6066C4.50533 13.0203 4.7581 12.5667 4.81969 12.2899C4.88129 12.0132 4.7821 11.7484 4.51652 11.4828C4.30055 11.2668 4.08937 11.162 3.87019 11.162L3.87099 11.1612Z\",fill:\"white\"}),(0,a.createElement)(\"path\",{d:\"M15.5986 0.00079992C13.5228 0.00079992 11.6734 0.352765 10.1 1.0471C8.80329 1.61984 7.693 2.42296 6.79949 3.43566C6.63311 3.62444 6.47872 3.81562 6.33554 4.0076C5.64601 4.05319 4.94048 4.32757 4.23655 4.82352C3.64061 5.24268 3.04227 5.82342 2.45673 6.54894C1.47282 7.76802 0.868084 8.9703 0.842486 9.0207C0.800011 9.10558 0.789106 9.2028 0.81172 9.29498C0.834335 9.38716 0.888995 9.4683 0.96593 9.52388C1.04287 9.57947 1.13706 9.60588 1.23168 9.5984C1.3263 9.59092 1.41518 9.55003 1.48242 9.48305C1.48642 9.47905 1.86878 9.10309 2.52072 8.73433C3.05826 8.43036 3.88698 8.07279 4.88928 8.0096C5.14286 8.65833 5.86838 9.43426 6.21635 9.78222C6.56431 10.1302 7.34024 10.8557 7.98897 11.1093C7.92578 12.1116 7.56821 12.9403 7.26425 13.4779C6.89468 14.1306 6.51952 14.5121 6.51632 14.5153C6.45032 14.5828 6.41026 14.6714 6.40318 14.7655C6.3961 14.8596 6.42247 14.9532 6.47763 15.0298C6.5328 15.1064 6.61322 15.1611 6.70473 15.1842C6.79625 15.2073 6.89297 15.1973 6.97787 15.1561C7.02827 15.1305 8.23055 14.5257 9.44963 13.5418C10.1752 12.9563 10.7559 12.358 11.1751 11.762C11.671 11.0573 11.9446 10.3526 11.991 9.66303C12.1822 9.52065 12.3733 9.36626 12.5629 9.19908C13.5756 8.30557 14.3787 7.19528 14.9515 5.89861C15.6458 4.32597 15.9978 2.47575 15.9978 0.39996V0H15.5978L15.5986 0.00079992ZM2.48552 7.84641C3.24785 6.74013 4.41333 5.36826 5.7268 4.93711C5.20765 5.84661 4.93888 6.68173 4.84209 7.21128C4.02236 7.26546 3.22145 7.48132 2.48552 7.84641ZM8.15376 13.5114C8.51883 12.7761 8.73444 11.9757 8.78809 11.1565C9.31684 11.0597 10.1528 10.7909 11.0615 10.2726C10.6295 11.5836 9.25845 12.7491 8.15296 13.5114H8.15376ZM12.0342 8.59994C10.3703 10.0678 8.64731 10.3998 8.39933 10.3998C8.39773 10.3998 8.23375 10.3966 7.79219 10.0854C7.48422 9.86861 7.12506 9.55984 6.78269 9.21748C6.44033 8.87511 6.13156 8.51595 5.91478 8.20798C5.60361 7.76642 5.60041 7.60244 5.60041 7.60084C5.60041 7.35286 5.93238 5.62984 7.40023 3.966C9.15686 1.9758 11.8454 0.887111 15.1947 0.806319C15.1139 4.15558 14.026 6.84411 12.035 8.60074L12.0342 8.59994Z\",fill:\"white\"})),r.subtract=(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"#070707\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.rightMark=(0,a.createElement)(\"svg\",{width:\"14\",height:\"11\",viewBox:\"0 0 14 11\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M1 5L5 9L13 1\",stroke:\"#5ECA70\",strokeWidth:\"1.5\"})),r.plus=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z\"})),r.delete=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M18.2 6.5H16c-.4 0-.8-.3-1-.7l-.3-1c-.1-.4-.5-.7-1-.7h-3.5c-.4 0-.8.3-1 .7l-.2 1c-.1.4-.5.7-1 .7H5.8c-.5 0-.8.3-.8.7s.3.8.8.8h12.5c.4 0 .7-.3.7-.8s-.3-.7-.8-.7zM12.5 16.5c0 .3-.2.5-.5.5s-.5-.2-.5-.5V9H6l1.3 9.3c.1 1 1 1.7 2 1.7h5.5c1 0 1.8-.7 2-1.7L18 9h-5.5v7.5z\"})),r.edit=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M19.3 18.1h-5.9c-.4 0-.8.3-.8.8s.3.8.8.8h5.9c.4 0 .8-.3.8-.8s-.4-.8-.8-.8zM16.2 11c1.5-1.9 1.5-2 1.6-2 .4-.6.5-1.2.3-1.9-.1-.7-.6-1.2-1.1-1.5 0 0-1.3-1-1.4-1.1-1.1-.9-2.7-.7-3.6.4l-7.7 9.6c-.3.4-.5 1.1-.3 1.7l.7 2.8c.1.3.4.6.7.6h3c.6 0 1.2-.3 1.6-.8 3.2-4.1 5.1-6.4 6.2-7.8zm-1.5-5.3s1.4 1.1 1.5 1.2c.2.1.4.4.5.6.1.3 0 .5-.1.7 0 .1-.4.6-1.1 1.3L12.3 7l.9-1.2c.4-.4 1-.5 1.5-.1zM8.8 17.8c-.1.1-.3.2-.5.2H5.9l-.5-2.2c0-.2 0-.4.1-.5l5.8-7.2 3.2 2.5c-1.7 2.2-4.1 5.3-5.7 7.2z\"})),r.duplicate=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"24\",height:\"24\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fill:\"currentColor\",fillRule:\"evenodd\",d:\"M11 9.75c-.69 0-1.25.56-1.25 1.25v9c0 .69.56 1.25 1.25 1.25h9c.69 0 1.25-.56 1.25-1.25v-9c0-.69-.56-1.25-1.25-1.25h-9ZM8.25 11A2.75 2.75 0 0 1 11 8.25h9A2.75 2.75 0 0 1 22.75 11v9A2.75 2.75 0 0 1 20 22.75h-9A2.75 2.75 0 0 1 8.25 20v-9Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fill:\"currentColor\",fillRule:\"evenodd\",d:\"M4 2.75A1.25 1.25 0 0 0 2.75 4v9A1.25 1.25 0 0 0 4 14.25h1a.75.75 0 0 1 0 1.5H4A2.75 2.75 0 0 1 1.25 13V4A2.75 2.75 0 0 1 4 1.25h9A2.75 2.75 0 0 1 15.75 4v1a.75.75 0 0 1-1.5 0V4A1.25 1.25 0 0 0 13 2.75H4Z\",clipRule:\"evenodd\"})),r.tabLongArrowRight=(0,a.createElement)(\"svg\",{width:\"33\",height:\"8\",viewBox:\"0 0 33 8\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M32.8536 4.35355C33.0488 4.15829 33.0488 3.84171 32.8536 3.64645L29.6716 0.464466C29.4763 0.269204 29.1597 0.269204 28.9645 0.464466C28.7692 0.659728 28.7692 0.976311 28.9645 1.17157L31.7929 4L28.9645 6.82843C28.7692 7.02369 28.7692 7.34027 28.9645 7.53553C29.1597 7.7308 29.4763 7.7308 29.6716 7.53553L32.8536 4.35355ZM0.5 4V4.5H32.5V4V3.5H0.5V4Z\",fill:\"currentColor\"})),r.saveLine=(0,a.createElement)(\"svg\",{width:\"16\",height:\"16\",viewBox:\"0 0 16 16\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3 8.66667L6.33333 12L13 4\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.rightAngle=(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M17.9333 12.8C18.4667 12.4 18.4667 11.6 17.9333 11.2L8.6 4.2C7.94076 3.70557 7 4.17595 7 5V19C7 19.824 7.94076 20.2944 8.6 19.8L17.9333 12.8Z\",fill:\"currentColor\"})),r.arrowRight=(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3 12H20M14 5L21 12L14 19\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.arrowLeft=(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M21 12H4M10 5L3 12L10 19\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.fiveStar=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M9.18029 2.60415C9.5027 1.90962 10.4975 1.90962 10.8199 2.60415L12.6 6.43897C12.7314 6.72197 13.0016 6.91689 13.3134 6.95362L17.5362 7.45111C18.3006 7.54117 18.6078 8.47852 18.043 8.99753L14.9193 11.8678C14.6892 12.0792 14.5862 12.394 14.6473 12.6992L15.4762 16.8444C15.6261 17.5942 14.8215 18.1737 14.1496 17.7999L10.4414 15.7375C10.1673 15.585 9.83291 15.585 9.55876 15.7375L5.8506 17.7999C5.17864 18.1737 4.37404 17.5942 4.52397 16.8444L5.35289 12.6992C5.41393 12.394 5.31093 12.0792 5.08084 11.8678L1.95716 8.99753C1.39232 8.47852 1.69954 7.54117 2.464 7.45111L6.68675 6.95362C6.99858 6.91689 7.26875 6.72197 7.40012 6.43897L9.18029 2.60415Z\",stroke:\"currentColor\",strokeWidth:\"1.31579\",strokeLinejoin:\"round\"})),r.knowledgeBase=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4.16667 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V7.35702C17.5 6.915 17.3244 6.49107 17.0118 6.17851L13.8215 2.98816C13.5089 2.67559 13.085 2.5 12.643 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V15.8333C2.5 16.7538 3.24619 17.5 4.16667 17.5Z\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.6665 7.5L9.99984 7.5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.6665 10L13.3332 10\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.6665 12.5L11.6665 12.5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.commentCount2=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M16.6667 3.33325H3.33341C2.41294 3.33325 1.66675 4.07944 1.66675 4.99992V12.4999C1.66675 13.4204 2.41294 14.1666 3.33341 14.1666H7.08341V17.4999L11.2501 14.1666H16.6667C17.5872 14.1666 18.3334 13.4204 18.3334 12.4999V4.99992C18.3334 4.07944 17.5872 3.33325 16.6667 3.33325Z\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.66675 9.16659L6.66675 8.33325\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M10 9.16659L10 8.33325\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M13.3333 9.16659L13.3333 8.33325\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.customerSupport=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4.1665 7.5C4.1665 4.73857 6.77818 2.5 9.99984 2.5C13.2215 2.5 15.8332 4.73857 15.8332 7.5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15.8333 14.1667V15.8334C15.8333 16.7539 15.0872 17.5001 14.1667 17.5001H10\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M3.42064 7.99896L2.038 8.91951C1.80593 9.07401 1.6665 9.33434 1.6665 9.61317V12.0538C1.6665 12.3327 1.80593 12.593 2.038 12.7475L3.42064 13.6681C3.88395 13.9765 4.47696 14.0133 4.97485 13.7645C5.50087 13.5016 5.83317 12.964 5.83317 12.376V9.29101C5.83317 8.70301 5.50087 8.16542 4.97485 7.90253C4.47696 7.65369 3.88395 7.69048 3.42064 7.99896Z\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15.0248 7.90253C15.5227 7.65369 16.1158 7.69048 16.579 7.99896L17.9617 8.91951C18.1938 9.07401 18.3332 9.33434 18.3332 9.61317V12.0538C18.3332 12.3327 18.1938 12.593 17.9617 12.7475L16.579 13.6681C16.1158 13.9765 15.5227 14.0133 15.0248 13.7645C14.4988 13.5016 14.1665 12.964 14.1665 12.376V9.29101C14.1665 8.70301 14.4988 8.16542 15.0248 7.90253Z\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.facebook=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4.16667 1.875C2.90101 1.875 1.875 2.90101 1.875 4.16667V15.8333C1.875 17.099 2.90101 18.125 4.16667 18.125H9.51011V12.2281H7.91667V9.86675H9.51011V8.84924C9.51011 6.2191 10.7004 5 13.2825 5C13.7721 5 14.6168 5.09601 14.9624 5.19201V7.33258C14.78 7.31338 14.4632 7.3038 14.0696 7.3038C12.8026 7.3038 12.313 7.78373 12.313 9.03161V9.86675H14.8371L14.4034 12.2281H12.313V18.125H15.8333C17.099 18.125 18.125 17.099 18.125 15.8333V4.16667C18.125 2.90101 17.099 1.875 15.8333 1.875H4.16667Z\",fill:\"currentColor\"})),r.typography=(0,a.createElement)(\"svg\",{viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"rect\",{x:\"2.5\",y:\"2.5\",width:\"15\",height:\"15\",rx:\"1.66667\",stroke:\"currentColor\",strokeWidth:\"1.25\"}),(0,a.createElement)(\"path\",{d:\"M5.83203 7.91671V6.66671C5.83203 6.20647 6.20513 5.83337 6.66536 5.83337H13.332C13.7923 5.83337 14.1654 6.20647 14.1654 6.66671V7.91671M9.9987 5.83337V14.1667M7.91536 14.1667H12.082\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"})),r.reload=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3.43552 16C4.90822 18.9634 7.96628 21 11.5 21C16.4706 21 20.5 16.9706 20.5 12C20.5 7.02944 16.4706 3 11.5 3C7.96628 3 4.90822 5.03656 3.43552 8M8.5 8.5H3V3\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.border=(0,a.createElement)(\"svg\",{viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M8.33398 2.5H11.6673\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M2.5 11.6666L2.5 8.33329\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8.33398 17.5H11.6673\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.5 11.6666L17.5 8.33329\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M5 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M5 17.5H4.16667C3.24619 17.5 2.5 16.7538 2.5 15.8333V15\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15 2.5H15.8333C16.7538 2.5 17.5 3.24619 17.5 4.16667V5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V15\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"})),r.boxShadow=(0,a.createElement)(\"svg\",{viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"rect\",{x:\"2.5\",y:\"2.5\",width:\"12.5\",height:\"12.5\",rx:\"0.833333\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15 5H16.6667C17.1269 5 17.5 5.3731 17.5 5.83333V6.66667\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M5 15V16.6667C5 17.1269 5.3731 17.5 5.83333 17.5H6.66667\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.5007 15.8333V16.6666C17.5007 17.1268 17.1276 17.4999 16.6673 17.4999H15.834\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8.75 17.5H10.2083\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12.291 17.5H13.7493\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.5 8.75V10.2083\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.5 12.2916V13.75\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}));const o=r},2044:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});const a={example:{source:\"db-postx-featurename\",medium:\"block-feature\",campaign:\"postx-dashboard\"},db_hellobar:{source:\"db-postx-hellobar\",medium:\"summer-sale\",campaign:\"postx-dashboard\"},explore_pro_feature:{source:\"db-postx-wizard\",medium:\"explore-features\",campaign:\"postx-dashboard\"},ticket_support:{source:\"db-postx-wizard\",medium:\"ticket-support\",campaign:\"postx-dashboard\"},postx_doc:{source:\"db-postx-wizard\",medium:\"postx-doc\",campaign:\"postx-dashboard\"},addons_popup:{source:\"db-postx-addons\",medium:\"popup\",campaign:\"postx-dashboard\"},builder_popup:{source:\"db-postx-builder\",medium:\"popup-upgrade-pro\",campaign:\"postx-dashboard\"},block_docs:{source:\"db-postx-editor\",medium:\"block-docs\",campaign:\"postx-dashboard\"},blockProFeat:{source:\"db-postx-editor\",medium:\"pro-features\",campaign:\"postx-dashboard\"},blockUpgrade:{source:\"db-postx-editor\",medium:\"block-pro\",campaign:\"postx-dashboard\"},blockPatternPro:{source:\"db-postx-editor\",medium:\"blocks-premade\",campaign:\"postx-dashboard\"},blockProLay:{source:\"db-postx-editor\",medium:\"pro-layout\",campaign:\"postx-dashboard\"},wizardPatternPro:{source:\"db-postx-wizard\",medium:\"core_features-patterns\",campaign:\"postx-dashboard\"},wizardStaterPackPro:{source:\"db-postx-wizard\",medium:\"core_features-SP\",campaign:\"postx-dashboard\"},slider_2:{source:\"db-postx-editor\",medium:\"slider2-pro\",campaign:\"postx-dashboard\"},advanced_search:{source:\"db-postx-editor\",medium:\"adv_search-pro\",campaign:\"postx-dashboard\"},customFont:{source:\"db-postx-editor\",medium:\"custom-font\",campaign:\"postx-dashboard\"},dc:{source:\"db-postx-editor\",medium:\"acf-pro\",campaign:\"postx-dashboard\"},postx_dashboard_settings:{source:\"db-postx-setting\",medium:\"upgrade-pro-sidebar\",campaign:\"postx-dashboard\"},postx_dashboard_tutorials:{source:\"db-postx-tutorial\",medium:\"tutorials-upgrade_to_pro\",campaign:\"postx-dashboard\"},postx_dashboard_tutorialsdocs:{source:\"db-postx-tutorial\",medium:\"tutorials-doc\",campaign:\"postx-dashboard\"},menu_save_temp_pro:{source:\"db-postx-save-template\",medium:\"popup-upgrade\",campaign:\"postx-dashboard\"},settingsFR:{source:\"db-postx-setting\",medium:\"settings-upgrade-pro\",campaign:\"postx-dashboard\"},tutorialsFR:{source:\"db-postx-tutorial\",medium:\"tutorials-FR\",campaign:\"postx-dashboard\"},editor_darklight:{source:\"db-postx-editor\",medium:\"darklight-pro\",campaign:\"postx-dashboard\"},final_hour_sale:{source:\"db-postx-hellobar\",medium:\"final-hour-sale\",campaign:\"postx-dashboard\"},massive_sale:{source:\"db-postx-hellobar\",medium:\"massive-sale\",campaign:\"postx-dashboard\"},flash_sale:{source:\"db-postx-hellobar\",medium:\"flash-sale\",campaign:\"postx-dashboard\"},exclusive_deals:{source:\"db-postx-hellobar\",medium:\"exclusive-deals\",campaign:\"postx-dashboard\"},black_friday_sale:{source:\"db-postx-hellobar\",medium:\"black-friday\",campaign:\"postx-dashboard\"},new_year_sale:{source:\"db-postx-hellobar\",medium:\"new-year-sale\",campaign:\"postx-dashboard\"}},r=e=>{const{url:t,utmKey:n,affiliate:r,hash:o}=e,i=new URL(t||\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F\"),l=a[n];return l&&(i.searchParams.set(\"utm_source\",l.source),i.searchParams.set(\"utm_medium\",l.medium),i.searchParams.set(\"utm_campaign\",l.campaign)),r&&i.searchParams.set(\"ref\",r),o&&(i.hash=o.startsWith(\"#\")?o:`#${o}`),i.toString()}},6511:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>u});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o),l=n(1667),s=n.n(l),p=new URL(n(4975),n.b),c=i()(r()),d=s()(p);c.push([e.id,`.ultp-gettingstart-message{display:grid;grid-template-columns:440px auto;gap:30px;align-items:center;justify-content:space-between}@media only screen and (max-width: 1200px){.ultp-gettingstart-message{grid-template-columns:1fr 1fr}}.ultp-gettingstart-message .ultp-start-left{position:relative;line-height:0;height:100%}.ultp-gettingstart-message .ultp-start-left img{width:100%;height:100%;border-radius:4px}@media only screen and (max-width: 1400px){.ultp-gettingstart-message .ultp-start-left img{object-fit:cover}}.ultp-gettingstart-message .ultp-start-left .ultp-start-content{position:absolute;flex-direction:column;gap:20px;display:flex;bottom:24px;left:24px;line-height:normal}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-text{color:#fff;font-size:18px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns{display:flex;align-items:center;flex-wrap:wrap;gap:12px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-primary-button,.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button{padding:10px 20px;font-size:14px;border-radius:4px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button{background:unset;border:1px solid #fff;color:#fff !important;font-weight:600}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button:hover{background:unset}.ultp-gettingstart-message .ultp-start-right{display:grid;grid-template-columns:1fr 1fr;height:100%}@media only screen and (max-width: 1200px){.ultp-gettingstart-message .ultp-start-right{grid-template-columns:1fr}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content{background:#fff;padding:24px 32px;border-radius:0 4px 4px 0;display:flex;flex-direction:column;justify-content:center}@media only screen and (min-width: 1200px)and (max-width: 1360px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content{padding:24px 15px}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-title{color:#091f36;font-size:16px;font-weight:600;margin-bottom:8px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-title._pro{font-size:20px;margin-bottom:12px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description{margin-bottom:22px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description._pro{color:#070707;margin-bottom:32px}@media only screen and (min-width: 1200px)and (max-width: 1300px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description{display:none}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists{display:flex;flex-direction:column;gap:5px;margin-bottom:22px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists .ultp-list{display:flex;align-items:center;gap:7px;color:#070707;font-weight:500;font-size:14px}@media only screen and (min-width: 1200px)and (max-width: 1300px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists .ultp-list{font-size:12px}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-upgrade-btn{background:linear-gradient(180deg, #ea5e40, transparent) #e36f16;padding:12px 25px;border-radius:4px;font-size:14px;margin-bottom:15px;display:flex;align-items:center;gap:10px;width:fit-content;cursor:pointer;text-decoration:none;color:#fff}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-upgrade-btn:hover{background:linear-gradient(180deg, #e36f16, transparent) #ea5e40}.ultp-gettingstart-message .ultp-dashborad-banner{width:100%;position:relative;line-height:0}@media only screen and (max-width: 1200px){.ultp-gettingstart-message .ultp-dashborad-banner{display:none}}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container{max-width:25%;position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;max-height:fit-content;cursor:pointer;height:fit-content}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container .ultp-play-icon{max-width:100%}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container .ultp-animate{-webkit-animation:pulse 1.2s ease infinite;animation:pulse 1.2s ease infinite;background:var(--postx-primary-color);position:absolute;width:100%;height:100%;left:0;right:0;top:0;bottom:0;margin:auto;border-radius:100%}.ultp-gettingstart-message .ultp-dashborad-banner img.ultp-banner-img{max-width:100%;height:100%;border-radius:4px 0 0 4px}@media only screen and (max-width: 1420px){.ultp-gettingstart-message .ultp-dashborad-banner img.ultp-banner-img{object-fit:cover}}@-webkit-keyframes pulse{0%{opacity:0;transform:scale(1, 1)}50%{opacity:.3}100%{transform:scale(1.5);opacity:0}}@keyframes pulse{0%{opacity:0;transform:scale(1, 1)}50%{opacity:.3}100%{transform:scale(1.5);opacity:0}}.ultp-dashboard-addons-container{display:flex;flex-direction:column;gap:50px}.ultp-dashboard-addons-container .ultp-addon-parent-heading.mt{margin-top:50px}.ultp-dashboard-addons-container .ultp-addon-parent-heading{margin-bottom:32px;color:#070707;font-size:24px;font-weight:600}.ultp-dashboard-addons-container .ultp-addon-parent-heading>span{color:var(--postx-primary-color)}.ultp-dashboard-addons-container .ultp-addons-grid{display:grid;justify-content:space-between;grid-template-columns:1fr 1fr;gap:30px;position:relative}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item{display:flex;flex-direction:column;justify-content:space-between;padding:unset !important;position:relative;overflow:hidden;border:1px solid #e6e6e6;border-radius:8px;background:#fbfbfb}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item img{height:24px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .dashicons{height:unset;width:unset;line-height:unset;font-size:16px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-new-tag{font-weight:500;font-size:10px;color:#070707;padding:4px 8px;background:#ffbd42;border-radius:24px;padding:4px 8px;height:fit-content;line-height:10px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-shortcode-copy{cursor:copy}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents{padding:24px;position:relative}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name{display:flex;gap:12px;align-items:center;margin-bottom:16px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name .name{font-size:20px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name .ultp-addon-item-title{font-weight:500;display:flex;align-items:center;gap:8px;line-height:24px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock{position:absolute;top:0;left:0}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock span{position:absolute;top:4px;left:2px;font-weight:600;font-size:12px;transform:rotate(315deg);color:#fff}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock::after{content:\"\";width:42px;height:42px;background-image:url(${d});display:block}.ultp-dashboard-addons-container .ultp-addons-container-grid{display:grid;grid-template-columns:auto 360px;gap:32px}.ultp-dashboard-addons-container .ultp-addons-container-grid.ultp-gs{display:block}.ultp-dashboard-addons-container .ultp-addons-container-grid .ultp-addons-items{display:flex;gap:32px;flex-direction:column}.ultp-dashboard-addons-container .ultp-addon-item-actions{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;border-top:1px solid #eaedf2}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action{display:flex;justify-content:space-between;align-items:center;gap:6px}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip{display:flex;align-items:center;text-decoration:none;gap:6px;border:1px solid #e6e6e6;padding:2px 6px;color:#6e6e6e;font-size:14px;font-weight:500;border-radius:4px;transition:400ms}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip svg{width:14px;height:14px}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip:hover{color:#070707;font-weight:500;border:1px solid #070707}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .dashicons,.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action a{font-size:14px;color:#575a5d;cursor:pointer}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .dashicons-admin-collapse{transform:rotate(180deg)}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting{position:relative;height:20px !important;width:20px !important;margin-left:10px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting svg{color:#6e6e6e;cursor:pointer;opacity:1}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting svg:hover{color:#070707}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting::before{position:absolute;left:-12px;font-size:30px;top:-13px;border-left:1px solid #eaedf2;padding-left:9px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings{width:150%;height:100vh;background-color:rgba(0,0,0,.5);position:fixed;top:0%;right:10%;transition:.5s;z-index:999}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup{height:100%;width:600px;position:fixed;z-index:99;top:32px;right:0px;margin:0 auto;border-radius:4px;box-sizing:border-box;background-color:var(--postx-white-color);box-shadow:0 1px 2px 0 rgba(8,68,129,.2);overflow-x:hidden;transition:.5s}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup::-webkit-scrollbar{display:none}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-addon-settings-title{padding:15px 20px;background:#e3f1ff;position:sticky;top:0;z-index:1}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form{display:flex;flex-direction:column;justify-content:space-between;height:100%;position:relative}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-body{position:relative;padding:40px 40px 30px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer{text-align:center;background:#e3f1ff;padding:16px;position:sticky;bottom:32px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer .onloading{cursor:no-drop}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer .onloading svg{height:14px;width:14px;vertical-align:middle;margin-left:4px;animation:ultp-spin 1s linear infinite;color:#fff}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addons-setting-save{color:var(--postx-white-color);cursor:pointer;width:600px;border:none;position:fixed;right:0;bottom:0;padding:10px 25px;background:var(--postx-primary-color)}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close{position:fixed;top:40px;right:11px;color:var(--postx-white-color);font-size:25px;cursor:pointer;border:none;padding:0px 9px 3px;background-color:var(--postx-dark-color);z-index:99}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close::after{content:\"×\"}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close:hover{background:red}.addons_promotions{margin-top:40px;border:1px solid #b9cff0;background-color:#e0ecff;padding:30px;border-radius:4px;text-align:center;font-size:16px;color:#091f36}.addons_promotions.ultp-gs{max-width:80%;margin-left:auto;margin-right:auto}.addons_promotions .addons_promotions_label{line-height:20px;font-size:16px}.addons_promotions .addons_promotions_btns{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-top:15px}.addons_promotions .addons_promotions_btns .addons_promotions_btn{padding:6px 12px;border-radius:4px;cursor:pointer;font-size:12px}.addons_promotions .addons_promotions_btns .addons_promotions_btn.btn1{background:#07cc92;color:#fff;text-decoration:none}.addons_promotions .addons_promotions_btns .addons_promotions_btn.btn2{background:#fff;color:#000;text-decoration:none}.ultp_dash_key_features{margin-top:60px;margin-bottom:30px}.ultp_dash_key_features .ultp_dash_key_features_content{display:grid;grid-template-columns:repeat(4, 1fr);gap:20px;margin-top:30px}.ultp_dash_key_features .ultp_dash_key_features_label{font-size:18px;font-weight:600;margin-bottom:10px;color:#091f36}.ultp_dash_key_features .ultp-description{font-size:14px}.ultp-description{color:#4a4a4a;font-size:14px}.ultp-description-notice{margin-top:5px;color:#e68429}.ultp-plugin-required{font-size:14px;text-align:center;display:inline-block;padding:20px 0px 0;color:var(--postx-warning-button-color);margin-top:-16px}@media only screen and (max-width: 1200px){.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp_dash_key_features .ultp_dash_key_features_content{grid-template-columns:1fr 1fr 1fr}}@media only screen and (max-width: 1100px){.ultp-dashboard-addons-container .ultp-addons-container-grid{grid-template-columns:auto}.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 768px){.ultp-dashboard-addons-container .ultp-addons-container-grid{grid-template-columns:auto}.addons_promotions.ultp-gs{max-width:100%}.ultp-gettingstart-message{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp_dash_key_features .ultp_dash_key_features_content{grid-template-columns:1fr}}@media only screen and (max-width: 425px){.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(1, 1fr)}}.ultp-addon-group{background:#fff;border-radius:8px;padding:32px}`,\"\"]);const u=c},3038:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-dashboard-blocks-container{display:flex;flex-direction:column;gap:50px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .frequency{margin-bottom:0px !important}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{margin-top:20px;display:grid;gap:30px;grid-template-columns:1fr 1fr 1fr}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item{display:flex;justify-content:space-between;padding:20px 15px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-item-meta{display:flex;gap:10px;align-items:center;font-size:16px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-item-meta img{height:25px;width:25px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option{display:flex;align-items:center;gap:10px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option a{text-decoration:none}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option .ultp-option-tooltip{display:flex;align-items:center;text-decoration:none;gap:3px;font-size:14px;color:#575a5d}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option .ultp-option-tooltip .dashicons{height:unset;width:unset;line-height:unset;font-size:14px;color:#575a5d}@media only screen and (max-width: 1350px){.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 990px){.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{grid-template-columns:1fr}}\",\"\"]);const l=i},725:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-builder-dashboard__content{width:100%;margin:0;display:grid;grid-template-columns:200px 1fr}.ultp-builder-dashboard__content .ultp-builder-tab__content{display:flex;flex-direction:column;justify-content:flex-start}.ultp-builder-dashboard__content .ultp-builder-tab__content .ultp-tab__content{height:100%}.ultp-builder-tab__option{background:#edf6ff;border:1px solid rgba(3,127,255,.03);min-height:100vh;border-radius:4px 0 0 4px}.ultp-builder-tab__option ul{padding:0px;margin:0px}.ultp-builder-tab__option ul li{font-size:14px;cursor:pointer;color:#091f36;padding:12px 0px 12px 30px;display:flex;align-items:center;transition:400ms}.ultp-builder-tab__option ul li.active,.ultp-builder-tab__option ul li.active *{color:var(--postx-primary-color);background-color:var(--postx-white-color)}.ultp-builder-tab__option ul li:hover,.ultp-builder-tab__option ul li:hover *{color:var(--postx-primary-color)}.ultp-builder-tab__option ul li img{margin-right:8px;height:20px;text-align:left}.ultp-builder-tab__option ul li span{margin-right:8px;font-size:24px;text-align:left;display:block;line-height:1;height:auto}.ultp-builder-tab__option ul ul li{padding-left:50px}.ultp-builder-tab__option .ultp-popup-sync{font-size:14px;cursor:pointer;display:flex;align-items:center;transition:400ms;padding:12px 0px 12px 30px;margin-bottom:0}.ultp-builder-tab__option .ultp-popup-sync i{margin-right:4px;font-size:25px;height:auto;width:auto}.ultp-builder-tab__option .ultp-popup-sync:hover,.ultp-builder-tab__option .ultp-popup-sync:hover *{color:var(--postx-primary-color)}.ultp-builder-tab__content .ultp-builder-tab__heading{display:flex;align-items:center;justify-content:space-between;padding:0 0 20px 30px;max-height:30px}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title .heading{display:inline-block;font-size:18px;text-transform:capitalize}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title span{margin-right:20px;padding-right:20px;border-right:1px solid #575a5d;font-size:18px;cursor:pointer;color:#575a5d}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title span svg{height:12px;width:14px;color:#575a5d;margin-right:5px}.ultp-builder-tab__content .ultp-tab__content{display:none !important;opacity:0;transition:.3s;padding:30px;background:var(--postx-white-color);border-radius:0 4px 4px 0;box-shadow:0 1px 2px 0 rgba(8,68,129,.2)}.ultp-builder-tab__content .ultp-tab__content.active{display:block !important;opacity:100;transition:.3s}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab{display:flex;flex-direction:column;gap:20px}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper{background:#f6f8fa;padding:15px 20px 15px 20px;border-radius:4px;border:solid 1px #eaedf2}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading{display:flex;align-items:center;flex-wrap:wrap;gap:15px;justify-content:space-between}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta{display:flex;gap:15px;color:#172c41}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta>div{font-size:14px;font-weight:normal;margin:0px !important}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta>div>span{font-weight:600;text-transform:capitalize}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__content div{display:flex;align-items:center;justify-content:space-between}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control{display:flex;gap:12px;position:relative;min-height:26px;align-items:center}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a{text-decoration:none;font-size:13px;color:#575a5d;display:flex;align-items:center;justify-content:center;text-transform:capitalize}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a span{font-size:12px;color:#091f36;height:auto}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a.status{min-width:56px}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-dashboard__action{line-height:1.2;cursor:pointer}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-action__active{position:absolute;top:52px;cursor:pointer;right:-20px;padding:10px 36px;background:#f9f9f9;box-shadow:4px 6px 12px -10px #000;z-index:9999}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-action__active .dashicons{font-size:18px;top:3px;position:relative}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-condition__edit{padding:5px 10px;border-radius:2px;font-size:12px;border:none;color:#fff;cursor:pointer;background-color:#091f36}.ultp-builder-tab__content .ultp-builder-items{display:grid;gap:30px;grid-template-columns:1fr 1fr 1fr}.ultp-builder-tab__content .ultp-builder-items .newScreen{border-radius:4px;border:solid 1px #eaedf2;background-color:#fff}.ultp-builder-tab__content .ultp-builder-items .newScreen .listInfo{padding:8px 12px;border-bottom:solid 1px #eaedf2;text-transform:capitalize;margin-bottom:12px}.ultp-builder-tab__content .ultp-builder-items .newScreen .listInfo .ultp_h6{font-size:16px;font-weight:500}.ultp-builder-tab__content .ultp-builder-items .newScreen .listOverlays{height:250px}.ultp-builder-tab__content .ultp-builder-items .newScreen .listOverlays img{height:100%;object-fit:fill}.premadeScreen .ultp-item-list{border-radius:4px;border:solid 1px #eaedf2;background-color:#fff}.premadeScreen .ultp-item-list .listInfo{padding:10px;display:flex;justify-content:space-between;align-items:center;border-bottom:solid 1px #eaedf2;text-transform:capitalize;flex-wrap:wrap;row-gap:10px}.premadeScreen .ultp-item-list .listInfo .title{font-size:14px;color:#091f36;font-weight:500}.premadeScreen .ultp-item-list .listInfo .title .parent{font-weight:400;font-size:12px;color:rgba(9,31,54,.67)}.premadeScreen .ultp-item-list .listInfo .btnImport{display:flex;align-items:center;border-radius:4px;background-image:linear-gradient(#18dd5c, #0c8d20);padding:5px 10px;color:#fff;font-size:12px}.premadeScreen .ultp-item-list .listInfo .btnImport svg{height:12px;color:#fff;margin-right:6px}.premadeScreen .ultp-item-list .listInfo .btnImport span{color:#fff}.premadeScreen .ultp-item-list .listInfo .ultp-upgrade-pro-btn{font-size:12px;padding:5px 10px}.premadeScreen .ultp-item-list .listOverlay{box-sizing:border-box;position:relative;line-height:0;padding:10px}.premadeScreen .ultp-item-list .listOverlay img{border-radius:4px}.premadeScreen.ultp-builder-items.ultpheader .bg-image-aspect,.premadeScreen.ultp-builder-items.ultpfooter .bg-image-aspect{aspect-ratio:1.8}.premadeScreen.ultp-builder-items.ultpheader .ultp-list-blank-img img,.premadeScreen.ultp-builder-items.ultpfooter .ultp-list-blank-img img{max-height:190px}.premadeScreen.ultp-builder-items.ultpheader .dashicons-visibility,.premadeScreen.ultp-builder-items.ultpfooter .dashicons-visibility{font-size:50px}.ultp-builder-items .ultp-item-list img{width:100%;max-width:100%}.ultp-item-list{position:relative}.ultp-premade-item{transition:.3s}.ultp-premade-item:hover{box-shadow:1px 4px 18px -12px #000}.ultp-list-white-overlay{cursor:pointer;font-weight:600;width:100%;height:100%;justify-content:center;align-items:center;top:0;left:0;position:absolute;display:flex;align-items:center;color:var(--postx-primary-color);font-size:12px}.ultp-list-white-overlay .dashicons{margin-right:15px;font-size:32px;display:block;height:auto;color:var(--postx-primary-color)}.ultp-condition-wrapper{z-index:100000;position:fixed;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;background:rgba(0,0,0,.7)}.ultp-condition-wrapper .ultp-condition-popup{max-width:700px;width:100%;position:relative;background:#fff;padding:40px 60px;border-radius:4px;height:fit-content;max-height:90%;overflow:unset !important;margin:50px auto 0}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close{position:absolute;top:0;right:-52px;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff;transition:400ms}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close svg{color:#000}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close:hover{background:red}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close:hover svg{color:#fff}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content{display:flex;gap:30px;align-items:center;justify-content:center;flex-wrap:wrap;position:relative}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap{height:450px;width:100%;display:flex;flex-direction:column;align-items:center;overflow-y:scroll !important;-ms-overflow-style:none;scrollbar-width:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap-heading{margin-bottom:14px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap::-webkit-scrollbar{display:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-items{width:600px;margin-top:20px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .btnCondition{margin-top:20px;color:#fff;border-radius:4px;background-color:#091f36;padding:8px 16px;border:none;cursor:pointer}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition_cancel{cursor:pointer;position:absolute;right:-30px;color:#de1010;font-size:24px;line-height:.7;transition:400ms}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition_cancel:hover{color:#c00a0a}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields,.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap__field{display:flex;align-items:center;position:relative;width:100%}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap__field{background:#fff;margin-top:15px;border:1px solid #eaedf2;border-radius:2px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields{padding:0px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields select{color:#575a5d;border:none;margin-right:0;padding-top:7px;padding-bottom:7px;border-right:1px solid #eaedf2;border-radius:0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields select:last-child{border-right:none;width:100%;max-width:100%}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__label{display:inline-flex;align-items:center;background:#7c8084;padding:4px 8px;border-radius:2px;color:#fff}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__label::-webkit-scrollbar{display:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown{text-align:left;width:100%;display:flex;align-items:center;position:relative}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-condition-text{width:100%;display:inline-flex;padding:0 10px 0 10px;align-items:center}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-condition-text .ultp-condition-arrow{font-size:15px;display:inline-block;padding-left:15px;line-height:1.5}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown span{cursor:pointer}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-dropdown-value__close{color:#fff;background:#000;margin-left:8px;border-radius:50%;font-size:14px;line-height:1;height:auto;width:auto}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__default{width:100%;display:block;padding:12px 0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__content{width:100%;display:flex;align-items:center;justify-content:space-between}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__content .ultp-condition-arrow{top:3px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search{background:#fff;position:absolute;left:0;z-index:1;top:39px;width:100%;padding:10px;border-radius:0;box-sizing:border-box;border:1px solid #eaedf2}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search input{width:100%;border-radius:2px;min-height:34px;border:1px solid #eaedf2}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search li{cursor:pointer;text-align:left;margin-bottom:12px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search li:last-child{margin-bottom:0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-save-condition{width:100%;font-size:14px;position:sticky;bottom:0;color:#fff;border-radius:4px;padding:15px;border:none;cursor:pointer;background-image:linear-gradient(#399aff, #016cdb)}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-save-condition span{font-size:17px;margin-left:4px;color:#fff}.ultp-builder-items .ultp-premade-img__blank{height:100%;display:flex;align-items:center;justify-content:center;padding:20px}.ultp-premade-img__blank img{max-height:395px}.ultp-list-blank-img img{opacity:.1}.ultp-list-blank-img a{text-decoration:none !important}@media only screen and (max-width: 1100px){.ultp-builder-dashboard__content{gap:20px;grid-template-columns:auto}.ultp-builder-dashboard__content .ultp-builder-tab__option{min-width:300px;width:fit-content;min-height:fit-content}.ultp-builder-tab__content .ultp-builder-items{grid-template-columns:1fr 1fr}}.ultp-builder-create-btn{text-transform:capitalize}\",\"\"]);const l=i},5735:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'@media only screen and (max-width: 1350px){.ultp-menu-items div{margin:0px 10px 0 0}}@media only screen and (max-width: 1250px){.ultp-menu-items div a:after{bottom:-2px;height:2px}}.dash-faq-container{min-width:170px}.dash-faq-container a{text-decoration:none;font-size:14px;color:#575a5d;display:flex;gap:8px;align-items:center;width:-webkit-fill-available;padding-right:32px}.dash-faq-container a:focus{box-shadow:none}.dash-faq-container a .dashicons{padding-top:2px}.dash-faq-container a:hover{color:var(--postx-primary-color)}.dash-faq-container{display:flex;flex-direction:column;gap:15px;padding:25px;position:absolute;right:20px;top:70px;border-radius:2px;box-shadow:0 2px 4px 0 rgba(8,68,129,.2);background-color:#fff;z-index:1}.dash-faq-container::before{content:\"\";content:\"\";position:absolute;right:0px;top:-29px;font:normal 42px dashicons;color:#fff}.ultp-dashboard-container-grid{display:grid;grid-template-columns:auto 424px;gap:32px}@media only screen and (max-width: 1250px){.ultp-dashboard-container-grid{display:flex;flex-direction:column}}@media only screen and (max-width: 1250px){.ultp-dashboard-container-grid{display:flex;flex-direction:column}}.ultp-dashboard-container-grid .ultp-dashboard-content{display:flex;gap:32px;flex-direction:column}.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-banner,.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-pro-promo,.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-blocks{padding:32px}.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-item-con{box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863)}.ultp-dash-banner{padding:32px;display:flex;gap:80px;justify-content:space-between}@media screen and (max-width: 758px){.ultp-dash-banner{padding:16px;flex-direction:column-reverse;gap:8px;width:fit-content}}.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-title{font-weight:600;font-size:24px;line-height:32px;color:#070707}@media screen and (max-width: 768px){.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-title{font-size:18px;display:inline-block}}.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-description{max-width:365px;font-size:16px;line-height:24px;color:#41474e;margin-top:14px}.ultp-dash-banner .ultp-dash-banner-left .ultp-primary-alter-button{padding:10px 24px;margin-top:32px}.ultp-dash-banner .ultp-dash-banner-right{width:352px}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img{position:relative}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img img{max-width:100%}@keyframes pulse-border{0%{box-shadow:0 0 0 5px rgba(241,19,108,.6)}70%{box-shadow:0 0 0 15px rgba(255,67,142,0)}100%{box-shadow:0 0 0 5px rgba(255,67,142,0)}}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img .ultp-dash-banner-right-play-button{cursor:pointer;width:64px;height:64px;border-radius:50%;background-color:#fff;display:flex;align-items:center;justify-content:center;position:absolute;top:50%;right:50%;transform:translate(50%, -50%);animation:pulse-border 1.2s ease-in infinite}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img .ultp-dash-banner-right-play-button svg{width:24px;height:24px;color:#070707;margin-top:-1px;margin-left:1px}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-video{width:352px;height:240px;border-radius:8px;overflow:hidden;box-shadow:0px 0px 42.67px 0px rgba(212,212,221,.4784313725)}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-video iframe{width:100%;height:100%}.ultp-dash-pro-promo{padding:32px;background-color:#fff;display:flex;gap:80px;justify-content:space-between}@media only screen and (max-width: 1400px){.ultp-dash-pro-promo{flex-direction:column-reverse;gap:24px}}@media only screen and (max-width: 758px){.ultp-dash-pro-promo{flex-direction:column-reverse;gap:24px;padding:16px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-title{font-weight:600;font-size:24px;line-height:32px;color:#070707}@media only screen and (max-width: 1250px){.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-title{font-size:18px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-description{max-width:365px;font-size:16px;line-height:24px;color:#41474e;margin-top:14px}@media only screen and (max-width: 1250px){.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-description{font-size:14px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-primary-alter-button{margin-top:32px}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature{display:flex;column-gap:24px;row-gap:12px;flex-wrap:wrap;margin-top:24px}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature .ultp-dash-pro-promo-left-keyfeature-item{display:flex;align-items:center;gap:6px;font-weight:500;font-size:14px;line-height:20px;color:#070707}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature .ultp-dash-pro-promo-left-keyfeature-item svg{width:20px;height:20px;color:#1f66ff}.ultp-dash-pro-promo .ultp-dash-pro-promo-right-img{max-width:352px;object-fit:contain}.ultp-dash-blocks{padding:32px}@media only screen and (max-width: 1250px){.ultp-dash-blocks{padding:16px}}.ultp-dash-blocks .ultp-dash-blocks-heading{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-dash-blocks-heading-title{font-weight:600;font-size:18px;line-height:24px;color:#0a0d14}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-transparent-button{color:#1f66ff !important}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-transparent-button svg{fill:#1f66ff !important;width:20px;height:20px}.ultp-dash-blocks .ultp-dash-blocks-items{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px}@media only screen and (max-width: 1500px){.ultp-dash-blocks .ultp-dash-blocks-items{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 1250px){.ultp-dash-blocks .ultp-dash-blocks-items{grid-template-columns:1fr}}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-dash-blocks-item{display:flex;gap:8px;align-items:center;justify-content:space-between;border:1px solid #e6e6e6;border-radius:8px;background:#fbfbfb;box-shadow:none}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta{display:flex;align-items:center;gap:8px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta .ultp-blocks-item-icon{width:24px;height:24px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta .ultp-blocks-item-title{font-weight:500;font-size:14px;line-height:20px;color:#2e2e2e}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-control-option{display:flex;align-items:center;gap:8px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-control-option .ultp-option-tooltip{font-size:12px;line-height:16px;color:#6e6e6e;text-decoration:none}',\"\"]);const l=i},9455:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-dashboard-general-settings-container{display:grid;grid-template-columns:auto 360px;gap:32px}.ultp-dashboard-general-settings-container .ultp-general-settings{height:fit-content;width:-webkit-fill-available;padding:32px}.ultp-dashboard-general-settings-container .ultp-general-settings form{margin-top:40px}.ultp-dashboard-general-settings-container .ultp-general-settings .skeletonOverflow{display:flex;gap:30px;flex-direction:column;margin-top:40px}.ultp-dashboard-general-settings-container .ultp-general-settings .onloading{cursor:no-drop}.ultp-dashboard-general-settings-container .ultp-general-settings .onloading svg{height:14px;width:14px;vertical-align:middle;margin-left:4px;animation:ultp-spin 1s linear infinite;color:#fff}@media only screen and (max-width: 1100px){.ultp-dashboard-general-settings-container{grid-template-columns:auto;justify-items:center}.ultp-dashboard-general-settings-container .ultp-general-settings-content-right{width:360px}}@media only screen and (max-width: 768px){.ultp-dashboard-general-settings-container .ultp-general-settings-content-right{width:100%}}\",\"\"]);const l=i},283:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp_h1{font-size:var(--postx-h1-fontsize);font-weight:var(--postx-h1-weight)}.ultp_h2{font-size:var(--postx-h2-fontsize);font-weight:var(--postx-h2-weight)}.ultp_h3{font-size:var(--postx-h3-fontsize);font-weight:var(--postx-h3-weight)}.ultp_h4{font-size:var(--postx-h4-fontsize);font-weight:var(--postx-h4-weight)}.ultp_h5{font-size:var(--postx-h5-fontsize);font-weight:var(--postx-h5-weight)}.ultp_h6{font-size:var(--postx-h6-fontsize);font-weight:var(--postx-h6-weight)}.ultp_h1,.ultp_h2,.ultp_h3,.ultp_h4,.ultp_h5,.ultp_h6{color:#091f36}.ultp-settings-container{margin:0 !important;background:#f6f8fa;padding:32px;min-height:100vh;height:100%}.ultp-settings-container .ultp-settings-content .ultp-premade-grid{background:#f6f8fa}@media screen and (max-width: 1250px){.ultp-settings-container{padding:12px}}.ultp-settings-content{margin:0 auto 40px !important;max-width:1376px}@media screen and (max-width: 768px){.ultp-settings-content{max-width:100%;overflow:scroll}}.ultp-dash-item-con{background:#fff;padding:12px;border-radius:8px;box-shadow:0 2px 4px 0 rgba(27,28,29,.0392156863)}.ultp-setting-header{display:grid;align-items:center;grid-template-columns:148px 502px auto 72px;gap:16px;background:var(--postx-white-color);border-bottom:1px solid var(--postx-border-color);padding:0 32px;position:sticky;top:32px;width:100%;height:67px;min-height:67px;box-sizing:border-box;z-index:99}@media screen and (max-width: 1200px){.ultp-setting-header{grid-template-columns:152px auto;background-color:#fff;gap:32px;height:auto;padding-top:12px;column-gap:38px;box-shadow:0px 0px 11px rgba(0,0,0,.168627451)}}@media screen and (max-width: 768px){.ultp-setting-header{display:flex;flex-wrap:wrap;padding:8px;height:auto}}.ultp-pro-feature-lists{display:flex;flex-direction:column;gap:15px;margin-top:24px}.ultp-pro-feature-lists>span{display:inline-flex;gap:8px;align-items:center}.ultp-pro-feature-lists>span,.ultp-pro-feature-lists>span>span{color:#070707;font-weight:500;font-size:14px;line-height:20px}.ultp-pro-feature-lists>span>span>a{text-decoration:none}.ultp-pro-feature-lists>span>span>a .dashicons{color:var(--postx-primary-color);font-size:17px;line-height:1.2}.ultp-pro-feature-lists>span svg{height:16px;width:16px;vertical-align:middle;color:#070707;flex-shrink:0}.settingsLink{color:var(--postx-primary-color) !important}.ultp-ring{display:inline-block;margin-right:5px;font-size:20px;position:relative;top:2px;color:#fff;animation:ring 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite}@keyframes ring{0%{transform:rotate(0)}5%{transform:rotate(25deg)}10%{transform:rotate(-20deg)}15%{transform:rotate(12deg)}20%{transform:rotate(-6deg)}25%{transform:rotate(2deg)}28%,100%{transform:rotate(0)}}#postx-regenerate-css{display:none;margin-top:10px}#postx-regenerate-css span{color:var(--postx-white-color)}#postx-regenerate-css.active{display:inline-block}#postx-regenerate-css .dashicons{display:none;margin-right:8px;-webkit-animation:ultp-spin 1s linear infinite;animation:ultp-spin 1s linear infinite}#postx-regenerate-css.ultp-spinner .dashicons{display:inline-block}@keyframes ultp-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}form .ultp-settings-wrap{display:flex;flex-direction:column;gap:12px;margin-bottom:30px}form .ultp-settings-wrap strong{font-size:14px;color:#091f36;font-weight:500}form .ultp-settings-wrap .ultp-settings-field-wrap select,form .ultp-settings-wrap .ultp-settings-field-wrap input[type=text],form .ultp-settings-wrap .ultp-settings-field-wrap input[type=number]{height:36px;width:100%;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:0px 13px 0px;background-color:#fff;margin-bottom:3px}form .ultp-settings-wrap .ultp-settings-field-wrap textarea{width:100%;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:0px 13px 0px;background-color:#fff;margin-bottom:3px}form .ultp-settings-wrap .ultp-settings-field-wrap select[multiple]{max-height:100px;height:100%}form .ultp-settings-wrap .ultp-settings-field-wrap .ultp-description{font-size:12px}form .ultp-data-message{display:none;position:fixed;bottom:10%;padding:13px 14px 14px 15px;border-radius:4px;box-shadow:0 1px 2px 0 rgba(8,68,129,.2);background:rgba(115,184,28,.1);width:224px;color:#091f36}.ultp-upgrade-pro-btn{display:inline-block;padding:10px 25px;color:#fff;font-size:14px;background:linear-gradient(180deg, #ff9336, transparent) #de521e;border-radius:4px;text-decoration:none;width:fit-content;transition:background-color 400ms}.ultp-upgrade-pro-btn:hover{background-color:#ff9336;color:#fff}.ultp-upgrade-pro-btn:focus{outline:0;box-shadow:none}.ultp-upgrade-pro-btn:active{color:#fff}input[type=checkbox]{width:22px;height:20px;border-radius:2px;border:solid 1px #eaedf2;background:#fff;position:relative;margin:0;box-shadow:none;display:inline-block}input[type=checkbox]+.ultp-description{margin-left:10px}input[type=checkbox]:checked{background:var(--postx-primary-color);border:none}input[type=checkbox]:checked::before{content:\"✓\";color:#fff;height:unset;width:unset;margin:unset;position:absolute;left:5px;top:9px;font-weight:900}.ultp-primary-button{cursor:pointer;padding:12px 25px;color:#fff !important;font-size:14px;background:#070707;border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;border:none;transition:background-color 400ms;gap:8px;line-height:20px}.ultp-primary-button:hover{background-color:var(--postx-primary-color)}.ultp-primary-button:focus{outline:0;box-shadow:none}.ultp-secondary-button{cursor:pointer;padding:10px 25px;color:#070707;font-size:14px;background:rgba(0,0,0,0);border-radius:4px;text-decoration:none;border:1px solid #070707;display:inline-flex;align-items:center;width:fit-content;transition:background-color 400ms}.ultp-secondary-button:hover{background-color:#dee5fa}.ultp-secondary-button:focus{outline:0;box-shadow:none}.ultp-primary-alter-button{cursor:pointer;padding:12px 24px;color:#fff !important;font-size:14px;background:var(--postx-primary-color);border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;border:none;transition:background-color 400ms;gap:8px;line-height:20px}.ultp-primary-alter-button:hover{background-color:#070707}.ultp-primary-alter-button:focus{outline:0;box-shadow:none}.ultp-transparent-button{cursor:pointer;color:#a1a1a1 !important;font-size:14px;background:rgba(0,0,0,0);border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;transition:background-color 400ms;gap:8px}.ultp-transparent-button:hover{text-decoration:underline}.ultp-transparent-button:focus{outline:0;box-shadow:none}.ultp-transparent-alter-button{cursor:pointer;color:#4a4a4a;font-size:14px;background:rgba(0,0,0,0);text-decoration:underline;display:flex;align-items:center;width:fit-content;transition:background-color 400ms;gap:8px}.ultp-transparent-alter-button:hover{color:#3c3c3c}.ultp-transparent-alter-button:focus{outline:0;box-shadow:none}.ultp-primary-button svg,.ultp-primary-alter-button svg,.ultp-secondary-button svg,.ultp-transparent-button svg,.ultp-transparent-alter-button svg{width:24px;height:24px}.cursor{cursor:pointer}#wpbody-content:has(.ultp-menu-items-wrap){padding:0 !important;background-color:#f6f8fa}.ultp-menu-items-wrap{line-height:1.6}.ultp-menu-items-wrap h1,.ultp-menu-items-wrap h2,.ultp-menu-items-wrap h3,.ultp-menu-items-wrap h4,.ultp-menu-items-wrap h5,.ultp-menu-items-wrap h6{padding:0;margin:0}.ultp-menu-items-wrap .ultp-discount-wrap{transform:rotate(-90deg);width:150px;height:40px;display:flex;gap:10px;align-items:center;justify-content:center;border-radius:4px 4px 0 0;position:fixed;top:200px;right:-55px;z-index:99999;text-decoration:none;background:linear-gradient(60deg, hsl(224, 88%, 61%), hsl(359, 85%, 66%), hsl(44, 74%, 55%), hsl(89, 72%, 47%), hsl(114, 79%, 48%), hsl(179, 85%, 66%));background-size:300% 300%;background-position:0 50%;animation:ultp_moveGradient 4s alternate infinite;transition:.4s}.ultp-menu-items-wrap .ultp-discount-wrap .ultp-discount-text{font-weight:600;color:#fff;text-transform:uppercase;font-size:14px}@keyframes ultp_moveGradient{50%{background-position:100% 50%}}.ultp-ml-auto{margin-left:auto}.ultp-dash-control-options .ultp-addons-enable,.ultp-dash-control-options .ultp-blocks-enable{width:0;height:0;display:none}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label{position:relative;background-color:var(--postx-primary-color);opacity:unset}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label>span,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label>span{display:none}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label::after,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label::after{left:calc(100% - 3px);transform:translateX(-100%)}.ultp-dash-control-options .ultp-addons-enable.disabled+.ultp-control__label,.ultp-dash-control-options .ultp-blocks-enable.disabled+.ultp-control__label{opacity:.25 !important}.ultp-dash-control-options>label{width:36px;height:18px;display:block;cursor:pointer;border-radius:100px;text-indent:-9999px;background:#d2d2d2;opacity:1;position:relative}.ultp-dash-control-options>label::after{content:\"\";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:90px;background:var(--postx-white-color);transition:.3s}.rotate{animation:rotate 1.5s linear infinite}@keyframes rotate{to{transform:rotate(360deg)}}.ultp-setting-logo{display:flex;gap:4px;align-items:center;border-right:1px solid #e2e4e9;height:100%;width:100%;max-width:152px}@media screen and (max-width: 1300px){.ultp-setting-logo{padding-right:11px}}@media screen and (max-width: 768px){.ultp-setting-logo{border-right:none}}.ultp-setting-logo .ultp-setting-header-img{height:26px}.ultp-setting-logo .ultp-setting-version{font-size:14px;border:1px solid var(--postx-primary-color);border-radius:100px;padding:7px 11px;background:#edf6ff;color:var(--postx-primary-color);line-height:18px;font-weight:500}.ultp-menu-items{display:flex;gap:24px}@media screen and (max-width: 1200px){.ultp-menu-items{margin-top:-9px}}@media screen and (max-width: 768px){.ultp-menu-items{flex-wrap:wrap;gap:16px}}.ultp-menu-item{position:relative;text-decoration:none;font-size:14px;padding:0;color:#070707;position:relative;display:flex;gap:8px;font-weight:500;align-items:center;transition:400ms;white-space:nowrap}.ultp-menu-item:hover{color:#1f66ff}.ultp-menu-item:focus{outline:none;box-shadow:none}.ultp-menu-item:after{content:\"\";position:absolute;bottom:-21px;width:100%;height:2px;background:var(--postx-primary-color);left:0;opacity:0}@media only screen and (max-width: 1250px){.ultp-menu-item:after{bottom:-9px}}.ultp-menu-item svg{width:20px;height:20px;color:#1f66ff}.ultp-menu-item.current{color:var(--postx-primary-color)}.ultp-menu-item.current:after{opacity:1}.ultp-menu-item .ultp-menu-item-tag{position:absolute;top:-14px;right:-20px;background:#fdedf0;border-radius:100px;padding:2px 6px;font-size:10px;font-weight:500;color:#dc2671;animation:ultpMenuTagColor 2s ease-in-out infinite}@keyframes ultpMenuTagColor{0%{background-color:#f8d7dd}50%{background-color:#fdedf0}100%{background-color:#f8d7dd}}.ultp-menu-items div a:active,.ultp-menu-items div a:focus{outline:none;box-shadow:none;border:none}.ultp-secondary-menu{display:flex;align-items:center;gap:8px;justify-content:space-between;padding:12px 0 12px 16px;border-left:1px solid var(--postx-border-color);height:-webkit-fill-available}@media screen and (max-width: 1300px){.ultp-secondary-menu{padding-left:0px !important;width:fit-content;border:0px !important}}@media screen and (max-width: 768px){.ultp-secondary-menu{border-left:none;padding:0}}.ultp-secondary-menu .ultp-pro-button{background-color:#edf6ff;color:#1f66ff !important;border:1px solid #1f66ff;padding:8px 20px;font-weight:500;font-size:16px;text-wrap:nowrap;display:flex;align-items:center;gap:8px}@media screen and (max-width: 768px){.ultp-secondary-menu .ultp-pro-button{padding:4px 8px}}.ultp-secondary-menu .ultp-pro-button svg{width:24px;height:24px;color:#1f66ff}.ultp-secondary-menu .ultp-pro-button:hover{background-color:#1f66ff;color:#fff !important}.ultp-secondary-menu .ultp-pro-button:hover svg{color:#fff}ul:has(.ultp-dash-faq-icon){position:relative}.ultp-dash-faq-con{height:100%;border-left:1px solid var(--postx-border-color);display:flex;align-items:center;justify-content:center;position:relative}@media screen and (max-width: 1200px){.ultp-dash-faq-con{width:fit-content;margin-left:0px !important;padding-left:2%}}@media screen and (max-width: 768px){.ultp-dash-faq-con{border-left:none;margin:0px;position:relative}}.ultp-dash-faq-icon{height:auto;width:auto;font-size:35px;cursor:pointer}.ultp-ms-container{position:relative}.ultp-ms-container .ultp-ms-results-con{min-height:30px;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:8px 14px;background-color:#fff;margin-bottom:3px;display:flex;gap:10px;justify-content:space-between}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results{display:flex;gap:8px;flex-wrap:wrap}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected{padding:4px 8px;border-radius:2px;background-color:#7c8084;color:#fff;display:inline-flex;align-items:center;gap:6px}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove{height:16px;width:14px}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove:hover svg{color:var(--postx-primary-color)}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove svg{color:#fff}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results-collapse{height:12px;width:12px;display:inline-block}.ultp-ms-container .ultp-ms-options{display:flex;flex-direction:column;gap:5px;z-index:1;position:absolute;width:100%;box-sizing:border-box;margin-top:4px;border:1px solid #eaedf2;box-shadow:0 1px 2px 0 rgba(8,68,129,.2);border-radius:4px;color:#000;padding:8px 14px;background-color:#fff;margin-bottom:3px}.ultp-ms-container .ultp-ms-options .ultp-ms-option{padding:4px 8px;border-radius:2px}.ultp-ms-container .ultp-ms-options .ultp-ms-option:hover{background-color:#7c8084;color:#fff}.ultp-field-radio .ultp-field-radio-items{display:flex;gap:20px;flex-wrap:wrap}.ultp-field-radio .ultp-field-radio-items input[type=radio]:checked::before{background-color:var(--postx-primary-color)}.ultp-sidebar-features{display:flex;flex-direction:column;gap:32px}.ultp-sidebar-card-item{border-radius:8px;padding:24px;display:flex;flex-direction:column;box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863);background-color:#fff}@media only screen and (max-width: 1250px){.ultp-sidebar-card-item{padding:16px}}.ultp-sidebar-card-item:has(.ultp-sidebar-card-title) img{margin-bottom:20px}.ultp-sidebar-card-item .ultp-sidebar-card-title{font-weight:600;font-size:18px;line-height:24px;color:#0a0d14}.ultp-sidebar-card-item .ultp-sidebar-card-description{font-size:14px;line-height:20px;color:#4a4a4a;margin-top:16px}.ultp-sidebar-card-item .ultp-primary-button,.ultp-sidebar-card-item .ultp-secondary-button,.ultp-sidebar-card-item .ultp-primary-alter-button,.ultp-sidebar-card-item .ultp-transparent-alter-button{padding:10px 24px;display:flex;align-items:center;gap:8px;margin-top:20px}.ultp-sidebar-card-item .ultp-primary-button svg,.ultp-sidebar-card-item .ultp-secondary-button svg,.ultp-sidebar-card-item .ultp-primary-alter-button svg,.ultp-sidebar-card-item .ultp-transparent-alter-button svg{width:20px;height:20px}.ultp-sidebar-card-item .ultp-sidebar-card-buttons{margin-top:24px}.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-primary-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-secondary-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-primary-alter-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-transparent-alter-button{margin-top:0}.ultp-sidebar-card-item .ultp-sidebar-card-links{display:flex;gap:16px;flex-direction:column;margin-top:24px}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link{text-decoration:none;color:#000;font-size:16px;font-weight:400;display:flex;align-items:center;gap:12px;line-height:normal}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link:hover{text-decoration:underline}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link span{display:flex}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link svg{width:24px;height:24px;color:#1f66ff}.ultp-sidebar-card-item .ultp-sidebar-card-buttons{display:flex;gap:20px;align-items:center}.ultp-setting-hellobar-wrapper a{text-decoration:none}.ultp-setting-hellobar{background:#027fff;padding:6px 0;text-align:center;color:rgba(255,255,255,.85);font-size:14px;display:flex;gap:20px;justify-content:center;align-items:center}.ultp-setting-hellobar a{margin-left:4px;font-size:14px;color:#fff}.ultp-setting-hellobar strong{color:#fff;font-weight:700}.ultp-ring{-webkit-animation:ring 4s .7s ease-in-out infinite;-moz-animation:ring 4s .7s ease-in-out infinite;animation:ring 4s .7s ease-in-out infinite;color:#fff}.helobarClose{position:absolute;cursor:pointer;right:15px}.helobarClose svg{height:18px;color:#fff}@keyframes ring{0%{transform:rotate(0)}1%{transform:rotate(30deg)}3%{transform:rotate(-28deg)}5%{transform:rotate(34deg)}7%{transform:rotate(-32deg)}9%{transform:rotate(30deg)}11%{transform:rotate(-28deg)}13%{transform:rotate(26deg)}15%{transform:rotate(-24deg)}17%{transform:rotate(22deg)}19%{transform:rotate(-20deg)}21%{transform:rotate(18deg)}23%{transform:rotate(-16deg)}25%{transform:rotate(14deg)}27%{transform:rotate(-12deg)}29%{transform:rotate(10deg)}31%{transform:rotate(-8deg)}33%{transform:rotate(6deg)}35%{transform:rotate(-4deg)}37%{transform:rotate(2deg)}39%{transform:rotate(-1deg)}41%{transform:rotate(1deg)}43%{transform:rotate(0)}100%{transform:rotate(0)}}',\"\"]);const l=i},4421:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-license{--brand-color: #037fff;--brand-color-fade: #f0f7ff;max-width:1600px;padding:32px !important;display:flex;margin:0 auto !important;gap:32px}.ultp-license__activation{background-color:#fff;padding:32px !important;box-shadow:0px 2px 4px 0px rgba(91,95,88,.078);max-width:890px;width:60%}.ultp-license__title{margin-bottom:32px !important;color:#000;font-size:24px;line-height:1.2em;font-weight:600}.ultp-license__form{margin-bottom:30px !important}.ultp-license__form input{width:100%;padding:0 8px;color:#000 !important;border-radius:4px !important;max-height:40px !important;border-color:currentColor !important}.ultp-license__helper-text{font-size:12px;color:#80837f;margin-top:8px !important}.ultp-license__renew-link{display:flex;align-items:center;gap:6px;color:#fff;background-color:#f17b2c;border-radius:6px;box-shadow:none;padding:4px 8px;cursor:pointer;text-decoration:none;margin-left:12px}.ultp-license__renew-link:hover{color:#fff}.ultp-license__link{color:var(--brand-color)}.ultp-license__status-messages{display:flex;flex-direction:column;gap:30px;margin-top:48px !important;margin-bottom:48px !important}.ultp-license__status-message{display:flex;align-items:center;font-size:14px}.ultp-license__status-message-label{text-align:left;color:#000;width:133px}.ultp-license__status-message-value{color:#000;text-align:left}.ultp-license__status-message-value::before{content:\":\";margin-right:33px !important;color:#000}.ultp-license__faq{max-width:567px;width:40%;padding-left:32px !important;border-left:1px solid #d5dad4}.ultp_license_action_btn{display:flex;gap:10px;margin-left:auto;margin-top:32px !important;text-transform:none;text-decoration:none;justify-content:center;font-size:14px;font-weight:500;border-radius:4px;background-color:var(--brand-color);width:fit-content;padding:10px 20px !important;color:#fff;cursor:pointer}.ultp-activate-loading{--loader-size: 22px;--loader-thickness: 3px;--loader-brand-color: #ffffff;width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top\u002Fvar(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:ultp-activate-loading 1s infinite linear}@keyframes ultp-activate-loading{100%{transform:rotate(1turn)}}.ultp-license-faq__item{margin-bottom:32px !important}.ultp-license-faq__question{text-align:left;color:#000;font-size:24px;font-weight:600;line-height:1.3em}.ultp-license-faq__answer{text-align:left;color:#262a25;margin-top:8px !important;font-size:14px}.ultp-license-message{display:flex;align-items:flex-start;background-color:var(--brand-color-fade);border:1px solid var(--brand-color);border-radius:8px;padding:24px !important}.ultp-license-message__icon{color:var(--brand-color);font-size:24px;margin-right:16px !important}.ultp-license-message__content{flex:1}.ultp-license-message__title{color:#0b0e04;margin-top:-8px !important;margin-bottom:8px !important}.ultp-license-message__text{text-align:left;color:#0b0e04;font-size:14px}.ultp-license-message-congrats{font-size:24px;font-weight:600}.ultp-custom-skeleton-loader{background:linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);background-size:200% 100%;animation:ultp-custom-skeleton-anim 4s infinite;display:inline-block}@keyframes ultp-custom-skeleton-anim{0%{background-position:200% 0}100%{background-position:-200% 0}}.ultp-license__upgrade-message{display:flex;gap:12px;align-items:end}.ultp-license__upgrade-message .ultp-license__upgrade-message-title{display:flex;flex-direction:column;gap:4px}.ultp-license__upgrade-message .ultp-license__upgrade-message-title select{min-height:36px;width:100%;max-width:100%}.ultp-license__upgrade-message .ultp-license__upgrade-link{color:#fff;background-color:var(--brand-color);text-decoration:none;font-weight:500;font-size:14px;padding:8px 16px;border-radius:4px}',\"\"]);const l=i},2041:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-plugins-wrapper{background-color:var(--postx-h1-fontsize)}.ultp-plugin-items{display:grid;grid-template-columns:repeat(4, 1fr);gap:32px}@media only screen and (max-width: 1200px){.ultp-plugin-items{grid-template-columns:repeat(2, 1fr)}}@media only screen and (max-width: 425px){.ultp-plugin-items{grid-template-columns:repeat(1, 1fr)}}.ultp-plugin-items .ultp-plugin-item{padding:24px;background:#fff;box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863);border-radius:8px;display:flex;gap:12px;flex-direction:column}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-title{display:flex;align-items:center;gap:16px;font-weight:600;font-size:18px;line-height:24px;color:#070707}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-title img{width:40px;height:40px}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-desc{font-weight:400;font-size:14px;line-height:20px;color:#4a4a4a}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action{display:flex;align-items:center;gap:20px}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-secondary-button{padding:10px 24px;font-weight:500}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-secondary-button:hover{background-color:#070707;color:#fff}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-transparent-alter-button{color:#070707;font-weight:500}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-activated-button{background-color:#fff;color:#1f66ff;border:1px solid #1f66ff;cursor:not-allowed}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-activated-button:hover{background-color:#fff;color:#1f66ff}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-active-btn{gap:10px}.ultp-plugin-items .ultp-plugin-item-loading{--loader-size: 18px;--loader-thickness: 3px;--loader-brand-color: var(--postx-primary-color);width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top\u002Fvar(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:ultp-install-loading 1s infinite linear}@keyframes ultp-install-loading{100%{transform:rotate(1turn)}}\",\"\"]);const l=i},6657:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultpPages li.active{color:#ee0404}.tableCon{margin-top:30px;border-radius:4px;box-shadow:0 1px 2px 0 rgba(8,68,129,.2)}.ultp-bulk-con{display:flex;justify-content:space-between;border-radius:4px 4px 0 0 !important;box-shadow:unset !important;flex-wrap:wrap;gap:20px}.ultp-bulk-con>div{display:flex;gap:15px}.ultp-bulk-con select,.ultp-bulk-con input{max-height:35px}.ultp-bulk-con .ultp-primary-button{padding:6px 15px}.ultp-bulk-con input[type=text],.ultp-bulk-con select{border:1px solid #eaedf2;padding-left:12px}.ultp-bulk-con input[type=text]:focus,.ultp-bulk-con select:focus{box-shadow:none;outline:0;border:1px solid var(--postx-primary-color)}.pageCon{display:flex;justify-content:space-between;border-radius:0 0 4px 4px;padding:22px 25px;background:#fff}.pageCon .ultpPages{display:flex;gap:12px}.pageCon .ultpPages .currentPage{background:#000;border-radius:50%;font-size:14px;color:var(--postx-white-color);height:25px;width:25px;text-align:center}.pageCon .ultpPages span:not(.currentPage){cursor:pointer;display:flex;align-items:center}.pageCon .ultpPages span:not(.currentPage) svg{height:14px;width:14px}.shortCode{cursor:copy;position:relative}.shortCode span{background:rgba(0,0,0,.7);color:#fff;border-radius:6px;position:absolute;left:calc(100% + 6px);padding:2px 6px}th.title{width:220px}th.fontType{width:65px}th.fontpreview{width:300px}.fontType{text-align:center}.actions{position:relative}.actions .dashicons{cursor:pointer}.actions .actionPopUp{position:absolute;width:130px;right:0;text-align:left;padding:10px;z-index:1}.actions .actionPopUp li{cursor:pointer;margin-bottom:8px;padding:0 6px}.actions .actionPopUp li a{display:block;text-decoration:none}.actions .actionPopUp li:hover{background:rgba(3,127,255,.04);border-radius:4px}.actions .actionPopUp li .dashicons{font-size:16px;margin-right:5px}.ultpTable{width:100%}.ultpTable table{width:100%;border-spacing:0px}.ultpTable table thead tr{background:rgba(3,127,255,.04)}.ultpTable table thead tr th{font-size:14px;border-bottom:1px solid #e7eef7;border-top:1px solid #e7eef7;padding:15px 0px;color:#091f36}.ultpTable table th:first-child,.ultpTable table td:first-child{padding-left:25px;padding-right:12px;width:55px}.ultpTable table th:last-child,.ultpTable table td:last-child{text-align:center;padding-right:25px}.ultpTable table tbody{background:#fff}.ultpTable table tbody .dashicons{vertical-align:middle}.ultpTable table tbody tr td{border-bottom:1px solid #eaedf2;padding:15px 0px;color:#575a5d;font-size:14px}.ultpTable table tbody tr td.title a{color:var(--postx-primary-color)}.ultpTable table tbody tr td.typeDate{text-transform:capitalize}@media only screen and (max-width: 1350px){.ultpTable{overflow-x:auto}.ultpTable table{width:1200px}}\",\"\"]);const l=i},2793:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-addon-lock-container{position:fixed;top:20%;z-index:999;background:#fff;padding:40px 100px;border-radius:4px;box-shadow:0 50px 99px 0 rgba(62,51,51,.5)}.ultp-addon-lock-container .ultp-popup-unlock{display:flex;flex-direction:column;align-items:center;justify-content:center;max-width:300px;width:100%;width:100%;gap:20px}.ultp-addon-lock-container .ultp-popup-unlock .title{text-align:center}.ultp-addon-lock-container .ultp-popup-unlock img{height:112px}.ultp-addon-lock-container .ultp-popup-unlock .ultp-description{text-align:center}.ultp-addon-lock-container .ultp-popup-close{position:absolute;font-size:0px;top:0;right:-10%;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff}.ultp-addon-lock-container .ultp-popup-close:hover{background:red}.ultp-addon-lock-container .ultp-popup-close:hover svg{color:#fff}.ultp-addon-lock-container-overlay{background:rgba(0,0,0,.7);position:absolute;right:0;height:100%;width:100%;z-index:999;top:0;display:flex;justify-content:center}\",\"\"]);const l=i},4558:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-settings-container.ultp-settings-container-startersites{padding-top:0;padding-left:0;padding-right:0}.ultp-settings-container.ultp-settings-container-startersites .ultp-settings-content{max-width:100%}.ultp-settings-container.ultp-settings-container-startersites .ultp-premade-grid{max-width:1376px;margin:0 auto;padding-left:30px;padding-right:30px}#ultp-starter-preview.mobileView,#ultp-starter-preview.tabletView{box-shadow:#828282 0px 0px 12px -3px;border-radius:8px 8px 0px 0px;margin-top:24px}.ultp_starter_packs_demo .wp-full-overlay-sidebar{width:300px !important}.ultp_starter_packs_demo.expanded .wp-full-overlay-footer{width:299px !important}.ultp_starter_packs_demo .wp-full-overlay-main::before{content:unset}.ultp_starter_packs_demo.wp-full-overlay.expanded{margin-left:300px !important}.ultp_starter_packs_demo.inactive.expanded{margin-left:0 !important}.ultp_starter_packs_demo.inactive.expanded .wp-full-overlay-sidebar,.ultp_starter_packs_demo.inactive.expanded .wp-full-overlay-footer{margin-left:-300px !important}.ultp_starter_packs_demo .ultp_starter_packs_demo_header{display:flex;justify-content:space-between;padding-right:12px;padding-left:12px;align-items:center;height:100%}.ultp_starter_packs_demo .ultp_starter_packs_demo_header .packs_title{font-size:14px}.ultp_starter_packs_demo .ultp-starter-packs-device-container{display:flex;gap:10px;line-height:normal;align-items:center;justify-content:center}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device{border:1px solid rgba(0,0,0,0);height:14px;padding:2px;transition:400ms}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device svg{width:15px;cursor:pointer;color:#091f36;opacity:.5}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device.d-active{border:1px solid #091f36;border-radius:2px}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device.d-active svg{opacity:1}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device:hover svg{opacity:1}.ultp_starter_packs_demo .close-full-overlay{margin-left:12px;border:none;padding:0;width:auto}.ultp_starter_packs_demo .close-full-overlay:hover{background:none;color:var(--postx-primary-color)}.ultp_starter_packs_demo .ultp_starter_preset_container{padding:20px}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp_starter_reset_container{display:flex;justify-content:space-between;margin-bottom:15px;align-items:center}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp_starter_reset_container .dashicons{font-size:16px;height:16px;cursor:pointer}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group{display:grid;grid-template-columns:1fr 1fr;gap:10px}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list{background:#fff;display:flex;padding:4px;gap:2px;align-items:center;justify-content:space-between;margin-bottom:0;cursor:pointer;border-radius:4px;border:1px solid #ededed}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list.active,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list:hover{border:1px solid #037fff}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-global-color,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-global-current-color{width:20px;height:20px;border-radius:50%;display:inline-block;box-shadow:0 0 5px 1px rgba(0,0,0,.05);border:1px solid #e5e5e5}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:25px;position:relative}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list{background:#fff;display:flex;padding:5px;cursor:pointer;border-radius:2px;border:1px solid #ededed;margin-bottom:0;width:55px;box-sizing:border-box;justify-content:center}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list.active,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list:hover{border:1px solid #037fff}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list>span{font-size:24px}.ultp_starter_packs_demo .ultp_starter_import_options{position:absolute;bottom:0;width:100%;box-sizing:border-box;padding:15px 20px;border-top:1px solid #dcdcde;background:#fff}.ultp_starter_packs_demo .ultp_starter_import_options .title{text-align:center}.ultp_starter_packs_demo .ultp_starter_import_options .option_buttons{display:flex;gap:10px;justify-content:center;margin-top:10px;margin-bottom:15px}.ultp_starter_packs_demo .ultp_starter_import_options .option_buttons a{width:100%;box-sizing:border-box;text-align:center}.ultp_starter_packs_demo .close-full-overlay{background:#fff}.ultp_starter_packs_demo .wp-full-overlay-header{background:#fff;height:60px}.ultp_starter_packs_demo .packs_title{color:#091f36;font-size:16px;font-weight:600;line-height:normal}.ultp_starter_packs_demo .packs_title span{text-transform:capitalize;display:block;color:#575a5d;font-weight:normal;margin-top:5px}.ultp_starter_packs_demo .ultp-starter-collapse{position:absolute;width:40px;height:40px;right:-20px;background:#fff;border-radius:100px;top:70px;box-shadow:inset 0 0 0 1px rgba(9,32,54,.15),0 2px 15px 6px rgba(9,32,54,.15);text-align:center;line-height:40px;cursor:pointer;transition:400ms;z-index:9999}.ultp_starter_packs_demo .ultp-starter-collapse svg{transform:rotate(90deg);width:100%;transition:400ms;color:#091f36;margin-left:-2px}.ultp_starter_packs_demo .ultp-starter-collapse:hover{transform:scale(1.1);background:#091f36}.ultp_starter_packs_demo .ultp-starter-collapse:hover svg{color:#fff}.ultp_starter_packs_demo .ultp-starter-collapse.inactive{right:-44px}.ultp_starter_packs_demo .ultp-starter-collapse.inactive svg{transform:rotate(-90deg);margin-left:2px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content{background:#f7f9ff;bottom:112px;top:60px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow{padding:25px 20px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow>.ultp_skeleton__custom_size{margin:auto}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors{margin-top:30px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors>.ultp_skeleton__custom_size{margin-bottom:20px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors .demos-color{display:grid;grid-template-columns:1fr 1fr;gap:10px}.ultp_starter_packs_demo .close-full-overlay{height:60px}.ultp_starter_packs_demo .close-full-overlay::before{font-size:32px}.ultp-stater-container-settings-overlay{background:rgba(0,0,0,.7);position:absolute;right:0;height:100vh;width:100vw;z-index:999999999999;top:-32px;display:flex;justify-content:center}.ultp-stater-settings-container{position:fixed;top:6%;z-index:999;background:#fff;border-radius:4px;box-shadow:0 50px 99px 0 rgba(62,51,51,.5);display:flex}.ultp-stater-settings-container>div:first-child{flex:1;max-height:auto;width:600px}.ultp-stater-settings-container .ultp-info{margin-bottom:15px;color:#575a5d}.ultp-stater-settings-container .ultp-info.ultp-info-desc{font-size:16px}.ultp-stater-settings-container .ultp-stater-settings-header{color:#091f36;font-size:16px;font-weight:400;position:absolute;box-sizing:border-box;width:100%;top:0;padding:12px 30px;border-bottom:1px solid #eaedf2}.ultp-stater-settings-container .stater_title{color:#091f36;margin-bottom:15px;font-size:16px;font-weight:600}.ultp-stater-settings-container .ultp-popup-stater{padding:40px 40px 20px;max-height:calc(75vh - 20px);overflow:auto}.ultp-stater-settings-container .ultp-popup-stater .input_container{margin-bottom:15px}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]{margin-right:8px;width:22px;height:20px}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]:checked{background:#092036}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]:checked::before{left:6px;top:9px;font-size:13px;transform:rotate(6deg)}.ultp-stater-settings-container .starter_page_impports{margin-top:25px;margin-bottom:20px}.ultp-stater-settings-container .starter_page_impports .cursor{font-size:14px;margin-top:15px;transition:400ms;color:#091f36;opacity:.7}.ultp-stater-settings-container .starter_page_impports .cursor:hover{opacity:1}.ultp-stater-settings-container .starter_page_impports .cursor svg{height:10px;width:10px;margin-left:4px}.ultp-stater-settings-container .starter_import{padding-left:40px;padding-right:40px;padding-bottom:40px;text-align:center}.ultp-stater-settings-container .starter_import .ultp-primary-button{width:100%;box-sizing:border-box;justify-content:center}.ultp-stater-settings-container .ultp-popup-close{position:absolute;font-size:0px;top:0;right:-10%;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff}.ultp-stater-settings-container .ultp-popup-close:hover{background:red}.ultp-stater-settings-container .ultp-popup-close:hover svg{color:#fff}.ultp-stater-settings-container .ultp-popup-close.s_loading{cursor:no-drop}.ultp-stater-settings-container .input_container .email_box{width:100%;box-sizing:border-box;margin:8px 0;border:1px solid #dcdcde;border-radius:2px;padding:5px 15px}.ultp-stater-settings-container .input_container .get_newsletter{background:#888}.ultp-stater-settings-container .ultp_successful_import .stater_title{font-size:20px}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders{margin:20px 0;max-width:80%;font-size:16px}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders a{color:var(--postx-primary-color);text-decoration:underline}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders a:hover{color:var(--postx-primary-hover-color)}.ultp-stater-settings-container .ultp_successful_import .ultp-primary-button{margin-bottom:20px}.ultp-stater-settings-container .ultp_processing_import .stater_title{font-size:20px}.ultp-stater-settings-container .ultp_processing_import .progress{font-size:16px;margin-top:12px}.ultp-stater-settings-container .ultp_processing_import .ultp_import_notice{margin-top:10px;margin-bottom:20px;color:var(--postx-warning-button-color)}.ultp-stater-settings-container .ultp_processing_import .ultp_import_notice>span{font-size:14px;font-weight:500}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show{margin-top:20px;margin-bottom:0;text-align:center}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show .ultp-importer-loader{width:100%;height:20px;background-color:#f0f0f0;position:relative;border-radius:4px;overflow:hidden}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show #ultp-importer-loader-bar{width:0;height:100%;background-color:var(--postx-primary-color);position:absolute;transition:width .5s}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show #ultp-importer-loader-percentage{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show .ultp_processing_loader{border-radius:4px;width:80%;height:12px;display:inline-block;background-color:#f7f9ff;background-image:linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%, transparent 50%, rgba(3, 127, 255, 0.75) 50%, rgba(3, 127, 255, 0.75) 75%, transparent 75%, transparent);font-size:30px;background-size:1em 1em;box-sizing:border-box;animation:ultp_processing_loader .5s linear infinite}@keyframes ultp_processing_loader{0%{background-position:0 0}100%{background-position:1em 0}}.ultp_starter_dark_container{display:flex;gap:5px;align-items:center;margin-bottom:25px;margin-top:15px;font-size:16px}.ultp_starter_dark_container .ultp_starter_dark_enable{display:none;height:0;width:0;border-radius:2px;border:solid 1px #eaedf2;background:#fff;position:relative;margin:0;box-shadow:none}.ultp_starter_dark_container .ultp_starter_dark_enable:checked+label{opacity:unset}.ultp_starter_dark_container .ultp_starter_dark_enable:checked+label::after{left:calc(100% - 3px);transform:translateX(-100%)}.ultp_starter_dark_container>label{color:#037fff;width:36px;height:18px;display:block;cursor:pointer;border-radius:100px;text-indent:-9999px;background:var(--postx-primary-color);opacity:.4;position:relative;margin:0 8px}.ultp_starter_dark_container>label::after{content:\"\";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:90px;background:#fff;transition:.3s}.ultp_starter_dark_container{justify-content:center}.ultp_starter_dark_container .ultp-dl-container{cursor:pointer;display:flex;background:#fff;gap:10px;align-items:center;border-radius:100px;width:140px;height:40px;box-shadow:0px 0px 0 2px rgba(9,32,54,.2),2px 4px 15px 5px rgba(9,32,54,.1)}.ultp_starter_dark_container .ultp-dl-container svg{height:20px;width:20px}.ultp_starter_dark_container .ultp-dl-container .ultp-dl-svg-con{transform:translateX(4px)}.ultp_starter_dark_container .ultp-dl-container .ultp-dl-svg-con.dark svg{color:#fff}.ultp_starter_dark_container .ultp-dl-svg{display:flex;background:#091f36;padding:6px;border-radius:50%}.ultp_starter_dark_container .ultp-dl-svg svg{fill:#ffc107}.iframe_loader{height:100%;width:100%;background-color:#fff;overflow-y:scroll}.iframe_loader .iframe_container{width:calc(100% - 80px);height:100%;display:flex;flex-direction:column;gap:40px;padding:60px 40px}.iframe_loader .iframe_header_top{display:flex;justify-content:space-between;gap:40px;align-items:center}.iframe_loader .header_top_right{display:flex;justify-content:space-between;align-items:center;gap:20px}.iframe_loader .iframe_body{height:100%;display:flex;flex-wrap:wrap;gap:24px;margin-top:20px}.iframe_loader .iframe_body_slider{margin-bottom:60px}.iframe_loader .iframe_body_left{flex-basis:calc(60% - 12px);border-radius:4px;display:flex;flex-direction:column;gap:20px}.iframe_loader .iframe_body_right{flex-basis:calc(40% - 12px);border-radius:4px;display:flex;flex-direction:column;gap:20px}.ultp-starter-button{cursor:pointer;padding:12px 25px;color:#fff !important;font-size:14px;background:linear-gradient(180deg, #399aff, transparent) #004fd0;border-radius:4px;text-decoration:none;display:inline-block;width:fit-content;border:none;transition:background-color 400ms}.ultp-starter-button:hover{background-color:var(--postx-primary-color)}',\"\"]);const l=i},6922:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,':root{--xpo-support-color-primary: #335cff;--xpo-support-color-secondary: #4263eb;--xpo-support-color-base-one: #ffffff;--xpo-support-color-base-two: #e1e7ff;--xpo-support-color-base-three: #e0e0e0;--xpo-support-color-green: #09fd09;--xpo-support-color-red: #fb3748;--xpo-support-color-dark: #070707;--xpo-support-color-reverse: #ffffff;--xpo-support-color-title: #0e121b;--xpo-support-color-border-primary: #e1e4ea;--xpo-support-color-shadow: rgba(0, 0, 0, 0.1)}.xpo-support-pops-btn{position:fixed;bottom:34px;right:20px;background-color:var(--xpo-support-color-primary);border-radius:50%;width:56px;height:56px;display:flex;justify-content:center;align-items:center;box-shadow:0 4px 15px var(--xpo-support-color-shadow);cursor:pointer;z-index:9999;transition-property:all;transition-duration:.2s}.xpo-support-pops-btn--small{scale:.8;bottom:0px;right:0px;transition-property:all;transition-duration:.2s}.xpo-support-pops-btn--small:hover:after{content:\"\";position:absolute;inset:-20px;z-index:-10}.xpo-support-pops-btn--small:hover{scale:1;bottom:34px;right:20px}.xpo-support-pops-btn--big{scale:1 !important;bottom:34px !important;right:20px !important}.xpo-support-pops-container--full-height{max-height:551px;height:calc(100vh - 150px);overflow:auto !important}.xpo-support-pops-container{position:fixed;bottom:90px;right:20px;background-color:var(--xpo-support-color-base-one);border-radius:8px;box-shadow:0 4px 15px var(--xpo-support-color-shadow);overflow:hidden;width:400px;max-width:calc(100% - 40px);z-index:9999;margin-bottom:8px}.xpo-support-pops-header{background-color:var(--xpo-support-color-primary);color:var(--xpo-support-color-reverse);text-align:center;padding:24px 24px 0;position:relative;overflow:hidden;z-index:0}.xpo-support-header-bg{position:absolute;inset:0;z-index:-1;opacity:.2;background:radial-gradient(circle, var(--xpo-support-color-secondary) 4px, transparent 5px),radial-gradient(circle, var(--xpo-support-color-reverse) 5px, transparent 5px);background-repeat:repeat;background-size:20px 20px,20px 20px}.xpo-support-pops-avatars{width:fit-content;margin:0 auto;position:relative}.xpo-support-pops-avatars img{display:inline-block;justify-content:center;align-items:center;margin-bottom:15px;width:60px;height:60px;border-radius:50%;margin-left:-20px;border:2px solid var(--xpo-support-color-primary);margin-bottom:5px}.xpo-support-signal{width:10px;height:10px;border-radius:50%;display:inline-block;margin-left:5px;border:2px solid var(--xpo-support-color-base-one);position:absolute;bottom:14px;right:6px}.xpo-support-signal-green{background-color:var(--xpo-support-color-green)}.xpo-support-signal-red{background-color:var(--xpo-support-color-red)}.xpo-support-pops-text{font-weight:600;font-size:14px;padding-bottom:24px}.xpo-support-chat-body{padding:20px}.xpo-support-title{font-size:14px;font-weight:500;line-height:20px;letter-spacing:-0.08px;color:var(--xpo-support-color-title);margin-bottom:4px}input.xpo-input-support,textarea.xpo-input-support{width:100%;padding:12px;border:1px solid var(--xpo-support-color-border-primary);border-radius:4px;font-size:16px;outline:none;margin-bottom:16px}input[type=email].xpo-input-support{max-height:48px}textarea.xpo-input-support{min-height:150px;resize:none}.xpo-send-button{background-color:var(--xpo-support-color-primary);color:var(--xpo-support-color-reverse);width:100%;padding:15px;border:none;border-radius:4px;font-size:16px;font-weight:500;cursor:pointer;display:flex;justify-content:center;align-items:center;gap:10px}.xpo-support-animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px !important;color:var(--xpo-support-color-base-one);stroke-miterlimit:10;box-shadow:inset 0 0 0 var(--xpo-support-color-base-two);animation:fill-message .4s ease-in-out .4s forwards,scale-message .3s ease-in-out .9s both;margin-right:10px !important}@keyframes scale-message{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fill-message{100%{box-shadow:inset 0px 0px 0px 30px var(--xpo-support-color-base-two)}}.xpo-support-circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:var(--xpo-support-color-base-two);fill:none;animation:stroke-message .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.xpo-support-check{stroke-width:2;color:var(--xpo-support-color-primary)}@keyframes stroke-message{100%{stroke-dashoffset:0}}.xpo-support-thankyou-icon{line-height:0;margin:0 auto;width:fit-content}.xpo-support-thankyou-title{margin:24px auto 12px;font-size:24px;font-weight:600;line-height:32px;letter-spacing:-0.36px;color:var(--xpo-support-color-dark);text-align:center}.xpo-support-thankyou-subtitle{font-size:14px;line-height:20px;font-weight:400;letter-spacing:-0.18px;text-align:center}.xpo-support-entry-anim{animation:xpo-support-entry-anim 200ms ease 0s 1 normal forwards}@keyframes xpo-support-entry-anim{0%{opacity:0;transform:translateY(50px)}100%{opacity:1;transform:translateY(0)}}.xpo-support-loading{--loader-size: 21px;--loader-thickness: 3px;--loader-brand-color: var(--xpo-support-color-reverse);width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top\u002Fvar(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:xpo-support-loading-anim 1s infinite linear}@keyframes xpo-support-loading-anim{100%{transform:rotate(1turn)}}#xpo-support-file-input{width:100%;max-width:100%;color:#444;padding:4px;background:#fff;border:1px solid var(--xpo-support-color-border-primary);border-radius:4px;font-size:14px;min-height:unset}#xpo-support-file-input::file-selector-button{margin-right:20px;border:none;background:var(--xpo-support-color-primary);padding:5px 10px;font-size:16px;border-radius:4px;color:var(--xpo-support-color-reverse);cursor:pointer;transition:background .2s ease-in-out}#xpo-support-file-input::file-selector-button:hover{background:var(--xpo-support-color-secondary)}',\"\"]);const l=i},439:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".toastMessages{display:flex;flex-direction:column;gap:10px;padding:10px;position:fixed;right:400px;z-index:1001;top:70px}.toast{position:absolute}.toaster{position:fixed;visibility:hidden;width:345px;background-color:#fefefe;height:76px;border-radius:4px;box-shadow:0px 0px 4px #9f9f9f;display:flex;align-items:center}.toaster span{display:block}.toaster .itmCenter{font-size:14px}.toaster .itmLast{padding:0 15px;margin-left:auto;height:100%;display:flex;align-items:center;border-left:1px solid #f2f2f2}.toaster .itmLast:hover{cursor:pointer;background-color:#f2f2f2}.toaster.show{visibility:visible;-webkit-animation:fadeinmessage .7s;animation:fadeinmessage .7s}@keyframes fadeinmessage{from{right:0;opacity:0}to{right:65px;opacity:1}}.circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:#7ac142;fill:none;animation:strokemessage .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px;color:#fff;stroke-miterlimit:10;box-shadow:inset 0px 0px 0px #7ac142;animation:fillmessage .4s ease-in-out .4s forwards,scalemessage .3s ease-in-out .9s both;margin-right:10px}.check{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;animation:strokemessage .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards}.cross{color:red;fill:red}@keyframes strokemessage{100%{stroke-dashoffset:0}}@keyframes scalemessage{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fillmessage{100%{box-shadow:inset 0px 0px 0px 30px #7ac142}}\",\"\"]);const l=i},9839:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-dashboard-modal-wrapper{position:fixed;left:0;top:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;z-index:999999;background:rgba(0,0,0,.35)}.ultp-dashboard-modal-wrapper .ultp-dashboard-modal{width:fit-content;background:#fff;max-width:90%;max-height:80%;overflow:hidden}.ultp-dashboard-modal-wrapper .ultp-modal-header{display:flex;align-items:center;height:40px;padding:0 20px 0;background:#e3f1ff;position:relative}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-modal-title{font-size:1.2rem;font-weight:600;color:#091f36}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close{position:absolute;top:-3px;right:0;color:var(--postx-white-color);font-size:25px;cursor:pointer;border:none;padding:0px 9px 3px;background-color:var(--postx-dark-color);z-index:99}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close::after{content:\"×\"}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close:hover{background:red}.ultp-dashboard-modal-wrapper .ultp-modal-body{padding:20px}.ultp-dashboard-modal-wrapper .ultp-modal-body iframe{max-width:100%;max-height:100%}',\"\"]);const l=i},1211:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp_skeleton__image{height:300px;width:300px;border-radius:4px}.ultp_skeleton__circle{height:300px;width:300px;border-radius:50%}.ultp_skeleton__title{height:20px;width:100%;border-radius:4px}.ultp_skeleton__button{height:40px;width:90px;border-radius:4px}.ultp_frequency{position:relative;background-color:#e2e2e2;overflow:hidden}.ultp_frequency.loop{margin-bottom:10px}.ultp_frequency.loop:last-child{margin-bottom:0}.ultp_frequency::after{display:block;content:\"\";position:absolute;width:100%;height:100%;transform:translateX(-100%);background:-webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));background:linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);animation:loadings .8s infinite}.skeletonOverflow{overflow:hidden}@keyframes loadings{100%{transform:translateX(100%)}}',\"\"]);const l=i},1589:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-tooltip-wrapper{display:inline-block;position:relative;width:inherit;height:inherit}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip{position:unset}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip .tooltip-content{width:fit-content;bottom:unset;left:90px;top:-36px !important}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip .tooltip-content::before{content:unset}.tooltip-content{top:unset !important;background:#000;color:#fff;font-size:12px;line-height:1.4;z-index:100;white-space:pre-wrap;width:250px;position:absolute;bottom:25px;transform:translateX(-46%);padding:8px 12px;border-radius:4px;white-space:pre-wrap}.tooltip-content::before{content:\" \";left:50%;border:solid rgba(0,0,0,0);height:0;width:0;position:absolute;pointer-events:none;border-width:6px;margin-left:-6px}.tooltip-content.top::before{top:100%;border-top-color:#000}.tooltip-content.right{left:calc(100% + 30px);top:50%;transform:translateX(0) translateY(-50%)}.tooltip-content.right::before{left:-6px;top:50%;transform:translateX(0) translateY(-50%);border-right-color:#000}.tooltip-content.bottom{bottom:-30px}.tooltip-content.bottom::before{bottom:100%;border-bottom-color:#000}.tooltip-content.left{left:auto;right:calc(100% + 30px);top:50%;transform:translateX(0) translateY(-50%)}.tooltip-content.left::before{left:auto;right:-12px;top:50%;transform:translateX(0) translateY(-50%);border-left-color:#000}.tooltip-icon{width:inherit;height:inherit;font-size:28px}',\"\"]);const l=i},1729:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-design-search-wrapper{margin-bottom:20px;width:fit-content;margin-left:auto;margin-right:auto}@media only screen and (max-width: 1250px){.ultp-design-search-wrapper{display:none}}.ultp-design-search-wrapper .ultp-design-search-input{color:#575a5d;padding:8px 15px;min-width:250px;height:36px;font-size:14px;border-radius:2px;border:solid 1px #eaedf2;background-color:#fff}.ultp-design-search-wrapper .ultp-design-search-input:focus{border:1px solid var(--postx-primary-color);box-shadow:unset}@media only screen and (max-width: 1350px){.ultp-design-search-wrapper .ultp-design-search-input{min-width:220px}}\",\"\"]);const l=i},3645:e=>{\"use strict\";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=\"\",a=void 0!==t[5];return t[4]&&(n+=\"@supports (\".concat(t[4],\") {\")),t[2]&&(n+=\"@media \".concat(t[2],\" {\")),a&&(n+=\"@layer\".concat(t[5].length>0?\" \".concat(t[5]):\"\",\" {\")),n+=e(t),a&&(n+=\"}\"),t[2]&&(n+=\"}\"),t[4]&&(n+=\"}\"),n})).join(\"\")},t.i=function(e,n,a,r,o){\"string\"==typeof e&&(e=[[null,e,void 0]]);var i={};if(a)for(var l=0;l\u003Cthis.length;l++){var s=this[l][0];null!=s&&(i[s]=!0)}for(var p=0;p\u003Ce.length;p++){var c=[].concat(e[p]);a&&i[c[0]]||(void 0!==o&&(void 0===c[5]||(c[1]=\"@layer\".concat(c[5].length>0?\" \".concat(c[5]):\"\",\" {\").concat(c[1],\"}\")),c[5]=o),n&&(c[2]?(c[1]=\"@media \".concat(c[2],\" {\").concat(c[1],\"}\"),c[2]=n):c[2]=n),r&&(c[4]?(c[1]=\"@supports (\".concat(c[4],\") {\").concat(c[1],\"}\"),c[4]=r):c[4]=\"\".concat(r)),t.push(c))}},t}},1667:e=>{\"use strict\";e.exports=function(e,t){return t||(t={}),e?(e=String(e.__esModule?e.default:e),\u002F^['\"].*['\"]$\u002F.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),\u002F[\"'() \\t\\n]|(%20)\u002F.test(e)||t.needQuotes?'\"'.concat(e.replace(\u002F\"\u002Fg,'\\\\\"').replace(\u002F\\n\u002Fg,\"\\\\n\"),'\"'):e):e}},8081:e=>{\"use strict\";e.exports=function(e){return e[1]}},7418:e=>{\"use strict\";var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String(\"abc\");if(e[5]=\"de\",\"5\"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n\u003C10;n++)t[\"_\"+String.fromCharCode(n)]=n;if(\"0123456789\"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(\"\"))return!1;var a={};return\"abcdefghijklmnopqrst\".split(\"\").forEach((function(e){a[e]=e})),\"abcdefghijklmnopqrst\"===Object.keys(Object.assign({},a)).join(\"\")}catch(e){return!1}}()?Object.assign:function(e,r){for(var o,i,l=function(e){if(null==e)throw new TypeError(\"Object.assign cannot be called with null or undefined\");return Object(e)}(e),s=1;s\u003Carguments.length;s++){for(var p in o=Object(arguments[s]))n.call(o,p)&&(l[p]=o[p]);if(t){i=t(o);for(var c=0;c\u003Ci.length;c++)a.call(o,i[c])&&(l[i[c]]=o[i[c]])}}return l}},4448:(e,t,n)=>{\"use strict\";var a=n(7294),r=n(7418),o=n(3840);function i(e){for(var t=\"https:\u002F\u002Freactjs.org\u002Fdocs\u002Ferror-decoder.html?invariant=\"+e,n=1;n\u003Carguments.length;n++)t+=\"&args[]=\"+encodeURIComponent(arguments[n]);return\"Minified React error #\"+e+\"; visit \"+t+\" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\"}if(!a)throw Error(i(227));var l=new Set,s={};function p(e,t){c(e,t),c(e+\"Capture\",t)}function c(e,t){for(s[e]=t,e=0;e\u003Ct.length;e++)l.add(t[e])}var d=!(\"undefined\"==typeof window||void 0===window.document||void 0===window.document.createElement),u=\u002F^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$\u002F,m=Object.prototype.hasOwnProperty,f={},h={};function g(e,t,n,a,r,o,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=a,this.attributeNamespace=r,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}var v={};\"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style\".split(\" \").forEach((function(e){v[e]=new g(e,0,!1,e,null,!1,!1)})),[[\"acceptCharset\",\"accept-charset\"],[\"className\",\"class\"],[\"htmlFor\",\"for\"],[\"httpEquiv\",\"http-equiv\"]].forEach((function(e){var t=e[0];v[t]=new g(t,1,!1,e[1],null,!1,!1)})),[\"contentEditable\",\"draggable\",\"spellCheck\",\"value\"].forEach((function(e){v[e]=new g(e,2,!1,e.toLowerCase(),null,!1,!1)})),[\"autoReverse\",\"externalResourcesRequired\",\"focusable\",\"preserveAlpha\"].forEach((function(e){v[e]=new g(e,2,!1,e,null,!1,!1)})),\"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope\".split(\" \").forEach((function(e){v[e]=new g(e,3,!1,e.toLowerCase(),null,!1,!1)})),[\"checked\",\"multiple\",\"muted\",\"selected\"].forEach((function(e){v[e]=new g(e,3,!0,e,null,!1,!1)})),[\"capture\",\"download\"].forEach((function(e){v[e]=new g(e,4,!1,e,null,!1,!1)})),[\"cols\",\"rows\",\"size\",\"span\"].forEach((function(e){v[e]=new g(e,6,!1,e,null,!1,!1)})),[\"rowSpan\",\"start\"].forEach((function(e){v[e]=new g(e,5,!1,e.toLowerCase(),null,!1,!1)}));var _=\u002F[\\-:]([a-z])\u002Fg;function w(e){return e[1].toUpperCase()}function b(e,t,n,a){var r=v.hasOwnProperty(t)?v[t]:null;(null!==r?0===r.type:!a&&2\u003Ct.length&&(\"o\"===t[0]||\"O\"===t[0])&&(\"n\"===t[1]||\"N\"===t[1]))||(function(e,t,n,a){if(null==t||function(e,t,n,a){if(null!==n&&0===n.type)return!1;switch(typeof t){case\"function\":case\"symbol\":return!0;case\"boolean\":return!a&&(null!==n?!n.acceptsBooleans:\"data-\"!==(e=e.toLowerCase().slice(0,5))&&\"aria-\"!==e);default:return!1}}(e,t,n,a))return!0;if(a)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,n,r,a)&&(n=null),a||null===r?function(e){return!!m.call(h,e)||!m.call(f,e)&&(u.test(e)?h[e]=!0:(f[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,\"\"+n)):r.mustUseProperty?e[r.propertyName]=null===n?3!==r.type&&\"\":n:(t=r.attributeName,a=r.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(r=r.type)||4===r&&!0===n?\"\":\"\"+n,a?e.setAttributeNS(a,t,n):e.setAttribute(t,n))))}\"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height\".split(\" \").forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,null,!1,!1)})),\"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type\".split(\" \").forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxlink\",!1,!1)})),[\"xml:base\",\"xml:lang\",\"xml:space\"].forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,\"http:\u002F\u002Fwww.w3.org\u002FXML\u002F1998\u002Fnamespace\",!1,!1)})),[\"tabIndex\",\"crossOrigin\"].forEach((function(e){v[e]=new g(e,1,!1,e.toLowerCase(),null,!1,!1)})),v.xlinkHref=new g(\"xlinkHref\",1,!1,\"xlink:href\",\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxlink\",!0,!1),[\"src\",\"href\",\"action\",\"formAction\"].forEach((function(e){v[e]=new g(e,1,!1,e.toLowerCase(),null,!0,!0)}));var x=a.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,y=60103,k=60106,E=60107,C=60108,S=60114,M=60109,L=60110,N=60112,Z=60113,P=60120,z=60115,A=60116,B=60121,H=60128,T=60129,R=60130,O=60131;if(\"function\"==typeof Symbol&&Symbol.for){var j=Symbol.for;y=j(\"react.element\"),k=j(\"react.portal\"),E=j(\"react.fragment\"),C=j(\"react.strict_mode\"),S=j(\"react.profiler\"),M=j(\"react.provider\"),L=j(\"react.context\"),N=j(\"react.forward_ref\"),Z=j(\"react.suspense\"),P=j(\"react.suspense_list\"),z=j(\"react.memo\"),A=j(\"react.lazy\"),B=j(\"react.block\"),j(\"react.scope\"),H=j(\"react.opaque.id\"),T=j(\"react.debug_trace_mode\"),R=j(\"react.offscreen\"),O=j(\"react.legacy_hidden\")}var V,F=\"function\"==typeof Symbol&&Symbol.iterator;function W(e){return null===e||\"object\"!=typeof e?null:\"function\"==typeof(e=F&&e[F]||e[\"@@iterator\"])?e:null}function D(e){if(void 0===V)try{throw Error()}catch(e){var t=e.stack.trim().match(\u002F\\n( *(at )?)\u002F);V=t&&t[1]||\"\"}return\"\\n\"+V+e}var I=!1;function U(e,t){if(!e||I)return\"\";I=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,\"props\",{set:function(){throw Error()}}),\"object\"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(e){var a=e}Reflect.construct(e,[],t)}else{try{t.call()}catch(e){a=e}e.call(t.prototype)}else{try{throw Error()}catch(e){a=e}e()}}catch(e){if(e&&a&&\"string\"==typeof e.stack){for(var r=e.stack.split(\"\\n\"),o=a.stack.split(\"\\n\"),i=r.length-1,l=o.length-1;1\u003C=i&&0\u003C=l&&r[i]!==o[l];)l--;for(;1\u003C=i&&0\u003C=l;i--,l--)if(r[i]!==o[l]){if(1!==i||1!==l)do{if(i--,0>--l||r[i]!==o[l])return\"\\n\"+r[i].replace(\" at new \",\" at \")}while(1\u003C=i&&0\u003C=l);break}}}finally{I=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:\"\")?D(e):\"\"}function $(e){switch(e.tag){case 5:return D(e.type);case 16:return D(\"Lazy\");case 13:return D(\"Suspense\");case 19:return D(\"SuspenseList\");case 0:case 2:case 15:return U(e.type,!1);case 11:return U(e.type.render,!1);case 22:return U(e.type._render,!1);case 1:return U(e.type,!0);default:return\"\"}}function G(e){if(null==e)return null;if(\"function\"==typeof e)return e.displayName||e.name||null;if(\"string\"==typeof e)return e;switch(e){case E:return\"Fragment\";case k:return\"Portal\";case S:return\"Profiler\";case C:return\"StrictMode\";case Z:return\"Suspense\";case P:return\"SuspenseList\"}if(\"object\"==typeof e)switch(e.$$typeof){case L:return(e.displayName||\"Context\")+\".Consumer\";case M:return(e._context.displayName||\"Context\")+\".Provider\";case N:var t=e.render;return t=t.displayName||t.name||\"\",e.displayName||(\"\"!==t?\"ForwardRef(\"+t+\")\":\"ForwardRef\");case z:return G(e.type);case B:return G(e._render);case A:t=e._payload,e=e._init;try{return G(e(t))}catch(e){}}return null}function q(e){switch(typeof e){case\"boolean\":case\"number\":case\"object\":case\"string\":case\"undefined\":return e;default:return\"\"}}function K(e){var t=e.type;return(e=e.nodeName)&&\"input\"===e.toLowerCase()&&(\"checkbox\"===t||\"radio\"===t)}function X(e){e._valueTracker||(e._valueTracker=function(e){var t=K(e)?\"checked\":\"value\",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),a=\"\"+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&\"function\"==typeof n.get&&\"function\"==typeof n.set){var r=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return r.call(this)},set:function(e){a=\"\"+e,o.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return a},setValue:function(e){a=\"\"+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function Q(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),a=\"\";return e&&(a=K(e)?e.checked?\"true\":\"false\":e.value),(e=a)!==n&&(t.setValue(e),!0)}function J(e){if(void 0===(e=e||(\"undefined\"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function Y(e,t){var n=t.checked;return r({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function ee(e,t){var n=null==t.defaultValue?\"\":t.defaultValue,a=null!=t.checked?t.checked:t.defaultChecked;n=q(null!=t.value?t.value:n),e._wrapperState={initialChecked:a,initialValue:n,controlled:\"checkbox\"===t.type||\"radio\"===t.type?null!=t.checked:null!=t.value}}function te(e,t){null!=(t=t.checked)&&b(e,\"checked\",t,!1)}function ne(e,t){te(e,t);var n=q(t.value),a=t.type;if(null!=n)\"number\"===a?(0===n&&\"\"===e.value||e.value!=n)&&(e.value=\"\"+n):e.value!==\"\"+n&&(e.value=\"\"+n);else if(\"submit\"===a||\"reset\"===a)return void e.removeAttribute(\"value\");t.hasOwnProperty(\"value\")?re(e,t.type,n):t.hasOwnProperty(\"defaultValue\")&&re(e,t.type,q(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function ae(e,t,n){if(t.hasOwnProperty(\"value\")||t.hasOwnProperty(\"defaultValue\")){var a=t.type;if(!(\"submit\"!==a&&\"reset\"!==a||void 0!==t.value&&null!==t.value))return;t=\"\"+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}\"\"!==(n=e.name)&&(e.name=\"\"),e.defaultChecked=!!e._wrapperState.initialChecked,\"\"!==n&&(e.name=n)}function re(e,t,n){\"number\"===t&&J(e.ownerDocument)===e||(null==n?e.defaultValue=\"\"+e._wrapperState.initialValue:e.defaultValue!==\"\"+n&&(e.defaultValue=\"\"+n))}function oe(e,t){return e=r({children:void 0},t),(t=function(e){var t=\"\";return a.Children.forEach(e,(function(e){null!=e&&(t+=e)})),t}(t.children))&&(e.children=t),e}function ie(e,t,n,a){if(e=e.options,t){t={};for(var r=0;r\u003Cn.length;r++)t[\"$\"+n[r]]=!0;for(n=0;n\u003Ce.length;n++)r=t.hasOwnProperty(\"$\"+e[n].value),e[n].selected!==r&&(e[n].selected=r),r&&a&&(e[n].defaultSelected=!0)}else{for(n=\"\"+q(n),t=null,r=0;r\u003Ce.length;r++){if(e[r].value===n)return e[r].selected=!0,void(a&&(e[r].defaultSelected=!0));null!==t||e[r].disabled||(t=e[r])}null!==t&&(t.selected=!0)}}function le(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(i(91));return r({},t,{value:void 0,defaultValue:void 0,children:\"\"+e._wrapperState.initialValue})}function se(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(i(92));if(Array.isArray(n)){if(!(1>=n.length))throw Error(i(93));n=n[0]}t=n}null==t&&(t=\"\"),n=t}e._wrapperState={initialValue:q(n)}}function pe(e,t){var n=q(t.value),a=q(t.defaultValue);null!=n&&((n=\"\"+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=a&&(e.defaultValue=\"\"+a)}function ce(e){var t=e.textContent;t===e._wrapperState.initialValue&&\"\"!==t&&null!==t&&(e.value=t)}var de={html:\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxhtml\",mathml:\"http:\u002F\u002Fwww.w3.org\u002F1998\u002FMath\u002FMathML\",svg:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"};function ue(e){switch(e){case\"svg\":return\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\";case\"math\":return\"http:\u002F\u002Fwww.w3.org\u002F1998\u002FMath\u002FMathML\";default:return\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxhtml\"}}function me(e,t){return null==e||\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxhtml\"===e?ue(t):\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"===e&&\"foreignObject\"===t?\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxhtml\":e}var fe,he,ge=(he=function(e,t){if(e.namespaceURI!==de.svg||\"innerHTML\"in e)e.innerHTML=t;else{for((fe=fe||document.createElement(\"div\")).innerHTML=\"\u003Csvg>\"+t.valueOf().toString()+\"\u003C\u002Fsvg>\",t=fe.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},\"undefined\"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,t,n,a){MSApp.execUnsafeLocalFunction((function(){return he(e,t)}))}:he);function ve(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}var _e={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},we=[\"Webkit\",\"ms\",\"Moz\",\"O\"];function be(e,t,n){return null==t||\"boolean\"==typeof t||\"\"===t?\"\":n||\"number\"!=typeof t||0===t||_e.hasOwnProperty(e)&&_e[e]?(\"\"+t).trim():t+\"px\"}function xe(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var a=0===n.indexOf(\"--\"),r=be(n,t[n],a);\"float\"===n&&(n=\"cssFloat\"),a?e.setProperty(n,r):e[n]=r}}Object.keys(_e).forEach((function(e){we.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),_e[t]=_e[e]}))}));var ye=r({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ke(e,t){if(t){if(ye[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(i(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(i(60));if(\"object\"!=typeof t.dangerouslySetInnerHTML||!(\"__html\"in t.dangerouslySetInnerHTML))throw Error(i(61))}if(null!=t.style&&\"object\"!=typeof t.style)throw Error(i(62))}}function Ee(e,t){if(-1===e.indexOf(\"-\"))return\"string\"==typeof t.is;switch(e){case\"annotation-xml\":case\"color-profile\":case\"font-face\":case\"font-face-src\":case\"font-face-uri\":case\"font-face-format\":case\"font-face-name\":case\"missing-glyph\":return!1;default:return!0}}function Ce(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var Se=null,Me=null,Le=null;function Ne(e){if(e=ar(e)){if(\"function\"!=typeof Se)throw Error(i(280));var t=e.stateNode;t&&(t=or(t),Se(e.stateNode,e.type,t))}}function Ze(e){Me?Le?Le.push(e):Le=[e]:Me=e}function Pe(){if(Me){var e=Me,t=Le;if(Le=Me=null,Ne(e),t)for(e=0;e\u003Ct.length;e++)Ne(t[e])}}function ze(e,t){return e(t)}function Ae(e,t,n,a,r){return e(t,n,a,r)}function Be(){}var He=ze,Te=!1,Re=!1;function Oe(){null===Me&&null===Le||(Be(),Pe())}function je(e,t){var n=e.stateNode;if(null===n)return null;var a=or(n);if(null===a)return null;n=a[t];e:switch(t){case\"onClick\":case\"onClickCapture\":case\"onDoubleClick\":case\"onDoubleClickCapture\":case\"onMouseDown\":case\"onMouseDownCapture\":case\"onMouseMove\":case\"onMouseMoveCapture\":case\"onMouseUp\":case\"onMouseUpCapture\":case\"onMouseEnter\":(a=!a.disabled)||(a=!(\"button\"===(e=e.type)||\"input\"===e||\"select\"===e||\"textarea\"===e)),e=!a;break e;default:e=!1}if(e)return null;if(n&&\"function\"!=typeof n)throw Error(i(231,t,typeof n));return n}var Ve=!1;if(d)try{var Fe={};Object.defineProperty(Fe,\"passive\",{get:function(){Ve=!0}}),window.addEventListener(\"test\",Fe,Fe),window.removeEventListener(\"test\",Fe,Fe)}catch(he){Ve=!1}function We(e,t,n,a,r,o,i,l,s){var p=Array.prototype.slice.call(arguments,3);try{t.apply(n,p)}catch(e){this.onError(e)}}var De=!1,Ie=null,Ue=!1,$e=null,Ge={onError:function(e){De=!0,Ie=e}};function qe(e,t,n,a,r,o,i,l,s){De=!1,Ie=null,We.apply(Ge,arguments)}function Ke(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026&(t=e).flags)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function Xe(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&null!==(e=e.alternate)&&(t=e.memoizedState),null!==t)return t.dehydrated}return null}function Qe(e){if(Ke(e)!==e)throw Error(i(188))}function Je(e){if(e=function(e){var t=e.alternate;if(!t){if(null===(t=Ke(e)))throw Error(i(188));return t!==e?null:e}for(var n=e,a=t;;){var r=n.return;if(null===r)break;var o=r.alternate;if(null===o){if(null!==(a=r.return)){n=a;continue}break}if(r.child===o.child){for(o=r.child;o;){if(o===n)return Qe(r),e;if(o===a)return Qe(r),t;o=o.sibling}throw Error(i(188))}if(n.return!==a.return)n=r,a=o;else{for(var l=!1,s=r.child;s;){if(s===n){l=!0,n=r,a=o;break}if(s===a){l=!0,a=r,n=o;break}s=s.sibling}if(!l){for(s=o.child;s;){if(s===n){l=!0,n=o,a=r;break}if(s===a){l=!0,a=o,n=r;break}s=s.sibling}if(!l)throw Error(i(189))}}if(n.alternate!==a)throw Error(i(190))}if(3!==n.tag)throw Error(i(188));return n.stateNode.current===n?e:t}(e),!e)return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function Ye(e,t){for(var n=e.alternate;null!==t;){if(t===e||t===n)return!0;t=t.return}return!1}var et,tt,nt,at,rt=!1,ot=[],it=null,lt=null,st=null,pt=new Map,ct=new Map,dt=[],ut=\"mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit\".split(\" \");function mt(e,t,n,a,r){return{blockedOn:e,domEventName:t,eventSystemFlags:16|n,nativeEvent:r,targetContainers:[a]}}function ft(e,t){switch(e){case\"focusin\":case\"focusout\":it=null;break;case\"dragenter\":case\"dragleave\":lt=null;break;case\"mouseover\":case\"mouseout\":st=null;break;case\"pointerover\":case\"pointerout\":pt.delete(t.pointerId);break;case\"gotpointercapture\":case\"lostpointercapture\":ct.delete(t.pointerId)}}function ht(e,t,n,a,r,o){return null===e||e.nativeEvent!==o?(e=mt(t,n,a,r,o),null!==t&&null!==(t=ar(t))&&tt(t),e):(e.eventSystemFlags|=a,t=e.targetContainers,null!==r&&-1===t.indexOf(r)&&t.push(r),e)}function gt(e){var t=nr(e.target);if(null!==t){var n=Ke(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Xe(n)))return e.blockedOn=t,void at(e.lanePriority,(function(){o.unstable_runWithPriority(e.priority,(function(){nt(n)}))}))}else if(3===t&&n.stateNode.hydrate)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function vt(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0\u003Ct.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n)return null!==(t=ar(n))&&tt(t),e.blockedOn=n,!1;t.shift()}return!0}function _t(e,t,n){vt(e)&&n.delete(t)}function wt(){for(rt=!1;0\u003Cot.length;){var e=ot[0];if(null!==e.blockedOn){null!==(e=ar(e.blockedOn))&&et(e);break}for(var t=e.targetContainers;0\u003Ct.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n){e.blockedOn=n;break}t.shift()}null===e.blockedOn&&ot.shift()}null!==it&&vt(it)&&(it=null),null!==lt&&vt(lt)&&(lt=null),null!==st&&vt(st)&&(st=null),pt.forEach(_t),ct.forEach(_t)}function bt(e,t){e.blockedOn===t&&(e.blockedOn=null,rt||(rt=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,wt)))}function xt(e){function t(t){return bt(t,e)}if(0\u003Cot.length){bt(ot[0],e);for(var n=1;n\u003Cot.length;n++){var a=ot[n];a.blockedOn===e&&(a.blockedOn=null)}}for(null!==it&&bt(it,e),null!==lt&&bt(lt,e),null!==st&&bt(st,e),pt.forEach(t),ct.forEach(t),n=0;n\u003Cdt.length;n++)(a=dt[n]).blockedOn===e&&(a.blockedOn=null);for(;0\u003Cdt.length&&null===(n=dt[0]).blockedOn;)gt(n),null===n.blockedOn&&dt.shift()}function yt(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n[\"Webkit\"+e]=\"webkit\"+t,n[\"Moz\"+e]=\"moz\"+t,n}var kt={animationend:yt(\"Animation\",\"AnimationEnd\"),animationiteration:yt(\"Animation\",\"AnimationIteration\"),animationstart:yt(\"Animation\",\"AnimationStart\"),transitionend:yt(\"Transition\",\"TransitionEnd\")},Et={},Ct={};function St(e){if(Et[e])return Et[e];if(!kt[e])return e;var t,n=kt[e];for(t in n)if(n.hasOwnProperty(t)&&t in Ct)return Et[e]=n[t];return e}d&&(Ct=document.createElement(\"div\").style,\"AnimationEvent\"in window||(delete kt.animationend.animation,delete kt.animationiteration.animation,delete kt.animationstart.animation),\"TransitionEvent\"in window||delete kt.transitionend.transition);var Mt=St(\"animationend\"),Lt=St(\"animationiteration\"),Nt=St(\"animationstart\"),Zt=St(\"transitionend\"),Pt=new Map,zt=new Map,At=[\"abort\",\"abort\",Mt,\"animationEnd\",Lt,\"animationIteration\",Nt,\"animationStart\",\"canplay\",\"canPlay\",\"canplaythrough\",\"canPlayThrough\",\"durationchange\",\"durationChange\",\"emptied\",\"emptied\",\"encrypted\",\"encrypted\",\"ended\",\"ended\",\"error\",\"error\",\"gotpointercapture\",\"gotPointerCapture\",\"load\",\"load\",\"loadeddata\",\"loadedData\",\"loadedmetadata\",\"loadedMetadata\",\"loadstart\",\"loadStart\",\"lostpointercapture\",\"lostPointerCapture\",\"playing\",\"playing\",\"progress\",\"progress\",\"seeking\",\"seeking\",\"stalled\",\"stalled\",\"suspend\",\"suspend\",\"timeupdate\",\"timeUpdate\",Zt,\"transitionEnd\",\"waiting\",\"waiting\"];function Bt(e,t){for(var n=0;n\u003Ce.length;n+=2){var a=e[n],r=e[n+1];r=\"on\"+(r[0].toUpperCase()+r.slice(1)),zt.set(a,t),Pt.set(a,r),p(r,[a])}}(0,o.unstable_now)();var Ht=8;function Tt(e){if(0!=(1&e))return Ht=15,1;if(0!=(2&e))return Ht=14,2;if(0!=(4&e))return Ht=13,4;var t=24&e;return 0!==t?(Ht=12,t):0!=(32&e)?(Ht=11,32):0!=(t=192&e)?(Ht=10,t):0!=(256&e)?(Ht=9,256):0!=(t=3584&e)?(Ht=8,t):0!=(4096&e)?(Ht=7,4096):0!=(t=4186112&e)?(Ht=6,t):0!=(t=62914560&e)?(Ht=5,t):67108864&e?(Ht=4,67108864):0!=(134217728&e)?(Ht=3,134217728):0!=(t=805306368&e)?(Ht=2,t):0!=(1073741824&e)?(Ht=1,1073741824):(Ht=8,e)}function Rt(e,t){var n=e.pendingLanes;if(0===n)return Ht=0;var a=0,r=0,o=e.expiredLanes,i=e.suspendedLanes,l=e.pingedLanes;if(0!==o)a=o,r=Ht=15;else if(0!=(o=134217727&n)){var s=o&~i;0!==s?(a=Tt(s),r=Ht):0!=(l&=o)&&(a=Tt(l),r=Ht)}else 0!=(o=n&~i)?(a=Tt(o),r=Ht):0!==l&&(a=Tt(l),r=Ht);if(0===a)return 0;if(a=n&((0>(a=31-Dt(a))?0:1\u003C\u003Ca)\u003C\u003C1)-1,0!==t&&t!==a&&0==(t&i)){if(Tt(t),r\u003C=Ht)return t;Ht=r}if(0!==(t=e.entangledLanes))for(e=e.entanglements,t&=a;0\u003Ct;)r=1\u003C\u003C(n=31-Dt(t)),a|=e[n],t&=~r;return a}function Ot(e){return 0!=(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function jt(e,t){switch(e){case 15:return 1;case 14:return 2;case 12:return 0===(e=Vt(24&~t))?jt(10,t):e;case 10:return 0===(e=Vt(192&~t))?jt(8,t):e;case 8:return 0===(e=Vt(3584&~t))&&0===(e=Vt(4186112&~t))&&(e=512),e;case 2:return 0===(t=Vt(805306368&~t))&&(t=268435456),t}throw Error(i(358,e))}function Vt(e){return e&-e}function Ft(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Wt(e,t,n){e.pendingLanes|=t;var a=t-1;e.suspendedLanes&=a,e.pingedLanes&=a,(e=e.eventTimes)[t=31-Dt(t)]=n}var Dt=Math.clz32?Math.clz32:function(e){return 0===e?32:31-(It(e)\u002FUt|0)|0},It=Math.log,Ut=Math.LN2,$t=o.unstable_UserBlockingPriority,Gt=o.unstable_runWithPriority,qt=!0;function Kt(e,t,n,a){Te||Be();var r=Qt,o=Te;Te=!0;try{Ae(r,e,t,n,a)}finally{(Te=o)||Oe()}}function Xt(e,t,n,a){Gt($t,Qt.bind(null,e,t,n,a))}function Qt(e,t,n,a){var r;if(qt)if((r=0==(4&t))&&0\u003Cot.length&&-1\u003Cut.indexOf(e))e=mt(null,e,t,n,a),ot.push(e);else{var o=Jt(e,t,n,a);if(null===o)r&&ft(e,a);else{if(r){if(-1\u003Cut.indexOf(e))return e=mt(o,e,t,n,a),void ot.push(e);if(function(e,t,n,a,r){switch(t){case\"focusin\":return it=ht(it,e,t,n,a,r),!0;case\"dragenter\":return lt=ht(lt,e,t,n,a,r),!0;case\"mouseover\":return st=ht(st,e,t,n,a,r),!0;case\"pointerover\":var o=r.pointerId;return pt.set(o,ht(pt.get(o)||null,e,t,n,a,r)),!0;case\"gotpointercapture\":return o=r.pointerId,ct.set(o,ht(ct.get(o)||null,e,t,n,a,r)),!0}return!1}(o,e,t,n,a))return;ft(e,a)}Ha(e,t,a,null,n)}}}function Jt(e,t,n,a){var r=Ce(a);if(null!==(r=nr(r))){var o=Ke(r);if(null===o)r=null;else{var i=o.tag;if(13===i){if(null!==(r=Xe(o)))return r;r=null}else if(3===i){if(o.stateNode.hydrate)return 3===o.tag?o.stateNode.containerInfo:null;r=null}else o!==r&&(r=null)}}return Ha(e,t,a,r,n),null}var Yt=null,en=null,tn=null;function nn(){if(tn)return tn;var e,t,n=en,a=n.length,r=\"value\"in Yt?Yt.value:Yt.textContent,o=r.length;for(e=0;e\u003Ca&&n[e]===r[e];e++);var i=a-e;for(t=1;t\u003C=i&&n[a-t]===r[o-t];t++);return tn=r.slice(e,1\u003Ct?1-t:void 0)}function an(e){var t=e.keyCode;return\"charCode\"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32\u003C=e||13===e?e:0}function rn(){return!0}function on(){return!1}function ln(e){function t(t,n,a,r,o){for(var i in this._reactName=t,this._targetInst=a,this.type=n,this.nativeEvent=r,this.target=o,this.currentTarget=null,e)e.hasOwnProperty(i)&&(t=e[i],this[i]=t?t(r):r[i]);return this.isDefaultPrevented=(null!=r.defaultPrevented?r.defaultPrevented:!1===r.returnValue)?rn:on,this.isPropagationStopped=on,this}return r(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():\"unknown\"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=rn)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():\"unknown\"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=rn)},persist:function(){},isPersistent:rn}),t}var sn,pn,cn,dn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},un=ln(dn),mn=r({},dn,{view:0,detail:0}),fn=ln(mn),hn=r({},mn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Ln,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return\"movementX\"in e?e.movementX:(e!==cn&&(cn&&\"mousemove\"===e.type?(sn=e.screenX-cn.screenX,pn=e.screenY-cn.screenY):pn=sn=0,cn=e),sn)},movementY:function(e){return\"movementY\"in e?e.movementY:pn}}),gn=ln(hn),vn=ln(r({},hn,{dataTransfer:0})),wn=ln(r({},mn,{relatedTarget:0})),bn=ln(r({},dn,{animationName:0,elapsedTime:0,pseudoElement:0})),xn=r({},dn,{clipboardData:function(e){return\"clipboardData\"in e?e.clipboardData:window.clipboardData}}),yn=ln(xn),kn=ln(r({},dn,{data:0})),En={Esc:\"Escape\",Spacebar:\" \",Left:\"ArrowLeft\",Up:\"ArrowUp\",Right:\"ArrowRight\",Down:\"ArrowDown\",Del:\"Delete\",Win:\"OS\",Menu:\"ContextMenu\",Apps:\"ContextMenu\",Scroll:\"ScrollLock\",MozPrintableKey:\"Unidentified\"},Cn={8:\"Backspace\",9:\"Tab\",12:\"Clear\",13:\"Enter\",16:\"Shift\",17:\"Control\",18:\"Alt\",19:\"Pause\",20:\"CapsLock\",27:\"Escape\",32:\" \",33:\"PageUp\",34:\"PageDown\",35:\"End\",36:\"Home\",37:\"ArrowLeft\",38:\"ArrowUp\",39:\"ArrowRight\",40:\"ArrowDown\",45:\"Insert\",46:\"Delete\",112:\"F1\",113:\"F2\",114:\"F3\",115:\"F4\",116:\"F5\",117:\"F6\",118:\"F7\",119:\"F8\",120:\"F9\",121:\"F10\",122:\"F11\",123:\"F12\",144:\"NumLock\",145:\"ScrollLock\",224:\"Meta\"},Sn={Alt:\"altKey\",Control:\"ctrlKey\",Meta:\"metaKey\",Shift:\"shiftKey\"};function Mn(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Sn[e])&&!!t[e]}function Ln(){return Mn}var Nn=r({},mn,{key:function(e){if(e.key){var t=En[e.key]||e.key;if(\"Unidentified\"!==t)return t}return\"keypress\"===e.type?13===(e=an(e))?\"Enter\":String.fromCharCode(e):\"keydown\"===e.type||\"keyup\"===e.type?Cn[e.keyCode]||\"Unidentified\":\"\"},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Ln,charCode:function(e){return\"keypress\"===e.type?an(e):0},keyCode:function(e){return\"keydown\"===e.type||\"keyup\"===e.type?e.keyCode:0},which:function(e){return\"keypress\"===e.type?an(e):\"keydown\"===e.type||\"keyup\"===e.type?e.keyCode:0}}),Zn=ln(Nn),Pn=ln(r({},hn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),zn=ln(r({},mn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Ln})),An=ln(r({},dn,{propertyName:0,elapsedTime:0,pseudoElement:0})),Bn=r({},hn,{deltaX:function(e){return\"deltaX\"in e?e.deltaX:\"wheelDeltaX\"in e?-e.wheelDeltaX:0},deltaY:function(e){return\"deltaY\"in e?e.deltaY:\"wheelDeltaY\"in e?-e.wheelDeltaY:\"wheelDelta\"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),Hn=ln(Bn),Tn=[9,13,27,32],Rn=d&&\"CompositionEvent\"in window,On=null;d&&\"documentMode\"in document&&(On=document.documentMode);var jn=d&&\"TextEvent\"in window&&!On,Vn=d&&(!Rn||On&&8\u003COn&&11>=On),Fn=String.fromCharCode(32),Wn=!1;function Dn(e,t){switch(e){case\"keyup\":return-1!==Tn.indexOf(t.keyCode);case\"keydown\":return 229!==t.keyCode;case\"keypress\":case\"mousedown\":case\"focusout\":return!0;default:return!1}}function In(e){return\"object\"==typeof(e=e.detail)&&\"data\"in e?e.data:null}var Un=!1,$n={color:!0,date:!0,datetime:!0,\"datetime-local\":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Gn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return\"input\"===t?!!$n[e.type]:\"textarea\"===t}function qn(e,t,n,a){Ze(a),0\u003C(t=Ra(t,\"onChange\")).length&&(n=new un(\"onChange\",\"change\",null,n,a),e.push({event:n,listeners:t}))}var Kn=null,Xn=null;function Qn(e){Na(e,0)}function Jn(e){if(Q(rr(e)))return e}function Yn(e,t){if(\"change\"===e)return t}var ea=!1;if(d){var ta;if(d){var na=\"oninput\"in document;if(!na){var aa=document.createElement(\"div\");aa.setAttribute(\"oninput\",\"return;\"),na=\"function\"==typeof aa.oninput}ta=na}else ta=!1;ea=ta&&(!document.documentMode||9\u003Cdocument.documentMode)}function ra(){Kn&&(Kn.detachEvent(\"onpropertychange\",oa),Xn=Kn=null)}function oa(e){if(\"value\"===e.propertyName&&Jn(Xn)){var t=[];if(qn(t,Xn,e,Ce(e)),e=Qn,Te)e(t);else{Te=!0;try{ze(e,t)}finally{Te=!1,Oe()}}}}function ia(e,t,n){\"focusin\"===e?(ra(),Xn=n,(Kn=t).attachEvent(\"onpropertychange\",oa)):\"focusout\"===e&&ra()}function la(e){if(\"selectionchange\"===e||\"keyup\"===e||\"keydown\"===e)return Jn(Xn)}function sa(e,t){if(\"click\"===e)return Jn(t)}function pa(e,t){if(\"input\"===e||\"change\"===e)return Jn(t)}var ca=\"function\"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1\u002Fe==1\u002Ft)||e!=e&&t!=t},da=Object.prototype.hasOwnProperty;function ua(e,t){if(ca(e,t))return!0;if(\"object\"!=typeof e||null===e||\"object\"!=typeof t||null===t)return!1;var n=Object.keys(e),a=Object.keys(t);if(n.length!==a.length)return!1;for(a=0;a\u003Cn.length;a++)if(!da.call(t,n[a])||!ca(e[n[a]],t[n[a]]))return!1;return!0}function ma(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function fa(e,t){var n,a=ma(e);for(e=0;a;){if(3===a.nodeType){if(n=e+a.textContent.length,e\u003C=t&&n>=t)return{node:a,offset:t-e};e=n}e:{for(;a;){if(a.nextSibling){a=a.nextSibling;break e}a=a.parentNode}a=void 0}a=ma(a)}}function ha(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?ha(e,t.parentNode):\"contains\"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function ga(){for(var e=window,t=J();t instanceof e.HTMLIFrameElement;){try{var n=\"string\"==typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;t=J((e=t.contentWindow).document)}return t}function va(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(\"input\"===t&&(\"text\"===e.type||\"search\"===e.type||\"tel\"===e.type||\"url\"===e.type||\"password\"===e.type)||\"textarea\"===t||\"true\"===e.contentEditable)}var _a=d&&\"documentMode\"in document&&11>=document.documentMode,wa=null,ba=null,xa=null,ya=!1;function ka(e,t,n){var a=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;ya||null==wa||wa!==J(a)||(a=\"selectionStart\"in(a=wa)&&va(a)?{start:a.selectionStart,end:a.selectionEnd}:{anchorNode:(a=(a.ownerDocument&&a.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:a.anchorOffset,focusNode:a.focusNode,focusOffset:a.focusOffset},xa&&ua(xa,a)||(xa=a,0\u003C(a=Ra(ba,\"onSelect\")).length&&(t=new un(\"onSelect\",\"select\",null,t,n),e.push({event:t,listeners:a}),t.target=wa)))}Bt(\"cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange\".split(\" \"),0),Bt(\"drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel\".split(\" \"),1),Bt(At,2);for(var Ea=\"change selectionchange textInput compositionstart compositionend compositionupdate\".split(\" \"),Ca=0;Ca\u003CEa.length;Ca++)zt.set(Ea[Ca],0);c(\"onMouseEnter\",[\"mouseout\",\"mouseover\"]),c(\"onMouseLeave\",[\"mouseout\",\"mouseover\"]),c(\"onPointerEnter\",[\"pointerout\",\"pointerover\"]),c(\"onPointerLeave\",[\"pointerout\",\"pointerover\"]),p(\"onChange\",\"change click focusin focusout input keydown keyup selectionchange\".split(\" \")),p(\"onSelect\",\"focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange\".split(\" \")),p(\"onBeforeInput\",[\"compositionend\",\"keypress\",\"textInput\",\"paste\"]),p(\"onCompositionEnd\",\"compositionend focusout keydown keypress keyup mousedown\".split(\" \")),p(\"onCompositionStart\",\"compositionstart focusout keydown keypress keyup mousedown\".split(\" \")),p(\"onCompositionUpdate\",\"compositionupdate focusout keydown keypress keyup mousedown\".split(\" \"));var Sa=\"abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting\".split(\" \"),Ma=new Set(\"cancel close invalid load scroll toggle\".split(\" \").concat(Sa));function La(e,t,n){var a=e.type||\"unknown-event\";e.currentTarget=n,function(e,t,n,a,r,o,l,s,p){if(qe.apply(this,arguments),De){if(!De)throw Error(i(198));var c=Ie;De=!1,Ie=null,Ue||(Ue=!0,$e=c)}}(a,t,void 0,e),e.currentTarget=null}function Na(e,t){t=0!=(4&t);for(var n=0;n\u003Ce.length;n++){var a=e[n],r=a.event;a=a.listeners;e:{var o=void 0;if(t)for(var i=a.length-1;0\u003C=i;i--){var l=a[i],s=l.instance,p=l.currentTarget;if(l=l.listener,s!==o&&r.isPropagationStopped())break e;La(r,l,p),o=s}else for(i=0;i\u003Ca.length;i++){if(s=(l=a[i]).instance,p=l.currentTarget,l=l.listener,s!==o&&r.isPropagationStopped())break e;La(r,l,p),o=s}}}if(Ue)throw e=$e,Ue=!1,$e=null,e}function Za(e,t){var n=ir(t),a=e+\"__bubble\";n.has(a)||(Ba(t,e,2,!1),n.add(a))}var Pa=\"_reactListening\"+Math.random().toString(36).slice(2);function za(e){e[Pa]||(e[Pa]=!0,l.forEach((function(t){Ma.has(t)||Aa(t,!1,e,null),Aa(t,!0,e,null)})))}function Aa(e,t,n,a){var r=4\u003Carguments.length&&void 0!==arguments[4]?arguments[4]:0,o=n;if(\"selectionchange\"===e&&9!==n.nodeType&&(o=n.ownerDocument),null!==a&&!t&&Ma.has(e)){if(\"scroll\"!==e)return;r|=2,o=a}var i=ir(o),l=e+\"__\"+(t?\"capture\":\"bubble\");i.has(l)||(t&&(r|=4),Ba(o,e,r,t),i.add(l))}function Ba(e,t,n,a){var r=zt.get(t);switch(void 0===r?2:r){case 0:r=Kt;break;case 1:r=Xt;break;default:r=Qt}n=r.bind(null,t,n,e),r=void 0,!Ve||\"touchstart\"!==t&&\"touchmove\"!==t&&\"wheel\"!==t||(r=!0),a?void 0!==r?e.addEventListener(t,n,{capture:!0,passive:r}):e.addEventListener(t,n,!0):void 0!==r?e.addEventListener(t,n,{passive:r}):e.addEventListener(t,n,!1)}function Ha(e,t,n,a,r){var o=a;if(0==(1&t)&&0==(2&t)&&null!==a)e:for(;;){if(null===a)return;var i=a.tag;if(3===i||4===i){var l=a.stateNode.containerInfo;if(l===r||8===l.nodeType&&l.parentNode===r)break;if(4===i)for(i=a.return;null!==i;){var s=i.tag;if((3===s||4===s)&&((s=i.stateNode.containerInfo)===r||8===s.nodeType&&s.parentNode===r))return;i=i.return}for(;null!==l;){if(null===(i=nr(l)))return;if(5===(s=i.tag)||6===s){a=o=i;continue e}l=l.parentNode}}a=a.return}!function(e,t,n){if(Re)return e();Re=!0;try{return He(e,t,n)}finally{Re=!1,Oe()}}((function(){var a=o,r=Ce(n),i=[];e:{var l=Pt.get(e);if(void 0!==l){var s=un,p=e;switch(e){case\"keypress\":if(0===an(n))break e;case\"keydown\":case\"keyup\":s=Zn;break;case\"focusin\":p=\"focus\",s=wn;break;case\"focusout\":p=\"blur\",s=wn;break;case\"beforeblur\":case\"afterblur\":s=wn;break;case\"click\":if(2===n.button)break e;case\"auxclick\":case\"dblclick\":case\"mousedown\":case\"mousemove\":case\"mouseup\":case\"mouseout\":case\"mouseover\":case\"contextmenu\":s=gn;break;case\"drag\":case\"dragend\":case\"dragenter\":case\"dragexit\":case\"dragleave\":case\"dragover\":case\"dragstart\":case\"drop\":s=vn;break;case\"touchcancel\":case\"touchend\":case\"touchmove\":case\"touchstart\":s=zn;break;case Mt:case Lt:case Nt:s=bn;break;case Zt:s=An;break;case\"scroll\":s=fn;break;case\"wheel\":s=Hn;break;case\"copy\":case\"cut\":case\"paste\":s=yn;break;case\"gotpointercapture\":case\"lostpointercapture\":case\"pointercancel\":case\"pointerdown\":case\"pointermove\":case\"pointerout\":case\"pointerover\":case\"pointerup\":s=Pn}var c=0!=(4&t),d=!c&&\"scroll\"===e,u=c?null!==l?l+\"Capture\":null:l;c=[];for(var m,f=a;null!==f;){var h=(m=f).stateNode;if(5===m.tag&&null!==h&&(m=h,null!==u&&null!=(h=je(f,u))&&c.push(Ta(f,h,m))),d)break;f=f.return}0\u003Cc.length&&(l=new s(l,p,null,n,r),i.push({event:l,listeners:c}))}}if(0==(7&t)){if(s=\"mouseout\"===e||\"pointerout\"===e,(!(l=\"mouseover\"===e||\"pointerover\"===e)||0!=(16&t)||!(p=n.relatedTarget||n.fromElement)||!nr(p)&&!p[er])&&(s||l)&&(l=r.window===r?r:(l=r.ownerDocument)?l.defaultView||l.parentWindow:window,s?(s=a,null!==(p=(p=n.relatedTarget||n.toElement)?nr(p):null)&&(p!==(d=Ke(p))||5!==p.tag&&6!==p.tag)&&(p=null)):(s=null,p=a),s!==p)){if(c=gn,h=\"onMouseLeave\",u=\"onMouseEnter\",f=\"mouse\",\"pointerout\"!==e&&\"pointerover\"!==e||(c=Pn,h=\"onPointerLeave\",u=\"onPointerEnter\",f=\"pointer\"),d=null==s?l:rr(s),m=null==p?l:rr(p),(l=new c(h,f+\"leave\",s,n,r)).target=d,l.relatedTarget=m,h=null,nr(r)===a&&((c=new c(u,f+\"enter\",p,n,r)).target=m,c.relatedTarget=d,h=c),d=h,s&&p)e:{for(u=p,f=0,m=c=s;m;m=Oa(m))f++;for(m=0,h=u;h;h=Oa(h))m++;for(;0\u003Cf-m;)c=Oa(c),f--;for(;0\u003Cm-f;)u=Oa(u),m--;for(;f--;){if(c===u||null!==u&&c===u.alternate)break e;c=Oa(c),u=Oa(u)}c=null}else c=null;null!==s&&ja(i,l,s,c,!1),null!==p&&null!==d&&ja(i,d,p,c,!0)}if(\"select\"===(s=(l=a?rr(a):window).nodeName&&l.nodeName.toLowerCase())||\"input\"===s&&\"file\"===l.type)var g=Yn;else if(Gn(l))if(ea)g=pa;else{g=la;var v=ia}else(s=l.nodeName)&&\"input\"===s.toLowerCase()&&(\"checkbox\"===l.type||\"radio\"===l.type)&&(g=sa);switch(g&&(g=g(e,a))?qn(i,g,n,r):(v&&v(e,l,a),\"focusout\"===e&&(v=l._wrapperState)&&v.controlled&&\"number\"===l.type&&re(l,\"number\",l.value)),v=a?rr(a):window,e){case\"focusin\":(Gn(v)||\"true\"===v.contentEditable)&&(wa=v,ba=a,xa=null);break;case\"focusout\":xa=ba=wa=null;break;case\"mousedown\":ya=!0;break;case\"contextmenu\":case\"mouseup\":case\"dragend\":ya=!1,ka(i,n,r);break;case\"selectionchange\":if(_a)break;case\"keydown\":case\"keyup\":ka(i,n,r)}var _;if(Rn)e:{switch(e){case\"compositionstart\":var w=\"onCompositionStart\";break e;case\"compositionend\":w=\"onCompositionEnd\";break e;case\"compositionupdate\":w=\"onCompositionUpdate\";break e}w=void 0}else Un?Dn(e,n)&&(w=\"onCompositionEnd\"):\"keydown\"===e&&229===n.keyCode&&(w=\"onCompositionStart\");w&&(Vn&&\"ko\"!==n.locale&&(Un||\"onCompositionStart\"!==w?\"onCompositionEnd\"===w&&Un&&(_=nn()):(en=\"value\"in(Yt=r)?Yt.value:Yt.textContent,Un=!0)),0\u003C(v=Ra(a,w)).length&&(w=new kn(w,e,null,n,r),i.push({event:w,listeners:v}),(_||null!==(_=In(n)))&&(w.data=_))),(_=jn?function(e,t){switch(e){case\"compositionend\":return In(t);case\"keypress\":return 32!==t.which?null:(Wn=!0,Fn);case\"textInput\":return(e=t.data)===Fn&&Wn?null:e;default:return null}}(e,n):function(e,t){if(Un)return\"compositionend\"===e||!Rn&&Dn(e,t)?(e=nn(),tn=en=Yt=null,Un=!1,e):null;switch(e){case\"paste\":default:return null;case\"keypress\":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1\u003Ct.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case\"compositionend\":return Vn&&\"ko\"!==t.locale?null:t.data}}(e,n))&&0\u003C(a=Ra(a,\"onBeforeInput\")).length&&(r=new kn(\"onBeforeInput\",\"beforeinput\",null,n,r),i.push({event:r,listeners:a}),r.data=_)}Na(i,t)}))}function Ta(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Ra(e,t){for(var n=t+\"Capture\",a=[];null!==e;){var r=e,o=r.stateNode;5===r.tag&&null!==o&&(r=o,null!=(o=je(e,n))&&a.unshift(Ta(e,o,r)),null!=(o=je(e,t))&&a.push(Ta(e,o,r))),e=e.return}return a}function Oa(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function ja(e,t,n,a,r){for(var o=t._reactName,i=[];null!==n&&n!==a;){var l=n,s=l.alternate,p=l.stateNode;if(null!==s&&s===a)break;5===l.tag&&null!==p&&(l=p,r?null!=(s=je(n,o))&&i.unshift(Ta(n,s,l)):r||null!=(s=je(n,o))&&i.push(Ta(n,s,l))),n=n.return}0!==i.length&&e.push({event:t,listeners:i})}function Va(){}var Fa=null,Wa=null;function Da(e,t){switch(e){case\"button\":case\"input\":case\"select\":case\"textarea\":return!!t.autoFocus}return!1}function Ia(e,t){return\"textarea\"===e||\"option\"===e||\"noscript\"===e||\"string\"==typeof t.children||\"number\"==typeof t.children||\"object\"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var Ua=\"function\"==typeof setTimeout?setTimeout:void 0,$a=\"function\"==typeof clearTimeout?clearTimeout:void 0;function Ga(e){(1===e.nodeType||9===e.nodeType&&null!=(e=e.body))&&(e.textContent=\"\")}function qa(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Ka(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if(\"$\"===n||\"$!\"===n||\"$?\"===n){if(0===t)return e;t--}else\"\u002F$\"===n&&t++}e=e.previousSibling}return null}var Xa=0,Qa=Math.random().toString(36).slice(2),Ja=\"__reactFiber$\"+Qa,Ya=\"__reactProps$\"+Qa,er=\"__reactContainer$\"+Qa,tr=\"__reactEvents$\"+Qa;function nr(e){var t=e[Ja];if(t)return t;for(var n=e.parentNode;n;){if(t=n[er]||n[Ja]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=Ka(e);null!==e;){if(n=e[Ja])return n;e=Ka(e)}return t}n=(e=n).parentNode}return null}function ar(e){return!(e=e[Ja]||e[er])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function rr(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(i(33))}function or(e){return e[Ya]||null}function ir(e){var t=e[tr];return void 0===t&&(t=e[tr]=new Set),t}var lr=[],sr=-1;function pr(e){return{current:e}}function cr(e){0>sr||(e.current=lr[sr],lr[sr]=null,sr--)}function dr(e,t){sr++,lr[sr]=e.current,e.current=t}var ur={},mr=pr(ur),fr=pr(!1),hr=ur;function gr(e,t){var n=e.type.contextTypes;if(!n)return ur;var a=e.stateNode;if(a&&a.__reactInternalMemoizedUnmaskedChildContext===t)return a.__reactInternalMemoizedMaskedChildContext;var r,o={};for(r in n)o[r]=t[r];return a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function vr(e){return null!=e.childContextTypes}function _r(){cr(fr),cr(mr)}function wr(e,t,n){if(mr.current!==ur)throw Error(i(168));dr(mr,t),dr(fr,n)}function br(e,t,n){var a=e.stateNode;if(e=t.childContextTypes,\"function\"!=typeof a.getChildContext)return n;for(var o in a=a.getChildContext())if(!(o in e))throw Error(i(108,G(t)||\"Unknown\",o));return r({},n,a)}function xr(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||ur,hr=mr.current,dr(mr,e),dr(fr,fr.current),!0}function yr(e,t,n){var a=e.stateNode;if(!a)throw Error(i(169));n?(e=br(e,t,hr),a.__reactInternalMemoizedMergedChildContext=e,cr(fr),cr(mr),dr(mr,e)):cr(fr),dr(fr,n)}var kr=null,Er=null,Cr=o.unstable_runWithPriority,Sr=o.unstable_scheduleCallback,Mr=o.unstable_cancelCallback,Lr=o.unstable_shouldYield,Nr=o.unstable_requestPaint,Zr=o.unstable_now,Pr=o.unstable_getCurrentPriorityLevel,zr=o.unstable_ImmediatePriority,Ar=o.unstable_UserBlockingPriority,Br=o.unstable_NormalPriority,Hr=o.unstable_LowPriority,Tr=o.unstable_IdlePriority,Rr={},Or=void 0!==Nr?Nr:function(){},jr=null,Vr=null,Fr=!1,Wr=Zr(),Dr=1e4>Wr?Zr:function(){return Zr()-Wr};function Ir(){switch(Pr()){case zr:return 99;case Ar:return 98;case Br:return 97;case Hr:return 96;case Tr:return 95;default:throw Error(i(332))}}function Ur(e){switch(e){case 99:return zr;case 98:return Ar;case 97:return Br;case 96:return Hr;case 95:return Tr;default:throw Error(i(332))}}function $r(e,t){return e=Ur(e),Cr(e,t)}function Gr(e,t,n){return e=Ur(e),Sr(e,t,n)}function qr(){if(null!==Vr){var e=Vr;Vr=null,Mr(e)}Kr()}function Kr(){if(!Fr&&null!==jr){Fr=!0;var e=0;try{var t=jr;$r(99,(function(){for(;e\u003Ct.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}})),jr=null}catch(t){throw null!==jr&&(jr=jr.slice(e+1)),Sr(zr,qr),t}finally{Fr=!1}}}var Xr=x.ReactCurrentBatchConfig;function Qr(e,t){if(e&&e.defaultProps){for(var n in t=r({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}return t}var Jr=pr(null),Yr=null,eo=null,to=null;function no(){to=eo=Yr=null}function ao(e){var t=Jr.current;cr(Jr),e.type._context._currentValue=t}function ro(e,t){for(;null!==e;){var n=e.alternate;if((e.childLanes&t)===t){if(null===n||(n.childLanes&t)===t)break;n.childLanes|=t}else e.childLanes|=t,null!==n&&(n.childLanes|=t);e=e.return}}function oo(e,t){Yr=e,to=eo=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!=(e.lanes&t)&&(Ri=!0),e.firstContext=null)}function io(e,t){if(to!==e&&!1!==t&&0!==t)if(\"number\"==typeof t&&1073741823!==t||(to=e,t=1073741823),t={context:e,observedBits:t,next:null},null===eo){if(null===Yr)throw Error(i(308));eo=t,Yr.dependencies={lanes:0,firstContext:t,responders:null}}else eo=eo.next=t;return e._currentValue}var lo=!1;function so(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null},effects:null}}function po(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function co(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function uo(e,t){if(null!==(e=e.updateQueue)){var n=(e=e.shared).pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}}function mo(e,t){var n=e.updateQueue,a=e.alternate;if(null!==a&&n===(a=a.updateQueue)){var r=null,o=null;if(null!==(n=n.firstBaseUpdate)){do{var i={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};null===o?r=o=i:o=o.next=i,n=n.next}while(null!==n);null===o?r=o=t:o=o.next=t}else r=o=t;return n={baseState:a.baseState,firstBaseUpdate:r,lastBaseUpdate:o,shared:a.shared,effects:a.effects},void(e.updateQueue=n)}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function fo(e,t,n,a){var o=e.updateQueue;lo=!1;var i=o.firstBaseUpdate,l=o.lastBaseUpdate,s=o.shared.pending;if(null!==s){o.shared.pending=null;var p=s,c=p.next;p.next=null,null===l?i=c:l.next=c,l=p;var d=e.alternate;if(null!==d){var u=(d=d.updateQueue).lastBaseUpdate;u!==l&&(null===u?d.firstBaseUpdate=c:u.next=c,d.lastBaseUpdate=p)}}if(null!==i){for(u=o.baseState,l=0,d=c=p=null;;){s=i.lane;var m=i.eventTime;if((a&s)===s){null!==d&&(d=d.next={eventTime:m,lane:0,tag:i.tag,payload:i.payload,callback:i.callback,next:null});e:{var f=e,h=i;switch(s=t,m=n,h.tag){case 1:if(\"function\"==typeof(f=h.payload)){u=f.call(m,u,s);break e}u=f;break e;case 3:f.flags=-4097&f.flags|64;case 0:if(null==(s=\"function\"==typeof(f=h.payload)?f.call(m,u,s):f))break e;u=r({},u,s);break e;case 2:lo=!0}}null!==i.callback&&(e.flags|=32,null===(s=o.effects)?o.effects=[i]:s.push(i))}else m={eventTime:m,lane:s,tag:i.tag,payload:i.payload,callback:i.callback,next:null},null===d?(c=d=m,p=u):d=d.next=m,l|=s;if(null===(i=i.next)){if(null===(s=o.shared.pending))break;i=s.next,s.next=null,o.lastBaseUpdate=s,o.shared.pending=null}}null===d&&(p=u),o.baseState=p,o.firstBaseUpdate=c,o.lastBaseUpdate=d,Vl|=l,e.lanes=l,e.memoizedState=u}}function ho(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t\u003Ce.length;t++){var a=e[t],r=a.callback;if(null!==r){if(a.callback=null,a=n,\"function\"!=typeof r)throw Error(i(191,r));r.call(a)}}}var go=(new a.Component).refs;function vo(e,t,n,a){n=null==(n=n(a,t=e.memoizedState))?t:r({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var _o={isMounted:function(e){return!!(e=e._reactInternals)&&Ke(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var a=ds(),r=us(e),o=co(a,r);o.payload=t,null!=n&&(o.callback=n),uo(e,o),ms(e,r,a)},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var a=ds(),r=us(e),o=co(a,r);o.tag=1,o.payload=t,null!=n&&(o.callback=n),uo(e,o),ms(e,r,a)},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=ds(),a=us(e),r=co(n,a);r.tag=2,null!=t&&(r.callback=t),uo(e,r),ms(e,a,n)}};function wo(e,t,n,a,r,o,i){return\"function\"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(a,o,i):!(t.prototype&&t.prototype.isPureReactComponent&&ua(n,a)&&ua(r,o))}function bo(e,t,n){var a=!1,r=ur,o=t.contextType;return\"object\"==typeof o&&null!==o?o=io(o):(r=vr(t)?hr:mr.current,o=(a=null!=(a=t.contextTypes))?gr(e,r):ur),t=new t(n,o),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=_o,e.stateNode=t,t._reactInternals=e,a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=r,e.__reactInternalMemoizedMaskedChildContext=o),t}function xo(e,t,n,a){e=t.state,\"function\"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,a),\"function\"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,a),t.state!==e&&_o.enqueueReplaceState(t,t.state,null)}function yo(e,t,n,a){var r=e.stateNode;r.props=n,r.state=e.memoizedState,r.refs=go,so(e);var o=t.contextType;\"object\"==typeof o&&null!==o?r.context=io(o):(o=vr(t)?hr:mr.current,r.context=gr(e,o)),fo(e,n,r,a),r.state=e.memoizedState,\"function\"==typeof(o=t.getDerivedStateFromProps)&&(vo(e,t,o,n),r.state=e.memoizedState),\"function\"==typeof t.getDerivedStateFromProps||\"function\"==typeof r.getSnapshotBeforeUpdate||\"function\"!=typeof r.UNSAFE_componentWillMount&&\"function\"!=typeof r.componentWillMount||(t=r.state,\"function\"==typeof r.componentWillMount&&r.componentWillMount(),\"function\"==typeof r.UNSAFE_componentWillMount&&r.UNSAFE_componentWillMount(),t!==r.state&&_o.enqueueReplaceState(r,r.state,null),fo(e,n,r,a),r.state=e.memoizedState),\"function\"==typeof r.componentDidMount&&(e.flags|=4)}var ko=Array.isArray;function Eo(e,t,n){if(null!==(e=n.ref)&&\"function\"!=typeof e&&\"object\"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(i(309));var a=n.stateNode}if(!a)throw Error(i(147,e));var r=\"\"+e;return null!==t&&null!==t.ref&&\"function\"==typeof t.ref&&t.ref._stringRef===r?t.ref:(t=function(e){var t=a.refs;t===go&&(t=a.refs={}),null===e?delete t[r]:t[r]=e},t._stringRef=r,t)}if(\"string\"!=typeof e)throw Error(i(284));if(!n._owner)throw Error(i(290,e))}return e}function Co(e,t){if(\"textarea\"!==e.type)throw Error(i(31,\"[object Object]\"===Object.prototype.toString.call(t)?\"object with keys {\"+Object.keys(t).join(\", \")+\"}\":t))}function So(e){function t(t,n){if(e){var a=t.lastEffect;null!==a?(a.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.flags=8}}function n(n,a){if(!e)return null;for(;null!==a;)t(n,a),a=a.sibling;return null}function a(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function r(e,t){return(e=Us(e,t)).index=0,e.sibling=null,e}function o(t,n,a){return t.index=a,e?null!==(a=t.alternate)?(a=a.index)\u003Cn?(t.flags=2,n):a:(t.flags=2,n):n}function l(t){return e&&null===t.alternate&&(t.flags=2),t}function s(e,t,n,a){return null===t||6!==t.tag?((t=Ks(n,e.mode,a)).return=e,t):((t=r(t,n)).return=e,t)}function p(e,t,n,a){return null!==t&&t.elementType===n.type?((a=r(t,n.props)).ref=Eo(e,t,n),a.return=e,a):((a=$s(n.type,n.key,n.props,null,e.mode,a)).ref=Eo(e,t,n),a.return=e,a)}function c(e,t,n,a){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?((t=Xs(n,e.mode,a)).return=e,t):((t=r(t,n.children||[])).return=e,t)}function d(e,t,n,a,o){return null===t||7!==t.tag?((t=Gs(n,e.mode,a,o)).return=e,t):((t=r(t,n)).return=e,t)}function u(e,t,n){if(\"string\"==typeof t||\"number\"==typeof t)return(t=Ks(\"\"+t,e.mode,n)).return=e,t;if(\"object\"==typeof t&&null!==t){switch(t.$$typeof){case y:return(n=$s(t.type,t.key,t.props,null,e.mode,n)).ref=Eo(e,null,t),n.return=e,n;case k:return(t=Xs(t,e.mode,n)).return=e,t}if(ko(t)||W(t))return(t=Gs(t,e.mode,n,null)).return=e,t;Co(e,t)}return null}function m(e,t,n,a){var r=null!==t?t.key:null;if(\"string\"==typeof n||\"number\"==typeof n)return null!==r?null:s(e,t,\"\"+n,a);if(\"object\"==typeof n&&null!==n){switch(n.$$typeof){case y:return n.key===r?n.type===E?d(e,t,n.props.children,a,r):p(e,t,n,a):null;case k:return n.key===r?c(e,t,n,a):null}if(ko(n)||W(n))return null!==r?null:d(e,t,n,a,null);Co(e,n)}return null}function f(e,t,n,a,r){if(\"string\"==typeof a||\"number\"==typeof a)return s(t,e=e.get(n)||null,\"\"+a,r);if(\"object\"==typeof a&&null!==a){switch(a.$$typeof){case y:return e=e.get(null===a.key?n:a.key)||null,a.type===E?d(t,e,a.props.children,r,a.key):p(t,e,a,r);case k:return c(t,e=e.get(null===a.key?n:a.key)||null,a,r)}if(ko(a)||W(a))return d(t,e=e.get(n)||null,a,r,null);Co(t,a)}return null}function h(r,i,l,s){for(var p=null,c=null,d=i,h=i=0,g=null;null!==d&&h\u003Cl.length;h++){d.index>h?(g=d,d=null):g=d.sibling;var v=m(r,d,l[h],s);if(null===v){null===d&&(d=g);break}e&&d&&null===v.alternate&&t(r,d),i=o(v,i,h),null===c?p=v:c.sibling=v,c=v,d=g}if(h===l.length)return n(r,d),p;if(null===d){for(;h\u003Cl.length;h++)null!==(d=u(r,l[h],s))&&(i=o(d,i,h),null===c?p=d:c.sibling=d,c=d);return p}for(d=a(r,d);h\u003Cl.length;h++)null!==(g=f(d,r,h,l[h],s))&&(e&&null!==g.alternate&&d.delete(null===g.key?h:g.key),i=o(g,i,h),null===c?p=g:c.sibling=g,c=g);return e&&d.forEach((function(e){return t(r,e)})),p}function g(r,l,s,p){var c=W(s);if(\"function\"!=typeof c)throw Error(i(150));if(null==(s=c.call(s)))throw Error(i(151));for(var d=c=null,h=l,g=l=0,v=null,_=s.next();null!==h&&!_.done;g++,_=s.next()){h.index>g?(v=h,h=null):v=h.sibling;var w=m(r,h,_.value,p);if(null===w){null===h&&(h=v);break}e&&h&&null===w.alternate&&t(r,h),l=o(w,l,g),null===d?c=w:d.sibling=w,d=w,h=v}if(_.done)return n(r,h),c;if(null===h){for(;!_.done;g++,_=s.next())null!==(_=u(r,_.value,p))&&(l=o(_,l,g),null===d?c=_:d.sibling=_,d=_);return c}for(h=a(r,h);!_.done;g++,_=s.next())null!==(_=f(h,r,g,_.value,p))&&(e&&null!==_.alternate&&h.delete(null===_.key?g:_.key),l=o(_,l,g),null===d?c=_:d.sibling=_,d=_);return e&&h.forEach((function(e){return t(r,e)})),c}return function(e,a,o,s){var p=\"object\"==typeof o&&null!==o&&o.type===E&&null===o.key;p&&(o=o.props.children);var c=\"object\"==typeof o&&null!==o;if(c)switch(o.$$typeof){case y:e:{for(c=o.key,p=a;null!==p;){if(p.key===c){if(7===p.tag){if(o.type===E){n(e,p.sibling),(a=r(p,o.props.children)).return=e,e=a;break e}}else if(p.elementType===o.type){n(e,p.sibling),(a=r(p,o.props)).ref=Eo(e,p,o),a.return=e,e=a;break e}n(e,p);break}t(e,p),p=p.sibling}o.type===E?((a=Gs(o.props.children,e.mode,s,o.key)).return=e,e=a):((s=$s(o.type,o.key,o.props,null,e.mode,s)).ref=Eo(e,a,o),s.return=e,e=s)}return l(e);case k:e:{for(p=o.key;null!==a;){if(a.key===p){if(4===a.tag&&a.stateNode.containerInfo===o.containerInfo&&a.stateNode.implementation===o.implementation){n(e,a.sibling),(a=r(a,o.children||[])).return=e,e=a;break e}n(e,a);break}t(e,a),a=a.sibling}(a=Xs(o,e.mode,s)).return=e,e=a}return l(e)}if(\"string\"==typeof o||\"number\"==typeof o)return o=\"\"+o,null!==a&&6===a.tag?(n(e,a.sibling),(a=r(a,o)).return=e,e=a):(n(e,a),(a=Ks(o,e.mode,s)).return=e,e=a),l(e);if(ko(o))return h(e,a,o,s);if(W(o))return g(e,a,o,s);if(c&&Co(e,o),void 0===o&&!p)switch(e.tag){case 1:case 22:case 0:case 11:case 15:throw Error(i(152,G(e.type)||\"Component\"))}return n(e,a)}}var Mo=So(!0),Lo=So(!1),No={},Zo=pr(No),Po=pr(No),zo=pr(No);function Ao(e){if(e===No)throw Error(i(174));return e}function Bo(e,t){switch(dr(zo,t),dr(Po,e),dr(Zo,No),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:me(null,\"\");break;default:t=me(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}cr(Zo),dr(Zo,t)}function Ho(){cr(Zo),cr(Po),cr(zo)}function To(e){Ao(zo.current);var t=Ao(Zo.current),n=me(t,e.type);t!==n&&(dr(Po,e),dr(Zo,n))}function Ro(e){Po.current===e&&(cr(Zo),cr(Po))}var Oo=pr(0);function jo(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||\"$?\"===n.data||\"$!\"===n.data))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(64&t.flags))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Vo=null,Fo=null,Wo=!1;function Do(e,t){var n=Ds(5,null,null,0);n.elementType=\"DELETED\",n.type=\"DELETED\",n.stateNode=t,n.return=e,n.flags=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function Io(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,!0);case 6:return null!==(t=\"\"===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,!0);default:return!1}}function Uo(e){if(Wo){var t=Fo;if(t){var n=t;if(!Io(e,t)){if(!(t=qa(n.nextSibling))||!Io(e,t))return e.flags=-1025&e.flags|2,Wo=!1,void(Vo=e);Do(Vo,n)}Vo=e,Fo=qa(t.firstChild)}else e.flags=-1025&e.flags|2,Wo=!1,Vo=e}}function $o(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;Vo=e}function Go(e){if(e!==Vo)return!1;if(!Wo)return $o(e),Wo=!0,!1;var t=e.type;if(5!==e.tag||\"head\"!==t&&\"body\"!==t&&!Ia(t,e.memoizedProps))for(t=Fo;t;)Do(e,t),t=qa(t.nextSibling);if($o(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(i(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if(\"\u002F$\"===n){if(0===t){Fo=qa(e.nextSibling);break e}t--}else\"$\"!==n&&\"$!\"!==n&&\"$?\"!==n||t++}e=e.nextSibling}Fo=null}}else Fo=Vo?qa(e.stateNode.nextSibling):null;return!0}function qo(){Fo=Vo=null,Wo=!1}var Ko=[];function Xo(){for(var e=0;e\u003CKo.length;e++)Ko[e]._workInProgressVersionPrimary=null;Ko.length=0}var Qo=x.ReactCurrentDispatcher,Jo=x.ReactCurrentBatchConfig,Yo=0,ei=null,ti=null,ni=null,ai=!1,ri=!1;function oi(){throw Error(i(321))}function ii(e,t){if(null===t)return!1;for(var n=0;n\u003Ct.length&&n\u003Ce.length;n++)if(!ca(e[n],t[n]))return!1;return!0}function li(e,t,n,a,r,o){if(Yo=o,ei=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,Qo.current=null===e||null===e.memoizedState?Ai:Bi,e=n(a,r),ri){o=0;do{if(ri=!1,!(25>o))throw Error(i(301));o+=1,ni=ti=null,t.updateQueue=null,Qo.current=Hi,e=n(a,r)}while(ri)}if(Qo.current=zi,t=null!==ti&&null!==ti.next,Yo=0,ni=ti=ei=null,ai=!1,t)throw Error(i(300));return e}function si(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===ni?ei.memoizedState=ni=e:ni=ni.next=e,ni}function pi(){if(null===ti){var e=ei.alternate;e=null!==e?e.memoizedState:null}else e=ti.next;var t=null===ni?ei.memoizedState:ni.next;if(null!==t)ni=t,ti=e;else{if(null===e)throw Error(i(310));e={memoizedState:(ti=e).memoizedState,baseState:ti.baseState,baseQueue:ti.baseQueue,queue:ti.queue,next:null},null===ni?ei.memoizedState=ni=e:ni=ni.next=e}return ni}function ci(e,t){return\"function\"==typeof t?t(e):t}function di(e){var t=pi(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var a=ti,r=a.baseQueue,o=n.pending;if(null!==o){if(null!==r){var l=r.next;r.next=o.next,o.next=l}a.baseQueue=r=o,n.pending=null}if(null!==r){r=r.next,a=a.baseState;var s=l=o=null,p=r;do{var c=p.lane;if((Yo&c)===c)null!==s&&(s=s.next={lane:0,action:p.action,eagerReducer:p.eagerReducer,eagerState:p.eagerState,next:null}),a=p.eagerReducer===e?p.eagerState:e(a,p.action);else{var d={lane:c,action:p.action,eagerReducer:p.eagerReducer,eagerState:p.eagerState,next:null};null===s?(l=s=d,o=a):s=s.next=d,ei.lanes|=c,Vl|=c}p=p.next}while(null!==p&&p!==r);null===s?o=a:s.next=l,ca(a,t.memoizedState)||(Ri=!0),t.memoizedState=a,t.baseState=o,t.baseQueue=s,n.lastRenderedState=a}return[t.memoizedState,n.dispatch]}function ui(e){var t=pi(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var a=n.dispatch,r=n.pending,o=t.memoizedState;if(null!==r){n.pending=null;var l=r=r.next;do{o=e(o,l.action),l=l.next}while(l!==r);ca(o,t.memoizedState)||(Ri=!0),t.memoizedState=o,null===t.baseQueue&&(t.baseState=o),n.lastRenderedState=o}return[o,a]}function mi(e,t,n){var a=t._getVersion;a=a(t._source);var r=t._workInProgressVersionPrimary;if(null!==r?e=r===a:(e=e.mutableReadLanes,(e=(Yo&e)===e)&&(t._workInProgressVersionPrimary=a,Ko.push(t))),e)return n(t._source);throw Ko.push(t),Error(i(350))}function fi(e,t,n,a){var r=zl;if(null===r)throw Error(i(349));var o=t._getVersion,l=o(t._source),s=Qo.current,p=s.useState((function(){return mi(r,t,n)})),c=p[1],d=p[0];p=ni;var u=e.memoizedState,m=u.refs,f=m.getSnapshot,h=u.source;u=u.subscribe;var g=ei;return e.memoizedState={refs:m,source:t,subscribe:a},s.useEffect((function(){m.getSnapshot=n,m.setSnapshot=c;var e=o(t._source);if(!ca(l,e)){e=n(t._source),ca(d,e)||(c(e),e=us(g),r.mutableReadLanes|=e&r.pendingLanes),e=r.mutableReadLanes,r.entangledLanes|=e;for(var a=r.entanglements,i=e;0\u003Ci;){var s=31-Dt(i),p=1\u003C\u003Cs;a[s]|=e,i&=~p}}}),[n,t,a]),s.useEffect((function(){return a(t._source,(function(){var e=m.getSnapshot,n=m.setSnapshot;try{n(e(t._source));var a=us(g);r.mutableReadLanes|=a&r.pendingLanes}catch(e){n((function(){throw e}))}}))}),[t,a]),ca(f,n)&&ca(h,t)&&ca(u,a)||((e={pending:null,dispatch:null,lastRenderedReducer:ci,lastRenderedState:d}).dispatch=c=Pi.bind(null,ei,e),p.queue=e,p.baseQueue=null,d=mi(r,t,n),p.memoizedState=p.baseState=d),d}function hi(e,t,n){return fi(pi(),e,t,n)}function gi(e){var t=si();return\"function\"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={pending:null,dispatch:null,lastRenderedReducer:ci,lastRenderedState:e}).dispatch=Pi.bind(null,ei,e),[t.memoizedState,e]}function vi(e,t,n,a){return e={tag:e,create:t,destroy:n,deps:a,next:null},null===(t=ei.updateQueue)?(t={lastEffect:null},ei.updateQueue=t,t.lastEffect=e.next=e):null===(n=t.lastEffect)?t.lastEffect=e.next=e:(a=n.next,n.next=e,e.next=a,t.lastEffect=e),e}function _i(e){return e={current:e},si().memoizedState=e}function wi(){return pi().memoizedState}function bi(e,t,n,a){var r=si();ei.flags|=e,r.memoizedState=vi(1|t,n,void 0,void 0===a?null:a)}function xi(e,t,n,a){var r=pi();a=void 0===a?null:a;var o=void 0;if(null!==ti){var i=ti.memoizedState;if(o=i.destroy,null!==a&&ii(a,i.deps))return void vi(t,n,o,a)}ei.flags|=e,r.memoizedState=vi(1|t,n,o,a)}function yi(e,t){return bi(516,4,e,t)}function ki(e,t){return xi(516,4,e,t)}function Ei(e,t){return xi(4,2,e,t)}function Ci(e,t){return\"function\"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function Si(e,t,n){return n=null!=n?n.concat([e]):null,xi(4,2,Ci.bind(null,t,e),n)}function Mi(){}function Li(e,t){var n=pi();t=void 0===t?null:t;var a=n.memoizedState;return null!==a&&null!==t&&ii(t,a[1])?a[0]:(n.memoizedState=[e,t],e)}function Ni(e,t){var n=pi();t=void 0===t?null:t;var a=n.memoizedState;return null!==a&&null!==t&&ii(t,a[1])?a[0]:(e=e(),n.memoizedState=[e,t],e)}function Zi(e,t){var n=Ir();$r(98>n?98:n,(function(){e(!0)})),$r(97\u003Cn?97:n,(function(){var n=Jo.transition;Jo.transition=1;try{e(!1),t()}finally{Jo.transition=n}}))}function Pi(e,t,n){var a=ds(),r=us(e),o={lane:r,action:n,eagerReducer:null,eagerState:null,next:null},i=t.pending;if(null===i?o.next=o:(o.next=i.next,i.next=o),t.pending=o,i=e.alternate,e===ei||null!==i&&i===ei)ri=ai=!0;else{if(0===e.lanes&&(null===i||0===i.lanes)&&null!==(i=t.lastRenderedReducer))try{var l=t.lastRenderedState,s=i(l,n);if(o.eagerReducer=i,o.eagerState=s,ca(s,l))return}catch(e){}ms(e,r,a)}}var zi={readContext:io,useCallback:oi,useContext:oi,useEffect:oi,useImperativeHandle:oi,useLayoutEffect:oi,useMemo:oi,useReducer:oi,useRef:oi,useState:oi,useDebugValue:oi,useDeferredValue:oi,useTransition:oi,useMutableSource:oi,useOpaqueIdentifier:oi,unstable_isNewReconciler:!1},Ai={readContext:io,useCallback:function(e,t){return si().memoizedState=[e,void 0===t?null:t],e},useContext:io,useEffect:yi,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,bi(4,2,Ci.bind(null,t,e),n)},useLayoutEffect:function(e,t){return bi(4,2,e,t)},useMemo:function(e,t){var n=si();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var a=si();return t=void 0!==n?n(t):t,a.memoizedState=a.baseState=t,e=(e=a.queue={pending:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=Pi.bind(null,ei,e),[a.memoizedState,e]},useRef:_i,useState:gi,useDebugValue:Mi,useDeferredValue:function(e){var t=gi(e),n=t[0],a=t[1];return yi((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=gi(!1),t=e[0];return _i(e=Zi.bind(null,e[1])),[e,t]},useMutableSource:function(e,t,n){var a=si();return a.memoizedState={refs:{getSnapshot:t,setSnapshot:null},source:e,subscribe:n},fi(a,e,t,n)},useOpaqueIdentifier:function(){if(Wo){var e=!1,t=function(e){return{$$typeof:H,toString:e,valueOf:e}}((function(){throw e||(e=!0,n(\"r:\"+(Xa++).toString(36))),Error(i(355))})),n=gi(t)[1];return 0==(2&ei.mode)&&(ei.flags|=516,vi(5,(function(){n(\"r:\"+(Xa++).toString(36))}),void 0,null)),t}return gi(t=\"r:\"+(Xa++).toString(36)),t},unstable_isNewReconciler:!1},Bi={readContext:io,useCallback:Li,useContext:io,useEffect:ki,useImperativeHandle:Si,useLayoutEffect:Ei,useMemo:Ni,useReducer:di,useRef:wi,useState:function(){return di(ci)},useDebugValue:Mi,useDeferredValue:function(e){var t=di(ci),n=t[0],a=t[1];return ki((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=di(ci)[0];return[wi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return di(ci)[0]},unstable_isNewReconciler:!1},Hi={readContext:io,useCallback:Li,useContext:io,useEffect:ki,useImperativeHandle:Si,useLayoutEffect:Ei,useMemo:Ni,useReducer:ui,useRef:wi,useState:function(){return ui(ci)},useDebugValue:Mi,useDeferredValue:function(e){var t=ui(ci),n=t[0],a=t[1];return ki((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=ui(ci)[0];return[wi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return ui(ci)[0]},unstable_isNewReconciler:!1},Ti=x.ReactCurrentOwner,Ri=!1;function Oi(e,t,n,a){t.child=null===e?Lo(t,null,n,a):Mo(t,e.child,n,a)}function ji(e,t,n,a,r){n=n.render;var o=t.ref;return oo(t,r),a=li(e,t,n,a,o,r),null===e||Ri?(t.flags|=1,Oi(e,t,a,r),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~r,rl(e,t,r))}function Vi(e,t,n,a,r,o){if(null===e){var i=n.type;return\"function\"!=typeof i||Is(i)||void 0!==i.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=$s(n.type,null,a,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=i,Fi(e,t,i,a,r,o))}return i=e.child,0==(r&o)&&(r=i.memoizedProps,(n=null!==(n=n.compare)?n:ua)(r,a)&&e.ref===t.ref)?rl(e,t,o):(t.flags|=1,(e=Us(i,a)).ref=t.ref,e.return=t,t.child=e)}function Fi(e,t,n,a,r,o){if(null!==e&&ua(e.memoizedProps,a)&&e.ref===t.ref){if(Ri=!1,0==(o&r))return t.lanes=e.lanes,rl(e,t,o);0!=(16384&e.flags)&&(Ri=!0)}return Ii(e,t,n,a,o)}function Wi(e,t,n){var a=t.pendingProps,r=a.children,o=null!==e?e.memoizedState:null;if(\"hidden\"===a.mode||\"unstable-defer-without-hiding\"===a.mode)if(0==(4&t.mode))t.memoizedState={baseLanes:0},xs(0,n);else{if(0==(1073741824&n))return e=null!==o?o.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e},xs(0,e),null;t.memoizedState={baseLanes:0},xs(0,null!==o?o.baseLanes:n)}else null!==o?(a=o.baseLanes|n,t.memoizedState=null):a=n,xs(0,a);return Oi(e,t,r,n),t.child}function Di(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=128)}function Ii(e,t,n,a,r){var o=vr(n)?hr:mr.current;return o=gr(t,o),oo(t,r),n=li(e,t,n,a,o,r),null===e||Ri?(t.flags|=1,Oi(e,t,n,r),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~r,rl(e,t,r))}function Ui(e,t,n,a,r){if(vr(n)){var o=!0;xr(t)}else o=!1;if(oo(t,r),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),bo(t,n,a),yo(t,n,a,r),a=!0;else if(null===e){var i=t.stateNode,l=t.memoizedProps;i.props=l;var s=i.context,p=n.contextType;p=\"object\"==typeof p&&null!==p?io(p):gr(t,p=vr(n)?hr:mr.current);var c=n.getDerivedStateFromProps,d=\"function\"==typeof c||\"function\"==typeof i.getSnapshotBeforeUpdate;d||\"function\"!=typeof i.UNSAFE_componentWillReceiveProps&&\"function\"!=typeof i.componentWillReceiveProps||(l!==a||s!==p)&&xo(t,i,a,p),lo=!1;var u=t.memoizedState;i.state=u,fo(t,a,i,r),s=t.memoizedState,l!==a||u!==s||fr.current||lo?(\"function\"==typeof c&&(vo(t,n,c,a),s=t.memoizedState),(l=lo||wo(t,n,l,a,u,s,p))?(d||\"function\"!=typeof i.UNSAFE_componentWillMount&&\"function\"!=typeof i.componentWillMount||(\"function\"==typeof i.componentWillMount&&i.componentWillMount(),\"function\"==typeof i.UNSAFE_componentWillMount&&i.UNSAFE_componentWillMount()),\"function\"==typeof i.componentDidMount&&(t.flags|=4)):(\"function\"==typeof i.componentDidMount&&(t.flags|=4),t.memoizedProps=a,t.memoizedState=s),i.props=a,i.state=s,i.context=p,a=l):(\"function\"==typeof i.componentDidMount&&(t.flags|=4),a=!1)}else{i=t.stateNode,po(e,t),l=t.memoizedProps,p=t.type===t.elementType?l:Qr(t.type,l),i.props=p,d=t.pendingProps,u=i.context,s=\"object\"==typeof(s=n.contextType)&&null!==s?io(s):gr(t,s=vr(n)?hr:mr.current);var m=n.getDerivedStateFromProps;(c=\"function\"==typeof m||\"function\"==typeof i.getSnapshotBeforeUpdate)||\"function\"!=typeof i.UNSAFE_componentWillReceiveProps&&\"function\"!=typeof i.componentWillReceiveProps||(l!==d||u!==s)&&xo(t,i,a,s),lo=!1,u=t.memoizedState,i.state=u,fo(t,a,i,r);var f=t.memoizedState;l!==d||u!==f||fr.current||lo?(\"function\"==typeof m&&(vo(t,n,m,a),f=t.memoizedState),(p=lo||wo(t,n,p,a,u,f,s))?(c||\"function\"!=typeof i.UNSAFE_componentWillUpdate&&\"function\"!=typeof i.componentWillUpdate||(\"function\"==typeof i.componentWillUpdate&&i.componentWillUpdate(a,f,s),\"function\"==typeof i.UNSAFE_componentWillUpdate&&i.UNSAFE_componentWillUpdate(a,f,s)),\"function\"==typeof i.componentDidUpdate&&(t.flags|=4),\"function\"==typeof i.getSnapshotBeforeUpdate&&(t.flags|=256)):(\"function\"!=typeof i.componentDidUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=4),\"function\"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=256),t.memoizedProps=a,t.memoizedState=f),i.props=a,i.state=f,i.context=s,a=p):(\"function\"!=typeof i.componentDidUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=4),\"function\"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=256),a=!1)}return $i(e,t,n,a,o,r)}function $i(e,t,n,a,r,o){Di(e,t);var i=0!=(64&t.flags);if(!a&&!i)return r&&yr(t,n,!1),rl(e,t,o);a=t.stateNode,Ti.current=t;var l=i&&\"function\"!=typeof n.getDerivedStateFromError?null:a.render();return t.flags|=1,null!==e&&i?(t.child=Mo(t,e.child,null,o),t.child=Mo(t,null,l,o)):Oi(e,t,l,o),t.memoizedState=a.state,r&&yr(t,n,!0),t.child}function Gi(e){var t=e.stateNode;t.pendingContext?wr(0,t.pendingContext,t.pendingContext!==t.context):t.context&&wr(0,t.context,!1),Bo(e,t.containerInfo)}var qi,Ki,Xi,Qi,Ji={dehydrated:null,retryLane:0};function Yi(e,t,n){var a,r=t.pendingProps,o=Oo.current,i=!1;return(a=0!=(64&t.flags))||(a=(null===e||null!==e.memoizedState)&&0!=(2&o)),a?(i=!0,t.flags&=-65):null!==e&&null===e.memoizedState||void 0===r.fallback||!0===r.unstable_avoidThisFallback||(o|=1),dr(Oo,1&o),null===e?(void 0!==r.fallback&&Uo(t),e=r.children,o=r.fallback,i?(e=el(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Ji,e):\"number\"==typeof r.unstable_expectedLoadTime?(e=el(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Ji,t.lanes=33554432,e):((n=qs({mode:\"visible\",children:e},t.mode,n,null)).return=t,t.child=n)):(e.memoizedState,i?(r=function(e,t,n,a,r){var o=t.mode,i=e.child;e=i.sibling;var l={mode:\"hidden\",children:n};return 0==(2&o)&&t.child!==i?((n=t.child).childLanes=0,n.pendingProps=l,null!==(i=n.lastEffect)?(t.firstEffect=n.firstEffect,t.lastEffect=i,i.nextEffect=null):t.firstEffect=t.lastEffect=null):n=Us(i,l),null!==e?a=Us(e,a):(a=Gs(a,o,r,null)).flags|=2,a.return=t,n.return=t,n.sibling=a,t.child=n,a}(e,t,r.children,r.fallback,n),i=t.child,o=e.child.memoizedState,i.memoizedState=null===o?{baseLanes:n}:{baseLanes:o.baseLanes|n},i.childLanes=e.childLanes&~n,t.memoizedState=Ji,r):(n=function(e,t,n,a){var r=e.child;return e=r.sibling,n=Us(r,{mode:\"visible\",children:n}),0==(2&t.mode)&&(n.lanes=a),n.return=t,n.sibling=null,null!==e&&(e.nextEffect=null,e.flags=8,t.firstEffect=t.lastEffect=e),t.child=n}(e,t,r.children,n),t.memoizedState=null,n))}function el(e,t,n,a){var r=e.mode,o=e.child;return t={mode:\"hidden\",children:t},0==(2&r)&&null!==o?(o.childLanes=0,o.pendingProps=t):o=qs(t,r,0,null),n=Gs(n,r,a,null),o.return=e,n.return=e,o.sibling=n,e.child=o,n}function tl(e,t){e.lanes|=t;var n=e.alternate;null!==n&&(n.lanes|=t),ro(e.return,t)}function nl(e,t,n,a,r,o){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:a,tail:n,tailMode:r,lastEffect:o}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=a,i.tail=n,i.tailMode=r,i.lastEffect=o)}function al(e,t,n){var a=t.pendingProps,r=a.revealOrder,o=a.tail;if(Oi(e,t,a.children,n),0!=(2&(a=Oo.current)))a=1&a|2,t.flags|=64;else{if(null!==e&&0!=(64&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&tl(e,n);else if(19===e.tag)tl(e,n);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}a&=1}if(dr(Oo,a),0==(2&t.mode))t.memoizedState=null;else switch(r){case\"forwards\":for(n=t.child,r=null;null!==n;)null!==(e=n.alternate)&&null===jo(e)&&(r=n),n=n.sibling;null===(n=r)?(r=t.child,t.child=null):(r=n.sibling,n.sibling=null),nl(t,!1,r,n,o,t.lastEffect);break;case\"backwards\":for(n=null,r=t.child,t.child=null;null!==r;){if(null!==(e=r.alternate)&&null===jo(e)){t.child=r;break}e=r.sibling,r.sibling=n,n=r,r=e}nl(t,!0,n,null,o,t.lastEffect);break;case\"together\":nl(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}function rl(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),Vl|=t.lanes,0!=(n&t.childLanes)){if(null!==e&&t.child!==e.child)throw Error(i(153));if(null!==t.child){for(n=Us(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Us(e,e.pendingProps)).return=t;n.sibling=null}return t.child}return null}function ol(e,t){if(!Wo)switch(e.tailMode){case\"hidden\":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case\"collapsed\":n=e.tail;for(var a=null;null!==n;)null!==n.alternate&&(a=n),n=n.sibling;null===a?t||null===e.tail?e.tail=null:e.tail.sibling=null:a.sibling=null}}function il(e,t,n){var a=t.pendingProps;switch(t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return null;case 1:case 17:return vr(t.type)&&_r(),null;case 3:return Ho(),cr(fr),cr(mr),Xo(),(a=t.stateNode).pendingContext&&(a.context=a.pendingContext,a.pendingContext=null),null!==e&&null!==e.child||(Go(t)?t.flags|=4:a.hydrate||(t.flags|=256)),Ki(t),null;case 5:Ro(t);var o=Ao(zo.current);if(n=t.type,null!==e&&null!=t.stateNode)Xi(e,t,n,a,o),e.ref!==t.ref&&(t.flags|=128);else{if(!a){if(null===t.stateNode)throw Error(i(166));return null}if(e=Ao(Zo.current),Go(t)){a=t.stateNode,n=t.type;var l=t.memoizedProps;switch(a[Ja]=t,a[Ya]=l,n){case\"dialog\":Za(\"cancel\",a),Za(\"close\",a);break;case\"iframe\":case\"object\":case\"embed\":Za(\"load\",a);break;case\"video\":case\"audio\":for(e=0;e\u003CSa.length;e++)Za(Sa[e],a);break;case\"source\":Za(\"error\",a);break;case\"img\":case\"image\":case\"link\":Za(\"error\",a),Za(\"load\",a);break;case\"details\":Za(\"toggle\",a);break;case\"input\":ee(a,l),Za(\"invalid\",a);break;case\"select\":a._wrapperState={wasMultiple:!!l.multiple},Za(\"invalid\",a);break;case\"textarea\":se(a,l),Za(\"invalid\",a)}for(var p in ke(n,l),e=null,l)l.hasOwnProperty(p)&&(o=l[p],\"children\"===p?\"string\"==typeof o?a.textContent!==o&&(e=[\"children\",o]):\"number\"==typeof o&&a.textContent!==\"\"+o&&(e=[\"children\",\"\"+o]):s.hasOwnProperty(p)&&null!=o&&\"onScroll\"===p&&Za(\"scroll\",a));switch(n){case\"input\":X(a),ae(a,l,!0);break;case\"textarea\":X(a),ce(a);break;case\"select\":case\"option\":break;default:\"function\"==typeof l.onClick&&(a.onclick=Va)}a=e,t.updateQueue=a,null!==a&&(t.flags|=4)}else{switch(p=9===o.nodeType?o:o.ownerDocument,e===de.html&&(e=ue(n)),e===de.html?\"script\"===n?((e=p.createElement(\"div\")).innerHTML=\"\u003Cscript>\u003C\\\u002Fscript>\",e=e.removeChild(e.firstChild)):\"string\"==typeof a.is?e=p.createElement(n,{is:a.is}):(e=p.createElement(n),\"select\"===n&&(p=e,a.multiple?p.multiple=!0:a.size&&(p.size=a.size))):e=p.createElementNS(e,n),e[Ja]=t,e[Ya]=a,qi(e,t,!1,!1),t.stateNode=e,p=Ee(n,a),n){case\"dialog\":Za(\"cancel\",e),Za(\"close\",e),o=a;break;case\"iframe\":case\"object\":case\"embed\":Za(\"load\",e),o=a;break;case\"video\":case\"audio\":for(o=0;o\u003CSa.length;o++)Za(Sa[o],e);o=a;break;case\"source\":Za(\"error\",e),o=a;break;case\"img\":case\"image\":case\"link\":Za(\"error\",e),Za(\"load\",e),o=a;break;case\"details\":Za(\"toggle\",e),o=a;break;case\"input\":ee(e,a),o=Y(e,a),Za(\"invalid\",e);break;case\"option\":o=oe(e,a);break;case\"select\":e._wrapperState={wasMultiple:!!a.multiple},o=r({},a,{value:void 0}),Za(\"invalid\",e);break;case\"textarea\":se(e,a),o=le(e,a),Za(\"invalid\",e);break;default:o=a}ke(n,o);var c=o;for(l in c)if(c.hasOwnProperty(l)){var d=c[l];\"style\"===l?xe(e,d):\"dangerouslySetInnerHTML\"===l?null!=(d=d?d.__html:void 0)&&ge(e,d):\"children\"===l?\"string\"==typeof d?(\"textarea\"!==n||\"\"!==d)&&ve(e,d):\"number\"==typeof d&&ve(e,\"\"+d):\"suppressContentEditableWarning\"!==l&&\"suppressHydrationWarning\"!==l&&\"autoFocus\"!==l&&(s.hasOwnProperty(l)?null!=d&&\"onScroll\"===l&&Za(\"scroll\",e):null!=d&&b(e,l,d,p))}switch(n){case\"input\":X(e),ae(e,a,!1);break;case\"textarea\":X(e),ce(e);break;case\"option\":null!=a.value&&e.setAttribute(\"value\",\"\"+q(a.value));break;case\"select\":e.multiple=!!a.multiple,null!=(l=a.value)?ie(e,!!a.multiple,l,!1):null!=a.defaultValue&&ie(e,!!a.multiple,a.defaultValue,!0);break;default:\"function\"==typeof o.onClick&&(e.onclick=Va)}Da(n,a)&&(t.flags|=4)}null!==t.ref&&(t.flags|=128)}return null;case 6:if(e&&null!=t.stateNode)Qi(e,t,e.memoizedProps,a);else{if(\"string\"!=typeof a&&null===t.stateNode)throw Error(i(166));n=Ao(zo.current),Ao(Zo.current),Go(t)?(a=t.stateNode,n=t.memoizedProps,a[Ja]=t,a.nodeValue!==n&&(t.flags|=4)):((a=(9===n.nodeType?n:n.ownerDocument).createTextNode(a))[Ja]=t,t.stateNode=a)}return null;case 13:return cr(Oo),a=t.memoizedState,0!=(64&t.flags)?(t.lanes=n,t):(a=null!==a,n=!1,null===e?void 0!==t.memoizedProps.fallback&&Go(t):n=null!==e.memoizedState,a&&!n&&0!=(2&t.mode)&&(null===e&&!0!==t.memoizedProps.unstable_avoidThisFallback||0!=(1&Oo.current)?0===Rl&&(Rl=3):(0!==Rl&&3!==Rl||(Rl=4),null===zl||0==(134217727&Vl)&&0==(134217727&Fl)||vs(zl,Bl))),(a||n)&&(t.flags|=4),null);case 4:return Ho(),Ki(t),null===e&&za(t.stateNode.containerInfo),null;case 10:return ao(t),null;case 19:if(cr(Oo),null===(a=t.memoizedState))return null;if(l=0!=(64&t.flags),null===(p=a.rendering))if(l)ol(a,!1);else{if(0!==Rl||null!==e&&0!=(64&e.flags))for(e=t.child;null!==e;){if(null!==(p=jo(e))){for(t.flags|=64,ol(a,!1),null!==(l=p.updateQueue)&&(t.updateQueue=l,t.flags|=4),null===a.lastEffect&&(t.firstEffect=null),t.lastEffect=a.lastEffect,a=n,n=t.child;null!==n;)e=a,(l=n).flags&=2,l.nextEffect=null,l.firstEffect=null,l.lastEffect=null,null===(p=l.alternate)?(l.childLanes=0,l.lanes=e,l.child=null,l.memoizedProps=null,l.memoizedState=null,l.updateQueue=null,l.dependencies=null,l.stateNode=null):(l.childLanes=p.childLanes,l.lanes=p.lanes,l.child=p.child,l.memoizedProps=p.memoizedProps,l.memoizedState=p.memoizedState,l.updateQueue=p.updateQueue,l.type=p.type,e=p.dependencies,l.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return dr(Oo,1&Oo.current|2),t.child}e=e.sibling}null!==a.tail&&Dr()>Ul&&(t.flags|=64,l=!0,ol(a,!1),t.lanes=33554432)}else{if(!l)if(null!==(e=jo(p))){if(t.flags|=64,l=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),ol(a,!0),null===a.tail&&\"hidden\"===a.tailMode&&!p.alternate&&!Wo)return null!==(t=t.lastEffect=a.lastEffect)&&(t.nextEffect=null),null}else 2*Dr()-a.renderingStartTime>Ul&&1073741824!==n&&(t.flags|=64,l=!0,ol(a,!1),t.lanes=33554432);a.isBackwards?(p.sibling=t.child,t.child=p):(null!==(n=a.last)?n.sibling=p:t.child=p,a.last=p)}return null!==a.tail?(n=a.tail,a.rendering=n,a.tail=n.sibling,a.lastEffect=t.lastEffect,a.renderingStartTime=Dr(),n.sibling=null,t=Oo.current,dr(Oo,l?1&t|2:1&t),n):null;case 23:case 24:return ys(),null!==e&&null!==e.memoizedState!=(null!==t.memoizedState)&&\"unstable-defer-without-hiding\"!==a.mode&&(t.flags|=4),null}throw Error(i(156,t.tag))}function ll(e){switch(e.tag){case 1:vr(e.type)&&_r();var t=e.flags;return 4096&t?(e.flags=-4097&t|64,e):null;case 3:if(Ho(),cr(fr),cr(mr),Xo(),0!=(64&(t=e.flags)))throw Error(i(285));return e.flags=-4097&t|64,e;case 5:return Ro(e),null;case 13:return cr(Oo),4096&(t=e.flags)?(e.flags=-4097&t|64,e):null;case 19:return cr(Oo),null;case 4:return Ho(),null;case 10:return ao(e),null;case 23:case 24:return ys(),null;default:return null}}function sl(e,t){try{var n=\"\",a=t;do{n+=$(a),a=a.return}while(a);var r=n}catch(e){r=\"\\nError generating stack: \"+e.message+\"\\n\"+e.stack}return{value:e,source:t,stack:r}}function pl(e,t){try{console.error(t.value)}catch(e){setTimeout((function(){throw e}))}}qi=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},Ki=function(){},Xi=function(e,t,n,a){var o=e.memoizedProps;if(o!==a){e=t.stateNode,Ao(Zo.current);var i,l=null;switch(n){case\"input\":o=Y(e,o),a=Y(e,a),l=[];break;case\"option\":o=oe(e,o),a=oe(e,a),l=[];break;case\"select\":o=r({},o,{value:void 0}),a=r({},a,{value:void 0}),l=[];break;case\"textarea\":o=le(e,o),a=le(e,a),l=[];break;default:\"function\"!=typeof o.onClick&&\"function\"==typeof a.onClick&&(e.onclick=Va)}for(d in ke(n,a),n=null,o)if(!a.hasOwnProperty(d)&&o.hasOwnProperty(d)&&null!=o[d])if(\"style\"===d){var p=o[d];for(i in p)p.hasOwnProperty(i)&&(n||(n={}),n[i]=\"\")}else\"dangerouslySetInnerHTML\"!==d&&\"children\"!==d&&\"suppressContentEditableWarning\"!==d&&\"suppressHydrationWarning\"!==d&&\"autoFocus\"!==d&&(s.hasOwnProperty(d)?l||(l=[]):(l=l||[]).push(d,null));for(d in a){var c=a[d];if(p=null!=o?o[d]:void 0,a.hasOwnProperty(d)&&c!==p&&(null!=c||null!=p))if(\"style\"===d)if(p){for(i in p)!p.hasOwnProperty(i)||c&&c.hasOwnProperty(i)||(n||(n={}),n[i]=\"\");for(i in c)c.hasOwnProperty(i)&&p[i]!==c[i]&&(n||(n={}),n[i]=c[i])}else n||(l||(l=[]),l.push(d,n)),n=c;else\"dangerouslySetInnerHTML\"===d?(c=c?c.__html:void 0,p=p?p.__html:void 0,null!=c&&p!==c&&(l=l||[]).push(d,c)):\"children\"===d?\"string\"!=typeof c&&\"number\"!=typeof c||(l=l||[]).push(d,\"\"+c):\"suppressContentEditableWarning\"!==d&&\"suppressHydrationWarning\"!==d&&(s.hasOwnProperty(d)?(null!=c&&\"onScroll\"===d&&Za(\"scroll\",e),l||p===c||(l=[])):\"object\"==typeof c&&null!==c&&c.$$typeof===H?c.toString():(l=l||[]).push(d,c))}n&&(l=l||[]).push(\"style\",n);var d=l;(t.updateQueue=d)&&(t.flags|=4)}},Qi=function(e,t,n,a){n!==a&&(t.flags|=4)};var cl=\"function\"==typeof WeakMap?WeakMap:Map;function dl(e,t,n){(n=co(-1,n)).tag=3,n.payload={element:null};var a=t.value;return n.callback=function(){Kl||(Kl=!0,Xl=a),pl(0,t)},n}function ul(e,t,n){(n=co(-1,n)).tag=3;var a=e.type.getDerivedStateFromError;if(\"function\"==typeof a){var r=t.value;n.payload=function(){return pl(0,t),a(r)}}var o=e.stateNode;return null!==o&&\"function\"==typeof o.componentDidCatch&&(n.callback=function(){\"function\"!=typeof a&&(null===Ql?Ql=new Set([this]):Ql.add(this),pl(0,t));var e=t.stack;this.componentDidCatch(t.value,{componentStack:null!==e?e:\"\"})}),n}var ml=\"function\"==typeof WeakSet?WeakSet:Set;function fl(e){var t=e.ref;if(null!==t)if(\"function\"==typeof t)try{t(null)}catch(t){js(e,t)}else t.current=null}function hl(e,t){switch(t.tag){case 0:case 11:case 15:case 22:case 5:case 6:case 4:case 17:return;case 1:if(256&t.flags&&null!==e){var n=e.memoizedProps,a=e.memoizedState;t=(e=t.stateNode).getSnapshotBeforeUpdate(t.elementType===t.type?n:Qr(t.type,n),a),e.__reactInternalSnapshotBeforeUpdate=t}return;case 3:return void(256&t.flags&&Ga(t.stateNode.containerInfo))}throw Error(i(163))}function gl(e,t,n){switch(n.tag){case 0:case 11:case 15:case 22:if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{if(3==(3&e.tag)){var a=e.create;e.destroy=a()}e=e.next}while(e!==t)}if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{var r=e;a=r.next,0!=(4&(r=r.tag))&&0!=(1&r)&&(Ts(n,e),Hs(n,e)),e=a}while(e!==t)}return;case 1:return e=n.stateNode,4&n.flags&&(null===t?e.componentDidMount():(a=n.elementType===n.type?t.memoizedProps:Qr(n.type,t.memoizedProps),e.componentDidUpdate(a,t.memoizedState,e.__reactInternalSnapshotBeforeUpdate))),void(null!==(t=n.updateQueue)&&ho(n,t,e));case 3:if(null!==(t=n.updateQueue)){if(e=null,null!==n.child)switch(n.child.tag){case 5:case 1:e=n.child.stateNode}ho(n,t,e)}return;case 5:return e=n.stateNode,void(null===t&&4&n.flags&&Da(n.type,n.memoizedProps)&&e.focus());case 6:case 4:case 12:case 19:case 17:case 20:case 21:case 23:case 24:return;case 13:return void(null===n.memoizedState&&(n=n.alternate,null!==n&&(n=n.memoizedState,null!==n&&(n=n.dehydrated,null!==n&&xt(n)))))}throw Error(i(163))}function vl(e,t){for(var n=e;;){if(5===n.tag){var a=n.stateNode;if(t)\"function\"==typeof(a=a.style).setProperty?a.setProperty(\"display\",\"none\",\"important\"):a.display=\"none\";else{a=n.stateNode;var r=n.memoizedProps.style;r=null!=r&&r.hasOwnProperty(\"display\")?r.display:null,a.style.display=be(\"display\",r)}}else if(6===n.tag)n.stateNode.nodeValue=t?\"\":n.memoizedProps;else if((23!==n.tag&&24!==n.tag||null===n.memoizedState||n===e)&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)break;for(;null===n.sibling;){if(null===n.return||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}}function _l(e,t){if(Er&&\"function\"==typeof Er.onCommitFiberUnmount)try{Er.onCommitFiberUnmount(kr,t)}catch(e){}switch(t.tag){case 0:case 11:case 14:case 15:case 22:if(null!==(e=t.updateQueue)&&null!==(e=e.lastEffect)){var n=e=e.next;do{var a=n,r=a.destroy;if(a=a.tag,void 0!==r)if(0!=(4&a))Ts(t,n);else{a=t;try{r()}catch(e){js(a,e)}}n=n.next}while(n!==e)}break;case 1:if(fl(t),\"function\"==typeof(e=t.stateNode).componentWillUnmount)try{e.props=t.memoizedProps,e.state=t.memoizedState,e.componentWillUnmount()}catch(e){js(t,e)}break;case 5:fl(t);break;case 4:El(e,t)}}function wl(e){e.alternate=null,e.child=null,e.dependencies=null,e.firstEffect=null,e.lastEffect=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.return=null,e.updateQueue=null}function bl(e){return 5===e.tag||3===e.tag||4===e.tag}function xl(e){e:{for(var t=e.return;null!==t;){if(bl(t))break e;t=t.return}throw Error(i(160))}var n=t;switch(t=n.stateNode,n.tag){case 5:var a=!1;break;case 3:case 4:t=t.containerInfo,a=!0;break;default:throw Error(i(161))}16&n.flags&&(ve(t,\"\"),n.flags&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||bl(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag&&18!==n.tag;){if(2&n.flags)continue t;if(null===n.child||4===n.tag)continue t;n.child.return=n,n=n.child}if(!(2&n.flags)){n=n.stateNode;break e}}a?yl(e,n,t):kl(e,n,t)}function yl(e,t,n){var a=e.tag,r=5===a||6===a;if(r)e=r?e.stateNode:e.stateNode.instance,t?8===n.nodeType?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(8===n.nodeType?(t=n.parentNode).insertBefore(e,n):(t=n).appendChild(e),null!=(n=n._reactRootContainer)||null!==t.onclick||(t.onclick=Va));else if(4!==a&&null!==(e=e.child))for(yl(e,t,n),e=e.sibling;null!==e;)yl(e,t,n),e=e.sibling}function kl(e,t,n){var a=e.tag,r=5===a||6===a;if(r)e=r?e.stateNode:e.stateNode.instance,t?n.insertBefore(e,t):n.appendChild(e);else if(4!==a&&null!==(e=e.child))for(kl(e,t,n),e=e.sibling;null!==e;)kl(e,t,n),e=e.sibling}function El(e,t){for(var n,a,r=t,o=!1;;){if(!o){o=r.return;e:for(;;){if(null===o)throw Error(i(160));switch(n=o.stateNode,o.tag){case 5:a=!1;break e;case 3:case 4:n=n.containerInfo,a=!0;break e}o=o.return}o=!0}if(5===r.tag||6===r.tag){e:for(var l=e,s=r,p=s;;)if(_l(l,p),null!==p.child&&4!==p.tag)p.child.return=p,p=p.child;else{if(p===s)break e;for(;null===p.sibling;){if(null===p.return||p.return===s)break e;p=p.return}p.sibling.return=p.return,p=p.sibling}a?(l=n,s=r.stateNode,8===l.nodeType?l.parentNode.removeChild(s):l.removeChild(s)):n.removeChild(r.stateNode)}else if(4===r.tag){if(null!==r.child){n=r.stateNode.containerInfo,a=!0,r.child.return=r,r=r.child;continue}}else if(_l(e,r),null!==r.child){r.child.return=r,r=r.child;continue}if(r===t)break;for(;null===r.sibling;){if(null===r.return||r.return===t)return;4===(r=r.return).tag&&(o=!1)}r.sibling.return=r.return,r=r.sibling}}function Cl(e,t){switch(t.tag){case 0:case 11:case 14:case 15:case 22:var n=t.updateQueue;if(null!==(n=null!==n?n.lastEffect:null)){var a=n=n.next;do{3==(3&a.tag)&&(e=a.destroy,a.destroy=void 0,void 0!==e&&e()),a=a.next}while(a!==n)}return;case 1:case 12:case 17:return;case 5:if(null!=(n=t.stateNode)){a=t.memoizedProps;var r=null!==e?e.memoizedProps:a;e=t.type;var o=t.updateQueue;if(t.updateQueue=null,null!==o){for(n[Ya]=a,\"input\"===e&&\"radio\"===a.type&&null!=a.name&&te(n,a),Ee(e,r),t=Ee(e,a),r=0;r\u003Co.length;r+=2){var l=o[r],s=o[r+1];\"style\"===l?xe(n,s):\"dangerouslySetInnerHTML\"===l?ge(n,s):\"children\"===l?ve(n,s):b(n,l,s,t)}switch(e){case\"input\":ne(n,a);break;case\"textarea\":pe(n,a);break;case\"select\":e=n._wrapperState.wasMultiple,n._wrapperState.wasMultiple=!!a.multiple,null!=(o=a.value)?ie(n,!!a.multiple,o,!1):e!==!!a.multiple&&(null!=a.defaultValue?ie(n,!!a.multiple,a.defaultValue,!0):ie(n,!!a.multiple,a.multiple?[]:\"\",!1))}}}return;case 6:if(null===t.stateNode)throw Error(i(162));return void(t.stateNode.nodeValue=t.memoizedProps);case 3:return void((n=t.stateNode).hydrate&&(n.hydrate=!1,xt(n.containerInfo)));case 13:return null!==t.memoizedState&&(Il=Dr(),vl(t.child,!0)),void Sl(t);case 19:return void Sl(t);case 23:case 24:return void vl(t,null!==t.memoizedState)}throw Error(i(163))}function Sl(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new ml),t.forEach((function(t){var a=Fs.bind(null,e,t);n.has(t)||(n.add(t),t.then(a,a))}))}}function Ml(e,t){return null!==e&&(null===(e=e.memoizedState)||null!==e.dehydrated)&&null!==(t=t.memoizedState)&&null===t.dehydrated}var Ll=Math.ceil,Nl=x.ReactCurrentDispatcher,Zl=x.ReactCurrentOwner,Pl=0,zl=null,Al=null,Bl=0,Hl=0,Tl=pr(0),Rl=0,Ol=null,jl=0,Vl=0,Fl=0,Wl=0,Dl=null,Il=0,Ul=1\u002F0;function $l(){Ul=Dr()+500}var Gl,ql=null,Kl=!1,Xl=null,Ql=null,Jl=!1,Yl=null,es=90,ts=[],ns=[],as=null,rs=0,os=null,is=-1,ls=0,ss=0,ps=null,cs=!1;function ds(){return 0!=(48&Pl)?Dr():-1!==is?is:is=Dr()}function us(e){if(0==(2&(e=e.mode)))return 1;if(0==(4&e))return 99===Ir()?1:2;if(0===ls&&(ls=jl),0!==Xr.transition){0!==ss&&(ss=null!==Dl?Dl.pendingLanes:0),e=ls;var t=4186112&~ss;return 0==(t&=-t)&&0==(t=(e=4186112&~e)&-e)&&(t=8192),t}return e=Ir(),e=jt(0!=(4&Pl)&&98===e?12:e=function(e){switch(e){case 99:return 15;case 98:return 10;case 97:case 96:return 8;case 95:return 2;default:return 0}}(e),ls)}function ms(e,t,n){if(50\u003Crs)throw rs=0,os=null,Error(i(185));if(null===(e=fs(e,t)))return null;Wt(e,t,n),e===zl&&(Fl|=t,4===Rl&&vs(e,Bl));var a=Ir();1===t?0!=(8&Pl)&&0==(48&Pl)?_s(e):(hs(e,n),0===Pl&&($l(),qr())):(0==(4&Pl)||98!==a&&99!==a||(null===as?as=new Set([e]):as.add(e)),hs(e,n)),Dl=e}function fs(e,t){e.lanes|=t;var n=e.alternate;for(null!==n&&(n.lanes|=t),n=e,e=e.return;null!==e;)e.childLanes|=t,null!==(n=e.alternate)&&(n.childLanes|=t),n=e,e=e.return;return 3===n.tag?n.stateNode:null}function hs(e,t){for(var n=e.callbackNode,a=e.suspendedLanes,r=e.pingedLanes,o=e.expirationTimes,l=e.pendingLanes;0\u003Cl;){var s=31-Dt(l),p=1\u003C\u003Cs,c=o[s];if(-1===c){if(0==(p&a)||0!=(p&r)){c=t,Tt(p);var d=Ht;o[s]=10\u003C=d?c+250:6\u003C=d?c+5e3:-1}}else c\u003C=t&&(e.expiredLanes|=p);l&=~p}if(a=Rt(e,e===zl?Bl:0),t=Ht,0===a)null!==n&&(n!==Rr&&Mr(n),e.callbackNode=null,e.callbackPriority=0);else{if(null!==n){if(e.callbackPriority===t)return;n!==Rr&&Mr(n)}15===t?(n=_s.bind(null,e),null===jr?(jr=[n],Vr=Sr(zr,Kr)):jr.push(n),n=Rr):14===t?n=Gr(99,_s.bind(null,e)):(n=function(e){switch(e){case 15:case 14:return 99;case 13:case 12:case 11:case 10:return 98;case 9:case 8:case 7:case 6:case 4:case 5:return 97;case 3:case 2:case 1:return 95;case 0:return 90;default:throw Error(i(358,e))}}(t),n=Gr(n,gs.bind(null,e))),e.callbackPriority=t,e.callbackNode=n}}function gs(e){if(is=-1,ss=ls=0,0!=(48&Pl))throw Error(i(327));var t=e.callbackNode;if(Bs()&&e.callbackNode!==t)return null;var n=Rt(e,e===zl?Bl:0);if(0===n)return null;var a=n,r=Pl;Pl|=16;var o=Cs();for(zl===e&&Bl===a||($l(),ks(e,a));;)try{Ls();break}catch(t){Es(e,t)}if(no(),Nl.current=o,Pl=r,null!==Al?a=0:(zl=null,Bl=0,a=Rl),0!=(jl&Fl))ks(e,0);else if(0!==a){if(2===a&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Ga(e.containerInfo)),0!==(n=Ot(e))&&(a=Ss(e,n))),1===a)throw t=Ol,ks(e,0),vs(e,n),hs(e,Dr()),t;switch(e.finishedWork=e.current.alternate,e.finishedLanes=n,a){case 0:case 1:throw Error(i(345));case 2:case 5:Ps(e);break;case 3:if(vs(e,n),(62914560&n)===n&&10\u003C(a=Il+500-Dr())){if(0!==Rt(e,0))break;if(((r=e.suspendedLanes)&n)!==n){ds(),e.pingedLanes|=e.suspendedLanes&r;break}e.timeoutHandle=Ua(Ps.bind(null,e),a);break}Ps(e);break;case 4:if(vs(e,n),(4186112&n)===n)break;for(a=e.eventTimes,r=-1;0\u003Cn;){var l=31-Dt(n);o=1\u003C\u003Cl,(l=a[l])>r&&(r=l),n&=~o}if(n=r,10\u003C(n=(120>(n=Dr()-n)?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*Ll(n\u002F1960))-n)){e.timeoutHandle=Ua(Ps.bind(null,e),n);break}Ps(e);break;default:throw Error(i(329))}}return hs(e,Dr()),e.callbackNode===t?gs.bind(null,e):null}function vs(e,t){for(t&=~Wl,t&=~Fl,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0\u003Ct;){var n=31-Dt(t),a=1\u003C\u003Cn;e[n]=-1,t&=~a}}function _s(e){if(0!=(48&Pl))throw Error(i(327));if(Bs(),e===zl&&0!=(e.expiredLanes&Bl)){var t=Bl,n=Ss(e,t);0!=(jl&Fl)&&(n=Ss(e,t=Rt(e,t)))}else n=Ss(e,t=Rt(e,0));if(0!==e.tag&&2===n&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Ga(e.containerInfo)),0!==(t=Ot(e))&&(n=Ss(e,t))),1===n)throw n=Ol,ks(e,0),vs(e,t),hs(e,Dr()),n;return e.finishedWork=e.current.alternate,e.finishedLanes=t,Ps(e),hs(e,Dr()),null}function ws(e,t){var n=Pl;Pl|=1;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}}function bs(e,t){var n=Pl;Pl&=-2,Pl|=8;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}}function xs(e,t){dr(Tl,Hl),Hl|=t,jl|=t}function ys(){Hl=Tl.current,cr(Tl)}function ks(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,$a(n)),null!==Al)for(n=Al.return;null!==n;){var a=n;switch(a.tag){case 1:null!=(a=a.type.childContextTypes)&&_r();break;case 3:Ho(),cr(fr),cr(mr),Xo();break;case 5:Ro(a);break;case 4:Ho();break;case 13:case 19:cr(Oo);break;case 10:ao(a);break;case 23:case 24:ys()}n=n.return}zl=e,Al=Us(e.current,null),Bl=Hl=jl=t,Rl=0,Ol=null,Wl=Fl=Vl=0}function Es(e,t){for(;;){var n=Al;try{if(no(),Qo.current=zi,ai){for(var a=ei.memoizedState;null!==a;){var r=a.queue;null!==r&&(r.pending=null),a=a.next}ai=!1}if(Yo=0,ni=ti=ei=null,ri=!1,Zl.current=null,null===n||null===n.return){Rl=1,Ol=t,Al=null;break}e:{var o=e,i=n.return,l=n,s=t;if(t=Bl,l.flags|=2048,l.firstEffect=l.lastEffect=null,null!==s&&\"object\"==typeof s&&\"function\"==typeof s.then){var p=s;if(0==(2&l.mode)){var c=l.alternate;c?(l.updateQueue=c.updateQueue,l.memoizedState=c.memoizedState,l.lanes=c.lanes):(l.updateQueue=null,l.memoizedState=null)}var d=0!=(1&Oo.current),u=i;do{var m;if(m=13===u.tag){var f=u.memoizedState;if(null!==f)m=null!==f.dehydrated;else{var h=u.memoizedProps;m=void 0!==h.fallback&&(!0!==h.unstable_avoidThisFallback||!d)}}if(m){var g=u.updateQueue;if(null===g){var v=new Set;v.add(p),u.updateQueue=v}else g.add(p);if(0==(2&u.mode)){if(u.flags|=64,l.flags|=16384,l.flags&=-2981,1===l.tag)if(null===l.alternate)l.tag=17;else{var _=co(-1,1);_.tag=2,uo(l,_)}l.lanes|=1;break e}s=void 0,l=t;var w=o.pingCache;if(null===w?(w=o.pingCache=new cl,s=new Set,w.set(p,s)):void 0===(s=w.get(p))&&(s=new Set,w.set(p,s)),!s.has(l)){s.add(l);var b=Vs.bind(null,o,p,l);p.then(b,b)}u.flags|=4096,u.lanes=t;break e}u=u.return}while(null!==u);s=Error((G(l.type)||\"A React component\")+\" suspended while rendering, but no fallback UI was specified.\\n\\nAdd a \u003CSuspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display.\")}5!==Rl&&(Rl=2),s=sl(s,l),u=i;do{switch(u.tag){case 3:o=s,u.flags|=4096,t&=-t,u.lanes|=t,mo(u,dl(0,o,t));break e;case 1:o=s;var x=u.type,y=u.stateNode;if(0==(64&u.flags)&&(\"function\"==typeof x.getDerivedStateFromError||null!==y&&\"function\"==typeof y.componentDidCatch&&(null===Ql||!Ql.has(y)))){u.flags|=4096,t&=-t,u.lanes|=t,mo(u,ul(u,o,t));break e}}u=u.return}while(null!==u)}Zs(n)}catch(e){t=e,Al===n&&null!==n&&(Al=n=n.return);continue}break}}function Cs(){var e=Nl.current;return Nl.current=zi,null===e?zi:e}function Ss(e,t){var n=Pl;Pl|=16;var a=Cs();for(zl===e&&Bl===t||ks(e,t);;)try{Ms();break}catch(t){Es(e,t)}if(no(),Pl=n,Nl.current=a,null!==Al)throw Error(i(261));return zl=null,Bl=0,Rl}function Ms(){for(;null!==Al;)Ns(Al)}function Ls(){for(;null!==Al&&!Lr();)Ns(Al)}function Ns(e){var t=Gl(e.alternate,e,Hl);e.memoizedProps=e.pendingProps,null===t?Zs(e):Al=t,Zl.current=null}function Zs(e){var t=e;do{var n=t.alternate;if(e=t.return,0==(2048&t.flags)){if(null!==(n=il(n,t,Hl)))return void(Al=n);if(24!==(n=t).tag&&23!==n.tag||null===n.memoizedState||0!=(1073741824&Hl)||0==(4&n.mode)){for(var a=0,r=n.child;null!==r;)a|=r.lanes|r.childLanes,r=r.sibling;n.childLanes=a}null!==e&&0==(2048&e.flags)&&(null===e.firstEffect&&(e.firstEffect=t.firstEffect),null!==t.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=t.firstEffect),e.lastEffect=t.lastEffect),1\u003Ct.flags&&(null!==e.lastEffect?e.lastEffect.nextEffect=t:e.firstEffect=t,e.lastEffect=t))}else{if(null!==(n=ll(t)))return n.flags&=2047,void(Al=n);null!==e&&(e.firstEffect=e.lastEffect=null,e.flags|=2048)}if(null!==(t=t.sibling))return void(Al=t);Al=t=e}while(null!==t);0===Rl&&(Rl=5)}function Ps(e){var t=Ir();return $r(99,zs.bind(null,e,t)),null}function zs(e,t){do{Bs()}while(null!==Yl);if(0!=(48&Pl))throw Error(i(327));var n=e.finishedWork;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(i(177));e.callbackNode=null;var a=n.lanes|n.childLanes,r=a,o=e.pendingLanes&~r;e.pendingLanes=r,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=r,e.mutableReadLanes&=r,e.entangledLanes&=r,r=e.entanglements;for(var l=e.eventTimes,s=e.expirationTimes;0\u003Co;){var p=31-Dt(o),c=1\u003C\u003Cp;r[p]=0,l[p]=-1,s[p]=-1,o&=~c}if(null!==as&&0==(24&a)&&as.has(e)&&as.delete(e),e===zl&&(Al=zl=null,Bl=0),1\u003Cn.flags?null!==n.lastEffect?(n.lastEffect.nextEffect=n,a=n.firstEffect):a=n:a=n.firstEffect,null!==a){if(r=Pl,Pl|=32,Zl.current=null,Fa=qt,va(l=ga())){if(\"selectionStart\"in l)s={start:l.selectionStart,end:l.selectionEnd};else e:if(s=(s=l.ownerDocument)&&s.defaultView||window,(c=s.getSelection&&s.getSelection())&&0!==c.rangeCount){s=c.anchorNode,o=c.anchorOffset,p=c.focusNode,c=c.focusOffset;try{s.nodeType,p.nodeType}catch(e){s=null;break e}var d=0,u=-1,m=-1,f=0,h=0,g=l,v=null;t:for(;;){for(var _;g!==s||0!==o&&3!==g.nodeType||(u=d+o),g!==p||0!==c&&3!==g.nodeType||(m=d+c),3===g.nodeType&&(d+=g.nodeValue.length),null!==(_=g.firstChild);)v=g,g=_;for(;;){if(g===l)break t;if(v===s&&++f===o&&(u=d),v===p&&++h===c&&(m=d),null!==(_=g.nextSibling))break;v=(g=v).parentNode}g=_}s=-1===u||-1===m?null:{start:u,end:m}}else s=null;s=s||{start:0,end:0}}else s=null;Wa={focusedElem:l,selectionRange:s},qt=!1,ps=null,cs=!1,ql=a;do{try{As()}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);ps=null,ql=a;do{try{for(l=e;null!==ql;){var w=ql.flags;if(16&w&&ve(ql.stateNode,\"\"),128&w){var b=ql.alternate;if(null!==b){var x=b.ref;null!==x&&(\"function\"==typeof x?x(null):x.current=null)}}switch(1038&w){case 2:xl(ql),ql.flags&=-3;break;case 6:xl(ql),ql.flags&=-3,Cl(ql.alternate,ql);break;case 1024:ql.flags&=-1025;break;case 1028:ql.flags&=-1025,Cl(ql.alternate,ql);break;case 4:Cl(ql.alternate,ql);break;case 8:El(l,s=ql);var y=s.alternate;wl(s),null!==y&&wl(y)}ql=ql.nextEffect}}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);if(x=Wa,b=ga(),w=x.focusedElem,l=x.selectionRange,b!==w&&w&&w.ownerDocument&&ha(w.ownerDocument.documentElement,w)){null!==l&&va(w)&&(b=l.start,void 0===(x=l.end)&&(x=b),\"selectionStart\"in w?(w.selectionStart=b,w.selectionEnd=Math.min(x,w.value.length)):(x=(b=w.ownerDocument||document)&&b.defaultView||window).getSelection&&(x=x.getSelection(),s=w.textContent.length,y=Math.min(l.start,s),l=void 0===l.end?y:Math.min(l.end,s),!x.extend&&y>l&&(s=l,l=y,y=s),s=fa(w,y),o=fa(w,l),s&&o&&(1!==x.rangeCount||x.anchorNode!==s.node||x.anchorOffset!==s.offset||x.focusNode!==o.node||x.focusOffset!==o.offset)&&((b=b.createRange()).setStart(s.node,s.offset),x.removeAllRanges(),y>l?(x.addRange(b),x.extend(o.node,o.offset)):(b.setEnd(o.node,o.offset),x.addRange(b))))),b=[];for(x=w;x=x.parentNode;)1===x.nodeType&&b.push({element:x,left:x.scrollLeft,top:x.scrollTop});for(\"function\"==typeof w.focus&&w.focus(),w=0;w\u003Cb.length;w++)(x=b[w]).element.scrollLeft=x.left,x.element.scrollTop=x.top}qt=!!Fa,Wa=Fa=null,e.current=n,ql=a;do{try{for(w=e;null!==ql;){var k=ql.flags;if(36&k&&gl(w,ql.alternate,ql),128&k){b=void 0;var E=ql.ref;if(null!==E){var C=ql.stateNode;ql.tag,b=C,\"function\"==typeof E?E(b):E.current=b}}ql=ql.nextEffect}}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);ql=null,Or(),Pl=r}else e.current=n;if(Jl)Jl=!1,Yl=e,es=t;else for(ql=a;null!==ql;)t=ql.nextEffect,ql.nextEffect=null,8&ql.flags&&((k=ql).sibling=null,k.stateNode=null),ql=t;if(0===(a=e.pendingLanes)&&(Ql=null),1===a?e===os?rs++:(rs=0,os=e):rs=0,n=n.stateNode,Er&&\"function\"==typeof Er.onCommitFiberRoot)try{Er.onCommitFiberRoot(kr,n,void 0,64==(64&n.current.flags))}catch(e){}if(hs(e,Dr()),Kl)throw Kl=!1,e=Xl,Xl=null,e;return 0!=(8&Pl)||qr(),null}function As(){for(;null!==ql;){var e=ql.alternate;cs||null===ps||(0!=(8&ql.flags)?Ye(ql,ps)&&(cs=!0):13===ql.tag&&Ml(e,ql)&&Ye(ql,ps)&&(cs=!0));var t=ql.flags;0!=(256&t)&&hl(e,ql),0==(512&t)||Jl||(Jl=!0,Gr(97,(function(){return Bs(),null}))),ql=ql.nextEffect}}function Bs(){if(90!==es){var e=97\u003Ces?97:es;return es=90,$r(e,Rs)}return!1}function Hs(e,t){ts.push(t,e),Jl||(Jl=!0,Gr(97,(function(){return Bs(),null})))}function Ts(e,t){ns.push(t,e),Jl||(Jl=!0,Gr(97,(function(){return Bs(),null})))}function Rs(){if(null===Yl)return!1;var e=Yl;if(Yl=null,0!=(48&Pl))throw Error(i(331));var t=Pl;Pl|=32;var n=ns;ns=[];for(var a=0;a\u003Cn.length;a+=2){var r=n[a],o=n[a+1],l=r.destroy;if(r.destroy=void 0,\"function\"==typeof l)try{l()}catch(e){if(null===o)throw Error(i(330));js(o,e)}}for(n=ts,ts=[],a=0;a\u003Cn.length;a+=2){r=n[a],o=n[a+1];try{var s=r.create;r.destroy=s()}catch(e){if(null===o)throw Error(i(330));js(o,e)}}for(s=e.current.firstEffect;null!==s;)e=s.nextEffect,s.nextEffect=null,8&s.flags&&(s.sibling=null,s.stateNode=null),s=e;return Pl=t,qr(),!0}function Os(e,t,n){uo(e,t=dl(0,t=sl(n,t),1)),t=ds(),null!==(e=fs(e,1))&&(Wt(e,1,t),hs(e,t))}function js(e,t){if(3===e.tag)Os(e,e,t);else for(var n=e.return;null!==n;){if(3===n.tag){Os(n,e,t);break}if(1===n.tag){var a=n.stateNode;if(\"function\"==typeof n.type.getDerivedStateFromError||\"function\"==typeof a.componentDidCatch&&(null===Ql||!Ql.has(a))){var r=ul(n,e=sl(t,e),1);if(uo(n,r),r=ds(),null!==(n=fs(n,1)))Wt(n,1,r),hs(n,r);else if(\"function\"==typeof a.componentDidCatch&&(null===Ql||!Ql.has(a)))try{a.componentDidCatch(t,e)}catch(e){}break}}n=n.return}}function Vs(e,t,n){var a=e.pingCache;null!==a&&a.delete(t),t=ds(),e.pingedLanes|=e.suspendedLanes&n,zl===e&&(Bl&n)===n&&(4===Rl||3===Rl&&(62914560&Bl)===Bl&&500>Dr()-Il?ks(e,0):Wl|=n),hs(e,t)}function Fs(e,t){var n=e.stateNode;null!==n&&n.delete(t),0==(t=0)&&(0==(2&(t=e.mode))?t=1:0==(4&t)?t=99===Ir()?1:2:(0===ls&&(ls=jl),0===(t=Vt(62914560&~ls))&&(t=4194304))),n=ds(),null!==(e=fs(e,t))&&(Wt(e,t,n),hs(e,n))}function Ws(e,t,n,a){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=a,this.flags=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childLanes=this.lanes=0,this.alternate=null}function Ds(e,t,n,a){return new Ws(e,t,n,a)}function Is(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Us(e,t){var n=e.alternate;return null===n?((n=Ds(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function $s(e,t,n,a,r,o){var l=2;if(a=e,\"function\"==typeof e)Is(e)&&(l=1);else if(\"string\"==typeof e)l=5;else e:switch(e){case E:return Gs(n.children,r,o,t);case T:l=8,r|=16;break;case C:l=8,r|=1;break;case S:return(e=Ds(12,n,t,8|r)).elementType=S,e.type=S,e.lanes=o,e;case Z:return(e=Ds(13,n,t,r)).type=Z,e.elementType=Z,e.lanes=o,e;case P:return(e=Ds(19,n,t,r)).elementType=P,e.lanes=o,e;case R:return qs(n,r,o,t);case O:return(e=Ds(24,n,t,r)).elementType=O,e.lanes=o,e;default:if(\"object\"==typeof e&&null!==e)switch(e.$$typeof){case M:l=10;break e;case L:l=9;break e;case N:l=11;break e;case z:l=14;break e;case A:l=16,a=null;break e;case B:l=22;break e}throw Error(i(130,null==e?e:typeof e,\"\"))}return(t=Ds(l,n,t,r)).elementType=e,t.type=a,t.lanes=o,t}function Gs(e,t,n,a){return(e=Ds(7,e,a,t)).lanes=n,e}function qs(e,t,n,a){return(e=Ds(23,e,a,t)).elementType=R,e.lanes=n,e}function Ks(e,t,n){return(e=Ds(6,e,null,t)).lanes=n,e}function Xs(e,t,n){return(t=Ds(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Qs(e,t,n){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=0,this.eventTimes=Ft(0),this.expirationTimes=Ft(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Ft(0),this.mutableSourceEagerHydrationData=null}function Js(e,t,n,a){var r=t.current,o=ds(),l=us(r);e:if(n){t:{if(Ke(n=n._reactInternals)!==n||1!==n.tag)throw Error(i(170));var s=n;do{switch(s.tag){case 3:s=s.stateNode.context;break t;case 1:if(vr(s.type)){s=s.stateNode.__reactInternalMemoizedMergedChildContext;break t}}s=s.return}while(null!==s);throw Error(i(171))}if(1===n.tag){var p=n.type;if(vr(p)){n=br(n,p,s);break e}}n=s}else n=ur;return null===t.context?t.context=n:t.pendingContext=n,(t=co(o,l)).payload={element:e},null!==(a=void 0===a?null:a)&&(t.callback=a),uo(r,t),ms(r,l,o),l}function Ys(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function ep(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n\u003Ct?n:t}}function tp(e,t){ep(e,t),(e=e.alternate)&&ep(e,t)}function np(e,t,n){var a=null!=n&&null!=n.hydrationOptions&&n.hydrationOptions.mutableSources||null;if(n=new Qs(e,t,null!=n&&!0===n.hydrate),t=Ds(3,null,null,2===t?7:1===t?3:0),n.current=t,t.stateNode=n,so(t),e[er]=n.current,za(8===e.nodeType?e.parentNode:e),a)for(e=0;e\u003Ca.length;e++){var r=(t=a[e])._getVersion;r=r(t._source),null==n.mutableSourceEagerHydrationData?n.mutableSourceEagerHydrationData=[t,r]:n.mutableSourceEagerHydrationData.push(t,r)}this._internalRoot=n}function ap(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||\" react-mount-point-unstable \"!==e.nodeValue))}function rp(e,t,n,a,r){var o=n._reactRootContainer;if(o){var i=o._internalRoot;if(\"function\"==typeof r){var l=r;r=function(){var e=Ys(i);l.call(e)}}Js(t,i,e,r)}else{if(o=n._reactRootContainer=function(e,t){if(t||(t=!(!(t=e?9===e.nodeType?e.documentElement:e.firstChild:null)||1!==t.nodeType||!t.hasAttribute(\"data-reactroot\"))),!t)for(var n;n=e.lastChild;)e.removeChild(n);return new np(e,0,t?{hydrate:!0}:void 0)}(n,a),i=o._internalRoot,\"function\"==typeof r){var s=r;r=function(){var e=Ys(i);s.call(e)}}bs((function(){Js(t,i,e,r)}))}return Ys(i)}function op(e,t){var n=2\u003Carguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!ap(t))throw Error(i(200));return function(e,t,n){var a=3\u003Carguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:k,key:null==a?null:\"\"+a,children:e,containerInfo:t,implementation:n}}(e,t,null,n)}Gl=function(e,t,n){var a=t.lanes;if(null!==e)if(e.memoizedProps!==t.pendingProps||fr.current)Ri=!0;else{if(0==(n&a)){switch(Ri=!1,t.tag){case 3:Gi(t),qo();break;case 5:To(t);break;case 1:vr(t.type)&&xr(t);break;case 4:Bo(t,t.stateNode.containerInfo);break;case 10:a=t.memoizedProps.value;var r=t.type._context;dr(Jr,r._currentValue),r._currentValue=a;break;case 13:if(null!==t.memoizedState)return 0!=(n&t.child.childLanes)?Yi(e,t,n):(dr(Oo,1&Oo.current),null!==(t=rl(e,t,n))?t.sibling:null);dr(Oo,1&Oo.current);break;case 19:if(a=0!=(n&t.childLanes),0!=(64&e.flags)){if(a)return al(e,t,n);t.flags|=64}if(null!==(r=t.memoizedState)&&(r.rendering=null,r.tail=null,r.lastEffect=null),dr(Oo,Oo.current),a)break;return null;case 23:case 24:return t.lanes=0,Wi(e,t,n)}return rl(e,t,n)}Ri=0!=(16384&e.flags)}else Ri=!1;switch(t.lanes=0,t.tag){case 2:if(a=t.type,null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=gr(t,mr.current),oo(t,n),r=li(null,t,a,e,r,n),t.flags|=1,\"object\"==typeof r&&null!==r&&\"function\"==typeof r.render&&void 0===r.$$typeof){if(t.tag=1,t.memoizedState=null,t.updateQueue=null,vr(a)){var o=!0;xr(t)}else o=!1;t.memoizedState=null!==r.state&&void 0!==r.state?r.state:null,so(t);var l=a.getDerivedStateFromProps;\"function\"==typeof l&&vo(t,a,l,e),r.updater=_o,t.stateNode=r,r._reactInternals=t,yo(t,a,e,n),t=$i(null,t,a,!0,o,n)}else t.tag=0,Oi(null,t,r,n),t=t.child;return t;case 16:r=t.elementType;e:{switch(null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=(o=r._init)(r._payload),t.type=r,o=t.tag=function(e){if(\"function\"==typeof e)return Is(e)?1:0;if(null!=e){if((e=e.$$typeof)===N)return 11;if(e===z)return 14}return 2}(r),e=Qr(r,e),o){case 0:t=Ii(null,t,r,e,n);break e;case 1:t=Ui(null,t,r,e,n);break e;case 11:t=ji(null,t,r,e,n);break e;case 14:t=Vi(null,t,r,Qr(r.type,e),a,n);break e}throw Error(i(306,r,\"\"))}return t;case 0:return a=t.type,r=t.pendingProps,Ii(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 1:return a=t.type,r=t.pendingProps,Ui(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 3:if(Gi(t),a=t.updateQueue,null===e||null===a)throw Error(i(282));if(a=t.pendingProps,r=null!==(r=t.memoizedState)?r.element:null,po(e,t),fo(t,a,null,n),(a=t.memoizedState.element)===r)qo(),t=rl(e,t,n);else{if((o=(r=t.stateNode).hydrate)&&(Fo=qa(t.stateNode.containerInfo.firstChild),Vo=t,o=Wo=!0),o){if(null!=(e=r.mutableSourceEagerHydrationData))for(r=0;r\u003Ce.length;r+=2)(o=e[r])._workInProgressVersionPrimary=e[r+1],Ko.push(o);for(n=Lo(t,null,a,n),t.child=n;n;)n.flags=-3&n.flags|1024,n=n.sibling}else Oi(e,t,a,n),qo();t=t.child}return t;case 5:return To(t),null===e&&Uo(t),a=t.type,r=t.pendingProps,o=null!==e?e.memoizedProps:null,l=r.children,Ia(a,r)?l=null:null!==o&&Ia(a,o)&&(t.flags|=16),Di(e,t),Oi(e,t,l,n),t.child;case 6:return null===e&&Uo(t),null;case 13:return Yi(e,t,n);case 4:return Bo(t,t.stateNode.containerInfo),a=t.pendingProps,null===e?t.child=Mo(t,null,a,n):Oi(e,t,a,n),t.child;case 11:return a=t.type,r=t.pendingProps,ji(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 7:return Oi(e,t,t.pendingProps,n),t.child;case 8:case 12:return Oi(e,t,t.pendingProps.children,n),t.child;case 10:e:{a=t.type._context,r=t.pendingProps,l=t.memoizedProps,o=r.value;var s=t.type._context;if(dr(Jr,s._currentValue),s._currentValue=o,null!==l)if(s=l.value,0==(o=ca(s,o)?0:0|(\"function\"==typeof a._calculateChangedBits?a._calculateChangedBits(s,o):1073741823))){if(l.children===r.children&&!fr.current){t=rl(e,t,n);break e}}else for(null!==(s=t.child)&&(s.return=t);null!==s;){var p=s.dependencies;if(null!==p){l=s.child;for(var c=p.firstContext;null!==c;){if(c.context===a&&0!=(c.observedBits&o)){1===s.tag&&((c=co(-1,n&-n)).tag=2,uo(s,c)),s.lanes|=n,null!==(c=s.alternate)&&(c.lanes|=n),ro(s.return,n),p.lanes|=n;break}c=c.next}}else l=10===s.tag&&s.type===t.type?null:s.child;if(null!==l)l.return=s;else for(l=s;null!==l;){if(l===t){l=null;break}if(null!==(s=l.sibling)){s.return=l.return,l=s;break}l=l.return}s=l}Oi(e,t,r.children,n),t=t.child}return t;case 9:return r=t.type,a=(o=t.pendingProps).children,oo(t,n),a=a(r=io(r,o.unstable_observedBits)),t.flags|=1,Oi(e,t,a,n),t.child;case 14:return o=Qr(r=t.type,t.pendingProps),Vi(e,t,r,o=Qr(r.type,o),a,n);case 15:return Fi(e,t,t.type,t.pendingProps,a,n);case 17:return a=t.type,r=t.pendingProps,r=t.elementType===a?r:Qr(a,r),null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),t.tag=1,vr(a)?(e=!0,xr(t)):e=!1,oo(t,n),bo(t,a,r),yo(t,a,r,n),$i(null,t,a,!0,e,n);case 19:return al(e,t,n);case 23:case 24:return Wi(e,t,n)}throw Error(i(156,t.tag))},np.prototype.render=function(e){Js(e,this._internalRoot,null,null)},np.prototype.unmount=function(){var e=this._internalRoot,t=e.containerInfo;Js(null,e,null,(function(){t[er]=null}))},et=function(e){13===e.tag&&(ms(e,4,ds()),tp(e,4))},tt=function(e){13===e.tag&&(ms(e,67108864,ds()),tp(e,67108864))},nt=function(e){if(13===e.tag){var t=ds(),n=us(e);ms(e,n,t),tp(e,n)}},at=function(e,t){return t()},Se=function(e,t,n){switch(t){case\"input\":if(ne(e,n),t=n.name,\"radio\"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll(\"input[name=\"+JSON.stringify(\"\"+t)+'][type=\"radio\"]'),t=0;t\u003Cn.length;t++){var a=n[t];if(a!==e&&a.form===e.form){var r=or(a);if(!r)throw Error(i(90));Q(a),ne(a,r)}}}break;case\"textarea\":pe(e,n);break;case\"select\":null!=(t=n.value)&&ie(e,!!n.multiple,t,!1)}},ze=ws,Ae=function(e,t,n,a,r){var o=Pl;Pl|=4;try{return $r(98,e.bind(null,t,n,a,r))}finally{0===(Pl=o)&&($l(),qr())}},Be=function(){0==(49&Pl)&&(function(){if(null!==as){var e=as;as=null,e.forEach((function(e){e.expiredLanes|=24&e.pendingLanes,hs(e,Dr())}))}qr()}(),Bs())},He=function(e,t){var n=Pl;Pl|=2;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}};var ip={Events:[ar,rr,or,Ze,Pe,Bs,{current:!1}]},lp={findFiberByHostInstance:nr,bundleType:0,version:\"17.0.2\",rendererPackageName:\"react-dom\"},sp={bundleType:lp.bundleType,version:lp.version,rendererPackageName:lp.rendererPackageName,rendererConfig:lp.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:x.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=Je(e))?null:e.stateNode},findFiberByHostInstance:lp.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null};if(\"undefined\"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var pp=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!pp.isDisabled&&pp.supportsFiber)try{kr=pp.inject(sp),Er=pp}catch(he){}}t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ip,t.createPortal=op,t.findDOMNode=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternals;if(void 0===t){if(\"function\"==typeof e.render)throw Error(i(188));throw Error(i(268,Object.keys(e)))}return null===(e=Je(t))?null:e.stateNode},t.flushSync=function(e,t){var n=Pl;if(0!=(48&n))return e(t);Pl|=1;try{if(e)return $r(99,e.bind(null,t))}finally{Pl=n,qr()}},t.hydrate=function(e,t,n){if(!ap(t))throw Error(i(200));return rp(null,e,t,!0,n)},t.render=function(e,t,n){if(!ap(t))throw Error(i(200));return rp(null,e,t,!1,n)},t.unmountComponentAtNode=function(e){if(!ap(e))throw Error(i(40));return!!e._reactRootContainer&&(bs((function(){rp(null,null,e,!1,(function(){e._reactRootContainer=null,e[er]=null}))})),!0)},t.unstable_batchedUpdates=ws,t.unstable_createPortal=function(e,t){return op(e,t,2\u003Carguments.length&&void 0!==arguments[2]?arguments[2]:null)},t.unstable_renderSubtreeIntoContainer=function(e,t,n,a){if(!ap(n))throw Error(i(200));if(null==e||void 0===e._reactInternals)throw Error(i(38));return rp(e,t,n,!1,a)},t.version=\"17.0.2\"},3935:(e,t,n)=>{\"use strict\";!function e(){if(\"undefined\"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&\"function\"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),e.exports=n(4448)},2408:(e,t,n)=>{\"use strict\";var a=n(7418),r=60103,o=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var i=60109,l=60110,s=60112;t.Suspense=60113;var p=60115,c=60116;if(\"function\"==typeof Symbol&&Symbol.for){var d=Symbol.for;r=d(\"react.element\"),o=d(\"react.portal\"),t.Fragment=d(\"react.fragment\"),t.StrictMode=d(\"react.strict_mode\"),t.Profiler=d(\"react.profiler\"),i=d(\"react.provider\"),l=d(\"react.context\"),s=d(\"react.forward_ref\"),t.Suspense=d(\"react.suspense\"),p=d(\"react.memo\"),c=d(\"react.lazy\")}var u=\"function\"==typeof Symbol&&Symbol.iterator;function m(e){for(var t=\"https:\u002F\u002Freactjs.org\u002Fdocs\u002Ferror-decoder.html?invariant=\"+e,n=1;n\u003Carguments.length;n++)t+=\"&args[]=\"+encodeURIComponent(arguments[n]);return\"Minified React error #\"+e+\"; visit \"+t+\" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\"}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h={};function g(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||f}function v(){}function _(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||f}g.prototype.isReactComponent={},g.prototype.setState=function(e,t){if(\"object\"!=typeof e&&\"function\"!=typeof e&&null!=e)throw Error(m(85));this.updater.enqueueSetState(this,e,t,\"setState\")},g.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,\"forceUpdate\")},v.prototype=g.prototype;var w=_.prototype=new v;w.constructor=_,a(w,g.prototype),w.isPureReactComponent=!0;var b={current:null},x=Object.prototype.hasOwnProperty,y={key:!0,ref:!0,__self:!0,__source:!0};function k(e,t,n){var a,o={},i=null,l=null;if(null!=t)for(a in void 0!==t.ref&&(l=t.ref),void 0!==t.key&&(i=\"\"+t.key),t)x.call(t,a)&&!y.hasOwnProperty(a)&&(o[a]=t[a]);var s=arguments.length-2;if(1===s)o.children=n;else if(1\u003Cs){for(var p=Array(s),c=0;c\u003Cs;c++)p[c]=arguments[c+2];o.children=p}if(e&&e.defaultProps)for(a in s=e.defaultProps)void 0===o[a]&&(o[a]=s[a]);return{$$typeof:r,type:e,key:i,ref:l,props:o,_owner:b.current}}function E(e){return\"object\"==typeof e&&null!==e&&e.$$typeof===r}var C=\u002F\\\u002F+\u002Fg;function S(e,t){return\"object\"==typeof e&&null!==e&&null!=e.key?function(e){var t={\"=\":\"=0\",\":\":\"=2\"};return\"$\"+e.replace(\u002F[=:]\u002Fg,(function(e){return t[e]}))}(\"\"+e.key):t.toString(36)}function M(e,t,n,a,i){var l=typeof e;\"undefined\"!==l&&\"boolean\"!==l||(e=null);var s=!1;if(null===e)s=!0;else switch(l){case\"string\":case\"number\":s=!0;break;case\"object\":switch(e.$$typeof){case r:case o:s=!0}}if(s)return i=i(s=e),e=\"\"===a?\".\"+S(s,0):a,Array.isArray(i)?(n=\"\",null!=e&&(n=e.replace(C,\"$&\u002F\")+\"\u002F\"),M(i,t,n,\"\",(function(e){return e}))):null!=i&&(E(i)&&(i=function(e,t){return{$$typeof:r,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(i,n+(!i.key||s&&s.key===i.key?\"\":(\"\"+i.key).replace(C,\"$&\u002F\")+\"\u002F\")+e)),t.push(i)),1;if(s=0,a=\"\"===a?\".\":a+\":\",Array.isArray(e))for(var p=0;p\u003Ce.length;p++){var c=a+S(l=e[p],p);s+=M(l,t,n,c,i)}else if(c=function(e){return null===e||\"object\"!=typeof e?null:\"function\"==typeof(e=u&&e[u]||e[\"@@iterator\"])?e:null}(e),\"function\"==typeof c)for(e=c.call(e),p=0;!(l=e.next()).done;)s+=M(l=l.value,t,n,c=a+S(l,p++),i);else if(\"object\"===l)throw t=\"\"+e,Error(m(31,\"[object Object]\"===t?\"object with keys {\"+Object.keys(e).join(\", \")+\"}\":t));return s}function L(e,t,n){if(null==e)return e;var a=[],r=0;return M(e,a,\"\",\"\",(function(e){return t.call(n,e,r++)})),a}function N(e){if(-1===e._status){var t=e._result;t=t(),e._status=0,e._result=t,t.then((function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)}),(function(t){0===e._status&&(e._status=2,e._result=t)}))}if(1===e._status)return e._result;throw e._result}var Z={current:null};function P(){var e=Z.current;if(null===e)throw Error(m(321));return e}var z={ReactCurrentDispatcher:Z,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:b,IsSomeRendererActing:{current:!1},assign:a};t.Children={map:L,forEach:function(e,t,n){L(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return L(e,(function(){t++})),t},toArray:function(e){return L(e,(function(e){return e}))||[]},only:function(e){if(!E(e))throw Error(m(143));return e}},t.Component=g,t.PureComponent=_,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=z,t.cloneElement=function(e,t,n){if(null==e)throw Error(m(267,e));var o=a({},e.props),i=e.key,l=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(l=t.ref,s=b.current),void 0!==t.key&&(i=\"\"+t.key),e.type&&e.type.defaultProps)var p=e.type.defaultProps;for(c in t)x.call(t,c)&&!y.hasOwnProperty(c)&&(o[c]=void 0===t[c]&&void 0!==p?p[c]:t[c])}var c=arguments.length-2;if(1===c)o.children=n;else if(1\u003Cc){p=Array(c);for(var d=0;d\u003Cc;d++)p[d]=arguments[d+2];o.children=p}return{$$typeof:r,type:e.type,key:i,ref:l,props:o,_owner:s}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:l,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:i,_context:e},e.Consumer=e},t.createElement=k,t.createFactory=function(e){var t=k.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:s,render:e}},t.isValidElement=E,t.lazy=function(e){return{$$typeof:c,_payload:{_status:-1,_result:e},_init:N}},t.memo=function(e,t){return{$$typeof:p,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return P().useCallback(e,t)},t.useContext=function(e,t){return P().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return P().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return P().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return P().useLayoutEffect(e,t)},t.useMemo=function(e,t){return P().useMemo(e,t)},t.useReducer=function(e,t,n){return P().useReducer(e,t,n)},t.useRef=function(e){return P().useRef(e)},t.useState=function(e){return P().useState(e)},t.version=\"17.0.2\"},7294:(e,t,n)=>{\"use strict\";e.exports=n(2408)},53:(e,t)=>{\"use strict\";var n,a,r,o;if(\"object\"==typeof performance&&\"function\"==typeof performance.now){var i=performance;t.unstable_now=function(){return i.now()}}else{var l=Date,s=l.now();t.unstable_now=function(){return l.now()-s}}if(\"undefined\"==typeof window||\"function\"!=typeof MessageChannel){var p=null,c=null,d=function(){if(null!==p)try{var e=t.unstable_now();p(!0,e),p=null}catch(e){throw setTimeout(d,0),e}};n=function(e){null!==p?setTimeout(n,0,e):(p=e,setTimeout(d,0))},a=function(e,t){c=setTimeout(e,t)},r=function(){clearTimeout(c)},t.unstable_shouldYield=function(){return!1},o=t.unstable_forceFrameRate=function(){}}else{var u=window.setTimeout,m=window.clearTimeout;if(\"undefined\"!=typeof console){var f=window.cancelAnimationFrame;\"function\"!=typeof window.requestAnimationFrame&&console.error(\"This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https:\u002F\u002Freactjs.org\u002Flink\u002Freact-polyfills\"),\"function\"!=typeof f&&console.error(\"This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https:\u002F\u002Freactjs.org\u002Flink\u002Freact-polyfills\")}var h=!1,g=null,v=-1,_=5,w=0;t.unstable_shouldYield=function(){return t.unstable_now()>=w},o=function(){},t.unstable_forceFrameRate=function(e){0>e||125\u003Ce?console.error(\"forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported\"):_=0\u003Ce?Math.floor(1e3\u002Fe):5};var b=new MessageChannel,x=b.port2;b.port1.onmessage=function(){if(null!==g){var e=t.unstable_now();w=e+_;try{g(!0,e)?x.postMessage(null):(h=!1,g=null)}catch(e){throw x.postMessage(null),e}}else h=!1},n=function(e){g=e,h||(h=!0,x.postMessage(null))},a=function(e,n){v=u((function(){e(t.unstable_now())}),n)},r=function(){m(v),v=-1}}function y(e,t){var n=e.length;e.push(t);e:for(;;){var a=n-1>>>1,r=e[a];if(!(void 0!==r&&0\u003CC(r,t)))break e;e[a]=t,e[n]=r,n=a}}function k(e){return void 0===(e=e[0])?null:e}function E(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var a=0,r=e.length;a\u003Cr;){var o=2*(a+1)-1,i=e[o],l=o+1,s=e[l];if(void 0!==i&&0>C(i,n))void 0!==s&&0>C(s,i)?(e[a]=s,e[l]=n,a=l):(e[a]=i,e[o]=n,a=o);else{if(!(void 0!==s&&0>C(s,n)))break e;e[a]=s,e[l]=n,a=l}}}return t}return null}function C(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var S=[],M=[],L=1,N=null,Z=3,P=!1,z=!1,A=!1;function B(e){for(var t=k(M);null!==t;){if(null===t.callback)E(M);else{if(!(t.startTime\u003C=e))break;E(M),t.sortIndex=t.expirationTime,y(S,t)}t=k(M)}}function H(e){if(A=!1,B(e),!z)if(null!==k(S))z=!0,n(T);else{var t=k(M);null!==t&&a(H,t.startTime-e)}}function T(e,n){z=!1,A&&(A=!1,r()),P=!0;var o=Z;try{for(B(n),N=k(S);null!==N&&(!(N.expirationTime>n)||e&&!t.unstable_shouldYield());){var i=N.callback;if(\"function\"==typeof i){N.callback=null,Z=N.priorityLevel;var l=i(N.expirationTime\u003C=n);n=t.unstable_now(),\"function\"==typeof l?N.callback=l:N===k(S)&&E(S),B(n)}else E(S);N=k(S)}if(null!==N)var s=!0;else{var p=k(M);null!==p&&a(H,p.startTime-n),s=!1}return s}finally{N=null,Z=o,P=!1}}var R=o;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){z||P||(z=!0,n(T))},t.unstable_getCurrentPriorityLevel=function(){return Z},t.unstable_getFirstCallbackNode=function(){return k(S)},t.unstable_next=function(e){switch(Z){case 1:case 2:case 3:var t=3;break;default:t=Z}var n=Z;Z=t;try{return e()}finally{Z=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=R,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=Z;Z=e;try{return t()}finally{Z=n}},t.unstable_scheduleCallback=function(e,o,i){var l=t.unstable_now();switch(i=\"object\"==typeof i&&null!==i&&\"number\"==typeof(i=i.delay)&&0\u003Ci?l+i:l,e){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return e={id:L++,callback:o,priorityLevel:e,startTime:i,expirationTime:s=i+s,sortIndex:-1},i>l?(e.sortIndex=i,y(M,e),null===k(S)&&e===k(M)&&(A?r():A=!0,a(H,i-l))):(e.sortIndex=s,y(S,e),z||P||(z=!0,n(T))),e},t.unstable_wrapCallback=function(e){var t=Z;return function(){var n=Z;Z=t;try{return e.apply(this,arguments)}finally{Z=n}}}},3840:(e,t,n)=>{\"use strict\";e.exports=n(53)},8975:(e,t,n)=>{var a;!function(){\"use strict\";var r={not_string:\u002F[^s]\u002F,not_bool:\u002F[^t]\u002F,not_type:\u002F[^T]\u002F,not_primitive:\u002F[^v]\u002F,number:\u002F[diefg]\u002F,numeric_arg:\u002F[bcdiefguxX]\u002F,json:\u002F[j]\u002F,not_json:\u002F[^j]\u002F,text:\u002F^[^\\x25]+\u002F,modulo:\u002F^\\x25{2}\u002F,placeholder:\u002F^\\x25(?:([1-9]\\d*)\\$|\\(([^)]+)\\))?(\\+)?(0|'[^$])?(-)?(\\d+)?(?:\\.(\\d+))?([b-gijostTuvxX])\u002F,key:\u002F^([a-z_][a-z_\\d]*)\u002Fi,key_access:\u002F^\\.([a-z_][a-z_\\d]*)\u002Fi,index_access:\u002F^\\[(\\d+)\\]\u002F,sign:\u002F^[+-]\u002F};function o(e){return function(e,t){var n,a,i,l,s,p,c,d,u,m=1,f=e.length,h=\"\";for(a=0;a\u003Cf;a++)if(\"string\"==typeof e[a])h+=e[a];else if(\"object\"==typeof e[a]){if((l=e[a]).keys)for(n=t[m],i=0;i\u003Cl.keys.length;i++){if(null==n)throw new Error(o('[sprintf] Cannot access property \"%s\" of undefined value \"%s\"',l.keys[i],l.keys[i-1]));n=n[l.keys[i]]}else n=l.param_no?t[l.param_no]:t[m++];if(r.not_type.test(l.type)&&r.not_primitive.test(l.type)&&n instanceof Function&&(n=n()),r.numeric_arg.test(l.type)&&\"number\"!=typeof n&&isNaN(n))throw new TypeError(o(\"[sprintf] expecting number but found %T\",n));switch(r.number.test(l.type)&&(d=n>=0),l.type){case\"b\":n=parseInt(n,10).toString(2);break;case\"c\":n=String.fromCharCode(parseInt(n,10));break;case\"d\":case\"i\":n=parseInt(n,10);break;case\"j\":n=JSON.stringify(n,null,l.width?parseInt(l.width):0);break;case\"e\":n=l.precision?parseFloat(n).toExponential(l.precision):parseFloat(n).toExponential();break;case\"f\":n=l.precision?parseFloat(n).toFixed(l.precision):parseFloat(n);break;case\"g\":n=l.precision?String(Number(n.toPrecision(l.precision))):parseFloat(n);break;case\"o\":n=(parseInt(n,10)>>>0).toString(8);break;case\"s\":n=String(n),n=l.precision?n.substring(0,l.precision):n;break;case\"t\":n=String(!!n),n=l.precision?n.substring(0,l.precision):n;break;case\"T\":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=l.precision?n.substring(0,l.precision):n;break;case\"u\":n=parseInt(n,10)>>>0;break;case\"v\":n=n.valueOf(),n=l.precision?n.substring(0,l.precision):n;break;case\"x\":n=(parseInt(n,10)>>>0).toString(16);break;case\"X\":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}r.json.test(l.type)?h+=n:(!r.number.test(l.type)||d&&!l.sign?u=\"\":(u=d?\"+\":\"-\",n=n.toString().replace(r.sign,\"\")),p=l.pad_char?\"0\"===l.pad_char?\"0\":l.pad_char.charAt(1):\" \",c=l.width-(u+n).length,s=l.width&&c>0?p.repeat(c):\"\",h+=l.align?u+n+s:\"0\"===p?u+s+n:s+u+n)}return h}(function(e){if(l[e])return l[e];for(var t,n=e,a=[],o=0;n;){if(null!==(t=r.text.exec(n)))a.push(t[0]);else if(null!==(t=r.modulo.exec(n)))a.push(\"%\");else{if(null===(t=r.placeholder.exec(n)))throw new SyntaxError(\"[sprintf] unexpected placeholder\");if(t[2]){o|=1;var i=[],s=t[2],p=[];if(null===(p=r.key.exec(s)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");for(i.push(p[1]);\"\"!==(s=s.substring(p[0].length));)if(null!==(p=r.key_access.exec(s)))i.push(p[1]);else{if(null===(p=r.index_access.exec(s)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");i.push(p[1])}t[2]=i}else o|=2;if(3===o)throw new Error(\"[sprintf] mixing positional and named placeholders is not (yet) supported\");a.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}n=n.substring(t[0].length)}return l[e]=a}(e),arguments)}function i(e,t){return o.apply(null,[e].concat(t||[]))}var l=Object.create(null);\"undefined\"!=typeof window&&(window.sprintf=o,window.vsprintf=i,void 0===(a=function(){return{sprintf:o,vsprintf:i}}.call(t,n,t,e))||(e.exports=a))}()},6129:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6511),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},563:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(3038),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3493:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(725),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},9780:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(5735),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},8350:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(9455),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2156:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(283),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},977:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(4421),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},7376:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(2041),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},6680:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6657),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3479:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(2793),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},4602:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(4558),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3358:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6922),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2413:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(439),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},6509:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(9839),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},619:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1211),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2158:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1589),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},4201:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1729),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3379:e=>{\"use strict\";var t=[];function n(e){for(var n=-1,a=0;a\u003Ct.length;a++)if(t[a].identifier===e){n=a;break}return n}function a(e,a){for(var o={},i=[],l=0;l\u003Ce.length;l++){var s=e[l],p=a.base?s[0]+a.base:s[0],c=o[p]||0,d=\"\".concat(p,\" \").concat(c);o[p]=c+1;var u=n(d),m={css:s[1],media:s[2],sourceMap:s[3],supports:s[4],layer:s[5]};if(-1!==u)t[u].references++,t[u].updater(m);else{var f=r(m,a);a.byIndex=l,t.splice(l,0,{identifier:d,updater:f,references:1})}i.push(d)}return i}function r(e,t){var n=t.domAPI(t);return n.update(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap&&t.supports===e.supports&&t.layer===e.layer)return;n.update(e=t)}else n.remove()}}e.exports=function(e,r){var o=a(e=e||[],r=r||{});return function(e){e=e||[];for(var i=0;i\u003Co.length;i++){var l=n(o[i]);t[l].references--}for(var s=a(e,r),p=0;p\u003Co.length;p++){var c=n(o[p]);0===t[c].references&&(t[c].updater(),t.splice(c,1))}o=s}}},569:e=>{\"use strict\";var t={};e.exports=function(e,n){var a=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!a)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");a.appendChild(n)}},9216:e=>{\"use strict\";e.exports=function(e){var t=document.createElement(\"style\");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{\"use strict\";e.exports=function(e){var t=n.nc;t&&e.setAttribute(\"nonce\",t)}},7795:e=>{\"use strict\";e.exports=function(e){if(\"undefined\"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var a=\"\";n.supports&&(a+=\"@supports (\".concat(n.supports,\") {\")),n.media&&(a+=\"@media \".concat(n.media,\" {\"));var r=void 0!==n.layer;r&&(a+=\"@layer\".concat(n.layer.length>0?\" \".concat(n.layer):\"\",\" {\")),a+=n.css,r&&(a+=\"}\"),n.media&&(a+=\"}\"),n.supports&&(a+=\"}\");var o=n.sourceMap;o&&\"undefined\"!=typeof btoa&&(a+=\"\\n\u002F*# sourceMappingURL=data:application\u002Fjson;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o)))),\" *\u002F\")),t.styleTagTransform(a,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{\"use strict\";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},5022:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7680),r={contextDelimiter:\"\u0004\",onMissingKey:null};function o(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},r)this.options[n]=void 0!==t&&n in t?t[n]:r[n]}o.prototype.getPluralForm=function(e,t){var n,r,o,i=this.pluralForms[e];return i||(\"function\"!=typeof(o=(n=this.data[e][\"\"])[\"Plural-Forms\"]||n[\"plural-forms\"]||n.plural_forms)&&(r=function(e){var t,n,a;for(t=e.split(\";\"),n=0;n\u003Ct.length;n++)if(0===(a=t[n].trim()).indexOf(\"plural=\"))return a.substr(7)}(n[\"Plural-Forms\"]||n[\"plural-forms\"]||n.plural_forms),o=(0,a.Z)(r)),i=this.pluralForms[e]=o),i(t)},o.prototype.dcnpgettext=function(e,t,n,a,r){var o,i,l;return o=void 0===r?0:this.getPluralForm(e,r),i=n,t&&(i=t+this.options.contextDelimiter+n),(l=this.data[e][i])&&l[o]?l[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===o?n:a)}},4975:e=>{\"use strict\";e.exports=\"data:image\u002Fsvg+xml,%3Csvg width=%2742%27 height=%2742%27 viewBox=%270 0 42 42%27 fill=%27none%27 xmlns=%27http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg%27%3E%3Cpath d=%27M0 42V7C0 3.13401 3.13401 0 7 0H42L0 42Z%27 fill=%27%23FF285E%27\u002F%3E%3C\u002Fsvg%3E\"},7462:(e,t,n)=>{\"use strict\";function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t\u003Carguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},a.apply(this,arguments)}n.d(t,{Z:()=>a})},6290:(e,t,n)=>{\"use strict\";function a(e,t){var n,a,r=0;function o(){var o,i,l=n,s=arguments.length;e:for(;l;){if(l.args.length===arguments.length){for(i=0;i\u003Cs;i++)if(l.args[i]!==arguments[i]){l=l.next;continue e}return l!==n&&(l===a&&(a=l.prev),l.prev.next=l.next,l.next&&(l.next.prev=l.prev),l.next=n,l.prev=null,n.prev=l,n=l),l.val}l=l.next}for(o=new Array(s),i=0;i\u003Cs;i++)o[i]=arguments[i];return l={args:o,val:e.apply(null,o)},n?(n.prev=l,l.next=n):a=l,r===t.maxSize?(a=a.prev).next=null:r++,n=l,l.val}return t=t||{},o.clear=function(){n=null,a=null,r=0},o}n.d(t,{Z:()=>a})}},t={};function n(a){var r=t[a];if(void 0!==r)return r.exports;var o=t[a]={id:a,exports:{}};return e[a](o,o.exports,n),o.exports}n.m=e,n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var a in t)n.o(t,a)&&!n.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.b=document.baseURI||self.location.href,n.nc=void 0,(()=>{\"use strict\";var e=n(7294),t=n(3935),a=n(8351);if(document.querySelector(\".block-editor-page\")){const{subscribe:n}=wp.data,r=n((()=>{let n=document.querySelector(\".editor-header__toolbar\");if(n||(n=document.querySelector(\".edit-post-header__toolbar\")),n||(n=document.querySelector(\".edit-post-header-toolbar\")),!n)return;const o=document.createElement(\"div\");o.className=\"toolbar-insert-layout\",o.innerHTML='\u003Cbutton id=\"UltpConditionButton\" class=\"ultp-popup-button\" aria-label=\"Insert Layout\">\u003Cspan class=\"dashicons dashicons-admin-settings\">\u003C\u002Fspan>Condition\u003C\u002Fbutton>',[\"404\",\"front_page\"].includes(ultp_data.archive)||n.appendChild(o),setTimeout((function(){void 0!==document.getElementsByClassName(\"edit-post-fullscreen-mode-close\")[0]&&(document.getElementsByClassName(\"edit-post-fullscreen-mode-close\")[0].href=ultp_condition.builder_url)}),0);let i=1;function l(){if(i){const n=document.createElement(\"div\");n.id=\"ultp-modal-conditions\",n.className=\"ultp-builder-modal ultp-blocks-layouts\",document.body.appendChild(n),t.render((0,e.createElement)(a.Z,{has_ultp_condition:!0,notEditor:\"yes\"}),n),i=0,setTimeout((function(){i=1}),2e3)}}void 0!==document.getElementsByClassName(\"editor-post-publish-button__button editor-post-publish-panel__toggle\")[0]&&([\"404\",\"front_page\"].includes(ultp_data.archive)||l()),[\"404\",\"front_page\"].includes(ultp_data.archive)||document.getElementById(\"UltpConditionButton\")?.addEventListener(\"click\",(function(){l()})),r()}))}})()})();\n\\ No newline at end of file\ndiff -ru \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Faddons\u002Fbuilder\u002Fblocks\u002FPost_Featured_Image.php \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Faddons\u002Fbuilder\u002Fblocks\u002FPost_Featured_Image.php\n--- \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Faddons\u002Fbuilder\u002Fblocks\u002FPost_Featured_Image.php\t2026-02-23 09:39:46.000000000 +0000\n+++ \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Faddons\u002Fbuilder\u002Fblocks\u002FPost_Featured_Image.php\t2026-02-25 11:53:26.000000000 +0000\n@@ -73,7 +73,7 @@\n \t\t$post_video = get_post_meta( get_the_ID(), '__builder_feature_video', true );\n \t\t$caption    = get_post_meta( get_the_ID(), '__builder_feature_caption', true );\n \n-\t\t$embeded       = $post_video ? ultimate_post()->get_embeded_video( $post_video, false, true, false, true, true, false, true, array( 'width' => array( 'width' => $attr['videoWidth'] ) ) ) : '';\n+\t\t$embeded       = $post_video ? ultimate_post()->get_embeded_video( $post_video, false, true, false, true, true, false, true, array( 'width' => array( 'width' => $attr['videoWidth'] ) ), 'from-block' ) : '';\n \t\t$post_thumb_id = get_post_thumbnail_id( get_the_ID() );\n \t\t$img_content   = ultimate_post()->get_image( $post_thumb_id, $attr['imgCrop'], '', $attr['altText'], $attr['imgSrcset'] );\n \t\t$img_caption   = wp_get_attachment_caption( $post_thumb_id );\ndiff -ru \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fassets\u002Fjs\u002Fultp_dashboard_min.js \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fassets\u002Fjs\u002Fultp_dashboard_min.js\n--- \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fassets\u002Fjs\u002Fultp_dashboard_min.js\t2026-02-23 09:39:46.000000000 +0000\n+++ \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fassets\u002Fjs\u002Fultp_dashboard_min.js\t2026-02-25 11:53:26.000000000 +0000\n@@ -1,2 +1,2 @@\n \u002F*! For license information please see ultp_dashboard_min.js.LICENSE.txt *\u002F\n-(()=>{var e={1974:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(2141),r=n(192);function o(e){var t=(0,a.Z)(e);return function(e){return(0,r.Z)(t,e)}}},192:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a={\"!\":function(e){return!e},\"*\":function(e,t){return e*t},\"\u002F\":function(e,t){return e\u002Ft},\"%\":function(e,t){return e%t},\"+\":function(e,t){return e+t},\"-\":function(e,t){return e-t},\"\u003C\":function(e,t){return e\u003Ct},\"\u003C=\":function(e,t){return e\u003C=t},\">\":function(e,t){return e>t},\">=\":function(e,t){return e>=t},\"==\":function(e,t){return e===t},\"!=\":function(e,t){return e!==t},\"&&\":function(e,t){return e&&t},\"||\":function(e,t){return e||t},\"?:\":function(e,t,n){if(e)throw t;return n}};function r(e,t){var n,r,o,i,l,s,p=[];for(n=0;n\u003Ce.length;n++){if(l=e[n],i=a[l]){for(r=i.length,o=Array(r);r--;)o[r]=p.pop();try{s=i.apply(null,o)}catch(e){return e}}else s=t.hasOwnProperty(l)?t[l]:+l;p.push(s)}return p[0]}},7680:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(1974);function r(e){var t=(0,a.Z)(e);return function(e){return+t({n:e})}}},2141:(e,t,n)=>{\"use strict\";var a,r,o,i;function l(e){for(var t,n,l,s,p=[],c=[];t=e.match(i);){for(n=t[0],(l=e.substr(0,t.index).trim())&&p.push(l);s=c.pop();){if(o[n]){if(o[n][0]===s){n=o[n][1]||n;break}}else if(r.indexOf(s)>=0||a[s]\u003Ca[n]){c.push(s);break}p.push(s)}o[n]||c.push(n),e=e.substr(t.index+n.length)}return(e=e.trim())&&p.push(e),p.concat(c.reverse())}n.d(t,{Z:()=>l}),a={\"(\":9,\"!\":8,\"*\":7,\"\u002F\":7,\"%\":7,\"+\":6,\"-\":6,\"\u003C\":5,\"\u003C=\":5,\">\":5,\">=\":5,\"==\":4,\"!=\":4,\"&&\":3,\"||\":2,\"?\":1,\"?:\":1},r=[\"(\",\"?\"],o={\")\":[\"(\"],\":\":[\"?\",\"?:\"]},i=\u002F\u003C=|>=|==|!=|&&|\\|\\||\\?:|\\(|!|\\*|\\\u002F|%|\\+|-|\u003C|>|\\?|\\)|:\u002F},8247:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(4103),r=n(1755);const o=function(e,t){return function(n,o,i,l=10){const s=e[t];if(!(0,r.Z)(n))return;if(!(0,a.Z)(o))return;if(\"function\"!=typeof i)return void console.error(\"The hook callback must be a function.\");if(\"number\"!=typeof l)return void console.error(\"If specified, the hook priority must be a number.\");const p={callback:i,priority:l,namespace:o};if(s[n]){const e=s[n].handlers;let t;for(t=e.length;t>0&&!(l>=e[t-1].priority);t--);t===e.length?e[t]=p:e.splice(t,0,p),s.__current.forEach((e=>{e.name===n&&e.currentIndex>=t&&e.currentIndex++}))}else s[n]={handlers:[p],runs:0};\"hookAdded\"!==n&&e.doAction(\"hookAdded\",n,o,i,l)}}},9992:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e,t){return function(){var n;const a=e[t];return null!==(n=a.__current[a.__current.length-1]?.name)&&void 0!==n?n:null}}},3972:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(1755);const r=function(e,t){return function(n){const r=e[t];if((0,a.Z)(n))return r[n]&&r[n].runs?r[n].runs:0}}},1786:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e,t){return function(n){const a=e[t];return void 0===n?void 0!==a.__current[0]:!!a.__current[0]&&n===a.__current[0].name}}},8642:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e,t){return function(n,a){const r=e[t];return void 0!==a?n in r&&r[n].handlers.some((e=>e.namespace===a)):n in r}}},1019:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>d});var a=n(8247),r=n(9099),o=n(8642),i=n(6424),l=n(9992),s=n(1786),p=n(3972);class c{constructor(){this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=(0,a.Z)(this,\"actions\"),this.addFilter=(0,a.Z)(this,\"filters\"),this.removeAction=(0,r.Z)(this,\"actions\"),this.removeFilter=(0,r.Z)(this,\"filters\"),this.hasAction=(0,o.Z)(this,\"actions\"),this.hasFilter=(0,o.Z)(this,\"filters\"),this.removeAllActions=(0,r.Z)(this,\"actions\",!0),this.removeAllFilters=(0,r.Z)(this,\"filters\",!0),this.doAction=(0,i.Z)(this,\"actions\"),this.applyFilters=(0,i.Z)(this,\"filters\",!0),this.currentAction=(0,l.Z)(this,\"actions\"),this.currentFilter=(0,l.Z)(this,\"filters\"),this.doingAction=(0,s.Z)(this,\"actions\"),this.doingFilter=(0,s.Z)(this,\"filters\"),this.didAction=(0,p.Z)(this,\"actions\"),this.didFilter=(0,p.Z)(this,\"filters\")}}const d=function(){return new c}},9099:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(4103),r=n(1755);const o=function(e,t,n=!1){return function(o,i){const l=e[t];if(!(0,r.Z)(o))return;if(!n&&!(0,a.Z)(i))return;if(!l[o])return 0;let s=0;if(n)s=l[o].handlers.length,l[o]={runs:l[o].runs,handlers:[]};else{const e=l[o].handlers;for(let t=e.length-1;t>=0;t--)e[t].namespace===i&&(e.splice(t,1),s++,l.__current.forEach((e=>{e.name===o&&e.currentIndex>=t&&e.currentIndex--})))}return\"hookRemoved\"!==o&&e.doAction(\"hookRemoved\",o,i),s}}},6424:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e,t,n=!1){return function(a,...r){const o=e[t];o[a]||(o[a]={handlers:[],runs:0}),o[a].runs++;const i=o[a].handlers;if(!i||!i.length)return n?r[0]:void 0;const l={name:a,currentIndex:0};for(o.__current.push(l);l.currentIndex\u003Ci.length;){const e=i[l.currentIndex].callback.apply(null,r);n&&(r[0]=e),l.currentIndex++}return o.__current.pop(),n?r[0]:void 0}}},1957:(e,t,n)=>{\"use strict\";n.d(t,{JQ:()=>a});const a=(0,n(1019).Z)(),{addAction:r,addFilter:o,removeAction:i,removeFilter:l,hasAction:s,hasFilter:p,removeAllActions:c,removeAllFilters:d,doAction:u,applyFilters:m,currentAction:f,currentFilter:h,doingAction:g,doingFilter:v,didAction:_,didFilter:w,actions:b,filters:x}=a},1755:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e){return\"string\"!=typeof e||\"\"===e?(console.error(\"The hook name must be a non-empty string.\"),!1):\u002F^__\u002F.test(e)?(console.error(\"The hook name cannot begin with `__`.\"),!1):!!\u002F^[a-zA-Z][a-zA-Z0-9_.-]*$\u002F.test(e)||(console.error(\"The hook name can only contain numbers, letters, dashes, periods and underscores.\"),!1)}},4103:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e){return\"string\"!=typeof e||\"\"===e?(console.error(\"The namespace must be a non-empty string.\"),!1):!!\u002F^[a-zA-Z][a-zA-Z0-9_.\\-\\\u002F]*$\u002F.test(e)||(console.error(\"The namespace can only contain numbers, letters, dashes, periods, underscores and slashes.\"),!1)}},6016:(e,t,n)=>{\"use strict\";n.d(t,{o:()=>i});var a=n(5022);const r={plural_forms:e=>1===e?0:1},o=\u002F^i18n\\.(n?gettext|has_translation)(_|$)\u002F,i=(e,t,n)=>{const i=new a.Z({}),l=new Set,s=()=>{l.forEach((e=>e()))},p=(e,t=\"default\")=>{i.data[t]={...i.data[t],...e},i.data[t][\"\"]={...r,...i.data[t]?.[\"\"]},delete i.pluralForms[t]},c=(e,t)=>{p(e,t),s()},d=(e=\"default\",t,n,a,r)=>(i.data[e]||p(void 0,e),i.dcnpgettext(e,t,n,a,r)),u=(e=\"default\")=>e,_x=(e,t,a)=>{let r=d(a,t,e);return n?(r=n.applyFilters(\"i18n.gettext_with_context\",r,e,t,a),n.applyFilters(\"i18n.gettext_with_context_\"+u(a),r,e,t,a)):r};if(e&&c(e,t),n){const e=e=>{o.test(e)&&s()};n.addAction(\"hookAdded\",\"core\u002Fi18n\",e),n.addAction(\"hookRemoved\",\"core\u002Fi18n\",e)}return{getLocaleData:(e=\"default\")=>i.data[e],setLocaleData:c,addLocaleData:(e,t=\"default\")=>{i.data[t]={...i.data[t],...e,\"\":{...r,...i.data[t]?.[\"\"],...e?.[\"\"]}},delete i.pluralForms[t],s()},resetLocaleData:(e,t)=>{i.data={},i.pluralForms={},c(e,t)},subscribe:e=>(l.add(e),()=>l.delete(e)),__:(e,t)=>{let a=d(t,void 0,e);return n?(a=n.applyFilters(\"i18n.gettext\",a,e,t),n.applyFilters(\"i18n.gettext_\"+u(t),a,e,t)):a},_x,_n:(e,t,a,r)=>{let o=d(r,void 0,e,t,a);return n?(o=n.applyFilters(\"i18n.ngettext\",o,e,t,a,r),n.applyFilters(\"i18n.ngettext_\"+u(r),o,e,t,a,r)):o},_nx:(e,t,a,r,o)=>{let i=d(o,r,e,t,a);return n?(i=n.applyFilters(\"i18n.ngettext_with_context\",i,e,t,a,r,o),n.applyFilters(\"i18n.ngettext_with_context_\"+u(o),i,e,t,a,r,o)):i},isRTL:()=>\"rtl\"===_x(\"ltr\",\"text direction\"),hasTranslation:(e,t,a)=>{const r=t?t+\"\u0004\"+e:e;let o=!!i.data?.[null!=a?a:\"default\"]?.[r];return n&&(o=n.applyFilters(\"i18n.has_translation\",o,e,t,a),o=n.applyFilters(\"i18n.has_translation_\"+u(a),o,e,t,a)),o}}}},7836:(e,t,n)=>{\"use strict\";n.d(t,{__:()=>__});var a=n(6016),r=n(1957);const o=(0,a.o)(void 0,void 0,r.JQ);o.getLocaleData.bind(o),o.setLocaleData.bind(o),o.resetLocaleData.bind(o),o.subscribe.bind(o);const __=o.__.bind(o);o._x.bind(o),o._n.bind(o),o._nx.bind(o),o.isRTL.bind(o),o.hasTranslation.bind(o)},2304:(e,t,n)=>{\"use strict\";n.d(t,{__:()=>a.__}),n(5917),n(6016);var a=n(7836)},5917:(e,t,n)=>{\"use strict\";var a=n(6290);n(8975),(0,a.Z)(console.error)},4528:(e,t,n)=>{\"use strict\";n.d(t,{c:()=>r});var a=n(7294);const r={add_plus_shopping_cart_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5.862 3.76A1.75 1.75 0 0 0 4.13 2.25H2a.75.75 0 0 0 0 1.5h2.129a.25.25 0 0 1 .247.216l1.762 12.773c.059.427.27.8.572 1.069a2.5 2.5 0 1 0 4.33.442h5.17a2.5 2.5 0 1 0 2.29-1.5H7.871a.25.25 0 0 1-.247-.216l-.183-1.32 12.36-1.068a1.75 1.75 0 0 0 1.573-1.433l1.152-6.403a1.75 1.75 0 0 0-1.722-2.06H5.93l-.068-.49ZM7.75 19.25a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm9.75 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm-4.505-7.75v-1.245H11.75a.75.75 0 0 1 0-1.5h1.245V7.5a.75.75 0 0 1 1.5 0v1.255h1.255a.75.75 0 0 1 0 1.5h-1.255V11.5a.75.75 0 0 1-1.5 0Z\",clipRule:\"evenodd\"})),android_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M20 10.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Zm-16 0a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75ZM8.05 1.4a.75.75 0 0 0-.15 1.05l1.153 1.537A6.249 6.249 0 0 0 5.75 9.5v.5h12.5v-.5a6.249 6.249 0 0 0-3.303-5.513L16.1 2.45a.75.75 0 1 0-1.2-.9l-1.41 1.879a6.266 6.266 0 0 0-2.98 0L9.1 1.55a.75.75 0 0 0-1.05-.15ZM9.74 8a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 0 1.5h-.01A.75.75 0 0 1 9.74 8Zm3.75-.75a.75.75 0 0 0 0 1.5h.01a.75.75 0 0 0 0-1.5h-.01Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M5.75 11.5V17a2.75 2.75 0 0 0 2.75 2.75h.25V22a.75.75 0 0 0 1.5 0v-2.25h4V22a.75.75 0 0 0 1.5 0v-2.261A2.75 2.75 0 0 0 18.25 17v-5.5H5.75Z\"})),angry_emoji_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM6.25 9.5A.75.75 0 0 1 7 8.75c.549 0 1.303.068 1.982.285.632.202 1.458.619 1.704 1.493.043.152.064.31.064.472 0 .527-.197 1.1-.77 1.322-.493.192-.974-.001-1.25-.237-.277-.238-.62-.793-.262-1.39.044-.074.096-.14.153-.2a2.804 2.804 0 0 0-.095-.031C8.04 10.309 7.45 10.25 7 10.25a.75.75 0 0 1-.75-.75Zm8.768-.465c.678-.217 1.433-.285 1.982-.285a.75.75 0 0 1 0 1.5c-.451 0-1.041.059-1.526.214-.033.01-.065.021-.095.032.057.059.109.125.153.2.359.596.015 1.151-.262 1.389-.276.236-.758.429-1.25.237-.573-.223-.77-.795-.77-1.322 0-.162.021-.32.064-.472.246-.874 1.072-1.291 1.704-1.493Zm-6.347 8.3C9.262 16.153 10.58 15.5 12 15.5c1.42 0 2.738.653 3.33 1.835a.75.75 0 1 0 1.34-.67C15.763 14.847 13.83 14 12 14s-3.762.847-4.67 2.665a.75.75 0 0 0 1.34.67Z\",clipRule:\"evenodd\"})),apple_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M20.054 8.58c-.123.096-2.287 1.337-2.287 4.095 0 3.191 2.754 4.32 2.836 4.348-.012.069-.437 1.546-1.452 3.051-.904 1.325-1.849 2.647-3.286 2.647s-1.806-.85-3.465-.85c-1.617 0-2.192.878-3.506.878-1.315 0-2.232-1.226-3.286-2.73-1.222-1.768-2.209-4.514-2.209-7.12 0-2.07.655-3.658 1.636-4.735 1-1.097 2.337-1.662 3.664-1.662 1.397 0 2.562.933 3.439.933.834 0 2.136-.989 3.725-.989.602 0 2.767.056 4.19 2.133Zm-4.945-3.904a5.04 5.04 0 0 0 .84-1.467 4.462 4.462 0 0 0 .282-1.528c0-.152-.013-.307-.04-.432-1.07.04-2.342.725-3.109 1.63-.602.697-1.164 1.797-1.164 2.913 0 .168.027.336.04.39.068.013.178.028.287.028.96 0 2.167-.654 2.864-1.534Z\"})),arrow_down_bottom_downward_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1 6.25a1 1 0 1 0-2 0v6.586l-1.793-1.793a1 1 0 0 0-1.414 1.414l3.5 3.5a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0-1.414-1.414L13 14.086V7.5Z\",clipRule:\"evenodd\"})),arrow_down_bottom_downward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11 3.5a1 1 0 1 1 2 0v14.586l6.793-6.793a1 1 0 1 1 1.414 1.414l-8.5 8.5a1 1 0 0 1-1.414 0l-8.5-8.5a1 1 0 0 1 1.338-1.482l.076.068L11 18.086V3.5Z\"})),arrow_down_bottom_left_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M17.293 5.293a1 1 0 1 1 1.414 1.414L8.414 17H18a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1V6a1 1 0 0 1 2 0v9.586L17.293 5.293Z\"})),arrow_down_bottom_right_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M5.293 5.293a1 1 0 0 1 1.414 0L17 15.586V6a1 1 0 1 1 2 0v12a1 1 0 0 1-1 1H6a1 1 0 1 1 0-2h9.586L5.293 6.707a1 1 0 0 1 0-1.414Z\"})),arrow_down_dropdown_maximize_chevron_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M18 8.25a.75.75 0 0 1 .53 1.28l-6 6a.75.75 0 0 1-1.06 0l-6-6A.75.75 0 0 1 6 8.25h12Z\"})),arrow_left_backward_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm-.293 7.957a1 1 0 0 0-1.414-1.414l-3.5 3.5a1 1 0 0 0 0 1.414l3.5 3.5a1 1 0 0 0 1.414-1.414L9.914 13H16.5a1 1 0 1 0 0-2H9.914l1.793-1.793Z\",clipRule:\"evenodd\"})),arrow_left_backward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.293 2.793a1 1 0 1 1 1.414 1.414L5.914 11H20.5a1 1 0 1 1 0 2H5.914l6.793 6.793.068.076a1 1 0 0 1-1.406 1.406l-.076-.068-8.5-8.5a1 1 0 0 1 0-1.414l8.5-8.5Z\"})),arrow_left_previous_backward_chevron_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M14.47 5.47a.75.75 0 0 1 1.28.53v12a.75.75 0 0 1-1.28.53l-6-6a.75.75 0 0 1 0-1.06l6-6Z\"})),arrow_move_down_left_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M6.293 7.293A1 1 0 0 1 8 8v4h10a3 3 0 0 0 3-3V6a1 1 0 1 1 2 0v3a5 5 0 0 1-5 5H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5Z\"})),arrow_move_down_right_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.617 7.076a1 1 0 0 1 1.09.217l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 18v-4H6a5 5 0 0 1-5-5V6a1 1 0 0 1 2 0v3a3 3 0 0 0 3 3h10V8a1 1 0 0 1 .617-.924Z\"})),arrow_move_up_left_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 18v-3a3 3 0 0 0-3-3H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5A1 1 0 0 1 8 6v4h10a5 5 0 0 1 5 5v3a1 1 0 1 1-2 0Z\"})),arrow_move_up_right_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M1 18v-3a5 5 0 0 1 5-5h10V6a1 1 0 0 1 1.707-.707l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 16v-4H6a3 3 0 0 0-3 3v3a1 1 0 1 1-2 0Z\"})),arrow_right_forward_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1.707 6.543a1 1 0 1 0-1.414 1.414L14.086 11H7.5a1 1 0 1 0 0 2h6.586l-1.793 1.793a1 1 0 0 0 1.414 1.414l3.5-3.5a1 1 0 0 0 0-1.414l-3.5-3.5Z\",clipRule:\"evenodd\"})),arrow_right_forward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.293 2.793a1 1 0 0 1 1.414 0l8.5 8.5a1 1 0 0 1 0 1.414l-8.5 8.5a1 1 0 1 1-1.414-1.414L18.086 13H3.5a1 1 0 1 1 0-2h14.586l-6.793-6.793-.068-.076a1 1 0 0 1 .068-1.338Z\"})),arrow_right_next_forward_chevron_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M8.713 5.307a.75.75 0 0 1 .817.163l6 6a.75.75 0 0 1 0 1.06l-6 6A.75.75 0 0 1 8.25 18V6a.75.75 0 0 1 .463-.693Z\"})),arrow_up_dropdown_minimize_chevron_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.527 8.418a.75.75 0 0 1 1.004.052l6 6a.75.75 0 0 1-.53 1.28H6a.75.75 0 0 1-.531-1.28l6-6 .057-.052Z\"})),arrow_up_top_left_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M5 18V6a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H8.414l10.293 10.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L7 8.414V18a1 1 0 1 1-2 0Z\"})),arrow_up_top_right_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M19 18a1 1 0 1 1-2 0V8.414L6.707 18.707a1 1 0 1 1-1.414-1.414L15.586 7H6a1 1 0 0 1 0-2h12a1 1 0 0 1 1 1v12Z\"})),arrow_up_top_upward_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.207 9.043-3.5-3.5a1 1 0 0 0-1.414 0l-3.5 3.5a1 1 0 1 0 1.414 1.414L11 9.914V16.5a1 1 0 1 0 2 0V9.914l1.793 1.793a1 1 0 0 0 1.414-1.414Z\",clipRule:\"evenodd\"})),arrow_up_top_upward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11 20.5V5.914l-6.793 6.793a1 1 0 1 1-1.414-1.414l8.5-8.5.076-.068a1 1 0 0 1 1.338.068l8.5 8.5.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L13 5.914V20.5a1 1 0 1 1-2 0Z\"})),at_a_mail_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 7c1.126 0 2.164.372 3 1a1 1 0 1 1 2 0v7a1 1 0 0 0 1 1 3 3 0 0 0 3-3v-1a9 9 0 1 0-9 9c1.64 0 3.176-.438 4.499-1.203a1 1 0 0 1 1.002 1.73A10.955 10.955 0 0 1 12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11v1a5 5 0 0 1-5 5 3.002 3.002 0 0 1-2.865-2.106A5 5 0 1 1 12 7Zm-3 5a3 3 0 1 0 6 0 3 3 0 0 0-6 0Z\"})),author_user_human_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm3.5 13.533c0 .672-.545 1.217-1.217 1.217H4.967a1.217 1.217 0 0 1-1.217-1.217 7.283 7.283 0 0 1 7.283-7.283h1.934a7.283 7.283 0 0 1 7.283 7.283Z\"})),author_user_human_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M7.5 8a4.5 4.5 0 0 0 2.43 3.996A8.754 8.754 0 0 0 3.25 20.5c0 .414.336.75.75.75h16a.75.75 0 0 0 .75-.75 8.754 8.754 0 0 0-6.68-8.504A4.5 4.5 0 1 0 7.5 8Z\"})),author_user_human_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm4 14a.75.75 0 0 1-.75.75H4a.75.75 0 0 1-.75-.75v-3A4.75 4.75 0 0 1 8 13.25h8A4.75 4.75 0 0 1 20.75 18v3Z\"})),author_user_human_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0ZM12 12.75c3.518 0 6.62 1.696 8.337 4.088.411.573.6 1.197.568 1.816a2.84 2.84 0 0 1-.645 1.626c-.723.902-1.951 1.47-3.26 1.47H7c-1.308 0-2.537-.568-3.26-1.47a2.838 2.838 0 0 1-.644-1.626c-.032-.62.156-1.243.568-1.816C5.38 14.446 8.483 12.75 12 12.75Z\"})),book_reading_time_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M14.5 1.25a6.25 6.25 0 0 1 4.25 10.83V16a.75.75 0 0 1-.75.75H7a2.25 2.25 0 0 0 0 4.5h11a.75.75 0 0 1 0 1.5H7A3.75 3.75 0 0 1 3.25 19V7A3.75 3.75 0 0 1 7 3.25h2.92c1.141-1.23 2.77-2 4.58-2ZM7 4.75A2.25 2.25 0 0 0 4.75 7v9A3.733 3.733 0 0 1 7 15.25h10.25v-2.137A6.25 6.25 0 0 1 8.887 4.75H7Zm7.5-.5a.75.75 0 0 0-.75.75v3a.75.75 0 0 0 .415.67l2 1a.75.75 0 0 0 .67-1.34l-1.585-.794V5a.75.75 0 0 0-.75-.75Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M16 19.75a.75.75 0 0 0 0-1.5H7a.75.75 0 0 0 0 1.5h9Z\"})),book_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm6.75 17.25v-1.75h-3.5v1.75a.75.75 0 0 1-1.5 0v-3.092c0-.74.22-1.464.63-2.08l1.219-1.828a1.684 1.684 0 0 1 2.802 0l1.22 1.828c.41.616.629 1.34.629 2.08V18.5a.75.75 0 0 1-1.5 0Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11.847 12.332a.184.184 0 0 1 .306 0l1.22 1.828c.216.326.344.701.371 1.09h-3.488a2.25 2.25 0 0 1 .372-1.09l1.219-1.828Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z\"})),calendar_date_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M8.01 12.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Z\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M2.25 9v10.5A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5V9Zm18 .75H3.75v9.75c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V9.75Z\",clipRule:\"evenodd\"})),calendar_date_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M15.76 1.376a.751.751 0 0 1 1.48.247l-.104.626H21a.751.751 0 0 1 .749.75h.002v16A2.75 2.75 0 0 1 19 21.75H8a2.75 2.75 0 0 1-2.736-2.468L5.251 19v-.75H3.314a1.75 1.75 0 0 1-1.688-2.216L5.278 2.8l.043-.117A.75.75 0 0 1 6 2.25h3.614l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873Zm2.368 14.855a2.751 2.751 0 0 1-2.65 2.018H6.75V19l.006.128A1.25 1.25 0 0 0 8 20.251h11c.69 0 1.25-.56 1.25-1.25V8.538l-2.123 7.693Zm-5.152-8.812a.75.75 0 0 0-.81-.09l-2 1a.75.75 0 0 0 .67 1.341l.5-.25-.909 3.33h-.926a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.518l1.241-4.553a.75.75 0 0 0-.248-.778Z\",clipRule:\"evenodd\"})),calendar_date_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M17 2.75V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2Zm-13.25 7h16.5v9.75c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25V9.75Z\"})),calendar_date_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M17.5 2a1 1 0 1 0-2 0v.75H13V2a1 1 0 1 0-2 0v.75H8.5V2a1 1 0 0 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-1.5V2Zm-1.49 7a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 11 7 10.552 7 10s.457-1 1.01-1Zm1 4.5a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm3-1a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm5 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 18 7 17.552 7 17s.457-1 1.01-1Z\",clipRule:\"evenodd\"})),caret_up_top_triangle_angle_arrow_upward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19 17.75c1.442 0 2.265-1.646 1.4-2.8l-7-9.333a1.75 1.75 0 0 0-2.8 0l-7 9.333c-.865 1.154-.042 2.8 1.4 2.8h14Z\",clipRule:\"evenodd\"})),category_book_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75v-8H15v-3h5.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm3.5 13.5a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Zm.75 3.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z\"})),category_file_documents_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M21 2.25a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.22.53l-1.28 1.28V18a.75.75 0 0 1-.75.75h-2.25V21a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75V5c0-.027.001-.053.004-.08A2.748 2.748 0 0 1 5 2.25h16ZM5 3.75a1.25 1.25 0 1 0 0 2.5h11.5a.75.75 0 0 1 .75.75v10.25h1.5V11c0-.199.08-.39.22-.53l1.28-1.28V3.75H5Zm5.25 10.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Zm-.75 2.25a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Z\",clipRule:\"evenodd\"})),category_file_documents_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M22.75 19A1.75 1.75 0 0 1 21 20.75H4A2.75 2.75 0 0 1 1.25 18V6A2.75 2.75 0 0 1 4 3.25h11.172c.73 0 1.429.29 1.944.806l2.195 2.194H21c.966 0 1.75.784 1.75 1.75v11Zm-20-1c0 .69.56 1.25 1.25 1.25h.25V8c0-.966.784-1.75 1.75-1.75h11.19l-1.134-1.134a1.25 1.25 0 0 0-.884-.366H4c-.69 0-1.25.56-1.25 1.25v12Z\"})),category_file_documents_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19 3.25c.966 0 1.75.784 1.75 1.75v1.25H21c.966 0 1.75.784 1.75 1.75v11A1.75 1.75 0 0 1 21 20.75H6A1.75 1.75 0 0 1 4.25 19v-.25H3A1.75 1.75 0 0 1 1.25 17V8c0-.966.784-1.75 1.75-1.75h8.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513H19Zm-3.586 1.5a.25.25 0 0 0-.177.073l-2.414 2.414a1.75 1.75 0 0 1-1.237.513H3a.25.25 0 0 0-.25.25v9c0 .138.112.25.25.25h1.25V11c0-.966.784-1.75 1.75-1.75h7.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513h1.836V5a.25.25 0 0 0-.25-.25h-3.586Z\",clipRule:\"evenodd\"})),category_file_documents_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M8.586 3.25c.464 0 .91.185 1.237.513L11.81 5.75H18a2.75 2.75 0 0 1 2.75 2.75v1.75H22a.75.75 0 0 1 .686 1.055l-4 9a.75.75 0 0 1-.686.445H2a.75.75 0 0 1-.749-.75L1.25 5c0-.966.784-1.75 1.75-1.75h5.586ZM3 4.75a.25.25 0 0 0-.25.25v11.465l2.564-5.77.052-.096A.75.75 0 0 1 6 10.25h13.25V8.5c0-.69-.56-1.25-1.25-1.25H8a.75.75 0 0 1 0-1.5h1.69l-.927-.927a.25.25 0 0 0-.177-.073H3Z\",clipRule:\"evenodd\"})),clock_reading_time_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25 1.25 6.063 1.25 12 6.063 22.75 12 22.75ZM11 6a1 1 0 1 1 2 0v5.382l3.447 1.723.09.051a1 1 0 0 1-.89 1.78l-.094-.041-4-2A1 1 0 0 1 11 12V6Z\",clipRule:\"evenodd\"})),clock_reading_time_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11 2.5V1.296A10.753 10.753 0 0 0 1.296 11H2.5a1 1 0 1 1 0 2H1.296A10.753 10.753 0 0 0 11 22.704V21.5a1 1 0 1 1 2 0v1.204A10.753 10.753 0 0 0 22.704 13H21.5a1 1 0 1 1 0-2h1.204A10.753 10.753 0 0 0 13 1.296V2.5a1 1 0 1 1-2 0Zm5.707 4.793a1 1 0 0 0-1.414 0L12 10.586l-1.793-1.793-.076-.068a1 1 0 0 0-1.338 1.482L10.586 12l-.793.793a1 1 0 1 0 1.414 1.414l.793-.793.793.793.076.068a1 1 0 0 0 1.406-1.406l-.068-.076-.793-.793 3.293-3.293a1 1 0 0 0 0-1.414Z\",clipRule:\"evenodd\"})),clock_reading_time_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M15.5 1.25a7.25 7.25 0 0 1 7.25 7.25 7.222 7.222 0 0 1-2.001 4.997L20.75 16A6.75 6.75 0 0 1 14 22.75H2a.75.75 0 0 1-.75-.75v-7A6.75 6.75 0 0 1 8 8.25h.257a7.248 7.248 0 0 1 7.243-7Zm0 1.5a5.75 5.75 0 1 0 0 11.5 5.75 5.75 0 0 0 0-11.5ZM14 18.5a1 1 0 0 0-1-1H6a1 1 0 1 0 0 2h7a1 1 0 0 0 1-1Zm-5-5a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2h3Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M14.5 5.111a1 1 0 1 1 2 0v3.3l1.485.826.087.054a1 1 0 0 1-.966 1.739l-.091-.045-2-1.111A1 1 0 0 1 14.5 9V5.11Z\"})),confused_emoji_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 9a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm-5.95 8.51c.63-.68 2.871-2.237 6.317-1.617a.75.75 0 1 0 .266-1.476c-4.02-.723-6.758 1.075-7.683 2.073a.75.75 0 1 0 1.1 1.02Z\",clipRule:\"evenodd\"})),correct_save_check_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.737 8.426a1 1 0 0 0-1.474-1.352l-4.794 5.23-1.762-1.761a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.444-.031l5.5-6Z\",clipRule:\"evenodd\"})),correct_save_check_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M18.731 5.36a1 1 0 0 1 1.537 1.28l-10 12a1.001 1.001 0 0 1-1.475.067l-5-5a1 1 0 1 1 1.414-1.414l4.225 4.225 9.3-11.159Z\"})),cross_close_x_minimize_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.707 7.293a1 1 0 0 0-1.414 1.414L10.586 12l-3.293 3.293a1 1 0 1 0 1.414 1.414L12 13.414l3.293 3.293a1 1 0 0 0 1.414-1.414L13.414 12l3.293-3.293a1 1 0 0 0-1.414-1.414L12 10.586 8.707 7.293Z\",clipRule:\"evenodd\"})),cross_x_close_minimize_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M17.293 5.293a1 1 0 1 1 1.414 1.414L13.414 12l5.293 5.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L12 13.414l-5.293 5.293a1 1 0 1 1-1.414-1.414L10.586 12 5.293 6.707a1 1 0 1 1 1.414-1.414L12 10.586l5.293-5.293Z\"})),desktop_monitor_computer_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11 17.75H4A2.75 2.75 0 0 1 1.25 15V5A2.75 2.75 0 0 1 4 2.25h16A2.75 2.75 0 0 1 22.75 5v10A2.75 2.75 0 0 1 20 17.75h-7V20h3a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h3v-2.25Zm1.01-5.25a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Z\",clipRule:\"evenodd\"})),dot_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Z\",clipRule:\"evenodd\"})),download_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M2 19v-4a1 1 0 1 1 2 0v4c0 .548.452 1 1 1h14a1 1 0 0 0 1-1v-4a1 1 0 1 1 2 0v4a3 3 0 0 1-3 3H5c-1.652 0-3-1.348-3-3Z\"}),(0,a.createElement)(\"path\",{d:\"M12 1.5a1 1 0 0 0-1 1V8H7a1 1 0 0 0-.707 1.707l5 5a1 1 0 0 0 1.414 0l5-5A1 1 0 0 0 17 8h-4V2.5a1 1 0 0 0-1-1Z\"})),download_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11.47 21.53a.75.75 0 0 0 1.06 0l2.5-2.5a.75.75 0 0 0-.53-1.28h-1.75V13a.75.75 0 0 0-1.5 0v4.75H9.5a.75.75 0 0 0-.53 1.28l2.5 2.5Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z\",clipRule:\"evenodd\"})),facebook_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h6.412v-7.076H9.5V11.84h1.912v-1.22C11.412 7.462 12.84 6 15.94 6c.587 0 1.601.115 2.016.23V8.8a11.904 11.904 0 0 0-1.071-.035c-1.52 0-2.108.575-2.108 2.073v1.002h3.029l-.52 2.834h-2.51v7.076H19A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Z\"})),google_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"m21.882 10.42-.103-.438h-9.485v4.036h5.667c-.588 2.81-3.318 4.289-5.549 4.289-1.623 0-3.333-.686-4.465-1.79a6.412 6.412 0 0 1-1.902-4.524c0-1.7.76-3.402 1.865-4.52 1.106-1.12 2.776-1.745 4.437-1.745 1.902 0 3.264 1.015 3.774 1.478l2.853-2.853c-.837-.74-3.136-2.603-6.72-2.603-2.764 0-5.414 1.065-7.352 3.007C2.99 6.669 2 9.434 2 12c0 2.566.937 5.193 2.79 7.12 1.98 2.056 4.784 3.13 7.671 3.13 2.627 0 5.117-1.035 6.892-2.913C21.098 17.488 22 14.93 22 12.249c0-1.129-.113-1.8-.118-1.829Z\"})),growth_increase_up_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 6a1 1 0 0 1 1 1v6a1 1 0 0 1-1.706.707L18 11.414l-4.793 4.793a1 1 0 0 1-1.414 0L8.5 12.914l-4.993 4.993a1 1 0 0 1-1.414-1.414l5.7-5.7.073-.066a1 1 0 0 1 1.34.066l3.294 3.293L16.587 10l-2.293-2.293A1 1 0 0 1 15 6h6Z\"})),hamicon_4_sloid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 3h18v3H3zm0 7.5h18v3H3v-3ZM3 18h18v3H3v-3Z\"})),hamicon_5_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M4 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1ZM4 18a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1Zm6.5-13a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM17 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Z\"})),hamicon_6_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0-7a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0 14a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z\"})),happy_emoji_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 0 1-2 0V8a1 1 0 0 1 1-1Zm-8 5.575a.675.675 0 0 0-.675.675 5.175 5.175 0 1 0 10.35 0 .675.675 0 0 0-.675-.675h-9Z\",clipRule:\"evenodd\"})),heart_love_wishlist_favourite_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M20.433 5.288a5.797 5.797 0 0 0-8.198 0L12 5.523l-.235-.235a5.797 5.797 0 0 0-8.198 0 6.428 6.428 0 0 0 0 9.09l7.52 7.52a1.292 1.292 0 0 0 1.826 0l7.519-7.52a6.428 6.428 0 0 0 0-9.09Zm-4.169 1.285a1 1 0 1 0 0 2c.299 0 .595.114.822.341.323.323.46.76.41 1.183a1 1 0 0 0 1.986.234A3.43 3.43 0 0 0 18.5 7.5a3.156 3.156 0 0 0-2.236-.927Z\",clipRule:\"evenodd\"})),hemicon_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z\"})),hemicon_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z\"})),hemicon_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h7.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z\"})),hidden_hide_invisible_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19.87 3.07a.75.75 0 0 1 1.06 1.061l-16.799 16.8a.75.75 0 0 1-1.06-1.06l1.857-1.859c-1.397-1.145-2.487-2.454-3.25-3.516a20.19 20.19 0 0 1-1.255-1.985 9.52 9.52 0 0 1-.067-.127l-.025-.049a.758.758 0 0 1 0-.673l.015-.03.016-.03.016-.03.007-.014a18.243 18.243 0 0 1 .72-1.217A20.435 20.435 0 0 1 3.33 7.486c1.938-2.067 4.873-4.237 8.672-4.238 2.269 0 4.231.778 5.852 1.84L19.87 3.07ZM8.874 14.067A3.73 3.73 0 0 1 8.25 12 3.75 3.75 0 0 1 12 8.25a3.73 3.73 0 0 1 2.066.624l-5.192 5.192Zm11.657-6.405c.205.008.397.1.533.253a20.672 20.672 0 0 1 1.933 2.583 17.693 17.693 0 0 1 .661 1.138l.01.019a.77.77 0 0 1 .004.68l-.016.03-.032.06-.007.014a18.22 18.22 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.224 2.855c-1.938 2.067-4.872 4.237-8.672 4.237a9.97 9.97 0 0 1-3.243-.545.752.752 0 0 1-.277-1.25l11.5-11.082.057-.05a.753.753 0 0 1 .493-.16Z\",clipRule:\"evenodd\"})),home_house_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21.75 19A2.75 2.75 0 0 1 19 21.75h-3.5A1.75 1.75 0 0 1 13.75 20v-5a.25.25 0 0 0-.25-.25h-3a.25.25 0 0 0-.25.25v5a1.75 1.75 0 0 1-1.75 1.75H5A2.75 2.75 0 0 1 2.25 19v-8.1c0-.786.336-1.534.923-2.056l7-6.223a2.75 2.75 0 0 1 3.654 0l7 6.223a2.75 2.75 0 0 1 .923 2.056V19Z\"})),hourglass_timer_time_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M20 1.25a.75.75 0 0 1 0 1.5h-1.25v4.18c0 .92-.46 1.778-1.225 2.288L13.352 12l4.173 2.782a2.75 2.75 0 0 1 1.225 2.288v4.18H20a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1 0-1.5h1.25v-4.18c0-.92.46-1.778 1.225-2.288L10.648 12 6.475 9.218A2.75 2.75 0 0 1 5.25 6.93V2.75H4a.75.75 0 0 1 0-1.5h16ZM13.75 16.5a.75.75 0 0 0-.75-.75h-2a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 .75-.75Zm.75 2.25a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1 0-1.5h5Z\",clipRule:\"evenodd\"})),instagram_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M9 12a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm12.5 5.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM12 7a5 5 0 1 0 0 10 5 5 0 0 0 0-10Z\",clipRule:\"evenodd\"})),laptop_computer_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M2.75 15.25V6A2.75 2.75 0 0 1 5.5 3.25h13A2.75 2.75 0 0 1 21.25 6v9.25H2.75ZM13.5 6a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3ZM1.25 18v-1.25h21.5V18A2.75 2.75 0 0 1 20 20.75H4A2.75 2.75 0 0 1 1.25 18Z\",clipRule:\"evenodd\"})),left_align_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18ZM11 20a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h8Zm10-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18ZM11 8a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h8Z\"})),left_triangle_angle_arrow_backward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M17.75 19c0 1.442-1.646 2.265-2.8 1.4l-9.333-7a1.75 1.75 0 0 1 0-2.8l9.333-7c1.154-.865 2.8-.042 2.8 1.4v14Z\"})),linkedin_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm11.15 16.792h2.893v-5.945c0-2.515-1.425-3.731-3.417-3.731-1.992 0-2.83 1.552-2.83 1.552V9.652h-2.79v9.389h2.79v-4.929c0-1.32.607-2.106 1.77-2.106 1.07 0 1.584.755 1.584 2.106v4.929ZM4.96 6.69c0 .957.77 1.732 1.72 1.732s1.719-.775 1.719-1.732-.77-1.733-1.72-1.733S4.96 5.733 4.96 6.69Zm3.188 12.35H5.24V9.654h2.908v9.389Z\",clipRule:\"evenodd\"})),link_chains_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M6.264 9.281a1 1 0 0 1 1.415 1.415L5.165 13.21a3.977 3.977 0 1 0 5.625 5.625l2.514-2.514a1 1 0 0 1 1.415 1.414l-2.515 2.514a5.977 5.977 0 1 1-8.453-8.453L6.264 9.28Zm5.532-5.53a5.977 5.977 0 1 1 8.453 8.453l-2.514 2.515a1 1 0 0 1-1.414-1.415l2.514-2.514a3.977 3.977 0 1 0-5.625-5.625l-2.514 2.514a1.001 1.001 0 0 1-1.415-1.414l2.515-2.514Z\"}),(0,a.createElement)(\"path\",{d:\"M13.793 8.793a1 1 0 1 1 1.414 1.414l-5 5a1 1 0 0 1-1.414-1.414l5-5Z\"})),location_gps_map_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.625 22.65 12 22l.375.65a.75.75 0 0 1-.75 0Z\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11.625 22.65 12 22c.375.65.376.649.376.649l.002-.001.006-.004.02-.012.034-.02.04-.024a19.765 19.765 0 0 0 1.212-.814 22.44 22.44 0 0 0 2.847-2.456c2.058-2.11 4.213-5.239 4.213-9.113 0-4.928-3.9-8.955-8.75-8.955s-8.75 4.027-8.75 8.955c0 3.874 2.155 7.002 4.213 9.113a22.436 22.436 0 0 0 3.788 3.101 12.961 12.961 0 0 0 .344.213l.021.012.006.004.003.001ZM12 6.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Z\",clipRule:\"evenodd\"})),long_arrow_up_top_increase_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11 21V10H6a1 1 0 0 1-.707-1.707l6-6 .076-.068a1 1 0 0 1 1.338.068l6 6A1 1 0 0 1 18 10h-5v11a1 1 0 1 1-2 0Z\"})),mail_email_messege_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M4 3.25A2.75 2.75 0 0 0 1.25 6v12A2.75 2.75 0 0 0 4 20.75h16A2.75 2.75 0 0 0 22.75 18V6A2.75 2.75 0 0 0 20 3.25H4ZM6.6 7.2a1 1 0 1 0-1.2 1.6l4.8 3.6a3 3 0 0 0 3.6 0l4.8-3.6a1 1 0 0 0-1.2-1.6l-4.8 3.6a1 1 0 0 1-1.2 0L6.6 7.2Z\",clipRule:\"evenodd\"})),media_document_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M2.25 19V5A2.75 2.75 0 0 1 5 2.25h10.172c.73 0 1.429.29 1.944.806l3.828 3.828a2.75 2.75 0 0 1 .806 1.944V19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19ZM15 15.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2-7a1 1 0 0 0-1-1H8a1 1 0 0 0 0 2h4a1 1 0 0 0 1-1Zm4 3.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h8a1 1 0 0 0 1-1Z\"})),messege_comment_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M22.75 16A2.75 2.75 0 0 1 20 18.75H7.264l-4.795 3.836A.75.75 0 0 1 1.25 22V7A2.75 2.75 0 0 1 4 4.25h16A2.75 2.75 0 0 1 22.75 7v9ZM14 9.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z\",clipRule:\"evenodd\"})),messege_comment_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9ZM14 8.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z\",clipRule:\"evenodd\"})),messege_comment_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M4 3.25A2.75 2.75 0 0 0 1.25 6v9A2.75 2.75 0 0 0 4 17.75h3.75V21a.75.75 0 0 0 1.219.586l4.794-3.836H20A2.75 2.75 0 0 0 22.75 15V6A2.75 2.75 0 0 0 20 3.25H4ZM9 10a1 1 0 0 0-2 0v1a1 1 0 1 0 2 0v-1Zm3-1a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm5 1a1 1 0 1 0-2 0v1a1 1 0 1 0 2 0v-1Z\",clipRule:\"evenodd\"})),messege_comment_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9Z\"})),messege_comment_5_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M21.75 12A9.75 9.75 0 0 1 12 21.75H3a.75.75 0 0 1-.75-.75v-9c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z\",clipRule:\"evenodd\"})),messege_comment_6_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M17 3.25A5.75 5.75 0 0 1 22.75 9v7a.75.75 0 0 1-.75.75h-5.31a4.75 4.75 0 0 1-4.69 4H2a.75.75 0 0 1-.75-.75v-6a4.751 4.751 0 0 1 4-4.691V9A5.75 5.75 0 0 1 11 3.25h6ZM5.25 10.838A3.25 3.25 0 0 0 2.75 14v5.25H12a3.25 3.25 0 0 0 3.162-2.5H11A5.75 5.75 0 0 1 5.25 11v-.162ZM11 10.75a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2h-6Zm0-3.5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z\",clipRule:\"evenodd\"})),messege_comment_7_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M22.75 11.5c0 5.218-4.932 9.25-10.75 9.25-.921 0-1.817-.101-2.672-.29l-2.956 1.691A.75.75 0 0 1 5.25 21.5v-2.8c-2.411-1.675-4-4.258-4-7.2 0-5.218 4.932-9.25 10.75-9.25s10.75 4.032 10.75 9.25ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2 2.5a1 1 0 1 1 0 2h-4a1 1 0 1 1 0-2h4Z\",clipRule:\"evenodd\"})),messege_comment_8_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M14.5 3.25c4.542 0 8.25 3.613 8.25 8.102 0 2.519-1.172 4.764-3 6.247V20a.75.75 0 0 1-1.163.626l-2.13-1.404a8.41 8.41 0 0 1-1.957.231 8.323 8.323 0 0 1-4.61-1.382 7.867 7.867 0 0 1-3.075-.06l-1.82 1.127A.75.75 0 0 1 3.85 18.5v-1.87c-1.576-1.222-2.6-3.07-2.6-5.157C1.25 7.7 4.557 4.75 8.5 4.75c.319 0 .634.02.942.057a.755.755 0 0 1 .15.033A8.318 8.318 0 0 1 14.5 3.25ZM8.08 6.265c-3.03.195-5.33 2.505-5.33 5.208 0 1.68.878 3.196 2.276 4.162a.75.75 0 0 1 .324.617v.903l.943-.583a.75.75 0 0 1 .587-.086c.45.12.925.188 1.416.203A7.98 7.98 0 0 1 8.08 6.265Z\",clipRule:\"evenodd\"})),messenger_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M1.25 11.677C1.25 5.687 5.945 1.25 12 1.25s10.75 4.44 10.75 10.43c0 5.99-4.695 10.427-10.75 10.427a11.75 11.75 0 0 1-3.112-.414.864.864 0 0 0-.575.043l-2.134.94a.86.86 0 0 1-1.207-.76l-.059-1.913a.85.85 0 0 0-.288-.613c-2.09-1.87-3.375-4.58-3.375-7.713Zm7.452-1.959-3.157 5.01c-.304.48.287 1.02.739.677l3.391-2.575a.644.644 0 0 1 .777-.003l2.513 1.884a1.612 1.612 0 0 0 2.332-.43l3.161-5.006c.301-.481-.29-1.024-.742-.68l-3.391 2.574a.644.644 0 0 1-.777.003l-2.513-1.884a1.613 1.613 0 0 0-2.333.43Z\",clipRule:\"evenodd\"})),microsoft_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.25 2.25v9h-9V5A2.75 2.75 0 0 1 5 2.25h6.25Zm1.5 0v9h9V5A2.75 2.75 0 0 0 19 2.25h-6.25Zm9 10.5h-9v9H19A2.75 2.75 0 0 0 21.75 19v-6.25Zm-10.5 9v-9h-9V19A2.75 2.75 0 0 0 5 21.75h6.25Z\"})),middle_align_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm-5 18a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h8Zm5-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm-5-6a1 1 0 1 1 0 2H8a1 1 0 0 1 0-2h8Z\"})),mobile_smartphone_phone_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M17 22.75A2.75 2.75 0 0 0 19.75 20V4A2.75 2.75 0 0 0 17 1.25H7A2.75 2.75 0 0 0 4.25 4v16A2.75 2.75 0 0 0 7 22.75h10ZM13.5 4a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3Z\",clipRule:\"evenodd\"})),pause_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M2.25 5A2.75 2.75 0 0 1 5 2.25h2.5A2.75 2.75 0 0 1 10.25 5v14a2.75 2.75 0 0 1-2.75 2.75H5A2.75 2.75 0 0 1 2.25 19V5Zm11.5 0a2.75 2.75 0 0 1 2.75-2.75H19A2.75 2.75 0 0 1 21.75 5v14A2.75 2.75 0 0 1 19 21.75h-2.5A2.75 2.75 0 0 1 13.75 19V5Z\",clipRule:\"evenodd\"})),pinterest_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 4.554 2.833 8.448 6.832 10.014-.094-.85-.178-2.159.038-3.087.195-.84 1.26-5.344 1.26-5.344s-.321-.644-.321-1.596c0-1.495.866-2.61 1.945-2.61.917 0 1.36.688 1.36 1.514 0 .922-.587 2.301-.89 3.579-.254 1.07.536 1.943 1.592 1.943 1.91 0 3.379-2.015 3.379-4.923 0-2.574-1.85-4.374-4.49-4.374-3.06 0-4.855 2.295-4.855 4.665 0 .925.356 1.915.8 2.454.088.106.101.2.075.308-.082.34-.263 1.07-.298 1.22-.047.196-.156.238-.36.143-1.343-.625-2.182-2.588-2.182-4.165 0-3.39 2.464-6.505 7.103-6.505 3.729 0 6.627 2.657 6.627 6.209 0 3.705-2.336 6.686-5.578 6.686-1.09 0-2.114-.566-2.464-1.234 0 0-.54 2.053-.67 2.555-.243.934-.898 2.105-1.336 2.819A10.76 10.76 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Z\"})),play_media_video_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 22.75c5.936 0 10.75-4.813 10.75-10.75S17.936 1.25 12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75ZM10.416 7.376A.75.75 0 0 0 9.25 8v8a.75.75 0 0 0 1.166.624l6-4a.75.75 0 0 0 0-1.248l-6-4Z\",clipRule:\"evenodd\"})),price_tag_label_category_sale_discount_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M21.444 13.616a2.75 2.75 0 0 0 .806-1.944V3.5a1.75 1.75 0 0 0-1.75-1.75h-8.172c-.73 0-1.429.29-1.945.806l-8 8a2.75 2.75 0 0 0 0 3.888l7.172 7.172a2.75 2.75 0 0 0 3.889 0l8-8ZM8.707 12.293a1 1 0 1 0-1.414 1.414l3 3 .076.068a1 1 0 0 0 1.406-1.406l-.068-.076-3-3ZM18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\",clipRule:\"evenodd\"})),price_tag_offer_sale_coupon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M18.796 6.963c-.367 1.048-1.172 1.993-2.432 2.693a.75.75 0 1 1-.728-1.311c.99-.55 1.517-1.229 1.744-1.878a2.583 2.583 0 0 0-.1-1.941c-.55-1.208-1.999-2.11-3.853-1.618-2.791.74-6.15 1.333-9.695-.024a.75.75 0 1 1 .536-1.401c3.09 1.183 6.062.695 8.774-.025 2.566-.68 4.75.577 5.603 2.445.425.933.517 2.017.151 3.06Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19.74 7.294c-.46 1.313-1.45 2.436-2.89 3.236a1.75 1.75 0 1 1-1.7-3.06c.81-.45 1.152-.95 1.286-1.333a1.59 1.59 0 0 0-.066-1.197 1.835 1.835 0 0 0-.101-.19h-4.44c-.73 0-1.43.29-1.945.805l-6.5 6.5a2.75 2.75 0 0 0 0 3.89l6.171 6.171a2.75 2.75 0 0 0 3.89 0l6.5-6.5a2.75 2.75 0 0 0 .805-1.944V6.5c0-.598-.3-1.127-.759-1.442.083.73.01 1.49-.252 2.236Zm-8.71 5.176a.75.75 0 0 0-1.06 1.06l2 2a.75.75 0 0 0 1.06-1.06l-2-2Zm-2.5 1.5a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06-1.06l-3-3Z\",clipRule:\"evenodd\"})),reddit_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M13.875 4.75h2.354a2.751 2.751 0 1 0 0-1.5h-2.354A2.75 2.75 0 0 0 11.125 6v2.028c-1.76.115-3.39.571-4.771 1.281a2.875 2.875 0 1 0-3.964 4.109A5.777 5.777 0 0 0 2 15.5C2 19.642 6.477 23 12 23s10-3.358 10-7.5c0-.722-.136-1.421-.39-2.082a2.875 2.875 0 1 0-3.963-4.109C16.2 8.566 14.48 8.1 12.624 8.014V6c0-.69.56-1.25 1.25-1.25ZM9 14.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 2.97a.75.75 0 0 0-1.06 1.06c.954.955 2.57 1.345 4.03 1.345 1.46 0 3.075-.39 4.03-1.345a.75.75 0 0 0-1.06-1.06c-.546.545-1.68.905-2.97.905-1.29 0-2.424-.36-2.97-.905ZM16.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\",clipRule:\"evenodd\"})),refresh_reset_cycle_loop_infinity_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 21v-5a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H5.756A7.977 7.977 0 0 0 12 20a8 8 0 0 0 8-8 1 1 0 1 1 2 0c0 5.523-4.477 10-10 10a9.967 9.967 0 0 1-7-2.863V21a1 1 0 1 1-2 0Zm-1-9C2 6.477 6.477 2 12 2a9.966 9.966 0 0 1 7 2.86V3a1 1 0 1 1 2 0v5a1 1 0 0 1-1 1h-5a1 1 0 1 1 0-2h3.245A8 8 0 0 0 4 12a1 1 0 1 1-2 0Z\"})),restriction_no_stop_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM6.383 19.03A9 9 0 0 0 19.03 6.383L6.383 19.03ZM12 3a9 9 0 0 0-7.031 14.616L17.616 4.97A8.96 8.96 0 0 0 12 3Z\",clipRule:\"evenodd\"})),right_align_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm0 18a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Zm0-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm0-6a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Z\"})),right_triangle_angle_play_arrow_forward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M6.25 5c0-1.442 1.646-2.265 2.8-1.4l9.334 7c.933.7.933 2.1 0 2.8l-9.334 7c-1.154.865-2.8.042-2.8-1.4V5Z\"})),search_magnify_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M16.618 18.032a9 9 0 1 1 1.414-1.414l3.675 3.675a1 1 0 0 1-1.414 1.414l-3.675-3.675ZM4 11a7 7 0 1 1 12.042 4.856 1.006 1.006 0 0 0-.186.186A7 7 0 0 1 4 11Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M10 6.5a1 1 0 0 1 1-1 5.5 5.5 0 0 1 5.5 5.5 1 1 0 1 1-2 0A3.5 3.5 0 0 0 11 7.5a1 1 0 0 1-1-1Z\",clipRule:\"evenodd\"})),settings_tool_function_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M15.183 2.612a1.75 1.75 0 0 0-1.706-1.362h-2.953a1.75 1.75 0 0 0-1.706 1.362l-.355 1.562a1.25 1.25 0 0 1-1.587.918L5.25 4.59a1.75 1.75 0 0 0-2.021.782L1.772 7.837a1.75 1.75 0 0 0 .338 2.193l1.16 1.04a1.25 1.25 0 0 1 0 1.862L2.11 13.97a1.75 1.75 0 0 0-.337 2.193l1.455 2.464a1.751 1.751 0 0 0 2.021.783l1.628-.5a1.25 1.25 0 0 1 1.586.917l.355 1.56a1.75 1.75 0 0 0 1.707 1.363h2.952a1.75 1.75 0 0 0 1.706-1.362l.355-1.56a1.25 1.25 0 0 1 1.586-.919l1.628.501a1.75 1.75 0 0 0 2.02-.783l1.457-2.464a1.75 1.75 0 0 0-.34-2.193l-1.157-1.038a1.25 1.25 0 0 1 0-1.863l1.159-1.039a1.75 1.75 0 0 0 .338-2.193l-1.456-2.464a1.75 1.75 0 0 0-2.02-.782l-1.629.5a1.25 1.25 0 0 1-1.586-.917l-.355-1.562ZM15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z\",clipRule:\"evenodd\"})),share_social_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"m9.075 9.42 5.865-2.933a3.45 3.45 0 1 1 1.005 1.734l-5.976 2.988a3.915 3.915 0 0 1 0 1.583l5.976 2.987a3.45 3.45 0 1 1-1.005 1.734L9.074 14.58a3.9 3.9 0 1 1 0-5.16Z\",clipRule:\"evenodd\"})),shopping_cart_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M9.75 19.25a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm9.75 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm1.5 0a2.5 2.5 0 1 1-4.79-1h-5.17a2.5 2.5 0 1 1-4.33-.442 1.745 1.745 0 0 1-.572-1.069L4.376 3.966a.25.25 0 0 0-.247-.216H2a.75.75 0 0 1 0-1.5h2.129a1.75 1.75 0 0 1 1.733 1.51l.068.49h14.874a1.75 1.75 0 0 1 1.722 2.06l-1.152 6.403a1.75 1.75 0 0 1-1.572 1.434l-12.36 1.067.182 1.32a.25.25 0 0 0 .247.216H18.5a2.5 2.5 0 0 1 2.5 2.5Z\"})),skype_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M7.5 1.25a6.25 6.25 0 0 0-5.197 9.723 9.75 9.75 0 0 0 10.724 10.724 6.25 6.25 0 0 0 8.67-8.67A9.75 9.75 0 0 0 10.973 2.303 6.224 6.224 0 0 0 7.5 1.25Zm4.5 6C9.8 7.25 8.25 8.4 8.25 10c0 1.015.647 1.627 1.337 1.991.644.34 1.468.546 2.178.723l.053.014c.778.194 1.429.361 1.894.607.435.23.538.43.538.665 0 .4-.45 1.25-2.25 1.25S9.75 14.4 9.75 14a.75.75 0 0 0-1.5 0c0 1.6 1.55 2.75 3.75 2.75s3.75-1.15 3.75-2.75c0-1.015-.647-1.627-1.337-1.991-.644-.34-1.468-.546-2.178-.723l-.053-.014c-.778-.194-1.429-.361-1.894-.607-.435-.23-.538-.43-.538-.665 0-.4.45-1.25 2.25-1.25s2.25.85 2.25 1.25a.75.75 0 0 0 1.5 0c0-1.6-1.55-2.75-3.75-2.75Z\",clipRule:\"evenodd\"})),smile_emoji_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7.5a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm-7.556 6.275a.75.75 0 1 0-1.43.45 5.752 5.752 0 0 0 10.973 0 .75.75 0 1 0-1.431-.45 4.252 4.252 0 0 1-8.112 0Z\",clipRule:\"evenodd\"})),social_community_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.75a3.384 3.384 0 0 1 3.238 2.408C18.858 5.46 21.4 8.895 21.4 13c0 .506-.039 1.002-.113 1.486a3.388 3.388 0 0 1 1.463 2.791 3.386 3.386 0 0 1-4.785 3.085A9.3 9.3 0 0 1 12 22.5a9.302 9.302 0 0 1-5.965-2.138 3.386 3.386 0 0 1-4.785-3.085c0-1.156.579-2.179 1.463-2.79A9.77 9.77 0 0 1 2.6 13c0-4.105 2.543-7.54 6.162-8.841A3.384 3.384 0 0 1 12 1.75ZM19.4 13c0-2.998-1.707-5.533-4.22-6.704A3.383 3.383 0 0 1 12 8.527a3.383 3.383 0 0 1-3.18-2.231C6.307 7.467 4.6 10.002 4.6 13c0 .301.017.598.05.889a3.385 3.385 0 0 1 3.363 3.388c0 .63-.172 1.221-.471 1.727A7.322 7.322 0 0 0 12 20.5a7.321 7.321 0 0 0 4.458-1.495 3.384 3.384 0 0 1-.47-1.728 3.385 3.385 0 0 1 3.361-3.388c.034-.291.05-.588.05-.889Z\",clipRule:\"evenodd\"})),square_rounded_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21.75 19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19V5A2.75 2.75 0 0 1 5 2.25h14A2.75 2.75 0 0 1 21.75 5v14Z\"})),star_rating_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M10.3 2.793c.67-1.443 2.73-1.443 3.4 0l2.136 4.602a.294.294 0 0 0 .232.166l5.068.596c1.578.186 2.232 2.136 1.05 3.222l-3.748 3.444a.28.28 0 0 0-.087.261l.995 4.975c.315 1.574-1.369 2.76-2.75 1.99l-4.45-2.474a.3.3 0 0 0-.291 0l-4.45 2.475c-1.382.768-3.065-.417-2.75-1.991l.995-4.975a.28.28 0 0 0-.087-.26l-3.748-3.445c-1.182-1.086-.529-3.036 1.05-3.222l5.067-.596a.293.293 0 0 0 .232-.166L10.3 2.793Z\"})),stopwatch_reading_time_timer_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M15 1.5a1 1 0 0 0-1-1h-4a1 1 0 1 0 0 2h1v.8c-4.915.502-8.75 4.653-8.75 9.7 0 5.385 4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75c0-5.047-3.835-9.198-8.75-9.7v-.8h1a1 1 0 0 0 1-1Zm-4 6a1 1 0 1 1 2 0v4.985l3.081 2.202.08.063a1 1 0 0 1-1.156 1.62l-.086-.056-3.5-2.5A1 1 0 0 1 11 13V7.5Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M18.293 3.293a1 1 0 0 1 1.414 0l2 2 .068.076a1 1 0 0 1-1.406 1.406l-.076-.068-2-2a1 1 0 0 1 0-1.414Z\"})),tablet_ipad_pad_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M18 22.75A2.75 2.75 0 0 0 20.75 20V4A2.75 2.75 0 0 0 18 1.25H6A2.75 2.75 0 0 0 3.25 4v16A2.75 2.75 0 0 0 6 22.75h12ZM12.01 4a1 1 0 1 1 0 2C11.457 6 11 5.552 11 5s.457-1 1.01-1Z\",clipRule:\"evenodd\"})),tag_bookmark_save_favourite_mark_discount_solid_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M20.75 22a.75.75 0 0 1-1.2.6l-6.8-5.1a1.25 1.25 0 0 0-1.415-.059l-.085.059-6.8 5.1a.75.75 0 0 1-1.2-.6V4A2.75 2.75 0 0 1 6 1.25h12A2.75 2.75 0 0 1 20.75 4v18Z\"})),tiktok_logo_icon_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm2.364 5.25a1 1 0 1 0-2 0v7.792a2.195 2.195 0 0 1-2.182 2.208A2.195 2.195 0 0 1 8 14.292c0-1.228.985-2.209 2.182-2.209a1 1 0 1 0 0-2C7.864 10.083 6 11.975 6 14.292c0 2.316 1.864 4.208 4.182 4.208 2.317 0 4.182-1.892 4.182-4.208V9.934a4.74 4.74 0 0 0 2.636.774 1 1 0 1 0 0-2c-1.713 0-2.636-1.377-2.636-2.208Z\",clipRule:\"evenodd\"})),tiktok_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19 21.75A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14ZM6 14.292c0-2.316 1.864-4.209 4.182-4.209a1 1 0 0 1 0 2c-1.197 0-2.182.982-2.182 2.209s.985 2.208 2.182 2.208 2.181-.98 2.181-2.208V6.5a1 1 0 0 1 2 0c0 .83.924 2.208 2.637 2.208a1 1 0 0 1 0 2 4.738 4.738 0 0 1-2.637-.776v4.36c0 2.316-1.864 4.208-4.181 4.208C7.864 18.5 6 16.608 6 14.292Z\",clipRule:\"evenodd\"})),triangle_rounded_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632Z\",clipRule:\"evenodd\"})),triangle_shape_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 2.25a.75.75 0 0 1 .646.37l10 17A.75.75 0 0 1 22 20.75H2a.75.75 0 0 1-.646-1.13l10-17A.75.75 0 0 1 12 2.25Z\",clipRule:\"evenodd\"})),twitter_x_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M20.292 2.293a1.001 1.001 0 0 1 1.415 1.414l-7.125 7.124 7.026 9.73A.751.751 0 0 1 21 21.75h-5a.751.751 0 0 1-.608-.311l-4.789-6.63-6.896 6.897a1 1 0 0 1-1.414-1.415l7.124-7.125L2.392 3.44A.751.751 0 0 1 3 2.25h5l.09.005a.751.751 0 0 1 .518.306l4.787 6.628 6.897-6.896Z\",clipRule:\"evenodd\"})),upload_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11.47 12.47a.75.75 0 0 1 1.06 0l2.5 2.5a.75.75 0 0 1-.53 1.28h-1.75V21a.75.75 0 0 1-1.5 0v-4.75H9.5a.75.75 0 0 1-.53-1.28l2.5-2.5Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z\",clipRule:\"evenodd\"})),view_count_show_visible_eye_open_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"m23.67 11.663-.015-.03-.032-.06-.007-.013a18.339 18.339 0 0 0-.72-1.217 20.43 20.43 0 0 0-2.224-2.856C18.733 5.42 15.799 3.25 12 3.25c-3.8 0-6.734 2.17-8.672 4.237a20.43 20.43 0 0 0-2.796 3.801 11.69 11.69 0 0 0-.149.272l-.007.014-.032.06-.015.03a.76.76 0 0 0 0 .673l.015.03.032.06.007.013a18.262 18.262 0 0 0 .72 1.217 20.432 20.432 0 0 0 2.225 2.856C5.266 18.58 8.2 20.75 12 20.75c3.8 0 6.733-2.17 8.672-4.237a20.433 20.433 0 0 0 2.795-3.801c.065-.115.115-.208.149-.272l.007-.013.02-.037.012-.024.015-.03a.756.756 0 0 0 0-.673ZM12 5.75a4.25 4.25 0 1 1 0 8.5 4.25 4.25 0 0 1 0-8.5Z\",clipRule:\"evenodd\"})),view_count_show_visible_eye_open_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"m.33 11.664.015-.03.032-.06.007-.014a18.263 18.263 0 0 1 .72-1.217 20.43 20.43 0 0 1 2.224-2.856C5.268 5.42 8.201 3.25 12 3.25c3.8 0 6.734 2.17 8.672 4.237a20.425 20.425 0 0 1 2.796 3.801c.065.115.115.208.149.272l.007.014.032.06.014.03a.75.75 0 0 1 .001.672l-.015.03a5.739 5.739 0 0 1-.032.06l-.007.014a18.252 18.252 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.225 2.856C18.734 18.58 15.8 20.75 12 20.75c-3.8 0-6.733-2.17-8.671-4.237a20.432 20.432 0 0 1-2.796-3.801 12.06 12.06 0 0 1-.149-.272l-.007-.013-.032-.06-.015-.03a.756.756 0 0 1 0-.673ZM15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z\",clipRule:\"evenodd\"})),view_count_show_visible_eye_open_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M23.616 11.573C20.503 7.077 16.29 4.75 12 4.75c-4.291 0-8.504 2.327-11.617 6.823a.75.75 0 0 0 0 .854C3.496 16.922 7.71 19.25 12 19.25c4.29 0 8.503-2.328 11.616-6.823a.75.75 0 0 0 0-.854ZM17.25 12a5.25 5.25 0 1 0-10.5 0 5.25 5.25 0 0 0 10.5 0Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M14.25 12A2.25 2.25 0 0 0 12 9.75a.75.75 0 0 1 0-1.5A3.75 3.75 0 0 1 15.75 12a.75.75 0 0 1-1.5 0Z\"})),view_count_show_visible_eye_open_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M14.25 10a1.75 1.75 0 0 0 3.366.673l.049-.098a.751.751 0 0 1 1.318.06 7.75 7.75 0 1 1-3.62-3.62.75.75 0 0 1-.036 1.369A1.751 1.751 0 0 0 14.25 10Z\"}),(0,a.createElement)(\"path\",{d:\"M12 2c4.335 0 8.706 2.263 10.89 6.546a1 1 0 1 1-1.78.908C19.301 5.911 15.664 4 12 4 8.335 4 4.698 5.911 2.89 9.454a1 1 0 0 1-1.78-.908C3.293 4.263 7.664 2 12 2Z\"})),view_count_show_visible_eye_open_5_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.75 12H12V7.25A4.75 4.75 0 1 0 16.75 12Z\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"m23.167 12.083.727.364c.141-.281.14-.613 0-.895l-.002-.003-.003-.007-.011-.022a10.615 10.615 0 0 0-.192-.354 20.675 20.675 0 0 0-2.831-3.85C18.895 5.226 15.899 3 12 3 8.1 3 5.104 5.226 3.145 7.316a20.674 20.674 0 0 0-2.831 3.85 12.375 12.375 0 0 0-.192.354l-.011.022-.003.007-.002.002s0 .002.894.449l-.894-.447a1 1 0 0 0 0 .894l.002.004.003.007.011.022a8.267 8.267 0 0 0 .192.354 20.67 20.67 0 0 0 2.831 3.85C5.105 18.774 8.1 21 12 21c3.9 0 6.895-2.226 8.855-4.316a20.672 20.672 0 0 0 2.831-3.85 11.81 11.81 0 0 0 .175-.322l.017-.032.011-.022.003-.007.002-.002s0-.002-.727-.366Zm-.096-.119.823-.412-.823.412ZM12 5a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z\",clipRule:\"evenodd\"})),warning_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM13 8a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0V8Zm-1 6.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z\",clipRule:\"evenodd\"})),warning_triangle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632ZM11 9v4a1 1 0 1 0 2 0V9a1 1 0 1 0-2 0Zm0 7.5v.5a1 1 0 1 0 2 0v-.5a1 1 0 1 0-2 0Z\",clipRule:\"evenodd\"})),whatsapp_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 1.802.444 3.501 1.228 4.994l-1.206 4.824a.75.75 0 0 0 .91.91l4.824-1.206A10.706 10.706 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Zm3.16 12.04c.245.09 1.56.733 1.828.866v.001l.145.071c.187.09.313.151.367.24.067.111.067.645-.156 1.266-.223.622-1.292 1.19-1.805 1.266-.461.069-1.044.097-1.685-.106a15.383 15.383 0 0 1-1.525-.56c-2.506-1.078-4.2-3.495-4.522-3.954l-.047-.066-.002-.002c-.14-.186-1.09-1.447-1.09-2.752 0-1.226.605-1.87.883-2.165l.053-.056a.984.984 0 0 1 .713-.333c.179 0 .357.002.513.01h.06c.156 0 .35-.001.541.456.078.185.193.463.313.753.225.547.469 1.137.512 1.224.067.133.112.288.022.466l-.039.08a1.49 1.49 0 0 1-.228.364l-.14.166c-.09.111-.182.222-.261.3-.134.133-.273.277-.117.544.156.266.692 1.138 1.488 1.844a6.905 6.905 0 0 0 1.973 1.241c.074.032.134.058.178.08.267.133.423.111.58-.067.155-.177.668-.777.846-1.043.178-.267.357-.223.602-.134Z\",clipRule:\"evenodd\"})),wordpress_logo_icon_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M2.778 12a9.225 9.225 0 0 0 5.198 8.3l-4.4-12.054A9.18 9.18 0 0 0 2.779 12Zm15.447-.465c0-1.139-.409-1.929-.76-2.543-.466-.76-.905-1.402-.905-2.162 0-.847.642-1.637 1.548-1.637.04 0 .079.005.119.007A9.185 9.185 0 0 0 12 2.778a9.21 9.21 0 0 0-7.705 4.158c.216.007.421.01.593.01.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.055.087l3.359 9.988 2.018-6.052-1.437-3.936c-.497-.03-.967-.088-.967-.088-.497-.03-.439-.79.058-.76 0 0 1.523.118 2.428.118.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.054.087l3.332 9.913.92-3.074c.398-1.276.701-2.192.701-2.982l-.002.002Z\"}),(0,a.createElement)(\"path\",{d:\"m12.16 12.807-2.766 8.04a9.25 9.25 0 0 0 5.667-.147.719.719 0 0 1-.065-.126l-2.835-7.767Zm7.931-5.231c.04.293.062.61.062.948 0 .935-.176 1.988-.702 3.302l-2.816 8.145a9.22 9.22 0 0 0 4.585-7.973 9.157 9.157 0 0 0-1.13-4.424l.002.002Z\"}),(0,a.createElement)(\"path\",{d:\"M12 1.25C6.071 1.25 1.25 6.072 1.25 12S6.072 22.75 12 22.75c5.926 0 10.748-4.822 10.748-10.75C22.75 6.072 17.926 1.25 12 1.25Zm0 21.007c-5.656 0-10.257-4.601-10.257-10.259 0-5.657 4.6-10.255 10.256-10.255 5.655 0 10.256 4.601 10.256 10.257S17.655 22.259 12 22.259v-.002Z\"})),wordpress_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 1.25C6.075 1.25 1.25 6.074 1.25 12c0 5.928 4.824 10.75 10.75 10.75 5.928 0 10.75-4.822 10.75-10.75 0-5.926-4.822-10.75-10.75-10.75ZM2.336 12c0-1.4.302-2.732.837-3.933l4.61 12.63a9.665 9.665 0 0 1-5.447-8.696Zm9.666 9.665a9.629 9.629 0 0 1-2.731-.394l2.9-8.426 2.97 8.14c.02.047.044.091.07.132a9.655 9.655 0 0 1-3.21.548Zm1.33-14.195a19.275 19.275 0 0 0 1.106-.094c.522-.06.46-.826-.061-.795 0 0-1.565.122-2.577.122-.949 0-2.545-.122-2.545-.122-.52-.03-.583.765-.06.795 0 0 .492.062 1.013.094l1.506 4.125-2.117 6.342L6.08 7.47a20.357 20.357 0 0 0 1.106-.092c.52-.063.46-.828-.063-.797 0 0-1.563.122-2.575.122-.182 0-.395-.004-.621-.011A9.651 9.651 0 0 1 12 2.335a9.63 9.63 0 0 1 6.527 2.538c-.043-.002-.083-.007-.127-.007-.95 0-1.622.825-1.622 1.715 0 .795.46 1.47.949 2.266.367.644.796 1.471.796 2.665 0 .827-.316 1.787-.736 3.124l-.963 3.222L13.332 7.47Zm3.528 12.884 2.951-8.535c.552-1.38.734-2.481.734-3.461 0-.357-.022-.686-.064-.995A9.608 9.608 0 0 1 21.665 12a9.661 9.661 0 0 1-4.805 8.353Z\"})),youtube_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19.29 3.608c-3.693-.479-10.531-.477-14.402.003-1.874.233-3.194 1.843-3.41 3.831-.304 2.773-.304 6.343 0 9.116.216 1.988 1.536 3.598 3.41 3.83 3.87.481 10.71.483 14.401.004 1.784-.232 2.995-1.77 3.21-3.63.334-2.868.334-6.656 0-9.524-.215-1.86-1.426-3.398-3.21-3.63Zm-8.904 4.749A.75.75 0 0 0 9.25 9v6a.75.75 0 0 0 1.136.643l5-3a.75.75 0 0 0 0-1.286l-5-3Z\",clipRule:\"evenodd\"})),full_screen_corners_out_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M2 8.5V5C2 3.34315 3.34315 2 5 2H8.5C9.05228 2 9.5 2.44772 9.5 3C9.5 3.55228 9.05228 4 8.5 4H5C4.44772 4 4 4.44772 4 5V8.5C4 9.05228 3.55228 9.5 3 9.5C2.44772 9.5 2 9.05228 2 8.5Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M2 19V15.5C2 14.9477 2.44772 14.5 3 14.5C3.55228 14.5 4 14.9477 4 15.5V19C4 19.5523 4.44772 20 5 20H8.5C9.05228 20 9.5 20.4477 9.5 21C9.5 21.5523 9.05228 22 8.5 22H5C3.34315 22 2 20.6569 2 19Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M20 8V5C20 4.44772 19.5523 4 19 4H15.5C14.9477 4 14.5 3.55228 14.5 3C14.5 2.44772 14.9477 2 15.5 2H19C20.6569 2 22 3.34315 22 5V8C22 8.55228 21.5523 9 21 9C20.4477 9 20 8.55228 20 8Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M20 19V15.5C20 14.9477 20.4477 14.5 21 14.5C21.5523 14.5 22 14.9477 22 15.5V19C22 20.6569 20.6569 22 19 22H15.5C14.9477 22 14.5 21.5523 14.5 21C14.5 20.4477 14.9477 20 15.5 20H19C19.5523 20 20 19.5523 20 19Z\",fill:\"currentColor\"})),zoom_in_magnifying_glass_plus_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M9.99512 14V12.0049H8C7.44772 12.0049 7 11.5572 7 11.0049C7.00007 10.4527 7.44776 10.0049 8 10.0049H9.99512V8C9.99512 7.44772 10.4428 7 10.9951 7C11.5473 7.00007 11.9951 7.44776 11.9951 8V10.0049H14C14.5522 10.0049 14.9999 10.4527 15 11.0049C15 11.5572 14.5523 12.0049 14 12.0049H11.9951V14C11.9951 14.5522 11.5473 14.9999 10.9951 15C10.4428 15 9.99512 14.5523 9.99512 14Z\",fill:\"currentColor\"})),zoom_out_magnifying_glass_minus_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M14 10.005C14.5523 10.005 15 10.4527 15 11.005C15 11.5573 14.5523 12.005 14 12.005H8C7.44772 12.005 7 11.5573 7 11.005C7 10.4527 7.44772 10.005 8 10.005H14Z\",fill:\"currentColor\"})),gallery_indicator_image_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M16.75 7C16.75 8.10457 15.8546 9 14.75 9C13.6454 9 12.75 8.10457 12.75 7C12.75 5.89543 13.6454 5 14.75 5C15.8546 5 16.75 5.89543 16.75 7Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M6.5 18.5C6.5 18.3619 6.38807 18.25 6.25 18.25H4C3.86193 18.25 3.75 18.3619 3.75 18.5V20C3.75 20.1381 3.86193 20.25 4 20.25H6.25C6.38807 20.25 6.5 20.1381 6.5 20V18.5ZM8 20C8 20.9665 7.2165 21.75 6.25 21.75H4C3.0335 21.75 2.25 20.9665 2.25 20V18.5C2.25 17.5335 3.0335 16.75 4 16.75H6.25C7.2165 16.75 8 17.5335 8 18.5V20Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M13.5 18.5C13.5 18.3619 13.3881 18.25 13.25 18.25H11C10.8619 18.25 10.75 18.3619 10.75 18.5V20C10.75 20.1381 10.8619 20.25 11 20.25H13.25C13.3881 20.25 13.5 20.1381 13.5 20V18.5ZM15 20C15 20.9665 14.2165 21.75 13.25 21.75H11C10.0335 21.75 9.25 20.9665 9.25 20V18.5C9.25 17.5335 10.0335 16.75 11 16.75H13.25C14.2165 16.75 15 17.5335 15 18.5V20Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M20.25 18.5C20.25 18.3619 20.1381 18.25 20 18.25H18C17.8619 18.25 17.75 18.3619 17.75 18.5V20C17.75 20.1381 17.8619 20.25 18 20.25H20C20.1381 20.25 20.25 20.1381 20.25 20V18.5ZM21.75 20C21.75 20.9665 20.9665 21.75 20 21.75H18C17.0335 21.75 16.25 20.9665 16.25 20V18.5C16.25 17.5335 17.0335 16.75 18 16.75H20C20.9665 16.75 21.75 17.5335 21.75 18.5V20Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M19 15.75C20.5188 15.75 21.75 14.5188 21.75 13V5C21.75 3.4812 20.5188 2.25 19 2.25H5C3.4812 2.25 2.25 3.4812 2.25 5V13C2.25 14.5188 3.4812 15.75 5 15.75H19ZM3.75 11.8613V5C3.75 4.30957 4.30963 3.75 5 3.75H19C19.6904 3.75 20.25 4.30957 20.25 5V10.8613L19.9442 10.5557C18.8703 9.48169 17.1295 9.48169 16.0555 10.5557L15.3837 11.2266C14.8956 11.7146 14.1042 11.7146 13.6161 11.2266L10.9442 8.55566C9.8703 7.48169 8.12946 7.48169 7.05554 8.55566L3.75 11.8613Z\",fill:\"currentColor\"})),rocket_fly_boost_launch_pro_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M7.79289 14.7929C8.18342 14.4024 8.81643 14.4024 9.20696 14.7929C9.59748 15.1834 9.59748 15.8164 9.20696 16.207L4.20696 21.207C3.81643 21.5975 3.18342 21.5975 2.79289 21.207C2.40237 20.8164 2.40237 20.1834 2.79289 19.7929L7.79289 14.7929Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M10.2929 17.2929C10.6834 16.9024 11.3164 16.9024 11.707 17.2929C12.0975 17.6834 12.0975 18.3164 11.707 18.707L9.70696 20.707C9.31643 21.0975 8.68342 21.0975 8.29289 20.707C7.90237 20.3164 7.90237 19.6834 8.29289 19.2929L10.2929 17.2929Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M5.29289 12.2929C5.68342 11.9024 6.31643 11.9024 6.70696 12.2929C7.09748 12.6834 7.09748 13.3164 6.70696 13.707L4.70696 15.707C4.31643 16.0975 3.68342 16.0975 3.29289 15.707C2.90237 15.3164 2.90237 14.6834 3.29289 14.2929L5.29289 12.2929Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M21.5002 1.75C21.9145 1.75 22.2502 2.08569 22.2502 2.5V3.10059C22.2502 5.88916 21.0051 8.88525 19.2672 11.1758L19.7473 16.9375C19.7656 17.1575 19.6865 17.3743 19.5305 17.5303L15.5305 21.5303C15.3439 21.717 15.0726 21.792 14.8167 21.7275C14.5609 21.6631 14.3574 21.4685 14.2815 21.2158L12.8049 16.2939L7.7063 11.1953L2.78442 9.71875C2.62842 9.67188 2.49463 9.57642 2.39984 9.4502C2.34113 9.37183 2.29742 9.28149 2.27271 9.18359C2.20819 8.92773 2.28333 8.65649 2.46997 8.46973L6.46997 4.46973L6.53149 4.41504C6.68048 4.29565 6.87042 4.23682 7.06274 4.25293L12.8245 4.73315C15.115 2.99512 18.111 1.75 20.8997 1.75H21.5002ZM19.0002 6.5C19.0002 7.32837 18.3287 8 17.5002 8C16.6718 8 16.0002 7.32837 16.0002 6.5C16.0002 5.67163 16.6718 5 17.5002 5C18.3287 5 19.0002 5.67163 19.0002 6.5Z\",fill:\"currentColor\"})),plugin_connect_socket_integration_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M5.20699 8.79297L6.99995 10.5859L8.79292 8.79297C9.18343 8.40234 9.81642 8.40234 10.207 8.79297C10.5975 9.18335 10.5975 9.81641 10.207 10.207L8.41402 12L12 15.5859L13.7929 13.793C14.1834 13.4023 14.8164 13.4023 15.207 13.793C15.5975 14.1833 15.5975 14.8164 15.207 15.207L13.414 17L15.207 18.793C15.5975 19.1833 15.5975 19.8164 15.207 20.207C14.8164 20.5974 14.1834 20.5974 13.7929 20.207L12.8233 19.2375L10.9445 21.1162C9.87056 22.1902 8.12886 22.1902 7.05489 21.1162L5.67653 19.7375L3.20699 22.207C2.81642 22.5974 2.18343 22.5974 1.79292 22.207C1.40236 21.8164 1.40236 21.1833 1.79292 20.793L4.26265 18.3232L2.88405 16.9443C1.81007 15.8706 1.81007 14.1296 2.88405 13.0557L4.76277 11.177L3.79292 10.207C3.40236 9.81641 3.40236 9.18335 3.79292 8.79297C4.18343 8.40234 4.81642 8.40234 5.20699 8.79297Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M11.1768 4.7627L10.207 3.79297C9.81641 3.40234 9.18341 3.40234 8.79291 3.79297C8.40234 4.18335 8.40234 4.81641 8.79291 5.20703L18.7929 15.207C19.1834 15.5974 19.8164 15.5974 20.207 15.207C20.5975 14.8164 20.5975 14.1833 20.207 13.793L19.2374 12.8232L21.1161 10.9446C22.1901 9.87061 22.1901 8.12891 21.1161 7.05493L19.7374 5.67651L22.207 3.20703C22.5975 2.81641 22.5975 2.18335 22.207 1.79297C21.8164 1.40234 21.1834 1.40234 20.7929 1.79297L18.3232 4.2627L16.9443 2.88403C15.8703 1.81006 14.1295 1.81006 13.0556 2.88403L11.1768 4.7627Z\",fill:\"currentColor\"})),unlink_link_break_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M2.29286 4.29325C2.68338 3.90273 3.31639 3.90273 3.70692 4.29325L10.9999 11.5862L13.7929 8.79325C14.1834 8.40273 14.8164 8.40273 15.2069 8.79325C15.5972 9.1838 15.5974 9.81687 15.2069 10.2073L12.4139 13.0003L19.7069 20.2933C20.0972 20.6838 20.0974 21.3169 19.7069 21.7073C19.3165 22.0977 18.6834 22.0976 18.2929 21.7073L14.5194 17.9339L12.204 20.2493C9.86964 22.5836 6.08522 22.5835 3.75086 20.2493C1.41651 17.915 1.41657 14.1306 3.75086 11.7962L6.06532 9.47978L2.29286 5.70732C1.90236 5.31682 1.90241 4.68379 2.29286 4.29325ZM5.16493 13.2102C3.61168 14.7636 3.61162 17.2819 5.16493 18.8352C6.71823 20.3884 9.23662 20.3884 10.7899 18.8352L13.1054 16.5198L10.9999 14.4143L10.2069 15.2073C9.81646 15.5977 9.18337 15.5976 8.79286 15.2073C8.40236 14.8168 8.40241 14.1838 8.79286 13.7933L9.58582 13.0003L7.48036 10.8948L5.16493 13.2102Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M11.7958 3.75126C14.1302 1.4169 17.9145 1.41689 20.2489 3.75126C22.5832 6.08564 22.5833 9.87005 20.2489 12.2044L17.7352 14.719C17.3449 15.1092 16.7117 15.109 16.3212 14.719C15.9307 14.3285 15.9307 13.6945 16.3212 13.304L18.8348 10.7903C20.3881 9.23703 20.3881 6.71866 18.8348 5.16533C17.2815 3.612 14.7632 3.61201 13.2098 5.16533L10.6962 7.679C10.3057 8.06941 9.67164 8.06939 9.28114 7.679C8.89103 7.28851 8.89092 6.65536 9.28114 6.26493L11.7958 3.75126Z\",fill:\"currentColor\"})),unlocked_open_security_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M12 1C15.3136 1.00007 18 3.68634 18 7V9.25C19.5188 9.25 20.75 10.4812 20.75 12V20C20.75 21.5188 19.5188 22.75 18 22.75H6C4.48122 22.75 3.25 21.5188 3.25 20V12C3.25 10.4812 4.48122 9.25 6 9.25H16V7C16 4.79091 14.2091 3.00007 12 3C10.5207 3.00001 9.22731 3.80281 8.53418 5.00098C8.25756 5.47873 7.6459 5.64163 7.16797 5.36523C6.69018 5.0886 6.52723 4.47697 6.80371 3.99902C7.83968 2.20846 9.77808 1.00001 12 1ZM12 14.5C11.4477 14.5 11 14.9477 11 15.5V16.5C11 17.0523 11.4477 17.5 12 17.5C12.5523 17.5 13 17.0523 13 16.5V15.5C13 14.9477 12.5523 14.5 12 14.5Z\",fill:\"currentColor\"})),sort_ascending_order_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M2.25 5C2.25 3.4812 3.4812 2.25 5 2.25L19 2.25C20.5188 2.25 21.75 3.4812 21.75 5L21.75 19C21.75 20.5188 20.5188 21.75 19 21.75L5 21.75C3.4812 21.75 2.25 20.5188 2.25 19L2.25 5ZM16.75 7.5C16.75 7.08569 16.4142 6.75 16 6.75L6 6.75C5.58581 6.75 5.25 7.08569 5.25 7.5C5.25 7.91431 5.58581 8.25 6 8.25L16 8.25C16.4142 8.25 16.75 7.91431 16.75 7.5ZM11.5 11C11.9142 11 12.25 11.3357 12.25 11.75C12.25 12.1643 11.9142 12.5 11.5 12.5L6 12.5C5.58581 12.5 5.25 12.1643 5.25 11.75C5.25 11.3357 5.58581 11 6 11L11.5 11ZM10.75 16C10.75 15.5857 10.4142 15.25 10 15.25L6 15.25C5.58581 15.25 5.25 15.5857 5.25 16C5.25 16.4143 5.58581 16.75 6 16.75L10 16.75C10.4142 16.75 10.75 16.4143 10.75 16ZM15.25 11C15.25 10.5857 15.5857 10.25 16 10.25C16.4142 10.25 16.75 10.5857 16.75 11L16.75 15.1895L17.9697 13.9697C18.2626 13.6768 18.7373 13.6768 19.0303 13.9697C19.3231 14.2627 19.3231 14.7373 19.0303 15.0303L16.5303 17.5303C16.2373 17.8232 15.7626 17.8232 15.4697 17.5303L12.9697 15.0303C12.6768 14.7373 12.6768 14.2627 12.9697 13.9697C13.2626 13.6768 13.7373 13.6768 14.0303 13.9697L15.25 15.1895L15.25 11Z\",fill:\"currentColor\"})),sort_descending_order_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M21.75 19C21.75 20.5188 20.5188 21.75 19 21.75H5C3.4812 21.75 2.25 20.5188 2.25 19V5C2.25 3.4812 3.4812 2.25 5 2.25H19C20.5188 2.25 21.75 3.4812 21.75 5V19ZM10.75 8C10.75 8.41431 10.4142 8.75 10 8.75H6C5.58582 8.75 5.25 8.41431 5.25 8C5.25 7.58569 5.58582 7.25 6 7.25H10C10.4142 7.25 10.75 7.58569 10.75 8ZM11.5 13C11.9142 13 12.25 12.6643 12.25 12.25C12.25 11.8357 11.9142 11.5 11.5 11.5H6C5.58582 11.5 5.25 11.8357 5.25 12.25C5.25 12.6643 5.58582 13 6 13H11.5ZM6 15.75H16C16.4142 15.75 16.75 16.0857 16.75 16.5C16.75 16.9143 16.4142 17.25 16 17.25H6C5.58582 17.25 5.25 16.9143 5.25 16.5C5.25 16.0857 5.58582 15.75 6 15.75ZM15.25 13V8.81055L14.0303 10.0303C13.7373 10.3232 13.2626 10.3232 12.9697 10.0303C12.6768 9.73755 12.6768 9.2627 12.9697 8.96973L15.4697 6.46973L15.5264 6.41797C15.8209 6.17773 16.2556 6.19531 16.5303 6.46973L19.0303 8.96973C19.3231 9.2627 19.3231 9.73755 19.0303 10.0303C18.7373 10.3232 18.2626 10.3232 17.9697 10.0303L16.75 8.81055V13C16.75 13.4143 16.4142 13.75 16 13.75C15.5857 13.75 15.25 13.4143 15.25 13Z\",fill:\"currentColor\"})),plus_circle_zoom_in_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75ZM11 16.9999V12.9999H7C6.44771 12.9999 6 12.5522 6 11.9999C6.00006 11.4477 6.44775 10.9999 7 10.9999H11V6.99988C11 6.4476 11.4477 5.99988 12 5.99988C12.5523 5.99988 13 6.4476 13 6.99988V10.9999H17C17.5522 10.9999 17.9999 11.4477 18 11.9999C18 12.5522 17.5523 12.9999 17 12.9999H13V16.9999C13 17.5522 12.5523 17.9999 12 17.9999C11.4477 17.9999 11 17.5522 11 16.9999Z\",fill:\"currentColor\"})),right_circle_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25ZM16.7372 9.67573C17.1103 9.26861 17.0828 8.63604 16.6757 8.26285C16.2686 7.88966 15.636 7.91716 15.2628 8.32428L10.4686 13.5544L8.70711 11.7929C8.31658 11.4024 7.68342 11.4024 7.29289 11.7929C6.90237 12.1834 6.90237 12.8166 7.29289 13.2071L9.79289 15.7071C9.98576 15.9 10.249 16.0057 10.5217 15.9998C10.7944 15.9938 11.0528 15.8768 11.2372 15.6757L16.7372 9.67573Z\",fill:\"currentColor\"}))}},4766:(e,t,n)=>{\"use strict\";n.d(t,{ZP:()=>s});var a=n(7294),r=n(1900),o=n(4528);(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"#070707\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 100 99.964\"},(0,a.createElement)(\"path\",{d:\"M97.637 61.79a3.8 3.8 0 0 1-.265-2.338c2.854-16.467-1.618-30.679-13.443-42.449A46.289 46.289 0 0 0 57.307 3.971a45.987 45.987 0 0 0-13.429.031 3.88 3.88 0 0 1-2.678-.468 27.868 27.868 0 0 0-37.106 9.469 27.009 27.009 0 0 0-.722 27.349 2.2 2.2 0 0 1 .268 1.577c-4.109 21.989 7.627 42.639 27.735 51.084a48.685 48.685 0 0 0 26.784 3.2 3.168 3.168 0 0 1 2.058.3 28.253 28.253 0 0 0 14.99 3.392 24.78 24.78 0 0 0 10.7-3.344 28.036 28.036 0 0 0 13.784-19.714 26.476 26.476 0 0 0-2.054-15.057Zm-22.9 2.118c-1.145 6.065-5.1 9.919-10.639 12.005a34.579 34.579 0 0 1-25.014.047 17.5 17.5 0 0 1-10.124-9.767 10.7 10.7 0 0 1-.823-3.5 4.786 4.786 0 0 1 2.69-4.8 5.42 5.42 0 0 1 5.954.641 8.434 8.434 0 0 1 1.858 2.609c.575 1.166 1.117 2.344 1.763 3.477a10.145 10.145 0 0 0 8.116 5.239c3.849.439 7.6.181 11.051-1.866 3.034-1.8 4.327-4.8 3.344-7.958a6.789 6.789 0 0 0-3.821-3.96 36.8 36.8 0 0 0-8.484-2.527c-4.659-1.075-9.32-2.134-13.636-4.306-6.146-3.093-8.925-8.983-7.25-15.629a12.974 12.974 0 0 1 5.917-7.83 26.362 26.362 0 0 1 12.494-3.723c1.1-.089 2.212-.11 2.953-.145 5.344.04 10.179.739 14.54 3.347 3.038 1.816 5.483 4.183 6.521 7.712a5.465 5.465 0 0 1-1.221 5.8 5.212 5.212 0 0 1-8.142-.932c-.8-1.185-1.506-2.436-2.312-3.618a9.062 9.062 0 0 0-6.6-4.222c-3.583-.437-7.092-.415-10.344 1.435a5.654 5.654 0 0 0-3.072 3.721c-.446 2.16.408 3.849 2.36 5.136 2.449 1.616 5.253 2.209 8.032 2.887a123.979 123.979 0 0 1 12.525 3.358 19.776 19.776 0 0 1 8.3 4.956c3.252 3.573 3.917 7.862 3.06 12.414Z\"})),(0,a.createElement)(\"svg\",{viewBox:\"0 0 16 16\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M9.34084 11.3521L7.66481 13.0281C6.36891 14.324 4.26783 14.324 2.97193 13.0281C1.67602 11.7322 1.67602 9.63111 2.97193 8.33521L4.64796 6.65918M6.65916 4.64795L8.33519 2.97193C9.63109 1.67603 11.7322 1.67602 13.0281 2.97192C14.324 4.26782 14.324 6.36889 13.0281 7.66479L11.352 9.34082\",stroke:\"currentColor\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.33398 9.66665L9.66732 6.33331\",stroke:\"currentColor\",strokeLinecap:\"round\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 50 50\"},(0,a.createElement)(\"path\",{fill:\"currentColor\",d:\"M50 4.4v41.1c0 2.5-2 4.4-4.4 4.4H34.5V31.1c0-.4.1-.6.5-.5h5.4c.4 0 .6 0 .6-.5.3-2.3.6-4.6.9-7 0-.4-.1-.4-.4-.4h-6.6c-.3 0-.5-.1-.5-.4v-4.8c-.1-1.5 1-2.9 2.6-3H41.6c.3 0 .4-.1.4-.4V7.9c0-.4-.1-.4-.5-.4-1.5 0-6.7 0-7.8.2-4 .7-6.9 4-7.2 8.1-.1 2.2 0 4.4 0 6.6 0 .5-.1.6-.6.6h-5.5c-.3 0-.4.1-.4.4v7c0 .3.1.4.4.4h5.5c.5 0 .6.1.6.6v18.8H4.4C2 50 0 48 0 45.5V4.4C0 2 2 0 4.4 0h41.1C48 0 50 2 50 4.4z\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 35.699 50\"},(0,a.createElement)(\"path\",{d:\"M27.638 5.514A13.716 13.716 0 0 1 26.162 0h-6.835v28.914a6.244 6.244 0 1 1-6.241-6.247 6.086 6.086 0 0 1 1.965.32v-7.002a12.836 12.836 0 0 0-1.965-.149A13.082 13.082 0 1 0 26.16 28.918V14.134a17.847 17.847 0 0 0 10.454 3.277l.162-6.834c-4.405-.105-7.4-1.761-9.14-5.063\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{d:\"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m11.606 21.714a11.347 11.347 0 0 1-6.656-2.086v9.413a8.323 8.323 0 1 1-7.076-8.236v4.461a3.9 3.9 0 0 0-1.251-.2 3.978 3.978 0 1 0 3.974 3.977V10.628h4.353a8.761 8.761 0 0 0 .94 3.514c1.112 2.1 3.015 3.156 5.821 3.223Z\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 44 44\"},(0,a.createElement)(\"g\",null,(0,a.createElement)(\"path\",{d:\"M30.889 22a8.883 8.883 0 0 1-8.976 8.888A8.932 8.932 0 1 1 30.889 22\"}),(0,a.createElement)(\"path\",{d:\"M22 0C1.18 0 0 1.179 0 22s1.18 22 22 22 22-1.179 22-22S42.821 0 22 0m0 35.816A13.818 13.818 0 1 1 35.816 22 13.817 13.817 0 0 1 22 35.816m14.362-24.948a3.194 3.194 0 0 1-3.256-3.256 3.248 3.248 0 0 1 3.256-3.256 3.175 3.175 0 0 1 3.168 3.256 3.123 3.123 0 0 1-3.168 3.256\"}))),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 42 42\"},(0,a.createElement)(\"path\",{d:\"M37.53 0H4.47A4.468 4.468 0 0 0 0 4.47v33.06A4.468 4.468 0 0 0 4.47 42h33.06A4.468 4.468 0 0 0 42 37.53V4.47A4.468 4.468 0 0 0 37.53 0M12.49 35.12c0 .51-.09.59-.59.59H6.87c-.5 0-.59-.17-.59-.59V16.43c0-.5.09-.67.67-.67h5.03c.42 0 .59.08.59.59-.08 6.28-.08 12.49-.08 18.77m-3.1-22.04a3.583 3.583 0 0 1-3.61-3.61 3.626 3.626 0 0 1 3.61-3.6 3.572 3.572 0 0 1 3.6 3.6 3.692 3.692 0 0 1-3.6 3.61m25.65 22.63h-4.78c-.5 0-.75-.08-.75-.67v-9.3a13.485 13.485 0 0 0-.26-2.6 2.664 2.664 0 0 0-2.43-2.35 3.264 3.264 0 0 0-3.69 1.68 6.537 6.537 0 0 0-.58 2.51v9.98c0 .67-.17.84-.84.75-1.59-.08-3.19 0-4.78 0-.42 0-.59-.17-.59-.59V16.35c0-.42.09-.59.51-.59h4.86c.42 0 .5.17.5.5v2.1a7.617 7.617 0 0 1 3.69-2.77 8.813 8.813 0 0 1 6.2.51 5.948 5.948 0 0 1 3.11 4.44 20.4 20.4 0 0 1 .42 3.94v10.56c.08.59-.09.67-.59.67\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 44 44.26\"},(0,a.createElement)(\"path\",{d:\"M22.311 0A21.555 21.555 0 0 0 .798 21.6a22.259 22.259 0 0 0 3.01 11.067l-3.807 11.6 11.951-3.805A21.656 21.656 0 0 0 44 21.517 21.687 21.687 0 0 0 22.311 0m10.637 29.915a5.156 5.156 0 0 1-3.487 2.414c-4.559.983-9.387-2.593-12.338-5.633a22.894 22.894 0 0 1-5.275-8.046c-.983-2.861.358-8.583 4.381-7.689.984.179 1.163 1.073 1.431 1.878.447 1.162.8 2.235 1.251 3.4a1.514 1.514 0 0 1 0 .894c-.357.805-1.162 1.341-1.7 2.056-.805 1.252 2.324 4.292 3.218 5.1 1.163 1.072 2.951 2.682 4.56 2.861.894.089 2.056-1.7 2.5-2.325.358-.447.626-.536 1.073-.358 1.52.626 2.951 1.52 4.47 2.325a.811.811 0 0 1 .537.983 3.565 3.565 0 0 1-.626 2.146\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{d:\"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0M2.724 24a21.149 21.149 0 0 1 1.844-8.657L14.716 43.15A21.283 21.283 0 0 1 2.724 24M24 45.278a21.317 21.317 0 0 1-6.01-.865l6.384-18.55 6.538 17.917a1.806 1.806 0 0 0 .154.293 21.224 21.224 0 0 1-7.066 1.2m2.931-31.249c1.282-.065 2.436-.2 2.436-.2a.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-2.09 0-5.6-.272-5.6-.272a.88.88 0 0 0-.133 1.754s1.084.136 2.23.2l3.317 9.084-4.657 13.963-7.754-23.047a42.05 42.05 0 0 0 2.436-.2.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-.4 0-.871-.009-1.371-.025a21.273 21.273 0 0 1 32.144-4.006c-.093-.006-.182-.015-.275-.015a3.682 3.682 0 0 0-3.573 3.774c0 1.754 1.01 3.237 2.091 4.991a11.211 11.211 0 0 1 1.754 5.869 24.615 24.615 0 0 1-1.547 7.014l-2.2 6.952Zm7.764 28.366 6.5-18.788a20.025 20.025 0 0 0 1.618-7.62 16.1 16.1 0 0 0-.142-2.189 21.276 21.276 0 0 1-7.974 28.6\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"g\",null,(0,a.createElement)(\"path\",{d:\"M4 23.999a20 20 0 0 0 11.272 18L5.732 15.86A19.923 19.923 0 0 0 4 24m33.5-1.009a10.531 10.531 0 0 0-1.646-5.517c-1.014-1.648-1.964-3.042-1.964-4.69a3.463 3.463 0 0 1 3.358-3.55c.089 0 .173.011.259.016A20 20 0 0 0 7.29 13.013c.47.015.912.025 1.288.025 2.091 0 5.33-.254 5.33-.254a.827.827 0 0 1 .128 1.648s-1.084.127-2.289.19l7.283 21.664 4.378-13.127-3.117-8.535c-1.078-.063-2.1-.19-2.1-.19a.827.827 0 0 1 .127-1.648s3.3.254 5.267.254c2.092 0 5.331-.254 5.331-.254a.827.827 0 0 1 .128 1.648s-1.085.127-2.289.19l7.228 21.5 2.063-6.538a23.047 23.047 0 0 0 1.454-6.593m-13.146 2.755-6 17.437a20.006 20.006 0 0 0 12.292-.319 1.835 1.835 0 0 1-.143-.276Zm17.2-11.344a15.342 15.342 0 0 1 .134 2.057 18.884 18.884 0 0 1-1.524 7.163l-6.11 17.661a20 20 0 0 0 7.5-26.881\"}),(0,a.createElement)(\"path\",{d:\"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m0 46.56A22.56 22.56 0 1 1 46.56 24 22.559 22.559 0 0 1 24 46.56\"}))),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 33.86\"},(0,a.createElement)(\"path\",{d:\"M47.134 5.29a5.893 5.893 0 0 0-4.232-4.232C39.055 0 24.05 0 24.05 0S9.044 0 5.293.962A6.146 6.146 0 0 0 .965 5.29C.003 9.041.003 16.929.003 16.929s0 7.887.962 11.638A5.894 5.894 0 0 0 5.197 32.8c3.847 1.058 18.853 1.058 18.853 1.058s15.005 0 18.756-1.058a6.059 6.059 0 0 0 4.232-4.233C48 24.816 48 16.929 48 16.929s.1-7.888-.866-11.639M19.141 21.928v-10a1.237 1.237 0 0 1 1.845-1.077l8.85 5a1.237 1.237 0 0 1 0 2.153l-8.85 5a1.237 1.237 0 0 1-1.845-1.077\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{d:\"M48.004 23.995a24 24 0 0 1-24 24.005 23.735 23.735 0 0 1-10.948-2.65h.086a15.084 15.084 0 0 0 4.8-6.914 35.685 35.685 0 0 0 1.729-7.009v-.192c.1-.384.192-.384.48-.192.1 0 .1.1.192.1a7.385 7.385 0 0 0 4.322 2.112 11.879 11.879 0 0 0 7.491-.96 16.739 16.739 0 0 0 4.513-3.649 11.277 11.277 0 0 0 1-1.354 17.413 17.413 0 0 0 2.574-7.278 16.381 16.381 0 0 0-1.1-8.555 13.1 13.1 0 0 0-4.774-5.569 17.523 17.523 0 0 0-8.067-2.977A20.935 20.935 0 0 0 15.45 4.065a15.91 15.91 0 0 0-9.028 8.258 11.865 11.865 0 0 0-.288 9.89 8.5 8.5 0 0 0 5.859 4.993c.288.1.384 0 .384-.288.192-1.056.384-2.112.576-3.073 0-.192 0-.384-.192-.48a8.869 8.869 0 0 1-1.825-2.688 6.966 6.966 0 0 1 .1-5.377 12.226 12.226 0 0 1 7.875-7.778 14.92 14.92 0 0 1 7.4-.672c5.475.912 7.914 6.625 7.559 11.685a15.147 15.147 0 0 1-2.757 7.423 7.589 7.589 0 0 1-4.129 2.976 5.108 5.108 0 0 1-4.226-.768 2.864 2.864 0 0 1-1.153-2.3 9.668 9.668 0 0 1 .769-3.745c.48-1.44 1.056-2.785 1.44-4.225a10.787 10.787 0 0 0 .384-3.072 3.408 3.408 0 0 0-4.206-2.977 5.336 5.336 0 0 0-2.641 1.364c-1.892 1.785-2.4 5.175-1.6 7.566a7.772 7.772 0 0 1-.1 4.9c-.864 2.976-1.825 6.049-2.5 9.122a28.284 28.284 0 0 0-.672 7.489 8.268 8.268 0 0 0 .576 3.063 24 24 0 1 1 34.949-21.356\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 45.85 48\"},(0,a.createElement)(\"path\",{d:\"M44.492 25.179a6.625 6.625 0 0 0 .192-7.766 6.482 6.482 0 0 0-9.492-1.151c-.192.1-.288.192-.384.1a28.339 28.339 0 0 0-9.684-2.493c-.192 0-.287-.095-.192-.287.288-.959.672-1.822 1.055-2.781a29.239 29.239 0 0 1 3.068-5.657 7.62 7.62 0 0 1 2.017-1.919 2.338 2.338 0 0 1 2.493 0 6.138 6.138 0 0 1 1.246.959c.192.191.192.287.192.575a3.868 3.868 0 0 0 3.26 4.506 3.786 3.786 0 0 0 4.309-3.739 3.8 3.8 0 0 0-5.463-3.547.358.358 0 0 1-.479-.1 4.481 4.481 0 0 0-1.151-.863 5.486 5.486 0 0 0-6.232-.1 14.609 14.609 0 0 0-3.26 3.643 38.376 38.376 0 0 0-4.123 9.013c-.1.287-.192.383-.479.383a26.861 26.861 0 0 0-10.163 2.493c-.192.1-.288.1-.48-.1a6.631 6.631 0 0 0-8.054-.383 6.539 6.539 0 0 0-1.246 9.4c.192.192.192.288.1.479a13.425 13.425 0 0 0-.959 3.74 14.384 14.384 0 0 0 2.3 8.821 20.414 20.414 0 0 0 7.191 6.519 27.739 27.739 0 0 0 12.752 3.069 27.311 27.311 0 0 0 12.464-2.781 19.211 19.211 0 0 0 7.282-5.933c3.068-4.219 3.835-8.725 1.822-13.615a.865.865 0 0 1 .1-.48m-12.656 5.421a3.645 3.645 0 1 1 3.024-3.023 3.646 3.646 0 0 1-3.024 3.023m-.192 8.1a14.556 14.556 0 0 1-9.013 3.26 14.886 14.886 0 0 1-8.533-3.164 1.469 1.469 0 1 1 1.822-2.3 11.081 11.081 0 0 0 7.862 2.493 11.805 11.805 0 0 0 5.369-2.014c.288-.191.479-.383.767-.575a1.488 1.488 0 0 1 2.014.288 1.6 1.6 0 0 1-.288 2.013m-16.683-15.34a3.646 3.646 0 1 1-3.644 3.643 3.526 3.526 0 0 1 3.644-3.643m-12.464.767a4.959 4.959 0 0 1 7.095-6.808 18.573 18.573 0 0 0-7.095 6.808m41.036-.288a18.259 18.259 0 0 0-6.807-6.424c-.1-.1-.192-.1-.288-.192a5.75 5.75 0 0 1 2.4-.959 4.811 4.811 0 0 1 4.794 2.206 4.978 4.978 0 0 1 .1 5.273c0 .1-.1.384-.192.1\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 47.04 48\"},(0,a.createElement)(\"path\",{d:\"M24 19.625v8.907h13.227a11.731 11.731 0 0 1-4.907 7.786 14.2 14.2 0 0 1-8.32 2.4 14.447 14.447 0 0 1-13.653-9.973 14.764 14.764 0 0 1-.8-4.747 15.523 15.523 0 0 1 .773-4.746A14.507 14.507 0 0 1 24 9.278a13.3 13.3 0 0 1 9.28 3.574l6.773-6.614A23.061 23.061 0 0 0 24-.002a24 24 0 0 0 0 48 22.873 22.873 0 0 0 15.893-5.813c4.534-4.187 7.147-10.347 7.147-17.653a20.536 20.536 0 0 0-.507-4.907Z\"}));const i=new class{constructor(){this.icons=new Map,this.aliases=new Map}initializeIcons(e){Object.entries(e).forEach((([e,t])=>{this.icons.set(e,t)}))}storeAliases(e){Object.entries(e).forEach((([e,t])=>{this.icons.has(t)&&this.aliases.set(e,this.icons.get(t))}))}getAliases(){return Object.fromEntries(this.aliases)}toObject(){return{...Object.fromEntries(this.icons),...Object.fromEntries(this.aliases)}}toCurrentIconObj(){return{...Object.fromEntries(this.icons)}}};i.initializeIcons({...o.c,...r.e}),i.storeAliases({angle_bottom_left_line:\"arrow_down_bottom_left_solid\",angle_bottom_right_line:\"arrow_down_bottom_right_solid\",angle_top_left_line:\"arrow_up_top_left_solid\",angle_top_right_line:\"arrow_up_top_right_solid\",rightFillAngle:\"right_triangle_angle_play_arrow_forward_solid\",leftAngle2:\"arrow_left_previous_backward_chevron_line\",rightAngle2:\"arrow_right_next_forward_chevron_line\",collapse_bottom_line:\"arrow_down_dropdown_maximize_chevron_line\",arrowUp2:\"arrow_up_dropdown_minimize_chevron_line\",longArrowUp2:\"long_arrow_up_top_increase_solid\",arrow_left_circle_line:\"arrow_left_backward_circle_line\",arrow_bottom_circle_line:\"arrow_down_bottom_downward_circle_line\",arrow_right_circle_line:\"arrow_right_forward_circle_line\",arrow_top_circle_line:\"arrow_up_top_upward_circle_line\",close_circle_line:\"cross_close_x_minimize_circle_line\",close_line:\"cross_x_close_minimize_line\",arrow_down_line:\"arrow_down_bottom_downward_line\",leftArrowLg:\"arrow_left_backward_line\",rightArrowLg:\"arrow_left_forward_line\",arrow_up_line:\"long_arrow_up_top_increase_line\",down_solid:\"arrow_down_bottom_downward_circle_solid\",right_solid:\"arrow_right_forward_circle_solid\",left_solid:\"arrow_left_backward_circle_solid\",up_solid:\"arrow_up_top_upward_circle_solid\",wrong_solid:\"cross_close_x_minimize_circle_solid\",bottom_right_line:\"arrow_move_up_right_line\",bottom_left_line:\"arrow_move_up_left_line\",top_left_angle_line:\"arrow_move_down_left_line\",top_right_line:\"arrow_move_down_right_line\",at_line:\"at_a_mail_line\",refresh:\"refresh_reset_cycle_loop_infinity_line\",cart_line:\"shopping_cart_line\",cart_solid:\"add_plus_shopping_cart_solid\",cog_line:\"settings_tool_function_line\",cog_solid:\"settings_tool_function_solid\",correct_solid:\"right_circle_solid\",dot_solid:\"dot_circle_solid\",clock:\"clock_reading_time_1_line.svg\",book:\"book_line\",download_line:\"download_1_line\",download_solid:\"download_1_solid\",downlod_bottom_solid:\"download_1_solid\",eye:\"view_count_show_visible_eye_open_2_line\",hidden_line:\"hidden_hide_invisible_line\",home_line:\"home_house_line\",home_solid:\"home_house_solid\",location_line:\"location_gps_map_line\",location_solid:\"location_gps_map_solid\",love_line:\"heart_love_wishlist_favourite_line\",love_solid:\"heart_love_wishlist_favourite_solid\",notice_circle_solid:\"warning_circle_solid\",notice_solid:\"warning_triangle_solid\",play_line:\"play_media_video_circle_line\",plus2:\"\",videoplay:\"right_triangle_angle_play_arrow_forward_solid\",left_angle_solid:\"left_triangle_angle_arrow_backward_solid\",caretArrow:\"caret_up_top_triangle_angle_arrow_upward_solid\",rectangle_solid:\"square_rounded_solid\",restriction_line:\"restriction_no_stop_line\",right_circle_line:\"correct_save_check_circle_line\",save_line:\"correct_save_check_line\",search_line:\"search_magnify_line\",search_solid:\"search_magnify_solid\",triangle_solid:\"triangle_shape_solid\",warning_circle_line:\"warning_circle_line\",warning_triangle_line:\"warning_triangle_line\",upload_solid:\"upload_1_solid\",cat1:\"category_file_documents_1_solid\",cat2:\"category_book_line\",cat3:\"category_file_documents_2_line\",cat4:\"category_file_documents_3_line\",cat5:\"category_file_documents_3_solid\",cat6:\"category_file_documents_4_line\",cat7:\"category_book_line\",commentCount1:\"messege_comment_1_line\",commentCount2:\"messege_comment_3_solid\",commentCount3:\"messege_comment_3_line\",commentCount4:\"messege_comment_6_line\",commentCount5:\"messege_comment_7_line\",commentCount6:\"messege_comment_8_line\",comment:\"messege_comment_4_line\",date1:\"calendar_date_4_line\",date2:\"calendar_date_1_solid\",date3:\"calendar_date_2_line\",date4:\"calendar_date_4_solid\",date5:\"calendar_date_3_line\",calendar:\"calendar_date_3_line\",readingTime1:\"clock_reading_time_3_line\",readingTime2:\"clock_reading_time_2_line\",readingTime3:\"book_reading_time_line\",readingTime4:\"clock_reading_time_1_line\",readingTime5:\"hourglass_timer_time_line\",tag1:\"tag_bookmark_save_favourite_mark_discount_sale_line\",tag2:\"price_tag_label_category_sale_discount_solid\",tag3:\"price_tag_label_category_sale_discount_line\",tag4:\"price_tag_offer_sale_coupon_solid\",tag5:\"price_tag_label_category_sale_discount_line\",tag6:\"growth_increase_up_solid\",viewCount1:\"view_count_show_visible_eye_open_1_line\",viewCount2:\"view_count_show_visible_eye_open_2_line\",viewCount3:\"view_count_show_visible_eye_open_3_line\",viewCount4:\"view_count_show_visible_eye_open_4_solid\",viewCount5:\"view_count_show_visible_eye_open_5_solid\",viewCount6:\"view_count_show_visible_eye_open_5_solid\",author1:\"author_user_human_1_line\",author2:\"author_user_human_4_line\",author3:\"author_user_human_4_solid\",author4:\"author_user_human_4_line\",author5:\"author_user_human_3_solid\",user:\"author_user_human_3_line\",desktop:\"desktop_monitor_computer_line\",laptop:\"laptop_computer_line\",tablet:\"tablet_ipad_pad_line\",mobile:\"mobile_smartphone_phone_line\",angry_line:\"angry_emoji_line\",angry_solid:\"angry_emoji_solid\",confused_line:\"confused_emoji_line\",confused_solid:\"confused_emoji_solid\",happy_line:\"happy_emoji_line\",happy_solid:\"happy_emoji_solid\",smile_line:\"smile_emoji_line\",smile_solid:\"smile_emoji_solid\",share_line:\"social_community_line\",share:\"share_social_solid\",apple_solid:\"apple_logo_icon_solid\",android_solid:\"android_logo_icon_solid\",google_solid:\"google_logo_icon_solid\",messenger:\"messenger_logo_icon_solid\",microsoft_solid:\"microsoft_logo_icon_solid\",mail:\"mail_email_messege_solid\",media_document:\"media_document\",facebook:\"facebook_logo_icon_solid\",twitter:\"twitter_x_logo_icon_line\",arrowDown2:\"arrow_down_dropdown_maximize_chevron_line\",setting:\"settings_tool_function_solid\",right_circle_solid:\"correct_save_check_circle_solid\",full_screen:\"full_screen_corners_out_solid\",zoom_in:\"zoom_in_magnifying_glass_plus_line\",zoom_out:\"zoom_out_magnifying_glass_minus_line\",gallery_indicator:\"gallery_indicator_image_solid\",ascending:\"sort_ascending_order_line\",descending:\"sort_descending_order_line\",unlink:\"unlink_link_break_line\",rocket:\"rocket_fly_boost_launch_pro_solid\",unlock:\"unlocked_open_security_solid\",connect:\"plugin_connect_socket_integration_line\",leftAngle:\"arrow_left_previous_backward_chevron_line\",rightAngle:\"right_triangle_angle_play_arrow_forward_line\",link:\"link_chains_line\",subtract:(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"#070707\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),skype:\"skype_logo_icon_solid\",updated_link:\"link_chains_line\",tiktok_lite_solid:\"tiktok_logo_icon_circle_line\",tiktok_solid:\"tiktok_logo_icon_solid\",instagram_solid:\"instagram_logo_icon_solid\",linkedin:\"linkedin_logo_icon_solid\",whatsapp:\"whatsapp_logo_icon_solid\",wordpress_lite_solid:\"wordpress_logo_icon_solid\",wordpress_solid:\"wordpress_logo_icon_2_solid\",youtube_solid:\"youtube_logo_icon_solid\",pinterest:\"pinterest_logo_icon_solid\",reddit:\"reddit_logo_icon_solid\",five_star_line:\"star_rating_line\",rightAngleBold:\"arrow_right_next_forward_chevron_line\",leftAngleBold:\"arrow_left_previous_backward_chevron_line\",reset_left_line:\"refresh_reset_cycle_loop_infinity_line\",hamicon_1:\"hamicon_1_line\",hamicon_2:\"hemicon_2_line\",hamicon_3:\"hemicon_3_line\",hamicon_4:\"hamicon_5_line\",hamicon_5:\"hemicon_2_solid\",hamicon_6:\"hamicon_6_line\"});const l=i.toObject(),s=((0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"#070707\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),l.skype_logo_icon_solid,l.link_chains_line,l.facebook_logo_icon_solid,l.twitter_x_logo_icon_line,l.tiktok_logo_icon_circle_line,l.tiktok_logo_icon_solid,l.instagram_logo_icon_solid,l.linkedin_logo_icon_solid,l.whatsapp_logo_icon_solid,l.wordpress_logo_icon_solid,l.wordpress_logo_icon_2_solid,l.youtube_logo_icon_solid,l.pinterest_logo_icon_solid,l.reddit_logo_icon_solid,l.google_logo_icon_solid,l.link_chains_line,l.share_social_solid,i.toCurrentIconObj(),l)},1900:(e,t,n)=>{\"use strict\";n.d(t,{e:()=>r});var a=n(7294);const r={add_plus_shopping_cart_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M13.745 7.5v4M11.75 9.505h4\"})),android_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6.5 9.5a5.5 5.5 0 1 1 11 0V17a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2V9.5ZM20 11v6M4 11v6\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"m14 4 1.5-2M10 4 8.5 2m-2 8.5h11m-8 8.5v3m5.5-3v3M10.49 8h.01m2.99 0h.01\"})),angry_emoji_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7 9.5c1 0 2.69.254 2.964 1.231m0 0A.988.988 0 0 1 10 11c0 1.5-2.072-.037-.036-.269ZM17 9.5c-1 0-2.69.254-2.964 1.231m0 0A.99.99 0 0 0 14 11c0 1.5 2.072-.037.036-.269Z\"}),(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8 17c1.5-3 6.5-3 8 0\"})),apple_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M19.489 8.963c-.114.089-2.127 1.23-2.127 3.768 0 2.936 2.561 3.975 2.638 4-.012.064-.407 1.423-1.35 2.808-.841 1.219-1.72 2.435-3.056 2.435-1.337 0-1.68-.781-3.223-.781-1.504 0-2.039.807-3.261.807-1.223 0-2.075-1.128-3.056-2.512C4.918 17.86 4 15.335 4 12.938 4 9.09 6.484 7.05 8.93 7.05c1.298 0 2.381.859 3.197.859.776 0 1.987-.91 3.465-.91.56 0 2.572.051 3.897 1.963ZM14.59 4.415c.533-.64.91-1.527.91-2.415 0-.123-.01-.248-.033-.349-.867.033-1.9.585-2.522 1.315-.489.561-.945 1.45-.945 2.349 0 .135.022.27.033.314.055.01.144.022.233.022.778 0 1.758-.527 2.323-1.236Z\"})),arrow_down_bottom_downward_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15.5 13 12 16.5m0 0L8.5 13m3.5 3.5v-9\"})),arrow_down_bottom_downward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m3.5 12 8.5 8.5m0 0 8.5-8.5M12 20.5v-17\"})),arrow_down_bottom_left_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 6v12m0 0h12M6 18 18 6\"})),arrow_down_bottom_right_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M18 6v12m0 0H6m12 0L6 6\"})),arrow_down_dropdown_maximize_chevron_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m6 9 6 6 6-6\"})),arrow_left_backward_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M11 15.5 7.5 12m0 0L11 8.5M7.5 12h9\"})),arrow_left_backward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 20.5 3.5 12m0 0L12 3.5M3.5 12h17\"})),arrow_left_forward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m12 20.5 8.5-8.5m0 0L12 3.5m8.5 8.5h-17\"})),arrow_left_previous_backward_chevron_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m15 18-6-6 6-6\"})),arrow_move_down_left_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 6v3a4 4 0 0 1-4 4H2m0 0 5 5m-5-5 5-5\"})),arrow_move_down_right_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 6v3a4 4 0 0 0 4 4h16m0 0-5 5m5-5-5-5\"})),arrow_move_up_left_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 18v-3a4 4 0 0 0-4-4H2m0 0 5-5m-5 5 5 5\"})),arrow_move_up_right_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 18v-3a4 4 0 0 1 4-4h16m0 0-5-5m5 5-5 5\"})),arrow_right_forward_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m13 8.5 3.5 3.5m0 0L13 15.5m3.5-3.5h-9\"})),arrow_right_next_forward_chevron_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m9 18 6-6-6-6\"})),arrow_up_dropdown_minimize_chevron_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m18 15-6-6-6 6\"})),arrow_up_top_left_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 18V6m0 0h12M6 6l12 12\"})),arrow_up_top_right_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M18 18V6m0 0H6m12 0L6 18\"})),arrow_up_top_upward_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.5 11 12 7.5m0 0 3.5 3.5M12 7.5v9\"})),arrow_up_top_upward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3.5 12 12 3.5m0 0 8.5 8.5M12 3.5v17\"})),at_a_mail_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16 8v7a2 2 0 0 0 2 2 4 4 0 0 0 4-4v-1c0-5.523-4.477-10-10-10S2 6.477 2 12s4.477 10 10 10c1.821 0 3.53-.487 5-1.338M16 12a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z\"})),author_user_human_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"7\",r:\"4\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4.5 20.533A6.533 6.533 0 0 1 11.033 14h1.934a6.533 6.533 0 0 1 6.533 6.533.467.467 0 0 1-.467.467H4.967a.467.467 0 0 1-.467-.467Z\"})),author_user_human_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16.5 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 20.5a8 8 0 1 0-16 0\"})),author_user_human_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"7\",r:\"4\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 21v-3a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v3\"})),author_user_human_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"7\",r:\"4\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 13.5c-3.283 0-6.156 1.585-7.728 3.776C2.984 19.07 4.791 21 7 21h10c2.209 0 4.015-1.93 2.727-3.724C18.155 15.086 15.283 13.5 12 13.5Z\"})),book_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M9.5 18.5v-3.092a3 3 0 0 1 .504-1.664l1.219-1.828a.934.934 0 0 1 1.554 0l1.22 1.828a3 3 0 0 1 .503 1.664V18.5m-5-2.5h5\"})),book_reading_time_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7 19h9M4 19V7a3 3 0 0 1 3-3h3M4 19a3 3 0 0 0 3 3h11M4 19a3 3 0 0 1 3-3h11v-4\"}),(0,a.createElement)(\"circle\",{cx:\"14.5\",cy:\"7.5\",r:\"5.5\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M14.5 5v3l2 1\"})),calendar_date_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18M8 13.5h.01M8 17h.01M12 13.5h.01M12 17h.01M16 13.5h.01M16 17h.01\"})),calendar_date_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 3h15v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 3h15l-3.595 13.032a2 2 0 0 1-1.928 1.468H3.313a1 1 0 0 1-.964-1.266L6 3Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M11 13.5 12.5 8l-2 1m-1 4.5h3m4-12-.5 3m-2.5-3-.5 3m-2.5-3-.5 3\"})),calendar_date_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18\"})),calendar_date_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM7.5 2v3M12 2v3m4.5-3v3M8 13.5h.01M8 10h.01M8 17h.01M12 13.5h.01M12 10h.01M12 17h.01M16 13.5h.01M16 10h.01M16 17h.01\"})),caret_up_top_triangle_angle_arrow_upward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12.8 6.067a1 1 0 0 0-1.6 0l-7 9.333A1 1 0 0 0 5 17h14a1 1 0 0 0 .8-1.6l-7-9.333Z\"})),category_book_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 11h-5v3h5M7.5 15.5h3m-3 3h3\"})),category_file_documents_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16.5 7H5a2 2 0 1 1 0-4h16v6.5L19.5 11v7h-3\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5v16h13.5V7m-10 7.5h3m-3 3h3\"})),category_file_documents_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M5 20h16a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12Zm0 0H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h11.172a2 2 0 0 1 1.414.586L19 7\"})),category_file_documents_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M21 20H6a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h7.586a1 1 0 0 0 .707-.293l2.414-2.414A1 1 0 0 1 17.414 7H21a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M20 7V5a1 1 0 0 0-1-1h-3.586a1 1 0 0 0-.707.293l-2.414 2.414a1 1 0 0 1-.707.293H3a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h2\"})),category_file_documents_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 20V5a1 1 0 0 1 1-1h5.586a1 1 0 0 1 .707.293L11.5 6.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8 6.5h10a2 2 0 0 1 2 2V11M6 11l-4 9h16l4-9H6Z\"})),clock_reading_time_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 6v6l4 2\"})),clock_reading_time_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M12 2v1.5M2 12h1.5M12 22v-1.5M22 12h-1.5M13 13 9.5 9.5M11 13l5-5\"})),clock_reading_time_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 13.5V16a6 6 0 0 1-6 6H2v-7a6 6 0 0 1 6-6h1\"}),(0,a.createElement)(\"circle\",{cx:\"15.5\",cy:\"8.5\",r:\"6.5\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15.5 5.111V9l2 1.111M6 15h3m-3 3h7\"})),confused_emoji_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.5 10v1.5m7-1.5v1.5M9 17c.778-.839 3.267-2.516 7-1.845\"})),correct_save_check_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m8 12.5 2.5 2.5L16 9\"})),correct_save_check_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m4.5 13 5 5 10-12\"})),cross_close_x_minimize_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m8 8 8 8m0-8-8 8\"})),cross_x_close_minimize_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"m6 6 6 6m0 0 6 6m-6-6 6-6m-6 6-6 6\"})),desktop_monitor_computer_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2ZM8 21h8m-4-4v4m0-7.5h.01\"})),dot_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Z\",clipRule:\"evenodd\"})),download_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 15v4c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2v-4m-4-6-5 5-5-5m5 3.8V2.5\"})),download_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 13v8m0 0-2.5-2.5M12 21l2.5-2.5\"})),facebook_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M16.5 8H14a2 2 0 0 0-2 2v11m-2-7h5\"})),google_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m21.882 10.459-.103-.428h-9.485v3.938h5.667c-.588 2.741-3.318 4.184-5.549 4.184-1.623 0-3.333-.67-4.465-1.746a6.25 6.25 0 0 1-1.4-2.021 6.152 6.152 0 0 1-.502-2.393c0-1.66.76-3.318 1.865-4.41 1.106-1.091 2.776-1.702 4.437-1.702 1.902 0 3.264.99 3.774 1.442l2.853-2.784C18.137 3.818 15.838 2 12.254 2 9.49 2 6.84 3.039 4.903 4.933 2.99 6.8 2 9.497 2 12s.937 5.066 2.79 6.946C6.77 20.952 9.574 22 12.46 22c2.627 0 5.117-1.01 6.892-2.842 1.745-1.803 2.647-4.3 2.647-6.915 0-1.101-.113-1.755-.118-1.784Z\"})),growth_increase_up_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m20.2 7.8-7.7 7.7-4-4-5.7 5.7\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15 7h6v6\"})),hamicon_5_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M5 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 20a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"})),hamicon_6_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0-7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"})),happy_emoji_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.5 8v1.5m7-1.5v1.5M12 18a5 5 0 0 0 5-5H7a5 5 0 0 0 5 5Z\"})),heart_love_wishlist_favourite_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m4.098 13.848 7.52 7.519a.542.542 0 0 0 .765 0l7.52-7.52a5.678 5.678 0 0 0 0-8.028 5.047 5.047 0 0 0-7.138 0l-.711.71a.076.076 0 0 1-.107 0l-.711-.71a5.047 5.047 0 0 0-7.138 0 5.678 5.678 0 0 0 0 8.029Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16.334 7.48c.553 0 1.107.21 1.53.633.547.548.78 1.292.695 2.006\"})),hemicon_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M4 5h16M4 12h11.5M4 19h16\"})),hemicon_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M4 5h16M4 12h16M4 19h16\"})),hemicon_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M4 5h16M4 12h11.5M4 19h8\"})),hidden_hide_invisible_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M17.862 5.999c-1.61-1.148-3.576-2-5.86-2-7 0-11 8-11 8s1.764 3.529 5 5.899m3 1.596a9.213 9.213 0 0 0 3 .505c7 0 11-8 11-8s-.867-1.734-2.5-3.587\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M14 9.764A3 3 0 0 0 9.764 14m5.21-1.601a3.002 3.002 0 0 1-2.59 2.577M3.6 20.4 20.4 3.6\"})),home_house_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m3.671 9.403 7-6.222a2 2 0 0 1 2.658 0l7 6.222A2 2 0 0 1 21 10.898V19a2 2 0 0 1-2 2h-3.5a1 1 0 0 1-1-1v-5a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1v5a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2v-8.102a2 2 0 0 1 .671-1.495Z\"})),hourglass_timer_time_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 2v4.93a2 2 0 0 0 .89 1.664l4.555 3.036a1 1 0 0 0 1.11 0l4.554-3.036A2 2 0 0 0 18 6.93V2M6 22v-4.93a2 2 0 0 1 .89-1.664l4.555-3.036a1 1 0 0 1 1.11 0l4.554 3.036A2 2 0 0 1 18 17.07V22\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 2h16M4 22h16M9.5 19.5h5M11 17h2\"})),instagram_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"}),(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"2\",d:\"M17 7h.01\"})),laptop_computer_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3.5 6a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v10h-17V6Zm7 1h3M2 16h20v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-2Z\"})),left_align_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M3 3h18M3 21h8m-8-6h18M3 9h8\"})),left_triangle_angle_arrow_backward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6.067 12.8a1 1 0 0 1 0-1.6l9.333-7A1 1 0 0 1 17 5v14a1 1 0 0 1-1.6.8l-9.333-7Z\"})),linkedin_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M7.75 10.25v6\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"2\",d:\"M7.75 7.75h.01\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M11.25 10.25v6m5 0v-3.5a2.5 2.5 0 0 0-5 0\"})),link_chains_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m14.011 17.028-2.514 2.514a4.977 4.977 0 1 1-7.04-7.04L6.973 9.99M9.99 6.973l2.514-2.514a4.978 4.978 0 1 1 7.04 7.04l-2.515 2.513M9.5 14.5l5-5\"})),location_gps_map_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"10\",r:\"3\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 10.205C20 17.385 12 22 12 22s-8-4.615-8-11.795C4 5.674 7.582 2 12 2s8 3.674 8 8.205Z\"})),long_arrow_up_top_increase_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 21V3m0 0L6 9m6-6 6 6\"})),mail_email_messege_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m6 8 4.8 3.6a2 2 0 0 0 2.4 0L18 8\"})),media_document_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M5 21h14a2 2 0 0 0 2-2V8.828a2 2 0 0 0-.586-1.414l-3.828-3.828A2 2 0 0 0 15.172 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2ZM8 9h4m-4 3h8m-8 3h6\"})),messege_comment_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 7v15l5-4h13a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Zm7 3h4m-4 3h6\"})),messege_comment_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM9 9h4m-4 3h6\"})),messege_comment_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM8 11v-1m4 1v-1m4 1v-1\"})),messege_comment_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z\"})),messege_comment_5_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 12a9 9 0 1 1 9 9H3v-9Zm6-1.5h6m-6 3h6\"})),messege_comment_6_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16 16a4 4 0 0 1-4 4H2v-6a4 4 0 0 1 4-4\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 9a5 5 0 0 1 5-5h6a5 5 0 0 1 5 5v7H11a5 5 0 0 1-5-5V9Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M11 8.5h4m-4 3h6\"})),messege_comment_7_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 20c5.523 0 10-3.806 10-8.5S17.523 3 12 3 2 6.806 2 11.5c0 2.78 1.571 5.25 4 6.8v3.2l3.211-1.835A11.66 11.66 0 0 0 12 20Zm-3-9.5h6m-5 3h4\"})),messege_comment_8_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M14.5 18.703c-4.142 0-7.5-3.292-7.5-7.352C7 7.291 10.358 4 14.5 4c4.142 0 7.5 3.291 7.5 7.351 0 2.405-1.178 4.54-3 5.882V20l-2.408-1.587a7.645 7.645 0 0 1-2.092.29Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M9.352 5.55A7.131 7.131 0 0 0 8.5 5.5C4.91 5.5 2 8.174 2 11.473c0 1.954 1.021 3.69 2.6 4.779V18.5l2.087-1.29a7.04 7.04 0 0 0 2.813.166c.169-.024.336-.054.5-.09\"})),messenger_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12c0 1.834.494 3.553 1.355 5.03L2 22l4.818-1.445A9.954 9.954 0 0 0 12 22Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m7 13.75 3-3 3.5 3 3.5-3.5\"})),microsoft_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm9-2v18m-9-9h18\"})),middle_align_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M3 3h18M8 21h8M3 15h18M8 9h8\"})),mobile_smartphone_phone_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M17 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6.5 3h3\"})),pause_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h2.5a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm11.5 0a2 2 0 0 1 2-2H19a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2.5a2 2 0 0 1-2-2V5Z\"})),pinterest_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 11 8 21m1.818-4.5A5 5 0 1 0 7.416 14\"}),(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"})),play_media_video_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 2c5.522 0 10 4.477 10 10s-4.478 10-10 10C6.477 22 2 17.523 2 12S6.477 2 12 2Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m16 12-6-4v8l6-4Z\"})),price_tag_label_category_sale_discount_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12.328 2.5H20.5a1 1 0 0 1 1 1v8.172a2 2 0 0 1-.586 1.414l-8 8a2 2 0 0 1-2.829 0l-7.171-7.172a2 2 0 0 1 0-2.828l8-8a2 2 0 0 1 1.414-.586Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m8 13 3 3\"})),price_tag_offer_sale_coupon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15.5 5.5h-3.672a2 2 0 0 0-1.414.586l-6.5 6.5a2 2 0 0 0 0 2.828l6.171 6.172a2 2 0 0 0 2.829 0l6.5-6.5A2 2 0 0 0 20 13.672V6.5a1 1 0 0 0-1-1h-.5M8 14.5l3 3m-.5-4.5 2 2\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16 9c4.5-2.5 1.655-7.99-2.766-6.817-2.752.73-5.916 1.27-9.234 0\"})),reddit_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M12 9c-4.97 0-9 2.91-9 6.5S7.03 22 12 22s9-2.91 9-6.5S16.97 9 12 9Zm0 0V6a2 2 0 0 1 2-2h3m3.506 9.37a2.25 2.25 0 1 0-2.856-2.93M17 4a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM3.494 13.37a2.25 2.25 0 1 1 2.856-2.93\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M8.5 16.75c1.5 1.5 5.5 1.5 7 0M15 13h.01M9 13h.01\"})),refresh_reset_cycle_loop_infinity_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M21 12a9 9 0 0 1-17 4.127M3 12a9 9 0 0 1 17-4.127M20 3v5h-5M4 21v-5h5\"})),restriction_no_stop_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M5 19 19 5\"})),right_align_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M3 3h18m-8 18h8M3 15h18m-8-6h8\"})),right_triangle_angle_play_arrow_forward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M17.933 12.8a1 1 0 0 0 0-1.6L8.6 4.2A1 1 0 0 0 7 5v14a1 1 0 0 0 1.6.8l9.333-7Z\"})),search_magnify_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm10 2-4.35-4.35\"})),settings_tool_function_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M9.55 2.778A1 1 0 0 1 10.523 2h2.953a1 1 0 0 1 .975.778l.355 1.562a2 2 0 0 0 2.538 1.468l1.627-.5a1 1 0 0 1 1.155.447l1.456 2.464a1 1 0 0 1-.193 1.253l-1.16 1.04a2 2 0 0 0 0 2.978l1.16 1.038a1 1 0 0 1 .193 1.254l-1.456 2.464a1 1 0 0 1-1.155.447l-1.627-.5a2 2 0 0 0-2.538 1.468l-.355 1.56a1 1 0 0 1-.976.779h-2.952a1 1 0 0 1-.975-.778l-.355-1.562a2 2 0 0 0-2.538-1.468l-1.628.5a1 1 0 0 1-1.154-.446l-1.456-2.464a1 1 0 0 1 .193-1.254l1.16-1.038a2 2 0 0 0 0-2.979L2.61 9.472a1 1 0 0 1-.194-1.253l1.456-2.464a1 1 0 0 1 1.155-.447l1.628.5A2 2 0 0 0 9.194 4.34l.355-1.562Z\"}),(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"3\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"})),share_social_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.968 10.591a3.15 3.15 0 1 0 0 2.818m0-2.818c.212.424.332.902.332 1.409s-.12.985-.332 1.409m0-2.818 7.013-3.507M8.968 13.41l7.013 3.507m0-9.832a2.7 2.7 0 1 0 4.637-2.769 2.7 2.7 0 0 0-4.637 2.77Zm0 9.832a2.7 2.7 0 1 0 4.637 2.769 2.7 2.7 0 0 0-4.637-2.77Z\"})),shopping_cart_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5\"})),skype_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 3c-.415 0-.823.028-1.223.082a5.5 5.5 0 0 0-7.695 7.695 9 9 0 0 0 10.14 10.14 5.5 5.5 0 0 0 7.695-7.695A9 9 0 0 0 12 3Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15 10c0-1-1-2-3-2s-3 1-3 2c0 2.5 6 1.5 6 4 0 1-1 2-3 2s-3-1-3-2\"})),smile_emoji_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.5 8.5V10m7-1.5V10m-8.271 4a5.002 5.002 0 0 0 9.542 0\"})),social_community_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M14.632 5.032a8.446 8.446 0 0 1 5.79 8.024 8.5 8.5 0 0 1-.18 1.74M9.368 5.031a8.446 8.446 0 0 0-5.79 8.024c.001.596.063 1.178.18 1.74m13.915 4.5c.458.387 1.05.62 1.695.62A2.635 2.635 0 0 0 22 17.279a2.635 2.635 0 0 0-2.632-2.64 2.635 2.635 0 0 0-2.631 2.64c0 .81.364 1.534.936 2.018Zm0 0A8.378 8.378 0 0 1 12 21.5a8.378 8.378 0 0 1-5.673-2.204m0 0a2.636 2.636 0 0 0 .936-2.018 2.635 2.635 0 0 0-2.631-2.64A2.635 2.635 0 0 0 2 17.279a2.635 2.635 0 0 0 2.632 2.639c.645 0 1.237-.234 1.695-.62ZM14.632 5.14A2.635 2.635 0 0 1 12 7.778a2.635 2.635 0 0 1-2.632-2.64A2.635 2.635 0 0 1 12 2.5a2.635 2.635 0 0 1 2.632 2.639Z\"})),square_rounded_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"})),star_rating_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.579\",d:\"M11.016 3.125c.387-.833 1.58-.833 1.968 0l2.136 4.602c.158.34.482.573.856.617l5.067.597c.918.108 1.286 1.233.608 1.856l-3.748 3.444a1.07 1.07 0 0 0-.326.998l.994 4.974c.18.9-.785 1.595-1.592 1.147l-4.45-2.475a1.09 1.09 0 0 0-1.059 0L7.02 21.36c-.806.448-1.771-.247-1.591-1.147l.994-4.974a1.07 1.07 0 0 0-.326-.998l-3.749-3.444c-.677-.623-.309-1.748.609-1.856l5.067-.597c.374-.044.698-.278.856-.617l2.136-4.602Z\"})),stopwatch_reading_time_timer_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M21 13a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 7.5V13l3.5 2.5M12 4V1.5m-2 0h4M21 6l-2-2\"})),tablet_ipad_pad_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6 3h.01\"})),tag_bookmark_save_favourite_mark_discount_sale_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 4v18l6.8-5.1a2 2 0 0 1 2.4 0L20 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2Z\"})),tiktok_logo_icon_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208\"})),tiktok_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208\"})),triangle_rounded_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997Z\"})),triangle_shape_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 20 12 3l10 17H2Z\"})),twitter_x_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548\"})),upload_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 21v-8m0 0-2.5 2.5M12 13l2.5 2.5\"})),view_count_show_visible_eye_open_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 15a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z\"})),view_count_show_visible_eye_open_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z\"})),view_count_show_visible_eye_open_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M1 12c6-8.667 16-8.667 22 0-6 8.667-16 8.667-22 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M18 12a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15 12a3 3 0 0 0-3-3\"})),view_count_show_visible_eye_open_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 9c-1.996-3.913-6-6-10-6S3.996 5.087 2 9\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 21a7 7 0 0 0 6.308-10.038 2.5 2.5 0 1 1-3.27-3.27A7 7 0 1 0 12 21Z\"})),view_count_show_visible_eye_open_5_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 17a5 5 0 0 0 5-5h-5V7a5 5 0 0 0 0 10Z\"})),warning_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm0-14v4.5m0 3v.5\"})),warning_triangle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997ZM12 9v4.5m0 3v.5\"})),whatsapp_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12.806 14.02c-.849-.282-1.532-.824-1.768-1.06-.236-.235-.778-.919-1.06-1.767l1.202-1.91L9.553 5.96c-.943 0-3.04.778-3.323 3.323-.283 2.546 1.532 5.068 2.475 6.01.942.944 3.464 2.759 6.01 2.476 2.546-.283 3.323-2.381 3.323-3.324l-3.323-1.626-1.91 1.202Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10a9.953 9.953 0 0 1-5.183-1.446L2 22l1.445-4.818A9.953 9.953 0 0 1 2 12C2 6.477 6.477 2 12 2Z\"})),wordpress_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7 7.454H3.818\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-6.137 9.318 5.228-13.636m-3.864 9.772-4.09-10m-3.41 0 5.455 13.864\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.117 17.322 6.09 7.454H3.223m-.303.605 5.217 13.26\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M9.045 7.454h5M8.59 21.318l3.183-8.409M19.5 5.41h-.334a2.273 2.273 0 0 0-2.123 3.083l1.775 4.643\"})),youtube_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10 15V9l5 3-5 3Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M19.193 4.352c-3.627-.47-10.402-.47-14.213.004-1.456.18-2.57 1.446-2.757 3.168-.297 2.719-.297 6.233 0 8.952.188 1.722 1.301 2.988 2.757 3.168 3.811.473 10.586.475 14.213.004 1.36-.177 2.375-1.365 2.562-2.972.327-2.811.327-6.541 0-9.352-.187-1.607-1.202-2.795-2.562-2.972Z\"})),full_screen_corners_out_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3 8.5V5C3 3.89543 3.89543 3 5 3H8.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M3 15.5V19C3 20.1046 3.89543 21 5 21H8.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M21 8V5C21 3.89543 20.1046 3 19 3H15.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M21 15.5V19C21 20.1046 20.1046 21 19 21H15.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"})),zoom_in_magnifying_glass_plus_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M21.0004 21L16.6504 16.65\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M10.995 8V14M8 11.005L14 11.005\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"})),zoom_out_magnifying_glass_minus_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M21.0004 21L16.6504 16.65\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8 11.005L14 11.005\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"})),plugin_connect_socket_integration_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M21.5 2.5L18.5 5.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M18 12.9999L20.5858 10.4142C21.3668 9.63311 21.3668 8.36678 20.5858 7.58573L16.4142 3.41416C15.6332 2.63311 14.3668 2.63311 13.5858 3.41416L11 5.99994\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M5.9997 11L3.41391 13.5858C2.63286 14.3668 2.63286 15.6332 3.41391 16.4142L7.58549 20.5858C8.36653 21.3668 9.63286 21.3668 10.4139 20.5858L12.9997 18\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M2.5 21.5L5.5 18.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4.5 9.5L14.5 19.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M9.5 4.5L19.5 14.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M7 12L9.5 9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12 17L14.5 14.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),rocket_fly_boost_launch_pro_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M20.8991 2.5H21.5V3.10086C21.5 6.28346 19.7357 9.83572 17.4853 12.0862L13.5714 16L8 10.4286L11.9139 6.51473C14.1643 4.26429 17.7165 2.5 20.8991 2.5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M18.5 11L19 17L15 21L13.5 16\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8 10.5L3 9L7 5L13 5.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M9 15L3.5 20.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M11.5 17.5L9 20\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.5 12.5L4 15\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.4902 6.5H17.5002\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),gallery_indicator_image_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3 5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V13C21 14.1046 20.1046 15 19 15H5C3.89543 15 3 14.1046 3 13V5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M21.0002 12.6716L19.4144 11.0858C18.6333 10.3047 17.367 10.3047 16.5859 11.0858L15.9144 11.7574C15.1333 12.5384 13.867 12.5384 13.0859 11.7574L10.4144 9.08579C9.63332 8.30474 8.36699 8.30474 7.58594 9.08579L3.33594 13.3358\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M16.25 7C16.25 7.82843 15.5784 8.5 14.75 8.5C13.9216 8.5 13.25 7.82843 13.25 7C13.25 6.17157 13.9216 5.5 14.75 5.5C15.5784 5.5 16.25 6.17157 16.25 7Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M3 18.5C3 17.9477 3.44772 17.5 4 17.5H6.25C6.80228 17.5 7.25 17.9477 7.25 18.5V20C7.25 20.5523 6.80228 21 6.25 21H4C3.44772 21 3 20.5523 3 20V18.5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M10 18.5C10 17.9477 10.4477 17.5 11 17.5H13.25C13.8023 17.5 14.25 17.9477 14.25 18.5V20C14.25 20.5523 13.8023 21 13.25 21H11C10.4477 21 10 20.5523 10 20V18.5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M17 18.5C17 17.9477 17.4477 17.5 18 17.5H20C20.5523 17.5 21 17.9477 21 18.5V20C21 20.5523 20.5523 21 20 21H18C17.4477 21 17 20.5523 17 20V18.5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"})),unlocked_open_security_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4 12C4 10.8954 4.89543 10 6 10H18C19.1046 10 20 10.8954 20 12V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V12Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17 10V7C17 4.23858 14.7615 2 12 2C10.1493 2 8.53347 3.0055 7.66895 4.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12 15.5L12 16.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),unlink_link_break_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M14.0113 17.0281L11.4972 19.5421C9.55336 21.486 6.40175 21.486 4.45789 19.5421C2.51404 17.5983 2.51404 14.4467 4.45789 12.5028L6.97193 9.98877M9.98875 6.97192L12.5028 4.45789C14.4466 2.51404 17.5983 2.51404 19.5421 4.45789C21.486 6.40174 21.486 9.55334 19.5421 11.4972L17.0281 14.0112\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M9.5 14.5L14.5 9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M3 5L19 21\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"})),plus_circle_zoom_in_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12 7V12.0001M12 12.0001V17M12 12.0001H17M12 12.0001H7\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),sort_descending_order_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4 18.5H17\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4 6.5H9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4 12.5H11.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17 14.5V5.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M13 9.5L17 5.5L21 9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),sort_ascending_order_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4 5.5H17\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4 17.5H9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4 11.5H11.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17 9.5V18.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M13 14.5L17 18.5L21 14.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),right_circle_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8 12.5L10.5 15L16 9\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),plus:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z\"})),subtract:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}))}},5404:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294);const r={};r.moon=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M22 14.27A10.14 10.14 0 1 1 9.73 2 8.84 8.84 0 0 0 22 14.27Z\"})),r.moon_line=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M8.17 4.53A9.54 9.54 0 0 0 19.5 15.69a8.26 8.26 0 0 1-7.76 4.29 8.36 8.36 0 0 1-7.71-7.7 8.23 8.23 0 0 1 4.15-7.76m1-2.52c-.16 0-.32.03-.48.09a10.28 10.28 0 0 0 3.56 19.9c4.47 0 8.27-2.85 9.67-6.84a1.36 1.36 0 0 0-1.27-1.82c-.15 0-.31.03-.47.1a7.48 7.48 0 0 1-3.41.43 7.59 7.59 0 0 1-6.33-10.04A1.36 1.36 0 0 0 9.17 2Z\"})),r.sun=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\"},(0,a.createElement)(\"g\",null,(0,a.createElement)(\"path\",{d:\"M12 18.36a6.36 6.36 0 1 0 0-12.72 6.36 6.36 0 0 0 0 12.72ZM12.98.96V2.8c0 .53-.43.95-.97.95h-.02a.96.96 0 0 1-.97-.95V.96c0-.53.43-.96.96-.96h.05c.53 0 .96.43.96.96ZM4.89 3.5l1.3 1.3c.38.38.37.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.37 0l-1.3-1.3a.96.96 0 0 1 0-1.35l.04-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .95.43.95.97v.02c0 .53-.42.97-.95.97H.96a.95.95 0 0 1-.96-.96v-.05c0-.53.43-.96.96-.96ZM3.5 19.11l1.3-1.3a.96.96 0 0 1 1.36 0v.01l.02.01c.38.38.39.99 0 1.37l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.04a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.95.97-.95h.02c.53 0 .97.42.97.95v1.84c0 .53-.43.96-.96.96h-.05a.95.95 0 0 1-.96-.96ZM19.11 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.37 0l1.3 1.3c.38.37.38.98 0 1.35l-.04.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.95-.97v-.02c0-.53.42-.97.95-.97h1.84c.53 0 .96.43.96.96v.05c0 .53-.43.96-.96.96ZM20.5 4.89l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1 0-1.37l1.3-1.3a.96.96 0 0 1 1.35 0l.04.04c.37.37.37.98 0 1.35Z\"})),(0,a.createElement)(\"defs\",null)),r.sun_line=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 7.64a4.36 4.36 0 1 1-.01 8.73A4.36 4.36 0 0 1 12 7.64Zm0-2a6.35 6.35 0 1 0 0 12.71 6.35 6.35 0 0 0 0-12.7ZM12.98.96V2.8c0 .53-.43.96-.96.96h-.03a.96.96 0 0 1-.97-.96V.96c0-.53.43-.96.96-.96h.06c.52 0 .95.43.95.96ZM4.88 3.5l1.3 1.3c.38.38.38.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.36.01L3.5 4.9a.96.96 0 0 1 0-1.35l.03-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .96.43.96.96v.03c0 .53-.42.97-.96.97H.96a.96.96 0 0 1-.96-.96v-.06c0-.52.43-.95.96-.95ZM3.5 19.12l1.3-1.3a.96.96 0 0 1 1.38.02c.38.38.39.99.01 1.36l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.03a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.96.96-.96h.03c.53 0 .97.42.97.96v1.84c0 .53-.43.96-.96.96h-.06a.96.96 0 0 1-.95-.96ZM19.12 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.36-.01l1.3 1.3c.38.37.38.98 0 1.35l-.03.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.96-.96v-.03c0-.53.42-.97.96-.97h1.84c.53 0 .96.43.96.96v.06c0 .52-.43.95-.96.95ZM20.5 4.88l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1-.01-1.36l1.3-1.3a.96.96 0 0 1 1.35 0l.04.03c.38.37.38.98 0 1.35Z\"}));const o=r},3644:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>d});var a=n(7294),r=n(2304),o=n(1383),i=n(3100),l=n(4766),s=n(8949),p=n(356);const c=()=>{const[e,t]=(0,a.useState)({}),[n,i]=(0,a.useState)(!0),[l,c]=(0,a.useState)({status:\"\",messages:[],state:!1}),d={post_list_1:{label:(0,r.__)(\"Post List #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6836\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-1\u002F\",icon:\"post-list-1.svg\"},post_slider_2:{label:(0,r.__)(\"Post Slider #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7487\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-slider-2\u002F\",icon:\"post-slider-2.svg\"},post_list_4:{label:(0,r.__)(\"Post List #4\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6839\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-4\u002F\",icon:\"post-list-4.svg\"},post_slider_1:{label:(0,r.__)(\"Post Slider #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6840\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-slider-1\u002F\",icon:\"post-slider-1.svg\"},post_grid_4:{label:(0,r.__)(\"Post Grid #4\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6832\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-4\u002F\",icon:\"post-grid-4.svg\"},post_module_1:{label:(0,r.__)(\"Post Module #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6825\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-module-1\u002F\",icon:\"post-module-1.svg\"},post_grid_2:{label:(0,r.__)(\"Post Grid #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6830\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-2\u002F\",icon:\"post-grid-2.svg\"},advanced_search:{label:(0,r.__)(\"Search - PostX\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8233\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fsearch-block\",icon:\"advanced-search.svg\"},button_group:{label:(0,r.__)(\"Button Group\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7952\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fbutton-block\u002F\",icon:\"button-group.svg\"}},u=(0,o.t)();(0,a.useEffect)((()=>{m()}),[]);const m=()=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_all_settings\",method:\"POST\",data:{key:\"key\",value:\"value\"}}).then((e=>{e.success&&u.current&&(t(e.settings),i(!1))}))};return(0,a.createElement)(a.Fragment,null,l.state&&(0,a.createElement)(p.Z,{delay:2e3,toastMessages:l,setToastMessages:c}),Object.keys(d).map(((o,i)=>{const l=d[o];let p=!!l.default;return\"\"==e[o]&&(p=\"yes\"==e[o]),(0,a.createElement)(\"div\",{key:o},n?(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-item ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-meta\"},(0,a.createElement)(s.Z,{type:\"custom_size\",c_s:{size1:24,unit1:\"px\",size2:24,unit2:\"px\",br:4}}),(0,a.createElement)(s.Z,{type:\"custom_size\",c_s:{size1:70,unit1:\"px\",size2:24,unit2:\"px\",br:4}})),(0,a.createElement)(\"div\",{className:\"ultp-blocks-control-option ultp-dash-control-options\"},(0,a.createElement)(s.Z,{type:\"custom_size\",c_s:{size1:30,unit1:\"px\",size2:20,unit2:\"px\",br:4}}),(0,a.createElement)(s.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"px\",size2:20,unit2:\"px\",br:20}}))):(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-item ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-meta\"},(0,a.createElement)(\"img\",{className:\"ultp-blocks-item-icon\",src:`${ultp_dashboard_pannel.url}assets\u002Fimg\u002Fblocks\u002F${l.icon}`,alt:l.label}),(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-title\"},l.label)),(0,a.createElement)(\"div\",{className:\"ultp-blocks-control-option ultp-dash-control-options\"},l.live&&(0,a.createElement)(\"a\",{href:l.live,className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},(0,r.__)(\"Demo\",\"ultimate-post\")),(0,a.createElement)(\"input\",{type:\"checkbox\",className:\"ultp-blocks-enable\",id:o,checked:p,onChange:()=>{(n=>{const a=e?.hasOwnProperty(n)&&\"yes\"!=e[n]?\"yes\":\"\";t({...e,[n]:a}),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Faddon_block_action\",method:\"POST\",data:{key:n,value:a}}).then((e=>{e.success&&c({status:\"success\",messages:[e.message],state:!0})}))})(o)}}),(0,a.createElement)(\"label\",{className:\"ultp-control__label\",htmlFor:o}))))})))},d=()=>{const e=[{label:(0,r.__)(\"50+ Custom Layouts\",\"ultimate-post\")},{label:(0,r.__)(\"250+ Pattern\",\"ultimate-post\")},{label:(0,r.__)(\"45+ Custom Post Blocks\",\"ultimate-post\")},{label:(0,r.__)(\"Pin-point Customization\",\"ultimate-post\")},{label:(0,r.__)(\"Dynamic Site Building\",\"ultimate-post\")},{label:(0,r.__)(\"Limitless Flexibility\",\"ultimate-post\")}],[t,n]=(0,a.useState)(!1);return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-container-grid\"},(0,a.createElement)(\"div\",{className:\"ultp-dashboard-content\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-banner ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-left\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-title\"},\"Create Engaging Sites in Minutes…\"),(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-description\"},\"Thrilled to improve your WordPress blog? PostX supports you in creating and customizing stunning blogs! Design smooth, powerful websites - no compromises, unlimited options.\"),(0,a.createElement)(\"a\",{className:\"ultp-primary-alter-button\",onClick:e=>{e.preventDefault(),window.location.replace(\"#startersites\")}},(0,r.__)(\"Build with Starter Sites\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-right\"},t?(0,a.createElement)(\"iframe\",{className:\"ultp-dash-banner-right-video\",src:\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FFYgSe7kgb6M?autoplay=1\",allow:\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; fullscreen\",title:\"Ultimate Post\"}):(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-right-img\"},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdashboard_banner_right.png\",alt:(0,r.__)(\"Ultimate Post\",\"ultimate-post\")}),(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-right-play-button\",onClick:()=>{n(!0)}},l.ZP.rightFillAngle)))),(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-heading\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-heading-title\"},(0,r.__)(\"Blocks\",\"ultimate-post\")),(0,a.createElement)(\"a\",{onClick:e=>{e.preventDefault(),window.location.replace(\"#blocks\")},className:\"ultp-transparent-button\"},(0,r.__)(\"View All\",\"ultimate-post\"),l.ZP.angle_top_right_line)),(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-items\"},(0,a.createElement)(c,null))),!ultp_dashboard_pannel?.active&&(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left-title\"},(0,r.__)(\"Go Pro & Unlock More! 🚀\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left-description\"},(0,r.__)(\"Harness the true power of PostX: build, customize, and launch dynamic WordPress sites with unrestricted creative control - no code, no hassle.\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left-keyfeature\"},e.map(((e,t)=>(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left-keyfeature-item\",key:e.label},l.ZP.right_circle_solid,e.label)))),(0,a.createElement)(\"a\",{href:(0,i.Z)(\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-topbar&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing\"),target:\"_blank\",rel:\"noreferrer\",className:\"ultp-primary-alter-button\"},l.ZP.rocket,\"Upgrade to Pro\")),(0,a.createElement)(\"img\",{className:\"ultp-dash-pro-promo-right-img\",src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdashboard_pro_promo.png\",alt:\"Ultimate Post\"}))),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-features\"},(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-item ultp-sidebar-starter-sites\"},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fsidebar-starter-sites.png\",alt:\"Starter Sites Make it Easy\"}),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-title\"},\"Starter Sites Make it Easy\"),(0,a.createElement)(\"span\",{className:\"ultp-sidebar-card-description\"},\"Create awesome-looking webpages without any code with PostX starter sites - simply import the starter template of your choice. Drag, drop, and deploy your site in minutes.\"),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-buttons\"},(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fstarter-sites\u002F?utm_source=db-postx-started&utm_medium=starter-sites&utm_campaign=postx-dashboard&pux_link=dbstartersite\",className:\"ultp-primary-button\",target:\"_blank\",rel:\"noreferrer\"},l.ZP.angle_top_right_line,\"Explore Starter Templates\"))),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-item ultp-sidebar-community\"},(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-title\"},\"PostX Community\"),(0,a.createElement)(\"span\",{className:\"ultp-sidebar-card-description\"},\"Join the Facebook community of PostX to stay up-to-date and share your thoughts and feedback.\"),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-buttons\"},(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fgutenbergpostx\",className:\"ultp-primary-button\",target:\"_blank\",rel:\"noreferrer\"},l.ZP.facebook,\"Join PostX Community\")))))}},4482:(e,t,n)=>{\"use strict\";n.d(t,{DC:()=>p,WO:()=>m,ac:()=>u,cs:()=>d,gR:()=>f,hx:()=>c,u4:()=>l});var a=n(7294),r=n(4766),o=n(3100),i=n(4190);n(3479);const{__}=wp.i18n,l={preloader_style:{type:\"select\",label:__(\"Preloader Style\",\"ultimate-post\"),options:{style1:__(\"Preloader Style 1\",\"ultimate-post\"),style2:__(\"Preloader Style 2\",\"ultimate-post\")},default:\"style1\",desc:__(\"Select Preloader Style.\",\"ultimate-post\"),tooltip:__(\"PostX has two preloader variations that display while loading PostX's blocks if you enable the preloader for that blocks.\",\"ultimate-post\")},container_width:{type:\"number\",label:__(\"Container Width\",\"ultimate-post\"),default:\"1140\",desc:__(\"Change Container Width of the Page Template(PostX Template).\",\"ultimate-post\"),tooltip:__(\"Here you can increase or decrease the container width. It will be applicable when you create any dynamic template with the PostX Builder or select PostX's Template while creating a page.\",\"ultimate-post\")},hide_import_btn:{type:\"switch\",label:__(\"Hide Template Kits Button\",\"ultimate-post\"),default:\"\",desc:__(\"Hide Template Kits Button from toolbar of the Gutenberg Editor.\",\"ultimate-post\"),tooltip:__(\"Click on the check box to hide the Template Kits button from posts, pages, and the Builder of PostX.\",\"ultimate-post\")},disable_image_size:{type:\"switch\",label:__(\"Disable Image Size\",\"ultimate-post\"),default:\"\",desc:__(\"Disable Image Size of the Plugins.\",\"ultimate-post\"),tooltip:__(\"Click on the check box to turn off the PostX's size of the post images.\",\"ultimate-post\")},disable_view_cookies:{type:\"switch\",label:__(\"Disable All Cookies\",\"ultimate-post\"),default:\"\",desc:__(\"Disable All Frontend Cookies (Cookies Used for Post View Count).\",\"ultimate-post\"),tooltip:__(\"Click on the check box to restrict PostX from collecting cookies. PostX contains cookies to display the post view count.\",\"ultimate-post\")},disable_google_font:{type:\"switchButton\",label:__(\"Disable All Google Fonts\",\"ultimate-post\"),default:\"\",desc:__(\"Disable All Google Fonts From Frontend and Backend PostX Blocks.\",\"ultimate-post\"),tooltip:__(\"Click the check box to disable all Google Fonts from PostX's typography options.\",\"ultimate-post\")}},s=({multikey:e,value:t,multiValue:n})=>{var o;const[i,l]=(0,a.useState)([...n]),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(null!==(o=t.options)&&void 0!==o?o:{}),[u,m]=(0,a.useState)(\"\"),f=e=>{e.target.closest(\".ultp-ms-container\")||p(!1)};return(0,a.useEffect)((()=>(document.addEventListener(\"mousedown\",f),()=>document.removeEventListener(\"mousedown\",f))),[]),(0,a.useEffect)((()=>{setTimeout((()=>{const e=Object.fromEntries(Object.entries(t.options).filter((([e,t])=>t.toLowerCase().includes(u.toLowerCase())||e.toLowerCase().includes(u.toLowerCase()))));d(e)}),500)}),[u]),(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"input\",{type:\"hidden\",name:e,value:i,\"data-customprop\":\"custom_multiselect\"}),(0,a.createElement)(\"div\",{className:\"ultp-ms-container\"},(0,a.createElement)(\"div\",{onClick:()=>p(!s),className:\"ultp-ms-results-con cursor\"},(0,a.createElement)(\"div\",{className:\"ultp-ms-results\"},i.length>0?i?.map(((e,n)=>(0,a.createElement)(\"span\",{key:n,className:\"ultp-ms-selected\"},t.options[e],(0,a.createElement)(\"span\",{className:\"ultp-ms-remove cursor\",onClick:t=>{var n;t.stopPropagation(),n=e,l(i.filter((e=>e!=n)))}},r.ZP.close_circle_line)))):(0,a.createElement)(\"span\",null,__(\"Select options\"))),(0,a.createElement)(\"span\",{onClick:()=>p(!s),className:\"ultp-ms-results-collapse cursor\"},r.ZP.collapse_bottom_line)),s&&c&&(0,a.createElement)(\"div\",{className:\"ultp-ms-options\"},(0,a.createElement)(\"input\",{type:\"text\",className:\"ultp-multiselect-search\",value:u,onChange:e=>m(e.target.value)}),Object.keys(c)?.map(((e,n)=>(0,a.createElement)(\"span\",{className:\"ultp-ms-option cursor\",onClick:()=>(e=>{if(-1==i.indexOf(e)&&\"all\"!=e&&l([...i,e]),\"all\"===e){const e=Object.fromEntries(Object.entries(t.options).filter((([e,t])=>!t.toLowerCase().includes(\"all\"))));l(Object.keys(e))}})(e),key:n,value:e},c[e]))))))},p=(e,t)=>(0,a.createElement)(a.Fragment,null,Object.keys(e).map(((n,r)=>{const o=e[n];return(0,a.createElement)(\"span\",{key:r},\"hidden\"==o.type&&(0,a.createElement)(\"input\",{key:n,type:\"hidden\",name:n,defaultValue:o.value}),\"hidden\"!=o.type&&(0,a.createElement)(a.Fragment,null,\"heading\"==o.type&&(0,a.createElement)(\"div\",{className:\"ultp_h2 ultp-settings-heading\"},o.label)&&(0,a.createElement)(a.Fragment,null,o.desc&&(0,a.createElement)(\"div\",{className:\"ultp-settings-subheading\"},o.desc)),\"heading\"!=o.type&&(0,a.createElement)(\"div\",{className:\"ultp-settings-wrap\"},o.label&&(0,a.createElement)(\"strong\",null,o.label,o.tooltip&&(0,a.createElement)(i.Z,{content:o.tooltip},(0,a.createElement)(\"span\",{className:\" cursor dashicons dashicons-editor-help\"}))),(0,a.createElement)(\"div\",{className:\"ultp-settings-field-wrap\"},((e,t,n)=>{const r=n.hasOwnProperty(e)?n[e]:t.default?t.default:\"multiselect\"==t.type?[]:\"\";switch(t.type){case\"select\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"select\",{defaultValue:r,name:e,id:e},Object.keys(t.options).map(((e,n)=>(0,a.createElement)(\"option\",{key:n,value:e},t.options[e])))),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"radio\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"div\",{className:\"ultp-field-radio\"},(0,a.createElement)(\"div\",{className:\"ultp-field-radio-items\"},Object.keys(t.options).map(((n,o)=>(0,a.createElement)(\"div\",{key:o,className:\"ultp-field-radio-item\"},(0,a.createElement)(\"input\",{type:\"radio\",id:n,name:e,value:n,defaultChecked:n===r}),(0,a.createElement)(\"label\",{htmlFor:n},t.options[n])))))),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"color\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"input\",{type:\"text\",defaultValue:r,className:\"ultp-color-picker\"}),(0,a.createElement)(\"span\",{className:\"ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"text\",name:e,className:\"ultp-color-code\",defaultValue:r})),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"number\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"number\",name:e,defaultValue:r}),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"switch\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-field-inline\"},(0,a.createElement)(\"input\",{value:\"yes\",type:\"checkbox\",name:e,defaultChecked:\"yes\"==r||\"on\"==r}),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"switchButton\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-field-inline\"},(0,a.createElement)(\"input\",{type:\"checkbox\",value:\"yes\",name:e,defaultChecked:\"yes\"==r||\"on\"==r}),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"span\",{id:\"postx-regenerate-css\",className:`ultp-upgrade-pro-btn cursor ${\"yes\"==r?\"active\":\"\"} `},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-admin-generic\"}),(0,a.createElement)(\"span\",{className:\"ultp-text\"},__(\"Re-Generate Font Files\",\"ultimate-post\")))));case\"multiselect\":const n=Array.isArray(r)?r:[r];return(0,a.createElement)(s,{multikey:e,value:t,multiValue:n});case\"text\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"text\",name:e,defaultValue:r}),(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc,t.link&&(0,a.createElement)(\"a\",{className:\"settingsLink\",target:\"_blank\",href:t.link,rel:\"noreferrer\"},t.linkText)));case\"textarea\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"textarea\",{name:e,defaultValue:r}),(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc,t.link&&(0,a.createElement)(\"a\",{className:\"settingsLink\",target:\"_blank\",href:t.link,rel:\"noreferrer\"},t.linkText)));case\"shortcode\":return(0,a.createElement)(\"code\",{className:\"ultp-shortcode-copy\"},\"[\",t.value,\"]\")}})(n,o,t)))))}))),c=(e,t,n=\"\")=>{const r=n||__(\"Upgrade to Pro\",\"ultimate-post\");return(0,a.createElement)(\"a\",{href:(0,o.Z)(e,t,\"\"),className:\"ultp-upgrade-pro-btn\",target:\"_blank\",rel:\"noreferrer\"},r,\"  ➤\")},d=({tags:e,func:t,data:n})=>(0,a.createElement)(\"div\",{className:\"ultp-addon-lock-container-overlay\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-lock-container\"},(0,a.createElement)(\"div\",{className:\"ultp-popup-unlock\"},(0,a.createElement)(\"img\",{src:`${ultp_option_panel.url}\u002Fassets\u002Fimg\u002Fdashboard\u002F${n.icon}`,alt:\"lock icon\"}),(0,a.createElement)(\"div\",{className:\"title ultp_h5\"},n?.title),(0,a.createElement)(\"div\",{className:\"ultp-description\"},n?.description),c(\"\",e),(0,a.createElement)(\"button\",{onClick:()=>{t(!1)},className:\"ultp-popup-close\"},r.ZP.close_line)))),u=(e,t,n,r=\"\")=>(0,a.createElement)(\"a\",{href:(0,o.Z)(e,t,\"\"),className:\"ultp-primary-button \"+r,target:\"_blank\",rel:\"noreferrer\"},n),m=(e,t,n,r=\"\")=>(0,a.createElement)(\"a\",{href:(0,o.Z)(e,t,\"\"),className:\"ultp-secondary-button \"+r,target:\"_blank\",rel:\"noreferrer\"},n),f=({proBtnTags:e,FRBtnTag:t})=>{const[n,i]=(0,a.useState)([{id:\"go-pro-unlock-more\",title:\"Go Pro & Unlock More! 🚀\",description:\"Unlock the full potential of PostX to create and manage professional News Magazines and Blogging sites with complete creative freedom.\",features:[__(\"Access to 40+ Blocks\",\"ultimate-post\"),__(\"Access to 250+ Patterns\",\"ultimate-post\"),__(\"All Starter Packs Access\",\"ultimate-post\"),__(\"Advanced Query Builder\",\"ultimate-post\"),__(\"Ajax Filter and Pagination\",\"ultimate-post\"),__(\"Custom Fonts with Typography\",\"ultimate-post\")],visible:!ultp_option_panel.active,buttons:[{type:\"primary-alter\",icon:r.ZP.rocket,url:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-setting&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing\",label:\"Upgrade Pro\"},{type:\"transparent-alter\",label:\"Free VS Pro\"}]},{id:\"feature-request\",title:\"Feature Request\",description:\"Can't find your desired feature? Let us know your requirements. We will definitely take them into our consideration.\",buttons:[{type:\"primary\",url:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Froadmap\u002F?utm_source=postx-menu&utm_medium=DB-roadmap&utm_campaign=postx-dashboard\",label:\"Request a Feature\"}],visible:!0},{id:\"web-community\",title:\"PostX Community\",description:\"Join the Facebook community of PostX to stay up-to-date and share your thoughts and feedback.\",buttons:[{type:\"primary\",icon:r.ZP.facebook,url:\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fgutenbergpostx\",label:\"Join PostX Community\"}],visible:!0},{id:\"news-tips\",title:\"News, Tips & Update\",linkIcon:r.ZP.rightArrowLg,links:[{text:\"Getting Started with PostX\",url:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fgetting-started\u002F?utm_source=postx-menu&utm_medium=DB-news-postx_GT&utm_campaign=postx-dashboard\"},{text:\"How to use the Dynamic Site Builder\",url:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F?utm_source=postx-menu&utm_medium=DB-news-DSB_guide&utm_campaign=postx-dashboard\"},{text:\"How to use the PostX Features\",url:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fpostx-features\u002F?utm_source=postx-menu&utm_medium=DB-news-feature_guide&utm_campaign=postx-dashboard\"},{text:\"PostX Blog\",url:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcategory\u002Fpostx\u002F?utm_source=postx-menu&utm_medium=DB-news-blog&utm_campaign=postx-dashboard\"}],visible:!0},{id:\"rating\",title:\"Show your love\",description:\"Enjoying PostX? Give us a 5 Star review to support our ongoing work.\",buttons:[{type:\"primary\",url:\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Fultimate-post\u002Freviews\u002F\",label:\"Rate it Now\"}],visible:!0}]);return(0,a.createElement)(\"div\",{className:\"ultp-sidebar-features\"},!ultp_option_panel.active&&new Date>=new Date(\"2024-03-07\")&&new Date\u003C=new Date(\"2024-03-13\")&&(0,a.createElement)(\"div\",{className:\"ultp-dashboard-pro-features ultp-dash-item-con\"},(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=postx-ad&utm_medium=sidebar-banner&utm_campaign=postx-dashboard#pricing\",target:\"_blank\",style:{textDecoration:\"none !important\",display:\"block\"},rel:\"noreferrer\"},(0,a.createElement)(\"img\",{src:ultp_option_panel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdb_sidebar.jpg\",style:{width:\"100%\",height:\"100%\",borderRadius:\"8px\"},alt:\"40k+ Banner\"}))),n.map(((e,t)=>!1!==e.visible&&(0,a.createElement)(\"div\",{key:t,className:`ultp-sidebar-card-item ultp-sidebar-${e.id}`},\"banner\"===e.type?(0,a.createElement)(\"a\",{href:e.bannerUrl,target:\"_blank\",rel:\"noreferrer\",style:{textDecoration:\"none !important\",display:\"block\"}},(0,a.createElement)(\"img\",{src:e.imageUrl,style:{width:\"100%\",height:\"100%\",borderRadius:\"8px\"},alt:e.alt})):(0,a.createElement)(a.Fragment,null,e.title&&(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-title\"},__(e.title,\"ultimate-post\")),e.description&&(0,a.createElement)(\"span\",{className:\"ultp-sidebar-card-description\"},__(e.description,\"ultimate-post\")),e.features?(0,a.createElement)(\"div\",{className:\"ultp-pro-feature-lists\"},e.features.map(((e,t)=>(0,a.createElement)(\"span\",{key:t},r.ZP.right_circle_line,\" \",__(e,\"ultimate-post\"))))):e.links?(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-links\"},e.links.map(((t,n)=>(0,a.createElement)(\"a\",{className:\"ultp-sidebar-card-link\",key:n,target:\"_blank\",href:t.url,rel:\"noreferrer\"},e.linkIcon&&(0,a.createElement)(\"span\",null,e.linkIcon),__(t.text,\"ultimate-post\"))))):null,e.buttons&&e.buttons.length>0&&(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-buttons\"},e.buttons.map((e=>(({type:e=\"primary\",icon:t,url:n,tags:r,label:i,classname:l=\"\"})=>(0,a.createElement)(\"a\",{href:(0,o.Z)(n,r,\"\"),className:\"ultp-\"+e+\"-button \"+l,target:\"_blank\",rel:\"noreferrer\",key:i+Math.random()},t&&t,i))({type:e.type,icon:e.icon,url:e.url,tags:e.tags||\"\",label:e.label,classname:e.classname||\"\"})))))))))}},860:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>m});var a=n(7294),r=n(1383),o=n(7763),i=n(4766),l=n(4482),s=n(1389),p=n(8949),c=n(356),d=(n(6129),n(1370)),u=n(6731);const{__}=wp.i18n,m=({integrations:e,generalDiscount:t={}})=>{const[n,m]=(0,a.useState)(\"\"),[f,h]=(0,a.useState)(!1),[g,v]=(0,a.useState)({}),[_,w]=(0,a.useState)(\"\"),[b,x]=(0,a.useState)({state:!1,status:\"\"}),[y,k]=(0,a.useState)(\"\"),[E,C]=(0,a.useState)(!1);let S=d.q;const M=ultp_dashboard_pannel.addons_settings,L=Object.entries(S);L.sort(((e,t)=>e[1].position-t[1].position)),S=Object.fromEntries(L),(0,a.useEffect)((()=>(P(),document.addEventListener(\"mousedown\",A),()=>document.removeEventListener(\"mousedown\",A))),[]);const N=[{label:__(\"45+ Blocks\",\"ultimate-post\"),descp:__(\"PostX comes with over 45 Gutenberg blocks\",\"ultimate-post\")},{label:__(\"250+ Patterns\",\"ultimate-post\"),descp:__(\"Get full access to all ready post sections\",\"ultimate-post\")},{label:__(\"50+ Starter Sites\",\"ultimate-post\"),descp:__(\"Pre-built websites are ready to import in one click\",\"ultimate-post\")},{label:__(\"Global Styles\",\"ultimate-post\"),descp:__(\"Control the full website’s colors and typography globally\",\"ultimate-post\")},{label:__(\"Dark\u002FLight Mode\",\"ultimate-post\"),descp:__(\"Let your readers switch between light and dark modes\",\"ultimate-post\")},{label:__(\"Advanced Query Builder\",\"ultimate-post\"),descp:__(\"Display\u002Freorder posts, pages, and custom post types\",\"ultimate-post\")},{label:__(\"Dynamic Site Builder\",\"ultimate-post\"),descp:__(\"Dynamically create templates for essential pages\",\"ultimate-post\")},{label:__(\"Ajax Powered Filter\",\"ultimate-post\"),descp:__(\"Let your visitors filter posts by categories and tags\",\"ultimate-post\")},{label:__(\"Advanced Post Slider\",\"ultimate-post\"),descp:__(\"Display posts in engaging sliders and carousels\",\"ultimate-post\")},{label:__(\"SEO Meta Support\",\"ultimate-post\"),descp:__(\"Replace the post excerpts with meta descriptions\",\"ultimate-post\")},{label:__(\"Custom Fonts\",\"ultimate-post\"),descp:__(\"Upload custom fonts per your requirements\",\"ultimate-post\")},{label:__(\"Ajax Powered Pagination\",\"ultimate-post\"),descp:__(\"PostX comes with three types of Ajax pagination\",\"ultimate-post\")}],Z=(0,r.t)(),P=()=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_all_settings\",method:\"POST\",data:{key:\"key\",value:\"value\"}}).then((e=>{e.success&&Z.current&&v(e.settings)}))},z=e=>{C(!0),e.preventDefault();const t=new FormData(e.target),n={};for(const a of e.target.elements)a.name&&(\"checkbox\"!==a.type||a.checked?\"radio\"===a.type?a.checked&&(n[a.name]=a.value):\"select-multiple\"===a.type?n[a.name]=t.getAll(a.name):\"custom_multiselect\"==a.dataset.customprop?n[a.name]=a.value?a.value.split(\",\"):[]:n[a.name]=a.value:n[a.name]=\"\");wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fsave_plugin_settings\",method:\"POST\",data:{settings:n,action:\"action\",type:\"type\"}}).then((e=>{C(!1),e.success&&x({status:\"success\",messages:[e.message],state:!0})}))},A=e=>{e.target.closest(\".ultp-addon-settings-popup\")||m(\"\")},B=[__(\"Access to Pro Starter Site Templates\",\"ultimate-post\"),__(\"Access to All Pro Features\",\"ultimate-post\"),__(\"Fully Unlocked Site Builder\",\"ultimate-post\"),__(\"And more…\",\"ultimate-post\")],H=[{label:__(\"Add-Ons\",\"ultimate-post\"),value:\"addons\",integration:!1},{label:__(\"Integration Add-Ons\",\"ultimate-post\"),value:\"integration-addons\",integration:!0}];return(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-dashboard-addons-container \"+(Object.keys(g).length>0?\"\":\" skeletonOverflow\")},!e&&(0,a.createElement)(\"div\",{className:\"ultp-gettingstart-message\"},(0,a.createElement)(\"div\",{className:\"ultp-start-left\"},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdashboard_banner.jpg\",alt:\"Banner\"}),(0,a.createElement)(\"div\",{className:\"ultp-start-content\"},(0,a.createElement)(\"span\",{className:\"ultp-start-text\"},__(\"Enjoy Pro-level Ready Templates!\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-start-btns\"},(0,l.ac)(\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fstarter-sites\u002F?utm_source=db-postx-started&utm_medium=starter-sites&utm_campaign=postx-dashboard&pux_link=dbstartersite\",\"\",__(\"Explore Starter Sites\",\"ultimate-post\"),\"\"),(0,l.WO)(\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-started&utm_medium=details&utm_campaign=postx-dashboard\",\"\",__(\"Plugin Details\",\"ultimate-post\"),\"\")))),(0,a.createElement)(\"div\",{className:\"ultp-start-right\"},(0,a.createElement)(\"div\",{className:\"ultp-dashborad-banner\",style:{cursor:\"pointer\"},onClick:()=>k((0,a.createElement)(\"iframe\",{width:\"1100\",height:\"500\",src:\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FFYgSe7kgb6M?autoplay=1\",title:__(\"How to add Product Filter to WooCommerce Shop Page\",\"ultimate-post\"),allow:\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\",allowFullScreen:!0}))},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdashboard_right_banner.jpg\",className:\"ultp-banner-img\"}),(0,a.createElement)(\"div\",{className:\"ultp-play-icon-container\"},(0,a.createElement)(\"img\",{className:\"ultp-play-icon\",src:ultp_dashboard_pannel.url+\"\u002Fassets\u002Fimg\u002Fdashboard\u002Fplay.png\",alt:__(\"Play\",\"ultimate-post\")}),(0,a.createElement)(\"span\",{className:\"ultp-animate\"}))),(0,a.createElement)(\"div\",{className:\"ultp-dashboard-content\"},ultp_dashboard_pannel.active?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-title _pro\"},__(\"What Do You Need?\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-description _pro\"},__(\"Do you have something in mind you want to share? Both we and our users would like to hear about it. Share your ideas on our Facebook group and let us know what you need.\",\"ultimate-post\")),(0,l.ac)(\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fgutenbergpostx\",\"\",\"Share Ideas\",\"\")):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-title\"},__(\"Do More with\",\"ultimate-post\"),\" \",(0,a.createElement)(\"span\",{style:{color:\"var(--postx-primary-color)\"}},__(\"PRO:\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"ultp-description\"},__(\"Unlock powerful customizations with PostX Pro:\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-lists\"},B.map(((e,t)=>(0,a.createElement)(\"span\",{className:\"ultp-list\",key:t},o.Z.rightMark,\" \",e)))),(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-started&utm_medium=upgrade-pro-hero&utm_campaign=postx-dashboard#pricing\",className:\"ultp-upgrade-btn\",target:\"_blank\",rel:\"noreferrer\"},__(\"Upgrade to Pro\",\"ultimate-post\"),o.Z.rocketPro))))),f&&(0,l.cs)({tags:\"addons_popup\",func:e=>{h(e)},data:{icon:\"addon_lock.svg\",title:__(\"Unlock All Addons of PostX\",\"ultimate-post\"),description:__(\"Sorry, this addon is not available in the free version of PostX. Please upgrade to a pro plan to unlock all pro addons and features of PostX.\",\"ultimate-post\")}}),(0,a.createElement)(\"div\",{className:\"ultp-addons-container-grid\"},(0,a.createElement)(\"div\",{className:\"ultp-addons-items\"},H.map((t=>(0,a.createElement)(\"div\",{key:t.value,className:\"ultp-addon-group\"},(0,a.createElement)(\"div\",{className:\"ultp_h2 ultp-addon-parent-heading\"},t.label),Object.keys(g).length>0?((e=!1)=>(0,a.createElement)(\"div\",{className:\"ultp-addons-grid \"+(e?\"\":\"ultp-gs\")},Object.keys(S).map(((t,r)=>{const o=S[t];if(e&&!o.integration||!e&&o.integration)return;let s=!0;return s=!(\"true\"!=g[t]&&1!=g[t]||o.is_pro&&!ultp_dashboard_pannel.active),(0,a.createElement)(\"div\",{className:\"ultp-addon-item\",key:t},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-contents\",style:{paddingBottom:o.notice?\"10px\":\"auto\"}},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-name\"},(0,a.createElement)(\"img\",{src:`${ultp_dashboard_pannel.url}assets\u002Fimg\u002Faddons\u002F${o.img}`,alt:o.name}),(0,a.createElement)(\"div\",{className:\"ultp_h6 ultp-addon-item-title\"},o.name,o?.new&&(0,a.createElement)(\"span\",{className:\"ultp-new-tag\"},\"New\")),(0,a.createElement)(\"div\",{className:\"ultp-dash-control-options ultp-ml-auto\"},(0,a.createElement)(\"input\",{type:\"checkbox\",datatype:t,className:\"ultp-addons-enable \"+(o.is_pro&&!ultp_dashboard_pannel.active?\"disabled\":\"\"),id:t,checked:s,onChange:()=>{(e=>{const t=\"true\"==g[e]?\"false\":\"true\";!ultp_dashboard_pannel.active&&S[e].is_pro?(v({...g,[e]:\"false\"}),h(!0)):(v({...g,[e]:t}),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Faddon_block_action\",method:\"POST\",data:{key:e,value:t}}).then((n=>{n.success&&([\"ultp_templates\",\"ultp_custom_font\",\"ultp_builder\"].includes(e)&&(document.getElementById(\"postx-submenu-\"+e.replace(\"templates\",\"saved_templates\").replace(\"ultp_\",\"\").replace(\"_\",\"-\")).style.display=\"true\"==t?\"block\":\"none\",document.getElementById(e.replace(\"templates\",\"saved_templates\").replace(\"ultp_\",\"ultp-dasnav-\").replace(\"_\",\"-\")).style.display=\"true\"==t?\"\":\"none\"),setTimeout((function(){x({status:\"success\",messages:[n.message],state:!0})}),400))})))})(t)}}),(0,a.createElement)(\"label\",{htmlFor:t,className:\"ultp-control__label\"},o.is_pro&&!ultp_dashboard_pannel.active&&(0,a.createElement)(\"span\",{className:\"dashicons dashicons-lock\"})))),(0,a.createElement)(\"div\",{className:\"ultp-description\"},o.desc,o.notice&&(0,a.createElement)(\"div\",{className:\"ultp-description-notice\"},o.notice)),o.required&&o.required?.name&&(0,a.createElement)(\"span\",{className:\"ultp-plugin-required\"},\" \",__(\"This addon required this plugin:\",\"ultimate-post\"),o.required.name),o.is_pro&&!ultp_dashboard_pannel.active&&(0,a.createElement)(\"div\",{onClick:()=>{h(!0)},className:\"ultp-pro-lock\"},(0,a.createElement)(\"span\",null,\"PRO\"))),(0,a.createElement)(\"div\",{className:\"ultp-addon-item-actions ultp-dash-control-options\"},(0,a.createElement)(\"div\",{className:\"ultp-docs-action\"},o.live&&(0,a.createElement)(\"a\",{href:o.live.replace(\"live_demo_args\",`?utm_source=${e?\"db-postx-integration\":\"db-postx-addons\"}&utm_medium=${e?\"\":t+\"-\"}demo&utm_campaign=postx-dashboard`),className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},i.ZP.desktop,__(\"Demo\",\"ultimate-post\")),o.docs&&(0,a.createElement)(\"a\",{href:o.docs+(e?\"?utm_source=db-postx-integration\":\"?utm_source=db-postx-addons\")+\"&utm_medium=docs&utm_campaign=postx-dashboard\",className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},i.ZP.media_document,__(\"Docs\",\"ultimate-post\")),o.video&&(0,a.createElement)(\"a\",{href:o.video,className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},i.ZP.rightAngle,__(\"Video\",\"ultimate-post\")),M[t]&&(0,a.createElement)(\"div\",{className:\"ultp-popup-setting\",onClick:()=>{m(t)}},i.ZP.setting),n==t&&(0,a.createElement)(\"div\",{className:\"ultp-addon-settings\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-settings-popup\"},M[t]&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-addon-settings-title\"},(0,a.createElement)(\"div\",{className:\"ultp_h6\"},o.name,\": \",__(\"Settings\",\"ultimate-post\"))),(0,a.createElement)(\"form\",{onSubmit:z,action:\"\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-settings-body\"},\"ultp_frontend_submission\"===t&&(0,a.createElement)(u.Z,{attr:M[t].attr,settings:g,setSettings:v}),\"ultp_frontend_submission\"!=t&&(0,l.DC)(M[t].attr,g),(0,a.createElement)(\"div\",{className:\"ultp-data-message\"})),(0,a.createElement)(\"div\",{className:\"ultp-addon-settings-footer\"},(0,a.createElement)(\"button\",{type:\"submit\",className:\"cursor ultp-primary-button \"+(E?\"onloading\":\"\")},__(\"Save Settings\",\"ultimate-post\"),E&&i.ZP.refresh))),(0,a.createElement)(\"button\",{onClick:()=>{m(\"\")},className:\"ultp-popup-close\"})))))))}))))(!!t.integration):(0,a.createElement)(\"div\",{className:\"ultp-addons-grid \"+(e?\"\":\"ultp-gs\")},Array(6).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{key:t,className:\"ultp-addon-item\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-contents\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-name\"},(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"px\",size2:50,unit2:\"px\",br:18}}),(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:190,unit1:\"px\",size2:28,unit2:\"px\",br:4}})),(0,a.createElement)(\"div\",{className:\"ultp-description\"},(0,a.createElement)(p.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:100,unit1:\"%\",size2:14,unit2:\"px\",br:2}}),(0,a.createElement)(p.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:70,unit1:\"%\",size2:14,unit2:\"px\",br:2}}))),(0,a.createElement)(\"div\",{className:\"ultp-addon-item-actions ultp-dash-control-options\"},(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"px\",size2:20,unit2:\"px\",br:8}}),(0,a.createElement)(\"div\",{className:\"ultp-docs-action\"},(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:22,unit2:\"px\",br:2}}))))))),!e&&(0,a.createElement)(\"div\",{className:\"ultp_dash_key_features\"},(0,a.createElement)(\"div\",{className:\"ultp_h2\"},__(\"Key Features of PostX\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp_dash_key_features_content\"},N?.map(((e,t)=>(0,a.createElement)(\"div\",{key:t},(0,a.createElement)(\"div\",{className:\"ultp_dash_key_features_label\"},e.label),(0,a.createElement)(\"div\",{className:\"ultp-description\"},e.descp)))))))))),e&&(0,a.createElement)(l.gR,{FRBtnTag:\"settingsFR\",proBtnTags:\"postx_dashboard_settings\"}))),b.state&&(0,a.createElement)(c.Z,{delay:2e3,toastMessages:b,setToastMessages:x}),y&&(0,a.createElement)(s.Z,{title:__(\"Postx Intro\",\"ultimate-post\"),modalContent:y,setModalContent:k}))}},6731:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>i});var a=n(7294),r=n(4190),o=n(4766);const{__}=wp.i18n,i=({attr:e,settings:t,setSettings:n})=>{const i=e,l=({multikey:e,value:r,multiValue:i})=>{var l;const[s,p]=(0,a.useState)([...i]),[c,d]=(0,a.useState)(!1),[u,m]=(0,a.useState)(null!==(l=r.options)&&void 0!==l?l:{}),[f,h]=(0,a.useState)(\"\"),g=e=>{e.target.closest(\".ultp-ms-container\")||d(!1)};return(0,a.useEffect)((()=>(document.addEventListener(\"mousedown\",g),()=>document.removeEventListener(\"mousedown\",g))),[]),(0,a.useEffect)((()=>{setTimeout((()=>{const e=Object.fromEntries(Object.entries(r.options).filter((([e,t])=>t.toLowerCase().includes(f.toLowerCase())||e.toLowerCase().includes(f.toLowerCase()))));m(e)}),500)}),[f]),(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"input\",{type:\"hidden\",name:e,value:s,\"data-customprop\":\"custom_multiselect\"}),(0,a.createElement)(\"div\",{className:\"ultp-ms-container\"},(0,a.createElement)(\"div\",{onClick:()=>d(!c),className:\"ultp-ms-results-con cursor\"},(0,a.createElement)(\"div\",{className:\"ultp-ms-results\"},s.length>0?s?.map(((i,l)=>(0,a.createElement)(\"span\",{key:l,className:\"ultp-ms-selected\"},r.options[i],(0,a.createElement)(\"span\",{className:\"ultp-ms-remove cursor\",onClick:a=>{a.stopPropagation(),(a=>{const r=s.filter((e=>e!=a));p(r),n({...t,[e]:r})})(i)}},o.ZP.close_circle_line)))):(0,a.createElement)(\"span\",null,__(\"Select options\"))),(0,a.createElement)(\"span\",{onClick:()=>d(!c),className:\"ultp-ms-results-collapse cursor\"},o.ZP.collapse_bottom_line)),c&&u&&(0,a.createElement)(\"div\",{className:\"ultp-ms-options\"},(0,a.createElement)(\"input\",{type:\"text\",className:\"ultp-multiselect-search\",value:f,onChange:e=>h(e.target.value)}),Object.keys(u)?.map(((o,i)=>(0,a.createElement)(\"span\",{className:\"ultp-ms-option cursor\",onClick:()=>(a=>{let o=[];if(-1==s.indexOf(a)&&\"all\"!=a&&(o=[...s,a]),\"all\"===a){const e=Object.fromEntries(Object.entries(r.options).filter((([e,t])=>!t.toLowerCase().includes(\"all\"))));o=Object.keys(e)}p(o),n({...t,[e]:o})})(o),key:i,value:o},u[o]))))))};return(0,a.createElement)(a.Fragment,null,Object.keys(i).map(((e,o)=>{const s=i[e];return(0,a.createElement)(\"span\",{key:o},\"hidden\"==s.type&&(0,a.createElement)(\"input\",{key:e,type:\"hidden\",name:e,defaultValue:s.value}),\"hidden\"!=s.type&&(0,a.createElement)(a.Fragment,null,\"heading\"==s.type&&(0,a.createElement)(\"h2\",{className:\"ultp-settings-heading\"},s.label)&&(0,a.createElement)(a.Fragment,null,s.desc&&(0,a.createElement)(\"div\",{className:\"ultp-settings-subheading\"},s.desc)),\"heading\"!=s.type&&((e,n)=>{let a=!0;return n.hasOwnProperty(\"depends_on\")&&n.depends_on.forEach((e=>{\"==\"==e.condition&&t[e.key]!=e.value&&(a=!1)})),a})(0,s)&&(0,a.createElement)(\"div\",{className:\"ultp-settings-wrap\"},s.label&&(0,a.createElement)(\"strong\",null,s.label,s.tooltip&&(0,a.createElement)(r.Z,{placement:\"bottom\",content:s.tooltip},(0,a.createElement)(\"span\",{className:\" cursor dashicons dashicons-editor-help\"}))),(0,a.createElement)(\"div\",{className:\"ultp-settings-field-wrap\"},((e,r,o)=>{const i=t.hasOwnProperty(e)?t[e]:t.default?t.default:\"multiselect\"==r.type?[]:\"\",s=e=>{n((t=>\"checkbox\"===e.target.type?{...t,[e.target.name]:e.target.checked?\"yes\":\"no\"}:{...t,[e.target.name]:e.target.value}))};switch(r.type){case\"select\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"select\",{defaultValue:i,name:e,id:e,onChange:s},Object.keys(r.options).map(((e,t)=>(0,a.createElement)(\"option\",{key:t,value:e},r.options[e])))),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"radio\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"div\",{className:\"ultp-field-radio\"},(0,a.createElement)(\"div\",{className:\"ultp-field-radio-items\"},Object.keys(r.options).map(((t,n)=>(0,a.createElement)(\"div\",{key:n,className:\"ultp-field-radio-item\"},(0,a.createElement)(\"input\",{type:\"radio\",id:t,name:e,value:t,defaultChecked:t==i,onChange:s}),(0,a.createElement)(\"label\",{htmlFor:t},r.options[t])))))),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"color\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"input\",{type:\"text\",defaultValue:i,className:\"ultp-color-picker\"}),(0,a.createElement)(\"span\",{className:\"ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"text\",name:e,className:\"ultp-color-code\",defaultValue:i})),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"number\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"number\",name:e,defaultValue:i,onChange:s}),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"switch\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-field-inline\"},(0,a.createElement)(\"input\",{value:\"yes\",type:\"checkbox\",name:e,defaultChecked:\"yes\"==i||\"on\"==i,onChange:s}),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"switchButton\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-field-inline\"},(0,a.createElement)(\"input\",{type:\"checkbox\",value:\"yes\",name:e,defaultChecked:\"yes\"==i||\"on\"==i}),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"span\",{id:\"postx-regenerate-css\",className:`ultp-upgrade-pro-btn cursor ${\"yes\"==i?\"active\":\"\"} `},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-admin-generic\"}),(0,a.createElement)(\"span\",{className:\"ultp-text\"},__(\"Re-Generate Font Files\",\"ultimate-post\")))));case\"multiselect\":const t=Array.isArray(i)?i:[i];return(0,a.createElement)(l,{multikey:e,value:r,multiValue:t});case\"text\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"text\",name:e,defaultValue:i,onChange:s}),(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc,r.link&&(0,a.createElement)(\"a\",{className:\"settingsLink\",target:\"_blank\",href:r.link,rel:\"noreferrer\"},r.linkText)));case\"textarea\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"textarea\",{name:e,defaultValue:i}),(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc,r.link&&(0,a.createElement)(\"a\",{className:\"settingsLink\",target:\"_blank\",href:r.link,rel:\"noreferrer\"},r.linkText)));case\"shortcode\":return(0,a.createElement)(\"code\",{className:\"ultp-shortcode-copy\"},\"[\",r.value,\"]\")}})(e,s)))))})))}},1370:(e,t,n)=>{\"use strict\";n.d(t,{q:()=>a});const{__}=wp.i18n,a={ultp_wpbakery:{name:\"WPBakery\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the WPBakery Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"wpbakery.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fwpbakery-page-builder-addon\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=f99NZ6N9uDQ\",position:20,integration:!0},ultp_templates:{name:\"Saved Templates\",desc:__(\"Create unlimited templates by converting Gutenberg blocks into shortcodes to use them anywhere.\",\"ultimate-post\"),img:\"saved-template.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fshortcodes-support\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Faddons\u002Fsave-template\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=6ydwiIp2Jkg\",position:10},ultp_table_of_content:{name:\"Table of Contents\",desc:__(\"It enables a highly customizable block to the Gutenberg blocks library to display the Table of Contents.\",\"ultimate-post\"),img:\"table-of-content.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Ftable-of-content\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Faddons\u002Ftable-of-content\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=xKu_E720MkE\",position:25},ultp_oxygen:{name:\"Oxygen\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Oxygen Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"oxygen.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Foxygen-builder-addon\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=iGik4w3ZEuE\",position:20,integration:!0},ultp_elementor:{name:\"Elementor\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Elementor Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"elementor-icon.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Felementor-addon\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=GJEa2_Tow58\",position:20,integration:!0},ultp_dynamic_content:{name:\"Dynamic Content\",desc:__(\"Insert dynamic, real-time content like excerpts, dates, author names, etc. in PostX blocks.\",\"ultimate-post\"),img:\"dynamic-content.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fpostx-features\u002Fdynamic-content\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcreate-custom-fields-in-wordpress\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=4oeXkHCRVCA\",position:6,notice:\"ACF, Meta Box and Pods (PRO)\",new:!0},ultp_divi:{name:\"Divi\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Divi Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"divi.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fdivi-addon\u002F?utm_source=postx-menu&utm_medium=addons-demo&utm_campaign=postx-dashboard\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=p9RKTYzqU48\",position:20,integration:!0},ultp_custom_font:{name:\"Custom Font\",desc:__(\"It allows you to upload custom fonts and use them on any PostX blocks with all typographical options.\",\"ultimate-post\"),img:\"custom_font.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fwordpress-custom-fonts\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fcustom-fonts\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=tLqUpj_gL-U\",position:7},ultp_bricks_builder:{name:\"Bricks Builder\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Bricks Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"bricks.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fbricks-builder-addon\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=t0ae3TL48u0\",position:20,integration:!0},ultp_beaver_builder:{name:\"Beaver\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Beaver Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"beaver.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fbeaver-builder-addon\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=aLfI0RkJO6g\",position:20,integration:!0},ultp_frontend_submission:{name:\"Front End Post Submission\",desc:__(\"Registered\u002Fguest writers can submit posts from frontend. Admins can easily manage, review, and publish posts.\",\"ultimate-post\"),img:\"frontend_submission.svg\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Ffront-end-post-submission\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Ffront-end-post-submission\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=KofF7BUwNC0\",is_pro:!0,position:6,integration:!1},ultp_category:{name:\"Taxonomy Image & Color\",desc:__(\"It allows you to add category or taxonomy-specific featured images and colors to make them attractive.\",\"ultimate-post\"),is_pro:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fcategory-addon\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Ftaxonomy-image-and-color\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=cd75q-lJIwg\",img:\"category-style.svg\",position:15},ultp_progressbar:{name:\"Progress Bar\",desc:__(\"Display a visual indicator of the reading progression of blog posts and the scrolling progression of pages.\",\"ultimate-post\"),img:\"progressbar.svg\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fprogress-bar\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fprogress-bar\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=QErQoDhWi4c\",is_pro:!0,position:30},ultp_yoast:{name:\"Yoast\",desc:__(\"It allows you to display custom meta descriptions added with the Yoast SEO plugin instead of excerpts.\",\"ultimate-post\"),img:\"yoast.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"Yoast\",slug:\"wordpress-seo\u002Fwp-seo.php\"},position:55,integration:!0},ultp_aioseo:{name:\"All in One SEO\",desc:__(\"It allows you to display custom meta descriptions added with the All in One SEO plugin instead of excerpts.\",\"ultimate-post\"),img:\"aioseo.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"All in One SEO\",slug:\"all-in-one-seo-pack\u002Fall_in_one_seo_pack.php\"},position:35,integration:!0},ultp_rankmath:{name:\"Rank Math\",desc:__(\"It allows you to display custom meta descriptions added with the Rank Math plugin instead of excerpts.\",\"ultimate-post\"),img:\"rankmath.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"Rank Math\",slug:\"seo-by-rank-math\u002Frank-math.php\"},position:40,integration:!0},ultp_seopress:{name:\"SEOPress\",desc:__(\"It allows you to display custom meta descriptions added with the SEOPress plugin instead of excerpts.\",\"ultimate-post\"),img:\"seopress.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"SEOPress\",slug:\"wp-seopress\u002Fseopress.php\"},position:45,integration:!0},ultp_squirrly:{name:\"Squirrly\",desc:__(\"It allows you to display custom meta descriptions added with the Squirrly plugin instead of excerpts.\",\"ultimate-post\"),img:\"squirrly.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"Squirrly\",slug:\"squirrly-seo\u002Fsquirrly.php\"},position:50,integration:!0},ultp_builder:{name:\"Dynamic Site Builder\",desc:__(\"The Gutenberg-based Builder allows users to create dynamic templates for Home and all Archive pages.\",\"ultimate-post\"),img:\"builder-icon.svg\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fgutenberg-site-builder\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=0qQmnUqWcIg\",is_pro:!1,position:5},ultp_chatgpt:{name:\"ChatGPT\",desc:__(\"PostX brings the ChatGPT into the WordPress Dashboard to let you generate content effortlessly.\",\"ultimate-post\"),img:\"ChatGPT.svg\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fchatgpt-addon\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx-chatgpt-wordpress-ai-content-generator\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=NE4BPw4OTAA\",is_pro:!1,position:6}}},7191:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>s});var a=n(7294),r=n(1383),o=n(8949),i=n(356);n(563);const{__}=wp.i18n,l={grid:{label:__(\"Post Grid Blocks\",\"ultimate-post\"),attr:{post_grid_1:{label:__(\"Post Grid #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6829\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-1\u002F\",icon:\"post-grid-1.svg\"},post_grid_2:{label:__(\"Post Grid #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6830\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-2\u002F\",icon:\"post-grid-2.svg\"},post_grid_3:{label:__(\"Post Grid #3\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6831\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-3\u002F\",icon:\"post-grid-3.svg\"},post_grid_4:{label:__(\"Post Grid #4\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6832\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-4\u002F\",icon:\"post-grid-4.svg\"},post_grid_5:{label:__(\"Post Grid #5\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6833\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-5\u002F\",icon:\"post-grid-5.svg\"},post_grid_6:{label:__(\"Post Grid #6\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6834\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-6\u002F\",icon:\"post-grid-6.svg\"},post_grid_7:{label:__(\"Post Grid #7\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6835\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-7\u002F\",icon:\"post-grid-7.svg\"}}},list:{label:__(\"Post List Blocks\",\"ultimate-post\"),attr:{post_list_1:{label:__(\"Post List #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6836\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-1\u002F\",icon:\"post-list-1.svg\"},post_list_2:{label:__(\"Post List #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6837\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-2\u002F\",icon:\"post-list-2.svg\"},post_list_3:{label:__(\"Post List #3\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6838\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-3\u002F\",icon:\"post-list-3.svg\"},post_list_4:{label:__(\"Post List #4\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6839\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-4\u002F\",icon:\"post-list-4.svg\"}}},slider:{label:__(\"Post Slider Blocks\",\"ultimate-post\"),attr:{post_slider_1:{label:__(\"Post Slider #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6840\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-slider-1\u002F\",icon:\"post-slider-1.svg\"},post_slider_2:{label:__(\"Post Slider #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7487\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-slider-2\u002F\",icon:\"post-slider-2.svg\"}}},other:{label:__(\"Others PostX Blocks\",\"ultimate-post\"),attr:{menu:{label:__(\"Menu - PostX\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fintroducing-postx-mega-menu\u002F\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fpostx-menu\u002F\",icon:\"\u002Fmenu\u002Fmenu.svg\"},post_module_1:{label:__(\"Post Module #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6825\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-module-1\u002F\",icon:\"post-module-1.svg\"},post_module_2:{label:__(\"Post Module #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6827\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-module-2\u002F\",icon:\"post-module-2.svg\"},heading:{label:__(\"Heading\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6842\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fheading-blocks\u002F\",icon:\"heading.svg\"},image:{label:__(\"Image\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6843\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fimage-blocks\u002F\",icon:\"image.svg\"},taxonomy:{label:__(\"Taxonomy\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6841\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Ftaxonomy-1\u002F\",icon:\"ultp-taxonomy.svg\"},wrapper:{label:__(\"Wrapper\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6844\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fwrapper\u002F\",icon:\"wrapper.svg\"},news_ticker:{label:__(\"News Ticker\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6845\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fnews-ticker-block\u002F\",icon:\"news-ticker.svg\"},advanced_list:{label:__(\"List - PostX\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7994\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Flist-block\u002F\",icon:\"advanced-list.svg\"},button_group:{label:__(\"Button Group\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7952\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fbutton-block\u002F\",icon:\"button-group.svg\"},row:{label:__(\"Row\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx-row-column-block\u002F\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fpostx-features\u002Frow-column\u002F\",icon:\"row.svg\"},advanced_search:{label:__(\"Search - PostX\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8233\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fsearch-block\",icon:\"advanced-search.svg\"},dark_light:{label:__(\"Dark Light\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8233\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fsearch-block\",icon:\"advanced-search.svg\"},star_ratings:{label:__(\"Star Rating\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8858\",icon:\"star-rating.svg\"},accordion:{label:__(\"Accordion\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8851\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Faccordion-block\u002F\",icon:\"accordion.svg\"},tabs:{label:__(\"Tabs\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid9045\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Ftabs-block\u002F\",icon:\"tabs.svg\"},gallery:{label:__(\"PostX Gallery\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8951\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpostx-gallery-block\u002F\",icon:\"gallery.svg\"},youtube_gallery:{label:__(\"Youtube Gallery\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid9096\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fyoutube-gallery-block\u002F\",icon:\"youtube-gallery.svg\"}}},builder:{label:__(\"Site Builder Blocks\",\"ultimate-post\"),attr:{builder_post_title:{label:__(\"Post Title\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fpost_title.svg\"},builder_advance_post_meta:{label:__(\"Advance Post Meta\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fpost_meta.svg\"},builder_archive_title:{label:__(\"Archive Title\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"archive-title.svg\"},builder_author_box:{label:__(\"Post Author Box\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fauthor_box.svg\"},builder_post_next_previous:{label:__(\"Post Next Previous\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fnext_previous.svg\"},builder_post_author_meta:{label:__(\"Post Author Meta\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fauthor.svg\"},builder_post_breadcrumb:{label:__(\"Post Breadcrumb\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fbreadcrumb.svg\"},builder_post_category:{label:__(\"Post Category\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fcategory.svg\"},builder_post_comment_count:{label:__(\"Post Comment Count\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fcomment_count.svg\"},builder_post_comments:{label:__(\"Post Comments\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fcomments.svg\"},builder_post_content:{label:__(\"Post Content\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fcontent.svg\"},builder_post_date_meta:{label:__(\"Post Date Meta\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fpost_date.svg\"},builder_post_excerpt:{label:__(\"Post Excerpt\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fexcerpt.svg\"},builder_post_featured_image:{label:__(\"Post Featured Image\u002FVideo\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Ffeatured_img.svg\"},builder_post_reading_time:{label:__(\"Post Reading Time\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Freading_time.svg\"},builder_post_social_share:{label:__(\"Post Social Share\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fshare.svg\"},builder_post_tag:{label:__(\"Post Tag\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fpost_tag.svg\"},builder_post_view_count:{label:__(\"Post View Count\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fview_count.svg\"}}}},s=()=>{const[e,t]=(0,a.useState)({}),[n,s]=(0,a.useState)({state:!1,status:\"\"}),[p,c]=(0,a.useState)(!1),d=(0,r.t)();(0,a.useEffect)((()=>{u()}),[]);const u=()=>{c(!0),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_all_settings\",method:\"POST\",data:{key:\"key\",value:\"value\"}}).then((e=>{e.success&&d.current&&(t(e.settings),c(!1))}))};return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-blocks-container\"},n.state&&(0,a.createElement)(i.Z,{delay:2e3,toastMessages:n,setToastMessages:s}),Object.keys(l).map(((n,r)=>{const i=l[n];return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-blocks-group\",key:r},p?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:180,unit1:\"px\",size2:32,unit2:\"px\",br:4}}),(0,a.createElement)(\"div\",{className:\"ultp-dashboard-group-blocks\"},Array(3).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{className:\"ultp-dashboard-group-blocks-item ultp-dash-item-con\",key:t},(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-meta\"},(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:22,unit1:\"px\",size2:25,unit2:\"px\",br:4}}),(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"px\",size2:20,unit2:\"px\",br:2}})),(0,a.createElement)(\"div\",{className:\"ultp-blocks-control-option ultp-dash-control-options\"},(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:46,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:36,unit1:\"px\",size2:20,unit2:\"px\",br:8}}))))))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp_h5\"},i.label),(0,a.createElement)(\"div\",{className:\"ultp-dashboard-group-blocks\"},Object.keys(i.attr).map(((n,r)=>{const o=i.attr[n];let l=!!o.default;return\"\"==e[n]&&(l=\"yes\"==e[n]),(0,a.createElement)(\"div\",{className:\"ultp-dashboard-group-blocks-item ultp-dash-item-con\",key:r},(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-meta\"},(0,a.createElement)(\"img\",{src:`${ultp_dashboard_pannel.url}assets\u002Fimg\u002Fblocks\u002F${o.icon}`,alt:o.label}),(0,a.createElement)(\"div\",null,o.label)),(0,a.createElement)(\"div\",{className:\"ultp-blocks-control-option ultp-dash-control-options\"},o.docs&&(0,a.createElement)(\"a\",{href:o.docs+\"?utm_source=db-postx-blocks&utm_medium=docs&utm_campaign=postx-dashboard\",className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"div\",{className:\"dashicons dashicons-media-document\"}),__(\"Docs\",\"ultimate-post\")),o.live&&(0,a.createElement)(\"a\",{href:o.live,className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"div\",{className:\"dashicons dashicons-external\"}),__(\"Live\",\"ultimate-post\")),(0,a.createElement)(\"input\",{type:\"checkbox\",className:\"ultp-blocks-enable\",id:n,checked:l,onChange:()=>{(n=>{const a=e?.hasOwnProperty(n)&&\"yes\"!=e[n]?\"yes\":\"\";t({...e,[n]:a}),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Faddon_block_action\",method:\"POST\",data:{key:n,value:a}}).then((e=>{e.success&&s({status:\"success\",messages:[e.message],state:!0})}))})(n)}}),(0,a.createElement)(\"label\",{className:\"ultp-control__label\",htmlFor:n})))})))))})))}},4872:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>i});var a=n(7294),r=n(1078),o=n(6765);const{__}=wp.i18n,i=e=>{const{id:t,type:n,settings:i,defaults:l,setShowCondition:s}=e,[p,c]=(0,a.useState)(t&&void 0!==i[n]&&void 0!==i[n][t]?i[n][t]:[\"include\u002F\"+n]),[d,u]=(0,a.useState)({reload:!1,dataSaved:!1});return(0,a.createElement)(\"div\",{className:\"ultp-modal-content\"},(0,a.createElement)(\"div\",{className:\"ultp-condition-wrap\"},(0,a.createElement)(\"div\",{className:\"ultp_h3\"},__(\"Where Do You Want to Display Your Template?\",\"ultimate-post\")),(0,a.createElement)(\"p\",{className:\"ultp-description\"},__(\"Set the conditions that determine where your Template is used throughout your site.\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-condition-items\"},p.map(((e,i)=>{if(e)return(0,a.createElement)(\"div\",{key:i,className:\"ultp-condition-wrap__field\"},\"header\"==n||\"footer\"==n?(0,a.createElement)(r.Z,{key:e,id:t,index:i,type:n,value:e,defaults:l,setChange:(e,t)=>{u({dataSaved:!1});let n=JSON.parse(JSON.stringify(p));n[t]=e,c(n)}}):(0,a.createElement)(o.Z,{key:e,id:t,index:i,type:n,value:e,defaults:l,setChange:(e,t)=>{u({dataSaved:!1});let n=JSON.parse(JSON.stringify(p));n[t]=e,c(n)}}),(0,a.createElement)(\"span\",{className:\"dashicons dashicons-no-alt ultp-condition_cancel\",onClick:()=>{u({dataSaved:!1});let e=JSON.parse(JSON.stringify(p));e.splice(i,1),c(e)}}))}))),(0,a.createElement)(\"button\",{className:\"btnCondition cursor\",onClick:()=>{const e=\"singular\"==n?\"include\u002Fsingular\u002Fpost\":\"header\"==n||\"footer\"==n?\"include\u002F\"+n+\"\u002Fentire_site\":\"include\u002F\"+n;c([...p,e])}},__(\"Add Conditions\",\"ultimate-post\"))),(0,a.createElement)(\"button\",{className:\"ultp-save-condition cursor\",onClick:()=>{u({reload:!0});let e=Object.assign({},i);void 0!==e[n]||(e[n]={}),e[n][t]=p.filter((e=>e)),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fcondition_save\",method:\"POST\",data:{settings:e}}).then((e=>{e.success&&(u({reload:!1,dataSaved:!0}),setTimeout((function(){u({reload:!1,dataSaved:!1}),s&&s(\"\")}),2e3))}))}},d.dataSaved?\"Condition Saved.\":\"Save Condition\",(0,a.createElement)(\"span\",{style:{visibility:d.reload?\"visible\":\"hidden\"},className:\"dashicons dashicons-update rotate ultp-builder-import\"})))}},1078:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);const r=e=>{const t=(0,a.useRef)(),{value:n,type:r,defaults:o,setChange:i,index:l}=e,s=n.split(\"\u002F\"),[p,c]=(0,a.useState)([]),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)(!1),[h,g]=(0,a.useState)(s[2]||\"\"),[v,_]=(0,a.useState)(\"\"),w=e=>{null!=t.current&&(t.current.contains(e.target)||u(!1))};(0,a.useEffect)((()=>(s[4]?x(s[4],!0):b(),document.addEventListener(\"mousedown\",w),()=>document.removeEventListener(\"mousedown\",w))),[]);const b=()=>{let e=\"\";const t=s[3];return t&&o[s[2]]&&o[s[2]].forEach((n=>{n.value==t?(e=n.search,f(!0)):n.attr&&n.attr.forEach((n=>{n.value==t&&(e=n.search,f(!0))}))})),e},x=(e,t)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fcondition\",method:\"POST\",data:{type:b(),term:e,title_return:t}}).then((e=>{e.success&&(t?_(e.data):c(e.data))}))};return(0,a.createElement)(\"div\",{className:\"ultp-condition-fields\"},(0,a.createElement)(\"select\",{value:s[0]||\"include\",onChange:e=>{s.splice(0,1,e.target.value),i(s.join(\"\u002F\"),l)}},(0,a.createElement)(\"option\",{value:\"include\"},\"Include\"),(0,a.createElement)(\"option\",{value:\"exclude\"},\"Exclude\")),(0,a.createElement)(\"select\",{value:s[2]||\"entire_site\",onChange:e=>{s.splice(2,1,e.target.value||\"entire_site\"),s.splice(3),\"singular\"==e.target.value&&s.push(\"post\"),i(s.join(\"\u002F\"),l)}},o[r].map(((e,t)=>(0,a.createElement)(\"option\",{key:t,value:e.value},e.label)))),s[2]&&\"entire_site\"!=s[2]&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"select\",{value:s[3]||\"\",onChange:e=>{const t=e.target.options[e.target.options.selectedIndex].dataset.search;f(!!t),g(\"\"),c([]),s.splice(3,1,e.target.value),s.splice(e.target.value?4:3);const n=s.filter((function(e){return e}));i(n.join(\"\u002F\"),l)}},o[s[2]]&&o[s[2]].map(((e,t)=>e.attr?(0,a.createElement)(\"optgroup\",{label:e.label,key:t},e.attr.map(((e,t)=>!e.attr&&(0,a.createElement)(\"option\",{value:e.value,\"data-search\":e.search,key:t},e.label)))):(0,a.createElement)(\"option\",{value:e.value,\"data-search\":e.search,key:t},e.label)))),(m||s[4])&&(0,a.createElement)(\"div\",{ref:t,className:\"ultp-condition-dropdown\"},(0,a.createElement)(\"div\",{onClick:()=>u(!0),className:`ultp-condition-text ${h&&\"ultp-condition-dropdown__content\"}`},h&&v?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"span\",{className:\"ultp-condition-dropdown__label\"},v,(0,a.createElement)(\"span\",{className:\"dashicons dashicons-no-alt ultp-dropdown-value__close\",onClick:()=>{f(!0),g(\"\"),s.splice(4,1,\"\");const e=s.filter((function(e){return e}));i(e.join(\"\u002F\"),l)}}))):(0,a.createElement)(\"span\",{className:\"ultp-condition-dropdown__default\"},\" \",\"All\",\" \"),(0,a.createElement)(\"span\",{className:\"ultp-condition-arrow dashicons dashicons-arrow-down-alt2\"})),d&&(0,a.createElement)(\"div\",{className:\"ultp-condition-search\"},(0,a.createElement)(\"input\",{type:\"text\",name:\"search\",autoComplete:\"off\",placeholder:\"Search\",onChange:e=>{x(e.target.value,!1)}}),p.length>0&&(0,a.createElement)(\"ul\",null,p.map(((e,t)=>(0,a.createElement)(\"li\",{key:t,onClick:()=>{u(!1),g(e.value),_(e.title),s.splice(4,1,e.value),i(s.join(\"\u002F\"),l)}},e.title))))))))}},6765:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);const r=e=>{const t=(0,a.useRef)(),{value:n,type:r,defaults:o,setChange:i,index:l}=e,s=n.split(\"\u002F\"),[p,c]=(0,a.useState)([]),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)(!1),[h,g]=(0,a.useState)(s[2]||\"\"),[v,_]=(0,a.useState)(\"\"),w=e=>{null!=t.current&&(t.current.contains(e.target)||u(!1))};(0,a.useEffect)((()=>(s[3]?x(s[3],!0):b(),document.addEventListener(\"mousedown\",w),()=>document.removeEventListener(\"mousedown\",w))),[]);const b=()=>{let e=\"\";const t=s[2];return t&&o[r]&&o[r].forEach((n=>{n.value==t?(e=n.search,f(!0)):n.attr&&n.attr.forEach((n=>{n.value==t&&(e=n.search,f(!0))}))})),e},x=(e,t)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fcondition\",method:\"POST\",data:{type:b(),term:e,title_return:t}}).then((e=>{e.success&&(t?_(e.data):c(e.data))}))};return(0,a.createElement)(\"div\",{className:\"ultp-condition-fields\"},(0,a.createElement)(\"select\",{value:s[0]||\"include\",onChange:e=>{s[0]=e.target.value,i(s.join(\"\u002F\"),l)}},(0,a.createElement)(\"option\",{value:\"include\"},\"Include\"),(0,a.createElement)(\"option\",{value:\"exclude\"},\"Exclude\")),(0,a.createElement)(\"select\",{value:s[2]||\"post\",onChange:e=>{const t=e.target.options[e.target.options.selectedIndex].dataset.search;f(!!t),g(\"\"),c([]),s[2]=e.target.value;const n=s.filter((function(e){return e}));i(n.join(\"\u002F\"),l)}},o[r]&&o[r].map(((e,t)=>e.attr?(0,a.createElement)(\"optgroup\",{label:e.label,key:t},e.attr.map(((e,t)=>(0,a.createElement)(\"option\",{value:e.value,\"data-search\":e.search,key:t},e.label)))):(0,a.createElement)(\"option\",{value:e.value,\"data-search\":e.search,key:t},e.label)))),(m||s[3])&&(0,a.createElement)(\"div\",{ref:t,className:\"ultp-condition-dropdown\"},(0,a.createElement)(\"div\",{onClick:()=>u(!0),className:`ultp-condition-text ${h&&\"ultp-condition-dropdown__content\"}`},h&&v?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"span\",{className:\"ultp-condition-dropdown__label\"},v,(0,a.createElement)(\"span\",{className:\"dashicons dashicons-no-alt ultp-dropdown-value__close\",onClick:()=>{f(!0),g(\"\"),s[3]=\"\";const e=s.filter((function(e){return e}));i(e.join(\"\u002F\"),l)}}))):(0,a.createElement)(\"span\",{className:\"ultp-condition-dropdown__default\"},\" \",\"All\",\" \"),(0,a.createElement)(\"span\",{className:\"ultp-condition-arrow dashicons dashicons-arrow-down-alt2\"})),d&&(0,a.createElement)(\"div\",{className:\"ultp-condition-search\"},(0,a.createElement)(\"input\",{type:\"text\",name:\"search\",autoComplete:\"off\",placeholder:\"Search\",onChange:e=>{x(e.target.value,!1)}}),p.length>0&&(0,a.createElement)(\"ul\",null,p.map(((e,t)=>(0,a.createElement)(\"li\",{key:t,onClick:()=>{u(!1),g(e.value),_(e.title),s[3]=e.value,i(s.join(\"\u002F\"),l)}},e.title)))))))}},8351:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>d});var a=n(7462),r=n(7294),o=n(1383),i=n(4766),l=n(356),s=n(4482),p=n(8949),c=n(4872);n(3493);const{__}=wp.i18n,d=e=>{const t=e.has_ultp_condition?ultp_condition:ultp_dashboard_pannel,{notEditor:n}=e,d=[\"singular\",\"archive\",\"category\",\"search\",\"author\",\"post_tag\",\"date\",\"header\",\"footer\",\"404\"],[u,m]=(0,r.useState)(\"\"),[f,h]=(0,r.useState)([]),[g,v]=(0,r.useState)(\"all\"),[_,w]=(0,r.useState)(!1),[b,x]=(0,r.useState)([]),[y,k]=(0,r.useState)(n||\"\"),[E,C]=(0,r.useState)([]),[S,M]=(0,r.useState)(!1),[L,N]=(0,r.useState)(\"\"),[Z,P]=(0,r.useState)([]),[z,A]=(0,r.useState)(\"\"),[B,H]=(0,r.useState)(!1),[T,R]=(0,r.useState)(!1),[O,j]=(0,r.useState)(!1),[V,F]=(0,r.useState)(\"\"),[W,D]=(0,r.useState)(!1),I=\"yes\"==n?wp.data.select(\"core\u002Feditor\").getCurrentPostId():\"\",[U,$]=(0,r.useState)([]),[G,q]=(0,r.useState)(!1),[K,X]=(0,r.useState)({state:!1,status:\"\"}),Q=(0,o.t)(),J=async()=>{await wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ffetch_premade_data\",method:\"POST\",data:{type:\"starter_lists\"}}).then((e=>{if(e.success&&e.data){const t=JSON.parse(e.data);Y(t)}}))},Y=e=>{const t=[],n=[];e.forEach((e=>{e.templates.forEach((a=>{const r={...a,parentID:e.ID};r.hasOwnProperty(\"home_page\")&&\"home_page\"==r.home_page&&t.push(r),\"ultp_builder\"==r.type&&n.push(r)}))})),P(n),$(t)},ee=async()=>{await wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fdata_builder\",method:\"POST\",data:{pid:I}}).then((e=>{e.success&&Q.current&&(h(e.postlist),x(e.settings),C(e.defaults),m(e.type),j(!0),J())}))};(0,r.useEffect)((()=>(ee(),document.addEventListener(\"mousedown\",ne),()=>document.removeEventListener(\"mousedown\",ne))),[]);const te=(e,t)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_single_premade\",method:\"POST\",data:{type:L,ID:e,apiEndPoint:t}}).then((e=>{e.success?(A(\"\"),window.open(e?.link?.replaceAll(\"&amp;\",\"&\"))):(H(!0),A(\"\"),R(!0))}))},ne=e=>{e.target&&!e.target.classList?.contains(\"ultp-reserve-button\")&&(F(\"\"),D(!1))},ae=(e,n)=>{const a=`https:\u002F\u002Fpostxkit.wpxpo.com\u002F${e.live}\u002Fwp-content\u002Fuploads\u002Fsites\u002F${e.parentID}\u002Fpostx_importer_img\u002Fpages\u002F${e.name.toLowerCase().replaceAll(\" \",\"_\")}.jpg`,o=\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+([\"header\",\"footer\",\"front_page\"].includes(L)?e.live:e.live+\"\u002Fpostx_\"+(\"archive\"==e.builder_type?e.archive_type:e.builder_type));return(0,r.createElement)(\"div\",{key:n,className:\"ultp-item-list ultp-premade-item\"},(0,r.createElement)(\"div\",{className:\"listInfo\"},(0,r.createElement)(\"div\",{className:\"title\"},(0,r.createElement)(\"span\",null,e.name),(0,r.createElement)(\"div\",{className:\"parent\"},e.parent)),e.pro&&!t.active?(0,r.createElement)(\"a\",{className:\"ultp-upgrade-pro-btn\",target:\"_blank\",href:`https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-builder&utm_medium=${L}-template&utm_campaign=postx-dashboard#pricing`,rel:\"noreferrer\"},__(\"Upgrade to Pro\",\"ultimate-post\"),\"  ➤\"):e.pro&&T?(0,r.createElement)(\"a\",{className:\"ultp-btn-success\",target:\"_blank\",href:`https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-builder&utm_medium=${L}-template&utm_campaign=postx-dashboard#pricing`,rel:\"noreferrer\"},__(\"Get License\",\"ultimate-post\")):(0,r.createElement)(\"span\",{onClick:()=>{A(e.ID),te(e.ID,\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+e.live)},className:\"btnImport cursor\"},\" \",i.ZP.arrow_down_line,__(\"Import\",\"ultimate-post\"),z&&z==e.ID?(0,r.createElement)(\"span\",{className:\"dashicons dashicons-update rotate\"}):\"\")),(0,r.createElement)(\"div\",{className:\"listOverlay bg-image-aspect\",style:{backgroundImage:`url(${a})`}},(0,r.createElement)(\"div\",{className:\"ultp-list-dark-overlay\"},(0,r.createElement)(\"a\",{className:\"ultp-overlay-view ultp-dashboverlay\",href:o,target:\"_blank\",rel:\"noreferrer\"},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-visibility\"}),\" \",__(\"Live Preview\",\"ultimate-post\")))))},re=()=>\"all\"!=g&&\"archive\"!=g?(N(g),v(g),void((Z.length\u003C=0||\"front_page\"==g&&U.length\u003C=0)&&J())):(0,r.createElement)(\"div\",{className:\"ultp-builder-items\"},(\"all\"==g?[\"front_page\",...d]:\"archive\"==g?d.filter((e=>\"singular\"!=e)):[g]).map(((e,n)=>(0,r.createElement)(\"div\",{key:n,onClick:()=>{N(e),v(e),(Z.length\u003C=0||\"front_page\"==e&&U.length\u003C=0)&&J()}},(0,r.createElement)(\"div\",{className:\"newScreen ultp-item-list ultp-premade-item\"},(0,r.createElement)(\"div\",{className:\"listInfo\"},(0,r.createElement)(\"div\",{className:\"ultp_h6\"},e)),(0,r.createElement)(\"div\",{className:\"listOverlays\"},(0,r.createElement)(\"img\",{src:t.url+`addons\u002Fbuilder\u002Fassets\u002Ficons\u002Ftemplate\u002F${e.toLowerCase()}.svg`}),(0,r.createElement)(\"span\",{className:\"ultp-list-white-overlay\"},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-plus-alt\"}),__(\"Add\",\"ultimate-post\"),\" \",e)))))));return(0,r.createElement)(\"div\",{className:\"ultp-builder-dashboard\"},K.state&&(0,r.createElement)(l.Z,{delay:2e3,toastMessages:K,setToastMessages:X}),!n&&(0,r.createElement)(\"div\",{className:\"ultp-builder-dashboard__content ultp-builder-tab\"},(0,r.createElement)(\"div\",{className:\"ultp-builder-tab__option\"},(0,r.createElement)(\"span\",{onClick:()=>(M(!0),void wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ffetch_premade_data\",method:\"POST\",data:{type:\"fetch_all_data\"}}).then((e=>{e.success&&(ee(),M(!1),X({status:\"success\",messages:[e.message],state:!0}))}))),className:\"ultp-popup-sync\"},(0,r.createElement)(\"i\",{className:\"dashicons dashicons-update-alt\"+(S?\" rotate\":\"\")}),__(\"Synchronize\",\"ultimate-post\")),(0,r.createElement)(\"ul\",null,(0,r.createElement)(\"li\",(0,a.Z)({},\"all\"==g&&{className:\"active\"},{onClick:()=>{v(\"all\"),w(!1),N(\"\")}}),(0,r.createElement)(\"span\",{className:\"dashicons dashicons-admin-home\"}),\" \",__(\"All Template\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"front_page\"==g&&{className:\"active\"},{onClick:()=>{v(\"front_page\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Ffront_page.svg\"}),__(\"Front Page\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"singular\"==g&&{className:\"active\"},{onClick:()=>{v(\"singular\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fsingular.svg\"}),__(\"Singular\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"search\"==g&&{className:\"active\"},{onClick:()=>{v(\"search\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fsearch.svg\"}),__(\"Search Result\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"archive\"==g&&{className:\"active\"},{onClick:()=>{v(\"archive\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Farchive.svg\"}),__(\"Archive\",\"ultimate-post\")),(0,r.createElement)(\"ul\",null,(0,r.createElement)(\"li\",(0,a.Z)({},\"category\"==g&&{className:\"active\"},{onClick:()=>{v(\"category\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fcategory.svg\"}),__(\"Category\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"author\"==g&&{className:\"active\"},{onClick:()=>{v(\"author\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fauthor.svg\"}),__(\"Authors\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"post_tag\"==g&&{className:\"active\"},{onClick:()=>{v(\"post_tag\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Ftag.svg\"}),__(\"Tags\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"date\"==g&&{className:\"active\"},{onClick:()=>{v(\"date\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fdate.svg\"}),__(\"Date\",\"ultimate-post\"))),(0,r.createElement)(\"li\",(0,a.Z)({},\"header\"==g&&{className:\"active\"},{onClick:()=>{v(\"header\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fheader.svg\"}),__(\"Header\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"footer\"==g&&{className:\"active\"},{onClick:()=>{v(\"footer\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Ffooter.svg\"}),__(\"Footer\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"404\"==g&&{className:\"active\"},{onClick:()=>{v(\"404\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002F404.svg\"}),\"404\"))),(0,r.createElement)(\"div\",{className:\"ultp-builder-tab__content ultp-builder-tab__template\"},(0,r.createElement)(\"div\",{className:\"ultp-builder-tab__heading\"},(0,r.createElement)(\"div\",{className:\"ultp-builder-heading__title\"},(\"\"!=L||_)&&G&&(0,r.createElement)(\"span\",{onClick:()=>{q(!1),w(!1),N(\"\")}},\" \",i.ZP.leftAngle2,__(\"Back\",\"ultimate-post\")),(0,r.createElement)(\"div\",{className:\"ultp_h5 heading\"},__(\"All\",\"ultimate-post\"),\" \",\"all\"==g?\"\":g.replace(\"_\",\" \"),\" \",__(\"Templates\",\"ultimate-post\"))),f.length>0&&\"\"==L&&!_?(0,r.createElement)(\"button\",{className:\"cursor ultp-primary-button ultp-builder-create-btn\",onClick:()=>{w(!0),q(!0),N(\"all\"==g||\"archive\"==g?\"\":g)}},\" \",\"+ \",__(\"Create\",\"ultimate-post\"),\" \",\"all\"==g?\"\":g.replace(\"_\",\" \"),\" \",__(\"Template\",\"ultimate-post\")):O?\"\":(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:170,unit1:\"px\",size2:42,unit2:\"px\",br:4}})),(0,r.createElement)(\"div\",{className:\"ultp-tab__content active\"},O?\"\"==L?((e=\"all\")=>{let t=0;return(0,r.createElement)(\"div\",{className:\"ultp-template-list__tab\"},0==_&&f.length>0?f.map(((n,a)=>{const o=((e,t)=>{let n=[];return e?.id&&void 0!==b[e?.type]&&b[e.type][e.id]?.map(((e,t)=>{e&&(n=e.split(\"\u002F\"))})),n})(n);if(\"all\"==e||e==n.type||e==o[2]&&n.type==o[1]&&![\"header\",\"footer\"].includes(n.type))return t++,(0,r.createElement)(\"div\",{key:a,className:\"ultp-template-list__wrapper\"},(0,r.createElement)(\"div\",{className:\"ultp-template-list__heading\"},(0,r.createElement)(\"div\",{className:\"ultp-template-list__meta\"},(0,r.createElement)(\"div\",null,(0,r.createElement)(\"span\",null,\"front_page\"==n.type?\"Front Page\":n.type,\" \",\":\"),\" \",n.title,\" \",(0,r.createElement)(\"span\",null,\"ID :\"),\" #\",n.id),n.id&&void 0!==b[n.type]&&(0,r.createElement)(\"div\",{className:\"ultp-condition__previews\"},\"(\",(b[n.type][n.id]||[]).map(((e,t)=>{if(e){const n=e.split(\"\u002F\");return(0,r.createElement)(r.Fragment,{key:t},0==t?\"\":\", \",(0,r.createElement)(\"span\",null,void 0!==n[2]?n[2]:n[1]))}})),\")\")),(0,r.createElement)(\"div\",{className:\"ultp-template-list__control ultp-template-list__content\"},\"front_page\"!=n.type&&\"404\"!=n.type&&(0,r.createElement)(\"button\",{onClick:()=>{m(n.type),k(n.id)},className:\"ultp-condition__edit\"},__(\"Conditions\",\"ultimate-post\")),(0,r.createElement)(\"a\",{className:\"status\"},\" \",\"publish\"==n.status?\"Published\":n.status),(0,r.createElement)(\"a\",{href:n?.edit?.replaceAll(\"&amp;\",\"&\"),className:\"ultp-condition-action\",target:\"_blank\",rel:\"noreferrer\"},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-edit-large\"}),__(\"Edit\",\"ultimate-post\")),(0,r.createElement)(\"a\",{className:\"ultp-condition-action ultp-single-popup__btn cursor\",onClick:e=>{e.preventDefault(),confirm(\"Are you sure you want to duplicate this template?\")&&wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ftemplate_action\",method:\"POST\",data:{id:n.id,type:\"duplicate\",section:\"builder\"}}).then((e=>{e.success&&(ee(),X({status:\"success\",messages:[e.message],state:!0}))}))}},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-admin-page\"}),__(\"Duplicate\",\"ultimate-post\")),(0,r.createElement)(\"a\",{className:\"ultp-condition-action ultp-single-popup__btn cursor\",onClick:e=>{e.preventDefault(),confirm(\"Are you sure you want to delete this template?\")&&wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ftemplate_action\",method:\"POST\",data:{id:n.id,type:\"delete\",section:\"builder\"}}).then((e=>{e.success&&(h(f.filter((e=>e.id!=n.id))),X({status:\"error\",messages:[e.message],state:!0}))}))}},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-trash\"}),__(\"Delete\",\"ultimate-post\")),(0,r.createElement)(\"span\",{onClick:e=>{D(!W),F(n.id)}},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-ellipsis ultp-builder-dashboard__action ultp-reserve-button\"})),V==n.id&&W&&(0,r.createElement)(\"span\",{className:\"ultp-builder-action__active ultp-reserve-button\",onClick:e=>{F(\"\"),D(!1),e.preventDefault(),confirm(`Are you sure you want to ${\"publish\"==n.status?\"draft\":\"publish\"} this template?`)&&wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ftemplate_action\",method:\"POST\",data:{id:n.id,type:\"status\",status:\"publish\"==n.status?\"draft\":\"publish\"}}).then((e=>{e.success&&(ee(),X({status:\"success\",messages:[e.message],state:!0}))}))}},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-open-folder ultp-reserve-button\"}),\" \",__(\"Set to\",\"ultimate-post\"),\" \",\"publish\"==n.status?__(\"Draft\",\"ultimate-post\"):__(\"Publish\",\"ultimate-post\")))))})):re(),0==_&&f.length>0&&!t&&re())})(g):(0,r.createElement)(\"div\",{className:`premadeScreen ${L&&\" ultp-builder-items ultp\"+L}`},(0,r.createElement)(\"div\",{className:\"ultp-list-blank-img ultp-item-list ultp-premade-item\"},(0,r.createElement)(\"div\",{className:\"ultp-item-list-overlay ultp-p20 ultp-premade-img__blank\"},(0,r.createElement)(\"img\",{src:t.url+\"assets\u002Fimg\u002Fdashboard\u002Fstart-scratch.svg\"}),(0,r.createElement)(\"a\",{className:\"cursor\",onClick:e=>{e.preventDefault(),te()}},(0,r.createElement)(\"span\",{className:\"ultp-list-white-overlay\"},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-plus-alt\"}),\" \",__(\"Start from Scratch\",\"ultimate-post\"),\" \")))),\"front_page\"==L?U.map(((e,t)=>ae(e,t))):Z.map(((e,t)=>{if(\"archive\"!=e.builder_type&&e.builder_type==L||\"archive\"==e.builder_type&&(e.archive_type==L||\"archive\"==L))return ae(e,t)}))):(0,r.createElement)(\"div\",{className:\"skeletonOverflow\",label:__(\"Loading…\",\"ultimate-post\")},Array(6).fill(1).map(((e,t)=>(0,r.createElement)(\"div\",{key:t,className:\"ultp-template-list__tab\",style:{marginBottom:\"15px\"}},(0,r.createElement)(\"div\",{className:\"ultp-template-list__wrapper\"},(0,r.createElement)(\"div\",{className:\"ultp-template-list__heading\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"%\",size2:22,unit2:\"px\",br:2}}),(0,r.createElement)(\"div\",{className:\"ultp-template-list__control ultp-template-list__content\"},(2==t||4==t)&&(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:42,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:42,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:56,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:25,unit1:\"px\",size2:12,unit2:\"px\",br:2}}))))))))))),y&&(0,r.createElement)(\"div\",{className:\"ultp-condition-wrapper ultp-condition--active\"},(0,r.createElement)(\"div\",{className:\"ultp-condition-popup ultp-popup-wrap\"},(0,r.createElement)(\"button\",{className:\"ultp-save-close\",onClick:()=>k(\"\")},i.ZP.close_line),Object.keys(E).length&&u?(0,r.createElement)(c.Z,{type:u,id:\"yes\"==y?I:y,settings:b,defaults:E,setShowCondition:\"yes\"==n?k:\"\"}):(0,r.createElement)(\"div\",{className:\"ultp-modal-content\"},(0,r.createElement)(\"div\",{className:\"ultp-condition-wrap\"},(0,r.createElement)(\"div\",{className:\"ultp_h3 ultp-condition-wrap-heading\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:330,unit1:\"px\",size2:22,unit2:\"px\",br:2}})),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:460,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,r.createElement)(\"div\",{className:\"ultp-condition-items\"},(0,r.createElement)(\"div\",{className:\"ultp-condition-wrap__field\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:30,unit2:\"px\",br:2}})),(0,r.createElement)(\"div\",{className:\"ultp-condition-wrap__field\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:30,unit2:\"px\",br:2}})),(0,r.createElement)(\"div\",{className:\"ultp-condition-wrap__field\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:30,unit2:\"px\",br:2}}))))))),B&&(0,s.cs)({tags:\"builder_popup\",func:e=>{H(e)},data:{icon:\"template_lock.svg\",title:__(\"Create Unlimited Templates With PostX Pro\",\"ultimate-post\"),description:__(\"We are sorry. Unfortunately, the free version of PostX lets you create only one template. Please upgrade to a pro version that unlocks the full capabilities of the dynamic site builder.\",\"ultimate-post\")}}))}},3944:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>p});var a=n(7294),r=n(1383),o=n(4766),i=n(4482),l=n(8949),s=n(356);n(8350);const{__}=wp.i18n,p=()=>{const[e,t]=(0,a.useState)({}),[n,p]=(0,a.useState)({state:!1,status:\"\"}),[c,d]=(0,a.useState)(!1);(0,a.useEffect)((()=>{m()}),[]);const u=(0,r.t)(),m=()=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_all_settings\",method:\"POST\",data:{key:\"key\",value:\"value\"}}).then((e=>{e.success&&u.current&&t(e.settings)}))};return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-general-settings-container\"},(0,a.createElement)(\"div\",{className:\"ultp-general-settings ultp-dash-item-con\"},(0,a.createElement)(\"div\",null,n.state&&(0,a.createElement)(s.Z,{delay:2e3,toastMessages:n,setToastMessages:p}),(0,a.createElement)(\"div\",{className:\"ultp_h5 heading\"},__(\"General Settings\",\"ultimate-post\")),Object.keys(e).length>0?(0,a.createElement)(\"form\",{onSubmit:e=>{d(!0),e.preventDefault();const t=new FormData(e.target),n={};for(const a of e.target.elements)a.name&&(\"checkbox\"!==a.type||a.checked?\"select-multiple\"===a.type?n[a.name]=t.getAll(a.name):\"custom_multiselect\"==a.dataset.customprop?n[a.name]=a.value?a.value.split(\",\"):[]:n[a.name]=a.value:n[a.name]=\"\");wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fsave_plugin_settings\",method:\"POST\",data:{settings:n,action:\"action\",type:\"type\"}}).then((e=>{e.success&&p({status:\"success\",messages:[e.message],state:!0}),d(!1)}))},action:\"\"},(0,i.DC)(i.u4,e),(0,a.createElement)(\"div\",{className:\"ultp-data-message\"}),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"button\",{type:\"submit\",className:\"cursor ultp-primary-button \"+(c?\"onloading\":\"\")},__(\"Save Settings\",\"ultimate-post\"),c&&o.ZP.refresh))):(0,a.createElement)(\"div\",{className:\"skeletonOverflow\"},Array(6).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{key:t},(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:150,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:\"\",unit1:\"\",size2:34,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:350,unit1:\"px\",size2:20,unit2:\"px\",br:2}})))),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:120,unit1:\"px\",size2:36,unit2:\"px\",br:2}})))),(0,a.createElement)(\"div\",{className:\"ultp-general-settings-content-right\"},(0,a.createElement)(i.gR,{FRBtnTag:\"settingsFR\",proBtnTags:\"postx_dashboard_settings\"})))}},3546:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(7294),r=n(2044);const{__}=wp.i18n,o=[{id:\"ultp_helloBar_flash_sale_2026_1\",start:\"2026-02-19\",end:\"2026-02-23\",countdownDuration:259200,utmKey:\"flash_sale\",content:(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"span\",{className:\"dashicons dashicons-bell ultp-ring\"}),\" \",(0,a.createElement)(\"span\",null,__(\"Flash Sale - Enjoy Up to 45% on\",\"ultimate-post\")),\" \",(0,a.createElement)(\"strong\",null,__(\"PostX\",\"ultimate-post\")))},{id:\"ultp_helloBar_final_hour_sale_2026_1\",start:\"2026-02-25\",end:\"2026-03-01\",countdownDuration:172800,utmKey:\"final_hour\",content:(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"span\",{className:\"dashicons dashicons-bell ultp-ring\"}),\" \",(0,a.createElement)(\"span\",null,__(\"Final Hour Sale - Enjoy Up to 50% on\",\"ultimate-post\")),\" \",(0,a.createElement)(\"strong\",null,__(\"PostX\",\"ultimate-post\")))}],i=({duration:e,storageKey:t})=>{const n=1e3*Math.max(Number(e)||0,0),r=(0,a.useCallback)((()=>{if(!n||!t)return null;try{const e=window.localStorage.getItem(t),n=Number(e);if(Number.isFinite(n)&&n>0)return n}catch(e){return null}return null}),[n,t]),o=(0,a.useCallback)((e=>{if(t)try{window.localStorage.setItem(t,String(e))}catch(e){}}),[t]),i=(0,a.useCallback)((()=>{if(!n)return 0;const e=Date.now();let t=r();return(!t||t\u003C=e)&&(t=e+n,o(t)),Math.max(Math.ceil((t-e)\u002F1e3),0)}),[n,r,o]),[l,s]=(0,a.useState)(i);if((0,a.useEffect)((()=>{if(!n)return void s(0);const e=()=>{s(i())};e();const t=window.setInterval(e,1e3);return()=>{window.clearInterval(t)}}),[n,i]),!n)return null;const p=Math.floor(l\u002F86400),c=Math.floor(l%86400\u002F3600),d=Math.floor(l%3600\u002F60),u=l%60,m=String(c).padStart(2,\"0\"),f=String(d).padStart(2,\"0\"),h=String(u).padStart(2,\"0\");return(0,a.createElement)(\"strong\",null,`${p}:${m}:${f}:${h}`)},l=()=>{const[e,t]=(0,a.useState)((()=>o.find((e=>new Date>=new Date(e.start)&&new Date\u003C=new Date(e.end)&&ultp_dashboard_pannel.helloBar&&\"hide\"!==ultp_dashboard_pannel.helloBar[e.id]&&!ultp_dashboard_pannel?.active))||null));return e?(0,a.createElement)(\"div\",{className:\"ultp-setting-hellobar-wrapper\"},(0,a.createElement)(\"a\",{href:`${(0,r.Z)({utmKey:e.utmKey})}#pricing`,target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"div\",{className:\"ultp-setting-hellobar\"},(0,a.createElement)(\"span\",null,e.content),(0,a.createElement)(i,{duration:e.countdownDuration,storageKey:`ultp_hello_bar_timer_${e.id}`}),(0,a.createElement)(\"strong\",null,(0,a.createElement)(\"span\",null,__(\"Grab Now\",\"ultimate-post\")),\"  ➤\"),(0,a.createElement)(\"button\",{type:\"button\",className:\"helobarClose\",onClick:n=>{n.stopPropagation(),n.preventDefault(),wp.apiFetch({path:\"ultp\u002Fhello_bar\",method:\"POST\",data:{type:\"hello_bar\",id:e.id}}),t(null)},\"aria-label\":__(\"Close notification\",\"ultimate-post\"),style:{background:\"none\",border:\"none\",padding:0,cursor:\"pointer\"}},(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"20\",height:\"20\",fill:\"none\",viewBox:\"0 0 20 20\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",d:\"M15 5 5 15M5 5l10 10\"})))))):(console.log(\"return\"),null)}},1383:(e,t,n)=>{\"use strict\";n.d(t,{t:()=>_});var a=n(7294),r=n(3935),o=n(3100),i=n(4766),l=n(860),s=n(7191),p=n(8351),c=n(3644),d=(n(9780),n(3944)),u=n(3546),m=(n(2156),n(2470)),f=n(3701),h=n(5957),g=n(3554),v=n(58);const{__}=wp.i18n;function _(){const e=(0,a.useRef)(!1);return(0,a.useEffect)((()=>(e.current=!0,()=>e.current=!1)),[]),e}document.body.contains(document.getElementById(\"ultp-dashboard\"))&&r.render((0,a.createElement)(a.StrictMode,null,(0,a.createElement)((()=>{const[e,t]=(0,a.useState)(\"xx\"),[n,r]=(ultp_dashboard_pannel.status,ultp_dashboard_pannel.expire,(0,a.useState)(!1)),_=[{link:\"#home\",label:__(\"Dashboard\",\"ultimate-post\"),showin:\"both\"},{link:\"#startersites\",label:__(\"Starter Sites\",\"ultimate-post\"),showin:\"both\",tag:\"New\"},{link:\"#builder\",label:__(\"Site Builder\",\"ultimate-post\"),showin:ultp_dashboard_pannel.settings.hasOwnProperty(\"ultp_builder\")&&\"false\"!=ultp_dashboard_pannel.settings.ultp_builder?\"both\":\"none\",showhide:!0},{link:\"#blocks\",label:__(\"Blocks\",\"ultimate-post\"),showin:\"both\"},{link:\"#addons\",label:__(\"Add-ons\",\"ultimate-post\"),showin:\"both\"},{link:\"#settings\",label:__(\"Settings\",\"ultimate-post\"),showin:\"both\"}],w=[{label:__(\"Get Support\",\"ultimate-post\"),icon:\"dashicons-phone\",link:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcontact\u002F?utm_source=postx-menu&utm_medium=all_que-support&utm_campaign=postx-dashboard\"},{label:__(\"Welcome Guide\",\"ultimate-post\"),icon:\"dashicons-megaphone\",link:ultp_dashboard_pannel.setup_wizard_link},{label:__(\"Join Community\",\"ultimate-post\"),icon:\"dashicons-facebook-alt\",link:\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fgutenbergpostx\"},{label:__(\"Feature Request\",\"ultimate-post\"),icon:\"dashicons-email-alt\",link:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Froadmap\u002F?utm_source=postx-menu&utm_medium=all_que-FR&utm_campaign=postx-dashboard\"},{label:__(\"Youtube Tutorials\",\"ultimate-post\"),icon:\"dashicons-youtube\",link:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=_GfXTvSdJTk&list=PLPidnGLSR4qcAwVwIjMo1OVaqXqjUp_s4\"},{label:__(\"Documentation\",\"ultimate-post\"),icon:\"dashicons-book\",link:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002F?utm_source=postx-menu&utm_medium=all_que-docs&utm_campaign=postx-dashboard\"},{label:__(\"What’s New\",\"ultimate-post\"),icon:\"dashicons-edit\",link:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcategory\u002Fpostx\u002F?utm_source=postx-menu&utm_medium=all_que-roadmap&utm_campaign=postx-dashboard\"}],b=e=>{if(e.target&&!e.target.classList?.contains(\"ultp-reserve-button\")&&e.target.href&&e.target.href.indexOf(\"page=ultp-settings#\")>0){const n=e.target.href.split(\"#\");n[1]&&(t(n[1]),window.scrollTo({top:0,behavior:\"smooth\"}))}e.target.closest(\".dash-faq-container\")||e.target.classList?.contains(\"ultp-reserve-button\")||r(!1)},[x,y]=(0,a.useState)(window.location.hash||e);(0,a.useEffect)((()=>{const e=()=>{y(window.location.hash||\"#welcome\")};return window.location.hash||(window.location.hash=_[0].link.replace(\"#\",\"\")),window.addEventListener(\"hashchange\",e),()=>{window.removeEventListener(\"hashchange\",e)}}),[]),(0,a.useEffect)((()=>{const n=x.replace(\"#\",\"\");n&&n!==e&&t(n)}),[x,e]),(0,a.useEffect)((()=>((()=>{let e=window.location.href;e.includes(\"page=ultp-settings#\")&&(e=e.split(\"page=ultp-settings#\"),e[1]&&t(e[1]))})(),document.addEventListener(\"mousedown\",b),()=>document.removeEventListener(\"mousedown\",b))),[]);const[k,E]=(0,a.useState)({success:!1,license:\"\"});return(0,a.createElement)(\"div\",{className:\"ultp-menu-items-wrap\"},(0,a.createElement)(u.Z,null),(0,a.createElement)(\"div\",{className:\"ultp-setting-header\"},(0,a.createElement)(\"div\",{className:\"ultp-setting-logo\"},(0,a.createElement)(\"img\",{className:\"ultp-setting-header-img\",loading:\"lazy\",src:ultp_dashboard_pannel.url+\"\u002Fassets\u002Fimg\u002Flogo-new.png\",alt:\"PostX\"}),(0,a.createElement)(\"span\",{className:\"ultp-setting-version\"},ultp_dashboard_pannel.version)),(0,a.createElement)(\"div\",{className:\"ultp-menu-items\",id:\"ultp-dashboard-ultp-menu-items\"},_.map(((t,n)=>\"both\"==t.showin||\"menu\"==t.showin||t.showhide?(0,a.createElement)(\"a\",{href:t.link,style:{display:\"none\"==t.showin?\"none\":\"\"},id:\"ultp-dasnav-\"+t.link.replace(\"#\",\"\"),key:n,className:(t.link==\"#\"+e?\"current\":\"\")+\" ultp-menu-item\",onClick:()=>y(t.link.replace(\"#\",\"\"))},t.label,t.tag&&(0,a.createElement)(\"span\",{className:\"ultp-menu-item-tag\"},t.tag)):\"\"))),(0,a.createElement)(\"div\",{className:\"ultp-secondary-menu\"},(0,a.createElement)(\"a\",{href:\"#plugins\",className:\"ultp-menu-item \"+([\"plugins\",\"#plugins\"].includes(x)?\"current\":\"\"),onClick:()=>y(\"plugins\")},i.ZP.connect,__(\"Our Plugins\",\"ultimate-post\")),!ultp_dashboard_pannel?.active&&(0,a.createElement)(\"a\",{href:(0,o.Z)(\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-topbar&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing\"),className:\"ultp-secondary-button ultp-pro-button\"},__(\"Upgrade Pro\",\"ultimate-post\"),i.ZP.unlock)),(0,a.createElement)(\"div\",{className:\"ultp-dash-faq-con\"},(0,a.createElement)(\"span\",{onClick:()=>r(!n),className:\"ultp-dash-faq-icon ultp-reserve-button dashicons dashicons-editor-help\"}),n&&(0,a.createElement)(\"div\",{className:\"dash-faq-container\"},w.map(((e,t)=>(0,a.createElement)(\"a\",{key:t,href:e.link,target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"span\",{className:`dashicons ${e.icon}`}),e.label)))))),(0,a.createElement)(\"div\",{className:\"ultp-settings-container \"+(\"startersites\"==e?\"ultp-settings-container-startersites\":\"\")},(0,a.createElement)(\"ul\",{className:\"ultp-settings-content\"},(0,a.createElement)(\"li\",{className:\"current\"},\"xx\"!=e&&(\"home\"==e||![\"builder\",\"startersites\",\"integrations\",\"saved-templates\",\"custom-font\",\"addons\",\"blocks\",\"settings\",\"tutorials\",\"license\",\"support\",\"plugins\"].includes(e))&&(0,a.createElement)(c.Z,null),\"saved-templates\"==e&&(0,a.createElement)(h.Z,{type:\"ultp_templates\"}),\"custom-font\"==e&&(0,a.createElement)(h.Z,{type:\"ultp_custom_font\"}),\"builder\"==e&&(0,a.createElement)(p.Z,null),\"startersites\"==e&&(0,a.createElement)(g.Z,null),\"addons\"==e&&(0,a.createElement)(l.Z,{integrations:!0}),\"blocks\"==e&&(0,a.createElement)(s.Z,null),\"settings\"==e&&(0,a.createElement)(d.Z,null),\"license\"==e&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(m.C,{licenseData:k,setLicenseData:E})),\"support\"==e&&(0,a.createElement)(v.Z,null),\"plugins\"==e&&(0,a.createElement)(f.I,null))),(0,a.createElement)(v.Z,null)),!ultp_dashboard_pannel.active&&(()=>{const e=(new Date).setHours(0,0,0,0)\u002F1e3,t=345600,n=new Date(\"2024-05-21\").setHours(0,0,0,0)\u002F1e3,a=new Date(\"2024-07-22\").setHours(0,0,0,0)\u002F1e3;if(e\u003Cn||e>a)return!1;if(ultp_dashboard_pannel.settings.activated_date&&Number(ultp_dashboard_pannel.settings.activated_date)+t>=e)return!1;const r=Number(localStorage.getItem(\"ultpCouponDiscount\"));return r?r\u003C=e&&e\u003C=r+t||e>=r+691200&&(localStorage.setItem(\"ultpCouponDiscount\",String(e)),!0):(localStorage.setItem(\"ultpCouponDiscount\",String(e)),!0)})()&&(0,a.createElement)(\"a\",{className:\"ultp-discount-wrap\",href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-discount&utm_medium=coupon&utm_campaign=postx-dashboard&pux_link=postxdbcoupon#pricing\",target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"span\",{className:\"ultp-discount-text\"},__(\"Get Discount\",\"ultimate-post\"))))}),null)),document.getElementById(\"ultp-dashboard\"))},2470:(e,t,n)=>{\"use strict\";n.d(t,{C:()=>o});var a=n(7294),r=n(356);n(977);const{__}=wp.i18n,o=({licenseData:e,setLicenseData:t})=>{const[n,r]=(0,a.useState)(\"\"),[o,l]=(0,a.useState)(!1),[s,p]=(0,a.useState)(!0);return(0,a.useEffect)((()=>{(async()=>{p(!0);const e=await(async()=>{try{const e=`${ultp_dashboard_pannel.ajax}`,t=new URLSearchParams({action:\"edd_ultp_get_license_data\"}),n=await fetch(e,{method:\"POST\",body:t,headers:{\"Content-Type\":\"application\u002Fx-www-form-urlencoded\"}});if(!n.ok)throw l(!0),new Error(`HTTP error! Status: ${n.status}`);const a=await n.json();if(a.success)return a.data}catch(e){return null}})();e?.license_data&&t(e?.license_data),p(!1)})()}),[]),(0,a.useEffect)((()=>{\"valid\"===e?.license?ultp_dashboard_pannel.active=!0:\"\"!=e.license&&\"valid\"!=e?.license&&(ultp_dashboard_pannel.active=!1)}),[e]),(0,a.createElement)(\"div\",{className:\"ultp-license\"},s?(0,a.createElement)(\"div\",{className:\"ultp-license__activation\",style:{display:\"flex\",flexDirection:\"column\",gap:\"16px\",paddingTop:\"50px !important\"}},(0,a.createElement)(c,{width:\"250px\",height:\"30px\"}),(0,a.createElement)(c,{width:\"100%\",height:\"30px\",style:{marginTop:\"10px\"}}),(0,a.createElement)(c,{width:\"100%\",height:\"30px\"}),(0,a.createElement)(c,{width:\"100%\",height:\"30px\"}),(0,a.createElement)(c,{width:\"100%\",height:\"30px\"})):(0,a.createElement)(i,{proUpdate:o,licenseKey:n,setLicenseKey:r,licenseData:e,setLicenseData:t}),(0,a.createElement)(u,null))},i=({proUpdate:e,licenseKey:t,setLicenseKey:n,licenseData:o,setLicenseData:i})=>{const[p,c]=(0,a.useState)(!1),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)({state:!1,status:\"\",messages:[]}),h=async()=>{try{c(!0);const e=await g(t);e?.status&&(i(e?.license_data),window.location.reload()),f({status:e.status?\"success\":\"error\",messages:[e?.data||\"Some issues occured\"],state:!0}),n(\"\"),c(!1),u(!1)}catch(e){u(!0),f({status:\"error\",messages:[\"Some issues occured\"],state:!0}),console.error(\"License Activation Error: \",e)}},g=async e=>{const t=`${ultp_dashboard_pannel.ajax}`,n=new URLSearchParams({action:\"edd_ultp_activate_license\",security:ultp_dashboard_pannel.nonce,license_key:e}),a=await fetch(t,{method:\"POST\",body:n,headers:{\"Content-Type\":\"application\u002Fx-www-form-urlencoded\"}});if(!a.ok)throw new Error(`HTTP error! Status: ${a.status}`);return await a.json()};return(0,a.createElement)(\"div\",{className:\"ultp-license__activation\"},(0,a.createElement)(\"div\",{className:\"ultp-license__title\"},__(e?\"Notice: Upgrade PostX Pro plugin\":\"Ready to Use PostX Pro ?\",\"ultimate-post\")),m.state&&(0,a.createElement)(r.Z,{delay:2e3,toastMessages:m,setToastMessages:f}),!e&&(0,a.createElement)(a.Fragment,null,\"valid\"!==o?.license?(0,a.createElement)(\"div\",{className:\"ultp-license__form\"},(0,a.createElement)(\"input\",{type:\"password\",id:\"ultp-license-key\",placeholder:__(\"Enter Your License Key Here…\",\"ultimate-post\"),value:t||\"\",onChange:e=>n(e.target.value)}),(0,a.createElement)(\"div\",{className:\"ultp-license__helper-text\"},__(\"If you’re unable to activate your product license, please contact the\",\"ultimate-post\"),\" \",(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcontact\u002F\",target:\"_blank\",className:\"ultp-license__link\",rel:\"noreferrer\"},__(\"support team\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"ultp-activate-btn ultp_license_action_btn\",onClick:()=>h(),role:\"button\",tabIndex:-1,onKeyDown:e=>{\"Enter\"===e.key&&h()}},(0,a.createElement)(\"div\",null,__(\"Activate License\",\"ultimate-post\")),p&&(0,a.createElement)(\"span\",{className:\"ultp-activate-loading\"})),d&&(0,a.createElement)(\"div\",{className:\"ultp-license__helper-text\"},__(\"Please make sure your free and pro plugins are updated to the latest release or version. Otherwise, contact the\",\"ultimate-post\"),(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcontact\u002F\",target:\"_blank\",className:\"ultp-license__link\",rel:\"noreferrer\"},__(\"support team\",\"ultimate-post\")))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(l,{title:__(\"Congratulations on unlocking PostX Pro!\",\"ultimate-post\"),message:__(\"Ignite your imagination and design your ideal experience. Let PostX take care of you and your users.\",\"ultimate-post\")}),(0,a.createElement)(s,{licenseData:o,setLicenseData:i,setToastMessages:f}))))},l=({title:e,message:t})=>(0,a.createElement)(\"div\",{className:\"ultp-license-message\"},(0,a.createElement)(\"div\",{className:\"ultp-license-message__icon\"},(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",width:\"48px\",height:\"46px\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"g\",{fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M46.15 26.76a.94.94 0 0 0-.39-1.27 14.7 14.7 0 0 0-16.21 1.62l-1.52-1.52 2.48-2.47a.94.94 0 0 0-1.33-1.33l-2.47 2.48-6.04-6.04a13.1 13.1 0 0 0 1.07-13.98.94.94 0 0 0-1.66.88c2.02 3.8 1.7 8.3-.75 11.76l-3.98-3.98a2.3 2.3 0 0 0-3.79.84L.14 44.9c-.3.86-.1 1.78.54 2.42a2.28 2.28 0 0 0 2.42.54l31.15-11.42a2.3 2.3 0 0 0 .84-3.8l-4.2-4.2a12.83 12.83 0 0 1 13.99-1.3.94.94 0 0 0 1.27-.38ZM14.93 41.52l-8.45-8.45 2.34-6.4 12.5 12.5-6.39 2.35Zm-4.58 1.68L4.8 37.65 5.77 35l7.22 7.22-2.64.97Zm-7.9 2.9A.4.4 0 0 1 2 46a.4.4 0 0 1-.1-.45l2.19-5.96 4.32 4.32-5.96 2.19Zm31.43-11.73a.41.41 0 0 1-.27.3l-5.77 2.12-5.33-5.33a.94.94 0 0 0-1.33 1.32l4.72 4.72-2.64.97L9.53 24.74l.97-2.64 4.72 4.72a.93.93 0 0 0 1.32 0 .94.94 0 0 0 0-1.33l-5.33-5.33 2.11-5.77c.07-.19.23-.25.31-.27h.1c.09 0 .2.02.3.12l19.73 19.73c.14.15.13.31.12.4ZM28.27 7.48c.52 0 .94-.42.94-.94 0-.78.64-1.42 1.43-1.42a3.3 3.3 0 0 0 3.3-3.3.94.94 0 0 0-1.88 0c0 .79-.64 1.43-1.42 1.43a3.3 3.3 0 0 0-3.3 3.3c0 .51.42.93.93.93ZM36.6 16.33c1.87 0 3.4-1.53 3.4-3.4 0-.85.69-1.54 1.53-1.54a.94.94 0 0 0 0-1.87 3.41 3.41 0 0 0-3.4 3.4c0 .85-.7 1.54-1.54 1.54a.94.94 0 0 0 0 1.87ZM42 18.14a3 3 0 1 0 6 0 3 3 0 0 0-6 0ZM45 17a1.13 1.13 0 1 1 0 2.26A1.13 1.13 0 0 1 45 17Z\"}),(0,a.createElement)(\"path\",{d:\"M29.54 15.92a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4.12a1.13 1.13 0 1 1 0 2.25 1.13 1.13 0 0 1 0-2.25ZM12 6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4.13a1.13 1.13 0 1 1 0 2.26 1.13 1.13 0 0 1 0-2.25ZM42.42 32.91a.94.94 0 0 0-1.32 1.33l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89ZM46.84 37.33a.94.94 0 0 0-1.32 1.33l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.33l-.89-.88ZM46.4 32.91l-.88.89a.94.94 0 0 0 1.32 1.32l.89-.88a.94.94 0 0 0-1.33-1.33ZM41.98 37.33l-.88.88a.94.94 0 0 0 1.32 1.33l.89-.88a.94.94 0 0 0-1.33-1.33ZM46.18 2.76c.24 0 .48-.1.66-.28l.89-.88A.94.94 0 1 0 46.4.27l-.88.89a.94.94 0 0 0 .66 1.6ZM41.76 7.18c.24 0 .48-.1.66-.28l.89-.88a.94.94 0 0 0-1.33-1.33l-.88.89a.94.94 0 0 0 .66 1.6ZM46.84 4.7a.94.94 0 0 0-1.32 1.32l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89ZM41.98 2.48a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89A.94.94 0 0 0 41.1 1.6l.88.88ZM18.86 28.2a.94.94 0 0 0-.93.94.94.94 0 0 0 .93.93.94.94 0 0 0 .94-.93.94.94 0 0 0-.94-.94ZM32.54 18.43l-.68.68a.94.94 0 0 0 1.33 1.33l.68-.68a.94.94 0 0 0-1.33-1.33Z\"})))),(0,a.createElement)(\"div\",{className:\"ultp-license-message__content\"},(0,a.createElement)(\"div\",{className:\"ultp-license-message__title ultp-license-message-congrats\"},e),(0,a.createElement)(\"div\",{className:\"ultp-license-message__text\"},t))),s=({licenseData:e,setLicenseData:t,setToastMessages:n})=>{const[r,o]=(0,a.useState)(!1),i=async()=>{try{o(!0);const e=await l();t(e.license_data),n({status:\"success\",messages:[e?.data||\"Some issues occured\"],state:!0}),o(!1)}catch(e){n({status:\"error\",messages:[e.message||\"Some issues occured\"],state:!0}),o(!1)}},l=async()=>{const e=`${ultp_dashboard_pannel.ajax}`,t=new URLSearchParams({action:\"edd_ultp_deactivate_license\",security:ultp_dashboard_pannel.nonce,deactivate:\"yes\"}),n=await fetch(e,{method:\"POST\",body:t,headers:{\"Content-Type\":\"application\u002Fx-www-form-urlencoded\"}});if(!n.ok)throw new Error(`HTTP error! Status: ${n.status}`);const a=await n.json();if(a.status)return a};return(0,a.createElement)(\"div\",{className:\"ultp-license__status\"},(0,a.createElement)(\"div\",{className:\"ultp-license__status-messages\"},(0,a.createElement)(\"div\",{className:\"ultp-license__status-message\"},(0,a.createElement)(\"div\",{className:\"ultp-license__status-message-label\"},__(\"License Type\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-license__status-message-value\"},e.licenseType)),(0,a.createElement)(\"div\",{className:\"ultp-license__status-message\"},(0,a.createElement)(\"div\",{className:\"ultp-license__status-message-label\"},__(\"Expire On\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-license__status-message-value\"},e.expiresAt),(e?.toExpired||\"expired\"===e.license)&&(0,a.createElement)(\"a\",{href:`https:\u002F\u002Faccount.wpxpo.com\u002Fcheckout\u002F?edd_license_key=${ultp_dashboard_pannel.license}&download_id=${e.itemId}&renew=1`,target:\"_blank\",rel:\"noreferrer\",className:\"ultp-license__renew-link\"},(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M2.86 6.553a.5.5 0 01.823-.482l3.02 2.745c.196.178.506.13.64-.098L9.64 4.779a.417.417 0 01.72 0l2.297 3.939a.417.417 0 00.64.098l3.02-2.745a.5.5 0 01.823.482l-1.99 8.63a.833.833 0 01-.813.646H5.663a.833.833 0 01-.812-.646L2.86 6.553z\",stroke:\"currentColor\",strokeWidth:\"1.5\"})),__(\"Renew License\",\"ultimate-post\"))),(0,a.createElement)(p,{licenseData:e})),(0,a.createElement)(\"div\",{className:\"ultp-activate-btn ultp_license_action_btn\",onClick:()=>i(),role:\"button\",tabIndex:-1,onKeyDown:e=>{\"Enter\"===e.key&&i()}},(0,a.createElement)(\"div\",null,__(\"Deactivate License\",\"ultimate-post\")),r&&(0,a.createElement)(\"span\",{className:\"ultp-activate-loading\"})))},p=({licenseData:e})=>{const[t,n]=(0,a.useState)(\"\"),r={1:__(\"5 Sites - Yearly\",\"ultimate-post\"),2:__(\"Unlimited Sites - Yearly\",\"ultimate-post\"),3:__(\"1 Site - Lifetime\",\"ultimate-post\"),4:__(\"5 Sites - Lifetime\",\"ultimate-post\"),5:__(\"Unlimited Sites - Lifetime\",\"ultimate-post\")},o={1:[1,2,3,4,5],7:[2,3,4,5],2:[4,5],4:[2,4,5],5:[5]}[e?.priceId];return o&&0!==o.length?(0,a.createElement)(\"div\",{className:\"ultp-license__upgrade-message\"},(0,a.createElement)(\"div\",{className:\"ultp-license__upgrade-message-title\"},(0,a.createElement)(\"label\",{htmlFor:\"ultp-license-select\"},__(\"Choose a upgrade plan\",\"ultimate-post\")),(0,a.createElement)(\"select\",{id:\"ultp-license-select\",value:t,onChange:e=>{n(e.target.value)}},o.map((e=>(0,a.createElement)(\"option\",{key:e,value:e},r[e]))))),(0,a.createElement)(\"a\",{className:\"ultp-license__upgrade-link\",href:`https:\u002F\u002Faccount.wpxpo.com\u002Fcheckout\u002F?edd_action=sl_license_upgrade&license_key=${ultp_dashboard_pannel.license}&upgrade_id=${t||o[0]}`,target:\"_blank\",rel:\"noreferrer\"},__(\"Upgrade Now\",\"ultimate-post\"))):null},c=({width:e=\"100%\",height:t=\"1rem\",borderRadius:n=\"4px\",style:r={}})=>(0,a.createElement)(\"div\",{className:\"ultp-custom-skeleton-loader\",style:{width:e,height:t,borderRadius:n,...r}}),d=[{question:__(\"Do I need the free version of the plugin on my site?\",\"ultimate-post\"),answer:__(\"Yes. You can use the free version of the plugin, which includes the free features of PostX. However, please note that to use the pro features, you need the free version of the plugin installed on your WordPress site.\",\"ultimate-post\")},{question:__(\"Where do I get my product license?\",\"ultimate-post\"),answer:__(\"You can copy the product license from the client dashboard. Once you copy it, paste the license key into the PostX License validation page.\",\"ultimate-post\")},{question:__(\"How do I get help to use PostX Pro?\",\"ultimate-post\"),hasMarkup:!0,answer:__(\"Please go to the support link: \u003Ca href='https:\u002F\u002Fwww.wpxpo.com\u002Fcontact\u002F.' target='_blank'>www.wpxpo.com\u002Fcontact\u003C\u002Fa>\",\"ultimate-post\")}],u=()=>(0,a.createElement)(\"div\",{className:\"ultp-license__faq\"},d.map(((e,t)=>(0,a.createElement)(\"div\",{key:t,className:\"ultp-license-faq__item\"},(0,a.createElement)(\"div\",{className:\"ultp-license-faq__question\"},e.question),e.hasMarkup?(0,a.createElement)(\"div\",{className:\"ultp-license-faq__answer\",dangerouslySetInnerHTML:{__html:e.answer}}):(0,a.createElement)(\"div\",{className:\"ultp-license-faq__answer\"},e.answer)))),(0,a.createElement)(\"div\",{className:\"ultp-license-faq-item\"},__(\"PostX is a product of WPXPO. The contact support team is ready to help you with any queries, including how to use the pro version of PostX.\",\"ultimate-post\")))},3701:(e,t,n)=>{\"use strict\";n.d(t,{I:()=>l});var a=n(7294),r=n(1383);n(7376);const{__}=wp.i18n,o={wholesale_x:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{fill:\"#FEAD01\",d:\"M22.288 5.44498 11.1095 7.77499c-.6634.13829-1.0892.78825-.9509 1.45173l2.33 11.17848c.1383.6635.7883 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7882.9509-1.4517l-2.33-11.1785c-.1383-.66347-.7882-1.08921-1.4517-.95092Zm3.1934 15.32522-11.1785 2.33c-.6635.1383-1.0892.7882-.9509 1.4517l2.33 11.1785c.1383.6635.7882 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7883.9509-1.4517l-2.33-11.1785c-.1383-.6635-.7883-1.0892-1.4517-.9509ZM37.6161 2.25064 26.4377 4.58065c-.6635.1383-1.0893.78826-.951 1.45173l2.33 11.17852c.1383.6634.7883 1.0892 1.4518.9509l11.1784-2.33c.6635-.1383 1.0893-.7883.951-1.4518l-2.33-11.17843c-.1383-.66348-.7883-1.08922-1.4518-.95093Zm3.1934 15.32716-11.1785 2.33c-.6635.1383-1.0892.7883-.9509 1.4517l2.33 11.1785c.1383.6635.7883 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7882.9509-1.4517l-2.33-11.1785c-.1383-.6635-.7882-1.0892-1.4517-.9509Z\"}),(0,a.createElement)(\"path\",{fill:\"#6C6CFF\",d:\"M11.4509 35.4957c-.2235-.0003-.4402-.0776-.6136-.2187-.1734-.1412-.293-.3377-.3386-.5566L4.40205 5.44687c-.0671-.32174-.25914-.60372-.53395-.784-.27481-.18029-.60992-.24415-.93177-.17757-.15961.03288-.31112.09709-.44576.18889-.13464.09181-.24976.20939-.33867.34596-.08986.13594-.15175.2884-.1821.4485-.03036.16011-.02855.32465.00531.48404l.47956 2.30076c.05267.25283.00277.51622-.13875.73225-.14152.21603-.36305.367-.61587.41971-.12518.0261-.25429.02728-.37992.00348-.12564-.0238-.24534-.07212-.352302-.1422-.106958-.07007-.199074-.16054-.271063-.26622-.071988-.10568-.122425-.22451-.14848-.3497L.0686777 6.35002c-.0868909-.41-.0913681-.83319-.0132214-1.24494.0781467-.41176.2373657-.80387.4684307-1.15352.228483-.35063.524233-.65249.870113-.8881.34589-.23562.73506-.40032 1.145-.48457.8274-.1712 1.68888-.00722 2.39554.45595.70665.46317 1.20075 1.18772 1.3739 2.01471L12.4051 34.3231c.0294.1417.0269.2883-.0074.4289s-.0996.2719-.1909.3842c-.0914.1122-.2067.2028-.3374.2649-.1307.0622-.2737.0944-.4185.0944v.0002Zm8.49 5.5912c-.2408-.0005-.4729-.0901-.6515-.2515-.1786-.1615-.291-.3834-.3156-.623-.0245-.2395.0404-.4796.1825-.674.1421-.1944.3511-.3293.5868-.3786l27.0841-5.6452c.2528-.0527.5162-.0028.7322.1387.216.1415.3669.3631.4196.6159.0527.2528.0028.5162-.1387.7322-.1415.216-.363.3669-.6158.4196l-27.0841 5.6452c-.0656.0136-.1325.0205-.1995.0207Z\"}),(0,a.createElement)(\"path\",{fill:\"#070C1A\",d:\"M12.8922 45.9671c-.8322-.0016-1.647-.2389-2.3499-.6845-.70286-.4456-1.26512-1.0812-1.62162-1.8332-.35651-.752-.49266-1.5896-.39269-2.4158.09996-.8262.43196-1.6072.95753-2.2525.52558-.6452 1.22318-1.1284 2.01208-1.3935.7889-.2651 1.6367-.3012 2.4453-.1043.8086.197 1.5448.619 2.1234 1.2172.5786.5981.9759 1.348 1.1458 2.1627.2383 1.1434.0126 2.3345-.6273 3.3115-.64.977-1.6418 1.6597-2.7852 1.898-.2984.0625-.6025.0941-.9074.0944Zm.014-6.8621c-.1701 0-.3398.0176-.5062.0525-.4757.099-.9113.3369-1.2518.6835-.3404.3467-.5704.7865-.6609 1.2638-.0905.4774-.0374.9708.1525 1.418.19.4472.5083.828.9147 1.0943.4064.2663.8826.4061 1.3684.4017.4859-.0044.9595-.1527 1.361-.4263.4015-.2735.7129-.66.8948-1.1105.1819-.4505.2261-.9449.127-1.4205-.1152-.5517-.4164-1.047-.8533-1.403-.4368-.3561-.9827-.5512-1.5462-.5528v-.0007Z\"})),wow_store:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{fill:\"#FF176B\",d:\"M33.4798 8.9711 48 0l-7.1908 32.9249-4.4393 5.9884H4.9711L0 32.9249l3.90751-17.9654 8.76299 2.9827-2.6127 11.9769h6.289l3.9307-17.9653h9.4335l-3.9307 17.9653h6.2891l4.578-20.948h-3.1676ZM9.98852 48.0005c1.66478 0 2.98268-1.3411 2.98268-2.9827s-1.3411-2.9826-2.98268-2.9826c-1.64162 0-2.98266 1.341-2.98266 2.9826 0 1.6416 1.34104 2.9827 2.98266 2.9827Zm15.67578 0c1.6416 0 2.9827-1.3411 2.9827-2.9827s-1.3411-2.9826-2.9827-2.9826-2.9827 1.341-2.9827 2.9826c0 1.6416 1.3411 2.9827 2.9827 2.9827Z\"})),wow_revenue:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{fill:\"#00A464\",d:\"M47.9999 47.9999H36L24 0h12l11.9999 47.9999Zm-12 0H24L12 15.96h12l11.9999 32.0399Zm-12 .0001H12L0 32.04h12L23.9999 48Z\"})),wow_optin:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"g\",{fill:\"#F97415\",clipPath:\"url(#optin_48_path)\"},(0,a.createElement)(\"path\",{d:\"M28.7992 24.0373c0-2.6419-2.1581-4.8-4.8-4.8-2.6418 0-4.8 2.1581-4.8 4.8 0 2.6419 2.1582 4.8 4.8 4.8 2.6419 0 4.8-2.1581 4.8-4.8Z\"}),(0,a.createElement)(\"path\",{d:\"M24 48.0372v-9.6c7.9256 0 14.4-6.4744 14.4-14.4S31.9256 9.63721 24 9.63721 9.6 16.1116 9.6 24.0372H0C0 10.7907 10.7535 0 24 0s24 10.7535 24 24-10.7535 24-24 24v.0372Z\"}),(0,a.createElement)(\"path\",{d:\"m19.2 28.8369-19.2 6.4 8.8186 3.9814L12.8 48.0369l6.4372-19.2H19.2Z\"})),(0,a.createElement)(\"defs\",null,(0,a.createElement)(\"clipPath\",{id:\"optin_48_path\"},(0,a.createElement)(\"path\",{fill:\"#fff\",d:\"M0 0h48v48H0z\"})))),wow_addon:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 32 32\"},(0,a.createElement)(\"rect\",{width:\"14.12\",height:\"14.12\",x:\"1\",y:\"16.88\",fill:\"#86A62C\",rx:\"3.53\"}),(0,a.createElement)(\"rect\",{width:\"14.12\",height:\"14.12\",x:\"16.88\",y:\"1\",fill:\"#86A62C\",rx:\"3.53\"}),(0,a.createElement)(\"path\",{fill:\"#86A62C\",fillRule:\"evenodd\",d:\"M1.38 2.93C1 3.68 1 4.67 1 6.65v2.82c0 1.98 0 2.97.38 3.72.34.66.88 1.2 1.55 1.54.75.39 1.74.39 3.72.39h2.82c1.98 0 2.97 0 3.72-.39.66-.34 1.2-.88 1.54-1.54.39-.75.39-1.74.39-3.72V6.65c0-1.98 0-2.97-.39-3.72a3.53 3.53 0 0 0-1.54-1.55C12.44 1 11.45 1 9.47 1H6.65c-1.98 0-2.97 0-3.72.38-.67.34-1.2.88-1.55 1.55Zm5.98 8.62 5.73-5.73-1.24-1.25-5.11 5.1-2.47-2.46-1.25 1.25 3.1 3.09c.34.34.9.34 1.24 0ZM16.88 22.53c0-1.98 0-2.97.39-3.72.34-.66.88-1.2 1.54-1.54.75-.39 1.74-.39 3.72-.39h2.82c1.98 0 2.97 0 3.72.39.67.34 1.2.88 1.55 1.54.38.75.38 1.74.38 3.72v2.82c0 1.98 0 2.97-.38 3.72-.34.67-.88 1.2-1.55 1.55-.75.38-1.74.38-3.72.38h-2.82c-1.98 0-2.97 0-3.72-.38a3.53 3.53 0 0 1-1.54-1.55c-.39-.75-.39-1.74-.39-3.72v-2.82Zm6.18.53v-3.09h1.76v3.09h3.1v1.76h-3.1v3.1h-1.76v-3.1h-3.09v-1.76h3.09Z\",clipRule:\"evenodd\"}))},i={wholesale_x:{title:\"WholesaleX\",subtitle:`WholesaleX \\n        ${__(\"is a B2B wholesale plugin featuring advanced wholesale pricing and customization features.\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fgetwholesalex.com\u002F\"},wow_store:{title:\"WowStore\",subtitle:`WowStore ${__(\"is a complete WooCommerce store builder featuring advanced options to improve sales!\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fwww.wpxpo.com\u002Fwowstore\u002F\"},wow_revenue:{title:\"WowRevenue\",subtitle:`WowRevenue ${__(\"boost sales and maximize revenue with the advanced discount campaigns of WowRevenue.\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fwww.wowrevenue.com\u002F\"},wow_optin:{title:\"WowOptin\",subtitle:`WowOptin ${__(\"generates actionable leads and boost sales with popups, banners, and floating bars using WowOptin.\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fwww.wowoptin.com\u002F\"},wow_addon:{title:\"WowAddons\",subtitle:`WowAddons ${__(\"extends the functionality of your WooCommerce store with additional features and options.\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fwww.wpxpo.com\u002Fproduct-addons-for-woocommerce\u002F\"}},l=()=>{const[e,t]=(0,a.useState)({}),[n,l]=(0,a.useState)(ultp_dashboard_pannel.products||{}),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(ultp_dashboard_pannel.products_active||{}),u=e=>{t((t=>({...t,[e]:!0})));const n=new FormData;n.append(\"action\",\"ultp_install_plugin\"),n.append(\"wpnonce\",ultp_dashboard_pannel.security),n.append(\"plugin\",e),fetch(ultp_dashboard_pannel.ajax,{method:\"POST\",body:n}).then((e=>e.json())).then((()=>{})).catch((()=>{})).finally((()=>{t((t=>({...t,[e]:!1}))),l((t=>({...t,[e]:!0}))),d((t=>({...t,[e]:!0})))}))},m=(0,r.t)();return(0,a.useEffect)((()=>{p(!0),setTimeout((()=>{m.current&&p(!1)}),1e3)}),[]),(0,a.createElement)(\"div\",{className:\"ultp-plugins-wrapper\"},(0,a.createElement)(\"div\",{className:\"ultp-plugin-items\"},Object.keys(i).map(((t,r)=>((t,r)=>{const l=o[t]||null;return(0,a.createElement)(\"div\",{key:r,className:\"ultp-plugin-item\"},(0,a.createElement)(\"div\",{className:\"ultp-plugin-item-title\"},(0,a.createElement)(\"div\",{className:\"ultp-product-icon\"},l),i[t].title),(0,a.createElement)(\"div\",{className:\"ultp-plugin-item-desc\"},i[t].subtitle),(0,a.createElement)(\"div\",{className:\"ultp-plugin-item-action\"},(0,a.createElement)(a.Fragment,null,c[t]?(0,a.createElement)(\"div\",{className:\"ultp-secondary-button ultp-activated-button\"},__(\"Activated\",\"ultimate-post\")):(0,a.createElement)(\"div\",{className:\"ultp-secondary-button ultp-plugin-active-btn\",onClick:()=>u(t),role:\"button\",tabIndex:-1,onKeyDown:e=>{\"Enter\"===e.key&&u(t)}},(0,a.createElement)(\"div\",null,n[t]?__(\"Activate\",\"ultimate-post\"):__(\"Install\",\"ultimate-post\")),e[t]&&(0,a.createElement)(\"span\",{className:\"ultp-plugin-item-loading\"}))),(0,a.createElement)(\"div\",{className:\"ultp-transparent-alter-button\",role:\"button\",tabIndex:-1,onClick:()=>window.open(i[t].pluginUrl,\"_blank\"),onKeyDown:e=>{\"Enter\"===e.key&&window.open(i[t].pluginUrl,\"_blank\")}},__(\"Plugin Details\",\"ultimate-post\"))))})(t,r)))))}},5957:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>s});var a=n(7294),r=n(356),o=n(4766),i=n(4482),l=n(8949);n(6680);const{__}=wp.i18n,s=e=>{const[t,n]=(0,a.useState)([]),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(1),[u,m]=(0,a.useState)(0),[f,h]=(0,a.useState)(\"\"),[g,v]=(0,a.useState)(0),[_,w]=(0,a.useState)(!1),[b,x]=(0,a.useState)(\"\"),[y,k]=(0,a.useState)([]),[E,C]=(0,a.useState)(\"\"),[S,M]=(0,a.useState)(!1),[L,N]=(0,a.useState)({state:!1,status:\"\"}),[Z,P]=(0,a.useState)(!1);(0,a.useEffect)((()=>(z(),document.addEventListener(\"mousedown\",B),()=>document.removeEventListener(\"mousedown\",B))),[]);const z=(t={})=>{A({action:\"dashborad\",data:Object.assign({},{type:\"saved_templates\",pages:c,pType:e.type},t)})},A=e=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002F\"+e.action,method:\"POST\",data:e.data}).then((t=>{if(t.success)switch(e.data.type){case\"saved_templates\":k(Array(t.data.length).fill(!1)),n(t.data),p(!(t.data.length>0)),h(t.new),m(t.found),v(t.pages),x(\"\"),w(!1),e.data.search&&d(1);break;case\"status\":case\"delete\":case\"duplicate\":case\"action_draft\":case\"action_delete\":case\"action_publish\":z(),w(!1),N({status:e.data.type.includes(\"delete\")?\"error\":\"success\",messages:[t.message],state:!0})}}))},B=e=>{e.target.parentNode.classList.contains(\"ultp-reserve-button\")||(C(\"\"),M(!1))};return(0,a.createElement)(\"div\",{className:`ultp-${\"ultp_templates\"==e.type?\"saved-template\":\"custom-font\"}-container`},L.state&&(0,a.createElement)(r.Z,{delay:2e3,toastMessages:L,setToastMessages:N}),f?(0,a.createElement)(a.Fragment,null,\"ultp_templates\"==e.type&&!ultp_dashboard_pannel.active&&t?.length>0?(0,a.createElement)(\"a\",{className:\"ultp-primary-button cursor\",onClick:()=>P(!0)},__(\"Add New\",\"ultimate-post\")):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"a\",{className:\"ultp-primary-button \",target:\"_blank\",href:f,rel:\"noreferrer\"},__(\"Add New\",\"ultimate-post\")))):(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:108,unit1:\"px\",size2:46,unit2:\"px\",br:4}}),(0,a.createElement)(\"div\",{className:\"tableCon\"},(0,a.createElement)(\"div\",{className:\"ultp-bulk-con ultp-dash-item-con\"},(0,a.createElement)(\"div\",null,(0,a.createElement)(\"select\",{value:b,onChange:e=>x(e.target.value)},(0,a.createElement)(\"option\",{value:\"\"},__(\"Bulk Action\",\"ultimate-post\")),(0,a.createElement)(\"option\",{value:\"publish\"},__(\"Publish\",\"ultimate-post\")),(0,a.createElement)(\"option\",{value:\"draft\"},__(\"Draft\",\"ultimate-post\")),(0,a.createElement)(\"option\",{value:\"delete\"},__(\"Delete\",\"ultimate-post\"))),(0,a.createElement)(\"a\",{className:\"ultp-primary-button cursor\",onClick:()=>{const e=y.filter((e=>Number.isInteger(e)));b&&e.length>0&&(\"delete\"==b?confirm(\"Are you sure you want to apply the action?\")&&A({action:\"dashborad\",data:{type:\"action_\"+b,ids:e}}):A({action:\"dashborad\",data:{type:\"action_\"+b,ids:e}}))}},__(\"Apply\",\"ultimate-post\"))),(0,a.createElement)(\"input\",{type:\"text\",placeholder:\"Search...\",onChange:e=>{z({search:e.target.value})}})),(0,a.createElement)(\"div\",{className:\"ultpTable\"},(0,a.createElement)(\"table\",{className:0!=t.length||s?\"\":\"skeletonOverflow\"},(0,a.createElement)(\"thead\",null,(0,a.createElement)(\"tr\",null,(0,a.createElement)(\"th\",null,(0,a.createElement)(\"input\",{type:\"checkbox\",checked:_,onChange:e=>{k(_?Array(t.length).fill(!1):t.map((e=>e.id))),w(!_)}})),(0,a.createElement)(a.Fragment,null,\"ultp_templates\"==e.type?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"th\",{className:\"title\"},__(\"Title\",\"ultimate-post\")),(0,a.createElement)(\"th\",null,__(\"Shortcode\",\"ultimate-post\"))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"th\",{className:\"title\"},__(\"Font Family\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontpreview\"},__(\"Preview\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"WOFF\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"WOFF2\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"TTF\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"SVG\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"EOT\",\"ultimate-post\"))),(0,a.createElement)(\"th\",{className:\"dateHead\"},__(\"Date\",\"ultimate-post\")),(0,a.createElement)(\"th\",null,__(\"Action\",\"ultimate-post\"))))),(0,a.createElement)(\"tbody\",null,t?.map(((t,n)=>(0,a.createElement)(\"tr\",{key:n},(0,a.createElement)(\"td\",null,(0,a.createElement)(\"input\",{type:\"checkbox\",checked:!!y[n],onChange:()=>{const e=[...y];e.splice(n,1,!y[n]&&t.id),k(e)}})),(t=>{let n=\"\",r={fontFamily:\"\",fontWeight:\"\"};if(\"ultp_templates\"!=e.type&&t?.font_settings?.length>0){const e=t.font_settings[0],a=[];e.woff&&a.push(`url(${e.woff}) format('woff')`),e.woff2&&a.push(`url(${e.woff2}) format('woff2')`),e.ttf&&a.push(`url(${e.ttf}) format('TrueType')`),e.svg&&a.push(`url(${e.svg}) format('svg')`),e.eot&&a.push(`url(${e.eot}) format('eot')`),n+=` @font-face {\\n                font-family: \"${t.title}\";\\n                font-weight: ${e.weight};\\n                font-display: auto;\\n                src: ${a.join(\", \")};\\n            } `,r={fontFamily:t.title,fontWeight:e.weight}}return(0,a.createElement)(a.Fragment,null,\"ultp_templates\"==e.type?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"td\",{className:\"title\"},(0,a.createElement)(\"a\",{href:t?.edit?.replace(\"&amp;\",\"&\"),target:\"_blank\",rel:\"noreferrer\"},t.title||\"Untitled\")),(0,a.createElement)(\"td\",null,(0,a.createElement)(\"span\",{className:\"shortCode\",onClick:e=>{(e=>{let t=!1;if(navigator.clipboard)t=navigator.clipboard.writeText(e.target.innerHTML);else{const n=document.createElement(\"input\");n.setAttribute(\"value\",e.target.innerHTML),document.body.appendChild(n),n.select(),t=document.execCommand(\"copy\"),document.body.removeChild(n)}if(t){const t=document.createElement(\"span\");t.innerText=\"Copied!\",e.target.appendChild(t),setTimeout((()=>{e.target.removeChild(t)}),800)}})(e)}},'[postx_template id=\"',t.id,'\"]'))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"td\",{className:\"title\"},(0,a.createElement)(\"a\",{href:t?.edit?.replace(\"&amp;\",\"&\"),target:\"_blank\",rel:\"noreferrer\"},t.title||\"Untitled\")),t.title&&(0,a.createElement)(\"style\",{type:\"text\u002Fcss\"},n),(0,a.createElement)(\"td\",{style:r},__(\"The quick brown fox jumps over the lazy dog.\",\"ultimate-post\")),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.woff?\"dashicons-yes\":\"dashicons-no-alt\")})),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.woff2?\"dashicons-yes\":\"dashicons-no-alt\")})),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.ttf?\"dashicons-yes\":\"dashicons-no-alt\")})),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.svg?\"dashicons-yes\":\"dashicons-no-alt\")})),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.eot?\"dashicons-yes\":\"dashicons-no-alt\")}))))})(t),(0,a.createElement)(\"td\",{className:\"typeDate\"},\"publish\"==t.status?\"Published\":t.status,\" \",(0,a.createElement)(\"br\",null),t.date),(0,a.createElement)(\"td\",null,(0,a.createElement)(\"span\",{className:\"actions ultp-reserve-button\",onClick:e=>{M(!S),C(t.id)}},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-ellipsis\"}),E==t.id&&S&&(0,a.createElement)(\"ul\",{className:\"ultp-dash-item-con actionPopUp ultp-reserve-button\"},(0,a.createElement)(\"li\",{className:\"ultp-reserve-button\"},(0,a.createElement)(\"a\",{target:\"_blank\",href:t?.edit?.replace(\"&amp;\",\"&\"),rel:\"noreferrer\"},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-edit-large\"}),__(\"Edit\",\"ultimate-post\"))),(0,a.createElement)(\"li\",{onClick:e=>{C(\"\"),M(!1),e.preventDefault(),confirm(\"Are you sure?\")&&A({action:\"template_action\",data:{type:\"status\",id:t.id,status:\"publish\"==t.status?\"draft\":\"publish\"}})}},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-open-folder\"}),__(\"Set to\",\"ultimate-post\"),\" \",\"draft\"==t.status?\"Publish\":\"Draft\"),(0,a.createElement)(\"li\",{onClick:e=>{C(\"\"),M(!1),e.preventDefault(),confirm(\"Are you sure you want to delete?\")&&A({action:\"template_action\",data:{type:\"delete\",id:t.id}})}},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-trash\"}),__(\"Delete\",\"ultimate-post\")),\"ultp_templates\"==e.type&&(0,a.createElement)(\"li\",{onClick:e=>{C(\"\"),M(!1),e.preventDefault(),confirm(\"Are you sure you want to duplicate this template?\")&&A({action:\"template_action\",data:{type:\"duplicate\",id:t.id}})}},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-admin-page\"}),__(\"Duplicate\",\"ultimate-post\")))))))),0==t.length&&s&&(0,a.createElement)(\"tr\",null,\"ultp_templates\"==e.type?(0,a.createElement)(\"td\",{colSpan:5},(0,a.createElement)(\"div\",{className:\"ultp_h2\"},__(\"No Data Found !!!\",\"ultimate-post\"))):(0,a.createElement)(\"td\",{colSpan:10},(0,a.createElement)(\"div\",{className:\"ultp_h2\"},__(\"No Data Found !!!\",\"ultimate-post\")))),0==t.length&&!s&&(0,a.createElement)(a.Fragment,null,Array(5).fill(1).map(((t,n)=>(0,a.createElement)(\"tr\",{key:n},(0,a.createElement)(\"td\",null,(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:22,unit1:\"px\",size2:20,unit2:\"px\",br:4}})),\"ultp_templates\"==e.type?(0,a.createElement)(a.Fragment,null,Array(4).fill(1).map(((e,t)=>(0,a.createElement)(\"td\",{key:t},(0,a.createElement)(l.Z,{type:\"title\",size:\"99\"}))))):(0,a.createElement)(a.Fragment,null,Array(9).fill(1).map(((e,t)=>(0,a.createElement)(\"td\",{key:t},(0,a.createElement)(l.Z,{type:\"title\",size:\"99\"})))))))))))),(0,a.createElement)(\"div\",{className:\"pageCon\"},(0,a.createElement)(\"div\",null,__(\"Page\",\"ultimate-post\"),\" \",g>0?c:g,\" \",__(\"of\",\"ultimate-post\"),\" \",g,\" [\",\" \",u,\" \",__(\"items\",\"ultimate-post\"),\" ]\"),g>0&&(0,a.createElement)(\"div\",{className:\"ultpPages\"},c>1&&(0,a.createElement)(\"span\",{onClick:()=>{const e=c-1;z({pages:e}),d(e)}},o.ZP.leftAngle2),(0,a.createElement)(\"span\",{className:\"currentPage\"},c),g>c&&(0,a.createElement)(\"span\",{onClick:()=>{const e=c+1;z({pages:e}),d(e)}},o.ZP.rightAngle2)))),Z&&(0,i.cs)({tags:\"menu_save_temp_pro\",func:e=>{P(e)},data:{icon:\"saved_template_lock.svg\",title:__(\"Create Unlimited Saved Templates with PostX Pro\",\"ultimate-post\"),description:__(\"You can create only one saved template with the free version of PostX. Please upgrade to a pro plan to create unlimited saved templates.\",\"ultimate-post\")}}))}},3554:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>d});var a=n(7294),r=n(1383),o=n(448),i=n(4766),l=n(8949),s=n(356),p=n(814),c=n(6488);const{__}=wp.i18n,d=e=>{const[t,n]=(0,a.useState)({templates:[],designs:[],reloadId:\"\",reload:!1,isTemplate:!0,error:!1,fetching:!1,loading:!1}),[d,u]=(0,a.useState)(\"\"),[m,f]=(0,a.useState)(\"all\"),[h,g]=(0,a.useState)(\"all\"),[v,_]=(0,a.useState)(\"all\"),[w,b]=(0,a.useState)([]),[x,y]=(0,a.useState)(!1),[k,E]=(0,a.useState)({state:!1,status:\"\"}),[C,S]=(0,a.useState)(\"3\"),[M,L]=(0,a.useState)(\"\"),[N,Z]=(0,a.useState)([]),{loading:P,fetching:z}=t,A=(0,r.t)(),B=async()=>{n((e=>({...e,loading:!0}))),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ffetch_premade_data\",method:\"POST\",data:{type:\"starter_lists\"}}).then((e=>{if(e.success&&A.current&&e.data){const t=JSON.parse(e.data);Z(t),n((e=>({...e,loading:!1})))}}))},H=[{value:\"all\",label:__(\"All Categories\",\"ultimate-post\")},{value:\"news\",label:__(\"News\",\"ultimate-post\")},{value:\"magazine\",label:__(\"Magazine\",\"ultimate-post\")},{value:\"blog\",label:__(\"Blog\",\"ultimate-post\")},{value:\"sports\",label:__(\"Sports\",\"ultimate-post\")},{value:\"fashion\",label:__(\"Fashion\",\"ultimate-post\")},{value:\"tech\",label:__(\"Tech\",\"ultimate-post\")},{value:\"travel\",label:__(\"Travel\",\"ultimate-post\")},{value:\"food\",label:__(\"Food\",\"ultimate-post\")},{value:\"movie\",label:__(\"Movie\",\"ultimate-post\")},{value:\"health\",label:__(\"Health\",\"ultimate-post\")},{value:\"gaming\",label:__(\"Gaming\",\"ultimate-post\")},{value:\"nft\",label:__(\"NFT\",\"ultimate-post\")}];(0,a.useEffect)((()=>{T(\"\",\"\",\"fetchData\"),B()}),[]);const T=(e,t=\"\",n=\"\")=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fpremade_wishlist_save\",method:\"POST\",data:{id:e,action:t,type:n}}).then((e=>{e.success&&A.current&&(b(Array.isArray(e.wishListArr)?e.wishListArr:Object.values(e.wishListArr||{})),\"fetchData\"!=n&&E({status:\"success\",messages:[e.message],state:!0}))}))};if(M){document.querySelector(\"#adminmenumain\").style=\"display: none;\",document.querySelector(\".ultp-settings-container\").style=\"min-height: unset;\";const e=N.filter((e=>e.live==M))[0];return(0,a.createElement)(p.Z,{_val:e,setLiveUrl:L,liveUrl:M})}document.querySelector(\"#adminmenumain\").style=\"\",document.querySelector(\".ultp-settings-container\").style=\"\";let R=(0,o.cC)(w.join(\"\"),[]);R&&\"object\"==typeof R&&!Array.isArray(R)&&(R=Object.keys(R).sort(((e,t)=>e-t)).map((e=>R[e])));const O=N.map((e=>e.ID)).sort(((e,t)=>t-e)).slice(0,3);return(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-templatekit-wrap\"},k.state&&(0,a.createElement)(s.Z,{delay:2e3,toastMessages:k,setToastMessages:E}),(0,a.createElement)(\"div\",{className:\"ultp-templatekit-list-container \"},(0,a.createElement)(c.Z,{changeStates:(e,t)=>{\"freePro\"==e?_(t):\"search\"==e?u(t):\"column\"==e?S(t):\"wishlist\"==e?y(t):\"trend\"==e?(f(t),\"latest\"==t||\"all\"==t?N.sort(((e,t)=>t.ID-e.ID)):\"popular\"==t&&N[0]&&N[0].hit&&N.sort(((e,t)=>t.hit-e.hit))):\"filter\"==e&&g(t)},useState:a.useState,useEffect:a.useEffect,useRef:a.useRef,column:C,showWishList:x,_fetchFile:()=>{n((e=>({...e,fetching:!0}))),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ffetch_premade_data\",method:\"POST\",data:{type:\"fetch_all_data\"}}).then((e=>{e.success&&A.current&&(B(),n((e=>({...e,fetching:!1}))),E({status:\"success\",messages:[e.message],state:!0}))}))},fetching:z,searchQuery:d,fields:{filter:!0,trend:!0,freePro:!0},fieldOptions:{filterArr:H,trendArr:[],freeProArr:[]},fieldValue:{filter:h,trend:m,freePro:v}}),N.length>0?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-premade-grid ultp-templatekit-col\"+C},N.map((e=>e.title?.toLowerCase().includes(d.toLowerCase())&&(\"all\"==h||\"all\"!=h&&(h==e.category||(Array.isArray(e.parent_cat)?e.parent_cat:Object.values(e.parent_cat||{})).includes(h)))&&(\"all\"==v||\"pro\"==v&&e.pro||\"free\"==v&&!e.pro)&&(!x||x&&R?.includes(e.ID))&&(0,a.createElement)(\"div\",{key:e.ID,className:\"ultp-item-wrapper ultp-starter-group \"},(0,a.createElement)(\"div\",{className:\"ultp-item-list\"},(0,a.createElement)(\"div\",{className:\"ultp-item-list-overlay\"},(0,a.createElement)(\"a\",{className:\"ultp-templatekit-img bg-image-aspect\",href:\"#\",style:{backgroundImage:`url(https:\u002F\u002Fpostxkit.wpxpo.com\u002F${e.live}\u002Fwp-content\u002Fuploads\u002Fsites\u002F${e.ID}\u002Fpostx_importer_img\u002Fpages\u002Fhome.jpg)`}}),(0,a.createElement)(\"div\",{className:\"ultp-list-dark-overlay\"},!ultp_dashboard_pannel.active&&(0,a.createElement)(a.Fragment,null,e.pro?(0,a.createElement)(\"span\",{className:\"ultp-templatekit-premium-btn\"},__(\"Pro\",\"ultimate-post\")):(0,a.createElement)(\"span\",{className:\"ultp-templatekit-premium-btn ultp-templatekit-premium-free-btn\"},__(\"Free\",\"ultimate-post\"))),(0,a.createElement)(\"a\",{className:\"ultp-overlay-view ultp-dashboverlay\",onClick:()=>L(e.live)},i.ZP.eye,__(\"Live Preview\",\"ultimate-post\"))),e.pro&&(0,a.createElement)(\"div\",{className:\"ultp-list-info-tag-pro\"},(0,a.createElement)(\"span\",null,\"PRO\"))),(0,a.createElement)(\"div\",{className:\"ultp-item-list-info\"},(0,a.createElement)(\"div\",{className:\"ultp-list-info\",onClick:()=>L(e.live)},(0,a.createElement)(\"div\",{className:\"ultp-list-info-title\"},e.title,O.includes(e.ID)&&(0,a.createElement)(\"div\",{className:\"ultp-list-info-tag-new\"},\"NEW\")),(0,a.createElement)(\"div\",{className:\"ultp-list-info-count\"},e.templates?.length&&e.templates?.length+\" templates\")),(0,a.createElement)(\"span\",{className:\"ultp-action-btn\"},(0,a.createElement)(\"span\",{className:\"ultp-premade-wishlist\",onClick:()=>{T(e.ID,R?.includes(e.ID)?\"remove\":\"\")}},i.ZP[R?.includes(e.ID)?\"love_solid\":\"love_line\"]))))))))):P?(0,a.createElement)(\"div\",{className:\"ultp-premade-grid skeletonOverflow ultp-templatekit-col\"+C},Array(25).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{key:t,className:\"ultp-item-list\"},(0,a.createElement)(\"div\",{className:\"ultp-item-list-overlay\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:440,unit2:\"px\"}})),(0,a.createElement)(\"div\",{className:\"ultp-item-list-info\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"%\",size2:25,unit2:\"px\",br:2}}),(0,a.createElement)(\"span\",{className:\"ultp-action-btn\"},(0,a.createElement)(\"span\",{className:\"ultp-premade-wishlist\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:30,unit1:\"px\",size2:25,unit2:\"px\",br:2}})))))))):(0,a.createElement)(\"span\",{className:\"ultp-image-rotate\"},__(\"No Data Available…\",\"ultimate-post\")))))}},4371:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>i});var a=n(7294),r=n(448),o=n(5404);const{__}=wp.i18n,i=({ultpPresetColors:e,currentPresetColors:t,setCurrentPresetColors:n,setCurrentPostxGlobal:i,currentPostxGlobal:l})=>{const s={...e,rootCSS:(0,r.AJ)(\"styleCss\",e)},[p,c]=(0,a.useState)({...t,...s}),[d,u]=(0,a.useState)(\"\"),[m,f]=(0,a.useState)(!1),h=(0,r.AJ)(\"colorStacks\"),g=(0,r.AJ)(\"presetColorKeys\");(0,a.useEffect)((()=>{(0,r.x2)(\"get\",\"ultpPresetColors\",\"\",(e=>{if(e.data){const t={...e.data,...p};n({...t,rootCSS:(0,r.AJ)(\"styleCss\",t)})}}))}),[]);const v=(e,a=\"\")=>{let o={...t,...e};\"darkhandle\"!=a&&m&&(o=_(o));const i=((e={},t=\"\")=>{const n=(0,r.AJ)(\"styleCss\",e),a=document.querySelector(\"#ultp-starter-preview\");if(a.contentWindow){const e={type:\"replaceColorRoot\",id:\"#ultp-preset-colors-style-inline-css\",styleCss:n,dlMode:\"darkhandle\"==t?m?\"ultpLight\":\"ultpDark\":m?\"ultpDark\":\"ultpLight\"};a.contentWindow.postMessage(e,\"*\")}return n})(o,a);c(o),n({...o,rootCSS:i})},_=(e={})=>({...e,Base_1_color:e.Contrast_1_color,Base_2_color:e.Contrast_2_color,Base_3_color:e.Contrast_3_color,Contrast_1_color:e.Base_1_color,Contrast_2_color:e.Base_2_color,Contrast_3_color:e.Base_3_color});return(0,a.createElement)(\"div\",{className:\"ultp_starter_preset_container\"},(0,a.createElement)(\"div\",{className:\"ultp_starter_dark_container\"},(0,a.createElement)(\"div\",{onClick:()=>(()=>{const e=_(t);document.querySelector(\".ultp-dl-container .ultp-dl-svg-con\").style=`transform: translateX(${m?\"\":\"calc( 100% + 71px )\"}); transition: transform .4s ease`,document.querySelector(\".ultp-dl-container .ultp-dl-svg-title\").style=`transform: translateX(${m?\"\":\"calc( -100% + 50px )\"}); transition: transform .4s ease`,setTimeout((()=>{f(!m),i({...l,enableDark:!m}),v(e,\"darkhandle\")}),400)})(),className:\" ultp-dl-container \"},(0,a.createElement)(\"div\",{className:\"ultp-dl-svg-con \"+(m?\"dark\":\"\")},(0,a.createElement)(\"div\",{className:\"ultp-dl-svg\"},o.Z[m?\"moon\":\"sun\"])),(0,a.createElement)(\"div\",{className:\"ultp-dl-svg-title\"},m?\"Dark Mode\":\"Light Mode\"))),(0,a.createElement)(\"div\",{className:\"ultp_starter_reset_container\"},(0,a.createElement)(\"div\",{className:\"packs_title\"},__(\"Change Color Palette\",\"ultimate-post\")),d&&(0,a.createElement)(\"span\",{className:\"dashicons dashicons-image-rotate\",onClick:()=>{u(\"\"),v(s)}})),(0,a.createElement)(\"ul\",{className:\"ultp-color-group\"},h.map(((e,t)=>(0,a.createElement)(\"li\",{className:\"ultp_starter_preset_list \"+(d==t+1?\"active\":\"\"),key:t,onClick:()=>{const n={};u(t+1),g.forEach(((t,a)=>{n[t]=e[a]})),v(n)}},e.map(((e,t)=>![1,2,6,8,9].includes(t+1)&&(0,a.createElement)(\"span\",{key:t,className:\"ultp-global-color\",style:{backgroundColor:e}}))))))))}},5066:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294),r=n(448);const{__}=wp.i18n,o=({ultpPresetTypos:e,currentPresetTypos:t,setCurrentPresetTypos:n})=>{const o={...e,presetTypoCSS:(0,r.AJ)(\"typoCSS\",e,!0)},[i,l]=(0,a.useState)({...t,...o}),[s,p]=(0,a.useState)(\"\"),c=(0,r.AJ)(\"presetTypoKeys\"),d=(0,r.AJ)(\"typoStacks\");(0,a.useEffect)((()=>{(0,r.x2)(\"get\",\"ultpPresetTypos\",\"\",(e=>{if(e.data){const t={...e.data,...i};l({...t,presetTypoCSS:(0,r.AJ)(\"typoCSS\",t,!0)}),n({...t,presetTypoCSS:(0,r.AJ)(\"typoCSS\",t,!0)})}}))}),[]);const u=e=>{const a={...t,...e},o=((e={})=>{const t=(0,r.AJ)(\"typoCSS\",e,!0),n=document.querySelector(\"#ultp-starter-preview\");if(n.contentWindow){const e={type:\"replaceColorRoot\",id:\"#ultp-preset-typo-style-inline-css\",styleCss:t};n.contentWindow.postMessage(e,\"*\")}return t})(a);l(a),n({...a,presetTypoCSS:o})};return(0,a.createElement)(\"div\",{className:\"ultp_starter_preset_container\"},(0,a.createElement)(\"div\",{className:\"ultp_starter_reset_container\"},(0,a.createElement)(\"div\",{className:\"packs_title\"},__(\"Change Font & Typography\",\"ultimate-post\")),s&&(0,a.createElement)(\"span\",{className:\"dashicons dashicons-image-rotate\",onClick:()=>{p(\"\"),u(o)}})),(0,a.createElement)(\"ul\",{className:\"ultp-typo-group\"},d.map(((e,n)=>(0,a.createElement)(\"li\",{title:`${e[0].family}\u002F${e[1].family}`,className:\"ultp_starter_preset_typo_list \"+(s==n+1?\"active\":\"\"),key:n,onClick:()=>{const a={};p(n+1),c.forEach(((n,r)=>{a[n]={...t[n]},a[n].family=e[r].family,a[n].type=e[r].type,a[n].weight=e[r].weight})),u(a)}},e.map(((e,t)=>(0,a.createElement)(\"span\",{key:t},(0,a.createElement)(\"style\",null,(0,r.AJ)(\"font_load\",e,!0)),(0,a.createElement)(\"span\",{key:t,className:\"\",style:{fontFamily:`${e.family}, ${e.type}`}},0==t?\"A\":\"a\")))))))))}},5324:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294),r=n(4766);const o=e=>{const{useState:t,useEffect:n,useRef:o,onChange:i,options:l,value:s,contentWH:p}=e,[c,d]=t(!1),u=o(null),m=e=>{u?.current&&!u?.current.contains(e.target)?d(!1):u?.current&&u?.current.contains(e.target)&&!e.target.classList?.contains(\"ultp-reserve-button\")&&d(!u?.current.classList?.contains(\"open\"))};n((()=>(document.addEventListener(\"mousedown\",m),()=>document.removeEventListener(\"mousedown\",m))),[]);const f=l?.find((e=>e.value===s));return(0,a.createElement)(\"div\",{ref:u,className:\"starter_filter_select \"+(c?\"open\":\"\")},(0,a.createElement)(\"div\",{className:\"starter_filter_selected\"},f?f.label:\"Select an option\",r.ZP.collapse_bottom_line),c&&(0,a.createElement)(\"ul\",{className:\"starter_filter_select_options\",style:{minWidth:p?.width||\"100px\",maxHeight:p?.height||\"160px\"}},l.map(((e,t)=>(0,a.createElement)(\"li\",{className:\"ultp-reserve-button starter_filter_select_option\",key:t,onClick:()=>(e=>{d(!1),i(e.value)})(e)},e.label)))))}},814:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>c});var a=n(7294),r=n(448),o=n(4766),i=n(4482),l=n(8949),s=n(4371),p=n(5066);n(4602);const{__}=wp.i18n,c=e=>{const{_val:t,setLiveUrl:n,liveUrl:c}=e,[d,u]=(0,a.useState)({}),[m,f]=(0,a.useState)({}),[h,g]=(0,a.useState)({}),v={deletePrevious:\"yes\",installPlugin:\"yes\",user_email:ultp_dashboard_pannel.user_email,get_newsletter:\"yes\",importDummy:\"yes\"},[_,w]=(0,a.useState)(!1),[b,x]=(0,a.useState)(!1),[y,k]=(0,a.useState)(!1),[E,C]=(0,a.useState)([]),[S,M]=(0,a.useState)(v),[L,N]=(0,a.useState)(0),[Z,P]=(0,a.useState)({type:\"desktop\",width:\"100%\"}),[z,A]=(0,a.useState)(!1),[B,H]=(0,a.useState)(!0),[T,R]=(0,a.useState)(!1),[O,j]=(0,a.useState)({plugin:!1,content:!1}),[V,F]=(0,a.useState)(!1),[W,D]=(0,a.useState)({}),[I,U]=(0,a.useState)({}),[$,G]=(0,a.useState)([]);(0,a.useEffect)((()=>{window.fetch(\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+t.live+\"\u002Fwp-json\u002Fimporter\u002Fglobal_settings\",{method:\"GET\"}).then((e=>e.text())).then((e=>{const t=(0,r.cC)(e,{});t.success&&(((e={})=>{wp.apiFetch({path:\"\u002Fultp\u002Fv1\u002Faction_option\",method:\"POST\",data:{type:\"get\"}}).then((t=>{if(t.success){let n={...t.data,...e};n={...n,globalCSS:(0,r.AJ)(\"globalCSS\",n)},g(n)}}))})(t.postx_global),D(t.ultpPresetColors),U(t.ultpPresetTypos),G(t.plugins))})).catch((e=>{}))}),[]);const q=(e,t,n,r=\"\")=>(0,a.createElement)(\"div\",{className:\"input_container\"},\"checkbox\"==t&&(0,a.createElement)(\"input\",{id:e,className:r,name:e,type:t,defaultChecked:!(!S[e]||\"yes\"!=S[e]),onChange:t=>{const n=t.target.checked?\"yes\":\"no\";M({...S,[e]:n})}}),\"checkbox\"!=t&&(0,a.createElement)(\"input\",{id:e,className:r,name:e,type:t,defaultValue:S[e]||\"\",onChange:t=>{const n=t.target.value;M({...S,[e]:n})}}),n&&(0,a.createElement)(\"span\",null,(0,a.createElement)(\"span\",{className:\"ultp-info\"},n)));return(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\" ultp_starter_packs_demo theme-install-overlay wp-full-overlay expanded \"+(B?\"active\":\"inactive\"),style:{display:\"block\"}},(0,a.createElement)(\"div\",{className:\"wp-full-overlay-sidebar \"},(0,a.createElement)(\"div\",{className:\"wp-full-overlay-header\"},(0,a.createElement)(\"div\",{className:\"ultp_starter_packs_demo_header\"},(0,a.createElement)(\"div\",{className:\"packs_title\"},t.title,(0,a.createElement)(\"span\",null,t.category)),(0,a.createElement)(\"button\",{onClick:()=>n(\"\"),className:\"close-full-overlay\"})),(0,a.createElement)(\"div\",{className:\"ultp-starter-collapse \"+(B?\"active\":\"inactive\"),onClick:()=>{H(!B)}},o.ZP.collapse_bottom_line)),Array(6).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{key:t,className:\"ultp-addon-item ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-contents\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-name\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"px\",size2:50,unit2:\"px\",br:18}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:190,unit1:\"px\",size2:28,unit2:\"px\",br:4}})),(0,a.createElement)(\"div\",{className:\"ultp-description\"},(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:100,unit1:\"%\",size2:14,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:70,unit1:\"%\",size2:14,unit2:\"px\",br:2}}))),(0,a.createElement)(\"div\",{className:\"ultp-addon-item-actions ultp-dash-control-options\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"px\",size2:20,unit2:\"px\",br:8}}),(0,a.createElement)(\"div\",{className:\"ultp-docs-action\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:22,unit2:\"px\",br:2}})))))),(0,a.createElement)(\"div\",{className:\"wp-full-overlay-sidebar-content\"},W.hasOwnProperty(\"Base_1_color\")?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(s.Z,{ultpPresetColors:W,currentPresetColors:d,setCurrentPresetColors:u,currentPostxGlobal:h,setCurrentPostxGlobal:g})):(0,a.createElement)(\"div\",{className:\"skeletonOverflow\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:140,unit1:\"px\",size2:40,unit2:\"px\",br:40}}),(0,a.createElement)(\"div\",{className:\"skeletonOverflow_colors\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:140,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(\"div\",{className:\"demos-color\"},Array(10).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:\"custom_size\",c_s:{size1:100,unit1:\"px\",size2:30,unit2:\"px\",br:6}})))))),I.hasOwnProperty(\"Body_and_Others_typo\")?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(p.Z,{ultpPresetTypos:I,currentPresetTypos:m,setCurrentPresetTypos:f})):(0,a.createElement)(\"div\",{className:\"skeletonOverflow\"},(0,a.createElement)(\"div\",{className:\"skeletonOverflow_colors\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:140,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(\"div\",{className:\"demos-color\"},Array(10).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:\"custom_size\",c_s:{size1:100,unit1:\"px\",size2:30,unit2:\"px\",br:6}}))))))),(0,a.createElement)(\"div\",{className:\"wp-full-overlay-footer\"},(0,a.createElement)(\"div\",{className:\"ultp_starter_import_options\"},(0,a.createElement)(\"div\",{className:\"option_buttons\"},t.pro&&!ultp_dashboard_pannel.active?(0,i.hx)(`https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-starter&utm_medium=${t.live}-upgrade-pro&utm_campaign=postx-dashboard#pricing`,\"\"):(0,a.createElement)(\"a\",{className:\"ultp-starter-button\",onClick:()=>{w(!0)}},__(\"Import Site\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"ultp-starter-packs-device-container\"},(0,a.createElement)(\"span\",{onClick:()=>P({type:\"desktop\",width:\"100%\"}),className:\"ultp-starter-packs-device \"+(\"desktop\"==Z.type?\"d-active\":\"\")},o.ZP.desktop),(0,a.createElement)(\"span\",{onClick:()=>P({type:\"tablet\",width:(h.breakpointSm||\"990\")+\"px\"}),className:\"ultp-starter-packs-device \"+(\"tablet\"==Z.type?\"d-active\":\"\")},o.ZP.tablet),(0,a.createElement)(\"span\",{onClick:()=>P({type:\"mobile\",width:(h.breakpointXs||\"767\")+\"px\"}),className:\"ultp-starter-packs-device \"+(\"mobile\"==Z.type?\"d-active\":\"\")},o.ZP.mobile))))),(0,a.createElement)(\"div\",{className:\"wp-full-overlay-main\"},!T&&(0,a.createElement)(\"div\",{className:\"iframe_loader\"},(0,a.createElement)(\"div\",{className:\"iframe_container\"},(0,a.createElement)(\"div\",{className:\"iframe_header\"},(0,a.createElement)(\"div\",{className:\"iframe_header_top\"},(0,a.createElement)(\"div\",{className:\"header_top_left\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:60,unit2:\"px\",br:60}})),(0,a.createElement)(\"div\",{className:\"header_top_right\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:90,unit1:\"px\",size2:30,unit2:\"px\",br:4}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:90,unit1:\"px\",size2:30,unit2:\"px\",br:4}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:90,unit1:\"px\",size2:30,unit2:\"px\",br:4}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:90,unit1:\"px\",size2:30,unit2:\"px\",br:4}}),Array(3).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:\"custom_size\",c_s:{size1:30,unit1:\"px\",size2:30,unit2:\"px\",br:30}})))))),(0,a.createElement)(\"div\",{className:\"iframe_body_content\"},(0,a.createElement)(\"div\",{className:\"iframe_body_slider\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:300,unit2:\"px\",br:2}})),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:190,unit1:\"px\",size2:36,unit2:\"px\",br:2}}),(0,a.createElement)(\"div\",{className:\"iframe_body\"},(0,a.createElement)(\"div\",{className:\"iframe_body_left\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:300,unit2:\"px\",br:2}})),(0,a.createElement)(\"div\",{className:\"iframe_body_right\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:140,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:140,unit2:\"px\",br:2}})))))),(0,a.createElement)(\"iframe\",{className:`${Z.type}View`,onLoad:()=>{R(!0),(()=>{const e=document.querySelector(\"#ultp-starter-preview\");if(d.hasOwnProperty(\"Base_1_color\")){const t=(0,r.AJ)(\"styleCss\",d);if(e.contentWindow){const n={type:\"replaceColorRoot\",id:\"#ultp-preset-colors-style-inline-css\",styleCss:t,dlMode:h.enableDark?\"ultpDark\":\"ultpLight\"};e.contentWindow.postMessage(n,\"*\")}}if(m.hasOwnProperty(\"Body_and_Others_typo\")){const t=(0,r.AJ)(\"typoCSS\",m,!0);if(e.contentWindow){const n={type:\"replaceColorRoot\",id:\"#ultp-preset-typo-style-inline-css\",styleCss:t};e.contentWindow.postMessage(n,\"*\")}}})()},style:{display:\"block\",margin:\"0 auto\",maxWidth:Z.width},id:\"ultp-starter-preview\",src:\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+c}))),_&&(0,a.createElement)(\"div\",{className:\"ultp-stater-container-settings-overlay\"},(0,a.createElement)(\"div\",{className:\"ultp-stater-settings-container\"},(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"ultp-popup-stater\"},b?(0,a.createElement)(a.Fragment,null,y?(0,a.createElement)(\"div\",{className:\"ultp_processing_import\"},(0,a.createElement)(\"div\",{className:\"stater_title\"},__(`Started building ${t.title} website`,\"ultimate-post\")),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"ultp_import_builders ultp-info\"},__(\"The import process can take a few seconds depending on the size of the kit you are importing and speed of the connection.\",\"ultimate-post\"),\" \",(0,a.createElement)(\"br\",null),(O.plugin||O.content)&&(0,a.createElement)(\"div\",{className:\"progress\"},(0,a.createElement)(\"div\",null,(0,a.createElement)(\"strong\",null,\"Progress:\"),\" \",O.plugin?\"Plugin Installation is\":O.content?\"Page\u002FPosts\u002FMedia Importing is\":\"Site Importing\",\" \",\"on progress..\")))),(0,a.createElement)(\"div\",{className:\"ultp_processing_show\"},(0,a.createElement)(\"div\",{className:\"ultp-importer-loader\"},(0,a.createElement)(\"div\",{id:\"ultp-importer-loader-bar\",style:{width:L+\"%\"}}),(0,a.createElement)(\"div\",{id:\"ultp-importer-loader-percentage\",style:{color:L>52?\"#fff\":\"#000\"}},L+\"%\"))),(0,a.createElement)(\"div\",{className:\"ultp_import_notice\"},(0,a.createElement)(\"span\",null,__(\"Note:\",\"ultimate-post\")),__(\"Please do not close this browser window until import is completed.\",\"ultimate-post\"))):(0,a.createElement)(\"div\",{className:\"ultp_successful_import\"},(0,a.createElement)(\"div\",{className:\"stater_title\"},t.title,__(` Imported ${V?\"Failed\":\"Successfully\"} `,\"ultimate-post\")),(0,a.createElement)(\"div\",null,V?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp_import_builders\"},__(\"Due to resquest timeout this import is failed\",\"ultimate-post\"),(0,a.createElement)(\"a\",{className:\"cursor\",onClick:()=>{window.location.reload()}},__(\"Refresh\",\"ultimate-post\")),__(\"page and try again\",\"ultimate-post\"))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp_import_builders\"},__(\"Navigate to\",\"ultimate-post\"),(0,a.createElement)(\"a\",{className:\"cursor\",onClick:()=>{window.location.href=ultp_dashboard_pannel.builder_url,window.location.reload()}},__(\"Site Builder to edit\",\"ultimate-post\")),__(\"your Archive, Post, Default Page and other templates.\",\"ultimate-post\")),(0,a.createElement)(\"a\",{className:\"ultp-primary-button\",href:ultp_dashboard_pannel.home_url},__(\"View Your Website\",\"ultimate-post\")))))):(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"ultp-info ultp-info-desc\"},\" \",__(\"Import the entire site including posts, images, pages, content and plugins.\",\"ultimate-post\")),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"stater_title\"},__(\"Import Settings\",\"ultimate-post\")),q(\"importDummy\",\"checkbox\",__(\"Import dummy post, taxonomy and featured images\",\"ultimate-post\")),q(\"deletePrevious\",\"checkbox\",__(\"Delete Previously imported sites\",\"ultimate-post\")),q(\"installPlugin\",\"checkbox\",__(\"Install required plugins\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"starter_page_impports\"},(0,a.createElement)(\"div\",{className:\"stater_title\"},__(\"Template\u002FPages\",\"ultimate-post\")),t?.templates?.map(((e,t)=>(!z&&t\u003C3||z)&&(0,a.createElement)(\"div\",{key:t,className:\"input_container\"},(0,a.createElement)(\"input\",{type:\"checkbox\",defaultChecked:!E.includes(e.name),onChange:t=>{t.target.checked&&E.includes(e.name)?C(E.filter((t=>t!==e.name))):t.target.checked||E.includes(e.name)||C([...E,e.name])}}),(0,a.createElement)(\"span\",null,(0,a.createElement)(\"span\",{className:\"ultp-info\"},e.name))))),t.templates.length>3&&(0,a.createElement)(\"div\",{className:\"cursor\",onClick:()=>{A(!z)}},\"Show \"+(z?\"less\":\"more\"),\" \",o.ZP.videoplay)),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"stater_title\"},__(\"Subscribe\",\"ultimate-post\")),(0,a.createElement)(\"span\",null,__(\"Stay up to date with the latest started templates and special offers\",\"ultimate-post\")),q(\"user_email\",\"email\",\"\",\"email_box\"),q(\"get_newsletter\",\"checkbox\",__(\"Stay updated with exciting features and news.\"),\"get_newsletter\")))),!b&&(0,a.createElement)(\"div\",{className:\"starter_import \"},(0,a.createElement)(\"a\",{className:\"ultp-primary-button\",onClick:()=>(async e=>{x(!0);let n,a=0;async function o(e,t,r){n=setInterval((()=>{e>=t?clearInterval(n):(e++,a++,N(e))}),r)}if(o(a,70,\"yes\"==S.importDummy?800:400),e){x(!0),k(!0);const i=$;if((0,r.x2)(\"set\",\"ultpPresetColors\",d),(0,r.x2)(\"set\",\"ultpPresetTypos\",m),wp.apiFetch({method:\"POST\",path:\"\u002Fultp\u002Fv1\u002Faction_option\",data:{type:\"set\",data:h}}),\"yes\"==S.deletePrevious||\"yes\"==S.get_newsletter){const e=new Promise(((e,t)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv3\u002Fdeletepost_getnewsletters\",method:\"POST\",data:{deletePrevious:S.deletePrevious,get_newsletter:S.get_newsletter}}).then((t=>{e(\"responsed\")}))}));await e}if(\"yes\"==S.importDummy){const t=new Promise(((t,n)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv3\u002Fstarter_dummy_post\",method:\"POST\",data:{api_endpoint:e,importDummy:S.importDummy}}).then((e=>{t(\"responsed\")})).catch((e=>{console.log(e),t(\"responsed\")}))}));await t}if(\"yes\"==S?.installPlugin){j({...O,plugin:!0});const e=i.map(((e,t)=>new Promise(((t,n)=>{jQuery.ajax({type:\"POST\",url:ultp_dashboard_pannel.ajax,data:{action:\"install_required_plugin\",wpnonce:ultp_dashboard_pannel.security,plugin:JSON.stringify(e)}}).done((function(e){t(\"responsed\")}))}))));await Promise.all(e),j({...O,plugin:!1})}clearInterval(n),o(a+1,80,500);const l=t.templates?.filter((e=>!E.includes(e.name)));l.length>0&&(j({...O,content:!0}),wp.apiFetch({path:\"\u002Fultp\u002Fv3\u002Fstarter_import_content\",method:\"POST\",data:{excludepages:JSON.stringify(E),api_endpoint:e,importDummy:S.importDummy,installPlugin:S?.installPlugin}}).then((e=>{clearInterval(n),o(a+1,100,50),setTimeout((()=>{k(!1),j({...O,content:!1})}),50*(100-a+2)),e.success||F(!0)})).catch((e=>{console.log(e),o(a+1,100,50),setTimeout((()=>{k(!1),j({...O,content:!1})}),50*(100-a+2))})))}})(\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+t.live)},__(\"Start Importing\",\"ultimate-post\"))),(0,a.createElement)(\"button\",{onClick:()=>{y||(M(v),x(!1),N(0),k(!1),w(!1))},className:\"ultp-popup-close \"+(y?\"s_loading\":\"\")},o.ZP.close_line)))))}},6488:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>s});var a=n(7294),r=n(4766),o=n(2402),i=n(7763),l=n(5324);const{__}=wp.i18n,s=e=>{const{changeStates:t,column:n,showWishList:s,_fetchFile:p,fetching:c,searchQuery:d,fields:u,fieldValue:m,fieldOptions:f,useState:h,useEffect:g,useRef:v}=e;return(0,a.createElement)(\"div\",{className:\"ultp-templatekit-layout-search-container\"},(0,a.createElement)(\"div\",{className:\"ultp-templatekit-search-container\"},u?.filter&&(0,a.createElement)(a.Fragment,null,\" \",(0,a.createElement)(\"span\",null,__(\"Filter:\",\"ultimate-post\")),(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.filter,contentWH:{height:\"190px\",width:\"150px\"},onChange:e=>{t(\"filter\",e)},options:f?.filterArr||[]})),u?.trend&&m?.trend&&(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.trend,onChange:e=>{t(\"trend\",e)},options:[{value:\"all\",label:__(\"Popular \u002F Latest\",\"ultimate-post\")},{value:\"popular\",label:__(\"Popular\",\"ultimate-post\")},{value:\"latest\",label:__(\"Latest\",\"ultimate-post\")}]}),u?.freePro&&(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.freePro,onChange:e=>{t(\"freePro\",e)},options:[{value:\"all\",label:__(\"Free \u002F Pro\",\"ultimate-post\")},{value:\"free\",label:__(\"Free\",\"ultimate-post\")},{value:\"pro\",label:__(\"Pro\",\"ultimate-post\")}]})),(0,a.createElement)(\"div\",{className:\"ultp-templatekit-layout-container\"},(0,a.createElement)(o.Z,{changeStates:t,searchQuery:d}),(0,a.createElement)(\"span\",{className:\"ultp-templatekit-iconcol2 \"+(\"2\"==n?\"ultp-lay-active\":\"\"),onClick:()=>t(\"column\",\"2\")},i.Z.grid_col1),(0,a.createElement)(\"span\",{className:\"ultp-templatekit-iconcol3 \"+(\"3\"==n?\"ultp-lay-active\":\"\"),onClick:()=>t(\"column\",\"3\")},i.Z.grid_col2),(0,a.createElement)(\"div\",{className:\"ultp-premade-wishlist-con\"},(0,a.createElement)(\"span\",{className:\"ultp-premade-wishlist cursor \"+(s?\"ultp-wishlist-active\":\"\"),onClick:()=>{t(\"wishlist\",!s)}},r.ZP[s?\"love_solid\":\"love_line\"])),p&&(0,a.createElement)(\"div\",{onClick:()=>p(),className:\"ultp-filter-sync\"},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-update-alt \"+(c?\" rotate\":\"\")}),__(\"Synchronize\",\"ultimate-post\"))))}},58:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294);n(3358);const{__}=wp.i18n,r=()=>(0,a.createElement)(\"input\",{type:\"file\",name:\"attachment\",accept:\"image\u002Fpng, image\u002Fjpeg\",className:\"xpo-input-support\",id:\"xpo-support-file-input\"}),o=()=>{const[e,t]=(0,a.useState)(!1),[n,o]=(0,a.useState)(!1),[i,l]=(0,a.useState)(!1),s=(0,a.useRef)(null),p=(0,a.useRef)(null);return(0,a.useEffect)((()=>{!e&&i&&l(!1)}),[e,i]),(0,a.useEffect)((()=>{const n=new AbortController;if(e)return document.addEventListener(\"mousedown\",(e=>{s.current&&!s.current.contains(e.target)&&(t(!1),l(!1))}),{signal:n.signal}),()=>{n.abort()}}),[e]),(0,a.createElement)(\"div\",{ref:s},(0,a.createElement)(\"span\",{className:\"xpo-support-pops-btn xpo-support-pops-btn--small \"+(e?\"xpo-support-pops-btn--big\":\"\"),onClick:()=>t((e=>!e)),role:\"button\",tabIndex:-1,onKeyDown:e=>{\"Enter\"===e.key&&t((e=>!e))}},(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"28\",height:\"28\",fill:\"none\",viewBox:\"0 0 28 28\"},(0,a.createElement)(\"path\",{fill:\"var(--xpo-support-color-reverse)\",fillRule:\"evenodd\",d:\"M27.3 14c0 7.4-6 13.3-13.3 13.3H.7l3.9-3.9A13.3 13.3 0 0 1 14 .7c7.4 0 13.3 6 13.3 13.3Zm-19 1.7a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Zm7.4-1.7a1.7 1.7 0 1 1-3.4 0 1.7 1.7 0 0 1 3.4 0Zm5.6 0a1.7 1.7 0 1 1-3.3 0 1.7 1.7 0 0 1 3.3 0Z\",clipRule:\"evenodd\"}))),e&&(0,a.createElement)(\"div\",{className:`xpo-support-pops-container ${e?\"xpo-support-entry-anim\":\"\"} ${i?\"\":\"xpo-support-pops-container--full-height\"}`},(0,a.createElement)(\"div\",{className:\"xpo-support-pops-header\"},(0,a.createElement)(\"div\",{style:{maxHeight:i?\"0px\":\"140px\",opacity:i?\"0\":\"1\",transition:\"max-height 0.3s, opacity 0.3s\"}},(0,a.createElement)(\"div\",{className:\"xpo-support-header-bg\"}),(0,a.createElement)(\"div\",{className:\"xpo-support-pops-avatars\"},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fsupport\u002F1.png\",alt:\"WPXPO\"}),(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fsupport\u002F2.jpg\",alt:\"A. Owadud Bhuiyan\"}),(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fsupport\u002F3.jpg\",alt:\"Abdullah Al Mahmud\"}),(0,a.createElement)(\"div\",{className:\"xpo-support-signal-green xpo-support-signal\"})),(0,a.createElement)(\"div\",{className:\"xpo-support-pops-text\"},\"Questions? Create an Issue!\"))),(0,a.createElement)(\"div\",{className:\"xpo-support-chat-body\"},(0,a.createElement)(\"div\",{style:{maxHeight:i?\"174px\":\"0px\",opacity:i?\"1\":\"0\",transition:\"max-height 0.3s, opacity 0.3s\"}},i&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"xpo-support-thankyou-icon\"},(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 52 52\",className:\"xpo-support-animation\"},(0,a.createElement)(\"circle\",{className:\"xpo-support-circle\",cx:\"26\",cy:\"26\",r:\"25\",fill:\"none\"}),(0,a.createElement)(\"path\",{className:\"xpo-support-check\",fill:\"none\",d:\"M14.1 27.2l7.1 7.2 16.7-16.8\"}))),(0,a.createElement)(\"div\",{className:\"xpo-support-thankyou-title\"},__(\"Thank You!\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"xpo-support-thankyou-subtitle\"},__(\"Your message has been received. We will contact you soon on your email with a response. Stay connected and check mail!\",\"ultimate-post\")))),(0,a.createElement)(\"form\",{ref:p,onSubmit:e=>{if(n)return;e.preventDefault(),o(!0);const t=new FormData(e.target);fetch(\"https:\u002F\u002Fwpxpo.com\u002Fwp-json\u002Fv2\u002Fsupport_mail\",{method:\"POST\",body:t}).then((e=>{if(!e.ok)throw new Error(\"Failed to submit ticket\");l(!0),p.current&&p.current.reset()})).catch((e=>{console.log(e)})).finally((()=>{o(!1)}))},encType:\"multipart\u002Fform-data\",style:{maxHeight:i?\"0px\":\"376px\",opacity:i?\"0\":\"1\",transition:\"max-height 0.3s, opacity 0.3s\"}},(0,a.createElement)(\"input\",{type:\"hidden\",name:\"user_name\",defaultValue:ultp_dashboard_pannel.userInfo.name}),(0,a.createElement)(\"input\",{type:\"email\",name:\"user_email\",className:\"xpo-input-support\",defaultValue:ultp_dashboard_pannel.userInfo.email,required:!0}),(0,a.createElement)(\"input\",{type:\"hidden\",name:\"subject\",value:\"Support from PostX\"}),(0,a.createElement)(\"div\",{className:\"xpo-support-title\"},__(\"Message\",\"ultimate-post\")),(0,a.createElement)(\"textarea\",{name:\"desc\",className:\"xpo-input-support\",placeholder:\"Write your message here...\"}),(0,a.createElement)(r,null),(0,a.createElement)(\"button\",{type:\"submit\",className:\"xpo-send-button\",disabled:n},n?(0,a.createElement)(a.Fragment,null,\"Sending\",(0,a.createElement)(\"div\",{className:\"xpo-support-loading\"})):(0,a.createElement)(a.Fragment,null,\"Send\",(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"21\",height:\"20\",fill:\"none\",viewBox:\"0 0 21 20\"},(0,a.createElement)(\"path\",{fill:\"var(--xpo-support-color-reverse)\",d:\"M18.4 10c0-.6-.3-1.1-.8-1.4L5 2c-.6-.3-1.2-.3-1.7 0-.6.4-.9 1.3-.7 1.9l1.2 4.8c0 .5.5.8 1 .8h7c.3 0 .6.3.6.6 0 .4-.3.6-.6.6h-7c-.5 0-1 .4-1 .9l-1.3 4.8c-.1.6 0 1.1.5 1.5l.1.2c.5.4 1.2.4 1.8.1l12.5-6.6c.6-.3 1-.9 1-1.5Z\"}))))))))}},1389:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(6509);const r=e=>{const{title:t,modalContent:n,setModalContent:r}=e;return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-modal-wrapper\",onClick:e=>{e.target?.closest(\".ultp-dashboard-modal\")||r(\"\")}},(0,a.createElement)(\"div\",{className:\"ultp-dashboard-modal\"},(0,a.createElement)(\"div\",{className:\"ultp-modal-header\"},t&&(0,a.createElement)(\"span\",{className:\"ultp-modal-title\"},t),(0,a.createElement)(\"a\",{className:\"ultp-popup-close\",onClick:()=>r(\"\")})),(0,a.createElement)(\"div\",{className:\"ultp-modal-body\"},n)))}},8949:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(619);const r=e=>{const{type:t,size:n,loop:r,unit:o,c_s:i,classes:l}=e,s=()=>{let e={};switch(t){case\"image\":case\"circle\":e={width:n?n+\"px\":\"300px\",height:n?n+\"px\":\"300px\"};break;case\"title\":e={width:`${n||\"100\"}${o||\"%\"}`};break;case\"button\":e={width:n?n+\"px\":\"90px\"};break;case\"custom_size\":e={width:`${i.size1?i.size1:\"100\"}${i.unit1?i.unit1:\"%\"}`,height:`${i.size2?i.size2:\"20\"}${i.unit2?i.unit2:\"px\"}`,borderRadius:i.br?i.br+\"px\":\"0px\"}}return e};return(0,a.createElement)(a.Fragment,null,r?(0,a.createElement)(a.Fragment,null,Array(parseInt(r)).fill(\"1\").map(((e,n)=>(0,a.createElement)(\"div\",{key:n,className:`ultp_skeleton__${t} ultp_frequency loop ${l||\"\"}`,style:s()})))):(0,a.createElement)(\"div\",{className:`ultp_skeleton__${t} ultp_frequency ${l||\"\"}`,style:s()}))}},356:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(2413);const{__}=wp.i18n,r=({delay:e,toastMessages:t,setToastMessages:n})=>{const[r,o]=(0,a.useState)(!0),[i,l]=(0,a.useState)(\"show\");return(0,a.useEffect)((()=>{const t=setTimeout((()=>{o(!1),l(\"\"),n({state:!1,status:\"\"})}),e);return()=>clearTimeout(t)}),[e]),(0,a.createElement)(\"div\",{className:\"toast\"},r&&t.status&&t.messages.length>0&&(0,a.createElement)(\"div\",{className:\"toastMessages\"},t.messages.map(((e,r)=>(0,a.createElement)(\"span\",{key:`toast_${Date.now().toString()}_${r}`},(0,a.createElement)(\"div\",{className:`toaster ${i}`},(0,a.createElement)(\"span\",null,\"error\"==t.status?(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 52 52\",className:\"animation\",stroke:\"currentColor\"},(0,a.createElement)(\"circle\",{cx:\"26\",cy:\"26\",r:\"25\",fill:\"none\",className:\"circle cross\"}),(0,a.createElement)(\"path\",{fill:\"none\",d:\"M 12,12 L 40,40 M 40,12 L 12,40\",className:\"check\"})):(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 52 52\",className:\"animation\",stroke:\"currentColor\"},(0,a.createElement)(\"circle\",{className:\"circle\",cx:\"26\",cy:\"26\",r:\"25\",fill:\"none\"}),(0,a.createElement)(\"path\",{className:\"check\",fill:\"none\",d:\"M14.1 27.2l7.1 7.2 16.7-16.8\"}))),(0,a.createElement)(\"span\",{className:\"itmCenter\"},e),(0,a.createElement)(\"span\",{className:\"itmLast\",onClick:()=>(e=>{let a=[...t.messages];a=a.filter(((t,n)=>n!==e)),n({...t,messages:a})})(r)},__(\"Close\",\"ultimate-post\"))))))))}},448:(e,t,n)=>{\"use strict\";n.d(t,{AJ:()=>o,cC:()=>l,x2:()=>r});var a=n(2030);const{__}=wp.i18n,r=(e,t,n,a)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv1\u002Fpostx_presets\",method:\"POST\",data:{type:e,key:t,data:n}}).then((r=>{r.success&&(\"set\"==e&&i(t,n),a&&a(r))}))},o=(e,t=\"\",n=!1)=>{if(\"typoStacks\"==e)return[[{type:\"sans-serif\",weight:500,family:\"Roboto\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"serif\",weight:600,family:\"Roboto Slab\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"sans-serif\",weight:600,family:\"Jost\"},{type:\"sans-serif\",weight:400,family:\"Jost\"}],[{type:\"display\",weight:500,family:\"Roboto\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"serif\",weight:700,family:\"Arvo\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"sans-serif\",weight:500,family:\"Roboto\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"sans-serif\",weight:700,family:\"Merriweather\"},{type:\"sans-serif\",weight:400,family:\"Merriweather\"}],[{type:\"sans-serifs\",weight:500,family:\"Oswald\"},{type:\"sans-serif\",weight:400,family:\"Source Sans Pro\"}],[{type:\"display\",weight:400,family:\"Abril Fatface\"},{type:\"sans-serif\",weight:400,family:\"Poppins\"}],[{type:\"serif\",weight:700,family:\"Cardo\"},{type:\"sans-serif\",weight:400,family:\"Inter\"}]];if(\"multipleTypos\"==e)return{Body_and_Others_typo:[\"body_typo\",\"paragraph_1_typo\",\"paragraph_2_typo\",\"paragraph_3_typo\"],Heading_typo:[\"heading_h1_typo\",\"heading_h2_typo\",\"heading_h3_typo\",\"heading_h4_typo\",\"heading_h5_typo\",\"heading_h6_typo\"]};if(\"presetTypoKeys\"==e)return[\"Heading_typo\",\"Body_and_Others_typo\"];if(\"colorStacks\"==e)return[[\"#f4f4ff\",\"#dddff8\",\"#B4B4D6\",\"#3323f0\",\"#4a5fff\",\"#1B1B47\",\"#545472\",\"#262657\",\"#10102e\"],[\"#ffffff\",\"#f7f4ed\",\"#D6D1B4\",\"#fab42a\",\"#f4cd4e\",\"#3B3118\",\"#6F6C53\",\"#483d1f\",\"#29230f\"],[\"#ffffff\",\"#eaf7ea\",\"#C2DBBF\",\"#3b9138\",\"#54a757\",\"#1E381A\",\"#586E56\",\"#23411f\",\"#162c11\"],[\"#fdf7ff\",\"#eadef5\",\"#C1B4D6\",\"#8749d0\",\"#995ede\",\"#301B42\",\"#635472\",\"#38204e\",\"#231133\"],[\"#fffcfc\",\"#fce5ec\",\"#D6B4BC\",\"#f01f50\",\"#ff5878\",\"#431B23\",\"#72545B\",\"#4d2029\",\"#36141b\"],[\"#ffffff\",\"#ecf3f8\",\"#B4C2D6\",\"#2890e8\",\"#6cb0f4\",\"#1D3347\",\"#4B586C\",\"#2c4358\",\"#10202b\"],[\"#f8f3ed\",\"#f2e2d0\",\"#D6C4B4\",\"#dd8336\",\"#f09f4d\",\"#3D2A1D\",\"#6E5F52\",\"#483324\",\"#2e1e11\"],[\"#ffffff\",\"#faf0f4\",\"#D6B4CF\",\"#d948a2\",\"#e56ab5\",\"#401B2E\",\"#725468\",\"#4e2239\",\"#290e1d\"],[\"#f2f7ea\",\"#e1e6c4\",\"#D2DBBF\",\"#829d46\",\"#a1c36b\",\"#30371A\",\"#5F6551\",\"#38401f\",\"#242e10\"],[\"#ffffff\",\"#e9f7f3\",\"#B5D1C7\",\"#3cbe8b\",\"#59d5a5\",\"#1C3D3F\",\"#46675E\",\"#20484b\",\"#153234\"]];if(\"presetColorKeys\"==e)return[\"Base_1_color\",\"Base_2_color\",\"Base_3_color\",\"Primary_color\",\"Secondary_color\",\"Tertiary_color\",\"Contrast_3_color\",\"Contrast_2_color\",\"Contrast_1_color\"];if(\"presetGradientKeys\"==e)return[\"Cold_Evening_gradient\",\"Purple_Division_gradient\",\"Over_Sun_gradient\",\"Morning_Salad_gradient\",\"Fabled_Sunset_gradient\"];if(\"styleCss\"==e){let e=\":root { \";return Object.keys(t).forEach(((a,r)=>{if(![\"rootCSS\",\"globalColorCSS\"].includes(a)){const r=a,o=t[a]?.hasOwnProperty(\"openColor\")?\"color\"==t[a].type?t[a].color:t[a].gradient:t[a]||n||\"\";e+=`--postx_preset_${r}: ${o}; `}})),e+=\" }\",e}if(\"typoCSS\"==e){const e=o(\"multipleTypos\");let r=\"\",i=\":root { \";const l=[\"Arial\",\"Tahoma\",\"Verdana\",\"Helvetica\",\"Times New Roman\",\"Trebuchet MS\",\"Georgia\"];return Object.keys(t).forEach(((o,s)=>{const p=t[o],c=!![...e.Body_and_Others_typo,...e.Heading_typo].includes(o);if(![\"rootCSS\",\"presetTypoCSS\"].includes(o)&&\"object\"==typeof p&&Object.keys(p).length){const e=!l.includes(p.family),t=n?ultp_dashboard_pannel:ultp_data;!((!t?.settings?.hasOwnProperty(\"disable_google_font\")||\"yes\"==t?.settings.disable_google_font)&&t?.settings?.hasOwnProperty(\"disable_google_font\"))&&e&&p.family&&!p.family.includes(\"--postx_preset\")&&!r.includes(p.family.replace(\" \",\"+\")+\":\")&&void 0!==a.Z&&(r+=\"@import url('https:\u002F\u002Ffonts.googleapis.com\u002Fcss?family=\"+p.family.replace(\" \",\"+\")+\":\"+(a.Z?.filter((e=>e.n==p.family))[0]?.v||[]).join(\",\")+\"'); \"),c||(i+=p.family?`--postx_preset_${o}_font_family: ${p.family}; `:\"\",i+=p.family?`--postx_preset_${o}_font_family_type: ${p.type||\"sans-serif\"}; `:\"\",i+=p.weight?`--postx_preset_${o}_font_weight: ${p.weight}; `:\"\",i+=p.style?`--postx_preset_${o}_font_style: ${p.style}; `:\"\",i+=p.decoration?`--postx_preset_${o}_text_decoration: ${p.decoration}; `:\"\",i+=p.transform?`--postx_preset_${o}_text_transform: ${p.transform}; `:\"\",i+=p.spacing?.lg?`--postx_preset_${o}_letter_spacing_lg: ${p.spacing.lg}${p.spacing.ulg||\"px\"}; `:\"\",i+=p.spacing?.sm?`--postx_preset_${o}_letter_spacing_sm: ${p.spacing.sm}${p.spacing.usm||\"px\"}; `:\"\",i+=p.spacing?.xs?`--postx_preset_${o}_letter_spacing_xs: ${p.spacing.xs}${p.spacing.uxs||\"px\"}; `:\"\"),i+=p.size?.lg?`--postx_preset_${o}_font_size_lg: ${p.size.lg}${p.size.ulg||\"px\"}; `:\"\",i+=p.size?.sm?`--postx_preset_${o}_font_size_sm: ${p.size.sm}${p.size.usm||\"px\"}; `:\"\",i+=p.size?.xs?`--postx_preset_${o}_font_size_xs: ${p.size.xs}${p.size.uxs||\"px\"}; `:\"\",i+=p.height?.lg?`--postx_preset_${o}_line_height_lg: ${p.height.lg}${p.height.ulg||\"px\"}; `:\"\",i+=p.height?.sm?`--postx_preset_${o}_line_height_sm: ${p.height.sm}${p.height.usm||\"px\"}; `:\"\",i+=p.height?.xs?`--postx_preset_${o}_line_height_xs: ${p.height.xs}${p.height.uxs||\"px\"}; `:\"\"}})),i+=\"}\",r+i}if(\"font_load\"==e){let e=\"\";const a=[\"Arial\",\"Tahoma\",\"Verdana\",\"Helvetica\",\"Times New Roman\",\"Trebuchet MS\",\"Georgia\"],r=n?ultp_dashboard_pannel:ultp_data,o=!((!r.settings?.hasOwnProperty(\"disable_google_font\")||\"yes\"==r.settings.disable_google_font)&&r.settings?.hasOwnProperty(\"disable_google_font\"));if(\"object\"==typeof t&&Object.keys(t).length){const n=!a.includes(t.family);o&&n&&t.family&&(e+=\"@import url('https:\u002F\u002Ffonts.googleapis.com\u002Fcss?family=\"+t.family.replace(\" \",\"+\")+\":\"+t.weight+\"'); \")}return e}if(\"font_load_all\"==e){const e=[\"Roboto\",\"Roboto Slab\",\"Jost\",\"Arvo\",\"Merriweather\",\"Oswald\",\"Abril Fatface\",\"Cardo\",\"Source Sans Pro\",\"Poppins\",\"Inter\"],t=[\"400,500\",\"600\",\"400,600\",\"700\",\"400,700\",\"500\",\"400\",\"700\",\"400\",\"400\",\"400\"];let a=\"\";const r=[\"Arial\",\"Tahoma\",\"Verdana\",\"Helvetica\",\"Times New Roman\",\"Trebuchet MS\",\"Georgia\"],o=n?ultp_dashboard_pannel:ultp_data,i=!((!o.settings?.hasOwnProperty(\"disable_google_font\")||\"yes\"==o.settings.disable_google_font)&&o.settings?.hasOwnProperty(\"disable_google_font\"));return e.forEach(((e,n)=>{const o=!r.includes(e);i&&o&&e&&(a+=\"@import url('https:\u002F\u002Ffonts.googleapis.com\u002Fcss?family=\"+e.replace(\" \",\"+\")+\":\"+t[n]+\"'); \")})),a}if(\"bgCSS\"==e){let e={};const n=\"object\"==typeof t?{...t}:{};if(\"color\"==n.type)e.backgroundColor=n.color;else if(\"gradient\"==n.type&&n.gradient){let t=n.gradient;\"object\"==typeof n.gradient&&(t=\"linear\"==n.gradient.type?\"linear-gradient(\"+n.gradient.direction+\"deg, \"+n.gradient.color1+\" \"+n.gradient.start+\"%,\"+n.gradient.color2+\" \"+n.gradient.stop+\"%);\":\"radial-gradient( circle at \"+n.gradient.radial+\" , \"+n.gradient.color1+\" \"+n.gradient.start+\"%,\"+n.gradient.color2+\" \"+n.gradient.stop+\"%);\"),e.backgroundImage=t}else if(\"image\"==n.type){var r;(n.fallbackColor||n.color)&&(e.backgroundColor=null!==(r=n.fallbackColor)&&void 0!==r?r:n.color),n.image&&(e.backgroundImage='url(\"'+n.image+'\")',n.position&&(e.backgroundPositionX=100*n.position.x+\"%\",e.backgroundPositionY=100*n.position.y+\"%\"),n.attachment&&(e.backgroundAttachments=n.attachment),n.repeat&&(e.backgroundRepeat=n.repeat),n.size&&(e.backgroundSize=n.size))}else\"video\"==n.type&&n.fallback&&(e.backgroundImage='url(\"'+n.fallback+'\")',e.backgroundSize=\"cover\",e.backgroundPosition=\"50% 50%\");return e}if(\"globalCSS\"==e){let e=`:root {\\n            --preset-color1: ${t.presetColor1||\"#037fff\"}\\n            --preset-color2: ${t.presetColor2||\"#026fe0\"}\\n            --preset-color3: ${t.presetColor3||\"#071323\"}\\n            --preset-color4: ${t.presetColor4||\"#132133\"}\\n            --preset-color5: ${t.presetColor5||\"#34495e\"}\\n            --preset-color6: ${t.presetColor6||\"#787676\"}\\n            --preset-color7: ${t.presetColor7||\"#f0f2f3\"}\\n            --preset-color8: ${t.presetColor8||\"#f8f9fa\"}\\n            --preset-color9: ${t.presetColor9||\"#ffffff\"}\\n        }`;return t.enablePresetColorCSS&&(e+=\"\\n            html body.postx-admin-page .editor-styles-wrapper,\\n            html body.postx-admin-page .editor-styles-wrapper p,\\n            html body.postx-page,\\n            html body.postx-page p,\\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\\n            { \\n                color: var(--postx_preset_Contrast_2_color); \\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\\n            {\\n                color: var(--postx_preset_Contrast_1_color);\\n            }\\n            html.colibri-wp-theme body.postx-page h1,\\n            html.colibri-wp-theme body.postx-page h2,\\n            html.colibri-wp-theme body.postx-page h3,\\n            html.colibri-wp-theme body.postx-page h4,\\n            html.colibri-wp-theme body.postx-page h5,\\n            html.colibri-wp-theme body.postx-page h6 \\n            {\\n                color: var(--postx_preset_Contrast_1_color);\\n            }\\n\\n            body.block-editor-iframe__body h1,\\n            body.block-editor-iframe__body h2,\\n            body.block-editor-iframe__body h3,\\n            body.block-editor-iframe__body h4,\\n            body.block-editor-iframe__body h5,\\n            body.block-editor-iframe__body h6\\n            { \\n                color: var(--postx_preset_Contrast_1_color);\\n            }\\n            \",t.gbbodyBackground.openColor&&(e+=`\\n                    html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\\n                    html body.postx-admin-page.block-editor-page.post-content-style-boxed .editor-styles-wrapper::before,\\n                    html.colibri-wp-theme body.postx-page,\\n                    body.block-editor-iframe__body\\n                    { ${(e=>{let t=e.clip?\"-webkit-background-clip: text; -webkit-text-fill-color: transparent;\":\"\";if(\"color\"==e.type)t+=e.color?\"background-color: \"+e.color+\";\":\"\";else if(\"gradient\"==e.type&&e.gradient)\"object\"==typeof e.gradient?\"linear\"==e.gradient.type?t+=\"background-image : linear-gradient(\"+e.gradient.direction+\"deg, \"+e.gradient.color1+\" \"+e.gradient.start+\"%,\"+e.gradient.color2+\" \"+e.gradient.stop+\"%);\":t+=\"background-image : radial-gradient( circle at \"+e.gradient.radial+\" , \"+e.gradient.color1+\" \"+e.gradient.start+\"%,\"+e.gradient.color2+\" \"+e.gradient.stop+\"%);\":t+=\"background-image:\"+e.gradient+\";\";else if(\"image\"==e.type){var n;(e.fallbackColor||e.color)&&(t+=\"background-color:\"+(null!==(n=e.fallbackColor)&&void 0!==n?n:e.color)+\";\"),e.image&&(t+='background-image: url(\"'+e.image+'\");'+(e.position?\"background-position-x:\"+100*e.position.x+\"%;background-position-y:\"+100*e.position.y+\"%;\":\"\")+(e.attachment?\"background-attachment:\"+e.attachment+\";\":\"\")+(e.repeat?\"background-repeat:\"+e.repeat+\";\":\"\")+(e.size?\"background-size:\"+e.size+\";\":\"\"))}return t})(t.gbbodyBackground)} }\\n                `)),t.enablePresetTypoCSS&&(e+=`\\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\\n            { \\n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \\n                font-weight: var(--postx_preset_Heading_typo_font_weight);\\n                font-style: var(--postx_preset_Heading_typo_font_style);\\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\\n            }\\n            html.colibri-wp-theme body.postx-page h1,\\n            html.colibri-wp-theme body.postx-page h2,\\n            html.colibri-wp-theme body.postx-page h3,\\n            html.colibri-wp-theme body.postx-page h4,\\n            html.colibri-wp-theme body.postx-page h5,\\n            html.colibri-wp-theme body.postx-page h6\\n            { \\n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \\n                font-weight: var(--postx_preset_Heading_typo_font_weight);\\n                font-style: var(--postx_preset_Heading_typo_font_style);\\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\\n            }\\n            body.block-editor-iframe__body h1,\\n            body.block-editor-iframe__body h2,\\n            body.block-editor-iframe__body h3,\\n            body.block-editor-iframe__body h4,\\n            body.block-editor-iframe__body h5,\\n            body.block-editor-iframe__body h6\\n            { \\n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \\n                font-weight: var(--postx_preset_Heading_typo_font_weight);\\n                font-style: var(--postx_preset_Heading_typo_font_style);\\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n            html.colibri-wp-theme body.postx-page h1,\\n            body.block-editor-iframe__body h1\\n            { \\n                font-size: var(--postx_preset_heading_h1_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h1_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n            html.colibri-wp-theme body.postx-page h2,\\n            body.block-editor-iframe__body h2\\n            { \\n                font-size: var(--postx_preset_heading_h2_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h2_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n            html.colibri-wp-theme body.postx-page h3,\\n            body.block-editor-iframe__body h3\\n            { \\n                font-size: var(--postx_preset_heading_h3_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h3_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n            html.colibri-wp-theme body.postx-page h4,\\n            body.block-editor-iframe__body h4\\n            { \\n                font-size: var(--postx_preset_heading_h4_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h4_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n            html.colibri-wp-theme body.postx-page h5,\\n            body.block-editor-iframe__body h5\\n            { \\n                font-size: var(--postx_preset_heading_h5_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h5_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\\n            html.colibri-wp-theme body.postx-page h6,\\n            body.block-editor-iframe__body h6\\n            { \\n                font-size: var(--postx_preset_heading_h6_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h6_typo_line_height_lg, normal) !important;\\n            }\\n\\n            @media (max-width: ${t.breakpointSm||991}px) {\\n                html body.postx-admin-page .editor-styles-wrapper h1 , html body.postx-page h1,\\n                html body.postx-admin-page .editor-styles-wrapper h2 , html body.postx-page h2,\\n                html body.postx-admin-page .editor-styles-wrapper h3 , html body.postx-page h3,\\n                html body.postx-admin-page .editor-styles-wrapper h4 , html body.postx-page h4,\\n                html body.postx-admin-page .editor-styles-wrapper h5 , html body.postx-page h5,\\n                html body.postx-admin-page .editor-styles-wrapper h6 , html body.postx-page h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\\n                }\\n                html.colibri-wp-theme body.postx-page h1,\\n                html.colibri-wp-theme body.postx-page h2,\\n                html.colibri-wp-theme body.postx-page h3,\\n                html.colibri-wp-theme body.postx-page h4,\\n                html.colibri-wp-theme body.postx-page h5,\\n                html.colibri-wp-theme body.postx-page h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\\n                }\\n                body.block-editor-iframe__body h1,\\n                body.block-editor-iframe__body h2,\\n                body.block-editor-iframe__body h3,\\n                body.block-editor-iframe__body h4,\\n                body.block-editor-iframe__body h5,\\n                body.block-editor-iframe__body h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\\n                }\\n\\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n                html.colibri-wp-theme body.postx-page h1,\\n                body.block-editor-iframe__body h1\\n                {\\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n                html.colibri-wp-theme body.postx-page h2,\\n                body.block-editor-iframe__body h2\\n                {\\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n                html.colibri-wp-theme body.postx-page h3,\\n                body.block-editor-iframe__body h3\\n                {\\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n                html.colibri-wp-theme body.postx-page h4,\\n                body.block-editor-iframe__body h4\\n                {\\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n                html.colibri-wp-theme body.postx-page h5,\\n                body.block-editor-iframe__body h5\\n                {\\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\\n                html.colibri-wp-theme body.postx-page h6,\\n                body.block-editor-iframe__body h6\\n                {\\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_sm, normal) !important;\\n                }\\n            }\\n\\n            @media (max-width: ${t.breakpointXs||767}px) {\\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\\n                }\\n                html.colibri-wp-theme body.postx-page h1,\\n                html.colibri-wp-theme body.postx-page h2,\\n                html.colibri-wp-theme body.postx-page h3,\\n                html.colibri-wp-theme body.postx-page h4,\\n                html.colibri-wp-theme body.postx-page h5,\\n                html.colibri-wp-theme body.postx-page h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\\n                }\\n                body.block-editor-iframe__body h1,\\n                body.block-editor-iframe__body h2,\\n                body.block-editor-iframe__body h3,\\n                body.block-editor-iframe__body h4,\\n                body.block-editor-iframe__body h5,\\n                body.block-editor-iframe__body h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n                html.colibri-wp-theme body.postx-page h1,\\n                body.block-editor-iframe__body h1\\n                {\\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n                html.colibri-wp-theme body.postx-page h2,\\n                body.block-editor-iframe__body h2\\n                {\\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n                html.colibri-wp-theme body.postx-page h3,\\n                body.block-editor-iframe__body h3\\n                {\\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n                html.colibri-wp-theme body.postx-page h4,\\n                body.block-editor-iframe__body h4\\n                {\\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n                html.colibri-wp-theme body.postx-page h5,\\n                body.block-editor-iframe__body h5\\n                {\\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\\n                html.colibri-wp-theme body.postx-page h6,\\n                body.block-editor-iframe__body h6\\n                {\\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_xs, normal) !important;\\n                }\\n            }\\n            `),t.enablePresetTypoCSS&&(e+=`\\n            html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\\n            html body.postx-admin-page .editor-styles-wrapper p, html body.postx-page p,\\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\\n            { \\n                font-family: var(--postx_preset_Body_and_Others_typo_font_family),var(--postx_preset_Body_and_Others_typo_font_family_type); \\n                font-weight: var(--postx_preset_Body_and_Others_typo_font_weight);\\n                font-style: var(--postx_preset_Body_and_Others_typo_font_style);\\n                text-transform: var(--postx_preset_Body_and_Others_typo_text_transform);\\n                text-decoration: var(--postx_preset_Body_and_Others_typo_text_decoration);\\n                letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_lg, normal);\\n                font-size: var(--postx_preset_body_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_body_typo_line_height_lg, normal) !important;\\n            }\\n            @media (max-width: ${t.breakpointSm||991}px) {\\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\\n                {\\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_sm, normal);\\n                    font-size: var(--postx_preset_body_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_body_typo_line_height_sm, normal) !important;\\n                }\\n            }\\n            @media (max-width: ${t.breakpointXs||767}px) {\\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\\n                {\\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_xs, normal);\\n                    font-size: var(--postx_preset_body_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_body_typo_line_height_xs, normal) !important;\\n                }\\n            }\\n            `),e}},i=(e,t)=>{localStorage.setItem(e,JSON.stringify(t))},l=(e,t={})=>{try{return JSON.parse(e)}catch(e){return t}}},2402:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(4201);const r=({searchQuery:e,setSearchQuery:t,setTemplateModule:n,changeStates:r})=>(0,a.createElement)(\"div\",{className:\"ultp-design-search-wrapper\"},(0,a.createElement)(\"input\",{type:\"search\",id:\"ultp-design-search-form\",className:\"ultp-design-search-input\",placeholder:\"Search for...\",value:e,onChange:e=>{t&&t(e.target.value),n&&n(\"\"),r&&r(\"search\",e.target.value)}}))},3100:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(2044);const r=(e,t,n,r)=>(0,a.Z)({url:e||null,utmKey:t||null,affiliate:n||null,hash:r||null})},4190:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(2158);const r=e=>{let t;const[n,r]=(0,a.useState)(!1);return(0,a.createElement)(\"div\",{className:`ultp-tooltip-wrapper ${e.extraClass}`,onMouseEnter:()=>{t=setTimeout((()=>{r(!0)}),e.delay||400)},onMouseLeave:()=>{clearInterval(t),r(!1)}},e.children,n&&(0,a.createElement)(\"div\",{className:`tooltip-content ${e.direction||\"top\"}`},e.content))}},2030:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=[{n:\"ABeeZee\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Abel\",v:[400],f:\"sans-serif\"},{n:\"Abhaya Libre\",v:[400,500,600,700,800],f:\"serif\"},{n:\"Abril Fatface\",v:[400],f:\"display\"},{n:\"Abyssinica SIL\",v:[400],f:\"serif\"},{n:\"Aclonica\",v:[400],f:\"sans-serif\"},{n:\"Acme\",v:[400],f:\"sans-serif\"},{n:\"Actor\",v:[400],f:\"sans-serif\"},{n:\"Adamina\",v:[400],f:\"serif\"},{n:\"Advent Pro\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Aguafina Script\",v:[400],f:\"handwriting\"},{n:\"Akaya Kanadaka\",v:[400],f:\"display\"},{n:\"Akaya Telivigala\",v:[400],f:\"display\"},{n:\"Akronim\",v:[400],f:\"display\"},{n:\"Akshar\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Aladin\",v:[400],f:\"handwriting\"},{n:\"Alata\",v:[400],f:\"sans-serif\"},{n:\"Alatsi\",v:[400],f:\"sans-serif\"},{n:\"Albert Sans\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Aldrich\",v:[400],f:\"sans-serif\"},{n:\"Alef\",v:[400,700],f:\"sans-serif\"},{n:\"Alexandria\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Alegreya\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Alegreya SC\",v:[400,\"400i\",500,\"500i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"serif\"},{n:\"Alegreya Sans\",v:[\"100\",\"100i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Alegreya Sans SC\",v:[\"100\",\"100i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Aleo\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Alex Brush\",v:[400],f:\"handwriting\"},{n:\"Alfa Slab One\",v:[400],f:\"display\"},{n:\"Alice\",v:[400],f:\"serif\"},{n:\"Alike\",v:[400],f:\"serif\"},{n:\"Alike Angular\",v:[400],f:\"serif\"},{n:\"Allan\",v:[400,700],f:\"display\"},{n:\"Allerta\",v:[400],f:\"sans-serif\"},{n:\"Allerta Stencil\",v:[400],f:\"sans-serif\"},{n:\"Allison\",v:[400],f:\"handwriting\"},{n:\"Allura\",v:[400],f:\"handwriting\"},{n:\"Almarai\",v:[\"300\",400,700,800],f:\"sans-serif\"},{n:\"Almendra\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Almendra Display\",v:[400],f:\"display\"},{n:\"Almendra SC\",v:[400],f:\"serif\"},{n:\"Alumni Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Alumni Sans Inline One\",v:[400,\"400i\"],f:\"display\"},{n:\"Amarante\",v:[400],f:\"display\"},{n:\"Amaranth\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Amatic SC\",v:[400,700],f:\"handwriting\"},{n:\"Amethysta\",v:[400],f:\"serif\"},{n:\"Amiko\",v:[400,600,700],f:\"sans-serif\"},{n:\"Amiri\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Amita\",v:[400,700],f:\"handwriting\"},{n:\"Anaheim\",v:[400],f:\"sans-serif\"},{n:\"Andada Pro\",v:[400,500,600,700,800,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Andika\",v:[400],f:\"sans-serif\"},{n:\"Anek Bangla\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Devanagari\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Gujarati\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Gurmukhi\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Kannada\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Latin\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Malayalam\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Odia\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Tamil\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Telugu\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Angkor\",v:[400],f:\"display\"},{n:\"Annie Use Your Telescope\",v:[400],f:\"handwriting\"},{n:\"Anonymous Pro\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Antic\",v:[400],f:\"sans-serif\"},{n:\"Antic Didone\",v:[400],f:\"serif\"},{n:\"Antic Slab\",v:[400],f:\"serif\"},{n:\"Anton\",v:[400],f:\"sans-serif\"},{n:\"Antonio\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Anybody\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"display\"},{n:\"Arapey\",v:[400,\"400i\"],f:\"serif\"},{n:\"Arbutus\",v:[400],f:\"display\"},{n:\"Arbutus Slab\",v:[400],f:\"serif\"},{n:\"Architects Daughter\",v:[400],f:\"handwriting\"},{n:\"Archivo\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Archivo Black\",v:[400],f:\"sans-serif\"},{n:\"Archivo Narrow\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Are You Serious\",v:[400],f:\"handwriting\"},{n:\"Aref Ruqaa\",v:[400,700],f:\"serif\"},{n:\"Arimo\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Arizonia\",v:[400],f:\"handwriting\"},{n:\"Armata\",v:[400],f:\"sans-serif\"},{n:\"Arsenal\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Artifika\",v:[400],f:\"serif\"},{n:\"Arvo\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Arya\",v:[400,700],f:\"sans-serif\"},{n:\"Asap\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Asap Condensed\",v:[200,\"200i\",300,\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Asar\",v:[400],f:\"serif\"},{n:\"Asset\",v:[400],f:\"display\"},{n:\"Assistant\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Astloch\",v:[400,700],f:\"display\"},{n:\"Asul\",v:[400,700],f:\"sans-serif\"},{n:\"Athiti\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Atkinson Hyperlegible\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Atma\",v:[\"300\",400,500,600,700],f:\"display\"},{n:\"Atomic Age\",v:[400],f:\"display\"},{n:\"Aubrey\",v:[400],f:\"display\"},{n:\"Audiowide\",v:[400],f:\"display\"},{n:\"Autour One\",v:[400],f:\"display\"},{n:\"Average\",v:[400],f:\"serif\"},{n:\"Average Sans\",v:[400],f:\"sans-serif\"},{n:\"Averia Gruesa Libre\",v:[400],f:\"display\"},{n:\"Averia Libre\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Averia Sans Libre\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Averia Serif Libre\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Azeret Mono\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"monospace\"},{n:\"Aboreto\",v:[400],f:\"display\"},{n:\"Abyssinica SIL\",v:[400],f:\"serif\"},{n:\"Albert Sans\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Alexandria\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Alkalami\",v:[400],f:\"serif\"},{n:\"Alkatra\",v:[400,500,600,700],f:\"display\"},{n:\"Alumni Sans Collegiate One\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Alumni Sans Pinstripe\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Amiri Quran\",v:[400],f:\"serif\"},{n:\"Anuphan\",v:[100,200,300,400,500,600,700],f:\"sans-serif\"},{n:\"Aoboshi One\",v:[400],f:\"serif\"},{n:\"Aref Ruqaa Ink\",v:[400,700],f:\"serif\"},{n:\"Arima\",v:[100,200,300,400,500,600,700],f:\"display\"},{n:\"B612\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"B612 Mono\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"BIZ UDGothic\",v:[400,700],f:\"sans-serif\"},{n:\"BIZ UDMincho\",v:[400,700],f:\"serif\"},{n:\"BIZ UDPGothic\",v:[400,700],f:\"sans-serif\"},{n:\"BIZ UDPMincho\",v:[400,700],f:\"serif\"},{n:\"Babylonica\",v:[400],f:\"handwriting\"},{n:\"Bad Script\",v:[400],f:\"handwriting\"},{n:\"Bahiana\",v:[400],f:\"display\"},{n:\"Bahianita\",v:[400],f:\"display\"},{n:\"Bai Jamjuree\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Bakbak One\",v:[400],f:\"display\"},{n:\"Ballet\",v:[400],f:\"handwriting\"},{n:\"Baloo 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Bhai 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Bhaijaan 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Bhaina 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Chettan 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Da 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Paaji 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Tamma 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Tammudu 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Thambi 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Balsamiq Sans\",v:[400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Balthazar\",v:[400],f:\"serif\"},{n:\"Bangers\",v:[400],f:\"display\"},{n:\"Barlow\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Barlow Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Barlow Semi Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Barriecito\",v:[400],f:\"display\"},{n:\"Barrio\",v:[400],f:\"display\"},{n:\"Basic\",v:[400],f:\"sans-serif\"},{n:\"Baskervville\",v:[400,\"400i\"],f:\"serif\"},{n:\"Battambang\",v:[\"100\",\"300\",400,700,900],f:\"display\"},{n:\"Baumans\",v:[400],f:\"display\"},{n:\"Bayon\",v:[400],f:\"sans-serif\"},{n:\"Be Vietnam Pro\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Beau Rivage\",v:[400],f:\"handwriting\"},{n:\"Bebas Neue\",v:[400],f:\"sans-serif\"},{n:\"Belgrano\",v:[400],f:\"serif\"},{n:\"Bellefair\",v:[400],f:\"serif\"},{n:\"Belleza\",v:[400],f:\"sans-serif\"},{n:\"Bellota\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Bellota Text\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"BenchNine\",v:[\"300\",400,700],f:\"sans-serif\"},{n:\"Benne\",v:[400],f:\"serif\"},{n:\"Bentham\",v:[400],f:\"serif\"},{n:\"Berkshire Swash\",v:[400],f:\"handwriting\"},{n:\"Besley\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Beth Ellen\",v:[400],f:\"handwriting\"},{n:\"Bevan\",v:[400,\"400i\"],f:\"display\"},{n:\"BhuTuka Expanded One\",v:[400],f:\"display\"},{n:\"Big Shoulders Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Inline Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Inline Text\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Stencil Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Stencil Text\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Text\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Bigelow Rules\",v:[400],f:\"display\"},{n:\"Bigshot One\",v:[400],f:\"display\"},{n:\"Bilbo\",v:[400],f:\"handwriting\"},{n:\"Bilbo Swash Caps\",v:[400],f:\"handwriting\"},{n:\"BioRhyme\",v:[\"200\",\"300\",400,700,800],f:\"serif\"},{n:\"BioRhyme Expanded\",v:[\"200\",\"300\",400,700,800],f:\"serif\"},{n:\"Birthstone\",v:[400],f:\"handwriting\"},{n:\"Birthstone Bounce\",v:[400,500],f:\"handwriting\"},{n:\"Biryani\",v:[\"200\",\"300\",400,600,700,800,900],f:\"sans-serif\"},{n:\"Bitter\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Black And White Picture\",v:[400],f:\"sans-serif\"},{n:\"Black Han Sans\",v:[400],f:\"sans-serif\"},{n:\"Black Ops One\",v:[400],f:\"display\"},{n:\"Blinker\",v:[\"100\",\"200\",\"300\",400,600,700,800,900],f:\"sans-serif\"},{n:\"Bodoni Moda\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Bokor\",v:[400],f:\"display\"},{n:\"Bona Nova\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Bonbon\",v:[400],f:\"handwriting\"},{n:\"Bonheur Royale\",v:[400],f:\"handwriting\"},{n:\"Boogaloo\",v:[400],f:\"display\"},{n:\"Bowlby One\",v:[400],f:\"display\"},{n:\"Bowlby One SC\",v:[400],f:\"display\"},{n:\"Brawler\",v:[400,700],f:\"serif\"},{n:\"Bree Serif\",v:[400],f:\"serif\"},{n:\"Brygada 1918\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Bubblegum Sans\",v:[400],f:\"display\"},{n:\"Bubbler One\",v:[400],f:\"sans-serif\"},{n:\"Buda\",v:[\"300\"],f:\"display\"},{n:\"Buenard\",v:[400,700],f:\"serif\"},{n:\"Bungee\",v:[400],f:\"display\"},{n:\"Bungee Hairline\",v:[400],f:\"display\"},{n:\"Bungee Inline\",v:[400],f:\"display\"},{n:\"Bungee Outline\",v:[400],f:\"display\"},{n:\"Bungee Shade\",v:[400],f:\"display\"},{n:\"Butcherman\",v:[400],f:\"display\"},{n:\"Butterfly Kids\",v:[400],f:\"handwriting\"},{n:\"Blaka\",v:[400],f:\"display\"},{n:\"Blaka Hollow\",v:[400],f:\"display\"},{n:\"Blaka Ink\",v:[400],f:\"display\"},{n:\"Braah One\",v:[400],f:\"sans-serif\"},{n:\"Bruno Ace\",v:[400],f:\"display\"},{n:\"Bruno Ace SC\",v:[400],f:\"display\"},{n:\"Bungee Spice\",v:[400],f:\"display\"},{n:\"Bungee Spice\",v:[400],f:\"display\"},{n:\"Cabin\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Cabin Condensed\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Cabin Sketch\",v:[400,700],f:\"display\"},{n:\"Caesar Dressing\",v:[400],f:\"display\"},{n:\"Cagliostro\",v:[400],f:\"sans-serif\"},{n:\"Cairo\",v:[\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Caladea\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Calistoga\",v:[400],f:\"display\"},{n:\"Calligraffitti\",v:[400],f:\"handwriting\"},{n:\"Cambay\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Cambo\",v:[400],f:\"serif\"},{n:\"Candal\",v:[400],f:\"sans-serif\"},{n:\"Cantarell\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Cantata One\",v:[400],f:\"serif\"},{n:\"Cantora One\",v:[400],f:\"sans-serif\"},{n:\"Capriola\",v:[400],f:\"sans-serif\"},{n:\"Caramel\",v:[400],f:\"handwriting\"},{n:\"Carattere\",v:[400],f:\"handwriting\"},{n:\"Cardo\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Carme\",v:[400],f:\"sans-serif\"},{n:\"Carrois Gothic\",v:[400],f:\"sans-serif\"},{n:\"Carrois Gothic SC\",v:[400],f:\"sans-serif\"},{n:\"Carter One\",v:[400],f:\"display\"},{n:\"Castoro\",v:[400,\"400i\"],f:\"serif\"},{n:\"Catamaran\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Caudex\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Caveat\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Caveat Brush\",v:[400],f:\"handwriting\"},{n:\"Cedarville Cursive\",v:[400],f:\"handwriting\"},{n:\"Ceviche One\",v:[400],f:\"display\"},{n:\"Chakra Petch\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Changa\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Changa One\",v:[400,\"400i\"],f:\"display\"},{n:\"Chango\",v:[400],f:\"display\"},{n:\"Charm\",v:[400,700],f:\"handwriting\"},{n:\"Charmonman\",v:[400,700],f:\"handwriting\"},{n:\"Chathura\",v:[\"100\",\"300\",400,700,800],f:\"sans-serif\"},{n:\"Chau Philomene One\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Chela One\",v:[400],f:\"display\"},{n:\"Chelsea Market\",v:[400],f:\"display\"},{n:\"Chenla\",v:[400],f:\"display\"},{n:\"Cherish\",v:[400],f:\"handwriting\"},{n:\"Cherry Cream Soda\",v:[400],f:\"display\"},{n:\"Cherry Swash\",v:[400,700],f:\"display\"},{n:\"Chewy\",v:[400],f:\"display\"},{n:\"Chicle\",v:[400],f:\"display\"},{n:\"Chilanka\",v:[400],f:\"handwriting\"},{n:\"Chivo\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Chonburi\",v:[400],f:\"display\"},{n:\"Cinzel\",v:[400,500,600,700,800,900],f:\"serif\"},{n:\"Cinzel Decorative\",v:[400,700,900],f:\"display\"},{n:\"Clicker Script\",v:[400],f:\"handwriting\"},{n:\"Coda\",v:[400,800],f:\"display\"},{n:\"Coda Caption\",v:[800],f:\"sans-serif\"},{n:\"Codystar\",v:[\"300\",400],f:\"display\"},{n:\"Coiny\",v:[400],f:\"display\"},{n:\"Combo\",v:[400],f:\"display\"},{n:\"Comfortaa\",v:[\"300\",400,500,600,700],f:\"display\"},{n:\"Comforter\",v:[400],f:\"handwriting\"},{n:\"Comforter Brush\",v:[400],f:\"handwriting\"},{n:\"Comic Neue\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"handwriting\"},{n:\"Coming Soon\",v:[400],f:\"handwriting\"},{n:\"Commissioner\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Concert One\",v:[400],f:\"display\"},{n:\"Condiment\",v:[400],f:\"handwriting\"},{n:\"Content\",v:[400,700],f:\"display\"},{n:\"Contrail One\",v:[400],f:\"display\"},{n:\"Convergence\",v:[400],f:\"sans-serif\"},{n:\"Cookie\",v:[400],f:\"handwriting\"},{n:\"Copse\",v:[400],f:\"serif\"},{n:\"Corben\",v:[400,700],f:\"display\"},{n:\"Corinthia\",v:[400,700],f:\"handwriting\"},{n:\"Cormorant\",v:[300,400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Cormorant Garamond\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"Cormorant Infant\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"Cormorant SC\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Cormorant Unicase\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Cormorant Upright\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Courgette\",v:[400],f:\"handwriting\"},{n:\"Courier Prime\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Cousine\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Coustard\",v:[400,900],f:\"serif\"},{n:\"Covered By Your Grace\",v:[400],f:\"handwriting\"},{n:\"Crafty Girls\",v:[400],f:\"handwriting\"},{n:\"Creepster\",v:[400],f:\"display\"},{n:\"Crete Round\",v:[400,\"400i\"],f:\"serif\"},{n:\"Crimson Pro\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Croissant One\",v:[400],f:\"display\"},{n:\"Crushed\",v:[400],f:\"display\"},{n:\"Cuprum\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Cute Font\",v:[400],f:\"display\"},{n:\"Cutive\",v:[400],f:\"serif\"},{n:\"Cutive Mono\",v:[400],f:\"monospace\"},{n:\"Cairo Play\",v:[200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Carlito\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Castoro Titling\",v:[400],f:\"display\"},{n:\"Charis SIL\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Cherry Bomb One\",v:[400],f:\"display\"},{n:\"Chivo Mono\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"monospace\"},{n:\"Chokokutai\",v:[400],f:\"display\"},{n:\"Climate Crisis\",v:[400],f:\"display\"},{n:\"Comme\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Crimson Text\",v:[400,\"400i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"DM Mono\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\"],f:\"monospace\"},{n:\"DM Sans\",v:[400,\"400i\",500,\"500i\",700,\"700i\"],f:\"sans-serif\"},{n:\"DM Serif Display\",v:[400,\"400i\"],f:\"serif\"},{n:\"DM Serif Text\",v:[400,\"400i\"],f:\"serif\"},{n:\"Damion\",v:[400],f:\"handwriting\"},{n:\"Dancing Script\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Dangrek\",v:[400],f:\"display\"},{n:\"Darker Grotesque\",v:[\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"David Libre\",v:[400,500,700],f:\"serif\"},{n:\"Dawning of a New Day\",v:[400],f:\"handwriting\"},{n:\"Days One\",v:[400],f:\"sans-serif\"},{n:\"Dekko\",v:[400],f:\"handwriting\"},{n:\"Dela Gothic One\",v:[400],f:\"display\"},{n:\"Delius\",v:[400],f:\"handwriting\"},{n:\"Delius Swash Caps\",v:[400],f:\"handwriting\"},{n:\"Delius Unicase\",v:[400,700],f:\"handwriting\"},{n:\"Della Respira\",v:[400],f:\"serif\"},{n:\"Denk One\",v:[400],f:\"sans-serif\"},{n:\"Devonshire\",v:[400],f:\"handwriting\"},{n:\"Dhurjati\",v:[400],f:\"sans-serif\"},{n:\"Didact Gothic\",v:[400],f:\"sans-serif\"},{n:\"Diplomata\",v:[400],f:\"display\"},{n:\"Diplomata SC\",v:[400],f:\"display\"},{n:\"Do Hyeon\",v:[400],f:\"sans-serif\"},{n:\"Dokdo\",v:[400],f:\"handwriting\"},{n:\"Domine\",v:[400,500,600,700],f:\"serif\"},{n:\"Donegal One\",v:[400],f:\"serif\"},{n:\"Dongle\",v:[\"300\",400,700],f:\"sans-serif\"},{n:\"Doppio One\",v:[400],f:\"sans-serif\"},{n:\"Dorsa\",v:[400],f:\"sans-serif\"},{n:\"Dosis\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"DotGothic16\",v:[400],f:\"sans-serif\"},{n:\"Dr Sugiyama\",v:[400],f:\"handwriting\"},{n:\"Duru Sans\",v:[400],f:\"sans-serif\"},{n:\"Dynalight\",v:[400],f:\"display\"},{n:\"Darumadrop One\",v:[400],f:\"display\"},{n:\"Delicious Handrawn\",v:[400],f:\"handwriting\"},{n:\"DynaPuff\",v:[400,500,600,700],f:\"display\"},{n:\"Edu NSW ACT Foundation\",v:[400,500,600,700],f:\"handwriting\"},{n:\"EB Garamond\",v:[400,500,600,700,800,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Eagle Lake\",v:[400],f:\"handwriting\"},{n:\"East Sea Dokdo\",v:[400],f:\"handwriting\"},{n:\"Eater\",v:[400],f:\"display\"},{n:\"Economica\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Eczar\",v:[400,500,600,700,800],f:\"serif\"},{n:\"El Messiri\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Electrolize\",v:[400],f:\"sans-serif\"},{n:\"Elsie\",v:[400,900],f:\"display\"},{n:\"Elsie Swash Caps\",v:[400,900],f:\"display\"},{n:\"Emblema One\",v:[400],f:\"display\"},{n:\"Emilys Candy\",v:[400],f:\"display\"},{n:\"Encode Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans Expanded\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans SC\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans Semi Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans Semi Expanded\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Engagement\",v:[400],f:\"handwriting\"},{n:\"Englebert\",v:[400],f:\"sans-serif\"},{n:\"Enriqueta\",v:[400,500,600,700],f:\"serif\"},{n:\"Ephesis\",v:[400],f:\"handwriting\"},{n:\"Epilogue\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Erica One\",v:[400],f:\"display\"},{n:\"Esteban\",v:[400],f:\"serif\"},{n:\"Estonia\",v:[400],f:\"handwriting\"},{n:\"Euphoria Script\",v:[400],f:\"handwriting\"},{n:\"Ewert\",v:[400],f:\"display\"},{n:\"Exo\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Exo 2\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Expletus Sans\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"display\"},{n:\"Explora\",v:[400],f:\"handwriting\"},{n:\"Edu QLD Beginner\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Edu SA Beginner\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Edu TAS Beginner\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Edu VIC WA NT Beginner\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Fahkwang\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Familjen Grotesk\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Fanwood Text\",v:[400,\"400i\"],f:\"serif\"},{n:\"Farro\",v:[\"300\",400,500,700],f:\"sans-serif\"},{n:\"Farsan\",v:[400],f:\"display\"},{n:\"Fascinate\",v:[400],f:\"display\"},{n:\"Fascinate Inline\",v:[400],f:\"display\"},{n:\"Faster One\",v:[400],f:\"display\"},{n:\"Fasthand\",v:[400],f:\"display\"},{n:\"Fauna One\",v:[400],f:\"serif\"},{n:\"Faustina\",v:[\"300\",400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Federant\",v:[400],f:\"display\"},{n:\"Federo\",v:[400],f:\"sans-serif\"},{n:\"Felipa\",v:[400],f:\"handwriting\"},{n:\"Fenix\",v:[400],f:\"serif\"},{n:\"Festive\",v:[400],f:\"handwriting\"},{n:\"Finger Paint\",v:[400],f:\"display\"},{n:\"Fira Code\",v:[\"300\",400,500,600,700],f:\"monospace\"},{n:\"Fira Mono\",v:[400,500,700],f:\"monospace\"},{n:\"Fira Sans\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Fira Sans Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Fira Sans Extra Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Fjalla One\",v:[400],f:\"sans-serif\"},{n:\"Fjord One\",v:[400],f:\"serif\"},{n:\"Flamenco\",v:[\"300\",400],f:\"display\"},{n:\"Flavors\",v:[400],f:\"display\"},{n:\"Fleur De Leah\",v:[400],f:\"handwriting\"},{n:\"Flow Block\",v:[400],f:\"display\"},{n:\"Flow Circular\",v:[400],f:\"display\"},{n:\"Flow Rounded\",v:[400],f:\"display\"},{n:\"Fondamento\",v:[400,\"400i\"],f:\"handwriting\"},{n:\"Fontdiner Swanky\",v:[400],f:\"display\"},{n:\"Forum\",v:[400],f:\"display\"},{n:\"Francois One\",v:[400],f:\"sans-serif\"},{n:\"Frank Ruhl Libre\",v:[\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Fraunces\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Freckle Face\",v:[400],f:\"display\"},{n:\"Fredericka the Great\",v:[400],f:\"display\"},{n:\"Fredoka\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Freehand\",v:[400],f:\"display\"},{n:\"Fresca\",v:[400],f:\"sans-serif\"},{n:\"Frijole\",v:[400],f:\"display\"},{n:\"Fruktur\",v:[400,\"400i\"],f:\"display\"},{n:\"Fugaz One\",v:[400],f:\"display\"},{n:\"Fuggles\",v:[400],f:\"handwriting\"},{n:\"Fuzzy Bubbles\",v:[400,700],f:\"handwriting\"},{n:\"Figtree\",v:[300,400,500,600,700,800,900,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Finlandica\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Foldit\",v:[100,200,300,400,500,600,700,800,900],f:\"display\"},{n:\"Fragment Mono\",v:[400,\"400i\"],f:\"monospace\"},{n:\"GFS Didot\",v:[400],f:\"serif\"},{n:\"GFS Neohellenic\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Gabriela\",v:[400],f:\"serif\"},{n:\"Gaegu\",v:[\"300\",400,700],f:\"handwriting\"},{n:\"Gafata\",v:[400],f:\"sans-serif\"},{n:\"Galada\",v:[400],f:\"display\"},{n:\"Galdeano\",v:[400],f:\"sans-serif\"},{n:\"Galindo\",v:[400],f:\"display\"},{n:\"Gamja Flower\",v:[400],f:\"handwriting\"},{n:\"Gayathri\",v:[\"100\",400,700],f:\"sans-serif\"},{n:\"Gelasio\",v:[400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"Gemunu Libre\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Genos\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Geo\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Georama\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Geostar\",v:[400],f:\"display\"},{n:\"Geostar Fill\",v:[400],f:\"display\"},{n:\"Germania One\",v:[400],f:\"display\"},{n:\"Gideon Roman\",v:[400],f:\"display\"},{n:\"Gidugu\",v:[400],f:\"sans-serif\"},{n:\"Gilda Display\",v:[400],f:\"serif\"},{n:\"Girassol\",v:[400],f:\"display\"},{n:\"Give You Glory\",v:[400],f:\"handwriting\"},{n:\"Glass Antiqua\",v:[400],f:\"display\"},{n:\"Glegoo\",v:[400,700],f:\"serif\"},{n:\"Gloria Hallelujah\",v:[400],f:\"handwriting\"},{n:\"Glory\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Gluten\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Goblin One\",v:[400],f:\"display\"},{n:\"Gochi Hand\",v:[400],f:\"handwriting\"},{n:\"Goldman\",v:[400,700],f:\"display\"},{n:\"Gorditas\",v:[400,700],f:\"display\"},{n:\"Gothic A1\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Gotu\",v:[400],f:\"sans-serif\"},{n:\"Goudy Bookletter 1911\",v:[400],f:\"serif\"},{n:\"Gowun Batang\",v:[400,700],f:\"serif\"},{n:\"Gowun Dodum\",v:[400],f:\"sans-serif\"},{n:\"Graduate\",v:[400],f:\"display\"},{n:\"Grand Hotel\",v:[400],f:\"handwriting\"},{n:\"Grandstander\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"display\"},{n:\"Grape Nuts\",v:[400],f:\"handwriting\"},{n:\"Gravitas One\",v:[400],f:\"display\"},{n:\"Great Vibes\",v:[400],f:\"handwriting\"},{n:\"Grechen Fuemen\",v:[400],f:\"handwriting\"},{n:\"Grenze\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"serif\"},{n:\"Grenze Gotisch\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Grey Qo\",v:[400],f:\"handwriting\"},{n:\"Griffy\",v:[400],f:\"display\"},{n:\"Gruppo\",v:[400],f:\"sans-serif\"},{n:\"Gudea\",v:[400,\"400i\",700],f:\"sans-serif\"},{n:\"Gugi\",v:[400],f:\"display\"},{n:\"Gupter\",v:[400,500,700],f:\"serif\"},{n:\"Gurajada\",v:[400],f:\"serif\"},{n:\"Gwendolyn\",v:[400,700],f:\"handwriting\"},{n:\"Gajraj One\",v:[400],f:\"display\"},{n:\"Gantari\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Gloock\",v:[400],f:\"serif\"},{n:\"Golos Text\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Gulzar\",v:[400],f:\"serif\"},{n:\"Gentium Book Plus\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Gentium Plus\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Habibi\",v:[400],f:\"serif\"},{n:\"Hachi Maru Pop\",v:[400],f:\"handwriting\"},{n:\"Hahmlet\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Halant\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Hammersmith One\",v:[400],f:\"sans-serif\"},{n:\"Hanalei\",v:[400],f:\"display\"},{n:\"Hanalei Fill\",v:[400],f:\"display\"},{n:\"Handlee\",v:[400],f:\"handwriting\"},{n:\"Hanuman\",v:[\"100\",\"300\",400,700,900],f:\"serif\"},{n:\"Happy Monkey\",v:[400],f:\"display\"},{n:\"Harmattan\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Headland One\",v:[400],f:\"serif\"},{n:\"Heebo\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Henny Penny\",v:[400],f:\"display\"},{n:\"Hepta Slab\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Herr Von Muellerhoff\",v:[400],f:\"handwriting\"},{n:\"Hi Melody\",v:[400],f:\"handwriting\"},{n:\"Hina Mincho\",v:[400],f:\"serif\"},{n:\"Hind\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Hind Guntur\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Hind Madurai\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Hind Siliguri\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Hind Vadodara\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Holtwood One SC\",v:[400],f:\"serif\"},{n:\"Homemade Apple\",v:[400],f:\"handwriting\"},{n:\"Homenaje\",v:[400],f:\"sans-serif\"},{n:\"Hubballi\",v:[400],f:\"display\"},{n:\"Hurricane\",v:[400],f:\"handwriting\"},{n:\"Hanken Grotesk\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"IBM Plex Mono\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"monospace\"},{n:\"IBM Plex Sans\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"IBM Plex Sans Arabic\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"IBM Plex Sans Devanagari\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans Hebrew\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans KR\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans Thai\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans Thai Looped\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Serif\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"IM Fell DW Pica\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell DW Pica SC\",v:[400],f:\"serif\"},{n:\"IM Fell Double Pica\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell Double Pica SC\",v:[400],f:\"serif\"},{n:\"IM Fell English\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell English SC\",v:[400],f:\"serif\"},{n:\"IM Fell French Canon\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell French Canon SC\",v:[400],f:\"serif\"},{n:\"IM Fell Great Primer\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell Great Primer SC\",v:[400],f:\"serif\"},{n:\"Ibarra Real Nova\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Iceberg\",v:[400],f:\"display\"},{n:\"Iceland\",v:[400],f:\"display\"},{n:\"Imbue\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Imperial Script\",v:[400],f:\"handwriting\"},{n:\"Imprima\",v:[400],f:\"sans-serif\"},{n:\"Inconsolata\",v:[\"200\",\"300\",400,500,600,700,800,900],f:\"monospace\"},{n:\"Inder\",v:[400],f:\"sans-serif\"},{n:\"Indie Flower\",v:[400],f:\"handwriting\"},{n:\"Ingrid Darling\",v:[400],f:\"handwriting\"},{n:\"Inika\",v:[400,700],f:\"serif\"},{n:\"Inknut Antiqua\",v:[\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Inria Sans\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Inria Serif\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Inspiration\",v:[400],f:\"handwriting\"},{n:\"Inter\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Irish Grover\",v:[400],f:\"display\"},{n:\"Island Moments\",v:[400],f:\"handwriting\"},{n:\"Istok Web\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Italiana\",v:[400],f:\"serif\"},{n:\"Italianno\",v:[400],f:\"handwriting\"},{n:\"Itim\",v:[400],f:\"handwriting\"},{n:\"IBM Plex Sans JP\",v:[100,200,300,400,500,600,700],f:\"sans-serif\"},{n:\"Instrument Sans\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Instrument Serif\",v:[400,\"400i\"],f:\"serif\"},{n:\"Inter Tight\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Jacques Francois\",v:[400],f:\"serif\"},{n:\"Jacques Francois Shadow\",v:[400],f:\"display\"},{n:\"Jaldi\",v:[400,700],f:\"sans-serif\"},{n:\"JetBrains Mono\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"monospace\"},{n:\"Jim Nightshade\",v:[400],f:\"handwriting\"},{n:\"Jockey One\",v:[400],f:\"sans-serif\"},{n:\"Jolly Lodger\",v:[400],f:\"display\"},{n:\"Jomhuria\",v:[400],f:\"display\"},{n:\"Jomolhari\",v:[400],f:\"serif\"},{n:\"Josefin Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Josefin Slab\",v:[\"100\",\"200\",\"300\",400,500,600,700,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Jost\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Joti One\",v:[400],f:\"display\"},{n:\"Jua\",v:[400],f:\"sans-serif\"},{n:\"Judson\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Julee\",v:[400],f:\"handwriting\"},{n:\"Julius Sans One\",v:[400],f:\"sans-serif\"},{n:\"Junge\",v:[400],f:\"serif\"},{n:\"Jura\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Just Another Hand\",v:[400],f:\"handwriting\"},{n:\"Just Me Again Down Here\",v:[400],f:\"handwriting\"},{n:\"K2D\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"sans-serif\"},{n:\"Joan\",v:[400],f:\"serif\"},{n:\"Kadwa\",v:[400,700],f:\"serif\"},{n:\"Kaisei Decol\",v:[400,500,700],f:\"serif\"},{n:\"Kaisei HarunoUmi\",v:[400,500,700],f:\"serif\"},{n:\"Kaisei Opti\",v:[400,500,700],f:\"serif\"},{n:\"Kaisei Tokumin\",v:[400,500,700,800],f:\"serif\"},{n:\"Kalam\",v:[\"300\",400,700],f:\"handwriting\"},{n:\"Kameron\",v:[400,700],f:\"serif\"},{n:\"Kanit\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Karantina\",v:[\"300\",400,700],f:\"display\"},{n:\"Karla\",v:[\"200\",\"300\",400,500,600,700,800,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Karma\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Katibeh\",v:[400],f:\"display\"},{n:\"Kaushan Script\",v:[400],f:\"handwriting\"},{n:\"Kavivanar\",v:[400],f:\"handwriting\"},{n:\"Kavoon\",v:[400],f:\"display\"},{n:\"Keania One\",v:[400],f:\"display\"},{n:\"Kelly Slab\",v:[400],f:\"display\"},{n:\"Kenia\",v:[400],f:\"display\"},{n:\"Khand\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Khmer\",v:[400],f:\"display\"},{n:\"Khula\",v:[\"300\",400,600,700,800],f:\"sans-serif\"},{n:\"Kings\",v:[400],f:\"handwriting\"},{n:\"Kirang Haerang\",v:[400],f:\"display\"},{n:\"Kite One\",v:[400],f:\"sans-serif\"},{n:\"Kiwi Maru\",v:[\"300\",400,500],f:\"serif\"},{n:\"Klee One\",v:[400,600],f:\"handwriting\"},{n:\"Knewave\",v:[400],f:\"display\"},{n:\"KoHo\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Kodchasan\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Koh Santepheap\",v:[\"100\",\"300\",400,700,900],f:\"display\"},{n:\"Kolker Brush\",v:[400],f:\"handwriting\"},{n:\"Kosugi\",v:[400],f:\"sans-serif\"},{n:\"Kosugi Maru\",v:[400],f:\"sans-serif\"},{n:\"Kotta One\",v:[400],f:\"serif\"},{n:\"Koulen\",v:[400],f:\"display\"},{n:\"Kranky\",v:[400],f:\"display\"},{n:\"Kreon\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Kristi\",v:[400],f:\"handwriting\"},{n:\"Krona One\",v:[400],f:\"sans-serif\"},{n:\"Krub\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Kufam\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Kulim Park\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Kumar One\",v:[400],f:\"display\"},{n:\"Kumar One Outline\",v:[400],f:\"display\"},{n:\"Kumbh Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Kurale\",v:[400],f:\"serif\"},{n:\"Kantumruy Pro\",v:[100,200,300,400,500,600,700,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Kdam Thmor Pro\",v:[400],f:\"sans-serif\"},{n:\"Konkhmer Sleokchher\",v:[400],f:\"display\"},{n:\"La Belle Aurore\",v:[400],f:\"handwriting\"},{n:\"Lacquer\",v:[400],f:\"display\"},{n:\"Laila\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Lakki Reddy\",v:[400],f:\"handwriting\"},{n:\"Lalezar\",v:[400],f:\"display\"},{n:\"Lancelot\",v:[400],f:\"display\"},{n:\"Langar\",v:[400],f:\"display\"},{n:\"Lateef\",v:[200,300,400,500,600,700,800],f:\"handwriting\"},{n:\"Lato\",v:[\"100\",\"100i\",\"300\",\"300i\",400,\"400i\",700,\"700i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Lavishly Yours\",v:[400],f:\"handwriting\"},{n:\"League Gothic\",v:[400],f:\"sans-serif\"},{n:\"League Script\",v:[400],f:\"handwriting\"},{n:\"League Spartan\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Leckerli One\",v:[400],f:\"handwriting\"},{n:\"Ledger\",v:[400],f:\"serif\"},{n:\"Lekton\",v:[400,\"400i\",700],f:\"sans-serif\"},{n:\"Lemon\",v:[400],f:\"display\"},{n:\"Lemonada\",v:[\"300\",400,500,600,700],f:\"display\"},{n:\"Lexend\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Deca\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Exa\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Giga\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Mega\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Peta\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Tera\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Zetta\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Libre Barcode 128\",v:[400],f:\"display\"},{n:\"Libre Barcode 128 Text\",v:[400],f:\"display\"},{n:\"Libre Barcode 39\",v:[400],f:\"display\"},{n:\"Libre Barcode 39 Extended\",v:[400],f:\"display\"},{n:\"Libre Barcode 39 Extended Text\",v:[400],f:\"display\"},{n:\"Libre Barcode 39 Text\",v:[400],f:\"display\"},{n:\"Libre Barcode EAN13 Text\",v:[400],f:\"display\"},{n:\"Libre Baskerville\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Libre Bodoni\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Libre Caslon Display\",v:[400],f:\"serif\"},{n:\"Libre Caslon Text\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Libre Franklin\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Licorice\",v:[400],f:\"handwriting\"},{n:\"Life Savers\",v:[400,700,800],f:\"display\"},{n:\"Lilita One\",v:[400],f:\"display\"},{n:\"Lily Script One\",v:[400],f:\"display\"},{n:\"Limelight\",v:[400],f:\"display\"},{n:\"Linden Hill\",v:[400,\"400i\"],f:\"serif\"},{n:\"Literata\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Liu Jian Mao Cao\",v:[400],f:\"handwriting\"},{n:\"Livvic\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Lobster\",v:[400],f:\"display\"},{n:\"Lobster Two\",v:[400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Londrina Outline\",v:[400],f:\"display\"},{n:\"Londrina Shadow\",v:[400],f:\"display\"},{n:\"Londrina Sketch\",v:[400],f:\"display\"},{n:\"Londrina Solid\",v:[\"100\",\"300\",400,900],f:\"display\"},{n:\"Long Cang\",v:[400],f:\"handwriting\"},{n:\"Lora\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Love Light\",v:[400],f:\"handwriting\"},{n:\"Love Ya Like A Sister\",v:[400],f:\"display\"},{n:\"Loved by the King\",v:[400],f:\"handwriting\"},{n:\"Lovers Quarrel\",v:[400],f:\"handwriting\"},{n:\"Luckiest Guy\",v:[400],f:\"display\"},{n:\"Lusitana\",v:[400,700],f:\"serif\"},{n:\"Lustria\",v:[400],f:\"serif\"},{n:\"Luxurious Roman\",v:[400],f:\"display\"},{n:\"Luxurious Script\",v:[400],f:\"handwriting\"},{n:\"Labrada\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"M PLUS 1\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"M PLUS 1 Code\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"M PLUS 1p\",v:[\"100\",\"300\",400,500,700,800,900],f:\"sans-serif\"},{n:\"M PLUS 2\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"M PLUS Code Latin\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"M PLUS Rounded 1c\",v:[\"100\",\"300\",400,500,700,800,900],f:\"sans-serif\"},{n:\"Ma Shan Zheng\",v:[400],f:\"handwriting\"},{n:\"Macondo\",v:[400],f:\"display\"},{n:\"Macondo Swash Caps\",v:[400],f:\"display\"},{n:\"Mada\",v:[\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Magra\",v:[400,700],f:\"sans-serif\"},{n:\"Maiden Orange\",v:[400],f:\"display\"},{n:\"Maitree\",v:[\"200\",\"300\",400,500,600,700],f:\"serif\"},{n:\"Major Mono Display\",v:[400],f:\"monospace\"},{n:\"Mako\",v:[400],f:\"sans-serif\"},{n:\"Mali\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"handwriting\"},{n:\"Mallanna\",v:[400],f:\"sans-serif\"},{n:\"Mandali\",v:[400],f:\"sans-serif\"},{n:\"Manjari\",v:[\"100\",400,700],f:\"sans-serif\"},{n:\"Manrope\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mansalva\",v:[400],f:\"handwriting\"},{n:\"Manuale\",v:[\"300\",400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Marcellus\",v:[400],f:\"serif\"},{n:\"Marcellus SC\",v:[400],f:\"serif\"},{n:\"Marck Script\",v:[400],f:\"handwriting\"},{n:\"Margarine\",v:[400],f:\"display\"},{n:\"Markazi Text\",v:[400,500,600,700],f:\"serif\"},{n:\"Marko One\",v:[400],f:\"serif\"},{n:\"Marmelad\",v:[400],f:\"sans-serif\"},{n:\"Martel\",v:[\"200\",\"300\",400,600,700,800,900],f:\"serif\"},{n:\"Martel Sans\",v:[\"200\",\"300\",400,600,700,800,900],f:\"sans-serif\"},{n:\"Marvel\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Mate\",v:[400,\"400i\"],f:\"serif\"},{n:\"Mate SC\",v:[400],f:\"serif\"},{n:\"Maven Pro\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"McLaren\",v:[400],f:\"display\"},{n:\"Mea Culpa\",v:[400],f:\"handwriting\"},{n:\"Meddon\",v:[400],f:\"handwriting\"},{n:\"MedievalSharp\",v:[400],f:\"display\"},{n:\"Medula One\",v:[400],f:\"display\"},{n:\"Meera Inimai\",v:[400],f:\"sans-serif\"},{n:\"Megrim\",v:[400],f:\"display\"},{n:\"Meie Script\",v:[400],f:\"handwriting\"},{n:\"Meow Script\",v:[400],f:\"handwriting\"},{n:\"Merienda\",v:[300,400,500,600,700,800,900],f:\"handwriting\"},{n:\"Merriweather\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\",900,\"900i\"],f:\"serif\"},{n:\"Merriweather Sans\",v:[\"300\",400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Metal\",v:[400],f:\"display\"},{n:\"Metal Mania\",v:[400],f:\"display\"},{n:\"Metamorphous\",v:[400],f:\"display\"},{n:\"Metrophobic\",v:[400],f:\"sans-serif\"},{n:\"Michroma\",v:[400],f:\"sans-serif\"},{n:\"Milonga\",v:[400],f:\"display\"},{n:\"Miltonian\",v:[400],f:\"display\"},{n:\"Miltonian Tattoo\",v:[400],f:\"display\"},{n:\"Mina\",v:[400,700],f:\"sans-serif\"},{n:\"Miniver\",v:[400],f:\"display\"},{n:\"Miriam Libre\",v:[400,700],f:\"sans-serif\"},{n:\"Mirza\",v:[400,500,600,700],f:\"display\"},{n:\"Miss Fajardose\",v:[400],f:\"handwriting\"},{n:\"Mitr\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Mochiy Pop One\",v:[400],f:\"sans-serif\"},{n:\"Mochiy Pop P One\",v:[400],f:\"sans-serif\"},{n:\"Modak\",v:[400],f:\"display\"},{n:\"Modern Antiqua\",v:[400],f:\"display\"},{n:\"Mogra\",v:[400],f:\"display\"},{n:\"Mohave\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Molengo\",v:[400],f:\"sans-serif\"},{n:\"Molle\",v:[\"400i\"],f:\"handwriting\"},{n:\"Monda\",v:[400,700],f:\"sans-serif\"},{n:\"Monofett\",v:[400],f:\"monospace\"},{n:\"Monoton\",v:[400],f:\"display\"},{n:\"Monsieur La Doulaise\",v:[400],f:\"handwriting\"},{n:\"Montaga\",v:[400],f:\"serif\"},{n:\"Montagu Slab\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"serif\"},{n:\"MonteCarlo\",v:[400],f:\"handwriting\"},{n:\"Montez\",v:[400],f:\"handwriting\"},{n:\"Montserrat\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Montserrat Alternates\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Montserrat Subrayada\",v:[400,700],f:\"sans-serif\"},{n:\"Moo Lah Lah\",v:[400],f:\"display\"},{n:\"Moon Dance\",v:[400],f:\"handwriting\"},{n:\"Moul\",v:[400],f:\"display\"},{n:\"Moulpali\",v:[400],f:\"display\"},{n:\"Mountains of Christmas\",v:[400,700],f:\"display\"},{n:\"Mouse Memoirs\",v:[400],f:\"sans-serif\"},{n:\"Mr Bedfort\",v:[400],f:\"handwriting\"},{n:\"Mr Dafoe\",v:[400],f:\"handwriting\"},{n:\"Mr De Haviland\",v:[400],f:\"handwriting\"},{n:\"Mrs Saint Delafield\",v:[400],f:\"handwriting\"},{n:\"Mrs Sheppards\",v:[400],f:\"handwriting\"},{n:\"Ms Madi\",v:[400],f:\"handwriting\"},{n:\"Mukta\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mukta Mahee\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mukta Malar\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mukta Vaani\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mulish\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Murecho\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"MuseoModerno\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"display\"},{n:\"My Soul\",v:[400],f:\"handwriting\"},{n:\"Mystery Quest\",v:[400],f:\"display\"},{n:\"Marhey\",v:[300,400,500,600,700],f:\"display\"},{n:\"Martian Mono\",v:[100,200,300,400,500,600,700,800],f:\"monospace\"},{n:\"Material Icons\",v:[400],f:\"monospace\"},{n:\"Material Icons Outlined\",v:[400],f:\"monospace\"},{n:\"Material Icons Round\",v:[400],f:\"monospace\"},{n:\"Material Icons Sharp\",v:[400],f:\"monospace\"},{n:\"Material Icons Two Tone\",v:[400],f:\"monospace\"},{n:\"Material Symbols Outlined\",v:[100,200,300,400,500,600,700],f:\"monospace\"},{n:\"Material Symbols Rounded\",v:[100,200,300,400,500,600,700],f:\"monospace\"},{n:\"Material Symbols Sharp\",v:[100,200,300,400,500,600,700],f:\"monospace\"},{n:\"Mingzat\",v:[400],f:\"sans-serif\"},{n:\"Monomaniac One\",v:[400],f:\"sans-serif\"},{n:\"Mynerve\",v:[400],f:\"handwriting\"},{n:\"NTR\",v:[400],f:\"sans-serif\"},{n:\"Nanum Brush Script\",v:[400],f:\"handwriting\"},{n:\"Nanum Gothic\",v:[400,700,800],f:\"sans-serif\"},{n:\"Nanum Gothic Coding\",v:[400,700],f:\"monospace\"},{n:\"Nanum Myeongjo\",v:[400,700,800],f:\"serif\"},{n:\"Nanum Pen Script\",v:[400],f:\"handwriting\"},{n:\"Neonderthaw\",v:[400],f:\"handwriting\"},{n:\"Nerko One\",v:[400],f:\"handwriting\"},{n:\"Neucha\",v:[400],f:\"handwriting\"},{n:\"Neuton\",v:[\"200\",\"300\",400,\"400i\",700,800],f:\"serif\"},{n:\"New Rocker\",v:[400],f:\"display\"},{n:\"New Tegomin\",v:[400],f:\"serif\"},{n:\"News Cycle\",v:[400,700],f:\"sans-serif\"},{n:\"Newsreader\",v:[\"200\",\"300\",400,500,600,700,800,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Niconne\",v:[400],f:\"handwriting\"},{n:\"Niramit\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Nixie One\",v:[400],f:\"display\"},{n:\"Nobile\",v:[400,\"400i\",500,\"500i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Nokora\",v:[\"100\",\"300\",400,700,900],f:\"sans-serif\"},{n:\"Norican\",v:[400],f:\"handwriting\"},{n:\"Nosifer\",v:[400],f:\"display\"},{n:\"Notable\",v:[400],f:\"sans-serif\"},{n:\"Nothing You Could Do\",v:[400],f:\"handwriting\"},{n:\"Noticia Text\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Noto Emoji\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Noto Kufi Arabic\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Music\",v:[400],f:\"sans-serif\"},{n:\"Noto Naskh Arabic\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Nastaliq Urdu\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Rashi Hebrew\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Sans\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Noto Sans Adlam\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Adlam Unjoined\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Anatolian Hieroglyphs\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Arabic\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Armenian\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Avestan\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Balinese\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Bamum\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Bassa Vah\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Batak\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Bengali\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Bhaiksuki\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Brahmi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Buginese\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Buhid\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Canadian Aboriginal\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Carian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Caucasian Albanian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Chakma\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Cham\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Cherokee\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Coptic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Cuneiform\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Cypriot\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Deseret\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Devanagari\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Noto Sans Duployan\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Egyptian Hieroglyphs\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Elbasan\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Elymaic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Georgian\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Glagolitic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Gothic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Grantha\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Gujarati\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Gunjala Gondi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Gurmukhi\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans HK\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Noto Sans Hanifi Rohingya\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Hanunoo\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Hatran\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Hebrew\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Imperial Aramaic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Indic Siyaq Numbers\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Inscriptional Pahlavi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Inscriptional Parthian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans JP\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Javanese\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans KR\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Noto Sans Kaithi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Kannada\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Kayah Li\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Kharoshthi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Khmer\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Khojki\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Khudawadi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Lao\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Lepcha\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Limbu\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Linear A\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Linear B\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Lisu\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Lycian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Lydian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Mahajani\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Malayalam\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Mandaic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Manichaean\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Marchen\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Masaram Gondi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Math\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Mayan Numerals\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Medefaidrin\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Meetei Mayek\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Meroitic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Miao\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Modi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Mongolian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Mono\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"monospace\"},{n:\"Noto Sans Mro\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Multani\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Myanmar\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans NKo\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Nabataean\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans New Tai Lue\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Newa\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Nushu\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Ogham\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Ol Chiki\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Old Hungarian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Italic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old North Arabian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Permic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Persian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Sogdian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old South Arabian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Turkic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Oriya\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Osage\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Osmanya\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Pahawh Hmong\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Palmyrene\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Pau Cin Hau\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Phags Pa\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Phoenician\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Psalter Pahlavi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Rejang\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Runic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans SC\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Noto Sans Samaritan\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Saurashtra\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Sharada\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Shavian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Siddham\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Sinhala\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Sogdian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Sora Sompeng\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Soyombo\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Sundanese\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Syloti Nagri\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Symbols\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Symbols 2\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Syriac\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans TC\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Noto Sans Tagalog\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tagbanwa\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tai Le\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tai Tham\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Tai Viet\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Takri\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tamil\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Tamil Supplement\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Telugu\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Thaana\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Thai\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Thai Looped\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Tifinagh\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tirhuta\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Ugaritic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Vai\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Wancho\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Warang Citi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Yi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Zanabazar Square\",v:[400],f:\"sans-serif\"},{n:\"Noto Serif\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Noto Serif Ahom\",v:[400],f:\"serif\"},{n:\"Noto Serif Armenian\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Balinese\",v:[400],f:\"serif\"},{n:\"Noto Serif Bengali\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Devanagari\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Noto Serif Dogra\",v:[400],f:\"serif\"},{n:\"Noto Serif Ethiopic\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Georgian\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Grantha\",v:[400],f:\"serif\"},{n:\"Noto Serif Gujarati\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Gurmukhi\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Hebrew\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif JP\",v:[\"200\",\"300\",400,500,600,700,900],f:\"serif\"},{n:\"Noto Serif KR\",v:[\"200\",\"300\",400,500,600,700,900],f:\"serif\"},{n:\"Noto Serif Kannada\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Khmer\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Lao\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Malayalam\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Myanmar\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Nyiakeng Puachue Hmong\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Serif SC\",v:[\"200\",\"300\",400,500,600,700,900],f:\"serif\"},{n:\"Noto Serif Sinhala\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif TC\",v:[\"200\",\"300\",400,500,600,700,900],f:\"serif\"},{n:\"Noto Serif Tamil\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Noto Serif Tangut\",v:[400],f:\"serif\"},{n:\"Noto Serif Telugu\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Thai\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Tibetan\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Yezidi\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Traditional Nushu\",v:[300,400,500,600,700],f:\"sans-serif\"},{n:\"Nova Cut\",v:[400],f:\"display\"},{n:\"Nova Flat\",v:[400],f:\"display\"},{n:\"Nova Mono\",v:[400],f:\"monospace\"},{n:\"Nova Oval\",v:[400],f:\"display\"},{n:\"Nova Round\",v:[400],f:\"display\"},{n:\"Nova Script\",v:[400],f:\"display\"},{n:\"Nova Slim\",v:[400],f:\"display\"},{n:\"Nova Square\",v:[400],f:\"display\"},{n:\"Numans\",v:[400],f:\"sans-serif\"},{n:\"Nunito\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Nunito Sans\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Nabla\",v:[400],f:\"display\"},{n:\"Noto Color Emoji\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Chorasmian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Ethiopic\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Lao Looped\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Mende Kikakui\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Nag Mundari\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Nandinagari\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans SignWriting\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tangsa\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Serif HK\",v:[200,300,400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif NP Hmong\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Serif Oriya\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Serif Toto\",v:[400,500,600,700],f:\"serif\"},{n:\"Nuosu SIL\",v:[400],f:\"serif\"},{n:\"Odibee Sans\",v:[400],f:\"display\"},{n:\"Odor Mean Chey\",v:[400],f:\"serif\"},{n:\"Offside\",v:[400],f:\"display\"},{n:\"Oi\",v:[400],f:\"display\"},{n:\"Old Standard TT\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Oldenburg\",v:[400],f:\"display\"},{n:\"Ole\",v:[400],f:\"handwriting\"},{n:\"Oleo Script\",v:[400,700],f:\"display\"},{n:\"Oleo Script Swash Caps\",v:[400,700],f:\"display\"},{n:\"Oooh Baby\",v:[400],f:\"handwriting\"},{n:\"Open Sans\",v:[\"300\",400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Oranienbaum\",v:[400],f:\"serif\"},{n:\"Orbitron\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Oregano\",v:[400,\"400i\"],f:\"display\"},{n:\"Orelega One\",v:[400],f:\"display\"},{n:\"Orienta\",v:[400],f:\"sans-serif\"},{n:\"Original Surfer\",v:[400],f:\"display\"},{n:\"Oswald\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Outfit\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Over the Rainbow\",v:[400],f:\"handwriting\"},{n:\"Overlock\",v:[400,\"400i\",700,\"700i\",900,\"900i\"],f:\"display\"},{n:\"Overlock SC\",v:[400],f:\"display\"},{n:\"Overpass\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Overpass Mono\",v:[\"300\",400,500,600,700],f:\"monospace\"},{n:\"Ovo\",v:[400],f:\"serif\"},{n:\"Oxanium\",v:[\"200\",\"300\",400,500,600,700,800],f:\"display\"},{n:\"Oxygen\",v:[\"300\",400,700],f:\"sans-serif\"},{n:\"Oxygen Mono\",v:[400],f:\"monospace\"},{n:\"PT Mono\",v:[400],f:\"monospace\"},{n:\"PT Sans\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"PT Sans Caption\",v:[400,700],f:\"sans-serif\"},{n:\"PT Sans Narrow\",v:[400,700],f:\"sans-serif\"},{n:\"PT Serif\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"PT Serif Caption\",v:[400,\"400i\"],f:\"serif\"},{n:\"Pacifico\",v:[400],f:\"handwriting\"},{n:\"Padauk\",v:[400,700],f:\"sans-serif\"},{n:\"Palanquin\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Palanquin Dark\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Pangolin\",v:[400],f:\"handwriting\"},{n:\"Paprika\",v:[400],f:\"display\"},{n:\"Parisienne\",v:[400],f:\"handwriting\"},{n:\"Passero One\",v:[400],f:\"display\"},{n:\"Passion One\",v:[400,700,900],f:\"display\"},{n:\"Passions Conflict\",v:[400],f:\"handwriting\"},{n:\"Pathway Gothic One\",v:[400],f:\"sans-serif\"},{n:\"Patrick Hand\",v:[400],f:\"handwriting\"},{n:\"Patrick Hand SC\",v:[400],f:\"handwriting\"},{n:\"Pattaya\",v:[400],f:\"sans-serif\"},{n:\"Patua One\",v:[400],f:\"display\"},{n:\"Pavanam\",v:[400],f:\"sans-serif\"},{n:\"Paytone One\",v:[400],f:\"sans-serif\"},{n:\"Peddana\",v:[400],f:\"serif\"},{n:\"Peralta\",v:[400],f:\"display\"},{n:\"Permanent Marker\",v:[400],f:\"handwriting\"},{n:\"Petemoss\",v:[400],f:\"handwriting\"},{n:\"Petit Formal Script\",v:[400],f:\"handwriting\"},{n:\"Petrona\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Philosopher\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Piazzolla\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Piedra\",v:[400],f:\"display\"},{n:\"Pinyon Script\",v:[400],f:\"handwriting\"},{n:\"Pirata One\",v:[400],f:\"display\"},{n:\"Plaster\",v:[400],f:\"display\"},{n:\"Play\",v:[400,700],f:\"sans-serif\"},{n:\"Playball\",v:[400],f:\"display\"},{n:\"Playfair Display\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Playfair Display SC\",v:[400,\"400i\",700,\"700i\",900,\"900i\"],f:\"serif\"},{n:\"Plus Jakarta Sans\",v:[\"200\",\"300\",400,500,600,700,800,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Podkova\",v:[400,500,600,700,800],f:\"serif\"},{n:\"Poiret One\",v:[400],f:\"display\"},{n:\"Poller One\",v:[400],f:\"display\"},{n:\"Poly\",v:[400,\"400i\"],f:\"serif\"},{n:\"Pompiere\",v:[400],f:\"display\"},{n:\"Pontano Sans\",v:[300,400,500,600,700],f:\"sans-serif\"},{n:\"Poor Story\",v:[400],f:\"display\"},{n:\"Poppins\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Port Lligat Sans\",v:[400],f:\"sans-serif\"},{n:\"Port Lligat Slab\",v:[400],f:\"serif\"},{n:\"Potta One\",v:[400],f:\"display\"},{n:\"Pragati Narrow\",v:[400,700],f:\"sans-serif\"},{n:\"Praise\",v:[400],f:\"handwriting\"},{n:\"Prata\",v:[400],f:\"serif\"},{n:\"Preahvihear\",v:[400],f:\"sans-serif\"},{n:\"Press Start 2P\",v:[400],f:\"display\"},{n:\"Pridi\",v:[\"200\",\"300\",400,500,600,700],f:\"serif\"},{n:\"Princess Sofia\",v:[400],f:\"handwriting\"},{n:\"Prociono\",v:[400],f:\"serif\"},{n:\"Prompt\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Prosto One\",v:[400],f:\"display\"},{n:\"Proza Libre\",v:[400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"sans-serif\"},{n:\"Public Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Puppies Play\",v:[400],f:\"handwriting\"},{n:\"Puritan\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Purple Purse\",v:[400],f:\"display\"},{n:\"Padyakke Expanded One\",v:[400],f:\"display\"},{n:\"Pathway Extreme\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Phudu\",v:[300,400,500,600,700,800,900],f:\"display\"},{n:\"Playfair\",v:[300,400,500,600,700,800,900,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Poltawski Nowy\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Qahiri\",v:[400],f:\"sans-serif\"},{n:\"Quando\",v:[400],f:\"serif\"},{n:\"Quantico\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Quattrocento\",v:[400,700],f:\"serif\"},{n:\"Quattrocento Sans\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Questrial\",v:[400],f:\"sans-serif\"},{n:\"Quicksand\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Quintessential\",v:[400],f:\"handwriting\"},{n:\"Qwigley\",v:[400],f:\"handwriting\"},{n:\"Qwitcher Grypen\",v:[400,700],f:\"handwriting\"},{n:\"Racing Sans One\",v:[400],f:\"display\"},{n:\"Radio Canada\",v:[300,400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Radley\",v:[400,\"400i\"],f:\"serif\"},{n:\"Rajdhani\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Rakkas\",v:[400],f:\"display\"},{n:\"Raleway\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Raleway Dots\",v:[400],f:\"display\"},{n:\"Ramabhadra\",v:[400],f:\"sans-serif\"},{n:\"Ramaraja\",v:[400],f:\"serif\"},{n:\"Rambla\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Rammetto One\",v:[400],f:\"display\"},{n:\"Rampart One\",v:[400],f:\"display\"},{n:\"Ranchers\",v:[400],f:\"display\"},{n:\"Rancho\",v:[400],f:\"handwriting\"},{n:\"Ranga\",v:[400,700],f:\"display\"},{n:\"Rasa\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Rationale\",v:[400],f:\"sans-serif\"},{n:\"Ravi Prakash\",v:[400],f:\"display\"},{n:\"Readex Pro\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Recursive\",v:[\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Red Hat Display\",v:[\"300\",400,500,600,700,800,900,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Red Hat Mono\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"monospace\"},{n:\"Red Hat Text\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Red Rose\",v:[\"300\",400,500,600,700],f:\"display\"},{n:\"Redacted\",v:[400],f:\"display\"},{n:\"Redacted Script\",v:[\"300\",400,700],f:\"display\"},{n:\"Redressed\",v:[400],f:\"handwriting\"},{n:\"Reem Kufi\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Reenie Beanie\",v:[400],f:\"handwriting\"},{n:\"Reggae One\",v:[400],f:\"display\"},{n:\"Revalia\",v:[400],f:\"display\"},{n:\"Rhodium Libre\",v:[400],f:\"serif\"},{n:\"Ribeye\",v:[400],f:\"display\"},{n:\"Ribeye Marrow\",v:[400],f:\"display\"},{n:\"Righteous\",v:[400],f:\"display\"},{n:\"Risque\",v:[400],f:\"display\"},{n:\"Road Rage\",v:[400],f:\"display\"},{n:\"Roboto\",v:[\"100\",\"100i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",700,\"700i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Roboto Condensed\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Roboto Flex\",v:[400],f:\"sans-serif\"},{n:\"Roboto Mono\",v:[\"100\",\"200\",\"300\",400,500,600,700,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"monospace\"},{n:\"Roboto Serif\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Roboto Slab\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Rochester\",v:[400],f:\"handwriting\"},{n:\"Rock Salt\",v:[400],f:\"handwriting\"},{n:\"RocknRoll One\",v:[400],f:\"sans-serif\"},{n:\"Rokkitt\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Romanesco\",v:[400],f:\"handwriting\"},{n:\"Ropa Sans\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Rosario\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Rosarivo\",v:[400,\"400i\"],f:\"serif\"},{n:\"Rouge Script\",v:[400],f:\"handwriting\"},{n:\"Rowdies\",v:[\"300\",400,700],f:\"display\"},{n:\"Rozha One\",v:[400],f:\"serif\"},{n:\"Rubik\",v:[\"300\",400,500,600,700,800,900,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Rubik Beastly\",v:[400],f:\"display\"},{n:\"Rubik Bubbles\",v:[400],f:\"display\"},{n:\"Rubik Glitch\",v:[400],f:\"display\"},{n:\"Rubik Microbe\",v:[400],f:\"display\"},{n:\"Rubik Mono One\",v:[400],f:\"sans-serif\"},{n:\"Rubik Moonrocks\",v:[400],f:\"display\"},{n:\"Rubik Puddles\",v:[400],f:\"display\"},{n:\"Rubik Wet Paint\",v:[400],f:\"display\"},{n:\"Ruda\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Rufina\",v:[400,700],f:\"serif\"},{n:\"Ruge Boogie\",v:[400],f:\"handwriting\"},{n:\"Ruluko\",v:[400],f:\"sans-serif\"},{n:\"Rum Raisin\",v:[400],f:\"sans-serif\"},{n:\"Ruslan Display\",v:[400],f:\"display\"},{n:\"Russo One\",v:[400],f:\"sans-serif\"},{n:\"Ruthie\",v:[400],f:\"handwriting\"},{n:\"Rye\",v:[400],f:\"display\"},{n:\"Reem Kufi Fun\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Reem Kufi Ink\",v:[400],f:\"sans-serif\"},{n:\"Rubik 80s Fade\",v:[400],f:\"display\"},{n:\"Rubik Burned\",v:[400],f:\"display\"},{n:\"Rubik Dirt\",v:[400],f:\"display\"},{n:\"Rubik Distressed\",v:[400],f:\"display\"},{n:\"Rubik Gemstones\",v:[400],f:\"display\"},{n:\"Rubik Iso\",v:[400],f:\"display\"},{n:\"Rubik Marker Hatch\",v:[400],f:\"display\"},{n:\"Rubik Maze\",v:[400],f:\"display\"},{n:\"Rubik Pixels\",v:[400],f:\"display\"},{n:\"Rubik Spray Paint\",v:[400],f:\"display\"},{n:\"Rubik Storm\",v:[400],f:\"display\"},{n:\"Rubik Vinyl\",v:[400],f:\"display\"},{n:\"STIX Two Text\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Sacramento\",v:[400],f:\"handwriting\"},{n:\"Sahitya\",v:[400,700],f:\"serif\"},{n:\"Sail\",v:[400],f:\"display\"},{n:\"Saira\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Saira Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Saira Extra Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Saira Semi Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Saira Stencil One\",v:[400],f:\"display\"},{n:\"Salsa\",v:[400],f:\"display\"},{n:\"Sanchez\",v:[400,\"400i\"],f:\"serif\"},{n:\"Sancreek\",v:[400],f:\"display\"},{n:\"Sansita\",v:[400,\"400i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Sansita Swashed\",v:[\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Sarabun\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"sans-serif\"},{n:\"Sarala\",v:[400,700],f:\"sans-serif\"},{n:\"Sarina\",v:[400],f:\"display\"},{n:\"Sarpanch\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Sassy Frass\",v:[400],f:\"handwriting\"},{n:\"Satisfy\",v:[400],f:\"handwriting\"},{n:\"Sawarabi Gothic\",v:[400],f:\"sans-serif\"},{n:\"Sawarabi Mincho\",v:[400],f:\"serif\"},{n:\"Scada\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Scheherazade New\",v:[400,500,600,700],f:\"serif\"},{n:\"Schoolbell\",v:[400],f:\"handwriting\"},{n:\"Scope One\",v:[400],f:\"serif\"},{n:\"Seaweed Script\",v:[400],f:\"display\"},{n:\"Secular One\",v:[400],f:\"sans-serif\"},{n:\"Sedgwick Ave\",v:[400],f:\"handwriting\"},{n:\"Sedgwick Ave Display\",v:[400],f:\"handwriting\"},{n:\"Sen\",v:[400,700,800],f:\"sans-serif\"},{n:\"Send Flowers\",v:[400],f:\"handwriting\"},{n:\"Sevillana\",v:[400],f:\"display\"},{n:\"Seymour One\",v:[400],f:\"sans-serif\"},{n:\"Shadows Into Light\",v:[400],f:\"handwriting\"},{n:\"Shadows Into Light Two\",v:[400],f:\"handwriting\"},{n:\"Shalimar\",v:[400],f:\"handwriting\"},{n:\"Shanti\",v:[400],f:\"sans-serif\"},{n:\"Share\",v:[400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Share Tech\",v:[400],f:\"sans-serif\"},{n:\"Share Tech Mono\",v:[400],f:\"monospace\"},{n:\"Shippori Antique\",v:[400],f:\"sans-serif\"},{n:\"Shippori Antique B1\",v:[400],f:\"sans-serif\"},{n:\"Shippori Mincho\",v:[400,500,600,700,800],f:\"serif\"},{n:\"Shippori Mincho B1\",v:[400,500,600,700,800],f:\"serif\"},{n:\"Shojumaru\",v:[400],f:\"display\"},{n:\"Short Stack\",v:[400],f:\"handwriting\"},{n:\"Shrikhand\",v:[400],f:\"display\"},{n:\"Siemreap\",v:[400],f:\"display\"},{n:\"Sigmar One\",v:[400],f:\"display\"},{n:\"Signika\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Signika Negative\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Simonetta\",v:[400,\"400i\",900,\"900i\"],f:\"display\"},{n:\"Single Day\",v:[400],f:\"display\"},{n:\"Sintony\",v:[400,700],f:\"sans-serif\"},{n:\"Sirin Stencil\",v:[400],f:\"display\"},{n:\"Six Caps\",v:[400],f:\"sans-serif\"},{n:\"Skranji\",v:[400,700],f:\"display\"},{n:\"Slabo 13px\",v:[400],f:\"serif\"},{n:\"Slabo 27px\",v:[400],f:\"serif\"},{n:\"Slackey\",v:[400],f:\"display\"},{n:\"Smokum\",v:[400],f:\"display\"},{n:\"Smooch\",v:[400],f:\"handwriting\"},{n:\"Smooch Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Smythe\",v:[400],f:\"display\"},{n:\"Sniglet\",v:[400,800],f:\"display\"},{n:\"Snippet\",v:[400],f:\"sans-serif\"},{n:\"Snowburst One\",v:[400],f:\"display\"},{n:\"Sofadi One\",v:[400],f:\"display\"},{n:\"Sofia\",v:[400],f:\"handwriting\"},{n:\"Solway\",v:[\"300\",400,500,700,800],f:\"serif\"},{n:\"Song Myung\",v:[400],f:\"serif\"},{n:\"Sonsie One\",v:[400],f:\"display\"},{n:\"Sora\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Sorts Mill Goudy\",v:[400,\"400i\"],f:\"serif\"},{n:\"Source Code Pro\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"monospace\"},{n:\"Source Sans 3\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Source Sans Pro\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",600,\"600i\",700,\"700i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Source Serif 4\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Source Serif Pro\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",600,\"600i\",700,\"700i\",900,\"900i\"],f:\"serif\"},{n:\"Space Grotesk\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Space Mono\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Special Elite\",v:[400],f:\"display\"},{n:\"Spectral\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"serif\"},{n:\"Spectral SC\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"serif\"},{n:\"Spicy Rice\",v:[400],f:\"display\"},{n:\"Spinnaker\",v:[400],f:\"sans-serif\"},{n:\"Spirax\",v:[400],f:\"display\"},{n:\"Spline Sans\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Squada One\",v:[400],f:\"display\"},{n:\"Square Peg\",v:[400],f:\"handwriting\"},{n:\"Sree Krushnadevaraya\",v:[400],f:\"serif\"},{n:\"Sriracha\",v:[400],f:\"handwriting\"},{n:\"Srisakdi\",v:[400,700],f:\"display\"},{n:\"Staatliches\",v:[400],f:\"display\"},{n:\"Stalemate\",v:[400],f:\"handwriting\"},{n:\"Stalinist One\",v:[400],f:\"display\"},{n:\"Stardos Stencil\",v:[400,700],f:\"display\"},{n:\"Stick\",v:[400],f:\"sans-serif\"},{n:\"Stick No Bills\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Stint Ultra Condensed\",v:[400],f:\"display\"},{n:\"Stint Ultra Expanded\",v:[400],f:\"display\"},{n:\"Stoke\",v:[\"300\",400],f:\"serif\"},{n:\"Strait\",v:[400],f:\"sans-serif\"},{n:\"Style Script\",v:[400],f:\"handwriting\"},{n:\"Stylish\",v:[400],f:\"sans-serif\"},{n:\"Sue Ellen Francisco\",v:[400],f:\"handwriting\"},{n:\"Suez One\",v:[400],f:\"serif\"},{n:\"Sulphur Point\",v:[\"300\",400,700],f:\"sans-serif\"},{n:\"Sumana\",v:[400,700],f:\"serif\"},{n:\"Sunflower\",v:[\"300\",500,700],f:\"sans-serif\"},{n:\"Sunshiney\",v:[400],f:\"handwriting\"},{n:\"Supermercado One\",v:[400],f:\"display\"},{n:\"Sura\",v:[400,700],f:\"serif\"},{n:\"Suranna\",v:[400],f:\"serif\"},{n:\"Suravaram\",v:[400],f:\"serif\"},{n:\"Suwannaphum\",v:[\"100\",\"300\",400,700,900],f:\"serif\"},{n:\"Swanky and Moo Moo\",v:[400],f:\"handwriting\"},{n:\"Syncopate\",v:[400,700],f:\"sans-serif\"},{n:\"Syne\",v:[400,500,600,700,800],f:\"sans-serif\"},{n:\"Syne Mono\",v:[400],f:\"monospace\"},{n:\"Syne Tactile\",v:[400],f:\"display\"},{n:\"Schibsted Grotesk\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Shantell Sans\",v:[300,400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"display\"},{n:\"Sigmar\",v:[400],f:\"display\"},{n:\"Silkscreen\",v:[400,700],f:\"display\"},{n:\"Slackside One\",v:[400],f:\"handwriting\"},{n:\"Sofia Sans\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Sofia Sans Condensed\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Sofia Sans Extra Condensed\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Sofia Sans Semi Condensed\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Solitreo\",v:[400],f:\"handwriting\"},{n:\"Sono\",v:[200,300,400,500,600,700,800],f:\"sans-serif\"},{n:\"Splash\",v:[400],f:\"handwriting\"},{n:\"Spline Sans Mono\",v:[300,400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"monospace\"},{n:\"Tajawal\",v:[\"200\",\"300\",400,500,700,800,900],f:\"sans-serif\"},{n:\"Tangerine\",v:[400,700],f:\"handwriting\"},{n:\"Tapestry\",v:[400],f:\"handwriting\"},{n:\"Taprom\",v:[400],f:\"display\"},{n:\"Tauri\",v:[400],f:\"sans-serif\"},{n:\"Taviraj\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"serif\"},{n:\"Teko\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Telex\",v:[400],f:\"sans-serif\"},{n:\"Tenali Ramakrishna\",v:[400],f:\"sans-serif\"},{n:\"Tenor Sans\",v:[400],f:\"sans-serif\"},{n:\"Text Me One\",v:[400],f:\"sans-serif\"},{n:\"Texturina\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Thasadith\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"The Girl Next Door\",v:[400],f:\"handwriting\"},{n:\"The Nautigal\",v:[400,700],f:\"handwriting\"},{n:\"Tienne\",v:[400,700,900],f:\"serif\"},{n:\"Tillana\",v:[400,500,600,700,800],f:\"handwriting\"},{n:\"Timmana\",v:[400],f:\"sans-serif\"},{n:\"Tinos\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Titan One\",v:[400],f:\"display\"},{n:\"Titillium Web\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",600,\"600i\",700,\"700i\",900],f:\"sans-serif\"},{n:\"Tomorrow\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Tourney\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"display\"},{n:\"Trade Winds\",v:[400],f:\"display\"},{n:\"Train One\",v:[400],f:\"display\"},{n:\"Trirong\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"serif\"},{n:\"Trispace\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Trocchi\",v:[400],f:\"serif\"},{n:\"Trochut\",v:[400,\"400i\",700],f:\"display\"},{n:\"Truculenta\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Trykker\",v:[400],f:\"serif\"},{n:\"Tulpen One\",v:[400],f:\"display\"},{n:\"Turret Road\",v:[\"200\",\"300\",400,500,700,800],f:\"display\"},{n:\"Twinkle Star\",v:[400],f:\"handwriting\"},{n:\"Tai Heritage Pro\",v:[400,700],f:\"serif\"},{n:\"Tilt Neon\",v:[400],f:\"display\"},{n:\"Tilt Prism\",v:[400],f:\"display\"},{n:\"Tilt Warp\",v:[400],f:\"display\"},{n:\"Tiro Bangla\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Devanagari Hindi\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Devanagari Marathi\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Devanagari Sanskrit\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Gurmukhi\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Kannada\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Tamil\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Telugu\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tsukimi Rounded\",v:[300,400,500,600,700],f:\"sans-serif\"},{n:\"Ubuntu\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Ubuntu Condensed\",v:[400],f:\"sans-serif\"},{n:\"Ubuntu Mono\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Uchen\",v:[400],f:\"serif\"},{n:\"Ultra\",v:[400],f:\"serif\"},{n:\"Uncial Antiqua\",v:[400],f:\"display\"},{n:\"Underdog\",v:[400],f:\"display\"},{n:\"Unica One\",v:[400],f:\"display\"},{n:\"UnifrakturCook\",v:[700],f:\"display\"},{n:\"UnifrakturMaguntia\",v:[400],f:\"display\"},{n:\"Unkempt\",v:[400,700],f:\"display\"},{n:\"Unlock\",v:[400],f:\"display\"},{n:\"Unna\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Updock\",v:[400],f:\"handwriting\"},{n:\"Urbanist\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Unbounded\",v:[200,300,400,500,600,700,800,900],f:\"display\"},{n:\"VT323\",v:[400],f:\"monospace\"},{n:\"Vampiro One\",v:[400],f:\"display\"},{n:\"Varela\",v:[400],f:\"sans-serif\"},{n:\"Varela Round\",v:[400],f:\"sans-serif\"},{n:\"Varta\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Vast Shadow\",v:[400],f:\"display\"},{n:\"Vazirmatn\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Vesper Libre\",v:[400,500,700,900],f:\"serif\"},{n:\"Viaoda Libre\",v:[400],f:\"display\"},{n:\"Vibes\",v:[400],f:\"display\"},{n:\"Vibur\",v:[400],f:\"handwriting\"},{n:\"Vidaloka\",v:[400],f:\"serif\"},{n:\"Viga\",v:[400],f:\"sans-serif\"},{n:\"Voces\",v:[400],f:\"display\"},{n:\"Volkhov\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Vollkorn\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Vollkorn SC\",v:[400,600,700,900],f:\"serif\"},{n:\"Voltaire\",v:[400],f:\"sans-serif\"},{n:\"Vujahday Script\",v:[400],f:\"handwriting\"},{n:\"Vina Sans\",v:[400],f:\"display\"},{n:\"Waiting for the Sunrise\",v:[400],f:\"handwriting\"},{n:\"Wallpoet\",v:[400],f:\"display\"},{n:\"Walter Turncoat\",v:[400],f:\"handwriting\"},{n:\"Warnes\",v:[400],f:\"display\"},{n:\"Water Brush\",v:[400],f:\"handwriting\"},{n:\"Waterfall\",v:[400],f:\"handwriting\"},{n:\"Wellfleet\",v:[400],f:\"display\"},{n:\"Wendy One\",v:[400],f:\"sans-serif\"},{n:\"Whisper\",v:[400],f:\"handwriting\"},{n:\"WindSong\",v:[400,500],f:\"handwriting\"},{n:\"Wire One\",v:[400],f:\"sans-serif\"},{n:\"Work Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Wix Madefor Display\",v:[400,500,600,700,800],f:\"sans-serif\"},{n:\"Wix Madefor Text\",v:[400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"sans-serif\"},{n:\"Xanh Mono\",v:[400,\"400i\"],f:\"monospace\"},{n:\"Yaldevi\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Yanone Kaffeesatz\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Yantramanav\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Yatra One\",v:[400],f:\"display\"},{n:\"Yellowtail\",v:[400],f:\"handwriting\"},{n:\"Yeon Sung\",v:[400],f:\"display\"},{n:\"Yeseva One\",v:[400],f:\"display\"},{n:\"Yesteryear\",v:[400],f:\"handwriting\"},{n:\"Yomogi\",v:[400],f:\"handwriting\"},{n:\"Yrsa\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Yuji Boku\",v:[400],f:\"serif\"},{n:\"Yuji Mai\",v:[400],f:\"serif\"},{n:\"Yuji Syuku\",v:[400],f:\"serif\"},{n:\"Yusei Magic\",v:[400],f:\"sans-serif\"},{n:\"Ysabeau\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"ZCOOL KuaiLe\",v:[400],f:\"sans-serif\"},{n:\"ZCOOL QingKe HuangYou\",v:[400],f:\"sans-serif\"},{n:\"ZCOOL XiaoWei\",v:[400],f:\"sans-serif\"},{n:\"Zen Antique\",v:[400],f:\"serif\"},{n:\"Zen Antique Soft\",v:[400],f:\"serif\"},{n:\"Zen Dots\",v:[400],f:\"display\"},{n:\"Zen Kaku Gothic Antique\",v:[\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Zen Kaku Gothic New\",v:[\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Zen Kurenaido\",v:[400],f:\"sans-serif\"},{n:\"Zen Loop\",v:[400,\"400i\"],f:\"display\"},{n:\"Zen Maru Gothic\",v:[\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Zen Old Mincho\",v:[400,500,600,700,900],f:\"serif\"},{n:\"Zen Tokyo Zoo\",v:[400],f:\"display\"},{n:\"Zeyada\",v:[400],f:\"handwriting\"},{n:\"Zhi Mang Xing\",v:[400],f:\"handwriting\"},{n:\"Zilla Slab\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"Zilla Slab Highlight\",v:[400,700],f:\"display\"}]},7763:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294);const r={};r.left=(0,a.createElement)(\"svg\",{width:24,height:24,xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M4 19.8h8.9v-1.5H4v1.5zm8.9-15.6H4v1.5h8.9V4.2zm-8.9 7v1.5h16v-1.5H4z\"})),r.center=(0,a.createElement)(\"svg\",{width:24,height:24,xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.4 4.2H7.6v1.5h8.9V4.2zM4 11.2v1.5h16v-1.5H4zm3.6 8.6h8.9v-1.5H7.6v1.5z\"})),r.right=(0,a.createElement)(\"svg\",{width:24,height:24,xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.1 19.8H20v-1.5h-8.9v1.5zm0-15.6v1.5H20V4.2h-8.9zM4 12.8h16v-1.5H4v1.5z\"})),r.spacing=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:24,height:24,fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"#1E1E1E\",strokeWidth:\"1.5\",d:\"m10 8-3.3 3.3a1 1 0 0 0 0 1.4L10 16m4-8 3.3 3.3a1 1 0 0 1 0 1.4L14 16m-7.59-4H17.6M20 4v16M4 4v16\"})),r.updateLink=(0,a.createElement)(\"svg\",{style:{height:\"20px\",width:\"20px\"},xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"20\",height:\"20\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fill:\"#070707\",fillRule:\"evenodd\",d:\"M12.95 2.93a5.75 5.75 0 0 1 8.13 8.13v.01l-3 3a5.75 5.75 0 0 1-8.68-.62.75.75 0 0 1 1.2-.9 4.25 4.25 0 0 0 6.41.46l3-3a4.25 4.25 0 0 0-6.02-6l-1.71 1.7a.75.75 0 1 1-1.06-1.06l1.73-1.72Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fill:\"#070707\",fillRule:\"evenodd\",d:\"M7.99 8.6a5.75 5.75 0 0 1 6.61 1.95.75.75 0 1 1-1.2.9 4.25 4.25 0 0 0-6.41-.46l-3 3a4.25 4.25 0 0 0 6.01 6l1.71-1.7a.75.75 0 0 1 1.06 1.06l-1.72 1.72a5.75 5.75 0 0 1-8.13-8.13l.01-.01 3-3a5.75 5.75 0 0 1 2.06-1.32Z\",clipRule:\"evenodd\"})),r.addSubmenu=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"16\",height:\"16\",fill:\"none\",viewBox:\"0 0 16 16\"},(0,a.createElement)(\"g\",{fill:\"#070707\",fillRule:\"evenodd\",clipPath:\"url(#a)\",clipRule:\"evenodd\"},(0,a.createElement)(\"path\",{d:\"M.17 2C.17.99.99.17 2 .17h12c1.01 0 1.83.82 1.83 1.83v1.33c0 1.02-.82 1.84-1.83 1.84H2A1.83 1.83 0 0 1 .17 3.33V2ZM2 1.17a.83.83 0 0 0-.83.83v1.33c0 .46.37.84.83.84h12c.46 0 .83-.38.83-.84V2a.83.83 0 0 0-.83-.83H2ZM5.5 8c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83v.67c0 1-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 8.67V8Zm1.83-.83A.83.83 0 0 0 6.5 8v.67c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83V8a.83.83 0 0 0-.83-.83H7.33ZM5.5 13.33c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83V14c0 1.01-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 14v-.67Zm1.83-.83a.83.83 0 0 0-.83.83V14c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83v-.67a.83.83 0 0 0-.83-.83H7.33Z\"}),(0,a.createElement)(\"path\",{d:\"M2.17 13V4.67h1V13c0 .1.07.17.16.17H6.5v1H3.33c-.64 0-1.16-.53-1.16-1.17Z\"}),(0,a.createElement)(\"path\",{d:\"M2.17 7.83H6.5v1H2.17v-1Z\"})),(0,a.createElement)(\"defs\",null,(0,a.createElement)(\"clipPath\",{id:\"a\"},(0,a.createElement)(\"path\",{fill:\"#fff\",d:\"M0 0h16v16H0z\"})))),r.textTab=(0,a.createElement)(\"span\",{className:\"ultp-tab-button\"},(0,a.createElement)(\"svg\",{width:24,height:24,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4 18V6C4 4.89543 4.89543 4 6 4H14.8639C15.3943 4 15.903 4.21071 16.2781 4.58579L19.4142 7.72191C19.7893 8.09698 20 8.60569 20 9.13612V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M8 15H16\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M8 12H16\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M8 9H14\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"})),(0,a.createElement)(\"span\",null,\"Text\")),r.style=(0,a.createElement)(\"span\",{className:\"ultp-tab-button\"},(0,a.createElement)(\"svg\",{width:24,height:24,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"circle\",{cx:\"16.25\",cy:\"9.25\",r:\"1.25\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z\",fill:\"#1E1E1E\"})),(0,a.createElement)(\"span\",null,\"Style\")),r.settings3=(0,a.createElement)(\"span\",{className:\"ultp-tab-button\"},(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M20.0733 7.98829L19.5027 6.9982C19.02 6.16044 17.9503 5.87144 17.1114 6.35213C16.7121 6.58737 16.2356 6.65411 15.787 6.53764C15.3384 6.42116 14.9546 6.13103 14.7201 5.73123C14.5693 5.47711 14.4882 5.18767 14.4852 4.89218C14.4988 4.41843 14.3201 3.95934 13.9897 3.61951C13.6593 3.27967 13.2055 3.08802 12.7316 3.08821H11.5821C11.1177 3.08821 10.6725 3.27323 10.345 3.60234C10.0175 3.93145 9.83459 4.37752 9.83682 4.84183C9.82306 5.80049 9.04195 6.57039 8.08319 6.57029C7.7877 6.56722 7.49826 6.48617 7.24414 6.33535C6.40523 5.85465 5.33553 6.14366 4.85284 6.98142L4.24033 7.98829C3.75822 8.825 4.04329 9.89403 4.87801 10.3796C5.42059 10.6928 5.75483 11.2718 5.75483 11.8983C5.75483 12.5248 5.42059 13.1037 4.87801 13.417C4.04435 13.8993 3.75897 14.9657 4.24033 15.7999L4.81927 16.7984C5.04543 17.2064 5.42489 17.5076 5.87369 17.6351C6.32248 17.7627 6.8036 17.7061 7.21058 17.478C7.61067 17.2445 8.08743 17.1806 8.5349 17.3003C8.98238 17.4201 9.36347 17.7136 9.59349 18.1157C9.74431 18.3698 9.82536 18.6592 9.82843 18.9547C9.82843 19.9232 10.6136 20.7083 11.5821 20.7083H12.7316C13.6968 20.7083 14.4806 19.9283 14.4852 18.9631C14.4829 18.4973 14.667 18.05 14.9963 17.7206C15.3257 17.3913 15.773 17.2073 16.2388 17.2095C16.5336 17.2174 16.8218 17.2981 17.0779 17.4444C17.9146 17.9265 18.9836 17.6415 19.4692 16.8067L20.0733 15.7999C20.3071 15.3985 20.3713 14.9205 20.2516 14.4717C20.1319 14.0228 19.8382 13.6402 19.4356 13.4086C19.033 13.1769 18.7393 12.7943 18.6196 12.3455C18.4999 11.8967 18.5641 11.4186 18.7979 11.0173C18.95 10.7518 19.1701 10.5317 19.4356 10.3796C20.2653 9.89429 20.5497 8.83151 20.0733 7.99668V7.98829Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12.1606 14.3147C13.4952 14.3147 14.5771 13.2329 14.5771 11.8983C14.5771 10.5637 13.4952 9.4818 12.1606 9.4818C10.826 9.4818 9.74414 10.5637 9.74414 11.8983C9.74414 13.2329 10.826 14.3147 12.1606 14.3147Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),(0,a.createElement)(\"span\",null,\"Settings\")),r.add=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:22,height:24,viewBox:\"0 0 22 24\",fill:\"none\"},(0,a.createElement)(\"g\",{clipPath:\"url(#clip0_16_9344)\"},(0,a.createElement)(\"path\",{d:\"M15.7131 0.87241C16.6876 0.87241 17.4896 1.67503 17.4896 2.66957V17.6401C17.4896 18.626 16.6962 19.4373 15.7131 19.4373H2.63896C1.66445 19.4373 0.862407 18.6347 0.862407 17.6401V2.66957C0.862407 1.68375 1.65582 0.87241 2.63896 0.87241H15.7131ZM15.7131 0H2.63896C1.1815 0 0 1.1952 0 2.66957V17.6401C0 19.1145 1.1815 20.3097 2.63896 20.3097H15.7131C17.1705 20.3097 18.352 19.1145 18.352 17.6401V2.66957C18.352 1.1952 17.1705 0 15.7131 0Z\",fill:\"black\"}),(0,a.createElement)(\"path\",{d:\"M19.2921 10.2683H11.1337C9.63817 10.2683 8.42578 11.4948 8.42578 13.0077V21.2607C8.42578 22.7736 9.63817 24 11.1337 24H19.2921C20.7877 24 22.0001 22.7736 22.0001 21.2607V13.0077C22.0001 11.4948 20.7877 10.2683 19.2921 10.2683Z\",fill:\"black\"}),(0,a.createElement)(\"path\",{d:\"M15.7047 13.9934H14.7129V20.2835H15.7047V13.9934Z\",fill:\"white\"}),(0,a.createElement)(\"path\",{d:\"M18.3264 16.6282H12.1084V17.6314H18.3264V16.6282Z\",fill:\"white\"})),(0,a.createElement)(\"defs\",null,(0,a.createElement)(\"clipPath\",{id:\"clip0_16_9344\"},(0,a.createElement)(\"rect\",{width:22,height:24,fill:\"white\"})))),r.setting=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",role:\"img\",\"aria-hidden\":\"true\",focusable:\"false\"},(0,a.createElement)(\"path\",{d:\"M14.5 13.8c-1.1 0-2.1.7-2.4 1.8H4V17h8.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20v-1.5h-3.1c-.3-1-1.3-1.7-2.4-1.7zM11.9 7c-.3-1-1.3-1.8-2.4-1.8S7.4 6 7.1 7H4v1.5h3.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20V7h-8.1z\"})),r.styleIcon=(0,a.createElement)(\"svg\",{width:24,height:24,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",style:{fill:\"white\"}},(0,a.createElement)(\"path\",{d:\"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"circle\",{cx:\"16.25\",cy:\"9.25\",r:\"1.25\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z\",fill:\"#1E1E1E\"})),r.chatgpt=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",style:{fill:\"#10a37f\"},width:\"25\",height:\"25.06\",viewBox:\"0 0 25 25.06\"},(0,a.createElement)(\"path\",{\"data-name\":\"Path 146\",d:\"M24.795 12.941a6.153 6.153 0 0 0-1.519-2.7A6.07 6.07 0 0 0 22.8 5.1a6.327 6.327 0 0 0-6.88-2.917A6.28 6.28 0 0 0 5.139 4.471 6.223 6.223 0 0 0 .846 7.45a6.137 6.137 0 0 0 .862 7.358 6.07 6.07 0 0 0 .479 5.138 6.281 6.281 0 0 0 6.88 2.91A6.278 6.278 0 0 0 19.851 20.6a6.23 6.23 0 0 0 4.293-2.979 6.092 6.092 0 0 0 .651-4.682m-4.888 5.947v-6.22a.639.639 0 0 0-.285-.621L13.913 8.82l2.061-1.17L20.8 10.4a4.636 4.636 0 0 1 2.209 2.854 4.566 4.566 0 0 1-.475 3.517 4.662 4.662 0 0 1-2.185 1.943c-.146.063-.3.122-.446.178M5.083 6.178v6.2a.624.624 0 0 0 .279.622l5.708 3.226L9.011 17.4l-4.852-2.752a4.639 4.639 0 0 1-2.21-2.854 4.562 4.562 0 0 1 .473-3.514 4.687 4.687 0 0 1 1.784-1.736 4.551 4.551 0 0 1 .877-.367m11.268.023a.714.714 0 0 0-.707 0L9.855 9.5V7.1l4.92-2.748a4.79 4.79 0 0 1 6.485 1.721 4.574 4.574 0 0 1 .616 2.648c-.014.19-.039.393-.07.58zm-3.859 3.47 2.637 1.5v2.756l-2.637 1.457-2.631-1.5v-2.741zM8.8 6.067a.684.684 0 0 0-.3.624v6.4l-2.082-1.137V6.587a1.017 1.017 0 0 0 0-.112 4.75 4.75 0 0 1 7.364-3.911 6.33 6.33 0 0 1 .547.412zm-5.614 9.692 5.448 3.1a.713.713 0 0 0 .707 0l5.8-3.294v2.4l-4.927 2.729a4.79 4.79 0 0 1-6.485-1.713 4.573 4.573 0 0 1-.588-2.917c.013-.1.031-.2.05-.3m13 3.226a.647.647 0 0 0 .3-.627v-6.4l2.07 1.137v5.367a.637.637 0 0 0 0 .112 4.75 4.75 0 0 1-7.441 3.851 7.315 7.315 0 0 1-.467-.356z\",transform:\"translate(0 .001)\"})),r.fs_comment=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"50\",height:\"50.003\",viewBox:\"0 0 50 50.003\"},(0,a.createElement)(\"path\",{id:\"Path_2150\",\"data-name\":\"Path 2150\",d:\"M25,11.6c-21.64,0-25,2.79-25,20.8C0,46.131,1.963,51.017,12.476,52.567V61.6l10.646-8.4c.611.005,1.235.008,1.878.008,21.65,0,25-2.8,25-20.81S46.65,11.6,25,11.6m0,18.04a2.765,2.765,0,1,1-2.76,2.76A2.768,2.768,0,0,1,25,29.642m-9.53,0a2.765,2.765,0,1,1-2.76,2.76,2.768,2.768,0,0,1,2.76-2.76m19.06,5.53A2.765,2.765,0,1,1,37.3,32.4a2.768,2.768,0,0,1-2.77,2.77\",transform:\"translate(0 -11.602)\",fill:\"#037FFF\"})),r.fs_comment_selected=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"70\",height:\"70\",viewBox:\"0 0 70 70\"},(0,a.createElement)(\"g\",{id:\"Group_4357\",\"data-name\":\"Group 4357\",transform:\"translate(-221.11 2002)\"},(0,a.createElement)(\"path\",{id:\"Path_2154\",\"data-name\":\"Path 2154\",d:\"M172.35,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2155\",\"data-name\":\"Path 2155\",d:\"M181.88,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2156\",\"data-name\":\"Path 2156\",d:\"M191.41,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2157\",\"data-name\":\"Path 2157\",d:\"M204.65,0H153.58a9.468,9.468,0,0,0-9.47,9.46V60.54A9.468,9.468,0,0,0,153.58,70h51.07a9.46,9.46,0,0,0,9.46-9.46V9.46A9.46,9.46,0,0,0,204.65,0M179.11,51.61c-.64,0-1.26,0-1.87-.01L166.59,60V50.96c-10.51-1.55-12.48-6.43-12.48-20.16,0-18.01,3.36-20.8,25-20.8s25,2.79,25,20.8-3.35,20.81-25,20.81\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}))),r.fs_suggestion=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"50.001\",height:\"49.997\",viewBox:\"0 0 50.001 49.997\"},(0,a.createElement)(\"g\",{id:\"Group_4358\",\"data-name\":\"Group 4358\",transform:\"translate(-137.503 1994.592)\"},(0,a.createElement)(\"path\",{id:\"Path_2151\",\"data-name\":\"Path 2151\",d:\"M104.722,20.306H89.545V24.08a4.274,4.274,0,0,1-4.267,4.267H76.261a4.218,4.218,0,0,1-1.812-.424,4.272,4.272,0,0,1-4.107,3.166h-6.1V51.623A5.773,5.773,0,0,0,70.021,57.4h34.7a5.78,5.78,0,0,0,5.782-5.782V26.1a5.789,5.789,0,0,0-5.782-5.793M90.13,47.791H76.835a1.692,1.692,0,0,1,0-3.384H90.13a1.692,1.692,0,0,1,0,3.384m7.778-7.915H76.835a1.692,1.692,0,0,1,0-3.384H97.908a1.692,1.692,0,0,1,0,3.384\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2152\",\"data-name\":\"Path 2152\",d:\"M86.1,24.077V15.065a.827.827,0,0,0-.827-.827H80.619a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194h-2a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366v9.646a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2153\",\"data-name\":\"Path 2153\",d:\"M71.169,26.82V17.808a.827.827,0,0,0-.827-.827H65.684a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194H64.392a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366V26.82a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}))),r.fs_suggestion_selected=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"70\",height:\"70\",viewBox:\"0 0 70 70\"},(0,a.createElement)(\"path\",{id:\"Path_2158\",\"data-name\":\"Path 2158\",d:\"M329.38,0H278.3a9.46,9.46,0,0,0-9.46,9.46V60.54A9.46,9.46,0,0,0,278.3,70h51.08a9.466,9.466,0,0,0,9.46-9.46V9.46A9.466,9.466,0,0,0,329.38,0M293.77,17.03a.779.779,0,0,1,.09-.37l3.06-6.2a.834.834,0,0,1,.74-.46h2.01a.833.833,0,0,1,.74,1.2l-2.2,4.44a.825.825,0,0,0,.74,1.19h4.66a.828.828,0,0,1,.83.83v9.01a.828.828,0,0,1-.83.83H294.6a.828.828,0,0,1-.83-.83ZM278.84,29.41V19.77a.946.946,0,0,1,.08-.37l3.06-6.19a.82.82,0,0,1,.75-.46h2a.825.825,0,0,1,.74,1.19l-2.19,4.44a.826.826,0,0,0,.74,1.2h4.66a.824.824,0,0,1,.82.82v9.01a.826.826,0,0,1-.82.83h-9.02a.826.826,0,0,1-.82-.83m50,24.81A5.783,5.783,0,0,1,323.06,60H288.35a5.77,5.77,0,0,1-5.78-5.78V33.68h6.11a4.26,4.26,0,0,0,4.1-3.16,4.257,4.257,0,0,0,1.81.42h9.02a4.274,4.274,0,0,0,4.27-4.27V22.9h15.18a5.791,5.791,0,0,1,5.78,5.79Zm-12.6-15.13H295.17a1.69,1.69,0,1,0,0,3.38h21.07a1.69,1.69,0,1,0,0-3.38M308.46,47H295.17a1.7,1.7,0,0,0,0,3.39h13.29a1.7,1.7,0,0,0,0-3.39\",transform:\"translate(-268.84)\",fill:\"#037FFF\"})),r.grid_col1=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"22\",height:\"22\",viewBox:\"0 0 22 22\",fill:\"currentColor\"},(0,a.createElement)(\"g\",{transform:\"translate(-770 -381)\"},(0,a.createElement)(\"rect\",{width:\"10\",height:\"10\",transform:\"translate(770 381)\"}),(0,a.createElement)(\"rect\",{width:\"10\",height:\"10\",transform:\"translate(770 393)\"}),(0,a.createElement)(\"rect\",{width:\"10\",height:\"10\",transform:\"translate(782 381)\"}),(0,a.createElement)(\"rect\",{width:\"10\",height:\"10\",transform:\"translate(782 393)\"}))),r.grid_col2=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"22\",height:\"22\",viewBox:\"0 0 22 22\",fill:\"currentColor\"},(0,a.createElement)(\"g\",{transform:\"translate(-858 -381)\"},(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(858 381)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(858 389)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(858 397)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(866 381)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(866 389)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(866 397)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(874 381)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(874 389)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(874 397)\"}))),r.grid_col3=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"22\",height:\"22\",viewBox:\"0 0 22 22\"},(0,a.createElement)(\"g\",{transform:\"translate(-909 -381)\"},(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(909 381)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(909 387)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(909 393)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(909 399)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(915 381)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(915 387)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(915 393)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(915 399)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(921 381)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(921 387)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(921 393)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(921 399)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(927 381)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(927 387)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(927 393)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(927 399)\"}))),r.rocketPro=(0,a.createElement)(\"svg\",{width:\"16\",height:\"16\",viewBox:\"0 0 16 16\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M10.7991 7.20004C9.69681 7.20004 8.7993 6.30253 8.7993 5.20024C8.7993 4.09795 9.69681 3.20044 10.7991 3.20044C11.9014 3.20044 12.7989 4.09795 12.7989 5.20024C12.7989 6.30253 11.9014 7.20004 10.7991 7.20004ZM10.7991 4.00036C10.1376 4.00036 9.59922 4.53871 9.59922 5.20024C9.59922 5.86177 10.1376 6.40012 10.7991 6.40012C11.4606 6.40012 11.999 5.86177 11.999 5.20024C11.999 4.53871 11.4606 4.00036 10.7991 4.00036ZM0.400132 15.9992C0.335857 15.9993 0.272494 15.984 0.215433 15.9544C0.158371 15.9248 0.109297 15.8819 0.0723848 15.8292C0.0354726 15.7766 0.0118133 15.7159 0.00341887 15.6521C-0.00497556 15.5884 0.00214312 15.5236 0.0241696 15.4632C1.25525 12.0788 2.54952 10.3621 3.87019 10.3621C4.30615 10.3621 4.7133 10.5493 5.08207 10.9173C5.66441 11.4996 5.68521 12.0796 5.60042 12.4635C5.33324 13.6698 3.62941 14.8513 0.536919 15.976C0.49303 15.9917 0.446764 15.9998 0.400132 16V15.9992ZM3.87099 11.1612C3.47503 11.1612 3.00867 11.5084 2.52312 12.1651C2.04557 12.8107 1.56562 13.7306 1.09286 14.9065C2.16076 14.4769 3.01907 14.041 3.65181 13.6066C4.50533 13.0203 4.7581 12.5667 4.81969 12.2899C4.88129 12.0132 4.7821 11.7484 4.51652 11.4828C4.30055 11.2668 4.08937 11.162 3.87019 11.162L3.87099 11.1612Z\",fill:\"white\"}),(0,a.createElement)(\"path\",{d:\"M15.5986 0.00079992C13.5228 0.00079992 11.6734 0.352765 10.1 1.0471C8.80329 1.61984 7.693 2.42296 6.79949 3.43566C6.63311 3.62444 6.47872 3.81562 6.33554 4.0076C5.64601 4.05319 4.94048 4.32757 4.23655 4.82352C3.64061 5.24268 3.04227 5.82342 2.45673 6.54894C1.47282 7.76802 0.868084 8.9703 0.842486 9.0207C0.800011 9.10558 0.789106 9.2028 0.81172 9.29498C0.834335 9.38716 0.888995 9.4683 0.96593 9.52388C1.04287 9.57947 1.13706 9.60588 1.23168 9.5984C1.3263 9.59092 1.41518 9.55003 1.48242 9.48305C1.48642 9.47905 1.86878 9.10309 2.52072 8.73433C3.05826 8.43036 3.88698 8.07279 4.88928 8.0096C5.14286 8.65833 5.86838 9.43426 6.21635 9.78222C6.56431 10.1302 7.34024 10.8557 7.98897 11.1093C7.92578 12.1116 7.56821 12.9403 7.26425 13.4779C6.89468 14.1306 6.51952 14.5121 6.51632 14.5153C6.45032 14.5828 6.41026 14.6714 6.40318 14.7655C6.3961 14.8596 6.42247 14.9532 6.47763 15.0298C6.5328 15.1064 6.61322 15.1611 6.70473 15.1842C6.79625 15.2073 6.89297 15.1973 6.97787 15.1561C7.02827 15.1305 8.23055 14.5257 9.44963 13.5418C10.1752 12.9563 10.7559 12.358 11.1751 11.762C11.671 11.0573 11.9446 10.3526 11.991 9.66303C12.1822 9.52065 12.3733 9.36626 12.5629 9.19908C13.5756 8.30557 14.3787 7.19528 14.9515 5.89861C15.6458 4.32597 15.9978 2.47575 15.9978 0.39996V0H15.5978L15.5986 0.00079992ZM2.48552 7.84641C3.24785 6.74013 4.41333 5.36826 5.7268 4.93711C5.20765 5.84661 4.93888 6.68173 4.84209 7.21128C4.02236 7.26546 3.22145 7.48132 2.48552 7.84641ZM8.15376 13.5114C8.51883 12.7761 8.73444 11.9757 8.78809 11.1565C9.31684 11.0597 10.1528 10.7909 11.0615 10.2726C10.6295 11.5836 9.25845 12.7491 8.15296 13.5114H8.15376ZM12.0342 8.59994C10.3703 10.0678 8.64731 10.3998 8.39933 10.3998C8.39773 10.3998 8.23375 10.3966 7.79219 10.0854C7.48422 9.86861 7.12506 9.55984 6.78269 9.21748C6.44033 8.87511 6.13156 8.51595 5.91478 8.20798C5.60361 7.76642 5.60041 7.60244 5.60041 7.60084C5.60041 7.35286 5.93238 5.62984 7.40023 3.966C9.15686 1.9758 11.8454 0.887111 15.1947 0.806319C15.1139 4.15558 14.026 6.84411 12.035 8.60074L12.0342 8.59994Z\",fill:\"white\"})),r.subtract=(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"#070707\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.rightMark=(0,a.createElement)(\"svg\",{width:\"14\",height:\"11\",viewBox:\"0 0 14 11\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M1 5L5 9L13 1\",stroke:\"#5ECA70\",strokeWidth:\"1.5\"})),r.plus=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z\"})),r.delete=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M18.2 6.5H16c-.4 0-.8-.3-1-.7l-.3-1c-.1-.4-.5-.7-1-.7h-3.5c-.4 0-.8.3-1 .7l-.2 1c-.1.4-.5.7-1 .7H5.8c-.5 0-.8.3-.8.7s.3.8.8.8h12.5c.4 0 .7-.3.7-.8s-.3-.7-.8-.7zM12.5 16.5c0 .3-.2.5-.5.5s-.5-.2-.5-.5V9H6l1.3 9.3c.1 1 1 1.7 2 1.7h5.5c1 0 1.8-.7 2-1.7L18 9h-5.5v7.5z\"})),r.edit=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M19.3 18.1h-5.9c-.4 0-.8.3-.8.8s.3.8.8.8h5.9c.4 0 .8-.3.8-.8s-.4-.8-.8-.8zM16.2 11c1.5-1.9 1.5-2 1.6-2 .4-.6.5-1.2.3-1.9-.1-.7-.6-1.2-1.1-1.5 0 0-1.3-1-1.4-1.1-1.1-.9-2.7-.7-3.6.4l-7.7 9.6c-.3.4-.5 1.1-.3 1.7l.7 2.8c.1.3.4.6.7.6h3c.6 0 1.2-.3 1.6-.8 3.2-4.1 5.1-6.4 6.2-7.8zm-1.5-5.3s1.4 1.1 1.5 1.2c.2.1.4.4.5.6.1.3 0 .5-.1.7 0 .1-.4.6-1.1 1.3L12.3 7l.9-1.2c.4-.4 1-.5 1.5-.1zM8.8 17.8c-.1.1-.3.2-.5.2H5.9l-.5-2.2c0-.2 0-.4.1-.5l5.8-7.2 3.2 2.5c-1.7 2.2-4.1 5.3-5.7 7.2z\"})),r.duplicate=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"24\",height:\"24\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fill:\"currentColor\",fillRule:\"evenodd\",d:\"M11 9.75c-.69 0-1.25.56-1.25 1.25v9c0 .69.56 1.25 1.25 1.25h9c.69 0 1.25-.56 1.25-1.25v-9c0-.69-.56-1.25-1.25-1.25h-9ZM8.25 11A2.75 2.75 0 0 1 11 8.25h9A2.75 2.75 0 0 1 22.75 11v9A2.75 2.75 0 0 1 20 22.75h-9A2.75 2.75 0 0 1 8.25 20v-9Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fill:\"currentColor\",fillRule:\"evenodd\",d:\"M4 2.75A1.25 1.25 0 0 0 2.75 4v9A1.25 1.25 0 0 0 4 14.25h1a.75.75 0 0 1 0 1.5H4A2.75 2.75 0 0 1 1.25 13V4A2.75 2.75 0 0 1 4 1.25h9A2.75 2.75 0 0 1 15.75 4v1a.75.75 0 0 1-1.5 0V4A1.25 1.25 0 0 0 13 2.75H4Z\",clipRule:\"evenodd\"})),r.tabLongArrowRight=(0,a.createElement)(\"svg\",{width:\"33\",height:\"8\",viewBox:\"0 0 33 8\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M32.8536 4.35355C33.0488 4.15829 33.0488 3.84171 32.8536 3.64645L29.6716 0.464466C29.4763 0.269204 29.1597 0.269204 28.9645 0.464466C28.7692 0.659728 28.7692 0.976311 28.9645 1.17157L31.7929 4L28.9645 6.82843C28.7692 7.02369 28.7692 7.34027 28.9645 7.53553C29.1597 7.7308 29.4763 7.7308 29.6716 7.53553L32.8536 4.35355ZM0.5 4V4.5H32.5V4V3.5H0.5V4Z\",fill:\"currentColor\"})),r.saveLine=(0,a.createElement)(\"svg\",{width:\"16\",height:\"16\",viewBox:\"0 0 16 16\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3 8.66667L6.33333 12L13 4\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.rightAngle=(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M17.9333 12.8C18.4667 12.4 18.4667 11.6 17.9333 11.2L8.6 4.2C7.94076 3.70557 7 4.17595 7 5V19C7 19.824 7.94076 20.2944 8.6 19.8L17.9333 12.8Z\",fill:\"currentColor\"})),r.arrowRight=(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3 12H20M14 5L21 12L14 19\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.arrowLeft=(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M21 12H4M10 5L3 12L10 19\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.fiveStar=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M9.18029 2.60415C9.5027 1.90962 10.4975 1.90962 10.8199 2.60415L12.6 6.43897C12.7314 6.72197 13.0016 6.91689 13.3134 6.95362L17.5362 7.45111C18.3006 7.54117 18.6078 8.47852 18.043 8.99753L14.9193 11.8678C14.6892 12.0792 14.5862 12.394 14.6473 12.6992L15.4762 16.8444C15.6261 17.5942 14.8215 18.1737 14.1496 17.7999L10.4414 15.7375C10.1673 15.585 9.83291 15.585 9.55876 15.7375L5.8506 17.7999C5.17864 18.1737 4.37404 17.5942 4.52397 16.8444L5.35289 12.6992C5.41393 12.394 5.31093 12.0792 5.08084 11.8678L1.95716 8.99753C1.39232 8.47852 1.69954 7.54117 2.464 7.45111L6.68675 6.95362C6.99858 6.91689 7.26875 6.72197 7.40012 6.43897L9.18029 2.60415Z\",stroke:\"currentColor\",strokeWidth:\"1.31579\",strokeLinejoin:\"round\"})),r.knowledgeBase=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4.16667 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V7.35702C17.5 6.915 17.3244 6.49107 17.0118 6.17851L13.8215 2.98816C13.5089 2.67559 13.085 2.5 12.643 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V15.8333C2.5 16.7538 3.24619 17.5 4.16667 17.5Z\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.6665 7.5L9.99984 7.5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.6665 10L13.3332 10\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.6665 12.5L11.6665 12.5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.commentCount2=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M16.6667 3.33325H3.33341C2.41294 3.33325 1.66675 4.07944 1.66675 4.99992V12.4999C1.66675 13.4204 2.41294 14.1666 3.33341 14.1666H7.08341V17.4999L11.2501 14.1666H16.6667C17.5872 14.1666 18.3334 13.4204 18.3334 12.4999V4.99992C18.3334 4.07944 17.5872 3.33325 16.6667 3.33325Z\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.66675 9.16659L6.66675 8.33325\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M10 9.16659L10 8.33325\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M13.3333 9.16659L13.3333 8.33325\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.customerSupport=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4.1665 7.5C4.1665 4.73857 6.77818 2.5 9.99984 2.5C13.2215 2.5 15.8332 4.73857 15.8332 7.5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15.8333 14.1667V15.8334C15.8333 16.7539 15.0872 17.5001 14.1667 17.5001H10\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M3.42064 7.99896L2.038 8.91951C1.80593 9.07401 1.6665 9.33434 1.6665 9.61317V12.0538C1.6665 12.3327 1.80593 12.593 2.038 12.7475L3.42064 13.6681C3.88395 13.9765 4.47696 14.0133 4.97485 13.7645C5.50087 13.5016 5.83317 12.964 5.83317 12.376V9.29101C5.83317 8.70301 5.50087 8.16542 4.97485 7.90253C4.47696 7.65369 3.88395 7.69048 3.42064 7.99896Z\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15.0248 7.90253C15.5227 7.65369 16.1158 7.69048 16.579 7.99896L17.9617 8.91951C18.1938 9.07401 18.3332 9.33434 18.3332 9.61317V12.0538C18.3332 12.3327 18.1938 12.593 17.9617 12.7475L16.579 13.6681C16.1158 13.9765 15.5227 14.0133 15.0248 13.7645C14.4988 13.5016 14.1665 12.964 14.1665 12.376V9.29101C14.1665 8.70301 14.4988 8.16542 15.0248 7.90253Z\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.facebook=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4.16667 1.875C2.90101 1.875 1.875 2.90101 1.875 4.16667V15.8333C1.875 17.099 2.90101 18.125 4.16667 18.125H9.51011V12.2281H7.91667V9.86675H9.51011V8.84924C9.51011 6.2191 10.7004 5 13.2825 5C13.7721 5 14.6168 5.09601 14.9624 5.19201V7.33258C14.78 7.31338 14.4632 7.3038 14.0696 7.3038C12.8026 7.3038 12.313 7.78373 12.313 9.03161V9.86675H14.8371L14.4034 12.2281H12.313V18.125H15.8333C17.099 18.125 18.125 17.099 18.125 15.8333V4.16667C18.125 2.90101 17.099 1.875 15.8333 1.875H4.16667Z\",fill:\"currentColor\"})),r.typography=(0,a.createElement)(\"svg\",{viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"rect\",{x:\"2.5\",y:\"2.5\",width:\"15\",height:\"15\",rx:\"1.66667\",stroke:\"currentColor\",strokeWidth:\"1.25\"}),(0,a.createElement)(\"path\",{d:\"M5.83203 7.91671V6.66671C5.83203 6.20647 6.20513 5.83337 6.66536 5.83337H13.332C13.7923 5.83337 14.1654 6.20647 14.1654 6.66671V7.91671M9.9987 5.83337V14.1667M7.91536 14.1667H12.082\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"})),r.reload=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3.43552 16C4.90822 18.9634 7.96628 21 11.5 21C16.4706 21 20.5 16.9706 20.5 12C20.5 7.02944 16.4706 3 11.5 3C7.96628 3 4.90822 5.03656 3.43552 8M8.5 8.5H3V3\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.border=(0,a.createElement)(\"svg\",{viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M8.33398 2.5H11.6673\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M2.5 11.6666L2.5 8.33329\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8.33398 17.5H11.6673\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.5 11.6666L17.5 8.33329\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M5 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M5 17.5H4.16667C3.24619 17.5 2.5 16.7538 2.5 15.8333V15\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15 2.5H15.8333C16.7538 2.5 17.5 3.24619 17.5 4.16667V5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V15\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"})),r.boxShadow=(0,a.createElement)(\"svg\",{viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"rect\",{x:\"2.5\",y:\"2.5\",width:\"12.5\",height:\"12.5\",rx:\"0.833333\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15 5H16.6667C17.1269 5 17.5 5.3731 17.5 5.83333V6.66667\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M5 15V16.6667C5 17.1269 5.3731 17.5 5.83333 17.5H6.66667\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.5007 15.8333V16.6666C17.5007 17.1268 17.1276 17.4999 16.6673 17.4999H15.834\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8.75 17.5H10.2083\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12.291 17.5H13.7493\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.5 8.75V10.2083\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.5 12.2916V13.75\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}));const o=r},2044:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});const a={example:{source:\"db-postx-featurename\",medium:\"block-feature\",campaign:\"postx-dashboard\"},db_hellobar:{source:\"db-postx-hellobar\",medium:\"summer-sale\",campaign:\"postx-dashboard\"},explore_pro_feature:{source:\"db-postx-wizard\",medium:\"explore-features\",campaign:\"postx-dashboard\"},ticket_support:{source:\"db-postx-wizard\",medium:\"ticket-support\",campaign:\"postx-dashboard\"},postx_doc:{source:\"db-postx-wizard\",medium:\"postx-doc\",campaign:\"postx-dashboard\"},addons_popup:{source:\"db-postx-addons\",medium:\"popup\",campaign:\"postx-dashboard\"},builder_popup:{source:\"db-postx-builder\",medium:\"popup-upgrade-pro\",campaign:\"postx-dashboard\"},block_docs:{source:\"db-postx-editor\",medium:\"block-docs\",campaign:\"postx-dashboard\"},blockProFeat:{source:\"db-postx-editor\",medium:\"pro-features\",campaign:\"postx-dashboard\"},blockUpgrade:{source:\"db-postx-editor\",medium:\"block-pro\",campaign:\"postx-dashboard\"},blockPatternPro:{source:\"db-postx-editor\",medium:\"blocks-premade\",campaign:\"postx-dashboard\"},blockProLay:{source:\"db-postx-editor\",medium:\"pro-layout\",campaign:\"postx-dashboard\"},wizardPatternPro:{source:\"db-postx-wizard\",medium:\"core_features-patterns\",campaign:\"postx-dashboard\"},wizardStaterPackPro:{source:\"db-postx-wizard\",medium:\"core_features-SP\",campaign:\"postx-dashboard\"},slider_2:{source:\"db-postx-editor\",medium:\"slider2-pro\",campaign:\"postx-dashboard\"},advanced_search:{source:\"db-postx-editor\",medium:\"adv_search-pro\",campaign:\"postx-dashboard\"},customFont:{source:\"db-postx-editor\",medium:\"custom-font\",campaign:\"postx-dashboard\"},dc:{source:\"db-postx-editor\",medium:\"acf-pro\",campaign:\"postx-dashboard\"},postx_dashboard_settings:{source:\"db-postx-setting\",medium:\"upgrade-pro-sidebar\",campaign:\"postx-dashboard\"},postx_dashboard_tutorials:{source:\"db-postx-tutorial\",medium:\"tutorials-upgrade_to_pro\",campaign:\"postx-dashboard\"},postx_dashboard_tutorialsdocs:{source:\"db-postx-tutorial\",medium:\"tutorials-doc\",campaign:\"postx-dashboard\"},menu_save_temp_pro:{source:\"db-postx-save-template\",medium:\"popup-upgrade\",campaign:\"postx-dashboard\"},settingsFR:{source:\"db-postx-setting\",medium:\"settings-upgrade-pro\",campaign:\"postx-dashboard\"},tutorialsFR:{source:\"db-postx-tutorial\",medium:\"tutorials-FR\",campaign:\"postx-dashboard\"},editor_darklight:{source:\"db-postx-editor\",medium:\"darklight-pro\",campaign:\"postx-dashboard\"},final_hour_sale:{source:\"db-postx-hellobar\",medium:\"final-hour-sale\",campaign:\"postx-dashboard\"},massive_sale:{source:\"db-postx-hellobar\",medium:\"massive-sale\",campaign:\"postx-dashboard\"},flash_sale:{source:\"db-postx-hellobar\",medium:\"flash-sale\",campaign:\"postx-dashboard\"},exclusive_deals:{source:\"db-postx-hellobar\",medium:\"exclusive-deals\",campaign:\"postx-dashboard\"},black_friday_sale:{source:\"db-postx-hellobar\",medium:\"black-friday\",campaign:\"postx-dashboard\"},new_year_sale:{source:\"db-postx-hellobar\",medium:\"new-year-sale\",campaign:\"postx-dashboard\"}},r=e=>{const{url:t,utmKey:n,affiliate:r,hash:o}=e,i=new URL(t||\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F\"),l=a[n];return l&&(i.searchParams.set(\"utm_source\",l.source),i.searchParams.set(\"utm_medium\",l.medium),i.searchParams.set(\"utm_campaign\",l.campaign)),r&&i.searchParams.set(\"ref\",r),o&&(i.hash=o.startsWith(\"#\")?o:`#${o}`),i.toString()}},6511:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>u});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o),l=n(1667),s=n.n(l),p=new URL(n(4975),n.b),c=i()(r()),d=s()(p);c.push([e.id,`.ultp-gettingstart-message{display:grid;grid-template-columns:440px auto;gap:30px;align-items:center;justify-content:space-between}@media only screen and (max-width: 1200px){.ultp-gettingstart-message{grid-template-columns:1fr 1fr}}.ultp-gettingstart-message .ultp-start-left{position:relative;line-height:0;height:100%}.ultp-gettingstart-message .ultp-start-left img{width:100%;height:100%;border-radius:4px}@media only screen and (max-width: 1400px){.ultp-gettingstart-message .ultp-start-left img{object-fit:cover}}.ultp-gettingstart-message .ultp-start-left .ultp-start-content{position:absolute;flex-direction:column;gap:20px;display:flex;bottom:24px;left:24px;line-height:normal}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-text{color:#fff;font-size:18px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns{display:flex;align-items:center;flex-wrap:wrap;gap:12px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-primary-button,.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button{padding:10px 20px;font-size:14px;border-radius:4px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button{background:unset;border:1px solid #fff;color:#fff !important;font-weight:600}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button:hover{background:unset}.ultp-gettingstart-message .ultp-start-right{display:grid;grid-template-columns:1fr 1fr;height:100%}@media only screen and (max-width: 1200px){.ultp-gettingstart-message .ultp-start-right{grid-template-columns:1fr}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content{background:#fff;padding:24px 32px;border-radius:0 4px 4px 0;display:flex;flex-direction:column;justify-content:center}@media only screen and (min-width: 1200px)and (max-width: 1360px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content{padding:24px 15px}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-title{color:#091f36;font-size:16px;font-weight:600;margin-bottom:8px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-title._pro{font-size:20px;margin-bottom:12px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description{margin-bottom:22px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description._pro{color:#070707;margin-bottom:32px}@media only screen and (min-width: 1200px)and (max-width: 1300px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description{display:none}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists{display:flex;flex-direction:column;gap:5px;margin-bottom:22px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists .ultp-list{display:flex;align-items:center;gap:7px;color:#070707;font-weight:500;font-size:14px}@media only screen and (min-width: 1200px)and (max-width: 1300px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists .ultp-list{font-size:12px}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-upgrade-btn{background:linear-gradient(180deg, #ea5e40, transparent) #e36f16;padding:12px 25px;border-radius:4px;font-size:14px;margin-bottom:15px;display:flex;align-items:center;gap:10px;width:fit-content;cursor:pointer;text-decoration:none;color:#fff}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-upgrade-btn:hover{background:linear-gradient(180deg, #e36f16, transparent) #ea5e40}.ultp-gettingstart-message .ultp-dashborad-banner{width:100%;position:relative;line-height:0}@media only screen and (max-width: 1200px){.ultp-gettingstart-message .ultp-dashborad-banner{display:none}}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container{max-width:25%;position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;max-height:fit-content;cursor:pointer;height:fit-content}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container .ultp-play-icon{max-width:100%}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container .ultp-animate{-webkit-animation:pulse 1.2s ease infinite;animation:pulse 1.2s ease infinite;background:var(--postx-primary-color);position:absolute;width:100%;height:100%;left:0;right:0;top:0;bottom:0;margin:auto;border-radius:100%}.ultp-gettingstart-message .ultp-dashborad-banner img.ultp-banner-img{max-width:100%;height:100%;border-radius:4px 0 0 4px}@media only screen and (max-width: 1420px){.ultp-gettingstart-message .ultp-dashborad-banner img.ultp-banner-img{object-fit:cover}}@-webkit-keyframes pulse{0%{opacity:0;transform:scale(1, 1)}50%{opacity:.3}100%{transform:scale(1.5);opacity:0}}@keyframes pulse{0%{opacity:0;transform:scale(1, 1)}50%{opacity:.3}100%{transform:scale(1.5);opacity:0}}.ultp-dashboard-addons-container{display:flex;flex-direction:column;gap:50px}.ultp-dashboard-addons-container .ultp-addon-parent-heading.mt{margin-top:50px}.ultp-dashboard-addons-container .ultp-addon-parent-heading{margin-bottom:32px;color:#070707;font-size:24px;font-weight:600}.ultp-dashboard-addons-container .ultp-addon-parent-heading>span{color:var(--postx-primary-color)}.ultp-dashboard-addons-container .ultp-addons-grid{display:grid;justify-content:space-between;grid-template-columns:1fr 1fr;gap:30px;position:relative}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item{display:flex;flex-direction:column;justify-content:space-between;padding:unset !important;position:relative;overflow:hidden;border:1px solid #e6e6e6;border-radius:8px;background:#fbfbfb}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item img{height:24px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .dashicons{height:unset;width:unset;line-height:unset;font-size:16px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-new-tag{font-weight:500;font-size:10px;color:#070707;padding:4px 8px;background:#ffbd42;border-radius:24px;padding:4px 8px;height:fit-content;line-height:10px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-shortcode-copy{cursor:copy}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents{padding:24px;position:relative}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name{display:flex;gap:12px;align-items:center;margin-bottom:16px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name .name{font-size:20px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name .ultp-addon-item-title{font-weight:500;display:flex;align-items:center;gap:8px;line-height:24px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock{position:absolute;top:0;left:0}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock span{position:absolute;top:4px;left:2px;font-weight:600;font-size:12px;transform:rotate(315deg);color:#fff}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock::after{content:\"\";width:42px;height:42px;background-image:url(${d});display:block}.ultp-dashboard-addons-container .ultp-addons-container-grid{display:grid;grid-template-columns:auto 360px;gap:32px}.ultp-dashboard-addons-container .ultp-addons-container-grid.ultp-gs{display:block}.ultp-dashboard-addons-container .ultp-addons-container-grid .ultp-addons-items{display:flex;gap:32px;flex-direction:column}.ultp-dashboard-addons-container .ultp-addon-item-actions{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;border-top:1px solid #eaedf2}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action{display:flex;justify-content:space-between;align-items:center;gap:6px}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip{display:flex;align-items:center;text-decoration:none;gap:6px;border:1px solid #e6e6e6;padding:2px 6px;color:#6e6e6e;font-size:14px;font-weight:500;border-radius:4px;transition:400ms}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip svg{width:14px;height:14px}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip:hover{color:#070707;font-weight:500;border:1px solid #070707}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .dashicons,.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action a{font-size:14px;color:#575a5d;cursor:pointer}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .dashicons-admin-collapse{transform:rotate(180deg)}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting{position:relative;height:20px !important;width:20px !important;margin-left:10px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting svg{color:#6e6e6e;cursor:pointer;opacity:1}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting svg:hover{color:#070707}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting::before{position:absolute;left:-12px;font-size:30px;top:-13px;border-left:1px solid #eaedf2;padding-left:9px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings{width:150%;height:100vh;background-color:rgba(0,0,0,.5);position:fixed;top:0%;right:10%;transition:.5s;z-index:999}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup{height:100%;width:600px;position:fixed;z-index:99;top:32px;right:0px;margin:0 auto;border-radius:4px;box-sizing:border-box;background-color:var(--postx-white-color);box-shadow:0 1px 2px 0 rgba(8,68,129,.2);overflow-x:hidden;transition:.5s}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup::-webkit-scrollbar{display:none}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-addon-settings-title{padding:15px 20px;background:#e3f1ff;position:sticky;top:0;z-index:1}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form{display:flex;flex-direction:column;justify-content:space-between;height:100%;position:relative}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-body{position:relative;padding:40px 40px 30px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer{text-align:center;background:#e3f1ff;padding:16px;position:sticky;bottom:32px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer .onloading{cursor:no-drop}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer .onloading svg{height:14px;width:14px;vertical-align:middle;margin-left:4px;animation:ultp-spin 1s linear infinite;color:#fff}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addons-setting-save{color:var(--postx-white-color);cursor:pointer;width:600px;border:none;position:fixed;right:0;bottom:0;padding:10px 25px;background:var(--postx-primary-color)}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close{position:fixed;top:40px;right:11px;color:var(--postx-white-color);font-size:25px;cursor:pointer;border:none;padding:0px 9px 3px;background-color:var(--postx-dark-color);z-index:99}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close::after{content:\"×\"}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close:hover{background:red}.addons_promotions{margin-top:40px;border:1px solid #b9cff0;background-color:#e0ecff;padding:30px;border-radius:4px;text-align:center;font-size:16px;color:#091f36}.addons_promotions.ultp-gs{max-width:80%;margin-left:auto;margin-right:auto}.addons_promotions .addons_promotions_label{line-height:20px;font-size:16px}.addons_promotions .addons_promotions_btns{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-top:15px}.addons_promotions .addons_promotions_btns .addons_promotions_btn{padding:6px 12px;border-radius:4px;cursor:pointer;font-size:12px}.addons_promotions .addons_promotions_btns .addons_promotions_btn.btn1{background:#07cc92;color:#fff;text-decoration:none}.addons_promotions .addons_promotions_btns .addons_promotions_btn.btn2{background:#fff;color:#000;text-decoration:none}.ultp_dash_key_features{margin-top:60px;margin-bottom:30px}.ultp_dash_key_features .ultp_dash_key_features_content{display:grid;grid-template-columns:repeat(4, 1fr);gap:20px;margin-top:30px}.ultp_dash_key_features .ultp_dash_key_features_label{font-size:18px;font-weight:600;margin-bottom:10px;color:#091f36}.ultp_dash_key_features .ultp-description{font-size:14px}.ultp-description{color:#4a4a4a;font-size:14px}.ultp-description-notice{margin-top:5px;color:#e68429}.ultp-plugin-required{font-size:14px;text-align:center;display:inline-block;padding:20px 0px 0;color:var(--postx-warning-button-color);margin-top:-16px}@media only screen and (max-width: 1200px){.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp_dash_key_features .ultp_dash_key_features_content{grid-template-columns:1fr 1fr 1fr}}@media only screen and (max-width: 1100px){.ultp-dashboard-addons-container .ultp-addons-container-grid{grid-template-columns:auto}.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 768px){.ultp-dashboard-addons-container .ultp-addons-container-grid{grid-template-columns:auto}.addons_promotions.ultp-gs{max-width:100%}.ultp-gettingstart-message{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp_dash_key_features .ultp_dash_key_features_content{grid-template-columns:1fr}}@media only screen and (max-width: 425px){.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(1, 1fr)}}.ultp-addon-group{background:#fff;border-radius:8px;padding:32px}`,\"\"]);const u=c},3038:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-dashboard-blocks-container{display:flex;flex-direction:column;gap:50px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .frequency{margin-bottom:0px !important}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{margin-top:20px;display:grid;gap:30px;grid-template-columns:1fr 1fr 1fr}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item{display:flex;justify-content:space-between;padding:20px 15px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-item-meta{display:flex;gap:10px;align-items:center;font-size:16px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-item-meta img{height:25px;width:25px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option{display:flex;align-items:center;gap:10px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option a{text-decoration:none}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option .ultp-option-tooltip{display:flex;align-items:center;text-decoration:none;gap:3px;font-size:14px;color:#575a5d}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option .ultp-option-tooltip .dashicons{height:unset;width:unset;line-height:unset;font-size:14px;color:#575a5d}@media only screen and (max-width: 1350px){.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 990px){.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{grid-template-columns:1fr}}\",\"\"]);const l=i},725:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-builder-dashboard__content{width:100%;margin:0;display:grid;grid-template-columns:200px 1fr}.ultp-builder-dashboard__content .ultp-builder-tab__content{display:flex;flex-direction:column;justify-content:flex-start}.ultp-builder-dashboard__content .ultp-builder-tab__content .ultp-tab__content{height:100%}.ultp-builder-tab__option{background:#edf6ff;border:1px solid rgba(3,127,255,.03);min-height:100vh;border-radius:4px 0 0 4px}.ultp-builder-tab__option ul{padding:0px;margin:0px}.ultp-builder-tab__option ul li{font-size:14px;cursor:pointer;color:#091f36;padding:12px 0px 12px 30px;display:flex;align-items:center;transition:400ms}.ultp-builder-tab__option ul li.active,.ultp-builder-tab__option ul li.active *{color:var(--postx-primary-color);background-color:var(--postx-white-color)}.ultp-builder-tab__option ul li:hover,.ultp-builder-tab__option ul li:hover *{color:var(--postx-primary-color)}.ultp-builder-tab__option ul li img{margin-right:8px;height:20px;text-align:left}.ultp-builder-tab__option ul li span{margin-right:8px;font-size:24px;text-align:left;display:block;line-height:1;height:auto}.ultp-builder-tab__option ul ul li{padding-left:50px}.ultp-builder-tab__option .ultp-popup-sync{font-size:14px;cursor:pointer;display:flex;align-items:center;transition:400ms;padding:12px 0px 12px 30px;margin-bottom:0}.ultp-builder-tab__option .ultp-popup-sync i{margin-right:4px;font-size:25px;height:auto;width:auto}.ultp-builder-tab__option .ultp-popup-sync:hover,.ultp-builder-tab__option .ultp-popup-sync:hover *{color:var(--postx-primary-color)}.ultp-builder-tab__content .ultp-builder-tab__heading{display:flex;align-items:center;justify-content:space-between;padding:0 0 20px 30px;max-height:30px}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title .heading{display:inline-block;font-size:18px;text-transform:capitalize}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title span{margin-right:20px;padding-right:20px;border-right:1px solid #575a5d;font-size:18px;cursor:pointer;color:#575a5d}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title span svg{height:12px;width:14px;color:#575a5d;margin-right:5px}.ultp-builder-tab__content .ultp-tab__content{display:none !important;opacity:0;transition:.3s;padding:30px;background:var(--postx-white-color);border-radius:0 4px 4px 0;box-shadow:0 1px 2px 0 rgba(8,68,129,.2)}.ultp-builder-tab__content .ultp-tab__content.active{display:block !important;opacity:100;transition:.3s}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab{display:flex;flex-direction:column;gap:20px}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper{background:#f6f8fa;padding:15px 20px 15px 20px;border-radius:4px;border:solid 1px #eaedf2}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading{display:flex;align-items:center;flex-wrap:wrap;gap:15px;justify-content:space-between}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta{display:flex;gap:15px;color:#172c41}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta>div{font-size:14px;font-weight:normal;margin:0px !important}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta>div>span{font-weight:600;text-transform:capitalize}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__content div{display:flex;align-items:center;justify-content:space-between}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control{display:flex;gap:12px;position:relative;min-height:26px;align-items:center}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a{text-decoration:none;font-size:13px;color:#575a5d;display:flex;align-items:center;justify-content:center;text-transform:capitalize}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a span{font-size:12px;color:#091f36;height:auto}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a.status{min-width:56px}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-dashboard__action{line-height:1.2;cursor:pointer}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-action__active{position:absolute;top:52px;cursor:pointer;right:-20px;padding:10px 36px;background:#f9f9f9;box-shadow:4px 6px 12px -10px #000;z-index:9999}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-action__active .dashicons{font-size:18px;top:3px;position:relative}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-condition__edit{padding:5px 10px;border-radius:2px;font-size:12px;border:none;color:#fff;cursor:pointer;background-color:#091f36}.ultp-builder-tab__content .ultp-builder-items{display:grid;gap:30px;grid-template-columns:1fr 1fr 1fr}.ultp-builder-tab__content .ultp-builder-items .newScreen{border-radius:4px;border:solid 1px #eaedf2;background-color:#fff}.ultp-builder-tab__content .ultp-builder-items .newScreen .listInfo{padding:8px 12px;border-bottom:solid 1px #eaedf2;text-transform:capitalize;margin-bottom:12px}.ultp-builder-tab__content .ultp-builder-items .newScreen .listInfo .ultp_h6{font-size:16px;font-weight:500}.ultp-builder-tab__content .ultp-builder-items .newScreen .listOverlays{height:250px}.ultp-builder-tab__content .ultp-builder-items .newScreen .listOverlays img{height:100%;object-fit:fill}.premadeScreen .ultp-item-list{border-radius:4px;border:solid 1px #eaedf2;background-color:#fff}.premadeScreen .ultp-item-list .listInfo{padding:10px;display:flex;justify-content:space-between;align-items:center;border-bottom:solid 1px #eaedf2;text-transform:capitalize;flex-wrap:wrap;row-gap:10px}.premadeScreen .ultp-item-list .listInfo .title{font-size:14px;color:#091f36;font-weight:500}.premadeScreen .ultp-item-list .listInfo .title .parent{font-weight:400;font-size:12px;color:rgba(9,31,54,.67)}.premadeScreen .ultp-item-list .listInfo .btnImport{display:flex;align-items:center;border-radius:4px;background-image:linear-gradient(#18dd5c, #0c8d20);padding:5px 10px;color:#fff;font-size:12px}.premadeScreen .ultp-item-list .listInfo .btnImport svg{height:12px;color:#fff;margin-right:6px}.premadeScreen .ultp-item-list .listInfo .btnImport span{color:#fff}.premadeScreen .ultp-item-list .listInfo .ultp-upgrade-pro-btn{font-size:12px;padding:5px 10px}.premadeScreen .ultp-item-list .listOverlay{box-sizing:border-box;position:relative;line-height:0;padding:10px}.premadeScreen .ultp-item-list .listOverlay img{border-radius:4px}.premadeScreen.ultp-builder-items.ultpheader .bg-image-aspect,.premadeScreen.ultp-builder-items.ultpfooter .bg-image-aspect{aspect-ratio:1.8}.premadeScreen.ultp-builder-items.ultpheader .ultp-list-blank-img img,.premadeScreen.ultp-builder-items.ultpfooter .ultp-list-blank-img img{max-height:190px}.premadeScreen.ultp-builder-items.ultpheader .dashicons-visibility,.premadeScreen.ultp-builder-items.ultpfooter .dashicons-visibility{font-size:50px}.ultp-builder-items .ultp-item-list img{width:100%;max-width:100%}.ultp-item-list{position:relative}.ultp-premade-item{transition:.3s}.ultp-premade-item:hover{box-shadow:1px 4px 18px -12px #000}.ultp-list-white-overlay{cursor:pointer;font-weight:600;width:100%;height:100%;justify-content:center;align-items:center;top:0;left:0;position:absolute;display:flex;align-items:center;color:var(--postx-primary-color);font-size:12px}.ultp-list-white-overlay .dashicons{margin-right:15px;font-size:32px;display:block;height:auto;color:var(--postx-primary-color)}.ultp-condition-wrapper{z-index:100000;position:fixed;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;background:rgba(0,0,0,.7)}.ultp-condition-wrapper .ultp-condition-popup{max-width:700px;width:100%;position:relative;background:#fff;padding:40px 60px;border-radius:4px;height:fit-content;max-height:90%;overflow:unset !important;margin:50px auto 0}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close{position:absolute;top:0;right:-52px;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff;transition:400ms}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close svg{color:#000}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close:hover{background:red}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close:hover svg{color:#fff}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content{display:flex;gap:30px;align-items:center;justify-content:center;flex-wrap:wrap;position:relative}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap{height:450px;width:100%;display:flex;flex-direction:column;align-items:center;overflow-y:scroll !important;-ms-overflow-style:none;scrollbar-width:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap-heading{margin-bottom:14px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap::-webkit-scrollbar{display:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-items{width:600px;margin-top:20px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .btnCondition{margin-top:20px;color:#fff;border-radius:4px;background-color:#091f36;padding:8px 16px;border:none;cursor:pointer}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition_cancel{cursor:pointer;position:absolute;right:-30px;color:#de1010;font-size:24px;line-height:.7;transition:400ms}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition_cancel:hover{color:#c00a0a}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields,.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap__field{display:flex;align-items:center;position:relative;width:100%}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap__field{background:#fff;margin-top:15px;border:1px solid #eaedf2;border-radius:2px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields{padding:0px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields select{color:#575a5d;border:none;margin-right:0;padding-top:7px;padding-bottom:7px;border-right:1px solid #eaedf2;border-radius:0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields select:last-child{border-right:none;width:100%;max-width:100%}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__label{display:inline-flex;align-items:center;background:#7c8084;padding:4px 8px;border-radius:2px;color:#fff}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__label::-webkit-scrollbar{display:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown{text-align:left;width:100%;display:flex;align-items:center;position:relative}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-condition-text{width:100%;display:inline-flex;padding:0 10px 0 10px;align-items:center}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-condition-text .ultp-condition-arrow{font-size:15px;display:inline-block;padding-left:15px;line-height:1.5}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown span{cursor:pointer}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-dropdown-value__close{color:#fff;background:#000;margin-left:8px;border-radius:50%;font-size:14px;line-height:1;height:auto;width:auto}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__default{width:100%;display:block;padding:12px 0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__content{width:100%;display:flex;align-items:center;justify-content:space-between}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__content .ultp-condition-arrow{top:3px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search{background:#fff;position:absolute;left:0;z-index:1;top:39px;width:100%;padding:10px;border-radius:0;box-sizing:border-box;border:1px solid #eaedf2}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search input{width:100%;border-radius:2px;min-height:34px;border:1px solid #eaedf2}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search li{cursor:pointer;text-align:left;margin-bottom:12px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search li:last-child{margin-bottom:0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-save-condition{width:100%;font-size:14px;position:sticky;bottom:0;color:#fff;border-radius:4px;padding:15px;border:none;cursor:pointer;background-image:linear-gradient(#399aff, #016cdb)}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-save-condition span{font-size:17px;margin-left:4px;color:#fff}.ultp-builder-items .ultp-premade-img__blank{height:100%;display:flex;align-items:center;justify-content:center;padding:20px}.ultp-premade-img__blank img{max-height:395px}.ultp-list-blank-img img{opacity:.1}.ultp-list-blank-img a{text-decoration:none !important}@media only screen and (max-width: 1100px){.ultp-builder-dashboard__content{gap:20px;grid-template-columns:auto}.ultp-builder-dashboard__content .ultp-builder-tab__option{min-width:300px;width:fit-content;min-height:fit-content}.ultp-builder-tab__content .ultp-builder-items{grid-template-columns:1fr 1fr}}.ultp-builder-create-btn{text-transform:capitalize}\",\"\"]);const l=i},5735:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'@media only screen and (max-width: 1350px){.ultp-menu-items div{margin:0px 10px 0 0}}@media only screen and (max-width: 1250px){.ultp-menu-items div a:after{bottom:-2px;height:2px}}.dash-faq-container{min-width:170px}.dash-faq-container a{text-decoration:none;font-size:14px;color:#575a5d;display:flex;gap:8px;align-items:center;width:-webkit-fill-available;padding-right:32px}.dash-faq-container a:focus{box-shadow:none}.dash-faq-container a .dashicons{padding-top:2px}.dash-faq-container a:hover{color:var(--postx-primary-color)}.dash-faq-container{display:flex;flex-direction:column;gap:15px;padding:25px;position:absolute;right:20px;top:70px;border-radius:2px;box-shadow:0 2px 4px 0 rgba(8,68,129,.2);background-color:#fff;z-index:1}.dash-faq-container::before{content:\"\";content:\"\";position:absolute;right:0px;top:-29px;font:normal 42px dashicons;color:#fff}.ultp-dashboard-container-grid{display:grid;grid-template-columns:auto 424px;gap:32px}@media only screen and (max-width: 1250px){.ultp-dashboard-container-grid{display:flex;flex-direction:column}}@media only screen and (max-width: 1250px){.ultp-dashboard-container-grid{display:flex;flex-direction:column}}.ultp-dashboard-container-grid .ultp-dashboard-content{display:flex;gap:32px;flex-direction:column}.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-banner,.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-pro-promo,.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-blocks{padding:32px}.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-item-con{box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863)}.ultp-dash-banner{padding:32px;display:flex;gap:80px;justify-content:space-between}@media screen and (max-width: 758px){.ultp-dash-banner{padding:16px;flex-direction:column-reverse;gap:8px;width:fit-content}}.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-title{font-weight:600;font-size:24px;line-height:32px;color:#070707}@media screen and (max-width: 768px){.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-title{font-size:18px;display:inline-block}}.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-description{max-width:365px;font-size:16px;line-height:24px;color:#41474e;margin-top:14px}.ultp-dash-banner .ultp-dash-banner-left .ultp-primary-alter-button{padding:10px 24px;margin-top:32px}.ultp-dash-banner .ultp-dash-banner-right{width:352px}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img{position:relative}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img img{max-width:100%}@keyframes pulse-border{0%{box-shadow:0 0 0 5px rgba(241,19,108,.6)}70%{box-shadow:0 0 0 15px rgba(255,67,142,0)}100%{box-shadow:0 0 0 5px rgba(255,67,142,0)}}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img .ultp-dash-banner-right-play-button{cursor:pointer;width:64px;height:64px;border-radius:50%;background-color:#fff;display:flex;align-items:center;justify-content:center;position:absolute;top:50%;right:50%;transform:translate(50%, -50%);animation:pulse-border 1.2s ease-in infinite}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img .ultp-dash-banner-right-play-button svg{width:24px;height:24px;color:#070707;margin-top:-1px;margin-left:1px}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-video{width:352px;height:240px;border-radius:8px;overflow:hidden;box-shadow:0px 0px 42.67px 0px rgba(212,212,221,.4784313725)}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-video iframe{width:100%;height:100%}.ultp-dash-pro-promo{padding:32px;background-color:#fff;display:flex;gap:80px;justify-content:space-between}@media only screen and (max-width: 1400px){.ultp-dash-pro-promo{flex-direction:column-reverse;gap:24px}}@media only screen and (max-width: 758px){.ultp-dash-pro-promo{flex-direction:column-reverse;gap:24px;padding:16px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-title{font-weight:600;font-size:24px;line-height:32px;color:#070707}@media only screen and (max-width: 1250px){.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-title{font-size:18px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-description{max-width:365px;font-size:16px;line-height:24px;color:#41474e;margin-top:14px}@media only screen and (max-width: 1250px){.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-description{font-size:14px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-primary-alter-button{margin-top:32px}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature{display:flex;column-gap:24px;row-gap:12px;flex-wrap:wrap;margin-top:24px}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature .ultp-dash-pro-promo-left-keyfeature-item{display:flex;align-items:center;gap:6px;font-weight:500;font-size:14px;line-height:20px;color:#070707}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature .ultp-dash-pro-promo-left-keyfeature-item svg{width:20px;height:20px;color:#1f66ff}.ultp-dash-pro-promo .ultp-dash-pro-promo-right-img{max-width:352px;object-fit:contain}.ultp-dash-blocks{padding:32px}@media only screen and (max-width: 1250px){.ultp-dash-blocks{padding:16px}}.ultp-dash-blocks .ultp-dash-blocks-heading{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-dash-blocks-heading-title{font-weight:600;font-size:18px;line-height:24px;color:#0a0d14}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-transparent-button{color:#1f66ff !important}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-transparent-button svg{fill:#1f66ff !important;width:20px;height:20px}.ultp-dash-blocks .ultp-dash-blocks-items{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px}@media only screen and (max-width: 1500px){.ultp-dash-blocks .ultp-dash-blocks-items{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 1250px){.ultp-dash-blocks .ultp-dash-blocks-items{grid-template-columns:1fr}}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-dash-blocks-item{display:flex;gap:8px;align-items:center;justify-content:space-between;border:1px solid #e6e6e6;border-radius:8px;background:#fbfbfb;box-shadow:none}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta{display:flex;align-items:center;gap:8px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta .ultp-blocks-item-icon{width:24px;height:24px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta .ultp-blocks-item-title{font-weight:500;font-size:14px;line-height:20px;color:#2e2e2e}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-control-option{display:flex;align-items:center;gap:8px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-control-option .ultp-option-tooltip{font-size:12px;line-height:16px;color:#6e6e6e;text-decoration:none}',\"\"]);const l=i},9455:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-dashboard-general-settings-container{display:grid;grid-template-columns:auto 360px;gap:32px}.ultp-dashboard-general-settings-container .ultp-general-settings{height:fit-content;width:-webkit-fill-available;padding:32px}.ultp-dashboard-general-settings-container .ultp-general-settings form{margin-top:40px}.ultp-dashboard-general-settings-container .ultp-general-settings .skeletonOverflow{display:flex;gap:30px;flex-direction:column;margin-top:40px}.ultp-dashboard-general-settings-container .ultp-general-settings .onloading{cursor:no-drop}.ultp-dashboard-general-settings-container .ultp-general-settings .onloading svg{height:14px;width:14px;vertical-align:middle;margin-left:4px;animation:ultp-spin 1s linear infinite;color:#fff}@media only screen and (max-width: 1100px){.ultp-dashboard-general-settings-container{grid-template-columns:auto;justify-items:center}.ultp-dashboard-general-settings-container .ultp-general-settings-content-right{width:360px}}@media only screen and (max-width: 768px){.ultp-dashboard-general-settings-container .ultp-general-settings-content-right{width:100%}}\",\"\"]);const l=i},283:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp_h1{font-size:var(--postx-h1-fontsize);font-weight:var(--postx-h1-weight)}.ultp_h2{font-size:var(--postx-h2-fontsize);font-weight:var(--postx-h2-weight)}.ultp_h3{font-size:var(--postx-h3-fontsize);font-weight:var(--postx-h3-weight)}.ultp_h4{font-size:var(--postx-h4-fontsize);font-weight:var(--postx-h4-weight)}.ultp_h5{font-size:var(--postx-h5-fontsize);font-weight:var(--postx-h5-weight)}.ultp_h6{font-size:var(--postx-h6-fontsize);font-weight:var(--postx-h6-weight)}.ultp_h1,.ultp_h2,.ultp_h3,.ultp_h4,.ultp_h5,.ultp_h6{color:#091f36}.ultp-settings-container{margin:0 !important;background:#f6f8fa;padding:32px;min-height:100vh;height:100%}.ultp-settings-container .ultp-settings-content .ultp-premade-grid{background:#f6f8fa}@media screen and (max-width: 1250px){.ultp-settings-container{padding:12px}}.ultp-settings-content{margin:0 auto 40px !important;max-width:1376px}@media screen and (max-width: 768px){.ultp-settings-content{max-width:100%;overflow:scroll}}.ultp-dash-item-con{background:#fff;padding:12px;border-radius:8px;box-shadow:0 2px 4px 0 rgba(27,28,29,.0392156863)}.ultp-setting-header{display:grid;align-items:center;grid-template-columns:148px 502px auto 72px;gap:16px;background:var(--postx-white-color);border-bottom:1px solid var(--postx-border-color);padding:0 32px;position:sticky;top:32px;width:100%;height:67px;min-height:67px;box-sizing:border-box;z-index:99}@media screen and (max-width: 1200px){.ultp-setting-header{grid-template-columns:152px auto;background-color:#fff;gap:32px;height:auto;padding-top:12px;column-gap:38px;box-shadow:0px 0px 11px rgba(0,0,0,.168627451)}}@media screen and (max-width: 768px){.ultp-setting-header{display:flex;flex-wrap:wrap;padding:8px;height:auto}}.ultp-pro-feature-lists{display:flex;flex-direction:column;gap:15px;margin-top:24px}.ultp-pro-feature-lists>span{display:inline-flex;gap:8px;align-items:center}.ultp-pro-feature-lists>span,.ultp-pro-feature-lists>span>span{color:#070707;font-weight:500;font-size:14px;line-height:20px}.ultp-pro-feature-lists>span>span>a{text-decoration:none}.ultp-pro-feature-lists>span>span>a .dashicons{color:var(--postx-primary-color);font-size:17px;line-height:1.2}.ultp-pro-feature-lists>span svg{height:16px;width:16px;vertical-align:middle;color:#070707;flex-shrink:0}.settingsLink{color:var(--postx-primary-color) !important}.ultp-ring{display:inline-block;margin-right:5px;font-size:20px;position:relative;top:2px;color:#fff;animation:ring 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite}@keyframes ring{0%{transform:rotate(0)}5%{transform:rotate(25deg)}10%{transform:rotate(-20deg)}15%{transform:rotate(12deg)}20%{transform:rotate(-6deg)}25%{transform:rotate(2deg)}28%,100%{transform:rotate(0)}}#postx-regenerate-css{display:none;margin-top:10px}#postx-regenerate-css span{color:var(--postx-white-color)}#postx-regenerate-css.active{display:inline-block}#postx-regenerate-css .dashicons{display:none;margin-right:8px;-webkit-animation:ultp-spin 1s linear infinite;animation:ultp-spin 1s linear infinite}#postx-regenerate-css.ultp-spinner .dashicons{display:inline-block}@keyframes ultp-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}form .ultp-settings-wrap{display:flex;flex-direction:column;gap:12px;margin-bottom:30px}form .ultp-settings-wrap strong{font-size:14px;color:#091f36;font-weight:500}form .ultp-settings-wrap .ultp-settings-field-wrap select,form .ultp-settings-wrap .ultp-settings-field-wrap input[type=text],form .ultp-settings-wrap .ultp-settings-field-wrap input[type=number]{height:36px;width:100%;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:0px 13px 0px;background-color:#fff;margin-bottom:3px}form .ultp-settings-wrap .ultp-settings-field-wrap textarea{width:100%;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:0px 13px 0px;background-color:#fff;margin-bottom:3px}form .ultp-settings-wrap .ultp-settings-field-wrap select[multiple]{max-height:100px;height:100%}form .ultp-settings-wrap .ultp-settings-field-wrap .ultp-description{font-size:12px}form .ultp-data-message{display:none;position:fixed;bottom:10%;padding:13px 14px 14px 15px;border-radius:4px;box-shadow:0 1px 2px 0 rgba(8,68,129,.2);background:rgba(115,184,28,.1);width:224px;color:#091f36}.ultp-upgrade-pro-btn{display:inline-block;padding:10px 25px;color:#fff;font-size:14px;background:linear-gradient(180deg, #ff9336, transparent) #de521e;border-radius:4px;text-decoration:none;width:fit-content;transition:background-color 400ms}.ultp-upgrade-pro-btn:hover{background-color:#ff9336;color:#fff}.ultp-upgrade-pro-btn:focus{outline:0;box-shadow:none}.ultp-upgrade-pro-btn:active{color:#fff}input[type=checkbox]{width:22px;height:20px;border-radius:2px;border:solid 1px #eaedf2;background:#fff;position:relative;margin:0;box-shadow:none;display:inline-block}input[type=checkbox]+.ultp-description{margin-left:10px}input[type=checkbox]:checked{background:var(--postx-primary-color);border:none}input[type=checkbox]:checked::before{content:\"✓\";color:#fff;height:unset;width:unset;margin:unset;position:absolute;left:5px;top:9px;font-weight:900}.ultp-primary-button{cursor:pointer;padding:12px 25px;color:#fff !important;font-size:14px;background:#070707;border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;border:none;transition:background-color 400ms;gap:8px;line-height:20px}.ultp-primary-button:hover{background-color:var(--postx-primary-color)}.ultp-primary-button:focus{outline:0;box-shadow:none}.ultp-secondary-button{cursor:pointer;padding:10px 25px;color:#070707;font-size:14px;background:rgba(0,0,0,0);border-radius:4px;text-decoration:none;border:1px solid #070707;display:inline-flex;align-items:center;width:fit-content;transition:background-color 400ms}.ultp-secondary-button:hover{background-color:#dee5fa}.ultp-secondary-button:focus{outline:0;box-shadow:none}.ultp-primary-alter-button{cursor:pointer;padding:12px 24px;color:#fff !important;font-size:14px;background:var(--postx-primary-color);border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;border:none;transition:background-color 400ms;gap:8px;line-height:20px}.ultp-primary-alter-button:hover{background-color:#070707}.ultp-primary-alter-button:focus{outline:0;box-shadow:none}.ultp-transparent-button{cursor:pointer;color:#a1a1a1 !important;font-size:14px;background:rgba(0,0,0,0);border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;transition:background-color 400ms;gap:8px}.ultp-transparent-button:hover{text-decoration:underline}.ultp-transparent-button:focus{outline:0;box-shadow:none}.ultp-transparent-alter-button{cursor:pointer;color:#4a4a4a;font-size:14px;background:rgba(0,0,0,0);text-decoration:underline;display:flex;align-items:center;width:fit-content;transition:background-color 400ms;gap:8px}.ultp-transparent-alter-button:hover{color:#3c3c3c}.ultp-transparent-alter-button:focus{outline:0;box-shadow:none}.ultp-primary-button svg,.ultp-primary-alter-button svg,.ultp-secondary-button svg,.ultp-transparent-button svg,.ultp-transparent-alter-button svg{width:24px;height:24px}.cursor{cursor:pointer}#wpbody-content:has(.ultp-menu-items-wrap){padding:0 !important;background-color:#f6f8fa}.ultp-menu-items-wrap{line-height:1.6}.ultp-menu-items-wrap h1,.ultp-menu-items-wrap h2,.ultp-menu-items-wrap h3,.ultp-menu-items-wrap h4,.ultp-menu-items-wrap h5,.ultp-menu-items-wrap h6{padding:0;margin:0}.ultp-menu-items-wrap .ultp-discount-wrap{transform:rotate(-90deg);width:150px;height:40px;display:flex;gap:10px;align-items:center;justify-content:center;border-radius:4px 4px 0 0;position:fixed;top:200px;right:-55px;z-index:99999;text-decoration:none;background:linear-gradient(60deg, hsl(224, 88%, 61%), hsl(359, 85%, 66%), hsl(44, 74%, 55%), hsl(89, 72%, 47%), hsl(114, 79%, 48%), hsl(179, 85%, 66%));background-size:300% 300%;background-position:0 50%;animation:ultp_moveGradient 4s alternate infinite;transition:.4s}.ultp-menu-items-wrap .ultp-discount-wrap .ultp-discount-text{font-weight:600;color:#fff;text-transform:uppercase;font-size:14px}@keyframes ultp_moveGradient{50%{background-position:100% 50%}}.ultp-ml-auto{margin-left:auto}.ultp-dash-control-options .ultp-addons-enable,.ultp-dash-control-options .ultp-blocks-enable{width:0;height:0;display:none}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label{position:relative;background-color:var(--postx-primary-color);opacity:unset}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label>span,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label>span{display:none}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label::after,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label::after{left:calc(100% - 3px);transform:translateX(-100%)}.ultp-dash-control-options .ultp-addons-enable.disabled+.ultp-control__label,.ultp-dash-control-options .ultp-blocks-enable.disabled+.ultp-control__label{opacity:.25 !important}.ultp-dash-control-options>label{width:36px;height:18px;display:block;cursor:pointer;border-radius:100px;text-indent:-9999px;background:#d2d2d2;opacity:1;position:relative}.ultp-dash-control-options>label::after{content:\"\";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:90px;background:var(--postx-white-color);transition:.3s}.rotate{animation:rotate 1.5s linear infinite}@keyframes rotate{to{transform:rotate(360deg)}}.ultp-setting-logo{display:flex;gap:4px;align-items:center;border-right:1px solid #e2e4e9;height:100%;width:100%;max-width:152px}@media screen and (max-width: 1300px){.ultp-setting-logo{padding-right:11px}}@media screen and (max-width: 768px){.ultp-setting-logo{border-right:none}}.ultp-setting-logo .ultp-setting-header-img{height:26px}.ultp-setting-logo .ultp-setting-version{font-size:14px;border:1px solid var(--postx-primary-color);border-radius:100px;padding:7px 11px;background:#edf6ff;color:var(--postx-primary-color);line-height:18px;font-weight:500}.ultp-menu-items{display:flex;gap:24px}@media screen and (max-width: 1200px){.ultp-menu-items{margin-top:-9px}}@media screen and (max-width: 768px){.ultp-menu-items{flex-wrap:wrap;gap:16px}}.ultp-menu-item{position:relative;text-decoration:none;font-size:14px;padding:0;color:#070707;position:relative;display:flex;gap:8px;font-weight:500;align-items:center;transition:400ms;white-space:nowrap}.ultp-menu-item:hover{color:#1f66ff}.ultp-menu-item:focus{outline:none;box-shadow:none}.ultp-menu-item:after{content:\"\";position:absolute;bottom:-21px;width:100%;height:2px;background:var(--postx-primary-color);left:0;opacity:0}@media only screen and (max-width: 1250px){.ultp-menu-item:after{bottom:-9px}}.ultp-menu-item svg{width:20px;height:20px;color:#1f66ff}.ultp-menu-item.current{color:var(--postx-primary-color)}.ultp-menu-item.current:after{opacity:1}.ultp-menu-item .ultp-menu-item-tag{position:absolute;top:-14px;right:-20px;background:#fdedf0;border-radius:100px;padding:2px 6px;font-size:10px;font-weight:500;color:#dc2671;animation:ultpMenuTagColor 2s ease-in-out infinite}@keyframes ultpMenuTagColor{0%{background-color:#f8d7dd}50%{background-color:#fdedf0}100%{background-color:#f8d7dd}}.ultp-menu-items div a:active,.ultp-menu-items div a:focus{outline:none;box-shadow:none;border:none}.ultp-secondary-menu{display:flex;align-items:center;gap:8px;justify-content:space-between;padding:12px 0 12px 16px;border-left:1px solid var(--postx-border-color);height:-webkit-fill-available}@media screen and (max-width: 1300px){.ultp-secondary-menu{padding-left:0px !important;width:fit-content;border:0px !important}}@media screen and (max-width: 768px){.ultp-secondary-menu{border-left:none;padding:0}}.ultp-secondary-menu .ultp-pro-button{background-color:#edf6ff;color:#1f66ff !important;border:1px solid #1f66ff;padding:8px 20px;font-weight:500;font-size:16px;text-wrap:nowrap;display:flex;align-items:center;gap:8px}@media screen and (max-width: 768px){.ultp-secondary-menu .ultp-pro-button{padding:4px 8px}}.ultp-secondary-menu .ultp-pro-button svg{width:24px;height:24px;color:#1f66ff}.ultp-secondary-menu .ultp-pro-button:hover{background-color:#1f66ff;color:#fff !important}.ultp-secondary-menu .ultp-pro-button:hover svg{color:#fff}ul:has(.ultp-dash-faq-icon){position:relative}.ultp-dash-faq-con{height:100%;border-left:1px solid var(--postx-border-color);display:flex;align-items:center;justify-content:center;position:relative}@media screen and (max-width: 1200px){.ultp-dash-faq-con{width:fit-content;margin-left:0px !important;padding-left:2%}}@media screen and (max-width: 768px){.ultp-dash-faq-con{border-left:none;margin:0px;position:relative}}.ultp-dash-faq-icon{height:auto;width:auto;font-size:35px;cursor:pointer}.ultp-ms-container{position:relative}.ultp-ms-container .ultp-ms-results-con{min-height:30px;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:8px 14px;background-color:#fff;margin-bottom:3px;display:flex;gap:10px;justify-content:space-between}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results{display:flex;gap:8px;flex-wrap:wrap}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected{padding:4px 8px;border-radius:2px;background-color:#7c8084;color:#fff;display:inline-flex;align-items:center;gap:6px}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove{height:16px;width:14px}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove:hover svg{color:var(--postx-primary-color)}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove svg{color:#fff}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results-collapse{height:12px;width:12px;display:inline-block}.ultp-ms-container .ultp-ms-options{display:flex;flex-direction:column;gap:5px;z-index:1;position:absolute;width:100%;box-sizing:border-box;margin-top:4px;border:1px solid #eaedf2;box-shadow:0 1px 2px 0 rgba(8,68,129,.2);border-radius:4px;color:#000;padding:8px 14px;background-color:#fff;margin-bottom:3px}.ultp-ms-container .ultp-ms-options .ultp-ms-option{padding:4px 8px;border-radius:2px}.ultp-ms-container .ultp-ms-options .ultp-ms-option:hover{background-color:#7c8084;color:#fff}.ultp-field-radio .ultp-field-radio-items{display:flex;gap:20px;flex-wrap:wrap}.ultp-field-radio .ultp-field-radio-items input[type=radio]:checked::before{background-color:var(--postx-primary-color)}.ultp-sidebar-features{display:flex;flex-direction:column;gap:32px}.ultp-sidebar-card-item{border-radius:8px;padding:24px;display:flex;flex-direction:column;box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863);background-color:#fff}@media only screen and (max-width: 1250px){.ultp-sidebar-card-item{padding:16px}}.ultp-sidebar-card-item:has(.ultp-sidebar-card-title) img{margin-bottom:20px}.ultp-sidebar-card-item .ultp-sidebar-card-title{font-weight:600;font-size:18px;line-height:24px;color:#0a0d14}.ultp-sidebar-card-item .ultp-sidebar-card-description{font-size:14px;line-height:20px;color:#4a4a4a;margin-top:16px}.ultp-sidebar-card-item .ultp-primary-button,.ultp-sidebar-card-item .ultp-secondary-button,.ultp-sidebar-card-item .ultp-primary-alter-button,.ultp-sidebar-card-item .ultp-transparent-alter-button{padding:10px 24px;display:flex;align-items:center;gap:8px;margin-top:20px}.ultp-sidebar-card-item .ultp-primary-button svg,.ultp-sidebar-card-item .ultp-secondary-button svg,.ultp-sidebar-card-item .ultp-primary-alter-button svg,.ultp-sidebar-card-item .ultp-transparent-alter-button svg{width:20px;height:20px}.ultp-sidebar-card-item .ultp-sidebar-card-buttons{margin-top:24px}.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-primary-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-secondary-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-primary-alter-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-transparent-alter-button{margin-top:0}.ultp-sidebar-card-item .ultp-sidebar-card-links{display:flex;gap:16px;flex-direction:column;margin-top:24px}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link{text-decoration:none;color:#000;font-size:16px;font-weight:400;display:flex;align-items:center;gap:12px;line-height:normal}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link:hover{text-decoration:underline}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link span{display:flex}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link svg{width:24px;height:24px;color:#1f66ff}.ultp-sidebar-card-item .ultp-sidebar-card-buttons{display:flex;gap:20px;align-items:center}.ultp-setting-hellobar-wrapper a{text-decoration:none}.ultp-setting-hellobar{background:#027fff;padding:6px 0;text-align:center;color:rgba(255,255,255,.85);font-size:14px;display:flex;gap:20px;justify-content:center;align-items:center}.ultp-setting-hellobar a{margin-left:4px;font-size:14px;color:#fff}.ultp-setting-hellobar strong{color:#fff;font-weight:700}.ultp-ring{-webkit-animation:ring 4s .7s ease-in-out infinite;-moz-animation:ring 4s .7s ease-in-out infinite;animation:ring 4s .7s ease-in-out infinite;color:#fff}.helobarClose{position:absolute;cursor:pointer;right:15px}.helobarClose svg{height:18px;color:#fff}@keyframes ring{0%{transform:rotate(0)}1%{transform:rotate(30deg)}3%{transform:rotate(-28deg)}5%{transform:rotate(34deg)}7%{transform:rotate(-32deg)}9%{transform:rotate(30deg)}11%{transform:rotate(-28deg)}13%{transform:rotate(26deg)}15%{transform:rotate(-24deg)}17%{transform:rotate(22deg)}19%{transform:rotate(-20deg)}21%{transform:rotate(18deg)}23%{transform:rotate(-16deg)}25%{transform:rotate(14deg)}27%{transform:rotate(-12deg)}29%{transform:rotate(10deg)}31%{transform:rotate(-8deg)}33%{transform:rotate(6deg)}35%{transform:rotate(-4deg)}37%{transform:rotate(2deg)}39%{transform:rotate(-1deg)}41%{transform:rotate(1deg)}43%{transform:rotate(0)}100%{transform:rotate(0)}}',\"\"]);const l=i},4421:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-license{--brand-color: #037fff;--brand-color-fade: #f0f7ff;max-width:1600px;padding:32px !important;display:flex;margin:0 auto !important;gap:32px}.ultp-license__activation{background-color:#fff;padding:32px !important;box-shadow:0px 2px 4px 0px rgba(91,95,88,.078);max-width:890px;width:60%}.ultp-license__title{margin-bottom:32px !important;color:#000;font-size:24px;line-height:1.2em;font-weight:600}.ultp-license__form{margin-bottom:30px !important}.ultp-license__form input{width:100%;padding:0 8px;color:#000 !important;border-radius:4px !important;max-height:40px !important;border-color:currentColor !important}.ultp-license__helper-text{font-size:12px;color:#80837f;margin-top:8px !important}.ultp-license__renew-link{display:flex;align-items:center;gap:6px;color:#fff;background-color:#f17b2c;border-radius:6px;box-shadow:none;padding:4px 8px;cursor:pointer;text-decoration:none;margin-left:12px}.ultp-license__renew-link:hover{color:#fff}.ultp-license__link{color:var(--brand-color)}.ultp-license__status-messages{display:flex;flex-direction:column;gap:30px;margin-top:48px !important;margin-bottom:48px !important}.ultp-license__status-message{display:flex;align-items:center;font-size:14px}.ultp-license__status-message-label{text-align:left;color:#000;width:133px}.ultp-license__status-message-value{color:#000;text-align:left}.ultp-license__status-message-value::before{content:\":\";margin-right:33px !important;color:#000}.ultp-license__faq{max-width:567px;width:40%;padding-left:32px !important;border-left:1px solid #d5dad4}.ultp_license_action_btn{display:flex;gap:10px;margin-left:auto;margin-top:32px !important;text-transform:none;text-decoration:none;justify-content:center;font-size:14px;font-weight:500;border-radius:4px;background-color:var(--brand-color);width:fit-content;padding:10px 20px !important;color:#fff;cursor:pointer}.ultp-activate-loading{--loader-size: 22px;--loader-thickness: 3px;--loader-brand-color: #ffffff;width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top\u002Fvar(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:ultp-activate-loading 1s infinite linear}@keyframes ultp-activate-loading{100%{transform:rotate(1turn)}}.ultp-license-faq__item{margin-bottom:32px !important}.ultp-license-faq__question{text-align:left;color:#000;font-size:24px;font-weight:600;line-height:1.3em}.ultp-license-faq__answer{text-align:left;color:#262a25;margin-top:8px !important;font-size:14px}.ultp-license-message{display:flex;align-items:flex-start;background-color:var(--brand-color-fade);border:1px solid var(--brand-color);border-radius:8px;padding:24px !important}.ultp-license-message__icon{color:var(--brand-color);font-size:24px;margin-right:16px !important}.ultp-license-message__content{flex:1}.ultp-license-message__title{color:#0b0e04;margin-top:-8px !important;margin-bottom:8px !important}.ultp-license-message__text{text-align:left;color:#0b0e04;font-size:14px}.ultp-license-message-congrats{font-size:24px;font-weight:600}.ultp-custom-skeleton-loader{background:linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);background-size:200% 100%;animation:ultp-custom-skeleton-anim 4s infinite;display:inline-block}@keyframes ultp-custom-skeleton-anim{0%{background-position:200% 0}100%{background-position:-200% 0}}.ultp-license__upgrade-message{display:flex;gap:12px;align-items:end}.ultp-license__upgrade-message .ultp-license__upgrade-message-title{display:flex;flex-direction:column;gap:4px}.ultp-license__upgrade-message .ultp-license__upgrade-message-title select{min-height:36px;width:100%;max-width:100%}.ultp-license__upgrade-message .ultp-license__upgrade-link{color:#fff;background-color:var(--brand-color);text-decoration:none;font-weight:500;font-size:14px;padding:8px 16px;border-radius:4px}',\"\"]);const l=i},2041:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-plugins-wrapper{background-color:var(--postx-h1-fontsize)}.ultp-plugin-items{display:grid;grid-template-columns:repeat(4, 1fr);gap:32px}@media only screen and (max-width: 1200px){.ultp-plugin-items{grid-template-columns:repeat(2, 1fr)}}@media only screen and (max-width: 425px){.ultp-plugin-items{grid-template-columns:repeat(1, 1fr)}}.ultp-plugin-items .ultp-plugin-item{padding:24px;background:#fff;box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863);border-radius:8px;display:flex;gap:12px;flex-direction:column}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-title{display:flex;align-items:center;gap:16px;font-weight:600;font-size:18px;line-height:24px;color:#070707}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-title img{width:40px;height:40px}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-desc{font-weight:400;font-size:14px;line-height:20px;color:#4a4a4a}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action{display:flex;align-items:center;gap:20px}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-secondary-button{padding:10px 24px;font-weight:500}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-secondary-button:hover{background-color:#070707;color:#fff}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-transparent-alter-button{color:#070707;font-weight:500}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-activated-button{background-color:#fff;color:#1f66ff;border:1px solid #1f66ff;cursor:not-allowed}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-activated-button:hover{background-color:#fff;color:#1f66ff}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-active-btn{gap:10px}.ultp-plugin-items .ultp-plugin-item-loading{--loader-size: 18px;--loader-thickness: 3px;--loader-brand-color: var(--postx-primary-color);width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top\u002Fvar(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:ultp-install-loading 1s infinite linear}@keyframes ultp-install-loading{100%{transform:rotate(1turn)}}\",\"\"]);const l=i},6657:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultpPages li.active{color:#ee0404}.tableCon{margin-top:30px;border-radius:4px;box-shadow:0 1px 2px 0 rgba(8,68,129,.2)}.ultp-bulk-con{display:flex;justify-content:space-between;border-radius:4px 4px 0 0 !important;box-shadow:unset !important;flex-wrap:wrap;gap:20px}.ultp-bulk-con>div{display:flex;gap:15px}.ultp-bulk-con select,.ultp-bulk-con input{max-height:35px}.ultp-bulk-con .ultp-primary-button{padding:6px 15px}.ultp-bulk-con input[type=text],.ultp-bulk-con select{border:1px solid #eaedf2;padding-left:12px}.ultp-bulk-con input[type=text]:focus,.ultp-bulk-con select:focus{box-shadow:none;outline:0;border:1px solid var(--postx-primary-color)}.pageCon{display:flex;justify-content:space-between;border-radius:0 0 4px 4px;padding:22px 25px;background:#fff}.pageCon .ultpPages{display:flex;gap:12px}.pageCon .ultpPages .currentPage{background:#000;border-radius:50%;font-size:14px;color:var(--postx-white-color);height:25px;width:25px;text-align:center}.pageCon .ultpPages span:not(.currentPage){cursor:pointer;display:flex;align-items:center}.pageCon .ultpPages span:not(.currentPage) svg{height:14px;width:14px}.shortCode{cursor:copy;position:relative}.shortCode span{background:rgba(0,0,0,.7);color:#fff;border-radius:6px;position:absolute;left:calc(100% + 6px);padding:2px 6px}th.title{width:220px}th.fontType{width:65px}th.fontpreview{width:300px}.fontType{text-align:center}.actions{position:relative}.actions .dashicons{cursor:pointer}.actions .actionPopUp{position:absolute;width:130px;right:0;text-align:left;padding:10px;z-index:1}.actions .actionPopUp li{cursor:pointer;margin-bottom:8px;padding:0 6px}.actions .actionPopUp li a{display:block;text-decoration:none}.actions .actionPopUp li:hover{background:rgba(3,127,255,.04);border-radius:4px}.actions .actionPopUp li .dashicons{font-size:16px;margin-right:5px}.ultpTable{width:100%}.ultpTable table{width:100%;border-spacing:0px}.ultpTable table thead tr{background:rgba(3,127,255,.04)}.ultpTable table thead tr th{font-size:14px;border-bottom:1px solid #e7eef7;border-top:1px solid #e7eef7;padding:15px 0px;color:#091f36}.ultpTable table th:first-child,.ultpTable table td:first-child{padding-left:25px;padding-right:12px;width:55px}.ultpTable table th:last-child,.ultpTable table td:last-child{text-align:center;padding-right:25px}.ultpTable table tbody{background:#fff}.ultpTable table tbody .dashicons{vertical-align:middle}.ultpTable table tbody tr td{border-bottom:1px solid #eaedf2;padding:15px 0px;color:#575a5d;font-size:14px}.ultpTable table tbody tr td.title a{color:var(--postx-primary-color)}.ultpTable table tbody tr td.typeDate{text-transform:capitalize}@media only screen and (max-width: 1350px){.ultpTable{overflow-x:auto}.ultpTable table{width:1200px}}\",\"\"]);const l=i},2793:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-addon-lock-container{position:fixed;top:20%;z-index:999;background:#fff;padding:40px 100px;border-radius:4px;box-shadow:0 50px 99px 0 rgba(62,51,51,.5)}.ultp-addon-lock-container .ultp-popup-unlock{display:flex;flex-direction:column;align-items:center;justify-content:center;max-width:300px;width:100%;width:100%;gap:20px}.ultp-addon-lock-container .ultp-popup-unlock .title{text-align:center}.ultp-addon-lock-container .ultp-popup-unlock img{height:112px}.ultp-addon-lock-container .ultp-popup-unlock .ultp-description{text-align:center}.ultp-addon-lock-container .ultp-popup-close{position:absolute;font-size:0px;top:0;right:-10%;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff}.ultp-addon-lock-container .ultp-popup-close:hover{background:red}.ultp-addon-lock-container .ultp-popup-close:hover svg{color:#fff}.ultp-addon-lock-container-overlay{background:rgba(0,0,0,.7);position:absolute;right:0;height:100%;width:100%;z-index:999;top:0;display:flex;justify-content:center}\",\"\"]);const l=i},4558:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-settings-container.ultp-settings-container-startersites{padding-top:0;padding-left:0;padding-right:0}.ultp-settings-container.ultp-settings-container-startersites .ultp-settings-content{max-width:100%}.ultp-settings-container.ultp-settings-container-startersites .ultp-premade-grid{max-width:1376px;margin:0 auto;padding-left:30px;padding-right:30px}#ultp-starter-preview.mobileView,#ultp-starter-preview.tabletView{box-shadow:#828282 0px 0px 12px -3px;border-radius:8px 8px 0px 0px;margin-top:24px}.ultp_starter_packs_demo .wp-full-overlay-sidebar{width:300px !important}.ultp_starter_packs_demo.expanded .wp-full-overlay-footer{width:299px !important}.ultp_starter_packs_demo .wp-full-overlay-main::before{content:unset}.ultp_starter_packs_demo.wp-full-overlay.expanded{margin-left:300px !important}.ultp_starter_packs_demo.inactive.expanded{margin-left:0 !important}.ultp_starter_packs_demo.inactive.expanded .wp-full-overlay-sidebar,.ultp_starter_packs_demo.inactive.expanded .wp-full-overlay-footer{margin-left:-300px !important}.ultp_starter_packs_demo .ultp_starter_packs_demo_header{display:flex;justify-content:space-between;padding-right:12px;padding-left:12px;align-items:center;height:100%}.ultp_starter_packs_demo .ultp_starter_packs_demo_header .packs_title{font-size:14px}.ultp_starter_packs_demo .ultp-starter-packs-device-container{display:flex;gap:10px;line-height:normal;align-items:center;justify-content:center}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device{border:1px solid rgba(0,0,0,0);height:14px;padding:2px;transition:400ms}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device svg{width:15px;cursor:pointer;color:#091f36;opacity:.5}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device.d-active{border:1px solid #091f36;border-radius:2px}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device.d-active svg{opacity:1}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device:hover svg{opacity:1}.ultp_starter_packs_demo .close-full-overlay{margin-left:12px;border:none;padding:0;width:auto}.ultp_starter_packs_demo .close-full-overlay:hover{background:none;color:var(--postx-primary-color)}.ultp_starter_packs_demo .ultp_starter_preset_container{padding:20px}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp_starter_reset_container{display:flex;justify-content:space-between;margin-bottom:15px;align-items:center}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp_starter_reset_container .dashicons{font-size:16px;height:16px;cursor:pointer}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group{display:grid;grid-template-columns:1fr 1fr;gap:10px}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list{background:#fff;display:flex;padding:4px;gap:2px;align-items:center;justify-content:space-between;margin-bottom:0;cursor:pointer;border-radius:4px;border:1px solid #ededed}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list.active,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list:hover{border:1px solid #037fff}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-global-color,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-global-current-color{width:20px;height:20px;border-radius:50%;display:inline-block;box-shadow:0 0 5px 1px rgba(0,0,0,.05);border:1px solid #e5e5e5}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:25px;position:relative}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list{background:#fff;display:flex;padding:5px;cursor:pointer;border-radius:2px;border:1px solid #ededed;margin-bottom:0;width:55px;box-sizing:border-box;justify-content:center}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list.active,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list:hover{border:1px solid #037fff}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list>span{font-size:24px}.ultp_starter_packs_demo .ultp_starter_import_options{position:absolute;bottom:0;width:100%;box-sizing:border-box;padding:15px 20px;border-top:1px solid #dcdcde;background:#fff}.ultp_starter_packs_demo .ultp_starter_import_options .title{text-align:center}.ultp_starter_packs_demo .ultp_starter_import_options .option_buttons{display:flex;gap:10px;justify-content:center;margin-top:10px;margin-bottom:15px}.ultp_starter_packs_demo .ultp_starter_import_options .option_buttons a{width:100%;box-sizing:border-box;text-align:center}.ultp_starter_packs_demo .close-full-overlay{background:#fff}.ultp_starter_packs_demo .wp-full-overlay-header{background:#fff;height:60px}.ultp_starter_packs_demo .packs_title{color:#091f36;font-size:16px;font-weight:600;line-height:normal}.ultp_starter_packs_demo .packs_title span{text-transform:capitalize;display:block;color:#575a5d;font-weight:normal;margin-top:5px}.ultp_starter_packs_demo .ultp-starter-collapse{position:absolute;width:40px;height:40px;right:-20px;background:#fff;border-radius:100px;top:70px;box-shadow:inset 0 0 0 1px rgba(9,32,54,.15),0 2px 15px 6px rgba(9,32,54,.15);text-align:center;line-height:40px;cursor:pointer;transition:400ms;z-index:9999}.ultp_starter_packs_demo .ultp-starter-collapse svg{transform:rotate(90deg);width:100%;transition:400ms;color:#091f36;margin-left:-2px}.ultp_starter_packs_demo .ultp-starter-collapse:hover{transform:scale(1.1);background:#091f36}.ultp_starter_packs_demo .ultp-starter-collapse:hover svg{color:#fff}.ultp_starter_packs_demo .ultp-starter-collapse.inactive{right:-44px}.ultp_starter_packs_demo .ultp-starter-collapse.inactive svg{transform:rotate(-90deg);margin-left:2px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content{background:#f7f9ff;bottom:112px;top:60px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow{padding:25px 20px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow>.ultp_skeleton__custom_size{margin:auto}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors{margin-top:30px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors>.ultp_skeleton__custom_size{margin-bottom:20px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors .demos-color{display:grid;grid-template-columns:1fr 1fr;gap:10px}.ultp_starter_packs_demo .close-full-overlay{height:60px}.ultp_starter_packs_demo .close-full-overlay::before{font-size:32px}.ultp-stater-container-settings-overlay{background:rgba(0,0,0,.7);position:absolute;right:0;height:100vh;width:100vw;z-index:999999999999;top:-32px;display:flex;justify-content:center}.ultp-stater-settings-container{position:fixed;top:6%;z-index:999;background:#fff;border-radius:4px;box-shadow:0 50px 99px 0 rgba(62,51,51,.5);display:flex}.ultp-stater-settings-container>div:first-child{flex:1;max-height:auto;width:600px}.ultp-stater-settings-container .ultp-info{margin-bottom:15px;color:#575a5d}.ultp-stater-settings-container .ultp-info.ultp-info-desc{font-size:16px}.ultp-stater-settings-container .ultp-stater-settings-header{color:#091f36;font-size:16px;font-weight:400;position:absolute;box-sizing:border-box;width:100%;top:0;padding:12px 30px;border-bottom:1px solid #eaedf2}.ultp-stater-settings-container .stater_title{color:#091f36;margin-bottom:15px;font-size:16px;font-weight:600}.ultp-stater-settings-container .ultp-popup-stater{padding:40px 40px 20px;max-height:calc(75vh - 20px);overflow:auto}.ultp-stater-settings-container .ultp-popup-stater .input_container{margin-bottom:15px}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]{margin-right:8px;width:22px;height:20px}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]:checked{background:#092036}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]:checked::before{left:6px;top:9px;font-size:13px;transform:rotate(6deg)}.ultp-stater-settings-container .starter_page_impports{margin-top:25px;margin-bottom:20px}.ultp-stater-settings-container .starter_page_impports .cursor{font-size:14px;margin-top:15px;transition:400ms;color:#091f36;opacity:.7}.ultp-stater-settings-container .starter_page_impports .cursor:hover{opacity:1}.ultp-stater-settings-container .starter_page_impports .cursor svg{height:10px;width:10px;margin-left:4px}.ultp-stater-settings-container .starter_import{padding-left:40px;padding-right:40px;padding-bottom:40px;text-align:center}.ultp-stater-settings-container .starter_import .ultp-primary-button{width:100%;box-sizing:border-box;justify-content:center}.ultp-stater-settings-container .ultp-popup-close{position:absolute;font-size:0px;top:0;right:-10%;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff}.ultp-stater-settings-container .ultp-popup-close:hover{background:red}.ultp-stater-settings-container .ultp-popup-close:hover svg{color:#fff}.ultp-stater-settings-container .ultp-popup-close.s_loading{cursor:no-drop}.ultp-stater-settings-container .input_container .email_box{width:100%;box-sizing:border-box;margin:8px 0;border:1px solid #dcdcde;border-radius:2px;padding:5px 15px}.ultp-stater-settings-container .input_container .get_newsletter{background:#888}.ultp-stater-settings-container .ultp_successful_import .stater_title{font-size:20px}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders{margin:20px 0;max-width:80%;font-size:16px}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders a{color:var(--postx-primary-color);text-decoration:underline}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders a:hover{color:var(--postx-primary-hover-color)}.ultp-stater-settings-container .ultp_successful_import .ultp-primary-button{margin-bottom:20px}.ultp-stater-settings-container .ultp_processing_import .stater_title{font-size:20px}.ultp-stater-settings-container .ultp_processing_import .progress{font-size:16px;margin-top:12px}.ultp-stater-settings-container .ultp_processing_import .ultp_import_notice{margin-top:10px;margin-bottom:20px;color:var(--postx-warning-button-color)}.ultp-stater-settings-container .ultp_processing_import .ultp_import_notice>span{font-size:14px;font-weight:500}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show{margin-top:20px;margin-bottom:0;text-align:center}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show .ultp-importer-loader{width:100%;height:20px;background-color:#f0f0f0;position:relative;border-radius:4px;overflow:hidden}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show #ultp-importer-loader-bar{width:0;height:100%;background-color:var(--postx-primary-color);position:absolute;transition:width .5s}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show #ultp-importer-loader-percentage{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show .ultp_processing_loader{border-radius:4px;width:80%;height:12px;display:inline-block;background-color:#f7f9ff;background-image:linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%, transparent 50%, rgba(3, 127, 255, 0.75) 50%, rgba(3, 127, 255, 0.75) 75%, transparent 75%, transparent);font-size:30px;background-size:1em 1em;box-sizing:border-box;animation:ultp_processing_loader .5s linear infinite}@keyframes ultp_processing_loader{0%{background-position:0 0}100%{background-position:1em 0}}.ultp_starter_dark_container{display:flex;gap:5px;align-items:center;margin-bottom:25px;margin-top:15px;font-size:16px}.ultp_starter_dark_container .ultp_starter_dark_enable{display:none;height:0;width:0;border-radius:2px;border:solid 1px #eaedf2;background:#fff;position:relative;margin:0;box-shadow:none}.ultp_starter_dark_container .ultp_starter_dark_enable:checked+label{opacity:unset}.ultp_starter_dark_container .ultp_starter_dark_enable:checked+label::after{left:calc(100% - 3px);transform:translateX(-100%)}.ultp_starter_dark_container>label{color:#037fff;width:36px;height:18px;display:block;cursor:pointer;border-radius:100px;text-indent:-9999px;background:var(--postx-primary-color);opacity:.4;position:relative;margin:0 8px}.ultp_starter_dark_container>label::after{content:\"\";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:90px;background:#fff;transition:.3s}.ultp_starter_dark_container{justify-content:center}.ultp_starter_dark_container .ultp-dl-container{cursor:pointer;display:flex;background:#fff;gap:10px;align-items:center;border-radius:100px;width:140px;height:40px;box-shadow:0px 0px 0 2px rgba(9,32,54,.2),2px 4px 15px 5px rgba(9,32,54,.1)}.ultp_starter_dark_container .ultp-dl-container svg{height:20px;width:20px}.ultp_starter_dark_container .ultp-dl-container .ultp-dl-svg-con{transform:translateX(4px)}.ultp_starter_dark_container .ultp-dl-container .ultp-dl-svg-con.dark svg{color:#fff}.ultp_starter_dark_container .ultp-dl-svg{display:flex;background:#091f36;padding:6px;border-radius:50%}.ultp_starter_dark_container .ultp-dl-svg svg{fill:#ffc107}.iframe_loader{height:100%;width:100%;background-color:#fff;overflow-y:scroll}.iframe_loader .iframe_container{width:calc(100% - 80px);height:100%;display:flex;flex-direction:column;gap:40px;padding:60px 40px}.iframe_loader .iframe_header_top{display:flex;justify-content:space-between;gap:40px;align-items:center}.iframe_loader .header_top_right{display:flex;justify-content:space-between;align-items:center;gap:20px}.iframe_loader .iframe_body{height:100%;display:flex;flex-wrap:wrap;gap:24px;margin-top:20px}.iframe_loader .iframe_body_slider{margin-bottom:60px}.iframe_loader .iframe_body_left{flex-basis:calc(60% - 12px);border-radius:4px;display:flex;flex-direction:column;gap:20px}.iframe_loader .iframe_body_right{flex-basis:calc(40% - 12px);border-radius:4px;display:flex;flex-direction:column;gap:20px}.ultp-starter-button{cursor:pointer;padding:12px 25px;color:#fff !important;font-size:14px;background:linear-gradient(180deg, #399aff, transparent) #004fd0;border-radius:4px;text-decoration:none;display:inline-block;width:fit-content;border:none;transition:background-color 400ms}.ultp-starter-button:hover{background-color:var(--postx-primary-color)}',\"\"]);const l=i},6922:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,':root{--xpo-support-color-primary: #335cff;--xpo-support-color-secondary: #4263eb;--xpo-support-color-base-one: #ffffff;--xpo-support-color-base-two: #e1e7ff;--xpo-support-color-base-three: #e0e0e0;--xpo-support-color-green: #09fd09;--xpo-support-color-red: #fb3748;--xpo-support-color-dark: #070707;--xpo-support-color-reverse: #ffffff;--xpo-support-color-title: #0e121b;--xpo-support-color-border-primary: #e1e4ea;--xpo-support-color-shadow: rgba(0, 0, 0, 0.1)}.xpo-support-pops-btn{position:fixed;bottom:34px;right:20px;background-color:var(--xpo-support-color-primary);border-radius:50%;width:56px;height:56px;display:flex;justify-content:center;align-items:center;box-shadow:0 4px 15px var(--xpo-support-color-shadow);cursor:pointer;z-index:9999;transition-property:all;transition-duration:.2s}.xpo-support-pops-btn--small{scale:.8;bottom:0px;right:0px;transition-property:all;transition-duration:.2s}.xpo-support-pops-btn--small:hover:after{content:\"\";position:absolute;inset:-20px;z-index:-10}.xpo-support-pops-btn--small:hover{scale:1;bottom:34px;right:20px}.xpo-support-pops-btn--big{scale:1 !important;bottom:34px !important;right:20px !important}.xpo-support-pops-container--full-height{max-height:551px;height:calc(100vh - 150px);overflow:auto !important}.xpo-support-pops-container{position:fixed;bottom:90px;right:20px;background-color:var(--xpo-support-color-base-one);border-radius:8px;box-shadow:0 4px 15px var(--xpo-support-color-shadow);overflow:hidden;width:400px;max-width:calc(100% - 40px);z-index:9999;margin-bottom:8px}.xpo-support-pops-header{background-color:var(--xpo-support-color-primary);color:var(--xpo-support-color-reverse);text-align:center;padding:24px 24px 0;position:relative;overflow:hidden;z-index:0}.xpo-support-header-bg{position:absolute;inset:0;z-index:-1;opacity:.2;background:radial-gradient(circle, var(--xpo-support-color-secondary) 4px, transparent 5px),radial-gradient(circle, var(--xpo-support-color-reverse) 5px, transparent 5px);background-repeat:repeat;background-size:20px 20px,20px 20px}.xpo-support-pops-avatars{width:fit-content;margin:0 auto;position:relative}.xpo-support-pops-avatars img{display:inline-block;justify-content:center;align-items:center;margin-bottom:15px;width:60px;height:60px;border-radius:50%;margin-left:-20px;border:2px solid var(--xpo-support-color-primary);margin-bottom:5px}.xpo-support-signal{width:10px;height:10px;border-radius:50%;display:inline-block;margin-left:5px;border:2px solid var(--xpo-support-color-base-one);position:absolute;bottom:14px;right:6px}.xpo-support-signal-green{background-color:var(--xpo-support-color-green)}.xpo-support-signal-red{background-color:var(--xpo-support-color-red)}.xpo-support-pops-text{font-weight:600;font-size:14px;padding-bottom:24px}.xpo-support-chat-body{padding:20px}.xpo-support-title{font-size:14px;font-weight:500;line-height:20px;letter-spacing:-0.08px;color:var(--xpo-support-color-title);margin-bottom:4px}input.xpo-input-support,textarea.xpo-input-support{width:100%;padding:12px;border:1px solid var(--xpo-support-color-border-primary);border-radius:4px;font-size:16px;outline:none;margin-bottom:16px}input[type=email].xpo-input-support{max-height:48px}textarea.xpo-input-support{min-height:150px;resize:none}.xpo-send-button{background-color:var(--xpo-support-color-primary);color:var(--xpo-support-color-reverse);width:100%;padding:15px;border:none;border-radius:4px;font-size:16px;font-weight:500;cursor:pointer;display:flex;justify-content:center;align-items:center;gap:10px}.xpo-support-animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px !important;color:var(--xpo-support-color-base-one);stroke-miterlimit:10;box-shadow:inset 0 0 0 var(--xpo-support-color-base-two);animation:fill-message .4s ease-in-out .4s forwards,scale-message .3s ease-in-out .9s both;margin-right:10px !important}@keyframes scale-message{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fill-message{100%{box-shadow:inset 0px 0px 0px 30px var(--xpo-support-color-base-two)}}.xpo-support-circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:var(--xpo-support-color-base-two);fill:none;animation:stroke-message .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.xpo-support-check{stroke-width:2;color:var(--xpo-support-color-primary)}@keyframes stroke-message{100%{stroke-dashoffset:0}}.xpo-support-thankyou-icon{line-height:0;margin:0 auto;width:fit-content}.xpo-support-thankyou-title{margin:24px auto 12px;font-size:24px;font-weight:600;line-height:32px;letter-spacing:-0.36px;color:var(--xpo-support-color-dark);text-align:center}.xpo-support-thankyou-subtitle{font-size:14px;line-height:20px;font-weight:400;letter-spacing:-0.18px;text-align:center}.xpo-support-entry-anim{animation:xpo-support-entry-anim 200ms ease 0s 1 normal forwards}@keyframes xpo-support-entry-anim{0%{opacity:0;transform:translateY(50px)}100%{opacity:1;transform:translateY(0)}}.xpo-support-loading{--loader-size: 21px;--loader-thickness: 3px;--loader-brand-color: var(--xpo-support-color-reverse);width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top\u002Fvar(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:xpo-support-loading-anim 1s infinite linear}@keyframes xpo-support-loading-anim{100%{transform:rotate(1turn)}}#xpo-support-file-input{width:100%;max-width:100%;color:#444;padding:4px;background:#fff;border:1px solid var(--xpo-support-color-border-primary);border-radius:4px;font-size:14px;min-height:unset}#xpo-support-file-input::file-selector-button{margin-right:20px;border:none;background:var(--xpo-support-color-primary);padding:5px 10px;font-size:16px;border-radius:4px;color:var(--xpo-support-color-reverse);cursor:pointer;transition:background .2s ease-in-out}#xpo-support-file-input::file-selector-button:hover{background:var(--xpo-support-color-secondary)}',\"\"]);const l=i},439:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".toastMessages{display:flex;flex-direction:column;gap:10px;padding:10px;position:fixed;right:400px;z-index:1001;top:70px}.toast{position:absolute}.toaster{position:fixed;visibility:hidden;width:345px;background-color:#fefefe;height:76px;border-radius:4px;box-shadow:0px 0px 4px #9f9f9f;display:flex;align-items:center}.toaster span{display:block}.toaster .itmCenter{font-size:14px}.toaster .itmLast{padding:0 15px;margin-left:auto;height:100%;display:flex;align-items:center;border-left:1px solid #f2f2f2}.toaster .itmLast:hover{cursor:pointer;background-color:#f2f2f2}.toaster.show{visibility:visible;-webkit-animation:fadeinmessage .7s;animation:fadeinmessage .7s}@keyframes fadeinmessage{from{right:0;opacity:0}to{right:65px;opacity:1}}.circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:#7ac142;fill:none;animation:strokemessage .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px;color:#fff;stroke-miterlimit:10;box-shadow:inset 0px 0px 0px #7ac142;animation:fillmessage .4s ease-in-out .4s forwards,scalemessage .3s ease-in-out .9s both;margin-right:10px}.check{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;animation:strokemessage .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards}.cross{color:red;fill:red}@keyframes strokemessage{100%{stroke-dashoffset:0}}@keyframes scalemessage{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fillmessage{100%{box-shadow:inset 0px 0px 0px 30px #7ac142}}\",\"\"]);const l=i},9839:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-dashboard-modal-wrapper{position:fixed;left:0;top:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;z-index:999999;background:rgba(0,0,0,.35)}.ultp-dashboard-modal-wrapper .ultp-dashboard-modal{width:fit-content;background:#fff;max-width:90%;max-height:80%;overflow:hidden}.ultp-dashboard-modal-wrapper .ultp-modal-header{display:flex;align-items:center;height:40px;padding:0 20px 0;background:#e3f1ff;position:relative}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-modal-title{font-size:1.2rem;font-weight:600;color:#091f36}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close{position:absolute;top:-3px;right:0;color:var(--postx-white-color);font-size:25px;cursor:pointer;border:none;padding:0px 9px 3px;background-color:var(--postx-dark-color);z-index:99}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close::after{content:\"×\"}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close:hover{background:red}.ultp-dashboard-modal-wrapper .ultp-modal-body{padding:20px}.ultp-dashboard-modal-wrapper .ultp-modal-body iframe{max-width:100%;max-height:100%}',\"\"]);const l=i},1211:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp_skeleton__image{height:300px;width:300px;border-radius:4px}.ultp_skeleton__circle{height:300px;width:300px;border-radius:50%}.ultp_skeleton__title{height:20px;width:100%;border-radius:4px}.ultp_skeleton__button{height:40px;width:90px;border-radius:4px}.ultp_frequency{position:relative;background-color:#e2e2e2;overflow:hidden}.ultp_frequency.loop{margin-bottom:10px}.ultp_frequency.loop:last-child{margin-bottom:0}.ultp_frequency::after{display:block;content:\"\";position:absolute;width:100%;height:100%;transform:translateX(-100%);background:-webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));background:linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);animation:loadings .8s infinite}.skeletonOverflow{overflow:hidden}@keyframes loadings{100%{transform:translateX(100%)}}',\"\"]);const l=i},1589:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-tooltip-wrapper{display:inline-block;position:relative;width:inherit;height:inherit}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip{position:unset}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip .tooltip-content{width:fit-content;bottom:unset;left:90px;top:-36px !important}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip .tooltip-content::before{content:unset}.tooltip-content{top:unset !important;background:#000;color:#fff;font-size:12px;line-height:1.4;z-index:100;white-space:pre-wrap;width:250px;position:absolute;bottom:25px;transform:translateX(-46%);padding:8px 12px;border-radius:4px;white-space:pre-wrap}.tooltip-content::before{content:\" \";left:50%;border:solid rgba(0,0,0,0);height:0;width:0;position:absolute;pointer-events:none;border-width:6px;margin-left:-6px}.tooltip-content.top::before{top:100%;border-top-color:#000}.tooltip-content.right{left:calc(100% + 30px);top:50%;transform:translateX(0) translateY(-50%)}.tooltip-content.right::before{left:-6px;top:50%;transform:translateX(0) translateY(-50%);border-right-color:#000}.tooltip-content.bottom{bottom:-30px}.tooltip-content.bottom::before{bottom:100%;border-bottom-color:#000}.tooltip-content.left{left:auto;right:calc(100% + 30px);top:50%;transform:translateX(0) translateY(-50%)}.tooltip-content.left::before{left:auto;right:-12px;top:50%;transform:translateX(0) translateY(-50%);border-left-color:#000}.tooltip-icon{width:inherit;height:inherit;font-size:28px}',\"\"]);const l=i},1729:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-design-search-wrapper{margin-bottom:20px;width:fit-content;margin-left:auto;margin-right:auto}@media only screen and (max-width: 1250px){.ultp-design-search-wrapper{display:none}}.ultp-design-search-wrapper .ultp-design-search-input{color:#575a5d;padding:8px 15px;min-width:250px;height:36px;font-size:14px;border-radius:2px;border:solid 1px #eaedf2;background-color:#fff}.ultp-design-search-wrapper .ultp-design-search-input:focus{border:1px solid var(--postx-primary-color);box-shadow:unset}@media only screen and (max-width: 1350px){.ultp-design-search-wrapper .ultp-design-search-input{min-width:220px}}\",\"\"]);const l=i},3645:e=>{\"use strict\";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=\"\",a=void 0!==t[5];return t[4]&&(n+=\"@supports (\".concat(t[4],\") {\")),t[2]&&(n+=\"@media \".concat(t[2],\" {\")),a&&(n+=\"@layer\".concat(t[5].length>0?\" \".concat(t[5]):\"\",\" {\")),n+=e(t),a&&(n+=\"}\"),t[2]&&(n+=\"}\"),t[4]&&(n+=\"}\"),n})).join(\"\")},t.i=function(e,n,a,r,o){\"string\"==typeof e&&(e=[[null,e,void 0]]);var i={};if(a)for(var l=0;l\u003Cthis.length;l++){var s=this[l][0];null!=s&&(i[s]=!0)}for(var p=0;p\u003Ce.length;p++){var c=[].concat(e[p]);a&&i[c[0]]||(void 0!==o&&(void 0===c[5]||(c[1]=\"@layer\".concat(c[5].length>0?\" \".concat(c[5]):\"\",\" {\").concat(c[1],\"}\")),c[5]=o),n&&(c[2]?(c[1]=\"@media \".concat(c[2],\" {\").concat(c[1],\"}\"),c[2]=n):c[2]=n),r&&(c[4]?(c[1]=\"@supports (\".concat(c[4],\") {\").concat(c[1],\"}\"),c[4]=r):c[4]=\"\".concat(r)),t.push(c))}},t}},1667:e=>{\"use strict\";e.exports=function(e,t){return t||(t={}),e?(e=String(e.__esModule?e.default:e),\u002F^['\"].*['\"]$\u002F.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),\u002F[\"'() \\t\\n]|(%20)\u002F.test(e)||t.needQuotes?'\"'.concat(e.replace(\u002F\"\u002Fg,'\\\\\"').replace(\u002F\\n\u002Fg,\"\\\\n\"),'\"'):e):e}},8081:e=>{\"use strict\";e.exports=function(e){return e[1]}},7418:e=>{\"use strict\";var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String(\"abc\");if(e[5]=\"de\",\"5\"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n\u003C10;n++)t[\"_\"+String.fromCharCode(n)]=n;if(\"0123456789\"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(\"\"))return!1;var a={};return\"abcdefghijklmnopqrst\".split(\"\").forEach((function(e){a[e]=e})),\"abcdefghijklmnopqrst\"===Object.keys(Object.assign({},a)).join(\"\")}catch(e){return!1}}()?Object.assign:function(e,r){for(var o,i,l=function(e){if(null==e)throw new TypeError(\"Object.assign cannot be called with null or undefined\");return Object(e)}(e),s=1;s\u003Carguments.length;s++){for(var p in o=Object(arguments[s]))n.call(o,p)&&(l[p]=o[p]);if(t){i=t(o);for(var c=0;c\u003Ci.length;c++)a.call(o,i[c])&&(l[i[c]]=o[i[c]])}}return l}},4448:(e,t,n)=>{\"use strict\";var a=n(7294),r=n(7418),o=n(3840);function i(e){for(var t=\"https:\u002F\u002Freactjs.org\u002Fdocs\u002Ferror-decoder.html?invariant=\"+e,n=1;n\u003Carguments.length;n++)t+=\"&args[]=\"+encodeURIComponent(arguments[n]);return\"Minified React error #\"+e+\"; visit \"+t+\" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\"}if(!a)throw Error(i(227));var l=new Set,s={};function p(e,t){c(e,t),c(e+\"Capture\",t)}function c(e,t){for(s[e]=t,e=0;e\u003Ct.length;e++)l.add(t[e])}var d=!(\"undefined\"==typeof window||void 0===window.document||void 0===window.document.createElement),u=\u002F^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$\u002F,m=Object.prototype.hasOwnProperty,f={},h={};function g(e,t,n,a,r,o,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=a,this.attributeNamespace=r,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}var v={};\"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style\".split(\" \").forEach((function(e){v[e]=new g(e,0,!1,e,null,!1,!1)})),[[\"acceptCharset\",\"accept-charset\"],[\"className\",\"class\"],[\"htmlFor\",\"for\"],[\"httpEquiv\",\"http-equiv\"]].forEach((function(e){var t=e[0];v[t]=new g(t,1,!1,e[1],null,!1,!1)})),[\"contentEditable\",\"draggable\",\"spellCheck\",\"value\"].forEach((function(e){v[e]=new g(e,2,!1,e.toLowerCase(),null,!1,!1)})),[\"autoReverse\",\"externalResourcesRequired\",\"focusable\",\"preserveAlpha\"].forEach((function(e){v[e]=new g(e,2,!1,e,null,!1,!1)})),\"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope\".split(\" \").forEach((function(e){v[e]=new g(e,3,!1,e.toLowerCase(),null,!1,!1)})),[\"checked\",\"multiple\",\"muted\",\"selected\"].forEach((function(e){v[e]=new g(e,3,!0,e,null,!1,!1)})),[\"capture\",\"download\"].forEach((function(e){v[e]=new g(e,4,!1,e,null,!1,!1)})),[\"cols\",\"rows\",\"size\",\"span\"].forEach((function(e){v[e]=new g(e,6,!1,e,null,!1,!1)})),[\"rowSpan\",\"start\"].forEach((function(e){v[e]=new g(e,5,!1,e.toLowerCase(),null,!1,!1)}));var _=\u002F[\\-:]([a-z])\u002Fg;function w(e){return e[1].toUpperCase()}function b(e,t,n,a){var r=v.hasOwnProperty(t)?v[t]:null;(null!==r?0===r.type:!a&&2\u003Ct.length&&(\"o\"===t[0]||\"O\"===t[0])&&(\"n\"===t[1]||\"N\"===t[1]))||(function(e,t,n,a){if(null==t||function(e,t,n,a){if(null!==n&&0===n.type)return!1;switch(typeof t){case\"function\":case\"symbol\":return!0;case\"boolean\":return!a&&(null!==n?!n.acceptsBooleans:\"data-\"!==(e=e.toLowerCase().slice(0,5))&&\"aria-\"!==e);default:return!1}}(e,t,n,a))return!0;if(a)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,n,r,a)&&(n=null),a||null===r?function(e){return!!m.call(h,e)||!m.call(f,e)&&(u.test(e)?h[e]=!0:(f[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,\"\"+n)):r.mustUseProperty?e[r.propertyName]=null===n?3!==r.type&&\"\":n:(t=r.attributeName,a=r.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(r=r.type)||4===r&&!0===n?\"\":\"\"+n,a?e.setAttributeNS(a,t,n):e.setAttribute(t,n))))}\"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height\".split(\" \").forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,null,!1,!1)})),\"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type\".split(\" \").forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxlink\",!1,!1)})),[\"xml:base\",\"xml:lang\",\"xml:space\"].forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,\"http:\u002F\u002Fwww.w3.org\u002FXML\u002F1998\u002Fnamespace\",!1,!1)})),[\"tabIndex\",\"crossOrigin\"].forEach((function(e){v[e]=new g(e,1,!1,e.toLowerCase(),null,!1,!1)})),v.xlinkHref=new g(\"xlinkHref\",1,!1,\"xlink:href\",\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxlink\",!0,!1),[\"src\",\"href\",\"action\",\"formAction\"].forEach((function(e){v[e]=new g(e,1,!1,e.toLowerCase(),null,!0,!0)}));var x=a.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,y=60103,k=60106,E=60107,C=60108,S=60114,M=60109,L=60110,N=60112,Z=60113,P=60120,z=60115,A=60116,B=60121,H=60128,T=60129,R=60130,O=60131;if(\"function\"==typeof Symbol&&Symbol.for){var j=Symbol.for;y=j(\"react.element\"),k=j(\"react.portal\"),E=j(\"react.fragment\"),C=j(\"react.strict_mode\"),S=j(\"react.profiler\"),M=j(\"react.provider\"),L=j(\"react.context\"),N=j(\"react.forward_ref\"),Z=j(\"react.suspense\"),P=j(\"react.suspense_list\"),z=j(\"react.memo\"),A=j(\"react.lazy\"),B=j(\"react.block\"),j(\"react.scope\"),H=j(\"react.opaque.id\"),T=j(\"react.debug_trace_mode\"),R=j(\"react.offscreen\"),O=j(\"react.legacy_hidden\")}var V,F=\"function\"==typeof Symbol&&Symbol.iterator;function W(e){return null===e||\"object\"!=typeof e?null:\"function\"==typeof(e=F&&e[F]||e[\"@@iterator\"])?e:null}function D(e){if(void 0===V)try{throw Error()}catch(e){var t=e.stack.trim().match(\u002F\\n( *(at )?)\u002F);V=t&&t[1]||\"\"}return\"\\n\"+V+e}var I=!1;function U(e,t){if(!e||I)return\"\";I=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,\"props\",{set:function(){throw Error()}}),\"object\"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(e){var a=e}Reflect.construct(e,[],t)}else{try{t.call()}catch(e){a=e}e.call(t.prototype)}else{try{throw Error()}catch(e){a=e}e()}}catch(e){if(e&&a&&\"string\"==typeof e.stack){for(var r=e.stack.split(\"\\n\"),o=a.stack.split(\"\\n\"),i=r.length-1,l=o.length-1;1\u003C=i&&0\u003C=l&&r[i]!==o[l];)l--;for(;1\u003C=i&&0\u003C=l;i--,l--)if(r[i]!==o[l]){if(1!==i||1!==l)do{if(i--,0>--l||r[i]!==o[l])return\"\\n\"+r[i].replace(\" at new \",\" at \")}while(1\u003C=i&&0\u003C=l);break}}}finally{I=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:\"\")?D(e):\"\"}function $(e){switch(e.tag){case 5:return D(e.type);case 16:return D(\"Lazy\");case 13:return D(\"Suspense\");case 19:return D(\"SuspenseList\");case 0:case 2:case 15:return U(e.type,!1);case 11:return U(e.type.render,!1);case 22:return U(e.type._render,!1);case 1:return U(e.type,!0);default:return\"\"}}function G(e){if(null==e)return null;if(\"function\"==typeof e)return e.displayName||e.name||null;if(\"string\"==typeof e)return e;switch(e){case E:return\"Fragment\";case k:return\"Portal\";case S:return\"Profiler\";case C:return\"StrictMode\";case Z:return\"Suspense\";case P:return\"SuspenseList\"}if(\"object\"==typeof e)switch(e.$$typeof){case L:return(e.displayName||\"Context\")+\".Consumer\";case M:return(e._context.displayName||\"Context\")+\".Provider\";case N:var t=e.render;return t=t.displayName||t.name||\"\",e.displayName||(\"\"!==t?\"ForwardRef(\"+t+\")\":\"ForwardRef\");case z:return G(e.type);case B:return G(e._render);case A:t=e._payload,e=e._init;try{return G(e(t))}catch(e){}}return null}function q(e){switch(typeof e){case\"boolean\":case\"number\":case\"object\":case\"string\":case\"undefined\":return e;default:return\"\"}}function K(e){var t=e.type;return(e=e.nodeName)&&\"input\"===e.toLowerCase()&&(\"checkbox\"===t||\"radio\"===t)}function X(e){e._valueTracker||(e._valueTracker=function(e){var t=K(e)?\"checked\":\"value\",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),a=\"\"+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&\"function\"==typeof n.get&&\"function\"==typeof n.set){var r=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return r.call(this)},set:function(e){a=\"\"+e,o.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return a},setValue:function(e){a=\"\"+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function Q(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),a=\"\";return e&&(a=K(e)?e.checked?\"true\":\"false\":e.value),(e=a)!==n&&(t.setValue(e),!0)}function J(e){if(void 0===(e=e||(\"undefined\"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function Y(e,t){var n=t.checked;return r({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function ee(e,t){var n=null==t.defaultValue?\"\":t.defaultValue,a=null!=t.checked?t.checked:t.defaultChecked;n=q(null!=t.value?t.value:n),e._wrapperState={initialChecked:a,initialValue:n,controlled:\"checkbox\"===t.type||\"radio\"===t.type?null!=t.checked:null!=t.value}}function te(e,t){null!=(t=t.checked)&&b(e,\"checked\",t,!1)}function ne(e,t){te(e,t);var n=q(t.value),a=t.type;if(null!=n)\"number\"===a?(0===n&&\"\"===e.value||e.value!=n)&&(e.value=\"\"+n):e.value!==\"\"+n&&(e.value=\"\"+n);else if(\"submit\"===a||\"reset\"===a)return void e.removeAttribute(\"value\");t.hasOwnProperty(\"value\")?re(e,t.type,n):t.hasOwnProperty(\"defaultValue\")&&re(e,t.type,q(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function ae(e,t,n){if(t.hasOwnProperty(\"value\")||t.hasOwnProperty(\"defaultValue\")){var a=t.type;if(!(\"submit\"!==a&&\"reset\"!==a||void 0!==t.value&&null!==t.value))return;t=\"\"+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}\"\"!==(n=e.name)&&(e.name=\"\"),e.defaultChecked=!!e._wrapperState.initialChecked,\"\"!==n&&(e.name=n)}function re(e,t,n){\"number\"===t&&J(e.ownerDocument)===e||(null==n?e.defaultValue=\"\"+e._wrapperState.initialValue:e.defaultValue!==\"\"+n&&(e.defaultValue=\"\"+n))}function oe(e,t){return e=r({children:void 0},t),(t=function(e){var t=\"\";return a.Children.forEach(e,(function(e){null!=e&&(t+=e)})),t}(t.children))&&(e.children=t),e}function ie(e,t,n,a){if(e=e.options,t){t={};for(var r=0;r\u003Cn.length;r++)t[\"$\"+n[r]]=!0;for(n=0;n\u003Ce.length;n++)r=t.hasOwnProperty(\"$\"+e[n].value),e[n].selected!==r&&(e[n].selected=r),r&&a&&(e[n].defaultSelected=!0)}else{for(n=\"\"+q(n),t=null,r=0;r\u003Ce.length;r++){if(e[r].value===n)return e[r].selected=!0,void(a&&(e[r].defaultSelected=!0));null!==t||e[r].disabled||(t=e[r])}null!==t&&(t.selected=!0)}}function le(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(i(91));return r({},t,{value:void 0,defaultValue:void 0,children:\"\"+e._wrapperState.initialValue})}function se(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(i(92));if(Array.isArray(n)){if(!(1>=n.length))throw Error(i(93));n=n[0]}t=n}null==t&&(t=\"\"),n=t}e._wrapperState={initialValue:q(n)}}function pe(e,t){var n=q(t.value),a=q(t.defaultValue);null!=n&&((n=\"\"+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=a&&(e.defaultValue=\"\"+a)}function ce(e){var t=e.textContent;t===e._wrapperState.initialValue&&\"\"!==t&&null!==t&&(e.value=t)}var de={html:\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxhtml\",mathml:\"http:\u002F\u002Fwww.w3.org\u002F1998\u002FMath\u002FMathML\",svg:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"};function ue(e){switch(e){case\"svg\":return\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\";case\"math\":return\"http:\u002F\u002Fwww.w3.org\u002F1998\u002FMath\u002FMathML\";default:return\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxhtml\"}}function me(e,t){return null==e||\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxhtml\"===e?ue(t):\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"===e&&\"foreignObject\"===t?\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxhtml\":e}var fe,he,ge=(he=function(e,t){if(e.namespaceURI!==de.svg||\"innerHTML\"in e)e.innerHTML=t;else{for((fe=fe||document.createElement(\"div\")).innerHTML=\"\u003Csvg>\"+t.valueOf().toString()+\"\u003C\u002Fsvg>\",t=fe.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},\"undefined\"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,t,n,a){MSApp.execUnsafeLocalFunction((function(){return he(e,t)}))}:he);function ve(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}var _e={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},we=[\"Webkit\",\"ms\",\"Moz\",\"O\"];function be(e,t,n){return null==t||\"boolean\"==typeof t||\"\"===t?\"\":n||\"number\"!=typeof t||0===t||_e.hasOwnProperty(e)&&_e[e]?(\"\"+t).trim():t+\"px\"}function xe(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var a=0===n.indexOf(\"--\"),r=be(n,t[n],a);\"float\"===n&&(n=\"cssFloat\"),a?e.setProperty(n,r):e[n]=r}}Object.keys(_e).forEach((function(e){we.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),_e[t]=_e[e]}))}));var ye=r({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ke(e,t){if(t){if(ye[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(i(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(i(60));if(\"object\"!=typeof t.dangerouslySetInnerHTML||!(\"__html\"in t.dangerouslySetInnerHTML))throw Error(i(61))}if(null!=t.style&&\"object\"!=typeof t.style)throw Error(i(62))}}function Ee(e,t){if(-1===e.indexOf(\"-\"))return\"string\"==typeof t.is;switch(e){case\"annotation-xml\":case\"color-profile\":case\"font-face\":case\"font-face-src\":case\"font-face-uri\":case\"font-face-format\":case\"font-face-name\":case\"missing-glyph\":return!1;default:return!0}}function Ce(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var Se=null,Me=null,Le=null;function Ne(e){if(e=ar(e)){if(\"function\"!=typeof Se)throw Error(i(280));var t=e.stateNode;t&&(t=or(t),Se(e.stateNode,e.type,t))}}function Ze(e){Me?Le?Le.push(e):Le=[e]:Me=e}function Pe(){if(Me){var e=Me,t=Le;if(Le=Me=null,Ne(e),t)for(e=0;e\u003Ct.length;e++)Ne(t[e])}}function ze(e,t){return e(t)}function Ae(e,t,n,a,r){return e(t,n,a,r)}function Be(){}var He=ze,Te=!1,Re=!1;function Oe(){null===Me&&null===Le||(Be(),Pe())}function je(e,t){var n=e.stateNode;if(null===n)return null;var a=or(n);if(null===a)return null;n=a[t];e:switch(t){case\"onClick\":case\"onClickCapture\":case\"onDoubleClick\":case\"onDoubleClickCapture\":case\"onMouseDown\":case\"onMouseDownCapture\":case\"onMouseMove\":case\"onMouseMoveCapture\":case\"onMouseUp\":case\"onMouseUpCapture\":case\"onMouseEnter\":(a=!a.disabled)||(a=!(\"button\"===(e=e.type)||\"input\"===e||\"select\"===e||\"textarea\"===e)),e=!a;break e;default:e=!1}if(e)return null;if(n&&\"function\"!=typeof n)throw Error(i(231,t,typeof n));return n}var Ve=!1;if(d)try{var Fe={};Object.defineProperty(Fe,\"passive\",{get:function(){Ve=!0}}),window.addEventListener(\"test\",Fe,Fe),window.removeEventListener(\"test\",Fe,Fe)}catch(he){Ve=!1}function We(e,t,n,a,r,o,i,l,s){var p=Array.prototype.slice.call(arguments,3);try{t.apply(n,p)}catch(e){this.onError(e)}}var De=!1,Ie=null,Ue=!1,$e=null,Ge={onError:function(e){De=!0,Ie=e}};function qe(e,t,n,a,r,o,i,l,s){De=!1,Ie=null,We.apply(Ge,arguments)}function Ke(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026&(t=e).flags)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function Xe(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&null!==(e=e.alternate)&&(t=e.memoizedState),null!==t)return t.dehydrated}return null}function Qe(e){if(Ke(e)!==e)throw Error(i(188))}function Je(e){if(e=function(e){var t=e.alternate;if(!t){if(null===(t=Ke(e)))throw Error(i(188));return t!==e?null:e}for(var n=e,a=t;;){var r=n.return;if(null===r)break;var o=r.alternate;if(null===o){if(null!==(a=r.return)){n=a;continue}break}if(r.child===o.child){for(o=r.child;o;){if(o===n)return Qe(r),e;if(o===a)return Qe(r),t;o=o.sibling}throw Error(i(188))}if(n.return!==a.return)n=r,a=o;else{for(var l=!1,s=r.child;s;){if(s===n){l=!0,n=r,a=o;break}if(s===a){l=!0,a=r,n=o;break}s=s.sibling}if(!l){for(s=o.child;s;){if(s===n){l=!0,n=o,a=r;break}if(s===a){l=!0,a=o,n=r;break}s=s.sibling}if(!l)throw Error(i(189))}}if(n.alternate!==a)throw Error(i(190))}if(3!==n.tag)throw Error(i(188));return n.stateNode.current===n?e:t}(e),!e)return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function Ye(e,t){for(var n=e.alternate;null!==t;){if(t===e||t===n)return!0;t=t.return}return!1}var et,tt,nt,at,rt=!1,ot=[],it=null,lt=null,st=null,pt=new Map,ct=new Map,dt=[],ut=\"mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit\".split(\" \");function mt(e,t,n,a,r){return{blockedOn:e,domEventName:t,eventSystemFlags:16|n,nativeEvent:r,targetContainers:[a]}}function ft(e,t){switch(e){case\"focusin\":case\"focusout\":it=null;break;case\"dragenter\":case\"dragleave\":lt=null;break;case\"mouseover\":case\"mouseout\":st=null;break;case\"pointerover\":case\"pointerout\":pt.delete(t.pointerId);break;case\"gotpointercapture\":case\"lostpointercapture\":ct.delete(t.pointerId)}}function ht(e,t,n,a,r,o){return null===e||e.nativeEvent!==o?(e=mt(t,n,a,r,o),null!==t&&null!==(t=ar(t))&&tt(t),e):(e.eventSystemFlags|=a,t=e.targetContainers,null!==r&&-1===t.indexOf(r)&&t.push(r),e)}function gt(e){var t=nr(e.target);if(null!==t){var n=Ke(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Xe(n)))return e.blockedOn=t,void at(e.lanePriority,(function(){o.unstable_runWithPriority(e.priority,(function(){nt(n)}))}))}else if(3===t&&n.stateNode.hydrate)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function vt(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0\u003Ct.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n)return null!==(t=ar(n))&&tt(t),e.blockedOn=n,!1;t.shift()}return!0}function _t(e,t,n){vt(e)&&n.delete(t)}function wt(){for(rt=!1;0\u003Cot.length;){var e=ot[0];if(null!==e.blockedOn){null!==(e=ar(e.blockedOn))&&et(e);break}for(var t=e.targetContainers;0\u003Ct.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n){e.blockedOn=n;break}t.shift()}null===e.blockedOn&&ot.shift()}null!==it&&vt(it)&&(it=null),null!==lt&&vt(lt)&&(lt=null),null!==st&&vt(st)&&(st=null),pt.forEach(_t),ct.forEach(_t)}function bt(e,t){e.blockedOn===t&&(e.blockedOn=null,rt||(rt=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,wt)))}function xt(e){function t(t){return bt(t,e)}if(0\u003Cot.length){bt(ot[0],e);for(var n=1;n\u003Cot.length;n++){var a=ot[n];a.blockedOn===e&&(a.blockedOn=null)}}for(null!==it&&bt(it,e),null!==lt&&bt(lt,e),null!==st&&bt(st,e),pt.forEach(t),ct.forEach(t),n=0;n\u003Cdt.length;n++)(a=dt[n]).blockedOn===e&&(a.blockedOn=null);for(;0\u003Cdt.length&&null===(n=dt[0]).blockedOn;)gt(n),null===n.blockedOn&&dt.shift()}function yt(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n[\"Webkit\"+e]=\"webkit\"+t,n[\"Moz\"+e]=\"moz\"+t,n}var kt={animationend:yt(\"Animation\",\"AnimationEnd\"),animationiteration:yt(\"Animation\",\"AnimationIteration\"),animationstart:yt(\"Animation\",\"AnimationStart\"),transitionend:yt(\"Transition\",\"TransitionEnd\")},Et={},Ct={};function St(e){if(Et[e])return Et[e];if(!kt[e])return e;var t,n=kt[e];for(t in n)if(n.hasOwnProperty(t)&&t in Ct)return Et[e]=n[t];return e}d&&(Ct=document.createElement(\"div\").style,\"AnimationEvent\"in window||(delete kt.animationend.animation,delete kt.animationiteration.animation,delete kt.animationstart.animation),\"TransitionEvent\"in window||delete kt.transitionend.transition);var Mt=St(\"animationend\"),Lt=St(\"animationiteration\"),Nt=St(\"animationstart\"),Zt=St(\"transitionend\"),Pt=new Map,zt=new Map,At=[\"abort\",\"abort\",Mt,\"animationEnd\",Lt,\"animationIteration\",Nt,\"animationStart\",\"canplay\",\"canPlay\",\"canplaythrough\",\"canPlayThrough\",\"durationchange\",\"durationChange\",\"emptied\",\"emptied\",\"encrypted\",\"encrypted\",\"ended\",\"ended\",\"error\",\"error\",\"gotpointercapture\",\"gotPointerCapture\",\"load\",\"load\",\"loadeddata\",\"loadedData\",\"loadedmetadata\",\"loadedMetadata\",\"loadstart\",\"loadStart\",\"lostpointercapture\",\"lostPointerCapture\",\"playing\",\"playing\",\"progress\",\"progress\",\"seeking\",\"seeking\",\"stalled\",\"stalled\",\"suspend\",\"suspend\",\"timeupdate\",\"timeUpdate\",Zt,\"transitionEnd\",\"waiting\",\"waiting\"];function Bt(e,t){for(var n=0;n\u003Ce.length;n+=2){var a=e[n],r=e[n+1];r=\"on\"+(r[0].toUpperCase()+r.slice(1)),zt.set(a,t),Pt.set(a,r),p(r,[a])}}(0,o.unstable_now)();var Ht=8;function Tt(e){if(0!=(1&e))return Ht=15,1;if(0!=(2&e))return Ht=14,2;if(0!=(4&e))return Ht=13,4;var t=24&e;return 0!==t?(Ht=12,t):0!=(32&e)?(Ht=11,32):0!=(t=192&e)?(Ht=10,t):0!=(256&e)?(Ht=9,256):0!=(t=3584&e)?(Ht=8,t):0!=(4096&e)?(Ht=7,4096):0!=(t=4186112&e)?(Ht=6,t):0!=(t=62914560&e)?(Ht=5,t):67108864&e?(Ht=4,67108864):0!=(134217728&e)?(Ht=3,134217728):0!=(t=805306368&e)?(Ht=2,t):0!=(1073741824&e)?(Ht=1,1073741824):(Ht=8,e)}function Rt(e,t){var n=e.pendingLanes;if(0===n)return Ht=0;var a=0,r=0,o=e.expiredLanes,i=e.suspendedLanes,l=e.pingedLanes;if(0!==o)a=o,r=Ht=15;else if(0!=(o=134217727&n)){var s=o&~i;0!==s?(a=Tt(s),r=Ht):0!=(l&=o)&&(a=Tt(l),r=Ht)}else 0!=(o=n&~i)?(a=Tt(o),r=Ht):0!==l&&(a=Tt(l),r=Ht);if(0===a)return 0;if(a=n&((0>(a=31-Dt(a))?0:1\u003C\u003Ca)\u003C\u003C1)-1,0!==t&&t!==a&&0==(t&i)){if(Tt(t),r\u003C=Ht)return t;Ht=r}if(0!==(t=e.entangledLanes))for(e=e.entanglements,t&=a;0\u003Ct;)r=1\u003C\u003C(n=31-Dt(t)),a|=e[n],t&=~r;return a}function Ot(e){return 0!=(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function jt(e,t){switch(e){case 15:return 1;case 14:return 2;case 12:return 0===(e=Vt(24&~t))?jt(10,t):e;case 10:return 0===(e=Vt(192&~t))?jt(8,t):e;case 8:return 0===(e=Vt(3584&~t))&&0===(e=Vt(4186112&~t))&&(e=512),e;case 2:return 0===(t=Vt(805306368&~t))&&(t=268435456),t}throw Error(i(358,e))}function Vt(e){return e&-e}function Ft(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Wt(e,t,n){e.pendingLanes|=t;var a=t-1;e.suspendedLanes&=a,e.pingedLanes&=a,(e=e.eventTimes)[t=31-Dt(t)]=n}var Dt=Math.clz32?Math.clz32:function(e){return 0===e?32:31-(It(e)\u002FUt|0)|0},It=Math.log,Ut=Math.LN2,$t=o.unstable_UserBlockingPriority,Gt=o.unstable_runWithPriority,qt=!0;function Kt(e,t,n,a){Te||Be();var r=Qt,o=Te;Te=!0;try{Ae(r,e,t,n,a)}finally{(Te=o)||Oe()}}function Xt(e,t,n,a){Gt($t,Qt.bind(null,e,t,n,a))}function Qt(e,t,n,a){var r;if(qt)if((r=0==(4&t))&&0\u003Cot.length&&-1\u003Cut.indexOf(e))e=mt(null,e,t,n,a),ot.push(e);else{var o=Jt(e,t,n,a);if(null===o)r&&ft(e,a);else{if(r){if(-1\u003Cut.indexOf(e))return e=mt(o,e,t,n,a),void ot.push(e);if(function(e,t,n,a,r){switch(t){case\"focusin\":return it=ht(it,e,t,n,a,r),!0;case\"dragenter\":return lt=ht(lt,e,t,n,a,r),!0;case\"mouseover\":return st=ht(st,e,t,n,a,r),!0;case\"pointerover\":var o=r.pointerId;return pt.set(o,ht(pt.get(o)||null,e,t,n,a,r)),!0;case\"gotpointercapture\":return o=r.pointerId,ct.set(o,ht(ct.get(o)||null,e,t,n,a,r)),!0}return!1}(o,e,t,n,a))return;ft(e,a)}Ha(e,t,a,null,n)}}}function Jt(e,t,n,a){var r=Ce(a);if(null!==(r=nr(r))){var o=Ke(r);if(null===o)r=null;else{var i=o.tag;if(13===i){if(null!==(r=Xe(o)))return r;r=null}else if(3===i){if(o.stateNode.hydrate)return 3===o.tag?o.stateNode.containerInfo:null;r=null}else o!==r&&(r=null)}}return Ha(e,t,a,r,n),null}var Yt=null,en=null,tn=null;function nn(){if(tn)return tn;var e,t,n=en,a=n.length,r=\"value\"in Yt?Yt.value:Yt.textContent,o=r.length;for(e=0;e\u003Ca&&n[e]===r[e];e++);var i=a-e;for(t=1;t\u003C=i&&n[a-t]===r[o-t];t++);return tn=r.slice(e,1\u003Ct?1-t:void 0)}function an(e){var t=e.keyCode;return\"charCode\"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32\u003C=e||13===e?e:0}function rn(){return!0}function on(){return!1}function ln(e){function t(t,n,a,r,o){for(var i in this._reactName=t,this._targetInst=a,this.type=n,this.nativeEvent=r,this.target=o,this.currentTarget=null,e)e.hasOwnProperty(i)&&(t=e[i],this[i]=t?t(r):r[i]);return this.isDefaultPrevented=(null!=r.defaultPrevented?r.defaultPrevented:!1===r.returnValue)?rn:on,this.isPropagationStopped=on,this}return r(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():\"unknown\"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=rn)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():\"unknown\"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=rn)},persist:function(){},isPersistent:rn}),t}var sn,pn,cn,dn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},un=ln(dn),mn=r({},dn,{view:0,detail:0}),fn=ln(mn),hn=r({},mn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Ln,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return\"movementX\"in e?e.movementX:(e!==cn&&(cn&&\"mousemove\"===e.type?(sn=e.screenX-cn.screenX,pn=e.screenY-cn.screenY):pn=sn=0,cn=e),sn)},movementY:function(e){return\"movementY\"in e?e.movementY:pn}}),gn=ln(hn),vn=ln(r({},hn,{dataTransfer:0})),wn=ln(r({},mn,{relatedTarget:0})),bn=ln(r({},dn,{animationName:0,elapsedTime:0,pseudoElement:0})),xn=r({},dn,{clipboardData:function(e){return\"clipboardData\"in e?e.clipboardData:window.clipboardData}}),yn=ln(xn),kn=ln(r({},dn,{data:0})),En={Esc:\"Escape\",Spacebar:\" \",Left:\"ArrowLeft\",Up:\"ArrowUp\",Right:\"ArrowRight\",Down:\"ArrowDown\",Del:\"Delete\",Win:\"OS\",Menu:\"ContextMenu\",Apps:\"ContextMenu\",Scroll:\"ScrollLock\",MozPrintableKey:\"Unidentified\"},Cn={8:\"Backspace\",9:\"Tab\",12:\"Clear\",13:\"Enter\",16:\"Shift\",17:\"Control\",18:\"Alt\",19:\"Pause\",20:\"CapsLock\",27:\"Escape\",32:\" \",33:\"PageUp\",34:\"PageDown\",35:\"End\",36:\"Home\",37:\"ArrowLeft\",38:\"ArrowUp\",39:\"ArrowRight\",40:\"ArrowDown\",45:\"Insert\",46:\"Delete\",112:\"F1\",113:\"F2\",114:\"F3\",115:\"F4\",116:\"F5\",117:\"F6\",118:\"F7\",119:\"F8\",120:\"F9\",121:\"F10\",122:\"F11\",123:\"F12\",144:\"NumLock\",145:\"ScrollLock\",224:\"Meta\"},Sn={Alt:\"altKey\",Control:\"ctrlKey\",Meta:\"metaKey\",Shift:\"shiftKey\"};function Mn(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Sn[e])&&!!t[e]}function Ln(){return Mn}var Nn=r({},mn,{key:function(e){if(e.key){var t=En[e.key]||e.key;if(\"Unidentified\"!==t)return t}return\"keypress\"===e.type?13===(e=an(e))?\"Enter\":String.fromCharCode(e):\"keydown\"===e.type||\"keyup\"===e.type?Cn[e.keyCode]||\"Unidentified\":\"\"},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Ln,charCode:function(e){return\"keypress\"===e.type?an(e):0},keyCode:function(e){return\"keydown\"===e.type||\"keyup\"===e.type?e.keyCode:0},which:function(e){return\"keypress\"===e.type?an(e):\"keydown\"===e.type||\"keyup\"===e.type?e.keyCode:0}}),Zn=ln(Nn),Pn=ln(r({},hn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),zn=ln(r({},mn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Ln})),An=ln(r({},dn,{propertyName:0,elapsedTime:0,pseudoElement:0})),Bn=r({},hn,{deltaX:function(e){return\"deltaX\"in e?e.deltaX:\"wheelDeltaX\"in e?-e.wheelDeltaX:0},deltaY:function(e){return\"deltaY\"in e?e.deltaY:\"wheelDeltaY\"in e?-e.wheelDeltaY:\"wheelDelta\"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),Hn=ln(Bn),Tn=[9,13,27,32],Rn=d&&\"CompositionEvent\"in window,On=null;d&&\"documentMode\"in document&&(On=document.documentMode);var jn=d&&\"TextEvent\"in window&&!On,Vn=d&&(!Rn||On&&8\u003COn&&11>=On),Fn=String.fromCharCode(32),Wn=!1;function Dn(e,t){switch(e){case\"keyup\":return-1!==Tn.indexOf(t.keyCode);case\"keydown\":return 229!==t.keyCode;case\"keypress\":case\"mousedown\":case\"focusout\":return!0;default:return!1}}function In(e){return\"object\"==typeof(e=e.detail)&&\"data\"in e?e.data:null}var Un=!1,$n={color:!0,date:!0,datetime:!0,\"datetime-local\":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Gn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return\"input\"===t?!!$n[e.type]:\"textarea\"===t}function qn(e,t,n,a){Ze(a),0\u003C(t=Ra(t,\"onChange\")).length&&(n=new un(\"onChange\",\"change\",null,n,a),e.push({event:n,listeners:t}))}var Kn=null,Xn=null;function Qn(e){Na(e,0)}function Jn(e){if(Q(rr(e)))return e}function Yn(e,t){if(\"change\"===e)return t}var ea=!1;if(d){var ta;if(d){var na=\"oninput\"in document;if(!na){var aa=document.createElement(\"div\");aa.setAttribute(\"oninput\",\"return;\"),na=\"function\"==typeof aa.oninput}ta=na}else ta=!1;ea=ta&&(!document.documentMode||9\u003Cdocument.documentMode)}function ra(){Kn&&(Kn.detachEvent(\"onpropertychange\",oa),Xn=Kn=null)}function oa(e){if(\"value\"===e.propertyName&&Jn(Xn)){var t=[];if(qn(t,Xn,e,Ce(e)),e=Qn,Te)e(t);else{Te=!0;try{ze(e,t)}finally{Te=!1,Oe()}}}}function ia(e,t,n){\"focusin\"===e?(ra(),Xn=n,(Kn=t).attachEvent(\"onpropertychange\",oa)):\"focusout\"===e&&ra()}function la(e){if(\"selectionchange\"===e||\"keyup\"===e||\"keydown\"===e)return Jn(Xn)}function sa(e,t){if(\"click\"===e)return Jn(t)}function pa(e,t){if(\"input\"===e||\"change\"===e)return Jn(t)}var ca=\"function\"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1\u002Fe==1\u002Ft)||e!=e&&t!=t},da=Object.prototype.hasOwnProperty;function ua(e,t){if(ca(e,t))return!0;if(\"object\"!=typeof e||null===e||\"object\"!=typeof t||null===t)return!1;var n=Object.keys(e),a=Object.keys(t);if(n.length!==a.length)return!1;for(a=0;a\u003Cn.length;a++)if(!da.call(t,n[a])||!ca(e[n[a]],t[n[a]]))return!1;return!0}function ma(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function fa(e,t){var n,a=ma(e);for(e=0;a;){if(3===a.nodeType){if(n=e+a.textContent.length,e\u003C=t&&n>=t)return{node:a,offset:t-e};e=n}e:{for(;a;){if(a.nextSibling){a=a.nextSibling;break e}a=a.parentNode}a=void 0}a=ma(a)}}function ha(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?ha(e,t.parentNode):\"contains\"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function ga(){for(var e=window,t=J();t instanceof e.HTMLIFrameElement;){try{var n=\"string\"==typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;t=J((e=t.contentWindow).document)}return t}function va(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(\"input\"===t&&(\"text\"===e.type||\"search\"===e.type||\"tel\"===e.type||\"url\"===e.type||\"password\"===e.type)||\"textarea\"===t||\"true\"===e.contentEditable)}var _a=d&&\"documentMode\"in document&&11>=document.documentMode,wa=null,ba=null,xa=null,ya=!1;function ka(e,t,n){var a=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;ya||null==wa||wa!==J(a)||(a=\"selectionStart\"in(a=wa)&&va(a)?{start:a.selectionStart,end:a.selectionEnd}:{anchorNode:(a=(a.ownerDocument&&a.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:a.anchorOffset,focusNode:a.focusNode,focusOffset:a.focusOffset},xa&&ua(xa,a)||(xa=a,0\u003C(a=Ra(ba,\"onSelect\")).length&&(t=new un(\"onSelect\",\"select\",null,t,n),e.push({event:t,listeners:a}),t.target=wa)))}Bt(\"cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange\".split(\" \"),0),Bt(\"drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel\".split(\" \"),1),Bt(At,2);for(var Ea=\"change selectionchange textInput compositionstart compositionend compositionupdate\".split(\" \"),Ca=0;Ca\u003CEa.length;Ca++)zt.set(Ea[Ca],0);c(\"onMouseEnter\",[\"mouseout\",\"mouseover\"]),c(\"onMouseLeave\",[\"mouseout\",\"mouseover\"]),c(\"onPointerEnter\",[\"pointerout\",\"pointerover\"]),c(\"onPointerLeave\",[\"pointerout\",\"pointerover\"]),p(\"onChange\",\"change click focusin focusout input keydown keyup selectionchange\".split(\" \")),p(\"onSelect\",\"focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange\".split(\" \")),p(\"onBeforeInput\",[\"compositionend\",\"keypress\",\"textInput\",\"paste\"]),p(\"onCompositionEnd\",\"compositionend focusout keydown keypress keyup mousedown\".split(\" \")),p(\"onCompositionStart\",\"compositionstart focusout keydown keypress keyup mousedown\".split(\" \")),p(\"onCompositionUpdate\",\"compositionupdate focusout keydown keypress keyup mousedown\".split(\" \"));var Sa=\"abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting\".split(\" \"),Ma=new Set(\"cancel close invalid load scroll toggle\".split(\" \").concat(Sa));function La(e,t,n){var a=e.type||\"unknown-event\";e.currentTarget=n,function(e,t,n,a,r,o,l,s,p){if(qe.apply(this,arguments),De){if(!De)throw Error(i(198));var c=Ie;De=!1,Ie=null,Ue||(Ue=!0,$e=c)}}(a,t,void 0,e),e.currentTarget=null}function Na(e,t){t=0!=(4&t);for(var n=0;n\u003Ce.length;n++){var a=e[n],r=a.event;a=a.listeners;e:{var o=void 0;if(t)for(var i=a.length-1;0\u003C=i;i--){var l=a[i],s=l.instance,p=l.currentTarget;if(l=l.listener,s!==o&&r.isPropagationStopped())break e;La(r,l,p),o=s}else for(i=0;i\u003Ca.length;i++){if(s=(l=a[i]).instance,p=l.currentTarget,l=l.listener,s!==o&&r.isPropagationStopped())break e;La(r,l,p),o=s}}}if(Ue)throw e=$e,Ue=!1,$e=null,e}function Za(e,t){var n=ir(t),a=e+\"__bubble\";n.has(a)||(Ba(t,e,2,!1),n.add(a))}var Pa=\"_reactListening\"+Math.random().toString(36).slice(2);function za(e){e[Pa]||(e[Pa]=!0,l.forEach((function(t){Ma.has(t)||Aa(t,!1,e,null),Aa(t,!0,e,null)})))}function Aa(e,t,n,a){var r=4\u003Carguments.length&&void 0!==arguments[4]?arguments[4]:0,o=n;if(\"selectionchange\"===e&&9!==n.nodeType&&(o=n.ownerDocument),null!==a&&!t&&Ma.has(e)){if(\"scroll\"!==e)return;r|=2,o=a}var i=ir(o),l=e+\"__\"+(t?\"capture\":\"bubble\");i.has(l)||(t&&(r|=4),Ba(o,e,r,t),i.add(l))}function Ba(e,t,n,a){var r=zt.get(t);switch(void 0===r?2:r){case 0:r=Kt;break;case 1:r=Xt;break;default:r=Qt}n=r.bind(null,t,n,e),r=void 0,!Ve||\"touchstart\"!==t&&\"touchmove\"!==t&&\"wheel\"!==t||(r=!0),a?void 0!==r?e.addEventListener(t,n,{capture:!0,passive:r}):e.addEventListener(t,n,!0):void 0!==r?e.addEventListener(t,n,{passive:r}):e.addEventListener(t,n,!1)}function Ha(e,t,n,a,r){var o=a;if(0==(1&t)&&0==(2&t)&&null!==a)e:for(;;){if(null===a)return;var i=a.tag;if(3===i||4===i){var l=a.stateNode.containerInfo;if(l===r||8===l.nodeType&&l.parentNode===r)break;if(4===i)for(i=a.return;null!==i;){var s=i.tag;if((3===s||4===s)&&((s=i.stateNode.containerInfo)===r||8===s.nodeType&&s.parentNode===r))return;i=i.return}for(;null!==l;){if(null===(i=nr(l)))return;if(5===(s=i.tag)||6===s){a=o=i;continue e}l=l.parentNode}}a=a.return}!function(e,t,n){if(Re)return e();Re=!0;try{return He(e,t,n)}finally{Re=!1,Oe()}}((function(){var a=o,r=Ce(n),i=[];e:{var l=Pt.get(e);if(void 0!==l){var s=un,p=e;switch(e){case\"keypress\":if(0===an(n))break e;case\"keydown\":case\"keyup\":s=Zn;break;case\"focusin\":p=\"focus\",s=wn;break;case\"focusout\":p=\"blur\",s=wn;break;case\"beforeblur\":case\"afterblur\":s=wn;break;case\"click\":if(2===n.button)break e;case\"auxclick\":case\"dblclick\":case\"mousedown\":case\"mousemove\":case\"mouseup\":case\"mouseout\":case\"mouseover\":case\"contextmenu\":s=gn;break;case\"drag\":case\"dragend\":case\"dragenter\":case\"dragexit\":case\"dragleave\":case\"dragover\":case\"dragstart\":case\"drop\":s=vn;break;case\"touchcancel\":case\"touchend\":case\"touchmove\":case\"touchstart\":s=zn;break;case Mt:case Lt:case Nt:s=bn;break;case Zt:s=An;break;case\"scroll\":s=fn;break;case\"wheel\":s=Hn;break;case\"copy\":case\"cut\":case\"paste\":s=yn;break;case\"gotpointercapture\":case\"lostpointercapture\":case\"pointercancel\":case\"pointerdown\":case\"pointermove\":case\"pointerout\":case\"pointerover\":case\"pointerup\":s=Pn}var c=0!=(4&t),d=!c&&\"scroll\"===e,u=c?null!==l?l+\"Capture\":null:l;c=[];for(var m,f=a;null!==f;){var h=(m=f).stateNode;if(5===m.tag&&null!==h&&(m=h,null!==u&&null!=(h=je(f,u))&&c.push(Ta(f,h,m))),d)break;f=f.return}0\u003Cc.length&&(l=new s(l,p,null,n,r),i.push({event:l,listeners:c}))}}if(0==(7&t)){if(s=\"mouseout\"===e||\"pointerout\"===e,(!(l=\"mouseover\"===e||\"pointerover\"===e)||0!=(16&t)||!(p=n.relatedTarget||n.fromElement)||!nr(p)&&!p[er])&&(s||l)&&(l=r.window===r?r:(l=r.ownerDocument)?l.defaultView||l.parentWindow:window,s?(s=a,null!==(p=(p=n.relatedTarget||n.toElement)?nr(p):null)&&(p!==(d=Ke(p))||5!==p.tag&&6!==p.tag)&&(p=null)):(s=null,p=a),s!==p)){if(c=gn,h=\"onMouseLeave\",u=\"onMouseEnter\",f=\"mouse\",\"pointerout\"!==e&&\"pointerover\"!==e||(c=Pn,h=\"onPointerLeave\",u=\"onPointerEnter\",f=\"pointer\"),d=null==s?l:rr(s),m=null==p?l:rr(p),(l=new c(h,f+\"leave\",s,n,r)).target=d,l.relatedTarget=m,h=null,nr(r)===a&&((c=new c(u,f+\"enter\",p,n,r)).target=m,c.relatedTarget=d,h=c),d=h,s&&p)e:{for(u=p,f=0,m=c=s;m;m=Oa(m))f++;for(m=0,h=u;h;h=Oa(h))m++;for(;0\u003Cf-m;)c=Oa(c),f--;for(;0\u003Cm-f;)u=Oa(u),m--;for(;f--;){if(c===u||null!==u&&c===u.alternate)break e;c=Oa(c),u=Oa(u)}c=null}else c=null;null!==s&&ja(i,l,s,c,!1),null!==p&&null!==d&&ja(i,d,p,c,!0)}if(\"select\"===(s=(l=a?rr(a):window).nodeName&&l.nodeName.toLowerCase())||\"input\"===s&&\"file\"===l.type)var g=Yn;else if(Gn(l))if(ea)g=pa;else{g=la;var v=ia}else(s=l.nodeName)&&\"input\"===s.toLowerCase()&&(\"checkbox\"===l.type||\"radio\"===l.type)&&(g=sa);switch(g&&(g=g(e,a))?qn(i,g,n,r):(v&&v(e,l,a),\"focusout\"===e&&(v=l._wrapperState)&&v.controlled&&\"number\"===l.type&&re(l,\"number\",l.value)),v=a?rr(a):window,e){case\"focusin\":(Gn(v)||\"true\"===v.contentEditable)&&(wa=v,ba=a,xa=null);break;case\"focusout\":xa=ba=wa=null;break;case\"mousedown\":ya=!0;break;case\"contextmenu\":case\"mouseup\":case\"dragend\":ya=!1,ka(i,n,r);break;case\"selectionchange\":if(_a)break;case\"keydown\":case\"keyup\":ka(i,n,r)}var _;if(Rn)e:{switch(e){case\"compositionstart\":var w=\"onCompositionStart\";break e;case\"compositionend\":w=\"onCompositionEnd\";break e;case\"compositionupdate\":w=\"onCompositionUpdate\";break e}w=void 0}else Un?Dn(e,n)&&(w=\"onCompositionEnd\"):\"keydown\"===e&&229===n.keyCode&&(w=\"onCompositionStart\");w&&(Vn&&\"ko\"!==n.locale&&(Un||\"onCompositionStart\"!==w?\"onCompositionEnd\"===w&&Un&&(_=nn()):(en=\"value\"in(Yt=r)?Yt.value:Yt.textContent,Un=!0)),0\u003C(v=Ra(a,w)).length&&(w=new kn(w,e,null,n,r),i.push({event:w,listeners:v}),(_||null!==(_=In(n)))&&(w.data=_))),(_=jn?function(e,t){switch(e){case\"compositionend\":return In(t);case\"keypress\":return 32!==t.which?null:(Wn=!0,Fn);case\"textInput\":return(e=t.data)===Fn&&Wn?null:e;default:return null}}(e,n):function(e,t){if(Un)return\"compositionend\"===e||!Rn&&Dn(e,t)?(e=nn(),tn=en=Yt=null,Un=!1,e):null;switch(e){case\"paste\":default:return null;case\"keypress\":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1\u003Ct.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case\"compositionend\":return Vn&&\"ko\"!==t.locale?null:t.data}}(e,n))&&0\u003C(a=Ra(a,\"onBeforeInput\")).length&&(r=new kn(\"onBeforeInput\",\"beforeinput\",null,n,r),i.push({event:r,listeners:a}),r.data=_)}Na(i,t)}))}function Ta(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Ra(e,t){for(var n=t+\"Capture\",a=[];null!==e;){var r=e,o=r.stateNode;5===r.tag&&null!==o&&(r=o,null!=(o=je(e,n))&&a.unshift(Ta(e,o,r)),null!=(o=je(e,t))&&a.push(Ta(e,o,r))),e=e.return}return a}function Oa(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function ja(e,t,n,a,r){for(var o=t._reactName,i=[];null!==n&&n!==a;){var l=n,s=l.alternate,p=l.stateNode;if(null!==s&&s===a)break;5===l.tag&&null!==p&&(l=p,r?null!=(s=je(n,o))&&i.unshift(Ta(n,s,l)):r||null!=(s=je(n,o))&&i.push(Ta(n,s,l))),n=n.return}0!==i.length&&e.push({event:t,listeners:i})}function Va(){}var Fa=null,Wa=null;function Da(e,t){switch(e){case\"button\":case\"input\":case\"select\":case\"textarea\":return!!t.autoFocus}return!1}function Ia(e,t){return\"textarea\"===e||\"option\"===e||\"noscript\"===e||\"string\"==typeof t.children||\"number\"==typeof t.children||\"object\"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var Ua=\"function\"==typeof setTimeout?setTimeout:void 0,$a=\"function\"==typeof clearTimeout?clearTimeout:void 0;function Ga(e){(1===e.nodeType||9===e.nodeType&&null!=(e=e.body))&&(e.textContent=\"\")}function qa(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Ka(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if(\"$\"===n||\"$!\"===n||\"$?\"===n){if(0===t)return e;t--}else\"\u002F$\"===n&&t++}e=e.previousSibling}return null}var Xa=0,Qa=Math.random().toString(36).slice(2),Ja=\"__reactFiber$\"+Qa,Ya=\"__reactProps$\"+Qa,er=\"__reactContainer$\"+Qa,tr=\"__reactEvents$\"+Qa;function nr(e){var t=e[Ja];if(t)return t;for(var n=e.parentNode;n;){if(t=n[er]||n[Ja]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=Ka(e);null!==e;){if(n=e[Ja])return n;e=Ka(e)}return t}n=(e=n).parentNode}return null}function ar(e){return!(e=e[Ja]||e[er])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function rr(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(i(33))}function or(e){return e[Ya]||null}function ir(e){var t=e[tr];return void 0===t&&(t=e[tr]=new Set),t}var lr=[],sr=-1;function pr(e){return{current:e}}function cr(e){0>sr||(e.current=lr[sr],lr[sr]=null,sr--)}function dr(e,t){sr++,lr[sr]=e.current,e.current=t}var ur={},mr=pr(ur),fr=pr(!1),hr=ur;function gr(e,t){var n=e.type.contextTypes;if(!n)return ur;var a=e.stateNode;if(a&&a.__reactInternalMemoizedUnmaskedChildContext===t)return a.__reactInternalMemoizedMaskedChildContext;var r,o={};for(r in n)o[r]=t[r];return a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function vr(e){return null!=e.childContextTypes}function _r(){cr(fr),cr(mr)}function wr(e,t,n){if(mr.current!==ur)throw Error(i(168));dr(mr,t),dr(fr,n)}function br(e,t,n){var a=e.stateNode;if(e=t.childContextTypes,\"function\"!=typeof a.getChildContext)return n;for(var o in a=a.getChildContext())if(!(o in e))throw Error(i(108,G(t)||\"Unknown\",o));return r({},n,a)}function xr(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||ur,hr=mr.current,dr(mr,e),dr(fr,fr.current),!0}function yr(e,t,n){var a=e.stateNode;if(!a)throw Error(i(169));n?(e=br(e,t,hr),a.__reactInternalMemoizedMergedChildContext=e,cr(fr),cr(mr),dr(mr,e)):cr(fr),dr(fr,n)}var kr=null,Er=null,Cr=o.unstable_runWithPriority,Sr=o.unstable_scheduleCallback,Mr=o.unstable_cancelCallback,Lr=o.unstable_shouldYield,Nr=o.unstable_requestPaint,Zr=o.unstable_now,Pr=o.unstable_getCurrentPriorityLevel,zr=o.unstable_ImmediatePriority,Ar=o.unstable_UserBlockingPriority,Br=o.unstable_NormalPriority,Hr=o.unstable_LowPriority,Tr=o.unstable_IdlePriority,Rr={},Or=void 0!==Nr?Nr:function(){},jr=null,Vr=null,Fr=!1,Wr=Zr(),Dr=1e4>Wr?Zr:function(){return Zr()-Wr};function Ir(){switch(Pr()){case zr:return 99;case Ar:return 98;case Br:return 97;case Hr:return 96;case Tr:return 95;default:throw Error(i(332))}}function Ur(e){switch(e){case 99:return zr;case 98:return Ar;case 97:return Br;case 96:return Hr;case 95:return Tr;default:throw Error(i(332))}}function $r(e,t){return e=Ur(e),Cr(e,t)}function Gr(e,t,n){return e=Ur(e),Sr(e,t,n)}function qr(){if(null!==Vr){var e=Vr;Vr=null,Mr(e)}Kr()}function Kr(){if(!Fr&&null!==jr){Fr=!0;var e=0;try{var t=jr;$r(99,(function(){for(;e\u003Ct.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}})),jr=null}catch(t){throw null!==jr&&(jr=jr.slice(e+1)),Sr(zr,qr),t}finally{Fr=!1}}}var Xr=x.ReactCurrentBatchConfig;function Qr(e,t){if(e&&e.defaultProps){for(var n in t=r({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}return t}var Jr=pr(null),Yr=null,eo=null,to=null;function no(){to=eo=Yr=null}function ao(e){var t=Jr.current;cr(Jr),e.type._context._currentValue=t}function ro(e,t){for(;null!==e;){var n=e.alternate;if((e.childLanes&t)===t){if(null===n||(n.childLanes&t)===t)break;n.childLanes|=t}else e.childLanes|=t,null!==n&&(n.childLanes|=t);e=e.return}}function oo(e,t){Yr=e,to=eo=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!=(e.lanes&t)&&(Ri=!0),e.firstContext=null)}function io(e,t){if(to!==e&&!1!==t&&0!==t)if(\"number\"==typeof t&&1073741823!==t||(to=e,t=1073741823),t={context:e,observedBits:t,next:null},null===eo){if(null===Yr)throw Error(i(308));eo=t,Yr.dependencies={lanes:0,firstContext:t,responders:null}}else eo=eo.next=t;return e._currentValue}var lo=!1;function so(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null},effects:null}}function po(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function co(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function uo(e,t){if(null!==(e=e.updateQueue)){var n=(e=e.shared).pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}}function mo(e,t){var n=e.updateQueue,a=e.alternate;if(null!==a&&n===(a=a.updateQueue)){var r=null,o=null;if(null!==(n=n.firstBaseUpdate)){do{var i={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};null===o?r=o=i:o=o.next=i,n=n.next}while(null!==n);null===o?r=o=t:o=o.next=t}else r=o=t;return n={baseState:a.baseState,firstBaseUpdate:r,lastBaseUpdate:o,shared:a.shared,effects:a.effects},void(e.updateQueue=n)}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function fo(e,t,n,a){var o=e.updateQueue;lo=!1;var i=o.firstBaseUpdate,l=o.lastBaseUpdate,s=o.shared.pending;if(null!==s){o.shared.pending=null;var p=s,c=p.next;p.next=null,null===l?i=c:l.next=c,l=p;var d=e.alternate;if(null!==d){var u=(d=d.updateQueue).lastBaseUpdate;u!==l&&(null===u?d.firstBaseUpdate=c:u.next=c,d.lastBaseUpdate=p)}}if(null!==i){for(u=o.baseState,l=0,d=c=p=null;;){s=i.lane;var m=i.eventTime;if((a&s)===s){null!==d&&(d=d.next={eventTime:m,lane:0,tag:i.tag,payload:i.payload,callback:i.callback,next:null});e:{var f=e,h=i;switch(s=t,m=n,h.tag){case 1:if(\"function\"==typeof(f=h.payload)){u=f.call(m,u,s);break e}u=f;break e;case 3:f.flags=-4097&f.flags|64;case 0:if(null==(s=\"function\"==typeof(f=h.payload)?f.call(m,u,s):f))break e;u=r({},u,s);break e;case 2:lo=!0}}null!==i.callback&&(e.flags|=32,null===(s=o.effects)?o.effects=[i]:s.push(i))}else m={eventTime:m,lane:s,tag:i.tag,payload:i.payload,callback:i.callback,next:null},null===d?(c=d=m,p=u):d=d.next=m,l|=s;if(null===(i=i.next)){if(null===(s=o.shared.pending))break;i=s.next,s.next=null,o.lastBaseUpdate=s,o.shared.pending=null}}null===d&&(p=u),o.baseState=p,o.firstBaseUpdate=c,o.lastBaseUpdate=d,Vl|=l,e.lanes=l,e.memoizedState=u}}function ho(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t\u003Ce.length;t++){var a=e[t],r=a.callback;if(null!==r){if(a.callback=null,a=n,\"function\"!=typeof r)throw Error(i(191,r));r.call(a)}}}var go=(new a.Component).refs;function vo(e,t,n,a){n=null==(n=n(a,t=e.memoizedState))?t:r({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var _o={isMounted:function(e){return!!(e=e._reactInternals)&&Ke(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var a=ds(),r=us(e),o=co(a,r);o.payload=t,null!=n&&(o.callback=n),uo(e,o),ms(e,r,a)},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var a=ds(),r=us(e),o=co(a,r);o.tag=1,o.payload=t,null!=n&&(o.callback=n),uo(e,o),ms(e,r,a)},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=ds(),a=us(e),r=co(n,a);r.tag=2,null!=t&&(r.callback=t),uo(e,r),ms(e,a,n)}};function wo(e,t,n,a,r,o,i){return\"function\"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(a,o,i):!(t.prototype&&t.prototype.isPureReactComponent&&ua(n,a)&&ua(r,o))}function bo(e,t,n){var a=!1,r=ur,o=t.contextType;return\"object\"==typeof o&&null!==o?o=io(o):(r=vr(t)?hr:mr.current,o=(a=null!=(a=t.contextTypes))?gr(e,r):ur),t=new t(n,o),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=_o,e.stateNode=t,t._reactInternals=e,a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=r,e.__reactInternalMemoizedMaskedChildContext=o),t}function xo(e,t,n,a){e=t.state,\"function\"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,a),\"function\"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,a),t.state!==e&&_o.enqueueReplaceState(t,t.state,null)}function yo(e,t,n,a){var r=e.stateNode;r.props=n,r.state=e.memoizedState,r.refs=go,so(e);var o=t.contextType;\"object\"==typeof o&&null!==o?r.context=io(o):(o=vr(t)?hr:mr.current,r.context=gr(e,o)),fo(e,n,r,a),r.state=e.memoizedState,\"function\"==typeof(o=t.getDerivedStateFromProps)&&(vo(e,t,o,n),r.state=e.memoizedState),\"function\"==typeof t.getDerivedStateFromProps||\"function\"==typeof r.getSnapshotBeforeUpdate||\"function\"!=typeof r.UNSAFE_componentWillMount&&\"function\"!=typeof r.componentWillMount||(t=r.state,\"function\"==typeof r.componentWillMount&&r.componentWillMount(),\"function\"==typeof r.UNSAFE_componentWillMount&&r.UNSAFE_componentWillMount(),t!==r.state&&_o.enqueueReplaceState(r,r.state,null),fo(e,n,r,a),r.state=e.memoizedState),\"function\"==typeof r.componentDidMount&&(e.flags|=4)}var ko=Array.isArray;function Eo(e,t,n){if(null!==(e=n.ref)&&\"function\"!=typeof e&&\"object\"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(i(309));var a=n.stateNode}if(!a)throw Error(i(147,e));var r=\"\"+e;return null!==t&&null!==t.ref&&\"function\"==typeof t.ref&&t.ref._stringRef===r?t.ref:(t=function(e){var t=a.refs;t===go&&(t=a.refs={}),null===e?delete t[r]:t[r]=e},t._stringRef=r,t)}if(\"string\"!=typeof e)throw Error(i(284));if(!n._owner)throw Error(i(290,e))}return e}function Co(e,t){if(\"textarea\"!==e.type)throw Error(i(31,\"[object Object]\"===Object.prototype.toString.call(t)?\"object with keys {\"+Object.keys(t).join(\", \")+\"}\":t))}function So(e){function t(t,n){if(e){var a=t.lastEffect;null!==a?(a.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.flags=8}}function n(n,a){if(!e)return null;for(;null!==a;)t(n,a),a=a.sibling;return null}function a(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function r(e,t){return(e=Us(e,t)).index=0,e.sibling=null,e}function o(t,n,a){return t.index=a,e?null!==(a=t.alternate)?(a=a.index)\u003Cn?(t.flags=2,n):a:(t.flags=2,n):n}function l(t){return e&&null===t.alternate&&(t.flags=2),t}function s(e,t,n,a){return null===t||6!==t.tag?((t=Ks(n,e.mode,a)).return=e,t):((t=r(t,n)).return=e,t)}function p(e,t,n,a){return null!==t&&t.elementType===n.type?((a=r(t,n.props)).ref=Eo(e,t,n),a.return=e,a):((a=$s(n.type,n.key,n.props,null,e.mode,a)).ref=Eo(e,t,n),a.return=e,a)}function c(e,t,n,a){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?((t=Xs(n,e.mode,a)).return=e,t):((t=r(t,n.children||[])).return=e,t)}function d(e,t,n,a,o){return null===t||7!==t.tag?((t=Gs(n,e.mode,a,o)).return=e,t):((t=r(t,n)).return=e,t)}function u(e,t,n){if(\"string\"==typeof t||\"number\"==typeof t)return(t=Ks(\"\"+t,e.mode,n)).return=e,t;if(\"object\"==typeof t&&null!==t){switch(t.$$typeof){case y:return(n=$s(t.type,t.key,t.props,null,e.mode,n)).ref=Eo(e,null,t),n.return=e,n;case k:return(t=Xs(t,e.mode,n)).return=e,t}if(ko(t)||W(t))return(t=Gs(t,e.mode,n,null)).return=e,t;Co(e,t)}return null}function m(e,t,n,a){var r=null!==t?t.key:null;if(\"string\"==typeof n||\"number\"==typeof n)return null!==r?null:s(e,t,\"\"+n,a);if(\"object\"==typeof n&&null!==n){switch(n.$$typeof){case y:return n.key===r?n.type===E?d(e,t,n.props.children,a,r):p(e,t,n,a):null;case k:return n.key===r?c(e,t,n,a):null}if(ko(n)||W(n))return null!==r?null:d(e,t,n,a,null);Co(e,n)}return null}function f(e,t,n,a,r){if(\"string\"==typeof a||\"number\"==typeof a)return s(t,e=e.get(n)||null,\"\"+a,r);if(\"object\"==typeof a&&null!==a){switch(a.$$typeof){case y:return e=e.get(null===a.key?n:a.key)||null,a.type===E?d(t,e,a.props.children,r,a.key):p(t,e,a,r);case k:return c(t,e=e.get(null===a.key?n:a.key)||null,a,r)}if(ko(a)||W(a))return d(t,e=e.get(n)||null,a,r,null);Co(t,a)}return null}function h(r,i,l,s){for(var p=null,c=null,d=i,h=i=0,g=null;null!==d&&h\u003Cl.length;h++){d.index>h?(g=d,d=null):g=d.sibling;var v=m(r,d,l[h],s);if(null===v){null===d&&(d=g);break}e&&d&&null===v.alternate&&t(r,d),i=o(v,i,h),null===c?p=v:c.sibling=v,c=v,d=g}if(h===l.length)return n(r,d),p;if(null===d){for(;h\u003Cl.length;h++)null!==(d=u(r,l[h],s))&&(i=o(d,i,h),null===c?p=d:c.sibling=d,c=d);return p}for(d=a(r,d);h\u003Cl.length;h++)null!==(g=f(d,r,h,l[h],s))&&(e&&null!==g.alternate&&d.delete(null===g.key?h:g.key),i=o(g,i,h),null===c?p=g:c.sibling=g,c=g);return e&&d.forEach((function(e){return t(r,e)})),p}function g(r,l,s,p){var c=W(s);if(\"function\"!=typeof c)throw Error(i(150));if(null==(s=c.call(s)))throw Error(i(151));for(var d=c=null,h=l,g=l=0,v=null,_=s.next();null!==h&&!_.done;g++,_=s.next()){h.index>g?(v=h,h=null):v=h.sibling;var w=m(r,h,_.value,p);if(null===w){null===h&&(h=v);break}e&&h&&null===w.alternate&&t(r,h),l=o(w,l,g),null===d?c=w:d.sibling=w,d=w,h=v}if(_.done)return n(r,h),c;if(null===h){for(;!_.done;g++,_=s.next())null!==(_=u(r,_.value,p))&&(l=o(_,l,g),null===d?c=_:d.sibling=_,d=_);return c}for(h=a(r,h);!_.done;g++,_=s.next())null!==(_=f(h,r,g,_.value,p))&&(e&&null!==_.alternate&&h.delete(null===_.key?g:_.key),l=o(_,l,g),null===d?c=_:d.sibling=_,d=_);return e&&h.forEach((function(e){return t(r,e)})),c}return function(e,a,o,s){var p=\"object\"==typeof o&&null!==o&&o.type===E&&null===o.key;p&&(o=o.props.children);var c=\"object\"==typeof o&&null!==o;if(c)switch(o.$$typeof){case y:e:{for(c=o.key,p=a;null!==p;){if(p.key===c){if(7===p.tag){if(o.type===E){n(e,p.sibling),(a=r(p,o.props.children)).return=e,e=a;break e}}else if(p.elementType===o.type){n(e,p.sibling),(a=r(p,o.props)).ref=Eo(e,p,o),a.return=e,e=a;break e}n(e,p);break}t(e,p),p=p.sibling}o.type===E?((a=Gs(o.props.children,e.mode,s,o.key)).return=e,e=a):((s=$s(o.type,o.key,o.props,null,e.mode,s)).ref=Eo(e,a,o),s.return=e,e=s)}return l(e);case k:e:{for(p=o.key;null!==a;){if(a.key===p){if(4===a.tag&&a.stateNode.containerInfo===o.containerInfo&&a.stateNode.implementation===o.implementation){n(e,a.sibling),(a=r(a,o.children||[])).return=e,e=a;break e}n(e,a);break}t(e,a),a=a.sibling}(a=Xs(o,e.mode,s)).return=e,e=a}return l(e)}if(\"string\"==typeof o||\"number\"==typeof o)return o=\"\"+o,null!==a&&6===a.tag?(n(e,a.sibling),(a=r(a,o)).return=e,e=a):(n(e,a),(a=Ks(o,e.mode,s)).return=e,e=a),l(e);if(ko(o))return h(e,a,o,s);if(W(o))return g(e,a,o,s);if(c&&Co(e,o),void 0===o&&!p)switch(e.tag){case 1:case 22:case 0:case 11:case 15:throw Error(i(152,G(e.type)||\"Component\"))}return n(e,a)}}var Mo=So(!0),Lo=So(!1),No={},Zo=pr(No),Po=pr(No),zo=pr(No);function Ao(e){if(e===No)throw Error(i(174));return e}function Bo(e,t){switch(dr(zo,t),dr(Po,e),dr(Zo,No),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:me(null,\"\");break;default:t=me(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}cr(Zo),dr(Zo,t)}function Ho(){cr(Zo),cr(Po),cr(zo)}function To(e){Ao(zo.current);var t=Ao(Zo.current),n=me(t,e.type);t!==n&&(dr(Po,e),dr(Zo,n))}function Ro(e){Po.current===e&&(cr(Zo),cr(Po))}var Oo=pr(0);function jo(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||\"$?\"===n.data||\"$!\"===n.data))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(64&t.flags))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Vo=null,Fo=null,Wo=!1;function Do(e,t){var n=Ds(5,null,null,0);n.elementType=\"DELETED\",n.type=\"DELETED\",n.stateNode=t,n.return=e,n.flags=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function Io(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,!0);case 6:return null!==(t=\"\"===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,!0);default:return!1}}function Uo(e){if(Wo){var t=Fo;if(t){var n=t;if(!Io(e,t)){if(!(t=qa(n.nextSibling))||!Io(e,t))return e.flags=-1025&e.flags|2,Wo=!1,void(Vo=e);Do(Vo,n)}Vo=e,Fo=qa(t.firstChild)}else e.flags=-1025&e.flags|2,Wo=!1,Vo=e}}function $o(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;Vo=e}function Go(e){if(e!==Vo)return!1;if(!Wo)return $o(e),Wo=!0,!1;var t=e.type;if(5!==e.tag||\"head\"!==t&&\"body\"!==t&&!Ia(t,e.memoizedProps))for(t=Fo;t;)Do(e,t),t=qa(t.nextSibling);if($o(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(i(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if(\"\u002F$\"===n){if(0===t){Fo=qa(e.nextSibling);break e}t--}else\"$\"!==n&&\"$!\"!==n&&\"$?\"!==n||t++}e=e.nextSibling}Fo=null}}else Fo=Vo?qa(e.stateNode.nextSibling):null;return!0}function qo(){Fo=Vo=null,Wo=!1}var Ko=[];function Xo(){for(var e=0;e\u003CKo.length;e++)Ko[e]._workInProgressVersionPrimary=null;Ko.length=0}var Qo=x.ReactCurrentDispatcher,Jo=x.ReactCurrentBatchConfig,Yo=0,ei=null,ti=null,ni=null,ai=!1,ri=!1;function oi(){throw Error(i(321))}function ii(e,t){if(null===t)return!1;for(var n=0;n\u003Ct.length&&n\u003Ce.length;n++)if(!ca(e[n],t[n]))return!1;return!0}function li(e,t,n,a,r,o){if(Yo=o,ei=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,Qo.current=null===e||null===e.memoizedState?Ai:Bi,e=n(a,r),ri){o=0;do{if(ri=!1,!(25>o))throw Error(i(301));o+=1,ni=ti=null,t.updateQueue=null,Qo.current=Hi,e=n(a,r)}while(ri)}if(Qo.current=zi,t=null!==ti&&null!==ti.next,Yo=0,ni=ti=ei=null,ai=!1,t)throw Error(i(300));return e}function si(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===ni?ei.memoizedState=ni=e:ni=ni.next=e,ni}function pi(){if(null===ti){var e=ei.alternate;e=null!==e?e.memoizedState:null}else e=ti.next;var t=null===ni?ei.memoizedState:ni.next;if(null!==t)ni=t,ti=e;else{if(null===e)throw Error(i(310));e={memoizedState:(ti=e).memoizedState,baseState:ti.baseState,baseQueue:ti.baseQueue,queue:ti.queue,next:null},null===ni?ei.memoizedState=ni=e:ni=ni.next=e}return ni}function ci(e,t){return\"function\"==typeof t?t(e):t}function di(e){var t=pi(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var a=ti,r=a.baseQueue,o=n.pending;if(null!==o){if(null!==r){var l=r.next;r.next=o.next,o.next=l}a.baseQueue=r=o,n.pending=null}if(null!==r){r=r.next,a=a.baseState;var s=l=o=null,p=r;do{var c=p.lane;if((Yo&c)===c)null!==s&&(s=s.next={lane:0,action:p.action,eagerReducer:p.eagerReducer,eagerState:p.eagerState,next:null}),a=p.eagerReducer===e?p.eagerState:e(a,p.action);else{var d={lane:c,action:p.action,eagerReducer:p.eagerReducer,eagerState:p.eagerState,next:null};null===s?(l=s=d,o=a):s=s.next=d,ei.lanes|=c,Vl|=c}p=p.next}while(null!==p&&p!==r);null===s?o=a:s.next=l,ca(a,t.memoizedState)||(Ri=!0),t.memoizedState=a,t.baseState=o,t.baseQueue=s,n.lastRenderedState=a}return[t.memoizedState,n.dispatch]}function ui(e){var t=pi(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var a=n.dispatch,r=n.pending,o=t.memoizedState;if(null!==r){n.pending=null;var l=r=r.next;do{o=e(o,l.action),l=l.next}while(l!==r);ca(o,t.memoizedState)||(Ri=!0),t.memoizedState=o,null===t.baseQueue&&(t.baseState=o),n.lastRenderedState=o}return[o,a]}function mi(e,t,n){var a=t._getVersion;a=a(t._source);var r=t._workInProgressVersionPrimary;if(null!==r?e=r===a:(e=e.mutableReadLanes,(e=(Yo&e)===e)&&(t._workInProgressVersionPrimary=a,Ko.push(t))),e)return n(t._source);throw Ko.push(t),Error(i(350))}function fi(e,t,n,a){var r=zl;if(null===r)throw Error(i(349));var o=t._getVersion,l=o(t._source),s=Qo.current,p=s.useState((function(){return mi(r,t,n)})),c=p[1],d=p[0];p=ni;var u=e.memoizedState,m=u.refs,f=m.getSnapshot,h=u.source;u=u.subscribe;var g=ei;return e.memoizedState={refs:m,source:t,subscribe:a},s.useEffect((function(){m.getSnapshot=n,m.setSnapshot=c;var e=o(t._source);if(!ca(l,e)){e=n(t._source),ca(d,e)||(c(e),e=us(g),r.mutableReadLanes|=e&r.pendingLanes),e=r.mutableReadLanes,r.entangledLanes|=e;for(var a=r.entanglements,i=e;0\u003Ci;){var s=31-Dt(i),p=1\u003C\u003Cs;a[s]|=e,i&=~p}}}),[n,t,a]),s.useEffect((function(){return a(t._source,(function(){var e=m.getSnapshot,n=m.setSnapshot;try{n(e(t._source));var a=us(g);r.mutableReadLanes|=a&r.pendingLanes}catch(e){n((function(){throw e}))}}))}),[t,a]),ca(f,n)&&ca(h,t)&&ca(u,a)||((e={pending:null,dispatch:null,lastRenderedReducer:ci,lastRenderedState:d}).dispatch=c=Pi.bind(null,ei,e),p.queue=e,p.baseQueue=null,d=mi(r,t,n),p.memoizedState=p.baseState=d),d}function hi(e,t,n){return fi(pi(),e,t,n)}function gi(e){var t=si();return\"function\"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={pending:null,dispatch:null,lastRenderedReducer:ci,lastRenderedState:e}).dispatch=Pi.bind(null,ei,e),[t.memoizedState,e]}function vi(e,t,n,a){return e={tag:e,create:t,destroy:n,deps:a,next:null},null===(t=ei.updateQueue)?(t={lastEffect:null},ei.updateQueue=t,t.lastEffect=e.next=e):null===(n=t.lastEffect)?t.lastEffect=e.next=e:(a=n.next,n.next=e,e.next=a,t.lastEffect=e),e}function _i(e){return e={current:e},si().memoizedState=e}function wi(){return pi().memoizedState}function bi(e,t,n,a){var r=si();ei.flags|=e,r.memoizedState=vi(1|t,n,void 0,void 0===a?null:a)}function xi(e,t,n,a){var r=pi();a=void 0===a?null:a;var o=void 0;if(null!==ti){var i=ti.memoizedState;if(o=i.destroy,null!==a&&ii(a,i.deps))return void vi(t,n,o,a)}ei.flags|=e,r.memoizedState=vi(1|t,n,o,a)}function yi(e,t){return bi(516,4,e,t)}function ki(e,t){return xi(516,4,e,t)}function Ei(e,t){return xi(4,2,e,t)}function Ci(e,t){return\"function\"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function Si(e,t,n){return n=null!=n?n.concat([e]):null,xi(4,2,Ci.bind(null,t,e),n)}function Mi(){}function Li(e,t){var n=pi();t=void 0===t?null:t;var a=n.memoizedState;return null!==a&&null!==t&&ii(t,a[1])?a[0]:(n.memoizedState=[e,t],e)}function Ni(e,t){var n=pi();t=void 0===t?null:t;var a=n.memoizedState;return null!==a&&null!==t&&ii(t,a[1])?a[0]:(e=e(),n.memoizedState=[e,t],e)}function Zi(e,t){var n=Ir();$r(98>n?98:n,(function(){e(!0)})),$r(97\u003Cn?97:n,(function(){var n=Jo.transition;Jo.transition=1;try{e(!1),t()}finally{Jo.transition=n}}))}function Pi(e,t,n){var a=ds(),r=us(e),o={lane:r,action:n,eagerReducer:null,eagerState:null,next:null},i=t.pending;if(null===i?o.next=o:(o.next=i.next,i.next=o),t.pending=o,i=e.alternate,e===ei||null!==i&&i===ei)ri=ai=!0;else{if(0===e.lanes&&(null===i||0===i.lanes)&&null!==(i=t.lastRenderedReducer))try{var l=t.lastRenderedState,s=i(l,n);if(o.eagerReducer=i,o.eagerState=s,ca(s,l))return}catch(e){}ms(e,r,a)}}var zi={readContext:io,useCallback:oi,useContext:oi,useEffect:oi,useImperativeHandle:oi,useLayoutEffect:oi,useMemo:oi,useReducer:oi,useRef:oi,useState:oi,useDebugValue:oi,useDeferredValue:oi,useTransition:oi,useMutableSource:oi,useOpaqueIdentifier:oi,unstable_isNewReconciler:!1},Ai={readContext:io,useCallback:function(e,t){return si().memoizedState=[e,void 0===t?null:t],e},useContext:io,useEffect:yi,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,bi(4,2,Ci.bind(null,t,e),n)},useLayoutEffect:function(e,t){return bi(4,2,e,t)},useMemo:function(e,t){var n=si();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var a=si();return t=void 0!==n?n(t):t,a.memoizedState=a.baseState=t,e=(e=a.queue={pending:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=Pi.bind(null,ei,e),[a.memoizedState,e]},useRef:_i,useState:gi,useDebugValue:Mi,useDeferredValue:function(e){var t=gi(e),n=t[0],a=t[1];return yi((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=gi(!1),t=e[0];return _i(e=Zi.bind(null,e[1])),[e,t]},useMutableSource:function(e,t,n){var a=si();return a.memoizedState={refs:{getSnapshot:t,setSnapshot:null},source:e,subscribe:n},fi(a,e,t,n)},useOpaqueIdentifier:function(){if(Wo){var e=!1,t=function(e){return{$$typeof:H,toString:e,valueOf:e}}((function(){throw e||(e=!0,n(\"r:\"+(Xa++).toString(36))),Error(i(355))})),n=gi(t)[1];return 0==(2&ei.mode)&&(ei.flags|=516,vi(5,(function(){n(\"r:\"+(Xa++).toString(36))}),void 0,null)),t}return gi(t=\"r:\"+(Xa++).toString(36)),t},unstable_isNewReconciler:!1},Bi={readContext:io,useCallback:Li,useContext:io,useEffect:ki,useImperativeHandle:Si,useLayoutEffect:Ei,useMemo:Ni,useReducer:di,useRef:wi,useState:function(){return di(ci)},useDebugValue:Mi,useDeferredValue:function(e){var t=di(ci),n=t[0],a=t[1];return ki((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=di(ci)[0];return[wi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return di(ci)[0]},unstable_isNewReconciler:!1},Hi={readContext:io,useCallback:Li,useContext:io,useEffect:ki,useImperativeHandle:Si,useLayoutEffect:Ei,useMemo:Ni,useReducer:ui,useRef:wi,useState:function(){return ui(ci)},useDebugValue:Mi,useDeferredValue:function(e){var t=ui(ci),n=t[0],a=t[1];return ki((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=ui(ci)[0];return[wi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return ui(ci)[0]},unstable_isNewReconciler:!1},Ti=x.ReactCurrentOwner,Ri=!1;function Oi(e,t,n,a){t.child=null===e?Lo(t,null,n,a):Mo(t,e.child,n,a)}function ji(e,t,n,a,r){n=n.render;var o=t.ref;return oo(t,r),a=li(e,t,n,a,o,r),null===e||Ri?(t.flags|=1,Oi(e,t,a,r),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~r,rl(e,t,r))}function Vi(e,t,n,a,r,o){if(null===e){var i=n.type;return\"function\"!=typeof i||Is(i)||void 0!==i.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=$s(n.type,null,a,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=i,Fi(e,t,i,a,r,o))}return i=e.child,0==(r&o)&&(r=i.memoizedProps,(n=null!==(n=n.compare)?n:ua)(r,a)&&e.ref===t.ref)?rl(e,t,o):(t.flags|=1,(e=Us(i,a)).ref=t.ref,e.return=t,t.child=e)}function Fi(e,t,n,a,r,o){if(null!==e&&ua(e.memoizedProps,a)&&e.ref===t.ref){if(Ri=!1,0==(o&r))return t.lanes=e.lanes,rl(e,t,o);0!=(16384&e.flags)&&(Ri=!0)}return Ii(e,t,n,a,o)}function Wi(e,t,n){var a=t.pendingProps,r=a.children,o=null!==e?e.memoizedState:null;if(\"hidden\"===a.mode||\"unstable-defer-without-hiding\"===a.mode)if(0==(4&t.mode))t.memoizedState={baseLanes:0},xs(0,n);else{if(0==(1073741824&n))return e=null!==o?o.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e},xs(0,e),null;t.memoizedState={baseLanes:0},xs(0,null!==o?o.baseLanes:n)}else null!==o?(a=o.baseLanes|n,t.memoizedState=null):a=n,xs(0,a);return Oi(e,t,r,n),t.child}function Di(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=128)}function Ii(e,t,n,a,r){var o=vr(n)?hr:mr.current;return o=gr(t,o),oo(t,r),n=li(e,t,n,a,o,r),null===e||Ri?(t.flags|=1,Oi(e,t,n,r),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~r,rl(e,t,r))}function Ui(e,t,n,a,r){if(vr(n)){var o=!0;xr(t)}else o=!1;if(oo(t,r),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),bo(t,n,a),yo(t,n,a,r),a=!0;else if(null===e){var i=t.stateNode,l=t.memoizedProps;i.props=l;var s=i.context,p=n.contextType;p=\"object\"==typeof p&&null!==p?io(p):gr(t,p=vr(n)?hr:mr.current);var c=n.getDerivedStateFromProps,d=\"function\"==typeof c||\"function\"==typeof i.getSnapshotBeforeUpdate;d||\"function\"!=typeof i.UNSAFE_componentWillReceiveProps&&\"function\"!=typeof i.componentWillReceiveProps||(l!==a||s!==p)&&xo(t,i,a,p),lo=!1;var u=t.memoizedState;i.state=u,fo(t,a,i,r),s=t.memoizedState,l!==a||u!==s||fr.current||lo?(\"function\"==typeof c&&(vo(t,n,c,a),s=t.memoizedState),(l=lo||wo(t,n,l,a,u,s,p))?(d||\"function\"!=typeof i.UNSAFE_componentWillMount&&\"function\"!=typeof i.componentWillMount||(\"function\"==typeof i.componentWillMount&&i.componentWillMount(),\"function\"==typeof i.UNSAFE_componentWillMount&&i.UNSAFE_componentWillMount()),\"function\"==typeof i.componentDidMount&&(t.flags|=4)):(\"function\"==typeof i.componentDidMount&&(t.flags|=4),t.memoizedProps=a,t.memoizedState=s),i.props=a,i.state=s,i.context=p,a=l):(\"function\"==typeof i.componentDidMount&&(t.flags|=4),a=!1)}else{i=t.stateNode,po(e,t),l=t.memoizedProps,p=t.type===t.elementType?l:Qr(t.type,l),i.props=p,d=t.pendingProps,u=i.context,s=\"object\"==typeof(s=n.contextType)&&null!==s?io(s):gr(t,s=vr(n)?hr:mr.current);var m=n.getDerivedStateFromProps;(c=\"function\"==typeof m||\"function\"==typeof i.getSnapshotBeforeUpdate)||\"function\"!=typeof i.UNSAFE_componentWillReceiveProps&&\"function\"!=typeof i.componentWillReceiveProps||(l!==d||u!==s)&&xo(t,i,a,s),lo=!1,u=t.memoizedState,i.state=u,fo(t,a,i,r);var f=t.memoizedState;l!==d||u!==f||fr.current||lo?(\"function\"==typeof m&&(vo(t,n,m,a),f=t.memoizedState),(p=lo||wo(t,n,p,a,u,f,s))?(c||\"function\"!=typeof i.UNSAFE_componentWillUpdate&&\"function\"!=typeof i.componentWillUpdate||(\"function\"==typeof i.componentWillUpdate&&i.componentWillUpdate(a,f,s),\"function\"==typeof i.UNSAFE_componentWillUpdate&&i.UNSAFE_componentWillUpdate(a,f,s)),\"function\"==typeof i.componentDidUpdate&&(t.flags|=4),\"function\"==typeof i.getSnapshotBeforeUpdate&&(t.flags|=256)):(\"function\"!=typeof i.componentDidUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=4),\"function\"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=256),t.memoizedProps=a,t.memoizedState=f),i.props=a,i.state=f,i.context=s,a=p):(\"function\"!=typeof i.componentDidUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=4),\"function\"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=256),a=!1)}return $i(e,t,n,a,o,r)}function $i(e,t,n,a,r,o){Di(e,t);var i=0!=(64&t.flags);if(!a&&!i)return r&&yr(t,n,!1),rl(e,t,o);a=t.stateNode,Ti.current=t;var l=i&&\"function\"!=typeof n.getDerivedStateFromError?null:a.render();return t.flags|=1,null!==e&&i?(t.child=Mo(t,e.child,null,o),t.child=Mo(t,null,l,o)):Oi(e,t,l,o),t.memoizedState=a.state,r&&yr(t,n,!0),t.child}function Gi(e){var t=e.stateNode;t.pendingContext?wr(0,t.pendingContext,t.pendingContext!==t.context):t.context&&wr(0,t.context,!1),Bo(e,t.containerInfo)}var qi,Ki,Xi,Qi,Ji={dehydrated:null,retryLane:0};function Yi(e,t,n){var a,r=t.pendingProps,o=Oo.current,i=!1;return(a=0!=(64&t.flags))||(a=(null===e||null!==e.memoizedState)&&0!=(2&o)),a?(i=!0,t.flags&=-65):null!==e&&null===e.memoizedState||void 0===r.fallback||!0===r.unstable_avoidThisFallback||(o|=1),dr(Oo,1&o),null===e?(void 0!==r.fallback&&Uo(t),e=r.children,o=r.fallback,i?(e=el(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Ji,e):\"number\"==typeof r.unstable_expectedLoadTime?(e=el(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Ji,t.lanes=33554432,e):((n=qs({mode:\"visible\",children:e},t.mode,n,null)).return=t,t.child=n)):(e.memoizedState,i?(r=function(e,t,n,a,r){var o=t.mode,i=e.child;e=i.sibling;var l={mode:\"hidden\",children:n};return 0==(2&o)&&t.child!==i?((n=t.child).childLanes=0,n.pendingProps=l,null!==(i=n.lastEffect)?(t.firstEffect=n.firstEffect,t.lastEffect=i,i.nextEffect=null):t.firstEffect=t.lastEffect=null):n=Us(i,l),null!==e?a=Us(e,a):(a=Gs(a,o,r,null)).flags|=2,a.return=t,n.return=t,n.sibling=a,t.child=n,a}(e,t,r.children,r.fallback,n),i=t.child,o=e.child.memoizedState,i.memoizedState=null===o?{baseLanes:n}:{baseLanes:o.baseLanes|n},i.childLanes=e.childLanes&~n,t.memoizedState=Ji,r):(n=function(e,t,n,a){var r=e.child;return e=r.sibling,n=Us(r,{mode:\"visible\",children:n}),0==(2&t.mode)&&(n.lanes=a),n.return=t,n.sibling=null,null!==e&&(e.nextEffect=null,e.flags=8,t.firstEffect=t.lastEffect=e),t.child=n}(e,t,r.children,n),t.memoizedState=null,n))}function el(e,t,n,a){var r=e.mode,o=e.child;return t={mode:\"hidden\",children:t},0==(2&r)&&null!==o?(o.childLanes=0,o.pendingProps=t):o=qs(t,r,0,null),n=Gs(n,r,a,null),o.return=e,n.return=e,o.sibling=n,e.child=o,n}function tl(e,t){e.lanes|=t;var n=e.alternate;null!==n&&(n.lanes|=t),ro(e.return,t)}function nl(e,t,n,a,r,o){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:a,tail:n,tailMode:r,lastEffect:o}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=a,i.tail=n,i.tailMode=r,i.lastEffect=o)}function al(e,t,n){var a=t.pendingProps,r=a.revealOrder,o=a.tail;if(Oi(e,t,a.children,n),0!=(2&(a=Oo.current)))a=1&a|2,t.flags|=64;else{if(null!==e&&0!=(64&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&tl(e,n);else if(19===e.tag)tl(e,n);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}a&=1}if(dr(Oo,a),0==(2&t.mode))t.memoizedState=null;else switch(r){case\"forwards\":for(n=t.child,r=null;null!==n;)null!==(e=n.alternate)&&null===jo(e)&&(r=n),n=n.sibling;null===(n=r)?(r=t.child,t.child=null):(r=n.sibling,n.sibling=null),nl(t,!1,r,n,o,t.lastEffect);break;case\"backwards\":for(n=null,r=t.child,t.child=null;null!==r;){if(null!==(e=r.alternate)&&null===jo(e)){t.child=r;break}e=r.sibling,r.sibling=n,n=r,r=e}nl(t,!0,n,null,o,t.lastEffect);break;case\"together\":nl(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}function rl(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),Vl|=t.lanes,0!=(n&t.childLanes)){if(null!==e&&t.child!==e.child)throw Error(i(153));if(null!==t.child){for(n=Us(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Us(e,e.pendingProps)).return=t;n.sibling=null}return t.child}return null}function ol(e,t){if(!Wo)switch(e.tailMode){case\"hidden\":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case\"collapsed\":n=e.tail;for(var a=null;null!==n;)null!==n.alternate&&(a=n),n=n.sibling;null===a?t||null===e.tail?e.tail=null:e.tail.sibling=null:a.sibling=null}}function il(e,t,n){var a=t.pendingProps;switch(t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return null;case 1:case 17:return vr(t.type)&&_r(),null;case 3:return Ho(),cr(fr),cr(mr),Xo(),(a=t.stateNode).pendingContext&&(a.context=a.pendingContext,a.pendingContext=null),null!==e&&null!==e.child||(Go(t)?t.flags|=4:a.hydrate||(t.flags|=256)),Ki(t),null;case 5:Ro(t);var o=Ao(zo.current);if(n=t.type,null!==e&&null!=t.stateNode)Xi(e,t,n,a,o),e.ref!==t.ref&&(t.flags|=128);else{if(!a){if(null===t.stateNode)throw Error(i(166));return null}if(e=Ao(Zo.current),Go(t)){a=t.stateNode,n=t.type;var l=t.memoizedProps;switch(a[Ja]=t,a[Ya]=l,n){case\"dialog\":Za(\"cancel\",a),Za(\"close\",a);break;case\"iframe\":case\"object\":case\"embed\":Za(\"load\",a);break;case\"video\":case\"audio\":for(e=0;e\u003CSa.length;e++)Za(Sa[e],a);break;case\"source\":Za(\"error\",a);break;case\"img\":case\"image\":case\"link\":Za(\"error\",a),Za(\"load\",a);break;case\"details\":Za(\"toggle\",a);break;case\"input\":ee(a,l),Za(\"invalid\",a);break;case\"select\":a._wrapperState={wasMultiple:!!l.multiple},Za(\"invalid\",a);break;case\"textarea\":se(a,l),Za(\"invalid\",a)}for(var p in ke(n,l),e=null,l)l.hasOwnProperty(p)&&(o=l[p],\"children\"===p?\"string\"==typeof o?a.textContent!==o&&(e=[\"children\",o]):\"number\"==typeof o&&a.textContent!==\"\"+o&&(e=[\"children\",\"\"+o]):s.hasOwnProperty(p)&&null!=o&&\"onScroll\"===p&&Za(\"scroll\",a));switch(n){case\"input\":X(a),ae(a,l,!0);break;case\"textarea\":X(a),ce(a);break;case\"select\":case\"option\":break;default:\"function\"==typeof l.onClick&&(a.onclick=Va)}a=e,t.updateQueue=a,null!==a&&(t.flags|=4)}else{switch(p=9===o.nodeType?o:o.ownerDocument,e===de.html&&(e=ue(n)),e===de.html?\"script\"===n?((e=p.createElement(\"div\")).innerHTML=\"\u003Cscript>\u003C\\\u002Fscript>\",e=e.removeChild(e.firstChild)):\"string\"==typeof a.is?e=p.createElement(n,{is:a.is}):(e=p.createElement(n),\"select\"===n&&(p=e,a.multiple?p.multiple=!0:a.size&&(p.size=a.size))):e=p.createElementNS(e,n),e[Ja]=t,e[Ya]=a,qi(e,t,!1,!1),t.stateNode=e,p=Ee(n,a),n){case\"dialog\":Za(\"cancel\",e),Za(\"close\",e),o=a;break;case\"iframe\":case\"object\":case\"embed\":Za(\"load\",e),o=a;break;case\"video\":case\"audio\":for(o=0;o\u003CSa.length;o++)Za(Sa[o],e);o=a;break;case\"source\":Za(\"error\",e),o=a;break;case\"img\":case\"image\":case\"link\":Za(\"error\",e),Za(\"load\",e),o=a;break;case\"details\":Za(\"toggle\",e),o=a;break;case\"input\":ee(e,a),o=Y(e,a),Za(\"invalid\",e);break;case\"option\":o=oe(e,a);break;case\"select\":e._wrapperState={wasMultiple:!!a.multiple},o=r({},a,{value:void 0}),Za(\"invalid\",e);break;case\"textarea\":se(e,a),o=le(e,a),Za(\"invalid\",e);break;default:o=a}ke(n,o);var c=o;for(l in c)if(c.hasOwnProperty(l)){var d=c[l];\"style\"===l?xe(e,d):\"dangerouslySetInnerHTML\"===l?null!=(d=d?d.__html:void 0)&&ge(e,d):\"children\"===l?\"string\"==typeof d?(\"textarea\"!==n||\"\"!==d)&&ve(e,d):\"number\"==typeof d&&ve(e,\"\"+d):\"suppressContentEditableWarning\"!==l&&\"suppressHydrationWarning\"!==l&&\"autoFocus\"!==l&&(s.hasOwnProperty(l)?null!=d&&\"onScroll\"===l&&Za(\"scroll\",e):null!=d&&b(e,l,d,p))}switch(n){case\"input\":X(e),ae(e,a,!1);break;case\"textarea\":X(e),ce(e);break;case\"option\":null!=a.value&&e.setAttribute(\"value\",\"\"+q(a.value));break;case\"select\":e.multiple=!!a.multiple,null!=(l=a.value)?ie(e,!!a.multiple,l,!1):null!=a.defaultValue&&ie(e,!!a.multiple,a.defaultValue,!0);break;default:\"function\"==typeof o.onClick&&(e.onclick=Va)}Da(n,a)&&(t.flags|=4)}null!==t.ref&&(t.flags|=128)}return null;case 6:if(e&&null!=t.stateNode)Qi(e,t,e.memoizedProps,a);else{if(\"string\"!=typeof a&&null===t.stateNode)throw Error(i(166));n=Ao(zo.current),Ao(Zo.current),Go(t)?(a=t.stateNode,n=t.memoizedProps,a[Ja]=t,a.nodeValue!==n&&(t.flags|=4)):((a=(9===n.nodeType?n:n.ownerDocument).createTextNode(a))[Ja]=t,t.stateNode=a)}return null;case 13:return cr(Oo),a=t.memoizedState,0!=(64&t.flags)?(t.lanes=n,t):(a=null!==a,n=!1,null===e?void 0!==t.memoizedProps.fallback&&Go(t):n=null!==e.memoizedState,a&&!n&&0!=(2&t.mode)&&(null===e&&!0!==t.memoizedProps.unstable_avoidThisFallback||0!=(1&Oo.current)?0===Rl&&(Rl=3):(0!==Rl&&3!==Rl||(Rl=4),null===zl||0==(134217727&Vl)&&0==(134217727&Fl)||vs(zl,Bl))),(a||n)&&(t.flags|=4),null);case 4:return Ho(),Ki(t),null===e&&za(t.stateNode.containerInfo),null;case 10:return ao(t),null;case 19:if(cr(Oo),null===(a=t.memoizedState))return null;if(l=0!=(64&t.flags),null===(p=a.rendering))if(l)ol(a,!1);else{if(0!==Rl||null!==e&&0!=(64&e.flags))for(e=t.child;null!==e;){if(null!==(p=jo(e))){for(t.flags|=64,ol(a,!1),null!==(l=p.updateQueue)&&(t.updateQueue=l,t.flags|=4),null===a.lastEffect&&(t.firstEffect=null),t.lastEffect=a.lastEffect,a=n,n=t.child;null!==n;)e=a,(l=n).flags&=2,l.nextEffect=null,l.firstEffect=null,l.lastEffect=null,null===(p=l.alternate)?(l.childLanes=0,l.lanes=e,l.child=null,l.memoizedProps=null,l.memoizedState=null,l.updateQueue=null,l.dependencies=null,l.stateNode=null):(l.childLanes=p.childLanes,l.lanes=p.lanes,l.child=p.child,l.memoizedProps=p.memoizedProps,l.memoizedState=p.memoizedState,l.updateQueue=p.updateQueue,l.type=p.type,e=p.dependencies,l.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return dr(Oo,1&Oo.current|2),t.child}e=e.sibling}null!==a.tail&&Dr()>Ul&&(t.flags|=64,l=!0,ol(a,!1),t.lanes=33554432)}else{if(!l)if(null!==(e=jo(p))){if(t.flags|=64,l=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),ol(a,!0),null===a.tail&&\"hidden\"===a.tailMode&&!p.alternate&&!Wo)return null!==(t=t.lastEffect=a.lastEffect)&&(t.nextEffect=null),null}else 2*Dr()-a.renderingStartTime>Ul&&1073741824!==n&&(t.flags|=64,l=!0,ol(a,!1),t.lanes=33554432);a.isBackwards?(p.sibling=t.child,t.child=p):(null!==(n=a.last)?n.sibling=p:t.child=p,a.last=p)}return null!==a.tail?(n=a.tail,a.rendering=n,a.tail=n.sibling,a.lastEffect=t.lastEffect,a.renderingStartTime=Dr(),n.sibling=null,t=Oo.current,dr(Oo,l?1&t|2:1&t),n):null;case 23:case 24:return ys(),null!==e&&null!==e.memoizedState!=(null!==t.memoizedState)&&\"unstable-defer-without-hiding\"!==a.mode&&(t.flags|=4),null}throw Error(i(156,t.tag))}function ll(e){switch(e.tag){case 1:vr(e.type)&&_r();var t=e.flags;return 4096&t?(e.flags=-4097&t|64,e):null;case 3:if(Ho(),cr(fr),cr(mr),Xo(),0!=(64&(t=e.flags)))throw Error(i(285));return e.flags=-4097&t|64,e;case 5:return Ro(e),null;case 13:return cr(Oo),4096&(t=e.flags)?(e.flags=-4097&t|64,e):null;case 19:return cr(Oo),null;case 4:return Ho(),null;case 10:return ao(e),null;case 23:case 24:return ys(),null;default:return null}}function sl(e,t){try{var n=\"\",a=t;do{n+=$(a),a=a.return}while(a);var r=n}catch(e){r=\"\\nError generating stack: \"+e.message+\"\\n\"+e.stack}return{value:e,source:t,stack:r}}function pl(e,t){try{console.error(t.value)}catch(e){setTimeout((function(){throw e}))}}qi=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},Ki=function(){},Xi=function(e,t,n,a){var o=e.memoizedProps;if(o!==a){e=t.stateNode,Ao(Zo.current);var i,l=null;switch(n){case\"input\":o=Y(e,o),a=Y(e,a),l=[];break;case\"option\":o=oe(e,o),a=oe(e,a),l=[];break;case\"select\":o=r({},o,{value:void 0}),a=r({},a,{value:void 0}),l=[];break;case\"textarea\":o=le(e,o),a=le(e,a),l=[];break;default:\"function\"!=typeof o.onClick&&\"function\"==typeof a.onClick&&(e.onclick=Va)}for(d in ke(n,a),n=null,o)if(!a.hasOwnProperty(d)&&o.hasOwnProperty(d)&&null!=o[d])if(\"style\"===d){var p=o[d];for(i in p)p.hasOwnProperty(i)&&(n||(n={}),n[i]=\"\")}else\"dangerouslySetInnerHTML\"!==d&&\"children\"!==d&&\"suppressContentEditableWarning\"!==d&&\"suppressHydrationWarning\"!==d&&\"autoFocus\"!==d&&(s.hasOwnProperty(d)?l||(l=[]):(l=l||[]).push(d,null));for(d in a){var c=a[d];if(p=null!=o?o[d]:void 0,a.hasOwnProperty(d)&&c!==p&&(null!=c||null!=p))if(\"style\"===d)if(p){for(i in p)!p.hasOwnProperty(i)||c&&c.hasOwnProperty(i)||(n||(n={}),n[i]=\"\");for(i in c)c.hasOwnProperty(i)&&p[i]!==c[i]&&(n||(n={}),n[i]=c[i])}else n||(l||(l=[]),l.push(d,n)),n=c;else\"dangerouslySetInnerHTML\"===d?(c=c?c.__html:void 0,p=p?p.__html:void 0,null!=c&&p!==c&&(l=l||[]).push(d,c)):\"children\"===d?\"string\"!=typeof c&&\"number\"!=typeof c||(l=l||[]).push(d,\"\"+c):\"suppressContentEditableWarning\"!==d&&\"suppressHydrationWarning\"!==d&&(s.hasOwnProperty(d)?(null!=c&&\"onScroll\"===d&&Za(\"scroll\",e),l||p===c||(l=[])):\"object\"==typeof c&&null!==c&&c.$$typeof===H?c.toString():(l=l||[]).push(d,c))}n&&(l=l||[]).push(\"style\",n);var d=l;(t.updateQueue=d)&&(t.flags|=4)}},Qi=function(e,t,n,a){n!==a&&(t.flags|=4)};var cl=\"function\"==typeof WeakMap?WeakMap:Map;function dl(e,t,n){(n=co(-1,n)).tag=3,n.payload={element:null};var a=t.value;return n.callback=function(){Kl||(Kl=!0,Xl=a),pl(0,t)},n}function ul(e,t,n){(n=co(-1,n)).tag=3;var a=e.type.getDerivedStateFromError;if(\"function\"==typeof a){var r=t.value;n.payload=function(){return pl(0,t),a(r)}}var o=e.stateNode;return null!==o&&\"function\"==typeof o.componentDidCatch&&(n.callback=function(){\"function\"!=typeof a&&(null===Ql?Ql=new Set([this]):Ql.add(this),pl(0,t));var e=t.stack;this.componentDidCatch(t.value,{componentStack:null!==e?e:\"\"})}),n}var ml=\"function\"==typeof WeakSet?WeakSet:Set;function fl(e){var t=e.ref;if(null!==t)if(\"function\"==typeof t)try{t(null)}catch(t){js(e,t)}else t.current=null}function hl(e,t){switch(t.tag){case 0:case 11:case 15:case 22:case 5:case 6:case 4:case 17:return;case 1:if(256&t.flags&&null!==e){var n=e.memoizedProps,a=e.memoizedState;t=(e=t.stateNode).getSnapshotBeforeUpdate(t.elementType===t.type?n:Qr(t.type,n),a),e.__reactInternalSnapshotBeforeUpdate=t}return;case 3:return void(256&t.flags&&Ga(t.stateNode.containerInfo))}throw Error(i(163))}function gl(e,t,n){switch(n.tag){case 0:case 11:case 15:case 22:if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{if(3==(3&e.tag)){var a=e.create;e.destroy=a()}e=e.next}while(e!==t)}if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{var r=e;a=r.next,0!=(4&(r=r.tag))&&0!=(1&r)&&(Ts(n,e),Hs(n,e)),e=a}while(e!==t)}return;case 1:return e=n.stateNode,4&n.flags&&(null===t?e.componentDidMount():(a=n.elementType===n.type?t.memoizedProps:Qr(n.type,t.memoizedProps),e.componentDidUpdate(a,t.memoizedState,e.__reactInternalSnapshotBeforeUpdate))),void(null!==(t=n.updateQueue)&&ho(n,t,e));case 3:if(null!==(t=n.updateQueue)){if(e=null,null!==n.child)switch(n.child.tag){case 5:case 1:e=n.child.stateNode}ho(n,t,e)}return;case 5:return e=n.stateNode,void(null===t&&4&n.flags&&Da(n.type,n.memoizedProps)&&e.focus());case 6:case 4:case 12:case 19:case 17:case 20:case 21:case 23:case 24:return;case 13:return void(null===n.memoizedState&&(n=n.alternate,null!==n&&(n=n.memoizedState,null!==n&&(n=n.dehydrated,null!==n&&xt(n)))))}throw Error(i(163))}function vl(e,t){for(var n=e;;){if(5===n.tag){var a=n.stateNode;if(t)\"function\"==typeof(a=a.style).setProperty?a.setProperty(\"display\",\"none\",\"important\"):a.display=\"none\";else{a=n.stateNode;var r=n.memoizedProps.style;r=null!=r&&r.hasOwnProperty(\"display\")?r.display:null,a.style.display=be(\"display\",r)}}else if(6===n.tag)n.stateNode.nodeValue=t?\"\":n.memoizedProps;else if((23!==n.tag&&24!==n.tag||null===n.memoizedState||n===e)&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)break;for(;null===n.sibling;){if(null===n.return||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}}function _l(e,t){if(Er&&\"function\"==typeof Er.onCommitFiberUnmount)try{Er.onCommitFiberUnmount(kr,t)}catch(e){}switch(t.tag){case 0:case 11:case 14:case 15:case 22:if(null!==(e=t.updateQueue)&&null!==(e=e.lastEffect)){var n=e=e.next;do{var a=n,r=a.destroy;if(a=a.tag,void 0!==r)if(0!=(4&a))Ts(t,n);else{a=t;try{r()}catch(e){js(a,e)}}n=n.next}while(n!==e)}break;case 1:if(fl(t),\"function\"==typeof(e=t.stateNode).componentWillUnmount)try{e.props=t.memoizedProps,e.state=t.memoizedState,e.componentWillUnmount()}catch(e){js(t,e)}break;case 5:fl(t);break;case 4:El(e,t)}}function wl(e){e.alternate=null,e.child=null,e.dependencies=null,e.firstEffect=null,e.lastEffect=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.return=null,e.updateQueue=null}function bl(e){return 5===e.tag||3===e.tag||4===e.tag}function xl(e){e:{for(var t=e.return;null!==t;){if(bl(t))break e;t=t.return}throw Error(i(160))}var n=t;switch(t=n.stateNode,n.tag){case 5:var a=!1;break;case 3:case 4:t=t.containerInfo,a=!0;break;default:throw Error(i(161))}16&n.flags&&(ve(t,\"\"),n.flags&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||bl(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag&&18!==n.tag;){if(2&n.flags)continue t;if(null===n.child||4===n.tag)continue t;n.child.return=n,n=n.child}if(!(2&n.flags)){n=n.stateNode;break e}}a?yl(e,n,t):kl(e,n,t)}function yl(e,t,n){var a=e.tag,r=5===a||6===a;if(r)e=r?e.stateNode:e.stateNode.instance,t?8===n.nodeType?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(8===n.nodeType?(t=n.parentNode).insertBefore(e,n):(t=n).appendChild(e),null!=(n=n._reactRootContainer)||null!==t.onclick||(t.onclick=Va));else if(4!==a&&null!==(e=e.child))for(yl(e,t,n),e=e.sibling;null!==e;)yl(e,t,n),e=e.sibling}function kl(e,t,n){var a=e.tag,r=5===a||6===a;if(r)e=r?e.stateNode:e.stateNode.instance,t?n.insertBefore(e,t):n.appendChild(e);else if(4!==a&&null!==(e=e.child))for(kl(e,t,n),e=e.sibling;null!==e;)kl(e,t,n),e=e.sibling}function El(e,t){for(var n,a,r=t,o=!1;;){if(!o){o=r.return;e:for(;;){if(null===o)throw Error(i(160));switch(n=o.stateNode,o.tag){case 5:a=!1;break e;case 3:case 4:n=n.containerInfo,a=!0;break e}o=o.return}o=!0}if(5===r.tag||6===r.tag){e:for(var l=e,s=r,p=s;;)if(_l(l,p),null!==p.child&&4!==p.tag)p.child.return=p,p=p.child;else{if(p===s)break e;for(;null===p.sibling;){if(null===p.return||p.return===s)break e;p=p.return}p.sibling.return=p.return,p=p.sibling}a?(l=n,s=r.stateNode,8===l.nodeType?l.parentNode.removeChild(s):l.removeChild(s)):n.removeChild(r.stateNode)}else if(4===r.tag){if(null!==r.child){n=r.stateNode.containerInfo,a=!0,r.child.return=r,r=r.child;continue}}else if(_l(e,r),null!==r.child){r.child.return=r,r=r.child;continue}if(r===t)break;for(;null===r.sibling;){if(null===r.return||r.return===t)return;4===(r=r.return).tag&&(o=!1)}r.sibling.return=r.return,r=r.sibling}}function Cl(e,t){switch(t.tag){case 0:case 11:case 14:case 15:case 22:var n=t.updateQueue;if(null!==(n=null!==n?n.lastEffect:null)){var a=n=n.next;do{3==(3&a.tag)&&(e=a.destroy,a.destroy=void 0,void 0!==e&&e()),a=a.next}while(a!==n)}return;case 1:case 12:case 17:return;case 5:if(null!=(n=t.stateNode)){a=t.memoizedProps;var r=null!==e?e.memoizedProps:a;e=t.type;var o=t.updateQueue;if(t.updateQueue=null,null!==o){for(n[Ya]=a,\"input\"===e&&\"radio\"===a.type&&null!=a.name&&te(n,a),Ee(e,r),t=Ee(e,a),r=0;r\u003Co.length;r+=2){var l=o[r],s=o[r+1];\"style\"===l?xe(n,s):\"dangerouslySetInnerHTML\"===l?ge(n,s):\"children\"===l?ve(n,s):b(n,l,s,t)}switch(e){case\"input\":ne(n,a);break;case\"textarea\":pe(n,a);break;case\"select\":e=n._wrapperState.wasMultiple,n._wrapperState.wasMultiple=!!a.multiple,null!=(o=a.value)?ie(n,!!a.multiple,o,!1):e!==!!a.multiple&&(null!=a.defaultValue?ie(n,!!a.multiple,a.defaultValue,!0):ie(n,!!a.multiple,a.multiple?[]:\"\",!1))}}}return;case 6:if(null===t.stateNode)throw Error(i(162));return void(t.stateNode.nodeValue=t.memoizedProps);case 3:return void((n=t.stateNode).hydrate&&(n.hydrate=!1,xt(n.containerInfo)));case 13:return null!==t.memoizedState&&(Il=Dr(),vl(t.child,!0)),void Sl(t);case 19:return void Sl(t);case 23:case 24:return void vl(t,null!==t.memoizedState)}throw Error(i(163))}function Sl(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new ml),t.forEach((function(t){var a=Fs.bind(null,e,t);n.has(t)||(n.add(t),t.then(a,a))}))}}function Ml(e,t){return null!==e&&(null===(e=e.memoizedState)||null!==e.dehydrated)&&null!==(t=t.memoizedState)&&null===t.dehydrated}var Ll=Math.ceil,Nl=x.ReactCurrentDispatcher,Zl=x.ReactCurrentOwner,Pl=0,zl=null,Al=null,Bl=0,Hl=0,Tl=pr(0),Rl=0,Ol=null,jl=0,Vl=0,Fl=0,Wl=0,Dl=null,Il=0,Ul=1\u002F0;function $l(){Ul=Dr()+500}var Gl,ql=null,Kl=!1,Xl=null,Ql=null,Jl=!1,Yl=null,es=90,ts=[],ns=[],as=null,rs=0,os=null,is=-1,ls=0,ss=0,ps=null,cs=!1;function ds(){return 0!=(48&Pl)?Dr():-1!==is?is:is=Dr()}function us(e){if(0==(2&(e=e.mode)))return 1;if(0==(4&e))return 99===Ir()?1:2;if(0===ls&&(ls=jl),0!==Xr.transition){0!==ss&&(ss=null!==Dl?Dl.pendingLanes:0),e=ls;var t=4186112&~ss;return 0==(t&=-t)&&0==(t=(e=4186112&~e)&-e)&&(t=8192),t}return e=Ir(),e=jt(0!=(4&Pl)&&98===e?12:e=function(e){switch(e){case 99:return 15;case 98:return 10;case 97:case 96:return 8;case 95:return 2;default:return 0}}(e),ls)}function ms(e,t,n){if(50\u003Crs)throw rs=0,os=null,Error(i(185));if(null===(e=fs(e,t)))return null;Wt(e,t,n),e===zl&&(Fl|=t,4===Rl&&vs(e,Bl));var a=Ir();1===t?0!=(8&Pl)&&0==(48&Pl)?_s(e):(hs(e,n),0===Pl&&($l(),qr())):(0==(4&Pl)||98!==a&&99!==a||(null===as?as=new Set([e]):as.add(e)),hs(e,n)),Dl=e}function fs(e,t){e.lanes|=t;var n=e.alternate;for(null!==n&&(n.lanes|=t),n=e,e=e.return;null!==e;)e.childLanes|=t,null!==(n=e.alternate)&&(n.childLanes|=t),n=e,e=e.return;return 3===n.tag?n.stateNode:null}function hs(e,t){for(var n=e.callbackNode,a=e.suspendedLanes,r=e.pingedLanes,o=e.expirationTimes,l=e.pendingLanes;0\u003Cl;){var s=31-Dt(l),p=1\u003C\u003Cs,c=o[s];if(-1===c){if(0==(p&a)||0!=(p&r)){c=t,Tt(p);var d=Ht;o[s]=10\u003C=d?c+250:6\u003C=d?c+5e3:-1}}else c\u003C=t&&(e.expiredLanes|=p);l&=~p}if(a=Rt(e,e===zl?Bl:0),t=Ht,0===a)null!==n&&(n!==Rr&&Mr(n),e.callbackNode=null,e.callbackPriority=0);else{if(null!==n){if(e.callbackPriority===t)return;n!==Rr&&Mr(n)}15===t?(n=_s.bind(null,e),null===jr?(jr=[n],Vr=Sr(zr,Kr)):jr.push(n),n=Rr):14===t?n=Gr(99,_s.bind(null,e)):(n=function(e){switch(e){case 15:case 14:return 99;case 13:case 12:case 11:case 10:return 98;case 9:case 8:case 7:case 6:case 4:case 5:return 97;case 3:case 2:case 1:return 95;case 0:return 90;default:throw Error(i(358,e))}}(t),n=Gr(n,gs.bind(null,e))),e.callbackPriority=t,e.callbackNode=n}}function gs(e){if(is=-1,ss=ls=0,0!=(48&Pl))throw Error(i(327));var t=e.callbackNode;if(Bs()&&e.callbackNode!==t)return null;var n=Rt(e,e===zl?Bl:0);if(0===n)return null;var a=n,r=Pl;Pl|=16;var o=Cs();for(zl===e&&Bl===a||($l(),ks(e,a));;)try{Ls();break}catch(t){Es(e,t)}if(no(),Nl.current=o,Pl=r,null!==Al?a=0:(zl=null,Bl=0,a=Rl),0!=(jl&Fl))ks(e,0);else if(0!==a){if(2===a&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Ga(e.containerInfo)),0!==(n=Ot(e))&&(a=Ss(e,n))),1===a)throw t=Ol,ks(e,0),vs(e,n),hs(e,Dr()),t;switch(e.finishedWork=e.current.alternate,e.finishedLanes=n,a){case 0:case 1:throw Error(i(345));case 2:case 5:Ps(e);break;case 3:if(vs(e,n),(62914560&n)===n&&10\u003C(a=Il+500-Dr())){if(0!==Rt(e,0))break;if(((r=e.suspendedLanes)&n)!==n){ds(),e.pingedLanes|=e.suspendedLanes&r;break}e.timeoutHandle=Ua(Ps.bind(null,e),a);break}Ps(e);break;case 4:if(vs(e,n),(4186112&n)===n)break;for(a=e.eventTimes,r=-1;0\u003Cn;){var l=31-Dt(n);o=1\u003C\u003Cl,(l=a[l])>r&&(r=l),n&=~o}if(n=r,10\u003C(n=(120>(n=Dr()-n)?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*Ll(n\u002F1960))-n)){e.timeoutHandle=Ua(Ps.bind(null,e),n);break}Ps(e);break;default:throw Error(i(329))}}return hs(e,Dr()),e.callbackNode===t?gs.bind(null,e):null}function vs(e,t){for(t&=~Wl,t&=~Fl,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0\u003Ct;){var n=31-Dt(t),a=1\u003C\u003Cn;e[n]=-1,t&=~a}}function _s(e){if(0!=(48&Pl))throw Error(i(327));if(Bs(),e===zl&&0!=(e.expiredLanes&Bl)){var t=Bl,n=Ss(e,t);0!=(jl&Fl)&&(n=Ss(e,t=Rt(e,t)))}else n=Ss(e,t=Rt(e,0));if(0!==e.tag&&2===n&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Ga(e.containerInfo)),0!==(t=Ot(e))&&(n=Ss(e,t))),1===n)throw n=Ol,ks(e,0),vs(e,t),hs(e,Dr()),n;return e.finishedWork=e.current.alternate,e.finishedLanes=t,Ps(e),hs(e,Dr()),null}function ws(e,t){var n=Pl;Pl|=1;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}}function bs(e,t){var n=Pl;Pl&=-2,Pl|=8;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}}function xs(e,t){dr(Tl,Hl),Hl|=t,jl|=t}function ys(){Hl=Tl.current,cr(Tl)}function ks(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,$a(n)),null!==Al)for(n=Al.return;null!==n;){var a=n;switch(a.tag){case 1:null!=(a=a.type.childContextTypes)&&_r();break;case 3:Ho(),cr(fr),cr(mr),Xo();break;case 5:Ro(a);break;case 4:Ho();break;case 13:case 19:cr(Oo);break;case 10:ao(a);break;case 23:case 24:ys()}n=n.return}zl=e,Al=Us(e.current,null),Bl=Hl=jl=t,Rl=0,Ol=null,Wl=Fl=Vl=0}function Es(e,t){for(;;){var n=Al;try{if(no(),Qo.current=zi,ai){for(var a=ei.memoizedState;null!==a;){var r=a.queue;null!==r&&(r.pending=null),a=a.next}ai=!1}if(Yo=0,ni=ti=ei=null,ri=!1,Zl.current=null,null===n||null===n.return){Rl=1,Ol=t,Al=null;break}e:{var o=e,i=n.return,l=n,s=t;if(t=Bl,l.flags|=2048,l.firstEffect=l.lastEffect=null,null!==s&&\"object\"==typeof s&&\"function\"==typeof s.then){var p=s;if(0==(2&l.mode)){var c=l.alternate;c?(l.updateQueue=c.updateQueue,l.memoizedState=c.memoizedState,l.lanes=c.lanes):(l.updateQueue=null,l.memoizedState=null)}var d=0!=(1&Oo.current),u=i;do{var m;if(m=13===u.tag){var f=u.memoizedState;if(null!==f)m=null!==f.dehydrated;else{var h=u.memoizedProps;m=void 0!==h.fallback&&(!0!==h.unstable_avoidThisFallback||!d)}}if(m){var g=u.updateQueue;if(null===g){var v=new Set;v.add(p),u.updateQueue=v}else g.add(p);if(0==(2&u.mode)){if(u.flags|=64,l.flags|=16384,l.flags&=-2981,1===l.tag)if(null===l.alternate)l.tag=17;else{var _=co(-1,1);_.tag=2,uo(l,_)}l.lanes|=1;break e}s=void 0,l=t;var w=o.pingCache;if(null===w?(w=o.pingCache=new cl,s=new Set,w.set(p,s)):void 0===(s=w.get(p))&&(s=new Set,w.set(p,s)),!s.has(l)){s.add(l);var b=Vs.bind(null,o,p,l);p.then(b,b)}u.flags|=4096,u.lanes=t;break e}u=u.return}while(null!==u);s=Error((G(l.type)||\"A React component\")+\" suspended while rendering, but no fallback UI was specified.\\n\\nAdd a \u003CSuspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display.\")}5!==Rl&&(Rl=2),s=sl(s,l),u=i;do{switch(u.tag){case 3:o=s,u.flags|=4096,t&=-t,u.lanes|=t,mo(u,dl(0,o,t));break e;case 1:o=s;var x=u.type,y=u.stateNode;if(0==(64&u.flags)&&(\"function\"==typeof x.getDerivedStateFromError||null!==y&&\"function\"==typeof y.componentDidCatch&&(null===Ql||!Ql.has(y)))){u.flags|=4096,t&=-t,u.lanes|=t,mo(u,ul(u,o,t));break e}}u=u.return}while(null!==u)}Zs(n)}catch(e){t=e,Al===n&&null!==n&&(Al=n=n.return);continue}break}}function Cs(){var e=Nl.current;return Nl.current=zi,null===e?zi:e}function Ss(e,t){var n=Pl;Pl|=16;var a=Cs();for(zl===e&&Bl===t||ks(e,t);;)try{Ms();break}catch(t){Es(e,t)}if(no(),Pl=n,Nl.current=a,null!==Al)throw Error(i(261));return zl=null,Bl=0,Rl}function Ms(){for(;null!==Al;)Ns(Al)}function Ls(){for(;null!==Al&&!Lr();)Ns(Al)}function Ns(e){var t=Gl(e.alternate,e,Hl);e.memoizedProps=e.pendingProps,null===t?Zs(e):Al=t,Zl.current=null}function Zs(e){var t=e;do{var n=t.alternate;if(e=t.return,0==(2048&t.flags)){if(null!==(n=il(n,t,Hl)))return void(Al=n);if(24!==(n=t).tag&&23!==n.tag||null===n.memoizedState||0!=(1073741824&Hl)||0==(4&n.mode)){for(var a=0,r=n.child;null!==r;)a|=r.lanes|r.childLanes,r=r.sibling;n.childLanes=a}null!==e&&0==(2048&e.flags)&&(null===e.firstEffect&&(e.firstEffect=t.firstEffect),null!==t.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=t.firstEffect),e.lastEffect=t.lastEffect),1\u003Ct.flags&&(null!==e.lastEffect?e.lastEffect.nextEffect=t:e.firstEffect=t,e.lastEffect=t))}else{if(null!==(n=ll(t)))return n.flags&=2047,void(Al=n);null!==e&&(e.firstEffect=e.lastEffect=null,e.flags|=2048)}if(null!==(t=t.sibling))return void(Al=t);Al=t=e}while(null!==t);0===Rl&&(Rl=5)}function Ps(e){var t=Ir();return $r(99,zs.bind(null,e,t)),null}function zs(e,t){do{Bs()}while(null!==Yl);if(0!=(48&Pl))throw Error(i(327));var n=e.finishedWork;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(i(177));e.callbackNode=null;var a=n.lanes|n.childLanes,r=a,o=e.pendingLanes&~r;e.pendingLanes=r,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=r,e.mutableReadLanes&=r,e.entangledLanes&=r,r=e.entanglements;for(var l=e.eventTimes,s=e.expirationTimes;0\u003Co;){var p=31-Dt(o),c=1\u003C\u003Cp;r[p]=0,l[p]=-1,s[p]=-1,o&=~c}if(null!==as&&0==(24&a)&&as.has(e)&&as.delete(e),e===zl&&(Al=zl=null,Bl=0),1\u003Cn.flags?null!==n.lastEffect?(n.lastEffect.nextEffect=n,a=n.firstEffect):a=n:a=n.firstEffect,null!==a){if(r=Pl,Pl|=32,Zl.current=null,Fa=qt,va(l=ga())){if(\"selectionStart\"in l)s={start:l.selectionStart,end:l.selectionEnd};else e:if(s=(s=l.ownerDocument)&&s.defaultView||window,(c=s.getSelection&&s.getSelection())&&0!==c.rangeCount){s=c.anchorNode,o=c.anchorOffset,p=c.focusNode,c=c.focusOffset;try{s.nodeType,p.nodeType}catch(e){s=null;break e}var d=0,u=-1,m=-1,f=0,h=0,g=l,v=null;t:for(;;){for(var _;g!==s||0!==o&&3!==g.nodeType||(u=d+o),g!==p||0!==c&&3!==g.nodeType||(m=d+c),3===g.nodeType&&(d+=g.nodeValue.length),null!==(_=g.firstChild);)v=g,g=_;for(;;){if(g===l)break t;if(v===s&&++f===o&&(u=d),v===p&&++h===c&&(m=d),null!==(_=g.nextSibling))break;v=(g=v).parentNode}g=_}s=-1===u||-1===m?null:{start:u,end:m}}else s=null;s=s||{start:0,end:0}}else s=null;Wa={focusedElem:l,selectionRange:s},qt=!1,ps=null,cs=!1,ql=a;do{try{As()}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);ps=null,ql=a;do{try{for(l=e;null!==ql;){var w=ql.flags;if(16&w&&ve(ql.stateNode,\"\"),128&w){var b=ql.alternate;if(null!==b){var x=b.ref;null!==x&&(\"function\"==typeof x?x(null):x.current=null)}}switch(1038&w){case 2:xl(ql),ql.flags&=-3;break;case 6:xl(ql),ql.flags&=-3,Cl(ql.alternate,ql);break;case 1024:ql.flags&=-1025;break;case 1028:ql.flags&=-1025,Cl(ql.alternate,ql);break;case 4:Cl(ql.alternate,ql);break;case 8:El(l,s=ql);var y=s.alternate;wl(s),null!==y&&wl(y)}ql=ql.nextEffect}}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);if(x=Wa,b=ga(),w=x.focusedElem,l=x.selectionRange,b!==w&&w&&w.ownerDocument&&ha(w.ownerDocument.documentElement,w)){null!==l&&va(w)&&(b=l.start,void 0===(x=l.end)&&(x=b),\"selectionStart\"in w?(w.selectionStart=b,w.selectionEnd=Math.min(x,w.value.length)):(x=(b=w.ownerDocument||document)&&b.defaultView||window).getSelection&&(x=x.getSelection(),s=w.textContent.length,y=Math.min(l.start,s),l=void 0===l.end?y:Math.min(l.end,s),!x.extend&&y>l&&(s=l,l=y,y=s),s=fa(w,y),o=fa(w,l),s&&o&&(1!==x.rangeCount||x.anchorNode!==s.node||x.anchorOffset!==s.offset||x.focusNode!==o.node||x.focusOffset!==o.offset)&&((b=b.createRange()).setStart(s.node,s.offset),x.removeAllRanges(),y>l?(x.addRange(b),x.extend(o.node,o.offset)):(b.setEnd(o.node,o.offset),x.addRange(b))))),b=[];for(x=w;x=x.parentNode;)1===x.nodeType&&b.push({element:x,left:x.scrollLeft,top:x.scrollTop});for(\"function\"==typeof w.focus&&w.focus(),w=0;w\u003Cb.length;w++)(x=b[w]).element.scrollLeft=x.left,x.element.scrollTop=x.top}qt=!!Fa,Wa=Fa=null,e.current=n,ql=a;do{try{for(w=e;null!==ql;){var k=ql.flags;if(36&k&&gl(w,ql.alternate,ql),128&k){b=void 0;var E=ql.ref;if(null!==E){var C=ql.stateNode;ql.tag,b=C,\"function\"==typeof E?E(b):E.current=b}}ql=ql.nextEffect}}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);ql=null,Or(),Pl=r}else e.current=n;if(Jl)Jl=!1,Yl=e,es=t;else for(ql=a;null!==ql;)t=ql.nextEffect,ql.nextEffect=null,8&ql.flags&&((k=ql).sibling=null,k.stateNode=null),ql=t;if(0===(a=e.pendingLanes)&&(Ql=null),1===a?e===os?rs++:(rs=0,os=e):rs=0,n=n.stateNode,Er&&\"function\"==typeof Er.onCommitFiberRoot)try{Er.onCommitFiberRoot(kr,n,void 0,64==(64&n.current.flags))}catch(e){}if(hs(e,Dr()),Kl)throw Kl=!1,e=Xl,Xl=null,e;return 0!=(8&Pl)||qr(),null}function As(){for(;null!==ql;){var e=ql.alternate;cs||null===ps||(0!=(8&ql.flags)?Ye(ql,ps)&&(cs=!0):13===ql.tag&&Ml(e,ql)&&Ye(ql,ps)&&(cs=!0));var t=ql.flags;0!=(256&t)&&hl(e,ql),0==(512&t)||Jl||(Jl=!0,Gr(97,(function(){return Bs(),null}))),ql=ql.nextEffect}}function Bs(){if(90!==es){var e=97\u003Ces?97:es;return es=90,$r(e,Rs)}return!1}function Hs(e,t){ts.push(t,e),Jl||(Jl=!0,Gr(97,(function(){return Bs(),null})))}function Ts(e,t){ns.push(t,e),Jl||(Jl=!0,Gr(97,(function(){return Bs(),null})))}function Rs(){if(null===Yl)return!1;var e=Yl;if(Yl=null,0!=(48&Pl))throw Error(i(331));var t=Pl;Pl|=32;var n=ns;ns=[];for(var a=0;a\u003Cn.length;a+=2){var r=n[a],o=n[a+1],l=r.destroy;if(r.destroy=void 0,\"function\"==typeof l)try{l()}catch(e){if(null===o)throw Error(i(330));js(o,e)}}for(n=ts,ts=[],a=0;a\u003Cn.length;a+=2){r=n[a],o=n[a+1];try{var s=r.create;r.destroy=s()}catch(e){if(null===o)throw Error(i(330));js(o,e)}}for(s=e.current.firstEffect;null!==s;)e=s.nextEffect,s.nextEffect=null,8&s.flags&&(s.sibling=null,s.stateNode=null),s=e;return Pl=t,qr(),!0}function Os(e,t,n){uo(e,t=dl(0,t=sl(n,t),1)),t=ds(),null!==(e=fs(e,1))&&(Wt(e,1,t),hs(e,t))}function js(e,t){if(3===e.tag)Os(e,e,t);else for(var n=e.return;null!==n;){if(3===n.tag){Os(n,e,t);break}if(1===n.tag){var a=n.stateNode;if(\"function\"==typeof n.type.getDerivedStateFromError||\"function\"==typeof a.componentDidCatch&&(null===Ql||!Ql.has(a))){var r=ul(n,e=sl(t,e),1);if(uo(n,r),r=ds(),null!==(n=fs(n,1)))Wt(n,1,r),hs(n,r);else if(\"function\"==typeof a.componentDidCatch&&(null===Ql||!Ql.has(a)))try{a.componentDidCatch(t,e)}catch(e){}break}}n=n.return}}function Vs(e,t,n){var a=e.pingCache;null!==a&&a.delete(t),t=ds(),e.pingedLanes|=e.suspendedLanes&n,zl===e&&(Bl&n)===n&&(4===Rl||3===Rl&&(62914560&Bl)===Bl&&500>Dr()-Il?ks(e,0):Wl|=n),hs(e,t)}function Fs(e,t){var n=e.stateNode;null!==n&&n.delete(t),0==(t=0)&&(0==(2&(t=e.mode))?t=1:0==(4&t)?t=99===Ir()?1:2:(0===ls&&(ls=jl),0===(t=Vt(62914560&~ls))&&(t=4194304))),n=ds(),null!==(e=fs(e,t))&&(Wt(e,t,n),hs(e,n))}function Ws(e,t,n,a){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=a,this.flags=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childLanes=this.lanes=0,this.alternate=null}function Ds(e,t,n,a){return new Ws(e,t,n,a)}function Is(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Us(e,t){var n=e.alternate;return null===n?((n=Ds(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function $s(e,t,n,a,r,o){var l=2;if(a=e,\"function\"==typeof e)Is(e)&&(l=1);else if(\"string\"==typeof e)l=5;else e:switch(e){case E:return Gs(n.children,r,o,t);case T:l=8,r|=16;break;case C:l=8,r|=1;break;case S:return(e=Ds(12,n,t,8|r)).elementType=S,e.type=S,e.lanes=o,e;case Z:return(e=Ds(13,n,t,r)).type=Z,e.elementType=Z,e.lanes=o,e;case P:return(e=Ds(19,n,t,r)).elementType=P,e.lanes=o,e;case R:return qs(n,r,o,t);case O:return(e=Ds(24,n,t,r)).elementType=O,e.lanes=o,e;default:if(\"object\"==typeof e&&null!==e)switch(e.$$typeof){case M:l=10;break e;case L:l=9;break e;case N:l=11;break e;case z:l=14;break e;case A:l=16,a=null;break e;case B:l=22;break e}throw Error(i(130,null==e?e:typeof e,\"\"))}return(t=Ds(l,n,t,r)).elementType=e,t.type=a,t.lanes=o,t}function Gs(e,t,n,a){return(e=Ds(7,e,a,t)).lanes=n,e}function qs(e,t,n,a){return(e=Ds(23,e,a,t)).elementType=R,e.lanes=n,e}function Ks(e,t,n){return(e=Ds(6,e,null,t)).lanes=n,e}function Xs(e,t,n){return(t=Ds(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Qs(e,t,n){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=0,this.eventTimes=Ft(0),this.expirationTimes=Ft(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Ft(0),this.mutableSourceEagerHydrationData=null}function Js(e,t,n,a){var r=t.current,o=ds(),l=us(r);e:if(n){t:{if(Ke(n=n._reactInternals)!==n||1!==n.tag)throw Error(i(170));var s=n;do{switch(s.tag){case 3:s=s.stateNode.context;break t;case 1:if(vr(s.type)){s=s.stateNode.__reactInternalMemoizedMergedChildContext;break t}}s=s.return}while(null!==s);throw Error(i(171))}if(1===n.tag){var p=n.type;if(vr(p)){n=br(n,p,s);break e}}n=s}else n=ur;return null===t.context?t.context=n:t.pendingContext=n,(t=co(o,l)).payload={element:e},null!==(a=void 0===a?null:a)&&(t.callback=a),uo(r,t),ms(r,l,o),l}function Ys(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function ep(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n\u003Ct?n:t}}function tp(e,t){ep(e,t),(e=e.alternate)&&ep(e,t)}function np(e,t,n){var a=null!=n&&null!=n.hydrationOptions&&n.hydrationOptions.mutableSources||null;if(n=new Qs(e,t,null!=n&&!0===n.hydrate),t=Ds(3,null,null,2===t?7:1===t?3:0),n.current=t,t.stateNode=n,so(t),e[er]=n.current,za(8===e.nodeType?e.parentNode:e),a)for(e=0;e\u003Ca.length;e++){var r=(t=a[e])._getVersion;r=r(t._source),null==n.mutableSourceEagerHydrationData?n.mutableSourceEagerHydrationData=[t,r]:n.mutableSourceEagerHydrationData.push(t,r)}this._internalRoot=n}function ap(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||\" react-mount-point-unstable \"!==e.nodeValue))}function rp(e,t,n,a,r){var o=n._reactRootContainer;if(o){var i=o._internalRoot;if(\"function\"==typeof r){var l=r;r=function(){var e=Ys(i);l.call(e)}}Js(t,i,e,r)}else{if(o=n._reactRootContainer=function(e,t){if(t||(t=!(!(t=e?9===e.nodeType?e.documentElement:e.firstChild:null)||1!==t.nodeType||!t.hasAttribute(\"data-reactroot\"))),!t)for(var n;n=e.lastChild;)e.removeChild(n);return new np(e,0,t?{hydrate:!0}:void 0)}(n,a),i=o._internalRoot,\"function\"==typeof r){var s=r;r=function(){var e=Ys(i);s.call(e)}}bs((function(){Js(t,i,e,r)}))}return Ys(i)}function op(e,t){var n=2\u003Carguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!ap(t))throw Error(i(200));return function(e,t,n){var a=3\u003Carguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:k,key:null==a?null:\"\"+a,children:e,containerInfo:t,implementation:n}}(e,t,null,n)}Gl=function(e,t,n){var a=t.lanes;if(null!==e)if(e.memoizedProps!==t.pendingProps||fr.current)Ri=!0;else{if(0==(n&a)){switch(Ri=!1,t.tag){case 3:Gi(t),qo();break;case 5:To(t);break;case 1:vr(t.type)&&xr(t);break;case 4:Bo(t,t.stateNode.containerInfo);break;case 10:a=t.memoizedProps.value;var r=t.type._context;dr(Jr,r._currentValue),r._currentValue=a;break;case 13:if(null!==t.memoizedState)return 0!=(n&t.child.childLanes)?Yi(e,t,n):(dr(Oo,1&Oo.current),null!==(t=rl(e,t,n))?t.sibling:null);dr(Oo,1&Oo.current);break;case 19:if(a=0!=(n&t.childLanes),0!=(64&e.flags)){if(a)return al(e,t,n);t.flags|=64}if(null!==(r=t.memoizedState)&&(r.rendering=null,r.tail=null,r.lastEffect=null),dr(Oo,Oo.current),a)break;return null;case 23:case 24:return t.lanes=0,Wi(e,t,n)}return rl(e,t,n)}Ri=0!=(16384&e.flags)}else Ri=!1;switch(t.lanes=0,t.tag){case 2:if(a=t.type,null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=gr(t,mr.current),oo(t,n),r=li(null,t,a,e,r,n),t.flags|=1,\"object\"==typeof r&&null!==r&&\"function\"==typeof r.render&&void 0===r.$$typeof){if(t.tag=1,t.memoizedState=null,t.updateQueue=null,vr(a)){var o=!0;xr(t)}else o=!1;t.memoizedState=null!==r.state&&void 0!==r.state?r.state:null,so(t);var l=a.getDerivedStateFromProps;\"function\"==typeof l&&vo(t,a,l,e),r.updater=_o,t.stateNode=r,r._reactInternals=t,yo(t,a,e,n),t=$i(null,t,a,!0,o,n)}else t.tag=0,Oi(null,t,r,n),t=t.child;return t;case 16:r=t.elementType;e:{switch(null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=(o=r._init)(r._payload),t.type=r,o=t.tag=function(e){if(\"function\"==typeof e)return Is(e)?1:0;if(null!=e){if((e=e.$$typeof)===N)return 11;if(e===z)return 14}return 2}(r),e=Qr(r,e),o){case 0:t=Ii(null,t,r,e,n);break e;case 1:t=Ui(null,t,r,e,n);break e;case 11:t=ji(null,t,r,e,n);break e;case 14:t=Vi(null,t,r,Qr(r.type,e),a,n);break e}throw Error(i(306,r,\"\"))}return t;case 0:return a=t.type,r=t.pendingProps,Ii(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 1:return a=t.type,r=t.pendingProps,Ui(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 3:if(Gi(t),a=t.updateQueue,null===e||null===a)throw Error(i(282));if(a=t.pendingProps,r=null!==(r=t.memoizedState)?r.element:null,po(e,t),fo(t,a,null,n),(a=t.memoizedState.element)===r)qo(),t=rl(e,t,n);else{if((o=(r=t.stateNode).hydrate)&&(Fo=qa(t.stateNode.containerInfo.firstChild),Vo=t,o=Wo=!0),o){if(null!=(e=r.mutableSourceEagerHydrationData))for(r=0;r\u003Ce.length;r+=2)(o=e[r])._workInProgressVersionPrimary=e[r+1],Ko.push(o);for(n=Lo(t,null,a,n),t.child=n;n;)n.flags=-3&n.flags|1024,n=n.sibling}else Oi(e,t,a,n),qo();t=t.child}return t;case 5:return To(t),null===e&&Uo(t),a=t.type,r=t.pendingProps,o=null!==e?e.memoizedProps:null,l=r.children,Ia(a,r)?l=null:null!==o&&Ia(a,o)&&(t.flags|=16),Di(e,t),Oi(e,t,l,n),t.child;case 6:return null===e&&Uo(t),null;case 13:return Yi(e,t,n);case 4:return Bo(t,t.stateNode.containerInfo),a=t.pendingProps,null===e?t.child=Mo(t,null,a,n):Oi(e,t,a,n),t.child;case 11:return a=t.type,r=t.pendingProps,ji(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 7:return Oi(e,t,t.pendingProps,n),t.child;case 8:case 12:return Oi(e,t,t.pendingProps.children,n),t.child;case 10:e:{a=t.type._context,r=t.pendingProps,l=t.memoizedProps,o=r.value;var s=t.type._context;if(dr(Jr,s._currentValue),s._currentValue=o,null!==l)if(s=l.value,0==(o=ca(s,o)?0:0|(\"function\"==typeof a._calculateChangedBits?a._calculateChangedBits(s,o):1073741823))){if(l.children===r.children&&!fr.current){t=rl(e,t,n);break e}}else for(null!==(s=t.child)&&(s.return=t);null!==s;){var p=s.dependencies;if(null!==p){l=s.child;for(var c=p.firstContext;null!==c;){if(c.context===a&&0!=(c.observedBits&o)){1===s.tag&&((c=co(-1,n&-n)).tag=2,uo(s,c)),s.lanes|=n,null!==(c=s.alternate)&&(c.lanes|=n),ro(s.return,n),p.lanes|=n;break}c=c.next}}else l=10===s.tag&&s.type===t.type?null:s.child;if(null!==l)l.return=s;else for(l=s;null!==l;){if(l===t){l=null;break}if(null!==(s=l.sibling)){s.return=l.return,l=s;break}l=l.return}s=l}Oi(e,t,r.children,n),t=t.child}return t;case 9:return r=t.type,a=(o=t.pendingProps).children,oo(t,n),a=a(r=io(r,o.unstable_observedBits)),t.flags|=1,Oi(e,t,a,n),t.child;case 14:return o=Qr(r=t.type,t.pendingProps),Vi(e,t,r,o=Qr(r.type,o),a,n);case 15:return Fi(e,t,t.type,t.pendingProps,a,n);case 17:return a=t.type,r=t.pendingProps,r=t.elementType===a?r:Qr(a,r),null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),t.tag=1,vr(a)?(e=!0,xr(t)):e=!1,oo(t,n),bo(t,a,r),yo(t,a,r,n),$i(null,t,a,!0,e,n);case 19:return al(e,t,n);case 23:case 24:return Wi(e,t,n)}throw Error(i(156,t.tag))},np.prototype.render=function(e){Js(e,this._internalRoot,null,null)},np.prototype.unmount=function(){var e=this._internalRoot,t=e.containerInfo;Js(null,e,null,(function(){t[er]=null}))},et=function(e){13===e.tag&&(ms(e,4,ds()),tp(e,4))},tt=function(e){13===e.tag&&(ms(e,67108864,ds()),tp(e,67108864))},nt=function(e){if(13===e.tag){var t=ds(),n=us(e);ms(e,n,t),tp(e,n)}},at=function(e,t){return t()},Se=function(e,t,n){switch(t){case\"input\":if(ne(e,n),t=n.name,\"radio\"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll(\"input[name=\"+JSON.stringify(\"\"+t)+'][type=\"radio\"]'),t=0;t\u003Cn.length;t++){var a=n[t];if(a!==e&&a.form===e.form){var r=or(a);if(!r)throw Error(i(90));Q(a),ne(a,r)}}}break;case\"textarea\":pe(e,n);break;case\"select\":null!=(t=n.value)&&ie(e,!!n.multiple,t,!1)}},ze=ws,Ae=function(e,t,n,a,r){var o=Pl;Pl|=4;try{return $r(98,e.bind(null,t,n,a,r))}finally{0===(Pl=o)&&($l(),qr())}},Be=function(){0==(49&Pl)&&(function(){if(null!==as){var e=as;as=null,e.forEach((function(e){e.expiredLanes|=24&e.pendingLanes,hs(e,Dr())}))}qr()}(),Bs())},He=function(e,t){var n=Pl;Pl|=2;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}};var ip={Events:[ar,rr,or,Ze,Pe,Bs,{current:!1}]},lp={findFiberByHostInstance:nr,bundleType:0,version:\"17.0.2\",rendererPackageName:\"react-dom\"},sp={bundleType:lp.bundleType,version:lp.version,rendererPackageName:lp.rendererPackageName,rendererConfig:lp.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:x.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=Je(e))?null:e.stateNode},findFiberByHostInstance:lp.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null};if(\"undefined\"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var pp=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!pp.isDisabled&&pp.supportsFiber)try{kr=pp.inject(sp),Er=pp}catch(he){}}t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ip,t.createPortal=op,t.findDOMNode=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternals;if(void 0===t){if(\"function\"==typeof e.render)throw Error(i(188));throw Error(i(268,Object.keys(e)))}return null===(e=Je(t))?null:e.stateNode},t.flushSync=function(e,t){var n=Pl;if(0!=(48&n))return e(t);Pl|=1;try{if(e)return $r(99,e.bind(null,t))}finally{Pl=n,qr()}},t.hydrate=function(e,t,n){if(!ap(t))throw Error(i(200));return rp(null,e,t,!0,n)},t.render=function(e,t,n){if(!ap(t))throw Error(i(200));return rp(null,e,t,!1,n)},t.unmountComponentAtNode=function(e){if(!ap(e))throw Error(i(40));return!!e._reactRootContainer&&(bs((function(){rp(null,null,e,!1,(function(){e._reactRootContainer=null,e[er]=null}))})),!0)},t.unstable_batchedUpdates=ws,t.unstable_createPortal=function(e,t){return op(e,t,2\u003Carguments.length&&void 0!==arguments[2]?arguments[2]:null)},t.unstable_renderSubtreeIntoContainer=function(e,t,n,a){if(!ap(n))throw Error(i(200));if(null==e||void 0===e._reactInternals)throw Error(i(38));return rp(e,t,n,!1,a)},t.version=\"17.0.2\"},3935:(e,t,n)=>{\"use strict\";!function e(){if(\"undefined\"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&\"function\"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),e.exports=n(4448)},2408:(e,t,n)=>{\"use strict\";var a=n(7418),r=60103,o=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var i=60109,l=60110,s=60112;t.Suspense=60113;var p=60115,c=60116;if(\"function\"==typeof Symbol&&Symbol.for){var d=Symbol.for;r=d(\"react.element\"),o=d(\"react.portal\"),t.Fragment=d(\"react.fragment\"),t.StrictMode=d(\"react.strict_mode\"),t.Profiler=d(\"react.profiler\"),i=d(\"react.provider\"),l=d(\"react.context\"),s=d(\"react.forward_ref\"),t.Suspense=d(\"react.suspense\"),p=d(\"react.memo\"),c=d(\"react.lazy\")}var u=\"function\"==typeof Symbol&&Symbol.iterator;function m(e){for(var t=\"https:\u002F\u002Freactjs.org\u002Fdocs\u002Ferror-decoder.html?invariant=\"+e,n=1;n\u003Carguments.length;n++)t+=\"&args[]=\"+encodeURIComponent(arguments[n]);return\"Minified React error #\"+e+\"; visit \"+t+\" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\"}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h={};function g(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||f}function v(){}function _(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||f}g.prototype.isReactComponent={},g.prototype.setState=function(e,t){if(\"object\"!=typeof e&&\"function\"!=typeof e&&null!=e)throw Error(m(85));this.updater.enqueueSetState(this,e,t,\"setState\")},g.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,\"forceUpdate\")},v.prototype=g.prototype;var w=_.prototype=new v;w.constructor=_,a(w,g.prototype),w.isPureReactComponent=!0;var b={current:null},x=Object.prototype.hasOwnProperty,y={key:!0,ref:!0,__self:!0,__source:!0};function k(e,t,n){var a,o={},i=null,l=null;if(null!=t)for(a in void 0!==t.ref&&(l=t.ref),void 0!==t.key&&(i=\"\"+t.key),t)x.call(t,a)&&!y.hasOwnProperty(a)&&(o[a]=t[a]);var s=arguments.length-2;if(1===s)o.children=n;else if(1\u003Cs){for(var p=Array(s),c=0;c\u003Cs;c++)p[c]=arguments[c+2];o.children=p}if(e&&e.defaultProps)for(a in s=e.defaultProps)void 0===o[a]&&(o[a]=s[a]);return{$$typeof:r,type:e,key:i,ref:l,props:o,_owner:b.current}}function E(e){return\"object\"==typeof e&&null!==e&&e.$$typeof===r}var C=\u002F\\\u002F+\u002Fg;function S(e,t){return\"object\"==typeof e&&null!==e&&null!=e.key?function(e){var t={\"=\":\"=0\",\":\":\"=2\"};return\"$\"+e.replace(\u002F[=:]\u002Fg,(function(e){return t[e]}))}(\"\"+e.key):t.toString(36)}function M(e,t,n,a,i){var l=typeof e;\"undefined\"!==l&&\"boolean\"!==l||(e=null);var s=!1;if(null===e)s=!0;else switch(l){case\"string\":case\"number\":s=!0;break;case\"object\":switch(e.$$typeof){case r:case o:s=!0}}if(s)return i=i(s=e),e=\"\"===a?\".\"+S(s,0):a,Array.isArray(i)?(n=\"\",null!=e&&(n=e.replace(C,\"$&\u002F\")+\"\u002F\"),M(i,t,n,\"\",(function(e){return e}))):null!=i&&(E(i)&&(i=function(e,t){return{$$typeof:r,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(i,n+(!i.key||s&&s.key===i.key?\"\":(\"\"+i.key).replace(C,\"$&\u002F\")+\"\u002F\")+e)),t.push(i)),1;if(s=0,a=\"\"===a?\".\":a+\":\",Array.isArray(e))for(var p=0;p\u003Ce.length;p++){var c=a+S(l=e[p],p);s+=M(l,t,n,c,i)}else if(c=function(e){return null===e||\"object\"!=typeof e?null:\"function\"==typeof(e=u&&e[u]||e[\"@@iterator\"])?e:null}(e),\"function\"==typeof c)for(e=c.call(e),p=0;!(l=e.next()).done;)s+=M(l=l.value,t,n,c=a+S(l,p++),i);else if(\"object\"===l)throw t=\"\"+e,Error(m(31,\"[object Object]\"===t?\"object with keys {\"+Object.keys(e).join(\", \")+\"}\":t));return s}function L(e,t,n){if(null==e)return e;var a=[],r=0;return M(e,a,\"\",\"\",(function(e){return t.call(n,e,r++)})),a}function N(e){if(-1===e._status){var t=e._result;t=t(),e._status=0,e._result=t,t.then((function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)}),(function(t){0===e._status&&(e._status=2,e._result=t)}))}if(1===e._status)return e._result;throw e._result}var Z={current:null};function P(){var e=Z.current;if(null===e)throw Error(m(321));return e}var z={ReactCurrentDispatcher:Z,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:b,IsSomeRendererActing:{current:!1},assign:a};t.Children={map:L,forEach:function(e,t,n){L(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return L(e,(function(){t++})),t},toArray:function(e){return L(e,(function(e){return e}))||[]},only:function(e){if(!E(e))throw Error(m(143));return e}},t.Component=g,t.PureComponent=_,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=z,t.cloneElement=function(e,t,n){if(null==e)throw Error(m(267,e));var o=a({},e.props),i=e.key,l=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(l=t.ref,s=b.current),void 0!==t.key&&(i=\"\"+t.key),e.type&&e.type.defaultProps)var p=e.type.defaultProps;for(c in t)x.call(t,c)&&!y.hasOwnProperty(c)&&(o[c]=void 0===t[c]&&void 0!==p?p[c]:t[c])}var c=arguments.length-2;if(1===c)o.children=n;else if(1\u003Cc){p=Array(c);for(var d=0;d\u003Cc;d++)p[d]=arguments[d+2];o.children=p}return{$$typeof:r,type:e.type,key:i,ref:l,props:o,_owner:s}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:l,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:i,_context:e},e.Consumer=e},t.createElement=k,t.createFactory=function(e){var t=k.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:s,render:e}},t.isValidElement=E,t.lazy=function(e){return{$$typeof:c,_payload:{_status:-1,_result:e},_init:N}},t.memo=function(e,t){return{$$typeof:p,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return P().useCallback(e,t)},t.useContext=function(e,t){return P().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return P().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return P().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return P().useLayoutEffect(e,t)},t.useMemo=function(e,t){return P().useMemo(e,t)},t.useReducer=function(e,t,n){return P().useReducer(e,t,n)},t.useRef=function(e){return P().useRef(e)},t.useState=function(e){return P().useState(e)},t.version=\"17.0.2\"},7294:(e,t,n)=>{\"use strict\";e.exports=n(2408)},53:(e,t)=>{\"use strict\";var n,a,r,o;if(\"object\"==typeof performance&&\"function\"==typeof performance.now){var i=performance;t.unstable_now=function(){return i.now()}}else{var l=Date,s=l.now();t.unstable_now=function(){return l.now()-s}}if(\"undefined\"==typeof window||\"function\"!=typeof MessageChannel){var p=null,c=null,d=function(){if(null!==p)try{var e=t.unstable_now();p(!0,e),p=null}catch(e){throw setTimeout(d,0),e}};n=function(e){null!==p?setTimeout(n,0,e):(p=e,setTimeout(d,0))},a=function(e,t){c=setTimeout(e,t)},r=function(){clearTimeout(c)},t.unstable_shouldYield=function(){return!1},o=t.unstable_forceFrameRate=function(){}}else{var u=window.setTimeout,m=window.clearTimeout;if(\"undefined\"!=typeof console){var f=window.cancelAnimationFrame;\"function\"!=typeof window.requestAnimationFrame&&console.error(\"This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https:\u002F\u002Freactjs.org\u002Flink\u002Freact-polyfills\"),\"function\"!=typeof f&&console.error(\"This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https:\u002F\u002Freactjs.org\u002Flink\u002Freact-polyfills\")}var h=!1,g=null,v=-1,_=5,w=0;t.unstable_shouldYield=function(){return t.unstable_now()>=w},o=function(){},t.unstable_forceFrameRate=function(e){0>e||125\u003Ce?console.error(\"forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported\"):_=0\u003Ce?Math.floor(1e3\u002Fe):5};var b=new MessageChannel,x=b.port2;b.port1.onmessage=function(){if(null!==g){var e=t.unstable_now();w=e+_;try{g(!0,e)?x.postMessage(null):(h=!1,g=null)}catch(e){throw x.postMessage(null),e}}else h=!1},n=function(e){g=e,h||(h=!0,x.postMessage(null))},a=function(e,n){v=u((function(){e(t.unstable_now())}),n)},r=function(){m(v),v=-1}}function y(e,t){var n=e.length;e.push(t);e:for(;;){var a=n-1>>>1,r=e[a];if(!(void 0!==r&&0\u003CC(r,t)))break e;e[a]=t,e[n]=r,n=a}}function k(e){return void 0===(e=e[0])?null:e}function E(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var a=0,r=e.length;a\u003Cr;){var o=2*(a+1)-1,i=e[o],l=o+1,s=e[l];if(void 0!==i&&0>C(i,n))void 0!==s&&0>C(s,i)?(e[a]=s,e[l]=n,a=l):(e[a]=i,e[o]=n,a=o);else{if(!(void 0!==s&&0>C(s,n)))break e;e[a]=s,e[l]=n,a=l}}}return t}return null}function C(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var S=[],M=[],L=1,N=null,Z=3,P=!1,z=!1,A=!1;function B(e){for(var t=k(M);null!==t;){if(null===t.callback)E(M);else{if(!(t.startTime\u003C=e))break;E(M),t.sortIndex=t.expirationTime,y(S,t)}t=k(M)}}function H(e){if(A=!1,B(e),!z)if(null!==k(S))z=!0,n(T);else{var t=k(M);null!==t&&a(H,t.startTime-e)}}function T(e,n){z=!1,A&&(A=!1,r()),P=!0;var o=Z;try{for(B(n),N=k(S);null!==N&&(!(N.expirationTime>n)||e&&!t.unstable_shouldYield());){var i=N.callback;if(\"function\"==typeof i){N.callback=null,Z=N.priorityLevel;var l=i(N.expirationTime\u003C=n);n=t.unstable_now(),\"function\"==typeof l?N.callback=l:N===k(S)&&E(S),B(n)}else E(S);N=k(S)}if(null!==N)var s=!0;else{var p=k(M);null!==p&&a(H,p.startTime-n),s=!1}return s}finally{N=null,Z=o,P=!1}}var R=o;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){z||P||(z=!0,n(T))},t.unstable_getCurrentPriorityLevel=function(){return Z},t.unstable_getFirstCallbackNode=function(){return k(S)},t.unstable_next=function(e){switch(Z){case 1:case 2:case 3:var t=3;break;default:t=Z}var n=Z;Z=t;try{return e()}finally{Z=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=R,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=Z;Z=e;try{return t()}finally{Z=n}},t.unstable_scheduleCallback=function(e,o,i){var l=t.unstable_now();switch(i=\"object\"==typeof i&&null!==i&&\"number\"==typeof(i=i.delay)&&0\u003Ci?l+i:l,e){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return e={id:L++,callback:o,priorityLevel:e,startTime:i,expirationTime:s=i+s,sortIndex:-1},i>l?(e.sortIndex=i,y(M,e),null===k(S)&&e===k(M)&&(A?r():A=!0,a(H,i-l))):(e.sortIndex=s,y(S,e),z||P||(z=!0,n(T))),e},t.unstable_wrapCallback=function(e){var t=Z;return function(){var n=Z;Z=t;try{return e.apply(this,arguments)}finally{Z=n}}}},3840:(e,t,n)=>{\"use strict\";e.exports=n(53)},8975:(e,t,n)=>{var a;!function(){\"use strict\";var r={not_string:\u002F[^s]\u002F,not_bool:\u002F[^t]\u002F,not_type:\u002F[^T]\u002F,not_primitive:\u002F[^v]\u002F,number:\u002F[diefg]\u002F,numeric_arg:\u002F[bcdiefguxX]\u002F,json:\u002F[j]\u002F,not_json:\u002F[^j]\u002F,text:\u002F^[^\\x25]+\u002F,modulo:\u002F^\\x25{2}\u002F,placeholder:\u002F^\\x25(?:([1-9]\\d*)\\$|\\(([^)]+)\\))?(\\+)?(0|'[^$])?(-)?(\\d+)?(?:\\.(\\d+))?([b-gijostTuvxX])\u002F,key:\u002F^([a-z_][a-z_\\d]*)\u002Fi,key_access:\u002F^\\.([a-z_][a-z_\\d]*)\u002Fi,index_access:\u002F^\\[(\\d+)\\]\u002F,sign:\u002F^[+-]\u002F};function o(e){return function(e,t){var n,a,i,l,s,p,c,d,u,m=1,f=e.length,h=\"\";for(a=0;a\u003Cf;a++)if(\"string\"==typeof e[a])h+=e[a];else if(\"object\"==typeof e[a]){if((l=e[a]).keys)for(n=t[m],i=0;i\u003Cl.keys.length;i++){if(null==n)throw new Error(o('[sprintf] Cannot access property \"%s\" of undefined value \"%s\"',l.keys[i],l.keys[i-1]));n=n[l.keys[i]]}else n=l.param_no?t[l.param_no]:t[m++];if(r.not_type.test(l.type)&&r.not_primitive.test(l.type)&&n instanceof Function&&(n=n()),r.numeric_arg.test(l.type)&&\"number\"!=typeof n&&isNaN(n))throw new TypeError(o(\"[sprintf] expecting number but found %T\",n));switch(r.number.test(l.type)&&(d=n>=0),l.type){case\"b\":n=parseInt(n,10).toString(2);break;case\"c\":n=String.fromCharCode(parseInt(n,10));break;case\"d\":case\"i\":n=parseInt(n,10);break;case\"j\":n=JSON.stringify(n,null,l.width?parseInt(l.width):0);break;case\"e\":n=l.precision?parseFloat(n).toExponential(l.precision):parseFloat(n).toExponential();break;case\"f\":n=l.precision?parseFloat(n).toFixed(l.precision):parseFloat(n);break;case\"g\":n=l.precision?String(Number(n.toPrecision(l.precision))):parseFloat(n);break;case\"o\":n=(parseInt(n,10)>>>0).toString(8);break;case\"s\":n=String(n),n=l.precision?n.substring(0,l.precision):n;break;case\"t\":n=String(!!n),n=l.precision?n.substring(0,l.precision):n;break;case\"T\":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=l.precision?n.substring(0,l.precision):n;break;case\"u\":n=parseInt(n,10)>>>0;break;case\"v\":n=n.valueOf(),n=l.precision?n.substring(0,l.precision):n;break;case\"x\":n=(parseInt(n,10)>>>0).toString(16);break;case\"X\":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}r.json.test(l.type)?h+=n:(!r.number.test(l.type)||d&&!l.sign?u=\"\":(u=d?\"+\":\"-\",n=n.toString().replace(r.sign,\"\")),p=l.pad_char?\"0\"===l.pad_char?\"0\":l.pad_char.charAt(1):\" \",c=l.width-(u+n).length,s=l.width&&c>0?p.repeat(c):\"\",h+=l.align?u+n+s:\"0\"===p?u+s+n:s+u+n)}return h}(function(e){if(l[e])return l[e];for(var t,n=e,a=[],o=0;n;){if(null!==(t=r.text.exec(n)))a.push(t[0]);else if(null!==(t=r.modulo.exec(n)))a.push(\"%\");else{if(null===(t=r.placeholder.exec(n)))throw new SyntaxError(\"[sprintf] unexpected placeholder\");if(t[2]){o|=1;var i=[],s=t[2],p=[];if(null===(p=r.key.exec(s)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");for(i.push(p[1]);\"\"!==(s=s.substring(p[0].length));)if(null!==(p=r.key_access.exec(s)))i.push(p[1]);else{if(null===(p=r.index_access.exec(s)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");i.push(p[1])}t[2]=i}else o|=2;if(3===o)throw new Error(\"[sprintf] mixing positional and named placeholders is not (yet) supported\");a.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}n=n.substring(t[0].length)}return l[e]=a}(e),arguments)}function i(e,t){return o.apply(null,[e].concat(t||[]))}var l=Object.create(null);\"undefined\"!=typeof window&&(window.sprintf=o,window.vsprintf=i,void 0===(a=function(){return{sprintf:o,vsprintf:i}}.call(t,n,t,e))||(e.exports=a))}()},6129:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6511),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},563:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(3038),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3493:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(725),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},9780:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(5735),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},8350:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(9455),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2156:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(283),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},977:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(4421),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},7376:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(2041),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},6680:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6657),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3479:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(2793),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},4602:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(4558),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3358:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6922),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2413:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(439),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},6509:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(9839),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},619:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1211),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2158:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1589),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},4201:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1729),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3379:e=>{\"use strict\";var t=[];function n(e){for(var n=-1,a=0;a\u003Ct.length;a++)if(t[a].identifier===e){n=a;break}return n}function a(e,a){for(var o={},i=[],l=0;l\u003Ce.length;l++){var s=e[l],p=a.base?s[0]+a.base:s[0],c=o[p]||0,d=\"\".concat(p,\" \").concat(c);o[p]=c+1;var u=n(d),m={css:s[1],media:s[2],sourceMap:s[3],supports:s[4],layer:s[5]};if(-1!==u)t[u].references++,t[u].updater(m);else{var f=r(m,a);a.byIndex=l,t.splice(l,0,{identifier:d,updater:f,references:1})}i.push(d)}return i}function r(e,t){var n=t.domAPI(t);return n.update(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap&&t.supports===e.supports&&t.layer===e.layer)return;n.update(e=t)}else n.remove()}}e.exports=function(e,r){var o=a(e=e||[],r=r||{});return function(e){e=e||[];for(var i=0;i\u003Co.length;i++){var l=n(o[i]);t[l].references--}for(var s=a(e,r),p=0;p\u003Co.length;p++){var c=n(o[p]);0===t[c].references&&(t[c].updater(),t.splice(c,1))}o=s}}},569:e=>{\"use strict\";var t={};e.exports=function(e,n){var a=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!a)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");a.appendChild(n)}},9216:e=>{\"use strict\";e.exports=function(e){var t=document.createElement(\"style\");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{\"use strict\";e.exports=function(e){var t=n.nc;t&&e.setAttribute(\"nonce\",t)}},7795:e=>{\"use strict\";e.exports=function(e){if(\"undefined\"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var a=\"\";n.supports&&(a+=\"@supports (\".concat(n.supports,\") {\")),n.media&&(a+=\"@media \".concat(n.media,\" {\"));var r=void 0!==n.layer;r&&(a+=\"@layer\".concat(n.layer.length>0?\" \".concat(n.layer):\"\",\" {\")),a+=n.css,r&&(a+=\"}\"),n.media&&(a+=\"}\"),n.supports&&(a+=\"}\");var o=n.sourceMap;o&&\"undefined\"!=typeof btoa&&(a+=\"\\n\u002F*# sourceMappingURL=data:application\u002Fjson;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o)))),\" *\u002F\")),t.styleTagTransform(a,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{\"use strict\";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},5022:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7680),r={contextDelimiter:\"\u0004\",onMissingKey:null};function o(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},r)this.options[n]=void 0!==t&&n in t?t[n]:r[n]}o.prototype.getPluralForm=function(e,t){var n,r,o,i=this.pluralForms[e];return i||(\"function\"!=typeof(o=(n=this.data[e][\"\"])[\"Plural-Forms\"]||n[\"plural-forms\"]||n.plural_forms)&&(r=function(e){var t,n,a;for(t=e.split(\";\"),n=0;n\u003Ct.length;n++)if(0===(a=t[n].trim()).indexOf(\"plural=\"))return a.substr(7)}(n[\"Plural-Forms\"]||n[\"plural-forms\"]||n.plural_forms),o=(0,a.Z)(r)),i=this.pluralForms[e]=o),i(t)},o.prototype.dcnpgettext=function(e,t,n,a,r){var o,i,l;return o=void 0===r?0:this.getPluralForm(e,r),i=n,t&&(i=t+this.options.contextDelimiter+n),(l=this.data[e][i])&&l[o]?l[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===o?n:a)}},4975:e=>{\"use strict\";e.exports=\"data:image\u002Fsvg+xml,%3Csvg width=%2742%27 height=%2742%27 viewBox=%270 0 42 42%27 fill=%27none%27 xmlns=%27http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg%27%3E%3Cpath d=%27M0 42V7C0 3.13401 3.13401 0 7 0H42L0 42Z%27 fill=%27%23FF285E%27\u002F%3E%3C\u002Fsvg%3E\"},7462:(e,t,n)=>{\"use strict\";function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t\u003Carguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},a.apply(this,arguments)}n.d(t,{Z:()=>a})},6290:(e,t,n)=>{\"use strict\";function a(e,t){var n,a,r=0;function o(){var o,i,l=n,s=arguments.length;e:for(;l;){if(l.args.length===arguments.length){for(i=0;i\u003Cs;i++)if(l.args[i]!==arguments[i]){l=l.next;continue e}return l!==n&&(l===a&&(a=l.prev),l.prev.next=l.next,l.next&&(l.next.prev=l.prev),l.next=n,l.prev=null,n.prev=l,n=l),l.val}l=l.next}for(o=new Array(s),i=0;i\u003Cs;i++)o[i]=arguments[i];return l={args:o,val:e.apply(null,o)},n?(n.prev=l,l.next=n):a=l,r===t.maxSize?(a=a.prev).next=null:r++,n=l,l.val}return t=t||{},o.clear=function(){n=null,a=null,r=0},o}n.d(t,{Z:()=>a})}},t={};function n(a){var r=t[a];if(void 0!==r)return r.exports;var o=t[a]={id:a,exports:{}};return e[a](o,o.exports,n),o.exports}n.m=e,n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var a in t)n.o(t,a)&&!n.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.b=document.baseURI||self.location.href,n.nc=void 0,n(1383)})();\n\\ No newline at end of file\n+(()=>{var e={1974:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(2141),r=n(192);function o(e){var t=(0,a.Z)(e);return function(e){return(0,r.Z)(t,e)}}},192:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a={\"!\":function(e){return!e},\"*\":function(e,t){return e*t},\"\u002F\":function(e,t){return e\u002Ft},\"%\":function(e,t){return e%t},\"+\":function(e,t){return e+t},\"-\":function(e,t){return e-t},\"\u003C\":function(e,t){return e\u003Ct},\"\u003C=\":function(e,t){return e\u003C=t},\">\":function(e,t){return e>t},\">=\":function(e,t){return e>=t},\"==\":function(e,t){return e===t},\"!=\":function(e,t){return e!==t},\"&&\":function(e,t){return e&&t},\"||\":function(e,t){return e||t},\"?:\":function(e,t,n){if(e)throw t;return n}};function r(e,t){var n,r,o,i,l,s,p=[];for(n=0;n\u003Ce.length;n++){if(l=e[n],i=a[l]){for(r=i.length,o=Array(r);r--;)o[r]=p.pop();try{s=i.apply(null,o)}catch(e){return e}}else s=t.hasOwnProperty(l)?t[l]:+l;p.push(s)}return p[0]}},7680:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(1974);function r(e){var t=(0,a.Z)(e);return function(e){return+t({n:e})}}},2141:(e,t,n)=>{\"use strict\";var a,r,o,i;function l(e){for(var t,n,l,s,p=[],c=[];t=e.match(i);){for(n=t[0],(l=e.substr(0,t.index).trim())&&p.push(l);s=c.pop();){if(o[n]){if(o[n][0]===s){n=o[n][1]||n;break}}else if(r.indexOf(s)>=0||a[s]\u003Ca[n]){c.push(s);break}p.push(s)}o[n]||c.push(n),e=e.substr(t.index+n.length)}return(e=e.trim())&&p.push(e),p.concat(c.reverse())}n.d(t,{Z:()=>l}),a={\"(\":9,\"!\":8,\"*\":7,\"\u002F\":7,\"%\":7,\"+\":6,\"-\":6,\"\u003C\":5,\"\u003C=\":5,\">\":5,\">=\":5,\"==\":4,\"!=\":4,\"&&\":3,\"||\":2,\"?\":1,\"?:\":1},r=[\"(\",\"?\"],o={\")\":[\"(\"],\":\":[\"?\",\"?:\"]},i=\u002F\u003C=|>=|==|!=|&&|\\|\\||\\?:|\\(|!|\\*|\\\u002F|%|\\+|-|\u003C|>|\\?|\\)|:\u002F},8247:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(4103),r=n(1755);const o=function(e,t){return function(n,o,i,l=10){const s=e[t];if(!(0,r.Z)(n))return;if(!(0,a.Z)(o))return;if(\"function\"!=typeof i)return void console.error(\"The hook callback must be a function.\");if(\"number\"!=typeof l)return void console.error(\"If specified, the hook priority must be a number.\");const p={callback:i,priority:l,namespace:o};if(s[n]){const e=s[n].handlers;let t;for(t=e.length;t>0&&!(l>=e[t-1].priority);t--);t===e.length?e[t]=p:e.splice(t,0,p),s.__current.forEach((e=>{e.name===n&&e.currentIndex>=t&&e.currentIndex++}))}else s[n]={handlers:[p],runs:0};\"hookAdded\"!==n&&e.doAction(\"hookAdded\",n,o,i,l)}}},9992:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e,t){return function(){var n;const a=e[t];return null!==(n=a.__current[a.__current.length-1]?.name)&&void 0!==n?n:null}}},3972:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(1755);const r=function(e,t){return function(n){const r=e[t];if((0,a.Z)(n))return r[n]&&r[n].runs?r[n].runs:0}}},1786:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e,t){return function(n){const a=e[t];return void 0===n?void 0!==a.__current[0]:!!a.__current[0]&&n===a.__current[0].name}}},8642:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e,t){return function(n,a){const r=e[t];return void 0!==a?n in r&&r[n].handlers.some((e=>e.namespace===a)):n in r}}},1019:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>d});var a=n(8247),r=n(9099),o=n(8642),i=n(6424),l=n(9992),s=n(1786),p=n(3972);class c{constructor(){this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=(0,a.Z)(this,\"actions\"),this.addFilter=(0,a.Z)(this,\"filters\"),this.removeAction=(0,r.Z)(this,\"actions\"),this.removeFilter=(0,r.Z)(this,\"filters\"),this.hasAction=(0,o.Z)(this,\"actions\"),this.hasFilter=(0,o.Z)(this,\"filters\"),this.removeAllActions=(0,r.Z)(this,\"actions\",!0),this.removeAllFilters=(0,r.Z)(this,\"filters\",!0),this.doAction=(0,i.Z)(this,\"actions\"),this.applyFilters=(0,i.Z)(this,\"filters\",!0),this.currentAction=(0,l.Z)(this,\"actions\"),this.currentFilter=(0,l.Z)(this,\"filters\"),this.doingAction=(0,s.Z)(this,\"actions\"),this.doingFilter=(0,s.Z)(this,\"filters\"),this.didAction=(0,p.Z)(this,\"actions\"),this.didFilter=(0,p.Z)(this,\"filters\")}}const d=function(){return new c}},9099:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(4103),r=n(1755);const o=function(e,t,n=!1){return function(o,i){const l=e[t];if(!(0,r.Z)(o))return;if(!n&&!(0,a.Z)(i))return;if(!l[o])return 0;let s=0;if(n)s=l[o].handlers.length,l[o]={runs:l[o].runs,handlers:[]};else{const e=l[o].handlers;for(let t=e.length-1;t>=0;t--)e[t].namespace===i&&(e.splice(t,1),s++,l.__current.forEach((e=>{e.name===o&&e.currentIndex>=t&&e.currentIndex--})))}return\"hookRemoved\"!==o&&e.doAction(\"hookRemoved\",o,i),s}}},6424:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e,t,n=!1){return function(a,...r){const o=e[t];o[a]||(o[a]={handlers:[],runs:0}),o[a].runs++;const i=o[a].handlers;if(!i||!i.length)return n?r[0]:void 0;const l={name:a,currentIndex:0};for(o.__current.push(l);l.currentIndex\u003Ci.length;){const e=i[l.currentIndex].callback.apply(null,r);n&&(r[0]=e),l.currentIndex++}return o.__current.pop(),n?r[0]:void 0}}},1957:(e,t,n)=>{\"use strict\";n.d(t,{JQ:()=>a});const a=(0,n(1019).Z)(),{addAction:r,addFilter:o,removeAction:i,removeFilter:l,hasAction:s,hasFilter:p,removeAllActions:c,removeAllFilters:d,doAction:u,applyFilters:m,currentAction:f,currentFilter:h,doingAction:g,doingFilter:v,didAction:_,didFilter:w,actions:b,filters:x}=a},1755:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e){return\"string\"!=typeof e||\"\"===e?(console.error(\"The hook name must be a non-empty string.\"),!1):\u002F^__\u002F.test(e)?(console.error(\"The hook name cannot begin with `__`.\"),!1):!!\u002F^[a-zA-Z][a-zA-Z0-9_.-]*$\u002F.test(e)||(console.error(\"The hook name can only contain numbers, letters, dashes, periods and underscores.\"),!1)}},4103:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=function(e){return\"string\"!=typeof e||\"\"===e?(console.error(\"The namespace must be a non-empty string.\"),!1):!!\u002F^[a-zA-Z][a-zA-Z0-9_.\\-\\\u002F]*$\u002F.test(e)||(console.error(\"The namespace can only contain numbers, letters, dashes, periods, underscores and slashes.\"),!1)}},6016:(e,t,n)=>{\"use strict\";n.d(t,{o:()=>i});var a=n(5022);const r={plural_forms:e=>1===e?0:1},o=\u002F^i18n\\.(n?gettext|has_translation)(_|$)\u002F,i=(e,t,n)=>{const i=new a.Z({}),l=new Set,s=()=>{l.forEach((e=>e()))},p=(e,t=\"default\")=>{i.data[t]={...i.data[t],...e},i.data[t][\"\"]={...r,...i.data[t]?.[\"\"]},delete i.pluralForms[t]},c=(e,t)=>{p(e,t),s()},d=(e=\"default\",t,n,a,r)=>(i.data[e]||p(void 0,e),i.dcnpgettext(e,t,n,a,r)),u=(e=\"default\")=>e,_x=(e,t,a)=>{let r=d(a,t,e);return n?(r=n.applyFilters(\"i18n.gettext_with_context\",r,e,t,a),n.applyFilters(\"i18n.gettext_with_context_\"+u(a),r,e,t,a)):r};if(e&&c(e,t),n){const e=e=>{o.test(e)&&s()};n.addAction(\"hookAdded\",\"core\u002Fi18n\",e),n.addAction(\"hookRemoved\",\"core\u002Fi18n\",e)}return{getLocaleData:(e=\"default\")=>i.data[e],setLocaleData:c,addLocaleData:(e,t=\"default\")=>{i.data[t]={...i.data[t],...e,\"\":{...r,...i.data[t]?.[\"\"],...e?.[\"\"]}},delete i.pluralForms[t],s()},resetLocaleData:(e,t)=>{i.data={},i.pluralForms={},c(e,t)},subscribe:e=>(l.add(e),()=>l.delete(e)),__:(e,t)=>{let a=d(t,void 0,e);return n?(a=n.applyFilters(\"i18n.gettext\",a,e,t),n.applyFilters(\"i18n.gettext_\"+u(t),a,e,t)):a},_x,_n:(e,t,a,r)=>{let o=d(r,void 0,e,t,a);return n?(o=n.applyFilters(\"i18n.ngettext\",o,e,t,a,r),n.applyFilters(\"i18n.ngettext_\"+u(r),o,e,t,a,r)):o},_nx:(e,t,a,r,o)=>{let i=d(o,r,e,t,a);return n?(i=n.applyFilters(\"i18n.ngettext_with_context\",i,e,t,a,r,o),n.applyFilters(\"i18n.ngettext_with_context_\"+u(o),i,e,t,a,r,o)):i},isRTL:()=>\"rtl\"===_x(\"ltr\",\"text direction\"),hasTranslation:(e,t,a)=>{const r=t?t+\"\u0004\"+e:e;let o=!!i.data?.[null!=a?a:\"default\"]?.[r];return n&&(o=n.applyFilters(\"i18n.has_translation\",o,e,t,a),o=n.applyFilters(\"i18n.has_translation_\"+u(a),o,e,t,a)),o}}}},7836:(e,t,n)=>{\"use strict\";n.d(t,{__:()=>__});var a=n(6016),r=n(1957);const o=(0,a.o)(void 0,void 0,r.JQ);o.getLocaleData.bind(o),o.setLocaleData.bind(o),o.resetLocaleData.bind(o),o.subscribe.bind(o);const __=o.__.bind(o);o._x.bind(o),o._n.bind(o),o._nx.bind(o),o.isRTL.bind(o),o.hasTranslation.bind(o)},2304:(e,t,n)=>{\"use strict\";n.d(t,{__:()=>a.__}),n(5917),n(6016);var a=n(7836)},5917:(e,t,n)=>{\"use strict\";var a=n(6290);n(8975),(0,a.Z)(console.error)},4528:(e,t,n)=>{\"use strict\";n.d(t,{c:()=>r});var a=n(7294);const r={add_plus_shopping_cart_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5.862 3.76A1.75 1.75 0 0 0 4.13 2.25H2a.75.75 0 0 0 0 1.5h2.129a.25.25 0 0 1 .247.216l1.762 12.773c.059.427.27.8.572 1.069a2.5 2.5 0 1 0 4.33.442h5.17a2.5 2.5 0 1 0 2.29-1.5H7.871a.25.25 0 0 1-.247-.216l-.183-1.32 12.36-1.068a1.75 1.75 0 0 0 1.573-1.433l1.152-6.403a1.75 1.75 0 0 0-1.722-2.06H5.93l-.068-.49ZM7.75 19.25a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm9.75 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm-4.505-7.75v-1.245H11.75a.75.75 0 0 1 0-1.5h1.245V7.5a.75.75 0 0 1 1.5 0v1.255h1.255a.75.75 0 0 1 0 1.5h-1.255V11.5a.75.75 0 0 1-1.5 0Z\",clipRule:\"evenodd\"})),android_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M20 10.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Zm-16 0a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75ZM8.05 1.4a.75.75 0 0 0-.15 1.05l1.153 1.537A6.249 6.249 0 0 0 5.75 9.5v.5h12.5v-.5a6.249 6.249 0 0 0-3.303-5.513L16.1 2.45a.75.75 0 1 0-1.2-.9l-1.41 1.879a6.266 6.266 0 0 0-2.98 0L9.1 1.55a.75.75 0 0 0-1.05-.15ZM9.74 8a.75.75 0 0 1 .75-.75h.01a.75.75 0 0 1 0 1.5h-.01A.75.75 0 0 1 9.74 8Zm3.75-.75a.75.75 0 0 0 0 1.5h.01a.75.75 0 0 0 0-1.5h-.01Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M5.75 11.5V17a2.75 2.75 0 0 0 2.75 2.75h.25V22a.75.75 0 0 0 1.5 0v-2.25h4V22a.75.75 0 0 0 1.5 0v-2.261A2.75 2.75 0 0 0 18.25 17v-5.5H5.75Z\"})),angry_emoji_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM6.25 9.5A.75.75 0 0 1 7 8.75c.549 0 1.303.068 1.982.285.632.202 1.458.619 1.704 1.493.043.152.064.31.064.472 0 .527-.197 1.1-.77 1.322-.493.192-.974-.001-1.25-.237-.277-.238-.62-.793-.262-1.39.044-.074.096-.14.153-.2a2.804 2.804 0 0 0-.095-.031C8.04 10.309 7.45 10.25 7 10.25a.75.75 0 0 1-.75-.75Zm8.768-.465c.678-.217 1.433-.285 1.982-.285a.75.75 0 0 1 0 1.5c-.451 0-1.041.059-1.526.214-.033.01-.065.021-.095.032.057.059.109.125.153.2.359.596.015 1.151-.262 1.389-.276.236-.758.429-1.25.237-.573-.223-.77-.795-.77-1.322 0-.162.021-.32.064-.472.246-.874 1.072-1.291 1.704-1.493Zm-6.347 8.3C9.262 16.153 10.58 15.5 12 15.5c1.42 0 2.738.653 3.33 1.835a.75.75 0 1 0 1.34-.67C15.763 14.847 13.83 14 12 14s-3.762.847-4.67 2.665a.75.75 0 0 0 1.34.67Z\",clipRule:\"evenodd\"})),apple_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M20.054 8.58c-.123.096-2.287 1.337-2.287 4.095 0 3.191 2.754 4.32 2.836 4.348-.012.069-.437 1.546-1.452 3.051-.904 1.325-1.849 2.647-3.286 2.647s-1.806-.85-3.465-.85c-1.617 0-2.192.878-3.506.878-1.315 0-2.232-1.226-3.286-2.73-1.222-1.768-2.209-4.514-2.209-7.12 0-2.07.655-3.658 1.636-4.735 1-1.097 2.337-1.662 3.664-1.662 1.397 0 2.562.933 3.439.933.834 0 2.136-.989 3.725-.989.602 0 2.767.056 4.19 2.133Zm-4.945-3.904a5.04 5.04 0 0 0 .84-1.467 4.462 4.462 0 0 0 .282-1.528c0-.152-.013-.307-.04-.432-1.07.04-2.342.725-3.109 1.63-.602.697-1.164 1.797-1.164 2.913 0 .168.027.336.04.39.068.013.178.028.287.028.96 0 2.167-.654 2.864-1.534Z\"})),arrow_down_bottom_downward_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1 6.25a1 1 0 1 0-2 0v6.586l-1.793-1.793a1 1 0 0 0-1.414 1.414l3.5 3.5a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0-1.414-1.414L13 14.086V7.5Z\",clipRule:\"evenodd\"})),arrow_down_bottom_downward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11 3.5a1 1 0 1 1 2 0v14.586l6.793-6.793a1 1 0 1 1 1.414 1.414l-8.5 8.5a1 1 0 0 1-1.414 0l-8.5-8.5a1 1 0 0 1 1.338-1.482l.076.068L11 18.086V3.5Z\"})),arrow_down_bottom_left_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M17.293 5.293a1 1 0 1 1 1.414 1.414L8.414 17H18a1 1 0 1 1 0 2H6a1 1 0 0 1-1-1V6a1 1 0 0 1 2 0v9.586L17.293 5.293Z\"})),arrow_down_bottom_right_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M5.293 5.293a1 1 0 0 1 1.414 0L17 15.586V6a1 1 0 1 1 2 0v12a1 1 0 0 1-1 1H6a1 1 0 1 1 0-2h9.586L5.293 6.707a1 1 0 0 1 0-1.414Z\"})),arrow_down_dropdown_maximize_chevron_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M18 8.25a.75.75 0 0 1 .53 1.28l-6 6a.75.75 0 0 1-1.06 0l-6-6A.75.75 0 0 1 6 8.25h12Z\"})),arrow_left_backward_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm-.293 7.957a1 1 0 0 0-1.414-1.414l-3.5 3.5a1 1 0 0 0 0 1.414l3.5 3.5a1 1 0 0 0 1.414-1.414L9.914 13H16.5a1 1 0 1 0 0-2H9.914l1.793-1.793Z\",clipRule:\"evenodd\"})),arrow_left_backward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.293 2.793a1 1 0 1 1 1.414 1.414L5.914 11H20.5a1 1 0 1 1 0 2H5.914l6.793 6.793.068.076a1 1 0 0 1-1.406 1.406l-.076-.068-8.5-8.5a1 1 0 0 1 0-1.414l8.5-8.5Z\"})),arrow_left_previous_backward_chevron_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M14.47 5.47a.75.75 0 0 1 1.28.53v12a.75.75 0 0 1-1.28.53l-6-6a.75.75 0 0 1 0-1.06l6-6Z\"})),arrow_move_down_left_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M6.293 7.293A1 1 0 0 1 8 8v4h10a3 3 0 0 0 3-3V6a1 1 0 1 1 2 0v3a5 5 0 0 1-5 5H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5Z\"})),arrow_move_down_right_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.617 7.076a1 1 0 0 1 1.09.217l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 18v-4H6a5 5 0 0 1-5-5V6a1 1 0 0 1 2 0v3a3 3 0 0 0 3 3h10V8a1 1 0 0 1 .617-.924Z\"})),arrow_move_up_left_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 18v-3a3 3 0 0 0-3-3H8v4a1 1 0 0 1-1.707.707l-5-5a1 1 0 0 1 0-1.414l5-5A1 1 0 0 1 8 6v4h10a5 5 0 0 1 5 5v3a1 1 0 1 1-2 0Z\"})),arrow_move_up_right_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M1 18v-3a5 5 0 0 1 5-5h10V6a1 1 0 0 1 1.707-.707l5 5a1 1 0 0 1 0 1.414l-5 5A1 1 0 0 1 16 16v-4H6a3 3 0 0 0-3 3v3a1 1 0 1 1-2 0Z\"})),arrow_right_forward_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm1.707 6.543a1 1 0 1 0-1.414 1.414L14.086 11H7.5a1 1 0 1 0 0 2h6.586l-1.793 1.793a1 1 0 0 0 1.414 1.414l3.5-3.5a1 1 0 0 0 0-1.414l-3.5-3.5Z\",clipRule:\"evenodd\"})),arrow_right_forward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.293 2.793a1 1 0 0 1 1.414 0l8.5 8.5a1 1 0 0 1 0 1.414l-8.5 8.5a1 1 0 1 1-1.414-1.414L18.086 13H3.5a1 1 0 1 1 0-2h14.586l-6.793-6.793-.068-.076a1 1 0 0 1 .068-1.338Z\"})),arrow_right_next_forward_chevron_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M8.713 5.307a.75.75 0 0 1 .817.163l6 6a.75.75 0 0 1 0 1.06l-6 6A.75.75 0 0 1 8.25 18V6a.75.75 0 0 1 .463-.693Z\"})),arrow_up_dropdown_minimize_chevron_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.527 8.418a.75.75 0 0 1 1.004.052l6 6a.75.75 0 0 1-.53 1.28H6a.75.75 0 0 1-.531-1.28l6-6 .057-.052Z\"})),arrow_up_top_left_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M5 18V6a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H8.414l10.293 10.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L7 8.414V18a1 1 0 1 1-2 0Z\"})),arrow_up_top_right_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M19 18a1 1 0 1 1-2 0V8.414L6.707 18.707a1 1 0 1 1-1.414-1.414L15.586 7H6a1 1 0 0 1 0-2h12a1 1 0 0 1 1 1v12Z\"})),arrow_up_top_upward_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.207 9.043-3.5-3.5a1 1 0 0 0-1.414 0l-3.5 3.5a1 1 0 1 0 1.414 1.414L11 9.914V16.5a1 1 0 1 0 2 0V9.914l1.793 1.793a1 1 0 0 0 1.414-1.414Z\",clipRule:\"evenodd\"})),arrow_up_top_upward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11 20.5V5.914l-6.793 6.793a1 1 0 1 1-1.414-1.414l8.5-8.5.076-.068a1 1 0 0 1 1.338.068l8.5 8.5.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L13 5.914V20.5a1 1 0 1 1-2 0Z\"})),at_a_mail_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 7c1.126 0 2.164.372 3 1a1 1 0 1 1 2 0v7a1 1 0 0 0 1 1 3 3 0 0 0 3-3v-1a9 9 0 1 0-9 9c1.64 0 3.176-.438 4.499-1.203a1 1 0 0 1 1.002 1.73A10.955 10.955 0 0 1 12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11v1a5 5 0 0 1-5 5 3.002 3.002 0 0 1-2.865-2.106A5 5 0 1 1 12 7Zm-3 5a3 3 0 1 0 6 0 3 3 0 0 0-6 0Z\"})),author_user_human_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm3.5 13.533c0 .672-.545 1.217-1.217 1.217H4.967a1.217 1.217 0 0 1-1.217-1.217 7.283 7.283 0 0 1 7.283-7.283h1.934a7.283 7.283 0 0 1 7.283 7.283Z\"})),author_user_human_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M7.5 8a4.5 4.5 0 0 0 2.43 3.996A8.754 8.754 0 0 0 3.25 20.5c0 .414.336.75.75.75h16a.75.75 0 0 0 .75-.75 8.754 8.754 0 0 0-6.68-8.504A4.5 4.5 0 1 0 7.5 8Z\"})),author_user_human_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0Zm4 14a.75.75 0 0 1-.75.75H4a.75.75 0 0 1-.75-.75v-3A4.75 4.75 0 0 1 8 13.25h8A4.75 4.75 0 0 1 20.75 18v3Z\"})),author_user_human_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.75 7a4.75 4.75 0 1 1-9.5 0 4.75 4.75 0 0 1 9.5 0ZM12 12.75c3.518 0 6.62 1.696 8.337 4.088.411.573.6 1.197.568 1.816a2.84 2.84 0 0 1-.645 1.626c-.723.902-1.951 1.47-3.26 1.47H7c-1.308 0-2.537-.568-3.26-1.47a2.838 2.838 0 0 1-.644-1.626c-.032-.62.156-1.243.568-1.816C5.38 14.446 8.483 12.75 12 12.75Z\"})),book_reading_time_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M14.5 1.25a6.25 6.25 0 0 1 4.25 10.83V16a.75.75 0 0 1-.75.75H7a2.25 2.25 0 0 0 0 4.5h11a.75.75 0 0 1 0 1.5H7A3.75 3.75 0 0 1 3.25 19V7A3.75 3.75 0 0 1 7 3.25h2.92c1.141-1.23 2.77-2 4.58-2ZM7 4.75A2.25 2.25 0 0 0 4.75 7v9A3.733 3.733 0 0 1 7 15.25h10.25v-2.137A6.25 6.25 0 0 1 8.887 4.75H7Zm7.5-.5a.75.75 0 0 0-.75.75v3a.75.75 0 0 0 .415.67l2 1a.75.75 0 0 0 .67-1.34l-1.585-.794V5a.75.75 0 0 0-.75-.75Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M16 19.75a.75.75 0 0 0 0-1.5H7a.75.75 0 0 0 0 1.5h9Z\"})),book_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm6.75 17.25v-1.75h-3.5v1.75a.75.75 0 0 1-1.5 0v-3.092c0-.74.22-1.464.63-2.08l1.219-1.828a1.684 1.684 0 0 1 2.802 0l1.22 1.828c.41.616.629 1.34.629 2.08V18.5a.75.75 0 0 1-1.5 0Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11.847 12.332a.184.184 0 0 1 .306 0l1.22 1.828c.216.326.344.701.371 1.09h-3.488a2.25 2.25 0 0 1 .372-1.09l1.219-1.828Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z\"})),calendar_date_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M8.01 12.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H12a1 1 0 1 1 0-2h.01Zm4-3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Zm0 3.5a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2h.01Z\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M2.25 9v10.5A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5V9Zm18 .75H3.75v9.75c0 .69.56 1.25 1.25 1.25h14c.69 0 1.25-.56 1.25-1.25V9.75Z\",clipRule:\"evenodd\"})),calendar_date_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M15.76 1.376a.751.751 0 0 1 1.48.247l-.104.626H21a.751.751 0 0 1 .749.75h.002v16A2.75 2.75 0 0 1 19 21.75H8a2.75 2.75 0 0 1-2.736-2.468L5.251 19v-.75H3.314a1.75 1.75 0 0 1-1.688-2.216L5.278 2.8l.043-.117A.75.75 0 0 1 6 2.25h3.614l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873a.751.751 0 0 1 1.48.247l-.104.626h1.479l.145-.873Zm2.368 14.855a2.751 2.751 0 0 1-2.65 2.018H6.75V19l.006.128A1.25 1.25 0 0 0 8 20.251h11c.69 0 1.25-.56 1.25-1.25V8.538l-2.123 7.693Zm-5.152-8.812a.75.75 0 0 0-.81-.09l-2 1a.75.75 0 0 0 .67 1.341l.5-.25-.909 3.33h-.926a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-.518l1.241-4.553a.75.75 0 0 0-.248-.778Z\",clipRule:\"evenodd\"})),calendar_date_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M17 2.75V2a1 1 0 1 0-2 0v.75H9V2a1 1 0 1 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-2Zm-13.25 7h16.5v9.75c0 .69-.56 1.25-1.25 1.25H5c-.69 0-1.25-.56-1.25-1.25V9.75Z\"})),calendar_date_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M17.5 2a1 1 0 1 0-2 0v.75H13V2a1 1 0 1 0-2 0v.75H8.5V2a1 1 0 0 0-2 0v.75H5A2.75 2.75 0 0 0 2.25 5.5v14A2.75 2.75 0 0 0 5 22.25h14a2.75 2.75 0 0 0 2.75-2.75v-14A2.75 2.75 0 0 0 19 2.75h-1.5V2Zm-1.49 7a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 11 7 10.552 7 10s.457-1 1.01-1Zm1 4.5a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm3-1a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm5 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 0 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Zm-3 1a1 1 0 0 0-1-1c-.553 0-1.01.448-1.01 1s.457 1 1.01 1a1 1 0 0 0 1-1Zm-5-1a1 1 0 1 1 0 2C7.457 18 7 17.552 7 17s.457-1 1.01-1Z\",clipRule:\"evenodd\"})),caret_up_top_triangle_angle_arrow_upward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19 17.75c1.442 0 2.265-1.646 1.4-2.8l-7-9.333a1.75 1.75 0 0 0-2.8 0l-7 9.333c-.865 1.154-.042 2.8 1.4 2.8h14Z\",clipRule:\"evenodd\"})),category_book_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M7 1.25A3.75 3.75 0 0 0 3.25 5v14A3.75 3.75 0 0 0 7 22.75h13a.75.75 0 0 0 .75-.75v-8H15v-3h5.75V8a.75.75 0 0 0-.75-.75H7a2.25 2.25 0 0 1 0-4.5h13a.75.75 0 0 0 0-1.5H7Zm3.5 13.5a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Zm.75 3.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M17 4.25a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1 0-1.5h10Z\"})),category_file_documents_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M21 2.25a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.22.53l-1.28 1.28V18a.75.75 0 0 1-.75.75h-2.25V21a.75.75 0 0 1-.75.75H3a.75.75 0 0 1-.75-.75V5c0-.027.001-.053.004-.08A2.748 2.748 0 0 1 5 2.25h16ZM5 3.75a1.25 1.25 0 1 0 0 2.5h11.5a.75.75 0 0 1 .75.75v10.25h1.5V11c0-.199.08-.39.22-.53l1.28-1.28V3.75H5Zm5.25 10.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 .75-.75Zm-.75 2.25a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h3Z\",clipRule:\"evenodd\"})),category_file_documents_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M22.75 19A1.75 1.75 0 0 1 21 20.75H4A2.75 2.75 0 0 1 1.25 18V6A2.75 2.75 0 0 1 4 3.25h11.172c.73 0 1.429.29 1.944.806l2.195 2.194H21c.966 0 1.75.784 1.75 1.75v11Zm-20-1c0 .69.56 1.25 1.25 1.25h.25V8c0-.966.784-1.75 1.75-1.75h11.19l-1.134-1.134a1.25 1.25 0 0 0-.884-.366H4c-.69 0-1.25.56-1.25 1.25v12Z\"})),category_file_documents_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19 3.25c.966 0 1.75.784 1.75 1.75v1.25H21c.966 0 1.75.784 1.75 1.75v11A1.75 1.75 0 0 1 21 20.75H6A1.75 1.75 0 0 1 4.25 19v-.25H3A1.75 1.75 0 0 1 1.25 17V8c0-.966.784-1.75 1.75-1.75h8.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513H19Zm-3.586 1.5a.25.25 0 0 0-.177.073l-2.414 2.414a1.75 1.75 0 0 1-1.237.513H3a.25.25 0 0 0-.25.25v9c0 .138.112.25.25.25h1.25V11c0-.966.784-1.75 1.75-1.75h7.586a.25.25 0 0 0 .177-.073l2.414-2.414a1.75 1.75 0 0 1 1.237-.513h1.836V5a.25.25 0 0 0-.25-.25h-3.586Z\",clipRule:\"evenodd\"})),category_file_documents_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M8.586 3.25c.464 0 .91.185 1.237.513L11.81 5.75H18a2.75 2.75 0 0 1 2.75 2.75v1.75H22a.75.75 0 0 1 .686 1.055l-4 9a.75.75 0 0 1-.686.445H2a.75.75 0 0 1-.749-.75L1.25 5c0-.966.784-1.75 1.75-1.75h5.586ZM3 4.75a.25.25 0 0 0-.25.25v11.465l2.564-5.77.052-.096A.75.75 0 0 1 6 10.25h13.25V8.5c0-.69-.56-1.25-1.25-1.25H8a.75.75 0 0 1 0-1.5h1.69l-.927-.927a.25.25 0 0 0-.177-.073H3Z\",clipRule:\"evenodd\"})),clock_reading_time_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25 1.25 6.063 1.25 12 6.063 22.75 12 22.75ZM11 6a1 1 0 1 1 2 0v5.382l3.447 1.723.09.051a1 1 0 0 1-.89 1.78l-.094-.041-4-2A1 1 0 0 1 11 12V6Z\",clipRule:\"evenodd\"})),clock_reading_time_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11 2.5V1.296A10.753 10.753 0 0 0 1.296 11H2.5a1 1 0 1 1 0 2H1.296A10.753 10.753 0 0 0 11 22.704V21.5a1 1 0 1 1 2 0v1.204A10.753 10.753 0 0 0 22.704 13H21.5a1 1 0 1 1 0-2h1.204A10.753 10.753 0 0 0 13 1.296V2.5a1 1 0 1 1-2 0Zm5.707 4.793a1 1 0 0 0-1.414 0L12 10.586l-1.793-1.793-.076-.068a1 1 0 0 0-1.338 1.482L10.586 12l-.793.793a1 1 0 1 0 1.414 1.414l.793-.793.793.793.076.068a1 1 0 0 0 1.406-1.406l-.068-.076-.793-.793 3.293-3.293a1 1 0 0 0 0-1.414Z\",clipRule:\"evenodd\"})),clock_reading_time_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M15.5 1.25a7.25 7.25 0 0 1 7.25 7.25 7.222 7.222 0 0 1-2.001 4.997L20.75 16A6.75 6.75 0 0 1 14 22.75H2a.75.75 0 0 1-.75-.75v-7A6.75 6.75 0 0 1 8 8.25h.257a7.248 7.248 0 0 1 7.243-7Zm0 1.5a5.75 5.75 0 1 0 0 11.5 5.75 5.75 0 0 0 0-11.5ZM14 18.5a1 1 0 0 0-1-1H6a1 1 0 1 0 0 2h7a1 1 0 0 0 1-1Zm-5-5a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2h3Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M14.5 5.111a1 1 0 1 1 2 0v3.3l1.485.826.087.054a1 1 0 0 1-.966 1.739l-.091-.045-2-1.111A1 1 0 0 1 14.5 9V5.11Z\"})),confused_emoji_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 9a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V10a1 1 0 0 1 1-1Zm-5.95 8.51c.63-.68 2.871-2.237 6.317-1.617a.75.75 0 1 0 .266-1.476c-4.02-.723-6.758 1.075-7.683 2.073a.75.75 0 1 0 1.1 1.02Z\",clipRule:\"evenodd\"})),correct_save_check_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm4.737 8.426a1 1 0 0 0-1.474-1.352l-4.794 5.23-1.762-1.761a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.444-.031l5.5-6Z\",clipRule:\"evenodd\"})),correct_save_check_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M18.731 5.36a1 1 0 0 1 1.537 1.28l-10 12a1.001 1.001 0 0 1-1.475.067l-5-5a1 1 0 1 1 1.414-1.414l4.225 4.225 9.3-11.159Z\"})),cross_close_x_minimize_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.707 7.293a1 1 0 0 0-1.414 1.414L10.586 12l-3.293 3.293a1 1 0 1 0 1.414 1.414L12 13.414l3.293 3.293a1 1 0 0 0 1.414-1.414L13.414 12l3.293-3.293a1 1 0 0 0-1.414-1.414L12 10.586 8.707 7.293Z\",clipRule:\"evenodd\"})),cross_x_close_minimize_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M17.293 5.293a1 1 0 1 1 1.414 1.414L13.414 12l5.293 5.293.068.076a1 1 0 0 1-1.406 1.406l-.076-.068L12 13.414l-5.293 5.293a1 1 0 1 1-1.414-1.414L10.586 12 5.293 6.707a1 1 0 1 1 1.414-1.414L12 10.586l5.293-5.293Z\"})),desktop_monitor_computer_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11 17.75H4A2.75 2.75 0 0 1 1.25 15V5A2.75 2.75 0 0 1 4 2.25h16A2.75 2.75 0 0 1 22.75 5v10A2.75 2.75 0 0 1 20 17.75h-7V20h3a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h3v-2.25Zm1.01-5.25a1 1 0 1 1 0 2c-.553 0-1.01-.448-1.01-1s.457-1 1.01-1Z\",clipRule:\"evenodd\"})),dot_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Z\",clipRule:\"evenodd\"})),download_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M2 19v-4a1 1 0 1 1 2 0v4c0 .548.452 1 1 1h14a1 1 0 0 0 1-1v-4a1 1 0 1 1 2 0v4a3 3 0 0 1-3 3H5c-1.652 0-3-1.348-3-3Z\"}),(0,a.createElement)(\"path\",{d:\"M12 1.5a1 1 0 0 0-1 1V8H7a1 1 0 0 0-.707 1.707l5 5a1 1 0 0 0 1.414 0l5-5A1 1 0 0 0 17 8h-4V2.5a1 1 0 0 0-1-1Z\"})),download_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11.47 21.53a.75.75 0 0 0 1.06 0l2.5-2.5a.75.75 0 0 0-.53-1.28h-1.75V13a.75.75 0 0 0-1.5 0v4.75H9.5a.75.75 0 0 0-.53 1.28l2.5 2.5Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z\",clipRule:\"evenodd\"})),facebook_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h6.412v-7.076H9.5V11.84h1.912v-1.22C11.412 7.462 12.84 6 15.94 6c.587 0 1.601.115 2.016.23V8.8a11.904 11.904 0 0 0-1.071-.035c-1.52 0-2.108.575-2.108 2.073v1.002h3.029l-.52 2.834h-2.51v7.076H19A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Z\"})),google_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"m21.882 10.42-.103-.438h-9.485v4.036h5.667c-.588 2.81-3.318 4.289-5.549 4.289-1.623 0-3.333-.686-4.465-1.79a6.412 6.412 0 0 1-1.902-4.524c0-1.7.76-3.402 1.865-4.52 1.106-1.12 2.776-1.745 4.437-1.745 1.902 0 3.264 1.015 3.774 1.478l2.853-2.853c-.837-.74-3.136-2.603-6.72-2.603-2.764 0-5.414 1.065-7.352 3.007C2.99 6.669 2 9.434 2 12c0 2.566.937 5.193 2.79 7.12 1.98 2.056 4.784 3.13 7.671 3.13 2.627 0 5.117-1.035 6.892-2.913C21.098 17.488 22 14.93 22 12.249c0-1.129-.113-1.8-.118-1.829Z\"})),growth_increase_up_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 6a1 1 0 0 1 1 1v6a1 1 0 0 1-1.706.707L18 11.414l-4.793 4.793a1 1 0 0 1-1.414 0L8.5 12.914l-4.993 4.993a1 1 0 0 1-1.414-1.414l5.7-5.7.073-.066a1 1 0 0 1 1.34.066l3.294 3.293L16.587 10l-2.293-2.293A1 1 0 0 1 15 6h6Z\"})),hamicon_4_sloid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 3h18v3H3zm0 7.5h18v3H3v-3ZM3 18h18v3H3v-3Z\"})),hamicon_5_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M4 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1ZM4 18a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-1Zm6.5-13a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM17 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1V5Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Zm0 6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1Z\"})),hamicon_6_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0-7a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm0 14a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z\"})),happy_emoji_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7a1 1 0 0 1 1 1v1.5a1 1 0 1 1-2 0V8a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1v1.5a1 1 0 0 1-2 0V8a1 1 0 0 1 1-1Zm-8 5.575a.675.675 0 0 0-.675.675 5.175 5.175 0 1 0 10.35 0 .675.675 0 0 0-.675-.675h-9Z\",clipRule:\"evenodd\"})),heart_love_wishlist_favourite_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M20.433 5.288a5.797 5.797 0 0 0-8.198 0L12 5.523l-.235-.235a5.797 5.797 0 0 0-8.198 0 6.428 6.428 0 0 0 0 9.09l7.52 7.52a1.292 1.292 0 0 0 1.826 0l7.519-7.52a6.428 6.428 0 0 0 0-9.09Zm-4.169 1.285a1 1 0 1 0 0 2c.299 0 .595.114.822.341.323.323.46.76.41 1.183a1 1 0 0 0 1.986.234A3.43 3.43 0 0 0 18.5 7.5a3.156 3.156 0 0 0-2.236-.927Z\",clipRule:\"evenodd\"})),hemicon_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z\"})),hemicon_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z\"})),hemicon_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h11.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 7a1 1 0 0 1 1-1h7.5a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Z\"})),hidden_hide_invisible_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19.87 3.07a.75.75 0 0 1 1.06 1.061l-16.799 16.8a.75.75 0 0 1-1.06-1.06l1.857-1.859c-1.397-1.145-2.487-2.454-3.25-3.516a20.19 20.19 0 0 1-1.255-1.985 9.52 9.52 0 0 1-.067-.127l-.025-.049a.758.758 0 0 1 0-.673l.015-.03.016-.03.016-.03.007-.014a18.243 18.243 0 0 1 .72-1.217A20.435 20.435 0 0 1 3.33 7.486c1.938-2.067 4.873-4.237 8.672-4.238 2.269 0 4.231.778 5.852 1.84L19.87 3.07ZM8.874 14.067A3.73 3.73 0 0 1 8.25 12 3.75 3.75 0 0 1 12 8.25a3.73 3.73 0 0 1 2.066.624l-5.192 5.192Zm11.657-6.405c.205.008.397.1.533.253a20.672 20.672 0 0 1 1.933 2.583 17.693 17.693 0 0 1 .661 1.138l.01.019a.77.77 0 0 1 .004.68l-.016.03-.032.06-.007.014a18.22 18.22 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.224 2.855c-1.938 2.067-4.872 4.237-8.672 4.237a9.97 9.97 0 0 1-3.243-.545.752.752 0 0 1-.277-1.25l11.5-11.082.057-.05a.753.753 0 0 1 .493-.16Z\",clipRule:\"evenodd\"})),home_house_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21.75 19A2.75 2.75 0 0 1 19 21.75h-3.5A1.75 1.75 0 0 1 13.75 20v-5a.25.25 0 0 0-.25-.25h-3a.25.25 0 0 0-.25.25v5a1.75 1.75 0 0 1-1.75 1.75H5A2.75 2.75 0 0 1 2.25 19v-8.1c0-.786.336-1.534.923-2.056l7-6.223a2.75 2.75 0 0 1 3.654 0l7 6.223a2.75 2.75 0 0 1 .923 2.056V19Z\"})),hourglass_timer_time_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M20 1.25a.75.75 0 0 1 0 1.5h-1.25v4.18c0 .92-.46 1.778-1.225 2.288L13.352 12l4.173 2.782a2.75 2.75 0 0 1 1.225 2.288v4.18H20a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1 0-1.5h1.25v-4.18c0-.92.46-1.778 1.225-2.288L10.648 12 6.475 9.218A2.75 2.75 0 0 1 5.25 6.93V2.75H4a.75.75 0 0 1 0-1.5h16ZM13.75 16.5a.75.75 0 0 0-.75-.75h-2a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 .75-.75Zm.75 2.25a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1 0-1.5h5Z\",clipRule:\"evenodd\"})),instagram_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M9 12a3 3 0 1 1 6 0 3 3 0 0 1-6 0Z\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm12.5 5.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM12 7a5 5 0 1 0 0 10 5 5 0 0 0 0-10Z\",clipRule:\"evenodd\"})),laptop_computer_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M2.75 15.25V6A2.75 2.75 0 0 1 5.5 3.25h13A2.75 2.75 0 0 1 21.25 6v9.25H2.75ZM13.5 6a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3ZM1.25 18v-1.25h21.5V18A2.75 2.75 0 0 1 20 20.75H4A2.75 2.75 0 0 1 1.25 18Z\",clipRule:\"evenodd\"})),left_align_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18ZM11 20a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h8Zm10-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18ZM11 8a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h8Z\"})),left_triangle_angle_arrow_backward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M17.75 19c0 1.442-1.646 2.265-2.8 1.4l-9.333-7a1.75 1.75 0 0 1 0-2.8l9.333-7c1.154-.865 2.8-.042 2.8 1.4v14Z\"})),linkedin_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5 2.25A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5Zm11.15 16.792h2.893v-5.945c0-2.515-1.425-3.731-3.417-3.731-1.992 0-2.83 1.552-2.83 1.552V9.652h-2.79v9.389h2.79v-4.929c0-1.32.607-2.106 1.77-2.106 1.07 0 1.584.755 1.584 2.106v4.929ZM4.96 6.69c0 .957.77 1.732 1.72 1.732s1.719-.775 1.719-1.732-.77-1.733-1.72-1.733S4.96 5.733 4.96 6.69Zm3.188 12.35H5.24V9.654h2.908v9.389Z\",clipRule:\"evenodd\"})),link_chains_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M6.264 9.281a1 1 0 0 1 1.415 1.415L5.165 13.21a3.977 3.977 0 1 0 5.625 5.625l2.514-2.514a1 1 0 0 1 1.415 1.414l-2.515 2.514a5.977 5.977 0 1 1-8.453-8.453L6.264 9.28Zm5.532-5.53a5.977 5.977 0 1 1 8.453 8.453l-2.514 2.515a1 1 0 0 1-1.414-1.415l2.514-2.514a3.977 3.977 0 1 0-5.625-5.625l-2.514 2.514a1.001 1.001 0 0 1-1.415-1.414l2.515-2.514Z\"}),(0,a.createElement)(\"path\",{d:\"M13.793 8.793a1 1 0 1 1 1.414 1.414l-5 5a1 1 0 0 1-1.414-1.414l5-5Z\"})),location_gps_map_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.625 22.65 12 22l.375.65a.75.75 0 0 1-.75 0Z\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11.625 22.65 12 22c.375.65.376.649.376.649l.002-.001.006-.004.02-.012.034-.02.04-.024a19.765 19.765 0 0 0 1.212-.814 22.44 22.44 0 0 0 2.847-2.456c2.058-2.11 4.213-5.239 4.213-9.113 0-4.928-3.9-8.955-8.75-8.955s-8.75 4.027-8.75 8.955c0 3.874 2.155 7.002 4.213 9.113a22.436 22.436 0 0 0 3.788 3.101 12.961 12.961 0 0 0 .344.213l.021.012.006.004.003.001ZM12 6.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Z\",clipRule:\"evenodd\"})),long_arrow_up_top_increase_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11 21V10H6a1 1 0 0 1-.707-1.707l6-6 .076-.068a1 1 0 0 1 1.338.068l6 6A1 1 0 0 1 18 10h-5v11a1 1 0 1 1-2 0Z\"})),mail_email_messege_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M4 3.25A2.75 2.75 0 0 0 1.25 6v12A2.75 2.75 0 0 0 4 20.75h16A2.75 2.75 0 0 0 22.75 18V6A2.75 2.75 0 0 0 20 3.25H4ZM6.6 7.2a1 1 0 1 0-1.2 1.6l4.8 3.6a3 3 0 0 0 3.6 0l4.8-3.6a1 1 0 0 0-1.2-1.6l-4.8 3.6a1 1 0 0 1-1.2 0L6.6 7.2Z\",clipRule:\"evenodd\"})),media_document_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M2.25 19V5A2.75 2.75 0 0 1 5 2.25h10.172c.73 0 1.429.29 1.944.806l3.828 3.828a2.75 2.75 0 0 1 .806 1.944V19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19ZM15 15.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2-7a1 1 0 0 0-1-1H8a1 1 0 0 0 0 2h4a1 1 0 0 0 1-1Zm4 3.5a1 1 0 0 0-1-1H8a1 1 0 1 0 0 2h8a1 1 0 0 0 1-1Z\"})),messege_comment_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M22.75 16A2.75 2.75 0 0 1 20 18.75H7.264l-4.795 3.836A.75.75 0 0 1 1.25 22V7A2.75 2.75 0 0 1 4 4.25h16A2.75 2.75 0 0 1 22.75 7v9ZM14 9.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z\",clipRule:\"evenodd\"})),messege_comment_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9ZM14 8.75a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h4a1 1 0 0 0 1-1Zm1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z\",clipRule:\"evenodd\"})),messege_comment_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M4 3.25A2.75 2.75 0 0 0 1.25 6v9A2.75 2.75 0 0 0 4 17.75h3.75V21a.75.75 0 0 0 1.219.586l4.794-3.836H20A2.75 2.75 0 0 0 22.75 15V6A2.75 2.75 0 0 0 20 3.25H4ZM9 10a1 1 0 0 0-2 0v1a1 1 0 1 0 2 0v-1Zm3-1a1 1 0 0 1 1 1v1a1 1 0 1 1-2 0v-1a1 1 0 0 1 1-1Zm5 1a1 1 0 1 0-2 0v1a1 1 0 1 0 2 0v-1Z\",clipRule:\"evenodd\"})),messege_comment_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M22.75 15A2.75 2.75 0 0 1 20 17.75h-6.236l-4.795 3.836A.75.75 0 0 1 7.75 21v-3.25H4A2.75 2.75 0 0 1 1.25 15V6A2.75 2.75 0 0 1 4 3.25h16A2.75 2.75 0 0 1 22.75 6v9Z\"})),messege_comment_5_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M21.75 12A9.75 9.75 0 0 1 12 21.75H3a.75.75 0 0 1-.75-.75v-9c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-1 2.5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2h6Z\",clipRule:\"evenodd\"})),messege_comment_6_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M17 3.25A5.75 5.75 0 0 1 22.75 9v7a.75.75 0 0 1-.75.75h-5.31a4.75 4.75 0 0 1-4.69 4H2a.75.75 0 0 1-.75-.75v-6a4.751 4.751 0 0 1 4-4.691V9A5.75 5.75 0 0 1 11 3.25h6ZM5.25 10.838A3.25 3.25 0 0 0 2.75 14v5.25H12a3.25 3.25 0 0 0 3.162-2.5H11A5.75 5.75 0 0 1 5.25 11v-.162ZM11 10.75a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2h-6Zm0-3.5a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z\",clipRule:\"evenodd\"})),messege_comment_7_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M22.75 11.5c0 5.218-4.932 9.25-10.75 9.25-.921 0-1.817-.101-2.672-.29l-2.956 1.691A.75.75 0 0 1 5.25 21.5v-2.8c-2.411-1.675-4-4.258-4-7.2 0-5.218 4.932-9.25 10.75-9.25s10.75 4.032 10.75 9.25ZM16 10.25a1 1 0 0 0-1-1H9a1 1 0 1 0 0 2h6a1 1 0 0 0 1-1Zm-2 2.5a1 1 0 1 1 0 2h-4a1 1 0 1 1 0-2h4Z\",clipRule:\"evenodd\"})),messege_comment_8_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M14.5 3.25c4.542 0 8.25 3.613 8.25 8.102 0 2.519-1.172 4.764-3 6.247V20a.75.75 0 0 1-1.163.626l-2.13-1.404a8.41 8.41 0 0 1-1.957.231 8.323 8.323 0 0 1-4.61-1.382 7.867 7.867 0 0 1-3.075-.06l-1.82 1.127A.75.75 0 0 1 3.85 18.5v-1.87c-1.576-1.222-2.6-3.07-2.6-5.157C1.25 7.7 4.557 4.75 8.5 4.75c.319 0 .634.02.942.057a.755.755 0 0 1 .15.033A8.318 8.318 0 0 1 14.5 3.25ZM8.08 6.265c-3.03.195-5.33 2.505-5.33 5.208 0 1.68.878 3.196 2.276 4.162a.75.75 0 0 1 .324.617v.903l.943-.583a.75.75 0 0 1 .587-.086c.45.12.925.188 1.416.203A7.98 7.98 0 0 1 8.08 6.265Z\",clipRule:\"evenodd\"})),messenger_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M1.25 11.677C1.25 5.687 5.945 1.25 12 1.25s10.75 4.44 10.75 10.43c0 5.99-4.695 10.427-10.75 10.427a11.75 11.75 0 0 1-3.112-.414.864.864 0 0 0-.575.043l-2.134.94a.86.86 0 0 1-1.207-.76l-.059-1.913a.85.85 0 0 0-.288-.613c-2.09-1.87-3.375-4.58-3.375-7.713Zm7.452-1.959-3.157 5.01c-.304.48.287 1.02.739.677l3.391-2.575a.644.644 0 0 1 .777-.003l2.513 1.884a1.612 1.612 0 0 0 2.332-.43l3.161-5.006c.301-.481-.29-1.024-.742-.68l-3.391 2.574a.644.644 0 0 1-.777.003l-2.513-1.884a1.613 1.613 0 0 0-2.333.43Z\",clipRule:\"evenodd\"})),microsoft_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.25 2.25v9h-9V5A2.75 2.75 0 0 1 5 2.25h6.25Zm1.5 0v9h9V5A2.75 2.75 0 0 0 19 2.25h-6.25Zm9 10.5h-9v9H19A2.75 2.75 0 0 0 21.75 19v-6.25Zm-10.5 9v-9h-9V19A2.75 2.75 0 0 0 5 21.75h6.25Z\"})),middle_align_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm-5 18a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2h8Zm5-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm-5-6a1 1 0 1 1 0 2H8a1 1 0 0 1 0-2h8Z\"})),mobile_smartphone_phone_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M17 22.75A2.75 2.75 0 0 0 19.75 20V4A2.75 2.75 0 0 0 17 1.25H7A2.75 2.75 0 0 0 4.25 4v16A2.75 2.75 0 0 0 7 22.75h10ZM13.5 4a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2h3Z\",clipRule:\"evenodd\"})),pause_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M2.25 5A2.75 2.75 0 0 1 5 2.25h2.5A2.75 2.75 0 0 1 10.25 5v14a2.75 2.75 0 0 1-2.75 2.75H5A2.75 2.75 0 0 1 2.25 19V5Zm11.5 0a2.75 2.75 0 0 1 2.75-2.75H19A2.75 2.75 0 0 1 21.75 5v14A2.75 2.75 0 0 1 19 21.75h-2.5A2.75 2.75 0 0 1 13.75 19V5Z\",clipRule:\"evenodd\"})),pinterest_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 4.554 2.833 8.448 6.832 10.014-.094-.85-.178-2.159.038-3.087.195-.84 1.26-5.344 1.26-5.344s-.321-.644-.321-1.596c0-1.495.866-2.61 1.945-2.61.917 0 1.36.688 1.36 1.514 0 .922-.587 2.301-.89 3.579-.254 1.07.536 1.943 1.592 1.943 1.91 0 3.379-2.015 3.379-4.923 0-2.574-1.85-4.374-4.49-4.374-3.06 0-4.855 2.295-4.855 4.665 0 .925.356 1.915.8 2.454.088.106.101.2.075.308-.082.34-.263 1.07-.298 1.22-.047.196-.156.238-.36.143-1.343-.625-2.182-2.588-2.182-4.165 0-3.39 2.464-6.505 7.103-6.505 3.729 0 6.627 2.657 6.627 6.209 0 3.705-2.336 6.686-5.578 6.686-1.09 0-2.114-.566-2.464-1.234 0 0-.54 2.053-.67 2.555-.243.934-.898 2.105-1.336 2.819A10.76 10.76 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Z\"})),play_media_video_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 22.75c5.936 0 10.75-4.813 10.75-10.75S17.936 1.25 12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75ZM10.416 7.376A.75.75 0 0 0 9.25 8v8a.75.75 0 0 0 1.166.624l6-4a.75.75 0 0 0 0-1.248l-6-4Z\",clipRule:\"evenodd\"})),price_tag_label_category_sale_discount_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M21.444 13.616a2.75 2.75 0 0 0 .806-1.944V3.5a1.75 1.75 0 0 0-1.75-1.75h-8.172c-.73 0-1.429.29-1.945.806l-8 8a2.75 2.75 0 0 0 0 3.888l7.172 7.172a2.75 2.75 0 0 0 3.889 0l8-8ZM8.707 12.293a1 1 0 1 0-1.414 1.414l3 3 .076.068a1 1 0 0 0 1.406-1.406l-.068-.076-3-3ZM18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\",clipRule:\"evenodd\"})),price_tag_offer_sale_coupon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M18.796 6.963c-.367 1.048-1.172 1.993-2.432 2.693a.75.75 0 1 1-.728-1.311c.99-.55 1.517-1.229 1.744-1.878a2.583 2.583 0 0 0-.1-1.941c-.55-1.208-1.999-2.11-3.853-1.618-2.791.74-6.15 1.333-9.695-.024a.75.75 0 1 1 .536-1.401c3.09 1.183 6.062.695 8.774-.025 2.566-.68 4.75.577 5.603 2.445.425.933.517 2.017.151 3.06Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19.74 7.294c-.46 1.313-1.45 2.436-2.89 3.236a1.75 1.75 0 1 1-1.7-3.06c.81-.45 1.152-.95 1.286-1.333a1.59 1.59 0 0 0-.066-1.197 1.835 1.835 0 0 0-.101-.19h-4.44c-.73 0-1.43.29-1.945.805l-6.5 6.5a2.75 2.75 0 0 0 0 3.89l6.171 6.171a2.75 2.75 0 0 0 3.89 0l6.5-6.5a2.75 2.75 0 0 0 .805-1.944V6.5c0-.598-.3-1.127-.759-1.442.083.73.01 1.49-.252 2.236Zm-8.71 5.176a.75.75 0 0 0-1.06 1.06l2 2a.75.75 0 0 0 1.06-1.06l-2-2Zm-2.5 1.5a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06-1.06l-3-3Z\",clipRule:\"evenodd\"})),reddit_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M13.875 4.75h2.354a2.751 2.751 0 1 0 0-1.5h-2.354A2.75 2.75 0 0 0 11.125 6v2.028c-1.76.115-3.39.571-4.771 1.281a2.875 2.875 0 1 0-3.964 4.109A5.777 5.777 0 0 0 2 15.5C2 19.642 6.477 23 12 23s10-3.358 10-7.5c0-.722-.136-1.421-.39-2.082a2.875 2.875 0 1 0-3.963-4.109C16.2 8.566 14.48 8.1 12.624 8.014V6c0-.69.56-1.25 1.25-1.25ZM9 14.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm0 2.97a.75.75 0 0 0-1.06 1.06c.954.955 2.57 1.345 4.03 1.345 1.46 0 3.075-.39 4.03-1.345a.75.75 0 0 0-1.06-1.06c-.546.545-1.68.905-2.97.905-1.29 0-2.424-.36-2.97-.905ZM16.5 13a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\",clipRule:\"evenodd\"})),refresh_reset_cycle_loop_infinity_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M3 21v-5a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H5.756A7.977 7.977 0 0 0 12 20a8 8 0 0 0 8-8 1 1 0 1 1 2 0c0 5.523-4.477 10-10 10a9.967 9.967 0 0 1-7-2.863V21a1 1 0 1 1-2 0Zm-1-9C2 6.477 6.477 2 12 2a9.966 9.966 0 0 1 7 2.86V3a1 1 0 1 1 2 0v5a1 1 0 0 1-1 1h-5a1 1 0 1 1 0-2h3.245A8 8 0 0 0 4 12a1 1 0 1 1-2 0Z\"})),restriction_no_stop_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM6.383 19.03A9 9 0 0 0 19.03 6.383L6.383 19.03ZM12 3a9 9 0 0 0-7.031 14.616L17.616 4.97A8.96 8.96 0 0 0 12 3Z\",clipRule:\"evenodd\"})),right_align_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21 2a1 1 0 1 1 0 2H3a1 1 0 0 1 0-2h18Zm0 18a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Zm0-6a1 1 0 1 1 0 2H3a1 1 0 1 1 0-2h18Zm0-6a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2h8Z\"})),right_triangle_angle_play_arrow_forward_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M6.25 5c0-1.442 1.646-2.265 2.8-1.4l9.334 7c.933.7.933 2.1 0 2.8l-9.334 7c-1.154.865-2.8.042-2.8-1.4V5Z\"})),search_magnify_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M16.618 18.032a9 9 0 1 1 1.414-1.414l3.675 3.675a1 1 0 0 1-1.414 1.414l-3.675-3.675ZM4 11a7 7 0 1 1 12.042 4.856 1.006 1.006 0 0 0-.186.186A7 7 0 0 1 4 11Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M10 6.5a1 1 0 0 1 1-1 5.5 5.5 0 0 1 5.5 5.5 1 1 0 1 1-2 0A3.5 3.5 0 0 0 11 7.5a1 1 0 0 1-1-1Z\",clipRule:\"evenodd\"})),settings_tool_function_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M15.183 2.612a1.75 1.75 0 0 0-1.706-1.362h-2.953a1.75 1.75 0 0 0-1.706 1.362l-.355 1.562a1.25 1.25 0 0 1-1.587.918L5.25 4.59a1.75 1.75 0 0 0-2.021.782L1.772 7.837a1.75 1.75 0 0 0 .338 2.193l1.16 1.04a1.25 1.25 0 0 1 0 1.862L2.11 13.97a1.75 1.75 0 0 0-.337 2.193l1.455 2.464a1.751 1.751 0 0 0 2.021.783l1.628-.5a1.25 1.25 0 0 1 1.586.917l.355 1.56a1.75 1.75 0 0 0 1.707 1.363h2.952a1.75 1.75 0 0 0 1.706-1.362l.355-1.56a1.25 1.25 0 0 1 1.586-.919l1.628.501a1.75 1.75 0 0 0 2.02-.783l1.457-2.464a1.75 1.75 0 0 0-.34-2.193l-1.157-1.038a1.25 1.25 0 0 1 0-1.863l1.159-1.039a1.75 1.75 0 0 0 .338-2.193l-1.456-2.464a1.75 1.75 0 0 0-2.02-.782l-1.629.5a1.25 1.25 0 0 1-1.586-.917l-.355-1.562ZM15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z\",clipRule:\"evenodd\"})),share_social_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"m9.075 9.42 5.865-2.933a3.45 3.45 0 1 1 1.005 1.734l-5.976 2.988a3.915 3.915 0 0 1 0 1.583l5.976 2.987a3.45 3.45 0 1 1-1.005 1.734L9.074 14.58a3.9 3.9 0 1 1 0-5.16Z\",clipRule:\"evenodd\"})),shopping_cart_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M9.75 19.25a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm9.75 0a1 1 0 1 0-2 0 1 1 0 0 0 2 0Zm1.5 0a2.5 2.5 0 1 1-4.79-1h-5.17a2.5 2.5 0 1 1-4.33-.442 1.745 1.745 0 0 1-.572-1.069L4.376 3.966a.25.25 0 0 0-.247-.216H2a.75.75 0 0 1 0-1.5h2.129a1.75 1.75 0 0 1 1.733 1.51l.068.49h14.874a1.75 1.75 0 0 1 1.722 2.06l-1.152 6.403a1.75 1.75 0 0 1-1.572 1.434l-12.36 1.067.182 1.32a.25.25 0 0 0 .247.216H18.5a2.5 2.5 0 0 1 2.5 2.5Z\"})),skype_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M7.5 1.25a6.25 6.25 0 0 0-5.197 9.723 9.75 9.75 0 0 0 10.724 10.724 6.25 6.25 0 0 0 8.67-8.67A9.75 9.75 0 0 0 10.973 2.303 6.224 6.224 0 0 0 7.5 1.25Zm4.5 6C9.8 7.25 8.25 8.4 8.25 10c0 1.015.647 1.627 1.337 1.991.644.34 1.468.546 2.178.723l.053.014c.778.194 1.429.361 1.894.607.435.23.538.43.538.665 0 .4-.45 1.25-2.25 1.25S9.75 14.4 9.75 14a.75.75 0 0 0-1.5 0c0 1.6 1.55 2.75 3.75 2.75s3.75-1.15 3.75-2.75c0-1.015-.647-1.627-1.337-1.991-.644-.34-1.468-.546-2.178-.723l-.053-.014c-.778-.194-1.429-.361-1.894-.607-.435-.23-.538-.43-.538-.665 0-.4.45-1.25 2.25-1.25s2.25.85 2.25 1.25a.75.75 0 0 0 1.5 0c0-1.6-1.55-2.75-3.75-2.75Z\",clipRule:\"evenodd\"})),smile_emoji_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM8.5 7.5a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm7 0a1 1 0 0 1 1 1V10a1 1 0 1 1-2 0V8.5a1 1 0 0 1 1-1Zm-7.556 6.275a.75.75 0 1 0-1.43.45 5.752 5.752 0 0 0 10.973 0 .75.75 0 1 0-1.431-.45 4.252 4.252 0 0 1-8.112 0Z\",clipRule:\"evenodd\"})),social_community_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.75a3.384 3.384 0 0 1 3.238 2.408C18.858 5.46 21.4 8.895 21.4 13c0 .506-.039 1.002-.113 1.486a3.388 3.388 0 0 1 1.463 2.791 3.386 3.386 0 0 1-4.785 3.085A9.3 9.3 0 0 1 12 22.5a9.302 9.302 0 0 1-5.965-2.138 3.386 3.386 0 0 1-4.785-3.085c0-1.156.579-2.179 1.463-2.79A9.77 9.77 0 0 1 2.6 13c0-4.105 2.543-7.54 6.162-8.841A3.384 3.384 0 0 1 12 1.75ZM19.4 13c0-2.998-1.707-5.533-4.22-6.704A3.383 3.383 0 0 1 12 8.527a3.383 3.383 0 0 1-3.18-2.231C6.307 7.467 4.6 10.002 4.6 13c0 .301.017.598.05.889a3.385 3.385 0 0 1 3.363 3.388c0 .63-.172 1.221-.471 1.727A7.322 7.322 0 0 0 12 20.5a7.321 7.321 0 0 0 4.458-1.495 3.384 3.384 0 0 1-.47-1.728 3.385 3.385 0 0 1 3.361-3.388c.034-.291.05-.588.05-.889Z\",clipRule:\"evenodd\"})),square_rounded_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M21.75 19A2.75 2.75 0 0 1 19 21.75H5A2.75 2.75 0 0 1 2.25 19V5A2.75 2.75 0 0 1 5 2.25h14A2.75 2.75 0 0 1 21.75 5v14Z\"})),star_rating_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M10.3 2.793c.67-1.443 2.73-1.443 3.4 0l2.136 4.602a.294.294 0 0 0 .232.166l5.068.596c1.578.186 2.232 2.136 1.05 3.222l-3.748 3.444a.28.28 0 0 0-.087.261l.995 4.975c.315 1.574-1.369 2.76-2.75 1.99l-4.45-2.474a.3.3 0 0 0-.291 0l-4.45 2.475c-1.382.768-3.065-.417-2.75-1.991l.995-4.975a.28.28 0 0 0-.087-.26l-3.748-3.445c-1.182-1.086-.529-3.036 1.05-3.222l5.067-.596a.293.293 0 0 0 .232-.166L10.3 2.793Z\"})),stopwatch_reading_time_timer_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M15 1.5a1 1 0 0 0-1-1h-4a1 1 0 1 0 0 2h1v.8c-4.915.502-8.75 4.653-8.75 9.7 0 5.385 4.365 9.75 9.75 9.75s9.75-4.365 9.75-9.75c0-5.047-3.835-9.198-8.75-9.7v-.8h1a1 1 0 0 0 1-1Zm-4 6a1 1 0 1 1 2 0v4.985l3.081 2.202.08.063a1 1 0 0 1-1.156 1.62l-.086-.056-3.5-2.5A1 1 0 0 1 11 13V7.5Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M18.293 3.293a1 1 0 0 1 1.414 0l2 2 .068.076a1 1 0 0 1-1.406 1.406l-.076-.068-2-2a1 1 0 0 1 0-1.414Z\"})),tablet_ipad_pad_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M18 22.75A2.75 2.75 0 0 0 20.75 20V4A2.75 2.75 0 0 0 18 1.25H6A2.75 2.75 0 0 0 3.25 4v16A2.75 2.75 0 0 0 6 22.75h12ZM12.01 4a1 1 0 1 1 0 2C11.457 6 11 5.552 11 5s.457-1 1.01-1Z\",clipRule:\"evenodd\"})),tag_bookmark_save_favourite_mark_discount_solid_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M20.75 22a.75.75 0 0 1-1.2.6l-6.8-5.1a1.25 1.25 0 0 0-1.415-.059l-.085.059-6.8 5.1a.75.75 0 0 1-1.2-.6V4A2.75 2.75 0 0 1 6 1.25h12A2.75 2.75 0 0 1 20.75 4v18Z\"})),tiktok_logo_icon_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25Zm2.364 5.25a1 1 0 1 0-2 0v7.792a2.195 2.195 0 0 1-2.182 2.208A2.195 2.195 0 0 1 8 14.292c0-1.228.985-2.209 2.182-2.209a1 1 0 1 0 0-2C7.864 10.083 6 11.975 6 14.292c0 2.316 1.864 4.208 4.182 4.208 2.317 0 4.182-1.892 4.182-4.208V9.934a4.74 4.74 0 0 0 2.636.774 1 1 0 1 0 0-2c-1.713 0-2.636-1.377-2.636-2.208Z\",clipRule:\"evenodd\"})),tiktok_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19 21.75A2.75 2.75 0 0 0 21.75 19V5A2.75 2.75 0 0 0 19 2.25H5A2.75 2.75 0 0 0 2.25 5v14A2.75 2.75 0 0 0 5 21.75h14ZM6 14.292c0-2.316 1.864-4.209 4.182-4.209a1 1 0 0 1 0 2c-1.197 0-2.182.982-2.182 2.209s.985 2.208 2.182 2.208 2.181-.98 2.181-2.208V6.5a1 1 0 0 1 2 0c0 .83.924 2.208 2.637 2.208a1 1 0 0 1 0 2 4.738 4.738 0 0 1-2.637-.776v4.36c0 2.316-1.864 4.208-4.181 4.208C7.864 18.5 6 16.608 6 14.292Z\",clipRule:\"evenodd\"})),triangle_rounded_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632Z\",clipRule:\"evenodd\"})),triangle_shape_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 2.25a.75.75 0 0 1 .646.37l10 17A.75.75 0 0 1 22 20.75H2a.75.75 0 0 1-.646-1.13l10-17A.75.75 0 0 1 12 2.25Z\",clipRule:\"evenodd\"})),twitter_x_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M20.292 2.293a1.001 1.001 0 0 1 1.415 1.414l-7.125 7.124 7.026 9.73A.751.751 0 0 1 21 21.75h-5a.751.751 0 0 1-.608-.311l-4.789-6.63-6.896 6.897a1 1 0 0 1-1.414-1.415l7.124-7.125L2.392 3.44A.751.751 0 0 1 3 2.25h5l.09.005a.751.751 0 0 1 .518.306l4.787 6.628 6.897-6.896Z\",clipRule:\"evenodd\"})),upload_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M11.47 12.47a.75.75 0 0 1 1.06 0l2.5 2.5a.75.75 0 0 1-.53 1.28h-1.75V21a.75.75 0 0 1-1.5 0v-4.75H9.5a.75.75 0 0 1-.53-1.28l2.5-2.5Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M5.5 9.236a.865.865 0 0 0 .107-.04 3.548 3.548 0 0 1 2.123-.062 1 1 0 0 0 .54-1.925 5.583 5.583 0 0 0-1.467-.21 6 6 0 0 1 10.803 5.144 1 1 0 1 0 1.869.714c.163-.427.29-.872.38-1.33A3.081 3.081 0 0 1 21 13.936c0 1.437-.966 2.632-2.253 2.968a1 1 0 1 0 .506 1.935C21.417 18.274 23 16.286 23 13.936a5.067 5.067 0 0 0-3.032-4.656 8 8 0 0 0-15.58-1.745c-1.528.723-2.734 2.128-3.193 3.924-.806 3.156.967 6.46 4.068 7.332.189.053.378.096.568.128a1 1 0 1 0 .34-1.97 3.61 3.61 0 0 1-.367-.083c-1.983-.558-3.227-2.735-2.671-4.912.339-1.328 1.255-2.296 2.366-2.718Z\",clipRule:\"evenodd\"})),view_count_show_visible_eye_open_1_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"m23.67 11.663-.015-.03-.032-.06-.007-.013a18.339 18.339 0 0 0-.72-1.217 20.43 20.43 0 0 0-2.224-2.856C18.733 5.42 15.799 3.25 12 3.25c-3.8 0-6.734 2.17-8.672 4.237a20.43 20.43 0 0 0-2.796 3.801 11.69 11.69 0 0 0-.149.272l-.007.014-.032.06-.015.03a.76.76 0 0 0 0 .673l.015.03.032.06.007.013a18.262 18.262 0 0 0 .72 1.217 20.432 20.432 0 0 0 2.225 2.856C5.266 18.58 8.2 20.75 12 20.75c3.8 0 6.733-2.17 8.672-4.237a20.433 20.433 0 0 0 2.795-3.801c.065-.115.115-.208.149-.272l.007-.013.02-.037.012-.024.015-.03a.756.756 0 0 0 0-.673ZM12 5.75a4.25 4.25 0 1 1 0 8.5 4.25 4.25 0 0 1 0-8.5Z\",clipRule:\"evenodd\"})),view_count_show_visible_eye_open_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"m.33 11.664.015-.03.032-.06.007-.014a18.263 18.263 0 0 1 .72-1.217 20.43 20.43 0 0 1 2.224-2.856C5.268 5.42 8.201 3.25 12 3.25c3.8 0 6.734 2.17 8.672 4.237a20.425 20.425 0 0 1 2.796 3.801c.065.115.115.208.149.272l.007.014.032.06.014.03a.75.75 0 0 1 .001.672l-.015.03a5.739 5.739 0 0 1-.032.06l-.007.014a18.252 18.252 0 0 1-.72 1.217 20.427 20.427 0 0 1-2.225 2.856C18.734 18.58 15.8 20.75 12 20.75c-3.8 0-6.733-2.17-8.671-4.237a20.432 20.432 0 0 1-2.796-3.801 12.06 12.06 0 0 1-.149-.272l-.007-.013-.032-.06-.015-.03a.756.756 0 0 1 0-.673ZM15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z\",clipRule:\"evenodd\"})),view_count_show_visible_eye_open_3_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M23.616 11.573C20.503 7.077 16.29 4.75 12 4.75c-4.291 0-8.504 2.327-11.617 6.823a.75.75 0 0 0 0 .854C3.496 16.922 7.71 19.25 12 19.25c4.29 0 8.503-2.328 11.616-6.823a.75.75 0 0 0 0-.854ZM17.25 12a5.25 5.25 0 1 0-10.5 0 5.25 5.25 0 0 0 10.5 0Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{d:\"M14.25 12A2.25 2.25 0 0 0 12 9.75a.75.75 0 0 1 0-1.5A3.75 3.75 0 0 1 15.75 12a.75.75 0 0 1-1.5 0Z\"})),view_count_show_visible_eye_open_4_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M14.25 10a1.75 1.75 0 0 0 3.366.673l.049-.098a.751.751 0 0 1 1.318.06 7.75 7.75 0 1 1-3.62-3.62.75.75 0 0 1-.036 1.369A1.751 1.751 0 0 0 14.25 10Z\"}),(0,a.createElement)(\"path\",{d:\"M12 2c4.335 0 8.706 2.263 10.89 6.546a1 1 0 1 1-1.78.908C19.301 5.911 15.664 4 12 4 8.335 4 4.698 5.911 2.89 9.454a1 1 0 0 1-1.78-.908C3.293 4.263 7.664 2 12 2Z\"})),view_count_show_visible_eye_open_5_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.75 12H12V7.25A4.75 4.75 0 1 0 16.75 12Z\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"m23.167 12.083.727.364c.141-.281.14-.613 0-.895l-.002-.003-.003-.007-.011-.022a10.615 10.615 0 0 0-.192-.354 20.675 20.675 0 0 0-2.831-3.85C18.895 5.226 15.899 3 12 3 8.1 3 5.104 5.226 3.145 7.316a20.674 20.674 0 0 0-2.831 3.85 12.375 12.375 0 0 0-.192.354l-.011.022-.003.007-.002.002s0 .002.894.449l-.894-.447a1 1 0 0 0 0 .894l.002.004.003.007.011.022a8.267 8.267 0 0 0 .192.354 20.67 20.67 0 0 0 2.831 3.85C5.105 18.774 8.1 21 12 21c3.9 0 6.895-2.226 8.855-4.316a20.672 20.672 0 0 0 2.831-3.85 11.81 11.81 0 0 0 .175-.322l.017-.032.011-.022.003-.007.002-.002s0-.002-.727-.366Zm-.096-.119.823-.412-.823.412ZM12 5a7 7 0 1 0 0 14 7 7 0 0 0 0-14Z\",clipRule:\"evenodd\"})),warning_circle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12S6.063 22.75 12 22.75 22.75 17.937 22.75 12 17.937 1.25 12 1.25ZM13 8a1 1 0 1 0-2 0v4a1 1 0 1 0 2 0V8Zm-1 6.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z\",clipRule:\"evenodd\"})),warning_triangle_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M9.623 3.632c1.054-1.842 3.7-1.842 4.754 0l8.006 13.997c1.046 1.828-.263 4.121-2.377 4.121H3.994c-2.113 0-3.422-2.293-2.377-4.121L9.623 3.632ZM11 9v4a1 1 0 1 0 2 0V9a1 1 0 1 0-2 0Zm0 7.5v.5a1 1 0 1 0 2 0v-.5a1 1 0 1 0-2 0Z\",clipRule:\"evenodd\"})),whatsapp_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M12 1.25C6.063 1.25 1.25 6.063 1.25 12c0 1.802.444 3.501 1.228 4.994l-1.206 4.824a.75.75 0 0 0 .91.91l4.824-1.206A10.706 10.706 0 0 0 12 22.75c5.937 0 10.75-4.813 10.75-10.75S17.937 1.25 12 1.25Zm3.16 12.04c.245.09 1.56.733 1.828.866v.001l.145.071c.187.09.313.151.367.24.067.111.067.645-.156 1.266-.223.622-1.292 1.19-1.805 1.266-.461.069-1.044.097-1.685-.106a15.383 15.383 0 0 1-1.525-.56c-2.506-1.078-4.2-3.495-4.522-3.954l-.047-.066-.002-.002c-.14-.186-1.09-1.447-1.09-2.752 0-1.226.605-1.87.883-2.165l.053-.056a.984.984 0 0 1 .713-.333c.179 0 .357.002.513.01h.06c.156 0 .35-.001.541.456.078.185.193.463.313.753.225.547.469 1.137.512 1.224.067.133.112.288.022.466l-.039.08a1.49 1.49 0 0 1-.228.364l-.14.166c-.09.111-.182.222-.261.3-.134.133-.273.277-.117.544.156.266.692 1.138 1.488 1.844a6.905 6.905 0 0 0 1.973 1.241c.074.032.134.058.178.08.267.133.423.111.58-.067.155-.177.668-.777.846-1.043.178-.267.357-.223.602-.134Z\",clipRule:\"evenodd\"})),wordpress_logo_icon_2_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M2.778 12a9.225 9.225 0 0 0 5.198 8.3l-4.4-12.054A9.18 9.18 0 0 0 2.779 12Zm15.447-.465c0-1.139-.409-1.929-.76-2.543-.466-.76-.905-1.402-.905-2.162 0-.847.642-1.637 1.548-1.637.04 0 .079.005.119.007A9.185 9.185 0 0 0 12 2.778a9.21 9.21 0 0 0-7.705 4.158c.216.007.421.01.593.01.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.055.087l3.359 9.988 2.018-6.052-1.437-3.936c-.497-.03-.967-.088-.967-.088-.497-.03-.439-.79.058-.76 0 0 1.523.118 2.428.118.965 0 2.458-.117 2.458-.117.497-.03.557.7.06.76 0 0-.5.057-1.054.087l3.332 9.913.92-3.074c.398-1.276.701-2.192.701-2.982l-.002.002Z\"}),(0,a.createElement)(\"path\",{d:\"m12.16 12.807-2.766 8.04a9.25 9.25 0 0 0 5.667-.147.719.719 0 0 1-.065-.126l-2.835-7.767Zm7.931-5.231c.04.293.062.61.062.948 0 .935-.176 1.988-.702 3.302l-2.816 8.145a9.22 9.22 0 0 0 4.585-7.973 9.157 9.157 0 0 0-1.13-4.424l.002.002Z\"}),(0,a.createElement)(\"path\",{d:\"M12 1.25C6.071 1.25 1.25 6.072 1.25 12S6.072 22.75 12 22.75c5.926 0 10.748-4.822 10.748-10.75C22.75 6.072 17.926 1.25 12 1.25Zm0 21.007c-5.656 0-10.257-4.601-10.257-10.259 0-5.657 4.6-10.255 10.256-10.255 5.655 0 10.256 4.601 10.256 10.257S17.655 22.259 12 22.259v-.002Z\"})),wordpress_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 1.25C6.075 1.25 1.25 6.074 1.25 12c0 5.928 4.824 10.75 10.75 10.75 5.928 0 10.75-4.822 10.75-10.75 0-5.926-4.822-10.75-10.75-10.75ZM2.336 12c0-1.4.302-2.732.837-3.933l4.61 12.63a9.665 9.665 0 0 1-5.447-8.696Zm9.666 9.665a9.629 9.629 0 0 1-2.731-.394l2.9-8.426 2.97 8.14c.02.047.044.091.07.132a9.655 9.655 0 0 1-3.21.548Zm1.33-14.195a19.275 19.275 0 0 0 1.106-.094c.522-.06.46-.826-.061-.795 0 0-1.565.122-2.577.122-.949 0-2.545-.122-2.545-.122-.52-.03-.583.765-.06.795 0 0 .492.062 1.013.094l1.506 4.125-2.117 6.342L6.08 7.47a20.357 20.357 0 0 0 1.106-.092c.52-.063.46-.828-.063-.797 0 0-1.563.122-2.575.122-.182 0-.395-.004-.621-.011A9.651 9.651 0 0 1 12 2.335a9.63 9.63 0 0 1 6.527 2.538c-.043-.002-.083-.007-.127-.007-.95 0-1.622.825-1.622 1.715 0 .795.46 1.47.949 2.266.367.644.796 1.471.796 2.665 0 .827-.316 1.787-.736 3.124l-.963 3.222L13.332 7.47Zm3.528 12.884 2.951-8.535c.552-1.38.734-2.481.734-3.461 0-.357-.022-.686-.064-.995A9.608 9.608 0 0 1 21.665 12a9.661 9.661 0 0 1-4.805 8.353Z\"})),youtube_logo_icon_solid:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",d:\"M19.29 3.608c-3.693-.479-10.531-.477-14.402.003-1.874.233-3.194 1.843-3.41 3.831-.304 2.773-.304 6.343 0 9.116.216 1.988 1.536 3.598 3.41 3.83 3.87.481 10.71.483 14.401.004 1.784-.232 2.995-1.77 3.21-3.63.334-2.868.334-6.656 0-9.524-.215-1.86-1.426-3.398-3.21-3.63Zm-8.904 4.749A.75.75 0 0 0 9.25 9v6a.75.75 0 0 0 1.136.643l5-3a.75.75 0 0 0 0-1.286l-5-3Z\",clipRule:\"evenodd\"})),full_screen_corners_out_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M2 8.5V5C2 3.34315 3.34315 2 5 2H8.5C9.05228 2 9.5 2.44772 9.5 3C9.5 3.55228 9.05228 4 8.5 4H5C4.44772 4 4 4.44772 4 5V8.5C4 9.05228 3.55228 9.5 3 9.5C2.44772 9.5 2 9.05228 2 8.5Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M2 19V15.5C2 14.9477 2.44772 14.5 3 14.5C3.55228 14.5 4 14.9477 4 15.5V19C4 19.5523 4.44772 20 5 20H8.5C9.05228 20 9.5 20.4477 9.5 21C9.5 21.5523 9.05228 22 8.5 22H5C3.34315 22 2 20.6569 2 19Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M20 8V5C20 4.44772 19.5523 4 19 4H15.5C14.9477 4 14.5 3.55228 14.5 3C14.5 2.44772 14.9477 2 15.5 2H19C20.6569 2 22 3.34315 22 5V8C22 8.55228 21.5523 9 21 9C20.4477 9 20 8.55228 20 8Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M20 19V15.5C20 14.9477 20.4477 14.5 21 14.5C21.5523 14.5 22 14.9477 22 15.5V19C22 20.6569 20.6569 22 19 22H15.5C14.9477 22 14.5 21.5523 14.5 21C14.5 20.4477 14.9477 20 15.5 20H19C19.5523 20 20 19.5523 20 19Z\",fill:\"currentColor\"})),zoom_in_magnifying_glass_plus_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M9.99512 14V12.0049H8C7.44772 12.0049 7 11.5572 7 11.0049C7.00007 10.4527 7.44776 10.0049 8 10.0049H9.99512V8C9.99512 7.44772 10.4428 7 10.9951 7C11.5473 7.00007 11.9951 7.44776 11.9951 8V10.0049H14C14.5522 10.0049 14.9999 10.4527 15 11.0049C15 11.5572 14.5523 12.0049 14 12.0049H11.9951V14C11.9951 14.5522 11.5473 14.9999 10.9951 15C10.4428 15 9.99512 14.5523 9.99512 14Z\",fill:\"currentColor\"})),zoom_out_magnifying_glass_minus_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M11 2C15.9706 2 20 6.02944 20 11C20 13.125 19.2619 15.0766 18.0303 16.6162L21.707 20.293C22.0972 20.6835 22.0974 21.3166 21.707 21.707C21.3166 22.0974 20.6835 22.0972 20.293 21.707L16.6162 18.0303C15.0766 19.2619 13.125 20 11 20C6.02944 20 2 15.9706 2 11C2 6.02944 6.02944 2 11 2ZM11 4C7.13401 4 4 7.13401 4 11C4 14.866 7.13401 18 11 18C12.89 18 14.6038 17.2497 15.8633 16.0322C15.8877 16.0012 15.9148 15.9719 15.9434 15.9434C15.9719 15.9148 16.0012 15.8877 16.0322 15.8633C17.2497 14.6038 18 12.89 18 11C18 7.13401 14.866 4 11 4Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M14 10.005C14.5523 10.005 15 10.4527 15 11.005C15 11.5573 14.5523 12.005 14 12.005H8C7.44772 12.005 7 11.5573 7 11.005C7 10.4527 7.44772 10.005 8 10.005H14Z\",fill:\"currentColor\"})),gallery_indicator_image_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M16.75 7C16.75 8.10457 15.8546 9 14.75 9C13.6454 9 12.75 8.10457 12.75 7C12.75 5.89543 13.6454 5 14.75 5C15.8546 5 16.75 5.89543 16.75 7Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M6.5 18.5C6.5 18.3619 6.38807 18.25 6.25 18.25H4C3.86193 18.25 3.75 18.3619 3.75 18.5V20C3.75 20.1381 3.86193 20.25 4 20.25H6.25C6.38807 20.25 6.5 20.1381 6.5 20V18.5ZM8 20C8 20.9665 7.2165 21.75 6.25 21.75H4C3.0335 21.75 2.25 20.9665 2.25 20V18.5C2.25 17.5335 3.0335 16.75 4 16.75H6.25C7.2165 16.75 8 17.5335 8 18.5V20Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M13.5 18.5C13.5 18.3619 13.3881 18.25 13.25 18.25H11C10.8619 18.25 10.75 18.3619 10.75 18.5V20C10.75 20.1381 10.8619 20.25 11 20.25H13.25C13.3881 20.25 13.5 20.1381 13.5 20V18.5ZM15 20C15 20.9665 14.2165 21.75 13.25 21.75H11C10.0335 21.75 9.25 20.9665 9.25 20V18.5C9.25 17.5335 10.0335 16.75 11 16.75H13.25C14.2165 16.75 15 17.5335 15 18.5V20Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M20.25 18.5C20.25 18.3619 20.1381 18.25 20 18.25H18C17.8619 18.25 17.75 18.3619 17.75 18.5V20C17.75 20.1381 17.8619 20.25 18 20.25H20C20.1381 20.25 20.25 20.1381 20.25 20V18.5ZM21.75 20C21.75 20.9665 20.9665 21.75 20 21.75H18C17.0335 21.75 16.25 20.9665 16.25 20V18.5C16.25 17.5335 17.0335 16.75 18 16.75H20C20.9665 16.75 21.75 17.5335 21.75 18.5V20Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M19 15.75C20.5188 15.75 21.75 14.5188 21.75 13V5C21.75 3.4812 20.5188 2.25 19 2.25H5C3.4812 2.25 2.25 3.4812 2.25 5V13C2.25 14.5188 3.4812 15.75 5 15.75H19ZM3.75 11.8613V5C3.75 4.30957 4.30963 3.75 5 3.75H19C19.6904 3.75 20.25 4.30957 20.25 5V10.8613L19.9442 10.5557C18.8703 9.48169 17.1295 9.48169 16.0555 10.5557L15.3837 11.2266C14.8956 11.7146 14.1042 11.7146 13.6161 11.2266L10.9442 8.55566C9.8703 7.48169 8.12946 7.48169 7.05554 8.55566L3.75 11.8613Z\",fill:\"currentColor\"})),rocket_fly_boost_launch_pro_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M7.79289 14.7929C8.18342 14.4024 8.81643 14.4024 9.20696 14.7929C9.59748 15.1834 9.59748 15.8164 9.20696 16.207L4.20696 21.207C3.81643 21.5975 3.18342 21.5975 2.79289 21.207C2.40237 20.8164 2.40237 20.1834 2.79289 19.7929L7.79289 14.7929Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M10.2929 17.2929C10.6834 16.9024 11.3164 16.9024 11.707 17.2929C12.0975 17.6834 12.0975 18.3164 11.707 18.707L9.70696 20.707C9.31643 21.0975 8.68342 21.0975 8.29289 20.707C7.90237 20.3164 7.90237 19.6834 8.29289 19.2929L10.2929 17.2929Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M5.29289 12.2929C5.68342 11.9024 6.31643 11.9024 6.70696 12.2929C7.09748 12.6834 7.09748 13.3164 6.70696 13.707L4.70696 15.707C4.31643 16.0975 3.68342 16.0975 3.29289 15.707C2.90237 15.3164 2.90237 14.6834 3.29289 14.2929L5.29289 12.2929Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M21.5002 1.75C21.9145 1.75 22.2502 2.08569 22.2502 2.5V3.10059C22.2502 5.88916 21.0051 8.88525 19.2672 11.1758L19.7473 16.9375C19.7656 17.1575 19.6865 17.3743 19.5305 17.5303L15.5305 21.5303C15.3439 21.717 15.0726 21.792 14.8167 21.7275C14.5609 21.6631 14.3574 21.4685 14.2815 21.2158L12.8049 16.2939L7.7063 11.1953L2.78442 9.71875C2.62842 9.67188 2.49463 9.57642 2.39984 9.4502C2.34113 9.37183 2.29742 9.28149 2.27271 9.18359C2.20819 8.92773 2.28333 8.65649 2.46997 8.46973L6.46997 4.46973L6.53149 4.41504C6.68048 4.29565 6.87042 4.23682 7.06274 4.25293L12.8245 4.73315C15.115 2.99512 18.111 1.75 20.8997 1.75H21.5002ZM19.0002 6.5C19.0002 7.32837 18.3287 8 17.5002 8C16.6718 8 16.0002 7.32837 16.0002 6.5C16.0002 5.67163 16.6718 5 17.5002 5C18.3287 5 19.0002 5.67163 19.0002 6.5Z\",fill:\"currentColor\"})),plugin_connect_socket_integration_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M5.20699 8.79297L6.99995 10.5859L8.79292 8.79297C9.18343 8.40234 9.81642 8.40234 10.207 8.79297C10.5975 9.18335 10.5975 9.81641 10.207 10.207L8.41402 12L12 15.5859L13.7929 13.793C14.1834 13.4023 14.8164 13.4023 15.207 13.793C15.5975 14.1833 15.5975 14.8164 15.207 15.207L13.414 17L15.207 18.793C15.5975 19.1833 15.5975 19.8164 15.207 20.207C14.8164 20.5974 14.1834 20.5974 13.7929 20.207L12.8233 19.2375L10.9445 21.1162C9.87056 22.1902 8.12886 22.1902 7.05489 21.1162L5.67653 19.7375L3.20699 22.207C2.81642 22.5974 2.18343 22.5974 1.79292 22.207C1.40236 21.8164 1.40236 21.1833 1.79292 20.793L4.26265 18.3232L2.88405 16.9443C1.81007 15.8706 1.81007 14.1296 2.88405 13.0557L4.76277 11.177L3.79292 10.207C3.40236 9.81641 3.40236 9.18335 3.79292 8.79297C4.18343 8.40234 4.81642 8.40234 5.20699 8.79297Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M11.1768 4.7627L10.207 3.79297C9.81641 3.40234 9.18341 3.40234 8.79291 3.79297C8.40234 4.18335 8.40234 4.81641 8.79291 5.20703L18.7929 15.207C19.1834 15.5974 19.8164 15.5974 20.207 15.207C20.5975 14.8164 20.5975 14.1833 20.207 13.793L19.2374 12.8232L21.1161 10.9446C22.1901 9.87061 22.1901 8.12891 21.1161 7.05493L19.7374 5.67651L22.207 3.20703C22.5975 2.81641 22.5975 2.18335 22.207 1.79297C21.8164 1.40234 21.1834 1.40234 20.7929 1.79297L18.3232 4.2627L16.9443 2.88403C15.8703 1.81006 14.1295 1.81006 13.0556 2.88403L11.1768 4.7627Z\",fill:\"currentColor\"})),unlink_link_break_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M2.29286 4.29325C2.68338 3.90273 3.31639 3.90273 3.70692 4.29325L10.9999 11.5862L13.7929 8.79325C14.1834 8.40273 14.8164 8.40273 15.2069 8.79325C15.5972 9.1838 15.5974 9.81687 15.2069 10.2073L12.4139 13.0003L19.7069 20.2933C20.0972 20.6838 20.0974 21.3169 19.7069 21.7073C19.3165 22.0977 18.6834 22.0976 18.2929 21.7073L14.5194 17.9339L12.204 20.2493C9.86964 22.5836 6.08522 22.5835 3.75086 20.2493C1.41651 17.915 1.41657 14.1306 3.75086 11.7962L6.06532 9.47978L2.29286 5.70732C1.90236 5.31682 1.90241 4.68379 2.29286 4.29325ZM5.16493 13.2102C3.61168 14.7636 3.61162 17.2819 5.16493 18.8352C6.71823 20.3884 9.23662 20.3884 10.7899 18.8352L13.1054 16.5198L10.9999 14.4143L10.2069 15.2073C9.81646 15.5977 9.18337 15.5976 8.79286 15.2073C8.40236 14.8168 8.40241 14.1838 8.79286 13.7933L9.58582 13.0003L7.48036 10.8948L5.16493 13.2102Z\",fill:\"currentColor\"}),(0,a.createElement)(\"path\",{d:\"M11.7958 3.75126C14.1302 1.4169 17.9145 1.41689 20.2489 3.75126C22.5832 6.08564 22.5833 9.87005 20.2489 12.2044L17.7352 14.719C17.3449 15.1092 16.7117 15.109 16.3212 14.719C15.9307 14.3285 15.9307 13.6945 16.3212 13.304L18.8348 10.7903C20.3881 9.23703 20.3881 6.71866 18.8348 5.16533C17.2815 3.612 14.7632 3.61201 13.2098 5.16533L10.6962 7.679C10.3057 8.06941 9.67164 8.06939 9.28114 7.679C8.89103 7.28851 8.89092 6.65536 9.28114 6.26493L11.7958 3.75126Z\",fill:\"currentColor\"})),unlocked_open_security_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M12 1C15.3136 1.00007 18 3.68634 18 7V9.25C19.5188 9.25 20.75 10.4812 20.75 12V20C20.75 21.5188 19.5188 22.75 18 22.75H6C4.48122 22.75 3.25 21.5188 3.25 20V12C3.25 10.4812 4.48122 9.25 6 9.25H16V7C16 4.79091 14.2091 3.00007 12 3C10.5207 3.00001 9.22731 3.80281 8.53418 5.00098C8.25756 5.47873 7.6459 5.64163 7.16797 5.36523C6.69018 5.0886 6.52723 4.47697 6.80371 3.99902C7.83968 2.20846 9.77808 1.00001 12 1ZM12 14.5C11.4477 14.5 11 14.9477 11 15.5V16.5C11 17.0523 11.4477 17.5 12 17.5C12.5523 17.5 13 17.0523 13 16.5V15.5C13 14.9477 12.5523 14.5 12 14.5Z\",fill:\"currentColor\"})),sort_ascending_order_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M2.25 5C2.25 3.4812 3.4812 2.25 5 2.25L19 2.25C20.5188 2.25 21.75 3.4812 21.75 5L21.75 19C21.75 20.5188 20.5188 21.75 19 21.75L5 21.75C3.4812 21.75 2.25 20.5188 2.25 19L2.25 5ZM16.75 7.5C16.75 7.08569 16.4142 6.75 16 6.75L6 6.75C5.58581 6.75 5.25 7.08569 5.25 7.5C5.25 7.91431 5.58581 8.25 6 8.25L16 8.25C16.4142 8.25 16.75 7.91431 16.75 7.5ZM11.5 11C11.9142 11 12.25 11.3357 12.25 11.75C12.25 12.1643 11.9142 12.5 11.5 12.5L6 12.5C5.58581 12.5 5.25 12.1643 5.25 11.75C5.25 11.3357 5.58581 11 6 11L11.5 11ZM10.75 16C10.75 15.5857 10.4142 15.25 10 15.25L6 15.25C5.58581 15.25 5.25 15.5857 5.25 16C5.25 16.4143 5.58581 16.75 6 16.75L10 16.75C10.4142 16.75 10.75 16.4143 10.75 16ZM15.25 11C15.25 10.5857 15.5857 10.25 16 10.25C16.4142 10.25 16.75 10.5857 16.75 11L16.75 15.1895L17.9697 13.9697C18.2626 13.6768 18.7373 13.6768 19.0303 13.9697C19.3231 14.2627 19.3231 14.7373 19.0303 15.0303L16.5303 17.5303C16.2373 17.8232 15.7626 17.8232 15.4697 17.5303L12.9697 15.0303C12.6768 14.7373 12.6768 14.2627 12.9697 13.9697C13.2626 13.6768 13.7373 13.6768 14.0303 13.9697L15.25 15.1895L15.25 11Z\",fill:\"currentColor\"})),sort_descending_order_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M21.75 19C21.75 20.5188 20.5188 21.75 19 21.75H5C3.4812 21.75 2.25 20.5188 2.25 19V5C2.25 3.4812 3.4812 2.25 5 2.25H19C20.5188 2.25 21.75 3.4812 21.75 5V19ZM10.75 8C10.75 8.41431 10.4142 8.75 10 8.75H6C5.58582 8.75 5.25 8.41431 5.25 8C5.25 7.58569 5.58582 7.25 6 7.25H10C10.4142 7.25 10.75 7.58569 10.75 8ZM11.5 13C11.9142 13 12.25 12.6643 12.25 12.25C12.25 11.8357 11.9142 11.5 11.5 11.5H6C5.58582 11.5 5.25 11.8357 5.25 12.25C5.25 12.6643 5.58582 13 6 13H11.5ZM6 15.75H16C16.4142 15.75 16.75 16.0857 16.75 16.5C16.75 16.9143 16.4142 17.25 16 17.25H6C5.58582 17.25 5.25 16.9143 5.25 16.5C5.25 16.0857 5.58582 15.75 6 15.75ZM15.25 13V8.81055L14.0303 10.0303C13.7373 10.3232 13.2626 10.3232 12.9697 10.0303C12.6768 9.73755 12.6768 9.2627 12.9697 8.96973L15.4697 6.46973L15.5264 6.41797C15.8209 6.17773 16.2556 6.19531 16.5303 6.46973L19.0303 8.96973C19.3231 9.2627 19.3231 9.73755 19.0303 10.0303C18.7373 10.3232 18.2626 10.3232 17.9697 10.0303L16.75 8.81055V13C16.75 13.4143 16.4142 13.75 16 13.75C15.5857 13.75 15.25 13.4143 15.25 13Z\",fill:\"currentColor\"})),plus_circle_zoom_in_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75ZM11 16.9999V12.9999H7C6.44771 12.9999 6 12.5522 6 11.9999C6.00006 11.4477 6.44775 10.9999 7 10.9999H11V6.99988C11 6.4476 11.4477 5.99988 12 5.99988C12.5523 5.99988 13 6.4476 13 6.99988V10.9999H17C17.5522 10.9999 17.9999 11.4477 18 11.9999C18 12.5522 17.5523 12.9999 17 12.9999H13V16.9999C13 17.5522 12.5523 17.9999 12 17.9999C11.4477 17.9999 11 17.5522 11 16.9999Z\",fill:\"currentColor\"})),right_circle_solid:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M12 1.25C6.06294 1.25 1.25 6.06294 1.25 12C1.25 17.9371 6.06294 22.75 12 22.75C17.9371 22.75 22.75 17.9371 22.75 12C22.75 6.06294 17.9371 1.25 12 1.25ZM16.7372 9.67573C17.1103 9.26861 17.0828 8.63604 16.6757 8.26285C16.2686 7.88966 15.636 7.91716 15.2628 8.32428L10.4686 13.5544L8.70711 11.7929C8.31658 11.4024 7.68342 11.4024 7.29289 11.7929C6.90237 12.1834 6.90237 12.8166 7.29289 13.2071L9.79289 15.7071C9.98576 15.9 10.249 16.0057 10.5217 15.9998C10.7944 15.9938 11.0528 15.8768 11.2372 15.6757L16.7372 9.67573Z\",fill:\"currentColor\"}))}},4766:(e,t,n)=>{\"use strict\";n.d(t,{ZP:()=>s});var a=n(7294),r=n(1900),o=n(4528);(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"#070707\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 100 99.964\"},(0,a.createElement)(\"path\",{d:\"M97.637 61.79a3.8 3.8 0 0 1-.265-2.338c2.854-16.467-1.618-30.679-13.443-42.449A46.289 46.289 0 0 0 57.307 3.971a45.987 45.987 0 0 0-13.429.031 3.88 3.88 0 0 1-2.678-.468 27.868 27.868 0 0 0-37.106 9.469 27.009 27.009 0 0 0-.722 27.349 2.2 2.2 0 0 1 .268 1.577c-4.109 21.989 7.627 42.639 27.735 51.084a48.685 48.685 0 0 0 26.784 3.2 3.168 3.168 0 0 1 2.058.3 28.253 28.253 0 0 0 14.99 3.392 24.78 24.78 0 0 0 10.7-3.344 28.036 28.036 0 0 0 13.784-19.714 26.476 26.476 0 0 0-2.054-15.057Zm-22.9 2.118c-1.145 6.065-5.1 9.919-10.639 12.005a34.579 34.579 0 0 1-25.014.047 17.5 17.5 0 0 1-10.124-9.767 10.7 10.7 0 0 1-.823-3.5 4.786 4.786 0 0 1 2.69-4.8 5.42 5.42 0 0 1 5.954.641 8.434 8.434 0 0 1 1.858 2.609c.575 1.166 1.117 2.344 1.763 3.477a10.145 10.145 0 0 0 8.116 5.239c3.849.439 7.6.181 11.051-1.866 3.034-1.8 4.327-4.8 3.344-7.958a6.789 6.789 0 0 0-3.821-3.96 36.8 36.8 0 0 0-8.484-2.527c-4.659-1.075-9.32-2.134-13.636-4.306-6.146-3.093-8.925-8.983-7.25-15.629a12.974 12.974 0 0 1 5.917-7.83 26.362 26.362 0 0 1 12.494-3.723c1.1-.089 2.212-.11 2.953-.145 5.344.04 10.179.739 14.54 3.347 3.038 1.816 5.483 4.183 6.521 7.712a5.465 5.465 0 0 1-1.221 5.8 5.212 5.212 0 0 1-8.142-.932c-.8-1.185-1.506-2.436-2.312-3.618a9.062 9.062 0 0 0-6.6-4.222c-3.583-.437-7.092-.415-10.344 1.435a5.654 5.654 0 0 0-3.072 3.721c-.446 2.16.408 3.849 2.36 5.136 2.449 1.616 5.253 2.209 8.032 2.887a123.979 123.979 0 0 1 12.525 3.358 19.776 19.776 0 0 1 8.3 4.956c3.252 3.573 3.917 7.862 3.06 12.414Z\"})),(0,a.createElement)(\"svg\",{viewBox:\"0 0 16 16\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M9.34084 11.3521L7.66481 13.0281C6.36891 14.324 4.26783 14.324 2.97193 13.0281C1.67602 11.7322 1.67602 9.63111 2.97193 8.33521L4.64796 6.65918M6.65916 4.64795L8.33519 2.97193C9.63109 1.67603 11.7322 1.67602 13.0281 2.97192C14.324 4.26782 14.324 6.36889 13.0281 7.66479L11.352 9.34082\",stroke:\"currentColor\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.33398 9.66665L9.66732 6.33331\",stroke:\"currentColor\",strokeLinecap:\"round\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 50 50\"},(0,a.createElement)(\"path\",{fill:\"currentColor\",d:\"M50 4.4v41.1c0 2.5-2 4.4-4.4 4.4H34.5V31.1c0-.4.1-.6.5-.5h5.4c.4 0 .6 0 .6-.5.3-2.3.6-4.6.9-7 0-.4-.1-.4-.4-.4h-6.6c-.3 0-.5-.1-.5-.4v-4.8c-.1-1.5 1-2.9 2.6-3H41.6c.3 0 .4-.1.4-.4V7.9c0-.4-.1-.4-.5-.4-1.5 0-6.7 0-7.8.2-4 .7-6.9 4-7.2 8.1-.1 2.2 0 4.4 0 6.6 0 .5-.1.6-.6.6h-5.5c-.3 0-.4.1-.4.4v7c0 .3.1.4.4.4h5.5c.5 0 .6.1.6.6v18.8H4.4C2 50 0 48 0 45.5V4.4C0 2 2 0 4.4 0h41.1C48 0 50 2 50 4.4z\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 35.699 50\"},(0,a.createElement)(\"path\",{d:\"M27.638 5.514A13.716 13.716 0 0 1 26.162 0h-6.835v28.914a6.244 6.244 0 1 1-6.241-6.247 6.086 6.086 0 0 1 1.965.32v-7.002a12.836 12.836 0 0 0-1.965-.149A13.082 13.082 0 1 0 26.16 28.918V14.134a17.847 17.847 0 0 0 10.454 3.277l.162-6.834c-4.405-.105-7.4-1.761-9.14-5.063\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{d:\"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m11.606 21.714a11.347 11.347 0 0 1-6.656-2.086v9.413a8.323 8.323 0 1 1-7.076-8.236v4.461a3.9 3.9 0 0 0-1.251-.2 3.978 3.978 0 1 0 3.974 3.977V10.628h4.353a8.761 8.761 0 0 0 .94 3.514c1.112 2.1 3.015 3.156 5.821 3.223Z\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 44 44\"},(0,a.createElement)(\"g\",null,(0,a.createElement)(\"path\",{d:\"M30.889 22a8.883 8.883 0 0 1-8.976 8.888A8.932 8.932 0 1 1 30.889 22\"}),(0,a.createElement)(\"path\",{d:\"M22 0C1.18 0 0 1.179 0 22s1.18 22 22 22 22-1.179 22-22S42.821 0 22 0m0 35.816A13.818 13.818 0 1 1 35.816 22 13.817 13.817 0 0 1 22 35.816m14.362-24.948a3.194 3.194 0 0 1-3.256-3.256 3.248 3.248 0 0 1 3.256-3.256 3.175 3.175 0 0 1 3.168 3.256 3.123 3.123 0 0 1-3.168 3.256\"}))),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 42 42\"},(0,a.createElement)(\"path\",{d:\"M37.53 0H4.47A4.468 4.468 0 0 0 0 4.47v33.06A4.468 4.468 0 0 0 4.47 42h33.06A4.468 4.468 0 0 0 42 37.53V4.47A4.468 4.468 0 0 0 37.53 0M12.49 35.12c0 .51-.09.59-.59.59H6.87c-.5 0-.59-.17-.59-.59V16.43c0-.5.09-.67.67-.67h5.03c.42 0 .59.08.59.59-.08 6.28-.08 12.49-.08 18.77m-3.1-22.04a3.583 3.583 0 0 1-3.61-3.61 3.626 3.626 0 0 1 3.61-3.6 3.572 3.572 0 0 1 3.6 3.6 3.692 3.692 0 0 1-3.6 3.61m25.65 22.63h-4.78c-.5 0-.75-.08-.75-.67v-9.3a13.485 13.485 0 0 0-.26-2.6 2.664 2.664 0 0 0-2.43-2.35 3.264 3.264 0 0 0-3.69 1.68 6.537 6.537 0 0 0-.58 2.51v9.98c0 .67-.17.84-.84.75-1.59-.08-3.19 0-4.78 0-.42 0-.59-.17-.59-.59V16.35c0-.42.09-.59.51-.59h4.86c.42 0 .5.17.5.5v2.1a7.617 7.617 0 0 1 3.69-2.77 8.813 8.813 0 0 1 6.2.51 5.948 5.948 0 0 1 3.11 4.44 20.4 20.4 0 0 1 .42 3.94v10.56c.08.59-.09.67-.59.67\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 44 44.26\"},(0,a.createElement)(\"path\",{d:\"M22.311 0A21.555 21.555 0 0 0 .798 21.6a22.259 22.259 0 0 0 3.01 11.067l-3.807 11.6 11.951-3.805A21.656 21.656 0 0 0 44 21.517 21.687 21.687 0 0 0 22.311 0m10.637 29.915a5.156 5.156 0 0 1-3.487 2.414c-4.559.983-9.387-2.593-12.338-5.633a22.894 22.894 0 0 1-5.275-8.046c-.983-2.861.358-8.583 4.381-7.689.984.179 1.163 1.073 1.431 1.878.447 1.162.8 2.235 1.251 3.4a1.514 1.514 0 0 1 0 .894c-.357.805-1.162 1.341-1.7 2.056-.805 1.252 2.324 4.292 3.218 5.1 1.163 1.072 2.951 2.682 4.56 2.861.894.089 2.056-1.7 2.5-2.325.358-.447.626-.536 1.073-.358 1.52.626 2.951 1.52 4.47 2.325a.811.811 0 0 1 .537.983 3.565 3.565 0 0 1-.626 2.146\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{d:\"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0M2.724 24a21.149 21.149 0 0 1 1.844-8.657L14.716 43.15A21.283 21.283 0 0 1 2.724 24M24 45.278a21.317 21.317 0 0 1-6.01-.865l6.384-18.55 6.538 17.917a1.806 1.806 0 0 0 .154.293 21.224 21.224 0 0 1-7.066 1.2m2.931-31.249c1.282-.065 2.436-.2 2.436-.2a.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-2.09 0-5.6-.272-5.6-.272a.88.88 0 0 0-.133 1.754s1.084.136 2.23.2l3.317 9.084-4.657 13.963-7.754-23.047a42.05 42.05 0 0 0 2.436-.2.88.88 0 0 0-.135-1.754s-3.447.272-5.671.272c-.4 0-.871-.009-1.371-.025a21.273 21.273 0 0 1 32.144-4.006c-.093-.006-.182-.015-.275-.015a3.682 3.682 0 0 0-3.573 3.774c0 1.754 1.01 3.237 2.091 4.991a11.211 11.211 0 0 1 1.754 5.869 24.615 24.615 0 0 1-1.547 7.014l-2.2 6.952Zm7.764 28.366 6.5-18.788a20.025 20.025 0 0 0 1.618-7.62 16.1 16.1 0 0 0-.142-2.189 21.276 21.276 0 0 1-7.974 28.6\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"g\",null,(0,a.createElement)(\"path\",{d:\"M4 23.999a20 20 0 0 0 11.272 18L5.732 15.86A19.923 19.923 0 0 0 4 24m33.5-1.009a10.531 10.531 0 0 0-1.646-5.517c-1.014-1.648-1.964-3.042-1.964-4.69a3.463 3.463 0 0 1 3.358-3.55c.089 0 .173.011.259.016A20 20 0 0 0 7.29 13.013c.47.015.912.025 1.288.025 2.091 0 5.33-.254 5.33-.254a.827.827 0 0 1 .128 1.648s-1.084.127-2.289.19l7.283 21.664 4.378-13.127-3.117-8.535c-1.078-.063-2.1-.19-2.1-.19a.827.827 0 0 1 .127-1.648s3.3.254 5.267.254c2.092 0 5.331-.254 5.331-.254a.827.827 0 0 1 .128 1.648s-1.085.127-2.289.19l7.228 21.5 2.063-6.538a23.047 23.047 0 0 0 1.454-6.593m-13.146 2.755-6 17.437a20.006 20.006 0 0 0 12.292-.319 1.835 1.835 0 0 1-.143-.276Zm17.2-11.344a15.342 15.342 0 0 1 .134 2.057 18.884 18.884 0 0 1-1.524 7.163l-6.11 17.661a20 20 0 0 0 7.5-26.881\"}),(0,a.createElement)(\"path\",{d:\"M24 0a24 24 0 1 0 24 24A24 24 0 0 0 24 0m0 46.56A22.56 22.56 0 1 1 46.56 24 22.559 22.559 0 0 1 24 46.56\"}))),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 33.86\"},(0,a.createElement)(\"path\",{d:\"M47.134 5.29a5.893 5.893 0 0 0-4.232-4.232C39.055 0 24.05 0 24.05 0S9.044 0 5.293.962A6.146 6.146 0 0 0 .965 5.29C.003 9.041.003 16.929.003 16.929s0 7.887.962 11.638A5.894 5.894 0 0 0 5.197 32.8c3.847 1.058 18.853 1.058 18.853 1.058s15.005 0 18.756-1.058a6.059 6.059 0 0 0 4.232-4.233C48 24.816 48 16.929 48 16.929s.1-7.888-.866-11.639M19.141 21.928v-10a1.237 1.237 0 0 1 1.845-1.077l8.85 5a1.237 1.237 0 0 1 0 2.153l-8.85 5a1.237 1.237 0 0 1-1.845-1.077\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{d:\"M48.004 23.995a24 24 0 0 1-24 24.005 23.735 23.735 0 0 1-10.948-2.65h.086a15.084 15.084 0 0 0 4.8-6.914 35.685 35.685 0 0 0 1.729-7.009v-.192c.1-.384.192-.384.48-.192.1 0 .1.1.192.1a7.385 7.385 0 0 0 4.322 2.112 11.879 11.879 0 0 0 7.491-.96 16.739 16.739 0 0 0 4.513-3.649 11.277 11.277 0 0 0 1-1.354 17.413 17.413 0 0 0 2.574-7.278 16.381 16.381 0 0 0-1.1-8.555 13.1 13.1 0 0 0-4.774-5.569 17.523 17.523 0 0 0-8.067-2.977A20.935 20.935 0 0 0 15.45 4.065a15.91 15.91 0 0 0-9.028 8.258 11.865 11.865 0 0 0-.288 9.89 8.5 8.5 0 0 0 5.859 4.993c.288.1.384 0 .384-.288.192-1.056.384-2.112.576-3.073 0-.192 0-.384-.192-.48a8.869 8.869 0 0 1-1.825-2.688 6.966 6.966 0 0 1 .1-5.377 12.226 12.226 0 0 1 7.875-7.778 14.92 14.92 0 0 1 7.4-.672c5.475.912 7.914 6.625 7.559 11.685a15.147 15.147 0 0 1-2.757 7.423 7.589 7.589 0 0 1-4.129 2.976 5.108 5.108 0 0 1-4.226-.768 2.864 2.864 0 0 1-1.153-2.3 9.668 9.668 0 0 1 .769-3.745c.48-1.44 1.056-2.785 1.44-4.225a10.787 10.787 0 0 0 .384-3.072 3.408 3.408 0 0 0-4.206-2.977 5.336 5.336 0 0 0-2.641 1.364c-1.892 1.785-2.4 5.175-1.6 7.566a7.772 7.772 0 0 1-.1 4.9c-.864 2.976-1.825 6.049-2.5 9.122a28.284 28.284 0 0 0-.672 7.489 8.268 8.268 0 0 0 .576 3.063 24 24 0 1 1 34.949-21.356\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 45.85 48\"},(0,a.createElement)(\"path\",{d:\"M44.492 25.179a6.625 6.625 0 0 0 .192-7.766 6.482 6.482 0 0 0-9.492-1.151c-.192.1-.288.192-.384.1a28.339 28.339 0 0 0-9.684-2.493c-.192 0-.287-.095-.192-.287.288-.959.672-1.822 1.055-2.781a29.239 29.239 0 0 1 3.068-5.657 7.62 7.62 0 0 1 2.017-1.919 2.338 2.338 0 0 1 2.493 0 6.138 6.138 0 0 1 1.246.959c.192.191.192.287.192.575a3.868 3.868 0 0 0 3.26 4.506 3.786 3.786 0 0 0 4.309-3.739 3.8 3.8 0 0 0-5.463-3.547.358.358 0 0 1-.479-.1 4.481 4.481 0 0 0-1.151-.863 5.486 5.486 0 0 0-6.232-.1 14.609 14.609 0 0 0-3.26 3.643 38.376 38.376 0 0 0-4.123 9.013c-.1.287-.192.383-.479.383a26.861 26.861 0 0 0-10.163 2.493c-.192.1-.288.1-.48-.1a6.631 6.631 0 0 0-8.054-.383 6.539 6.539 0 0 0-1.246 9.4c.192.192.192.288.1.479a13.425 13.425 0 0 0-.959 3.74 14.384 14.384 0 0 0 2.3 8.821 20.414 20.414 0 0 0 7.191 6.519 27.739 27.739 0 0 0 12.752 3.069 27.311 27.311 0 0 0 12.464-2.781 19.211 19.211 0 0 0 7.282-5.933c3.068-4.219 3.835-8.725 1.822-13.615a.865.865 0 0 1 .1-.48m-12.656 5.421a3.645 3.645 0 1 1 3.024-3.023 3.646 3.646 0 0 1-3.024 3.023m-.192 8.1a14.556 14.556 0 0 1-9.013 3.26 14.886 14.886 0 0 1-8.533-3.164 1.469 1.469 0 1 1 1.822-2.3 11.081 11.081 0 0 0 7.862 2.493 11.805 11.805 0 0 0 5.369-2.014c.288-.191.479-.383.767-.575a1.488 1.488 0 0 1 2.014.288 1.6 1.6 0 0 1-.288 2.013m-16.683-15.34a3.646 3.646 0 1 1-3.644 3.643 3.526 3.526 0 0 1 3.644-3.643m-12.464.767a4.959 4.959 0 0 1 7.095-6.808 18.573 18.573 0 0 0-7.095 6.808m41.036-.288a18.259 18.259 0 0 0-6.807-6.424c-.1-.1-.192-.1-.288-.192a5.75 5.75 0 0 1 2.4-.959 4.811 4.811 0 0 1 4.794 2.206 4.978 4.978 0 0 1 .1 5.273c0 .1-.1.384-.192.1\"})),(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 47.04 48\"},(0,a.createElement)(\"path\",{d:\"M24 19.625v8.907h13.227a11.731 11.731 0 0 1-4.907 7.786 14.2 14.2 0 0 1-8.32 2.4 14.447 14.447 0 0 1-13.653-9.973 14.764 14.764 0 0 1-.8-4.747 15.523 15.523 0 0 1 .773-4.746A14.507 14.507 0 0 1 24 9.278a13.3 13.3 0 0 1 9.28 3.574l6.773-6.614A23.061 23.061 0 0 0 24-.002a24 24 0 0 0 0 48 22.873 22.873 0 0 0 15.893-5.813c4.534-4.187 7.147-10.347 7.147-17.653a20.536 20.536 0 0 0-.507-4.907Z\"}));const i=new class{constructor(){this.icons=new Map,this.aliases=new Map}initializeIcons(e){Object.entries(e).forEach((([e,t])=>{this.icons.set(e,t)}))}storeAliases(e){Object.entries(e).forEach((([e,t])=>{this.icons.has(t)&&this.aliases.set(e,this.icons.get(t))}))}getAliases(){return Object.fromEntries(this.aliases)}toObject(){return{...Object.fromEntries(this.icons),...Object.fromEntries(this.aliases)}}toCurrentIconObj(){return{...Object.fromEntries(this.icons)}}};i.initializeIcons({...o.c,...r.e}),i.storeAliases({angle_bottom_left_line:\"arrow_down_bottom_left_solid\",angle_bottom_right_line:\"arrow_down_bottom_right_solid\",angle_top_left_line:\"arrow_up_top_left_solid\",angle_top_right_line:\"arrow_up_top_right_solid\",rightFillAngle:\"right_triangle_angle_play_arrow_forward_solid\",leftAngle2:\"arrow_left_previous_backward_chevron_line\",rightAngle2:\"arrow_right_next_forward_chevron_line\",collapse_bottom_line:\"arrow_down_dropdown_maximize_chevron_line\",arrowUp2:\"arrow_up_dropdown_minimize_chevron_line\",longArrowUp2:\"long_arrow_up_top_increase_solid\",arrow_left_circle_line:\"arrow_left_backward_circle_line\",arrow_bottom_circle_line:\"arrow_down_bottom_downward_circle_line\",arrow_right_circle_line:\"arrow_right_forward_circle_line\",arrow_top_circle_line:\"arrow_up_top_upward_circle_line\",close_circle_line:\"cross_close_x_minimize_circle_line\",close_line:\"cross_x_close_minimize_line\",arrow_down_line:\"arrow_down_bottom_downward_line\",leftArrowLg:\"arrow_left_backward_line\",rightArrowLg:\"arrow_left_forward_line\",arrow_up_line:\"long_arrow_up_top_increase_line\",down_solid:\"arrow_down_bottom_downward_circle_solid\",right_solid:\"arrow_right_forward_circle_solid\",left_solid:\"arrow_left_backward_circle_solid\",up_solid:\"arrow_up_top_upward_circle_solid\",wrong_solid:\"cross_close_x_minimize_circle_solid\",bottom_right_line:\"arrow_move_up_right_line\",bottom_left_line:\"arrow_move_up_left_line\",top_left_angle_line:\"arrow_move_down_left_line\",top_right_line:\"arrow_move_down_right_line\",at_line:\"at_a_mail_line\",refresh:\"refresh_reset_cycle_loop_infinity_line\",cart_line:\"shopping_cart_line\",cart_solid:\"add_plus_shopping_cart_solid\",cog_line:\"settings_tool_function_line\",cog_solid:\"settings_tool_function_solid\",correct_solid:\"right_circle_solid\",dot_solid:\"dot_circle_solid\",clock:\"clock_reading_time_1_line.svg\",book:\"book_line\",download_line:\"download_1_line\",download_solid:\"download_1_solid\",downlod_bottom_solid:\"download_1_solid\",eye:\"view_count_show_visible_eye_open_2_line\",hidden_line:\"hidden_hide_invisible_line\",home_line:\"home_house_line\",home_solid:\"home_house_solid\",location_line:\"location_gps_map_line\",location_solid:\"location_gps_map_solid\",love_line:\"heart_love_wishlist_favourite_line\",love_solid:\"heart_love_wishlist_favourite_solid\",notice_circle_solid:\"warning_circle_solid\",notice_solid:\"warning_triangle_solid\",play_line:\"play_media_video_circle_line\",plus2:\"\",videoplay:\"right_triangle_angle_play_arrow_forward_solid\",left_angle_solid:\"left_triangle_angle_arrow_backward_solid\",caretArrow:\"caret_up_top_triangle_angle_arrow_upward_solid\",rectangle_solid:\"square_rounded_solid\",restriction_line:\"restriction_no_stop_line\",right_circle_line:\"correct_save_check_circle_line\",save_line:\"correct_save_check_line\",search_line:\"search_magnify_line\",search_solid:\"search_magnify_solid\",triangle_solid:\"triangle_shape_solid\",warning_circle_line:\"warning_circle_line\",warning_triangle_line:\"warning_triangle_line\",upload_solid:\"upload_1_solid\",cat1:\"category_file_documents_1_solid\",cat2:\"category_book_line\",cat3:\"category_file_documents_2_line\",cat4:\"category_file_documents_3_line\",cat5:\"category_file_documents_3_solid\",cat6:\"category_file_documents_4_line\",cat7:\"category_book_line\",commentCount1:\"messege_comment_1_line\",commentCount2:\"messege_comment_3_solid\",commentCount3:\"messege_comment_3_line\",commentCount4:\"messege_comment_6_line\",commentCount5:\"messege_comment_7_line\",commentCount6:\"messege_comment_8_line\",comment:\"messege_comment_4_line\",date1:\"calendar_date_4_line\",date2:\"calendar_date_1_solid\",date3:\"calendar_date_2_line\",date4:\"calendar_date_4_solid\",date5:\"calendar_date_3_line\",calendar:\"calendar_date_3_line\",readingTime1:\"clock_reading_time_3_line\",readingTime2:\"clock_reading_time_2_line\",readingTime3:\"book_reading_time_line\",readingTime4:\"clock_reading_time_1_line\",readingTime5:\"hourglass_timer_time_line\",tag1:\"tag_bookmark_save_favourite_mark_discount_sale_line\",tag2:\"price_tag_label_category_sale_discount_solid\",tag3:\"price_tag_label_category_sale_discount_line\",tag4:\"price_tag_offer_sale_coupon_solid\",tag5:\"price_tag_label_category_sale_discount_line\",tag6:\"growth_increase_up_solid\",viewCount1:\"view_count_show_visible_eye_open_1_line\",viewCount2:\"view_count_show_visible_eye_open_2_line\",viewCount3:\"view_count_show_visible_eye_open_3_line\",viewCount4:\"view_count_show_visible_eye_open_4_solid\",viewCount5:\"view_count_show_visible_eye_open_5_solid\",viewCount6:\"view_count_show_visible_eye_open_5_solid\",author1:\"author_user_human_1_line\",author2:\"author_user_human_4_line\",author3:\"author_user_human_4_solid\",author4:\"author_user_human_4_line\",author5:\"author_user_human_3_solid\",user:\"author_user_human_3_line\",desktop:\"desktop_monitor_computer_line\",laptop:\"laptop_computer_line\",tablet:\"tablet_ipad_pad_line\",mobile:\"mobile_smartphone_phone_line\",angry_line:\"angry_emoji_line\",angry_solid:\"angry_emoji_solid\",confused_line:\"confused_emoji_line\",confused_solid:\"confused_emoji_solid\",happy_line:\"happy_emoji_line\",happy_solid:\"happy_emoji_solid\",smile_line:\"smile_emoji_line\",smile_solid:\"smile_emoji_solid\",share_line:\"social_community_line\",share:\"share_social_solid\",apple_solid:\"apple_logo_icon_solid\",android_solid:\"android_logo_icon_solid\",google_solid:\"google_logo_icon_solid\",messenger:\"messenger_logo_icon_solid\",microsoft_solid:\"microsoft_logo_icon_solid\",mail:\"mail_email_messege_solid\",media_document:\"media_document\",facebook:\"facebook_logo_icon_solid\",twitter:\"twitter_x_logo_icon_line\",arrowDown2:\"arrow_down_dropdown_maximize_chevron_line\",setting:\"settings_tool_function_solid\",right_circle_solid:\"correct_save_check_circle_solid\",full_screen:\"full_screen_corners_out_solid\",zoom_in:\"zoom_in_magnifying_glass_plus_line\",zoom_out:\"zoom_out_magnifying_glass_minus_line\",gallery_indicator:\"gallery_indicator_image_solid\",ascending:\"sort_ascending_order_line\",descending:\"sort_descending_order_line\",unlink:\"unlink_link_break_line\",rocket:\"rocket_fly_boost_launch_pro_solid\",unlock:\"unlocked_open_security_solid\",connect:\"plugin_connect_socket_integration_line\",leftAngle:\"arrow_left_previous_backward_chevron_line\",rightAngle:\"right_triangle_angle_play_arrow_forward_line\",link:\"link_chains_line\",subtract:(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"#070707\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),skype:\"skype_logo_icon_solid\",updated_link:\"link_chains_line\",tiktok_lite_solid:\"tiktok_logo_icon_circle_line\",tiktok_solid:\"tiktok_logo_icon_solid\",instagram_solid:\"instagram_logo_icon_solid\",linkedin:\"linkedin_logo_icon_solid\",whatsapp:\"whatsapp_logo_icon_solid\",wordpress_lite_solid:\"wordpress_logo_icon_solid\",wordpress_solid:\"wordpress_logo_icon_2_solid\",youtube_solid:\"youtube_logo_icon_solid\",pinterest:\"pinterest_logo_icon_solid\",reddit:\"reddit_logo_icon_solid\",five_star_line:\"star_rating_line\",rightAngleBold:\"arrow_right_next_forward_chevron_line\",leftAngleBold:\"arrow_left_previous_backward_chevron_line\",reset_left_line:\"refresh_reset_cycle_loop_infinity_line\",hamicon_1:\"hamicon_1_line\",hamicon_2:\"hemicon_2_line\",hamicon_3:\"hemicon_3_line\",hamicon_4:\"hamicon_5_line\",hamicon_5:\"hemicon_2_solid\",hamicon_6:\"hamicon_6_line\"});const l=i.toObject(),s=((0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"#070707\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),l.skype_logo_icon_solid,l.link_chains_line,l.facebook_logo_icon_solid,l.twitter_x_logo_icon_line,l.tiktok_logo_icon_circle_line,l.tiktok_logo_icon_solid,l.instagram_logo_icon_solid,l.linkedin_logo_icon_solid,l.whatsapp_logo_icon_solid,l.wordpress_logo_icon_solid,l.wordpress_logo_icon_2_solid,l.youtube_logo_icon_solid,l.pinterest_logo_icon_solid,l.reddit_logo_icon_solid,l.google_logo_icon_solid,l.link_chains_line,l.share_social_solid,i.toCurrentIconObj(),l)},1900:(e,t,n)=>{\"use strict\";n.d(t,{e:()=>r});var a=n(7294);const r={add_plus_shopping_cart_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M13.745 7.5v4M11.75 9.505h4\"})),android_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6.5 9.5a5.5 5.5 0 1 1 11 0V17a2 2 0 0 1-2 2h-7a2 2 0 0 1-2-2V9.5ZM20 11v6M4 11v6\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"m14 4 1.5-2M10 4 8.5 2m-2 8.5h11m-8 8.5v3m5.5-3v3M10.49 8h.01m2.99 0h.01\"})),angry_emoji_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7 9.5c1 0 2.69.254 2.964 1.231m0 0A.988.988 0 0 1 10 11c0 1.5-2.072-.037-.036-.269ZM17 9.5c-1 0-2.69.254-2.964 1.231m0 0A.99.99 0 0 0 14 11c0 1.5 2.072-.037.036-.269Z\"}),(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8 17c1.5-3 6.5-3 8 0\"})),apple_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M19.489 8.963c-.114.089-2.127 1.23-2.127 3.768 0 2.936 2.561 3.975 2.638 4-.012.064-.407 1.423-1.35 2.808-.841 1.219-1.72 2.435-3.056 2.435-1.337 0-1.68-.781-3.223-.781-1.504 0-2.039.807-3.261.807-1.223 0-2.075-1.128-3.056-2.512C4.918 17.86 4 15.335 4 12.938 4 9.09 6.484 7.05 8.93 7.05c1.298 0 2.381.859 3.197.859.776 0 1.987-.91 3.465-.91.56 0 2.572.051 3.897 1.963ZM14.59 4.415c.533-.64.91-1.527.91-2.415 0-.123-.01-.248-.033-.349-.867.033-1.9.585-2.522 1.315-.489.561-.945 1.45-.945 2.349 0 .135.022.27.033.314.055.01.144.022.233.022.778 0 1.758-.527 2.323-1.236Z\"})),arrow_down_bottom_downward_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15.5 13 12 16.5m0 0L8.5 13m3.5 3.5v-9\"})),arrow_down_bottom_downward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m3.5 12 8.5 8.5m0 0 8.5-8.5M12 20.5v-17\"})),arrow_down_bottom_left_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 6v12m0 0h12M6 18 18 6\"})),arrow_down_bottom_right_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M18 6v12m0 0H6m12 0L6 6\"})),arrow_down_dropdown_maximize_chevron_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m6 9 6 6 6-6\"})),arrow_left_backward_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M11 15.5 7.5 12m0 0L11 8.5M7.5 12h9\"})),arrow_left_backward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 20.5 3.5 12m0 0L12 3.5M3.5 12h17\"})),arrow_left_forward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m12 20.5 8.5-8.5m0 0L12 3.5m8.5 8.5h-17\"})),arrow_left_previous_backward_chevron_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m15 18-6-6 6-6\"})),arrow_move_down_left_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 6v3a4 4 0 0 1-4 4H2m0 0 5 5m-5-5 5-5\"})),arrow_move_down_right_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 6v3a4 4 0 0 0 4 4h16m0 0-5 5m5-5-5-5\"})),arrow_move_up_left_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 18v-3a4 4 0 0 0-4-4H2m0 0 5-5m-5 5 5 5\"})),arrow_move_up_right_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 18v-3a4 4 0 0 1 4-4h16m0 0-5-5m5 5-5 5\"})),arrow_right_forward_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m13 8.5 3.5 3.5m0 0L13 15.5m3.5-3.5h-9\"})),arrow_right_next_forward_chevron_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m9 18 6-6-6-6\"})),arrow_up_dropdown_minimize_chevron_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m18 15-6-6-6 6\"})),arrow_up_top_left_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 18V6m0 0h12M6 6l12 12\"})),arrow_up_top_right_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M18 18V6m0 0H6m12 0L6 18\"})),arrow_up_top_upward_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.5 11 12 7.5m0 0 3.5 3.5M12 7.5v9\"})),arrow_up_top_upward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3.5 12 12 3.5m0 0 8.5 8.5M12 3.5v17\"})),at_a_mail_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16 8v7a2 2 0 0 0 2 2 4 4 0 0 0 4-4v-1c0-5.523-4.477-10-10-10S2 6.477 2 12s4.477 10 10 10c1.821 0 3.53-.487 5-1.338M16 12a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z\"})),author_user_human_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"7\",r:\"4\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4.5 20.533A6.533 6.533 0 0 1 11.033 14h1.934a6.533 6.533 0 0 1 6.533 6.533.467.467 0 0 1-.467.467H4.967a.467.467 0 0 1-.467-.467Z\"})),author_user_human_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16.5 8a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 20.5a8 8 0 1 0-16 0\"})),author_user_human_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"7\",r:\"4\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 21v-3a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v3\"})),author_user_human_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"7\",r:\"4\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 13.5c-3.283 0-6.156 1.585-7.728 3.776C2.984 19.07 4.791 21 7 21h10c2.209 0 4.015-1.93 2.727-3.724C18.155 15.086 15.283 13.5 12 13.5Z\"})),book_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M9.5 18.5v-3.092a3 3 0 0 1 .504-1.664l1.219-1.828a.934.934 0 0 1 1.554 0l1.22 1.828a3 3 0 0 1 .503 1.664V18.5m-5-2.5h5\"})),book_reading_time_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7 19h9M4 19V7a3 3 0 0 1 3-3h3M4 19a3 3 0 0 0 3 3h11M4 19a3 3 0 0 1 3-3h11v-4\"}),(0,a.createElement)(\"circle\",{cx:\"14.5\",cy:\"7.5\",r:\"5.5\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M14.5 5v3l2 1\"})),calendar_date_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18M8 13.5h.01M8 17h.01M12 13.5h.01M12 17h.01M16 13.5h.01M16 17h.01\"})),calendar_date_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 3h15v16a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2v-1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 3h15l-3.595 13.032a2 2 0 0 1-1.928 1.468H3.313a1 1 0 0 1-.964-1.266L6 3Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M11 13.5 12.5 8l-2 1m-1 4.5h3m4-12-.5 3m-2.5-3-.5 3m-2.5-3-.5 3\"})),calendar_date_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM8 2v3m8-3v3M3 9h18\"})),calendar_date_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5.5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-14ZM7.5 2v3M12 2v3m4.5-3v3M8 13.5h.01M8 10h.01M8 17h.01M12 13.5h.01M12 10h.01M12 17h.01M16 13.5h.01M16 10h.01M16 17h.01\"})),caret_up_top_triangle_angle_arrow_upward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12.8 6.067a1 1 0 0 0-1.6 0l-7 9.333A1 1 0 0 0 5 17h14a1 1 0 0 0 .8-1.6l-7-9.333Z\"})),category_book_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 5v14a3 3 0 0 0 3 3h13V8H7a3 3 0 0 1-3-3Zm0 0a3 3 0 0 1 3-3h13M7 5h10\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 11h-5v3h5M7.5 15.5h3m-3 3h3\"})),category_file_documents_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16.5 7H5a2 2 0 1 1 0-4h16v6.5L19.5 11v7h-3\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5v16h13.5V7m-10 7.5h3m-3 3h3\"})),category_file_documents_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M5 20h16a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12Zm0 0H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h11.172a2 2 0 0 1 1.414.586L19 7\"})),category_file_documents_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M21 20H6a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1h7.586a1 1 0 0 0 .707-.293l2.414-2.414A1 1 0 0 1 17.414 7H21a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M20 7V5a1 1 0 0 0-1-1h-3.586a1 1 0 0 0-.707.293l-2.414 2.414a1 1 0 0 1-.707.293H3a1 1 0 0 0-1 1v9a1 1 0 0 0 1 1h2\"})),category_file_documents_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 20V5a1 1 0 0 1 1-1h5.586a1 1 0 0 1 .707.293L11.5 6.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8 6.5h10a2 2 0 0 1 2 2V11M6 11l-4 9h16l4-9H6Z\"})),clock_reading_time_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 6v6l4 2\"})),clock_reading_time_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M12 2v1.5M2 12h1.5M12 22v-1.5M22 12h-1.5M13 13 9.5 9.5M11 13l5-5\"})),clock_reading_time_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 13.5V16a6 6 0 0 1-6 6H2v-7a6 6 0 0 1 6-6h1\"}),(0,a.createElement)(\"circle\",{cx:\"15.5\",cy:\"8.5\",r:\"6.5\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15.5 5.111V9l2 1.111M6 15h3m-3 3h7\"})),confused_emoji_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.5 10v1.5m7-1.5v1.5M9 17c.778-.839 3.267-2.516 7-1.845\"})),correct_save_check_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m8 12.5 2.5 2.5L16 9\"})),correct_save_check_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m4.5 13 5 5 10-12\"})),cross_close_x_minimize_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m8 8 8 8m0-8-8 8\"})),cross_x_close_minimize_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"m6 6 6 6m0 0 6 6m-6-6 6-6m-6 6-6 6\"})),desktop_monitor_computer_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2ZM8 21h8m-4-4v4m0-7.5h.01\"})),dot_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10S17.523 2 12 2Z\",clipRule:\"evenodd\"})),download_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 15v4c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2v-4m-4-6-5 5-5-5m5 3.8V2.5\"})),download_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 13v8m0 0-2.5-2.5M12 21l2.5-2.5\"})),facebook_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M16.5 8H14a2 2 0 0 0-2 2v11m-2-7h5\"})),google_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m21.882 10.459-.103-.428h-9.485v3.938h5.667c-.588 2.741-3.318 4.184-5.549 4.184-1.623 0-3.333-.67-4.465-1.746a6.25 6.25 0 0 1-1.4-2.021 6.152 6.152 0 0 1-.502-2.393c0-1.66.76-3.318 1.865-4.41 1.106-1.091 2.776-1.702 4.437-1.702 1.902 0 3.264.99 3.774 1.442l2.853-2.784C18.137 3.818 15.838 2 12.254 2 9.49 2 6.84 3.039 4.903 4.933 2.99 6.8 2 9.497 2 12s.937 5.066 2.79 6.946C6.77 20.952 9.574 22 12.46 22c2.627 0 5.117-1.01 6.892-2.842 1.745-1.803 2.647-4.3 2.647-6.915 0-1.101-.113-1.755-.118-1.784Z\"})),growth_increase_up_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m20.2 7.8-7.7 7.7-4-4-5.7 5.7\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15 7h6v6\"})),hamicon_5_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M5 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 6a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 20a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm7 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"})),hamicon_6_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0-7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z\"})),happy_emoji_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.5 8v1.5m7-1.5v1.5M12 18a5 5 0 0 0 5-5H7a5 5 0 0 0 5 5Z\"})),heart_love_wishlist_favourite_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m4.098 13.848 7.52 7.519a.542.542 0 0 0 .765 0l7.52-7.52a5.678 5.678 0 0 0 0-8.028 5.047 5.047 0 0 0-7.138 0l-.711.71a.076.076 0 0 1-.107 0l-.711-.71a5.047 5.047 0 0 0-7.138 0 5.678 5.678 0 0 0 0 8.029Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16.334 7.48c.553 0 1.107.21 1.53.633.547.548.78 1.292.695 2.006\"})),hemicon_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M4 5h16M4 12h11.5M4 19h16\"})),hemicon_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M4 5h16M4 12h16M4 19h16\"})),hemicon_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M4 5h16M4 12h11.5M4 19h8\"})),hidden_hide_invisible_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M17.862 5.999c-1.61-1.148-3.576-2-5.86-2-7 0-11 8-11 8s1.764 3.529 5 5.899m3 1.596a9.213 9.213 0 0 0 3 .505c7 0 11-8 11-8s-.867-1.734-2.5-3.587\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M14 9.764A3 3 0 0 0 9.764 14m5.21-1.601a3.002 3.002 0 0 1-2.59 2.577M3.6 20.4 20.4 3.6\"})),home_house_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m3.671 9.403 7-6.222a2 2 0 0 1 2.658 0l7 6.222A2 2 0 0 1 21 10.898V19a2 2 0 0 1-2 2h-3.5a1 1 0 0 1-1-1v-5a1 1 0 0 0-1-1h-3a1 1 0 0 0-1 1v5a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2v-8.102a2 2 0 0 1 .671-1.495Z\"})),hourglass_timer_time_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 2v4.93a2 2 0 0 0 .89 1.664l4.555 3.036a1 1 0 0 0 1.11 0l4.554-3.036A2 2 0 0 0 18 6.93V2M6 22v-4.93a2 2 0 0 1 .89-1.664l4.555-3.036a1 1 0 0 1 1.11 0l4.554 3.036A2 2 0 0 1 18 17.07V22\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 2h16M4 22h16M9.5 19.5h5M11 17h2\"})),instagram_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"}),(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"2\",d:\"M17 7h.01\"})),laptop_computer_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3.5 6a2 2 0 0 1 2-2h13a2 2 0 0 1 2 2v10h-17V6Zm7 1h3M2 16h20v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-2Z\"})),left_align_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M3 3h18M3 21h8m-8-6h18M3 9h8\"})),left_triangle_angle_arrow_backward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6.067 12.8a1 1 0 0 1 0-1.6l9.333-7A1 1 0 0 1 17 5v14a1 1 0 0 1-1.6.8l-9.333-7Z\"})),linkedin_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M7.75 10.25v6\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"2\",d:\"M7.75 7.75h.01\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M11.25 10.25v6m5 0v-3.5a2.5 2.5 0 0 0-5 0\"})),link_chains_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m14.011 17.028-2.514 2.514a4.977 4.977 0 1 1-7.04-7.04L6.973 9.99M9.99 6.973l2.514-2.514a4.978 4.978 0 1 1 7.04 7.04l-2.515 2.513M9.5 14.5l5-5\"})),location_gps_map_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"10\",r:\"3\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 10.205C20 17.385 12 22 12 22s-8-4.615-8-11.795C4 5.674 7.582 2 12 2s8 3.674 8 8.205Z\"})),long_arrow_up_top_increase_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 21V3m0 0L6 9m6-6 6 6\"})),mail_email_messege_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m6 8 4.8 3.6a2 2 0 0 0 2.4 0L18 8\"})),media_document_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M5 21h14a2 2 0 0 0 2-2V8.828a2 2 0 0 0-.586-1.414l-3.828-3.828A2 2 0 0 0 15.172 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2ZM8 9h4m-4 3h8m-8 3h6\"})),messege_comment_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 7v15l5-4h13a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Zm7 3h4m-4 3h6\"})),messege_comment_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM9 9h4m-4 3h6\"})),messege_comment_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2ZM8 11v-1m4 1v-1m4 1v-1\"})),messege_comment_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M20 4H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h4.5v4l5-4H20a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z\"})),messege_comment_5_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 12a9 9 0 1 1 9 9H3v-9Zm6-1.5h6m-6 3h6\"})),messege_comment_6_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16 16a4 4 0 0 1-4 4H2v-6a4 4 0 0 1 4-4\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M6 9a5 5 0 0 1 5-5h6a5 5 0 0 1 5 5v7H11a5 5 0 0 1-5-5V9Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M11 8.5h4m-4 3h6\"})),messege_comment_7_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 20c5.523 0 10-3.806 10-8.5S17.523 3 12 3 2 6.806 2 11.5c0 2.78 1.571 5.25 4 6.8v3.2l3.211-1.835A11.66 11.66 0 0 0 12 20Zm-3-9.5h6m-5 3h4\"})),messege_comment_8_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M14.5 18.703c-4.142 0-7.5-3.292-7.5-7.352C7 7.291 10.358 4 14.5 4c4.142 0 7.5 3.291 7.5 7.351 0 2.405-1.178 4.54-3 5.882V20l-2.408-1.587a7.645 7.645 0 0 1-2.092.29Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M9.352 5.55A7.131 7.131 0 0 0 8.5 5.5C4.91 5.5 2 8.174 2 11.473c0 1.954 1.021 3.69 2.6 4.779V18.5l2.087-1.29a7.04 7.04 0 0 0 2.813.166c.169-.024.336-.054.5-.09\"})),messenger_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12c0 1.834.494 3.553 1.355 5.03L2 22l4.818-1.445A9.954 9.954 0 0 0 12 22Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m7 13.75 3-3 3.5 3 3.5-3.5\"})),microsoft_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm9-2v18m-9-9h18\"})),middle_align_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M3 3h18M8 21h8M3 15h18M8 9h8\"})),mobile_smartphone_phone_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M17 2H7a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6.5 3h3\"})),pause_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h2.5a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Zm11.5 0a2 2 0 0 1 2-2H19a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-2.5a2 2 0 0 1-2-2V5Z\"})),pinterest_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 11 8 21m1.818-4.5A5 5 0 1 0 7.416 14\"}),(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"})),play_media_video_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 2c5.522 0 10 4.477 10 10s-4.478 10-10 10C6.477 22 2 17.523 2 12S6.477 2 12 2Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m16 12-6-4v8l6-4Z\"})),price_tag_label_category_sale_discount_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12.328 2.5H20.5a1 1 0 0 1 1 1v8.172a2 2 0 0 1-.586 1.414l-8 8a2 2 0 0 1-2.829 0l-7.171-7.172a2 2 0 0 1 0-2.828l8-8a2 2 0 0 1 1.414-.586Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M18 7.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m8 13 3 3\"})),price_tag_offer_sale_coupon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15.5 5.5h-3.672a2 2 0 0 0-1.414.586l-6.5 6.5a2 2 0 0 0 0 2.828l6.171 6.172a2 2 0 0 0 2.829 0l6.5-6.5A2 2 0 0 0 20 13.672V6.5a1 1 0 0 0-1-1h-.5M8 14.5l3 3m-.5-4.5 2 2\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M16 9c4.5-2.5 1.655-7.99-2.766-6.817-2.752.73-5.916 1.27-9.234 0\"})),reddit_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M12 9c-4.97 0-9 2.91-9 6.5S7.03 22 12 22s9-2.91 9-6.5S16.97 9 12 9Zm0 0V6a2 2 0 0 1 2-2h3m3.506 9.37a2.25 2.25 0 1 0-2.856-2.93M17 4a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM3.494 13.37a2.25 2.25 0 1 1 2.856-2.93\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M8.5 16.75c1.5 1.5 5.5 1.5 7 0M15 13h.01M9 13h.01\"})),refresh_reset_cycle_loop_infinity_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M21 12a9 9 0 0 1-17 4.127M3 12a9 9 0 0 1 17-4.127M20 3v5h-5M4 21v-5h5\"})),restriction_no_stop_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M5 19 19 5\"})),right_align_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeWidth:\"1.5\",d:\"M3 3h18m-8 18h8M3 15h18m-8-6h8\"})),right_triangle_angle_play_arrow_forward_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M17.933 12.8a1 1 0 0 0 0-1.6L8.6 4.2A1 1 0 0 0 7 5v14a1 1 0 0 0 1.6.8l9.333-7Z\"})),search_magnify_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm10 2-4.35-4.35\"})),settings_tool_function_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M9.55 2.778A1 1 0 0 1 10.523 2h2.953a1 1 0 0 1 .975.778l.355 1.562a2 2 0 0 0 2.538 1.468l1.627-.5a1 1 0 0 1 1.155.447l1.456 2.464a1 1 0 0 1-.193 1.253l-1.16 1.04a2 2 0 0 0 0 2.978l1.16 1.038a1 1 0 0 1 .193 1.254l-1.456 2.464a1 1 0 0 1-1.155.447l-1.627-.5a2 2 0 0 0-2.538 1.468l-.355 1.56a1 1 0 0 1-.976.779h-2.952a1 1 0 0 1-.975-.778l-.355-1.562a2 2 0 0 0-2.538-1.468l-1.628.5a1 1 0 0 1-1.154-.446l-1.456-2.464a1 1 0 0 1 .193-1.254l1.16-1.038a2 2 0 0 0 0-2.979L2.61 9.472a1 1 0 0 1-.194-1.253l1.456-2.464a1 1 0 0 1 1.155-.447l1.628.5A2 2 0 0 0 9.194 4.34l.355-1.562Z\"}),(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"3\",stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"})),share_social_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.968 10.591a3.15 3.15 0 1 0 0 2.818m0-2.818c.212.424.332.902.332 1.409s-.12.985-.332 1.409m0-2.818 7.013-3.507M8.968 13.41l7.013 3.507m0-9.832a2.7 2.7 0 1 0 4.637-2.769 2.7 2.7 0 0 0-4.637 2.77Zm0 9.832a2.7 2.7 0 1 0 4.637 2.769 2.7 2.7 0 0 0-4.637-2.77Z\"})),shopping_cart_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 3h2.128a1 1 0 0 1 .991.863l1.762 12.774a1 1 0 0 0 .99.863H18.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.5 19.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Zm9.75 0a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0ZM5.5 5h15.304a1 1 0 0 1 .984 1.177l-1.152 6.403a1 1 0 0 1-.898.82L7 14.5\"})),skype_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 3c-.415 0-.823.028-1.223.082a5.5 5.5 0 0 0-7.695 7.695 9 9 0 0 0 10.14 10.14 5.5 5.5 0 0 0 7.695-7.695A9 9 0 0 0 12 3Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15 10c0-1-1-2-3-2s-3 1-3 2c0 2.5 6 1.5 6 4 0 1-1 2-3 2s-3-1-3-2\"})),smile_emoji_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M8.5 8.5V10m7-1.5V10m-8.271 4a5.002 5.002 0 0 0 9.542 0\"})),social_community_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M14.632 5.032a8.446 8.446 0 0 1 5.79 8.024 8.5 8.5 0 0 1-.18 1.74M9.368 5.031a8.446 8.446 0 0 0-5.79 8.024c.001.596.063 1.178.18 1.74m13.915 4.5c.458.387 1.05.62 1.695.62A2.635 2.635 0 0 0 22 17.279a2.635 2.635 0 0 0-2.632-2.64 2.635 2.635 0 0 0-2.631 2.64c0 .81.364 1.534.936 2.018Zm0 0A8.378 8.378 0 0 1 12 21.5a8.378 8.378 0 0 1-5.673-2.204m0 0a2.636 2.636 0 0 0 .936-2.018 2.635 2.635 0 0 0-2.631-2.64A2.635 2.635 0 0 0 2 17.279a2.635 2.635 0 0 0 2.632 2.639c.645 0 1.237-.234 1.695-.62ZM14.632 5.14A2.635 2.635 0 0 1 12 7.778a2.635 2.635 0 0 1-2.632-2.64A2.635 2.635 0 0 1 12 2.5a2.635 2.635 0 0 1 2.632 2.639Z\"})),square_rounded_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"})),star_rating_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.579\",d:\"M11.016 3.125c.387-.833 1.58-.833 1.968 0l2.136 4.602c.158.34.482.573.856.617l5.067.597c.918.108 1.286 1.233.608 1.856l-3.748 3.444a1.07 1.07 0 0 0-.326.998l.994 4.974c.18.9-.785 1.595-1.592 1.147l-4.45-2.475a1.09 1.09 0 0 0-1.059 0L7.02 21.36c-.806.448-1.771-.247-1.591-1.147l.994-4.974a1.07 1.07 0 0 0-.326-.998l-3.749-3.444c-.677-.623-.309-1.748.609-1.856l5.067-.597c.374-.044.698-.278.856-.617l2.136-4.602Z\"})),stopwatch_reading_time_timer_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M21 13a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 7.5V13l3.5 2.5M12 4V1.5m-2 0h4M21 6l-2-2\"})),tablet_ipad_pad_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M18 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-6 3h.01\"})),tag_bookmark_save_favourite_mark_discount_sale_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M4 4v18l6.8-5.1a2 2 0 0 1 2.4 0L20 22V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2Z\"})),tiktok_logo_icon_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208\"})),tiktok_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeWidth:\"1.5\",d:\"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.182 11.083C8.425 11.083 7 12.52 7 14.292S8.425 17.5 10.182 17.5s3.182-1.436 3.182-3.208V6.5c0 1.375 1.363 3.208 3.636 3.208\"})),triangle_rounded_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997Z\"})),triangle_shape_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M2 20 12 3l10 17H2Z\"})),twitter_x_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"m3 21 7.548-7.548M21 3l-7.548 7.548m0 0L8 3H3l7.548 10.452m2.904-2.904L21 21h-5l-5.452-7.548\"})),upload_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7.822 8.067A5 5 0 0 0 6 17.9m12.633-5.658A7 7 0 1 0 5.248 8.147M19 9.756a4.502 4.502 0 0 1-.195 8.552M12 21v-8m0 0-2.5 2.5M12 13l2.5 2.5\"})),view_count_show_visible_eye_open_1_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 15a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z\"})),view_count_show_visible_eye_open_2_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z\"})),view_count_show_visible_eye_open_3_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M1 12c6-8.667 16-8.667 22 0-6 8.667-16 8.667-22 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M18 12a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M15 12a3 3 0 0 0-3-3\"})),view_count_show_visible_eye_open_4_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 9c-1.996-3.913-6-6-10-6S3.996 5.087 2 9\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 21a7 7 0 0 0 6.308-10.038 2.5 2.5 0 1 1-3.27-3.27A7 7 0 1 0 12 21Z\"})),view_count_show_visible_eye_open_5_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 17a5 5 0 0 0 5-5h-5V7a5 5 0 0 0 0 10Z\"})),warning_circle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm0-14v4.5m0 3v.5\"})),warning_triangle_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.274 4.004a1.986 1.986 0 0 1 3.452 0L21.732 18c.763 1.334-.195 2.999-1.726 2.999H3.994c-1.531 0-2.49-1.665-1.726-2.999l8.006-13.997ZM12 9v4.5m0 3v.5\"})),whatsapp_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12.806 14.02c-.849-.282-1.532-.824-1.768-1.06-.236-.235-.778-.919-1.06-1.767l1.202-1.91L9.553 5.96c-.943 0-3.04.778-3.323 3.323-.283 2.546 1.532 5.068 2.475 6.01.942.944 3.464 2.759 6.01 2.476 2.546-.283 3.323-2.381 3.323-3.324l-3.323-1.626-1.91 1.202Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10a9.953 9.953 0 0 1-5.183-1.446L2 22l1.445-4.818A9.953 9.953 0 0 1 2 12C2 6.477 6.477 2 12 2Z\"})),wordpress_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M7 7.454H3.818\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Zm-6.137 9.318 5.228-13.636m-3.864 9.772-4.09-10m-3.41 0 5.455 13.864\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10.117 17.322 6.09 7.454H3.223m-.303.605 5.217 13.26\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M9.045 7.454h5M8.59 21.318l3.183-8.409M19.5 5.41h-.334a2.273 2.273 0 0 0-2.123 3.083l1.775 4.643\"})),youtube_logo_icon_line:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M10 15V9l5 3-5 3Z\"}),(0,a.createElement)(\"path\",{stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"1.5\",d:\"M19.193 4.352c-3.627-.47-10.402-.47-14.213.004-1.456.18-2.57 1.446-2.757 3.168-.297 2.719-.297 6.233 0 8.952.188 1.722 1.301 2.988 2.757 3.168 3.811.473 10.586.475 14.213.004 1.36-.177 2.375-1.365 2.562-2.972.327-2.811.327-6.541 0-9.352-.187-1.607-1.202-2.795-2.562-2.972Z\"})),full_screen_corners_out_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3 8.5V5C3 3.89543 3.89543 3 5 3H8.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M3 15.5V19C3 20.1046 3.89543 21 5 21H8.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M21 8V5C21 3.89543 20.1046 3 19 3H15.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M21 15.5V19C21 20.1046 20.1046 21 19 21H15.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"})),zoom_in_magnifying_glass_plus_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M21.0004 21L16.6504 16.65\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M10.995 8V14M8 11.005L14 11.005\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"})),zoom_out_magnifying_glass_minus_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M21.0004 21L16.6504 16.65\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8 11.005L14 11.005\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"})),plugin_connect_socket_integration_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M21.5 2.5L18.5 5.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M18 12.9999L20.5858 10.4142C21.3668 9.63311 21.3668 8.36678 20.5858 7.58573L16.4142 3.41416C15.6332 2.63311 14.3668 2.63311 13.5858 3.41416L11 5.99994\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M5.9997 11L3.41391 13.5858C2.63286 14.3668 2.63286 15.6332 3.41391 16.4142L7.58549 20.5858C8.36653 21.3668 9.63286 21.3668 10.4139 20.5858L12.9997 18\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M2.5 21.5L5.5 18.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4.5 9.5L14.5 19.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M9.5 4.5L19.5 14.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M7 12L9.5 9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12 17L14.5 14.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),rocket_fly_boost_launch_pro_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M20.8991 2.5H21.5V3.10086C21.5 6.28346 19.7357 9.83572 17.4853 12.0862L13.5714 16L8 10.4286L11.9139 6.51473C14.1643 4.26429 17.7165 2.5 20.8991 2.5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M18.5 11L19 17L15 21L13.5 16\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8 10.5L3 9L7 5L13 5.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M9 15L3.5 20.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M11.5 17.5L9 20\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.5 12.5L4 15\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.4902 6.5H17.5002\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),gallery_indicator_image_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3 5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V13C21 14.1046 20.1046 15 19 15H5C3.89543 15 3 14.1046 3 13V5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M21.0002 12.6716L19.4144 11.0858C18.6333 10.3047 17.367 10.3047 16.5859 11.0858L15.9144 11.7574C15.1333 12.5384 13.867 12.5384 13.0859 11.7574L10.4144 9.08579C9.63332 8.30474 8.36699 8.30474 7.58594 9.08579L3.33594 13.3358\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M16.25 7C16.25 7.82843 15.5784 8.5 14.75 8.5C13.9216 8.5 13.25 7.82843 13.25 7C13.25 6.17157 13.9216 5.5 14.75 5.5C15.5784 5.5 16.25 6.17157 16.25 7Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M3 18.5C3 17.9477 3.44772 17.5 4 17.5H6.25C6.80228 17.5 7.25 17.9477 7.25 18.5V20C7.25 20.5523 6.80228 21 6.25 21H4C3.44772 21 3 20.5523 3 20V18.5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M10 18.5C10 17.9477 10.4477 17.5 11 17.5H13.25C13.8023 17.5 14.25 17.9477 14.25 18.5V20C14.25 20.5523 13.8023 21 13.25 21H11C10.4477 21 10 20.5523 10 20V18.5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M17 18.5C17 17.9477 17.4477 17.5 18 17.5H20C20.5523 17.5 21 17.9477 21 18.5V20C21 20.5523 20.5523 21 20 21H18C17.4477 21 17 20.5523 17 20V18.5Z\",stroke:\"currentColor\",strokeWidth:\"1.5\"})),unlocked_open_security_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4 12C4 10.8954 4.89543 10 6 10H18C19.1046 10 20 10.8954 20 12V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V12Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17 10V7C17 4.23858 14.7615 2 12 2C10.1493 2 8.53347 3.0055 7.66895 4.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12 15.5L12 16.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),unlink_link_break_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M14.0113 17.0281L11.4972 19.5421C9.55336 21.486 6.40175 21.486 4.45789 19.5421C2.51404 17.5983 2.51404 14.4467 4.45789 12.5028L6.97193 9.98877M9.98875 6.97192L12.5028 4.45789C14.4466 2.51404 17.5983 2.51404 19.5421 4.45789C21.486 6.40174 21.486 9.55334 19.5421 11.4972L17.0281 14.0112\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M9.5 14.5L14.5 9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M3 5L19 21\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\"})),plus_circle_zoom_in_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"circle\",{cx:\"12\",cy:\"12\",r:\"10\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12 7V12.0001M12 12.0001V17M12 12.0001H17M12 12.0001H7\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),sort_descending_order_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4 18.5H17\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4 6.5H9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4 12.5H11.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17 14.5V5.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M13 9.5L17 5.5L21 9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),sort_ascending_order_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4 5.5H17\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4 17.5H9.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M4 11.5H11.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17 9.5V18.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M13 14.5L17 18.5L21 14.5\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),right_circle_line:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8 12.5L10.5 15L16 9\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),plus:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z\"})),subtract:(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}))}},5404:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294);const r={};r.moon=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M22 14.27A10.14 10.14 0 1 1 9.73 2 8.84 8.84 0 0 0 22 14.27Z\"})),r.moon_line=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M8.17 4.53A9.54 9.54 0 0 0 19.5 15.69a8.26 8.26 0 0 1-7.76 4.29 8.36 8.36 0 0 1-7.71-7.7 8.23 8.23 0 0 1 4.15-7.76m1-2.52c-.16 0-.32.03-.48.09a10.28 10.28 0 0 0 3.56 19.9c4.47 0 8.27-2.85 9.67-6.84a1.36 1.36 0 0 0-1.27-1.82c-.15 0-.31.03-.47.1a7.48 7.48 0 0 1-3.41.43 7.59 7.59 0 0 1-6.33-10.04A1.36 1.36 0 0 0 9.17 2Z\"})),r.sun=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\"},(0,a.createElement)(\"g\",null,(0,a.createElement)(\"path\",{d:\"M12 18.36a6.36 6.36 0 1 0 0-12.72 6.36 6.36 0 0 0 0 12.72ZM12.98.96V2.8c0 .53-.43.95-.97.95h-.02a.96.96 0 0 1-.97-.95V.96c0-.53.43-.96.96-.96h.05c.53 0 .96.43.96.96ZM4.89 3.5l1.3 1.3c.38.38.37.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.37 0l-1.3-1.3a.96.96 0 0 1 0-1.35l.04-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .95.43.95.97v.02c0 .53-.42.97-.95.97H.96a.95.95 0 0 1-.96-.96v-.05c0-.53.43-.96.96-.96ZM3.5 19.11l1.3-1.3a.96.96 0 0 1 1.36 0v.01l.02.01c.38.38.39.99 0 1.37l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.04a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.95.97-.95h.02c.53 0 .97.42.97.95v1.84c0 .53-.43.96-.96.96h-.05a.95.95 0 0 1-.96-.96ZM19.11 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.37 0l1.3 1.3c.38.37.38.98 0 1.35l-.04.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.95-.97v-.02c0-.53.42-.97.95-.97h1.84c.53 0 .96.43.96.96v.05c0 .53-.43.96-.96.96ZM20.5 4.89l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1 0-1.37l1.3-1.3a.96.96 0 0 1 1.35 0l.04.04c.37.37.37.98 0 1.35Z\"})),(0,a.createElement)(\"defs\",null)),r.sun_line=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M12 7.64a4.36 4.36 0 1 1-.01 8.73A4.36 4.36 0 0 1 12 7.64Zm0-2a6.35 6.35 0 1 0 0 12.71 6.35 6.35 0 0 0 0-12.7ZM12.98.96V2.8c0 .53-.43.96-.96.96h-.03a.96.96 0 0 1-.97-.96V.96c0-.53.43-.96.96-.96h.06c.52 0 .95.43.95.96ZM4.88 3.5l1.3 1.3c.38.38.38.98 0 1.36h-.01l-.01.02a.96.96 0 0 1-1.36.01L3.5 4.9a.96.96 0 0 1 0-1.35l.03-.04a.96.96 0 0 1 1.35 0ZM.96 11.02H2.8c.53 0 .96.43.96.96v.03c0 .53-.42.97-.96.97H.96a.96.96 0 0 1-.96-.96v-.06c0-.52.43-.95.96-.95ZM3.5 19.12l1.3-1.3a.96.96 0 0 1 1.38.02c.38.38.39.99.01 1.36l-1.3 1.3a.96.96 0 0 1-1.35 0l-.04-.03a.96.96 0 0 1 0-1.35ZM11.02 23.04V21.2c0-.53.43-.96.96-.96h.03c.53 0 .97.42.97.96v1.84c0 .53-.43.96-.96.96h-.06a.96.96 0 0 1-.95-.96ZM19.12 20.5l-1.3-1.3a.96.96 0 0 1 0-1.36h.01l.01-.02a.96.96 0 0 1 1.36-.01l1.3 1.3c.38.37.38.98 0 1.35l-.03.04a.96.96 0 0 1-1.35 0ZM23.04 12.98H21.2a.96.96 0 0 1-.96-.96v-.03c0-.53.42-.97.96-.97h1.84c.53 0 .96.43.96.96v.06c0 .52-.43.95-.96.95ZM20.5 4.88l-1.3 1.3a.96.96 0 0 1-1.36 0v-.01l-.02-.01a.96.96 0 0 1-.01-1.36l1.3-1.3a.96.96 0 0 1 1.35 0l.04.03c.38.37.38.98 0 1.35Z\"}));const o=r},3644:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>d});var a=n(7294),r=n(2304),o=n(1383),i=n(3100),l=n(4766),s=n(8949),p=n(356);const c=()=>{const[e,t]=(0,a.useState)({}),[n,i]=(0,a.useState)(!0),[l,c]=(0,a.useState)({status:\"\",messages:[],state:!1}),d={post_list_1:{label:(0,r.__)(\"Post List #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6836\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-1\u002F\",icon:\"post-list-1.svg\"},post_slider_2:{label:(0,r.__)(\"Post Slider #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7487\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-slider-2\u002F\",icon:\"post-slider-2.svg\"},post_list_4:{label:(0,r.__)(\"Post List #4\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6839\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-4\u002F\",icon:\"post-list-4.svg\"},post_slider_1:{label:(0,r.__)(\"Post Slider #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6840\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-slider-1\u002F\",icon:\"post-slider-1.svg\"},post_grid_4:{label:(0,r.__)(\"Post Grid #4\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6832\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-4\u002F\",icon:\"post-grid-4.svg\"},post_module_1:{label:(0,r.__)(\"Post Module #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6825\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-module-1\u002F\",icon:\"post-module-1.svg\"},post_grid_2:{label:(0,r.__)(\"Post Grid #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6830\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-2\u002F\",icon:\"post-grid-2.svg\"},advanced_search:{label:(0,r.__)(\"Search - PostX\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8233\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fsearch-block\",icon:\"advanced-search.svg\"},button_group:{label:(0,r.__)(\"Button Group\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7952\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fbutton-block\u002F\",icon:\"button-group.svg\"}},u=(0,o.t)();(0,a.useEffect)((()=>{m()}),[]);const m=()=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_all_settings\",method:\"POST\",data:{key:\"key\",value:\"value\"}}).then((e=>{e.success&&u.current&&(t(e.settings),i(!1))}))};return(0,a.createElement)(a.Fragment,null,l.state&&(0,a.createElement)(p.Z,{delay:2e3,toastMessages:l,setToastMessages:c}),Object.keys(d).map(((o,i)=>{const l=d[o];let p=!!l.default;return\"\"==e[o]&&(p=\"yes\"==e[o]),(0,a.createElement)(\"div\",{key:o},n?(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-item ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-meta\"},(0,a.createElement)(s.Z,{type:\"custom_size\",c_s:{size1:24,unit1:\"px\",size2:24,unit2:\"px\",br:4}}),(0,a.createElement)(s.Z,{type:\"custom_size\",c_s:{size1:70,unit1:\"px\",size2:24,unit2:\"px\",br:4}})),(0,a.createElement)(\"div\",{className:\"ultp-blocks-control-option ultp-dash-control-options\"},(0,a.createElement)(s.Z,{type:\"custom_size\",c_s:{size1:30,unit1:\"px\",size2:20,unit2:\"px\",br:4}}),(0,a.createElement)(s.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"px\",size2:20,unit2:\"px\",br:20}}))):(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-item ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-meta\"},(0,a.createElement)(\"img\",{className:\"ultp-blocks-item-icon\",src:`${ultp_dashboard_pannel.url}assets\u002Fimg\u002Fblocks\u002F${l.icon}`,alt:l.label}),(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-title\"},l.label)),(0,a.createElement)(\"div\",{className:\"ultp-blocks-control-option ultp-dash-control-options\"},l.live&&(0,a.createElement)(\"a\",{href:l.live,className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},(0,r.__)(\"Demo\",\"ultimate-post\")),(0,a.createElement)(\"input\",{type:\"checkbox\",className:\"ultp-blocks-enable\",id:o,checked:p,onChange:()=>{(n=>{const a=e?.hasOwnProperty(n)&&\"yes\"!=e[n]?\"yes\":\"\";t({...e,[n]:a}),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Faddon_block_action\",method:\"POST\",data:{key:n,value:a}}).then((e=>{e.success&&c({status:\"success\",messages:[e.message],state:!0})}))})(o)}}),(0,a.createElement)(\"label\",{className:\"ultp-control__label\",htmlFor:o}))))})))},d=()=>{const e=[{label:(0,r.__)(\"50+ Custom Layouts\",\"ultimate-post\")},{label:(0,r.__)(\"250+ Pattern\",\"ultimate-post\")},{label:(0,r.__)(\"45+ Custom Post Blocks\",\"ultimate-post\")},{label:(0,r.__)(\"Pin-point Customization\",\"ultimate-post\")},{label:(0,r.__)(\"Dynamic Site Building\",\"ultimate-post\")},{label:(0,r.__)(\"Limitless Flexibility\",\"ultimate-post\")}],[t,n]=(0,a.useState)(!1);return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-container-grid\"},(0,a.createElement)(\"div\",{className:\"ultp-dashboard-content\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-banner ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-left\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-title\"},\"Create Engaging Sites in Minutes…\"),(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-description\"},\"Thrilled to improve your WordPress blog? PostX supports you in creating and customizing stunning blogs! Design smooth, powerful websites - no compromises, unlimited options.\"),(0,a.createElement)(\"a\",{className:\"ultp-primary-alter-button\",onClick:e=>{e.preventDefault(),window.location.replace(\"#startersites\")}},(0,r.__)(\"Build with Starter Sites\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-right\"},t?(0,a.createElement)(\"iframe\",{className:\"ultp-dash-banner-right-video\",src:\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FFYgSe7kgb6M?autoplay=1\",allow:\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; fullscreen\",title:\"Ultimate Post\"}):(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-right-img\"},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdashboard_banner_right.png\",alt:(0,r.__)(\"Ultimate Post\",\"ultimate-post\")}),(0,a.createElement)(\"div\",{className:\"ultp-dash-banner-right-play-button\",onClick:()=>{n(!0)}},l.ZP.rightFillAngle)))),(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-heading\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-heading-title\"},(0,r.__)(\"Blocks\",\"ultimate-post\")),(0,a.createElement)(\"a\",{onClick:e=>{e.preventDefault(),window.location.replace(\"#blocks\")},className:\"ultp-transparent-button\"},(0,r.__)(\"View All\",\"ultimate-post\"),l.ZP.angle_top_right_line)),(0,a.createElement)(\"div\",{className:\"ultp-dash-blocks-items\"},(0,a.createElement)(c,null))),!ultp_dashboard_pannel?.active&&(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left\"},(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left-title\"},(0,r.__)(\"Go Pro & Unlock More! 🚀\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left-description\"},(0,r.__)(\"Harness the true power of PostX: build, customize, and launch dynamic WordPress sites with unrestricted creative control - no code, no hassle.\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left-keyfeature\"},e.map(((e,t)=>(0,a.createElement)(\"div\",{className:\"ultp-dash-pro-promo-left-keyfeature-item\",key:e.label},l.ZP.right_circle_solid,e.label)))),(0,a.createElement)(\"a\",{href:(0,i.Z)(\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-topbar&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing\"),target:\"_blank\",rel:\"noreferrer\",className:\"ultp-primary-alter-button\"},l.ZP.rocket,\"Upgrade to Pro\")),(0,a.createElement)(\"img\",{className:\"ultp-dash-pro-promo-right-img\",src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdashboard_pro_promo.png\",alt:\"Ultimate Post\"}))),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-features\"},(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-item ultp-sidebar-starter-sites\"},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fsidebar-starter-sites.png\",alt:\"Starter Sites Make it Easy\"}),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-title\"},\"Starter Sites Make it Easy\"),(0,a.createElement)(\"span\",{className:\"ultp-sidebar-card-description\"},\"Create awesome-looking webpages without any code with PostX starter sites - simply import the starter template of your choice. Drag, drop, and deploy your site in minutes.\"),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-buttons\"},(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fstarter-sites\u002F?utm_source=db-postx-started&utm_medium=starter-sites&utm_campaign=postx-dashboard&pux_link=dbstartersite\",className:\"ultp-primary-button\",target:\"_blank\",rel:\"noreferrer\"},l.ZP.angle_top_right_line,\"Explore Starter Templates\"))),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-item ultp-sidebar-community\"},(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-title\"},\"PostX Community\"),(0,a.createElement)(\"span\",{className:\"ultp-sidebar-card-description\"},\"Join the Facebook community of PostX to stay up-to-date and share your thoughts and feedback.\"),(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-buttons\"},(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fgutenbergpostx\",className:\"ultp-primary-button\",target:\"_blank\",rel:\"noreferrer\"},l.ZP.facebook,\"Join PostX Community\")))))}},4482:(e,t,n)=>{\"use strict\";n.d(t,{DC:()=>p,WO:()=>m,ac:()=>u,cs:()=>d,gR:()=>f,hx:()=>c,u4:()=>l});var a=n(7294),r=n(4766),o=n(3100),i=n(4190);n(3479);const{__}=wp.i18n,l={preloader_style:{type:\"select\",label:__(\"Preloader Style\",\"ultimate-post\"),options:{style1:__(\"Preloader Style 1\",\"ultimate-post\"),style2:__(\"Preloader Style 2\",\"ultimate-post\")},default:\"style1\",desc:__(\"Select Preloader Style.\",\"ultimate-post\"),tooltip:__(\"PostX has two preloader variations that display while loading PostX's blocks if you enable the preloader for that blocks.\",\"ultimate-post\")},container_width:{type:\"number\",label:__(\"Container Width\",\"ultimate-post\"),default:\"1140\",desc:__(\"Change Container Width of the Page Template(PostX Template).\",\"ultimate-post\"),tooltip:__(\"Here you can increase or decrease the container width. It will be applicable when you create any dynamic template with the PostX Builder or select PostX's Template while creating a page.\",\"ultimate-post\")},hide_import_btn:{type:\"switch\",label:__(\"Hide Template Kits Button\",\"ultimate-post\"),default:\"\",desc:__(\"Hide Template Kits Button from toolbar of the Gutenberg Editor.\",\"ultimate-post\"),tooltip:__(\"Click on the check box to hide the Template Kits button from posts, pages, and the Builder of PostX.\",\"ultimate-post\")},disable_image_size:{type:\"switch\",label:__(\"Disable Image Size\",\"ultimate-post\"),default:\"\",desc:__(\"Disable Image Size of the Plugins.\",\"ultimate-post\"),tooltip:__(\"Click on the check box to turn off the PostX's size of the post images.\",\"ultimate-post\")},disable_view_cookies:{type:\"switch\",label:__(\"Disable All Cookies\",\"ultimate-post\"),default:\"\",desc:__(\"Disable All Frontend Cookies (Cookies Used for Post View Count).\",\"ultimate-post\"),tooltip:__(\"Click on the check box to restrict PostX from collecting cookies. PostX contains cookies to display the post view count.\",\"ultimate-post\")},disable_google_font:{type:\"switchButton\",label:__(\"Disable All Google Fonts\",\"ultimate-post\"),default:\"\",desc:__(\"Disable All Google Fonts From Frontend and Backend PostX Blocks.\",\"ultimate-post\"),tooltip:__(\"Click the check box to disable all Google Fonts from PostX's typography options.\",\"ultimate-post\")}},s=({multikey:e,value:t,multiValue:n})=>{var o;const[i,l]=(0,a.useState)([...n]),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(null!==(o=t.options)&&void 0!==o?o:{}),[u,m]=(0,a.useState)(\"\"),f=e=>{e.target.closest(\".ultp-ms-container\")||p(!1)};return(0,a.useEffect)((()=>(document.addEventListener(\"mousedown\",f),()=>document.removeEventListener(\"mousedown\",f))),[]),(0,a.useEffect)((()=>{setTimeout((()=>{const e=Object.fromEntries(Object.entries(t.options).filter((([e,t])=>t.toLowerCase().includes(u.toLowerCase())||e.toLowerCase().includes(u.toLowerCase()))));d(e)}),500)}),[u]),(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"input\",{type:\"hidden\",name:e,value:i,\"data-customprop\":\"custom_multiselect\"}),(0,a.createElement)(\"div\",{className:\"ultp-ms-container\"},(0,a.createElement)(\"div\",{onClick:()=>p(!s),className:\"ultp-ms-results-con cursor\"},(0,a.createElement)(\"div\",{className:\"ultp-ms-results\"},i.length>0?i?.map(((e,n)=>(0,a.createElement)(\"span\",{key:n,className:\"ultp-ms-selected\"},t.options[e],(0,a.createElement)(\"span\",{className:\"ultp-ms-remove cursor\",onClick:t=>{var n;t.stopPropagation(),n=e,l(i.filter((e=>e!=n)))}},r.ZP.close_circle_line)))):(0,a.createElement)(\"span\",null,__(\"Select options\"))),(0,a.createElement)(\"span\",{onClick:()=>p(!s),className:\"ultp-ms-results-collapse cursor\"},r.ZP.collapse_bottom_line)),s&&c&&(0,a.createElement)(\"div\",{className:\"ultp-ms-options\"},(0,a.createElement)(\"input\",{type:\"text\",className:\"ultp-multiselect-search\",value:u,onChange:e=>m(e.target.value)}),Object.keys(c)?.map(((e,n)=>(0,a.createElement)(\"span\",{className:\"ultp-ms-option cursor\",onClick:()=>(e=>{if(-1==i.indexOf(e)&&\"all\"!=e&&l([...i,e]),\"all\"===e){const e=Object.fromEntries(Object.entries(t.options).filter((([e,t])=>!t.toLowerCase().includes(\"all\"))));l(Object.keys(e))}})(e),key:n,value:e},c[e]))))))},p=(e,t)=>(0,a.createElement)(a.Fragment,null,Object.keys(e).map(((n,r)=>{const o=e[n];return(0,a.createElement)(\"span\",{key:r},\"hidden\"==o.type&&(0,a.createElement)(\"input\",{key:n,type:\"hidden\",name:n,defaultValue:o.value}),\"hidden\"!=o.type&&(0,a.createElement)(a.Fragment,null,\"heading\"==o.type&&(0,a.createElement)(\"div\",{className:\"ultp_h2 ultp-settings-heading\"},o.label)&&(0,a.createElement)(a.Fragment,null,o.desc&&(0,a.createElement)(\"div\",{className:\"ultp-settings-subheading\"},o.desc)),\"heading\"!=o.type&&(0,a.createElement)(\"div\",{className:\"ultp-settings-wrap\"},o.label&&(0,a.createElement)(\"strong\",null,o.label,o.tooltip&&(0,a.createElement)(i.Z,{content:o.tooltip},(0,a.createElement)(\"span\",{className:\" cursor dashicons dashicons-editor-help\"}))),(0,a.createElement)(\"div\",{className:\"ultp-settings-field-wrap\"},((e,t,n)=>{const r=n.hasOwnProperty(e)?n[e]:t.default?t.default:\"multiselect\"==t.type?[]:\"\";switch(t.type){case\"select\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"select\",{defaultValue:r,name:e,id:e},Object.keys(t.options).map(((e,n)=>(0,a.createElement)(\"option\",{key:n,value:e},t.options[e])))),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"radio\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"div\",{className:\"ultp-field-radio\"},(0,a.createElement)(\"div\",{className:\"ultp-field-radio-items\"},Object.keys(t.options).map(((n,o)=>(0,a.createElement)(\"div\",{key:o,className:\"ultp-field-radio-item\"},(0,a.createElement)(\"input\",{type:\"radio\",id:n,name:e,value:n,defaultChecked:n===r}),(0,a.createElement)(\"label\",{htmlFor:n},t.options[n])))))),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"color\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"input\",{type:\"text\",defaultValue:r,className:\"ultp-color-picker\"}),(0,a.createElement)(\"span\",{className:\"ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"text\",name:e,className:\"ultp-color-code\",defaultValue:r})),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"number\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"number\",name:e,defaultValue:r}),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"switch\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-field-inline\"},(0,a.createElement)(\"input\",{value:\"yes\",type:\"checkbox\",name:e,defaultChecked:\"yes\"==r||\"on\"==r}),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc));case\"switchButton\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-field-inline\"},(0,a.createElement)(\"input\",{type:\"checkbox\",value:\"yes\",name:e,defaultChecked:\"yes\"==r||\"on\"==r}),t.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"span\",{id:\"postx-regenerate-css\",className:`ultp-upgrade-pro-btn cursor ${\"yes\"==r?\"active\":\"\"} `},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-admin-generic\"}),(0,a.createElement)(\"span\",{className:\"ultp-text\"},__(\"Re-Generate Font Files\",\"ultimate-post\")))));case\"multiselect\":const n=Array.isArray(r)?r:[r];return(0,a.createElement)(s,{multikey:e,value:t,multiValue:n});case\"text\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"text\",name:e,defaultValue:r}),(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc,t.link&&(0,a.createElement)(\"a\",{className:\"settingsLink\",target:\"_blank\",href:t.link,rel:\"noreferrer\"},t.linkText)));case\"textarea\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"textarea\",{name:e,defaultValue:r}),(0,a.createElement)(\"span\",{className:\"ultp-description\"},t.desc,t.link&&(0,a.createElement)(\"a\",{className:\"settingsLink\",target:\"_blank\",href:t.link,rel:\"noreferrer\"},t.linkText)));case\"shortcode\":return(0,a.createElement)(\"code\",{className:\"ultp-shortcode-copy\"},\"[\",t.value,\"]\")}})(n,o,t)))))}))),c=(e,t,n=\"\")=>{const r=n||__(\"Upgrade to Pro\",\"ultimate-post\");return(0,a.createElement)(\"a\",{href:(0,o.Z)(e,t,\"\"),className:\"ultp-upgrade-pro-btn\",target:\"_blank\",rel:\"noreferrer\"},r,\"  ➤\")},d=({tags:e,func:t,data:n})=>(0,a.createElement)(\"div\",{className:\"ultp-addon-lock-container-overlay\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-lock-container\"},(0,a.createElement)(\"div\",{className:\"ultp-popup-unlock\"},(0,a.createElement)(\"img\",{src:`${ultp_option_panel.url}\u002Fassets\u002Fimg\u002Fdashboard\u002F${n.icon}`,alt:\"lock icon\"}),(0,a.createElement)(\"div\",{className:\"title ultp_h5\"},n?.title),(0,a.createElement)(\"div\",{className:\"ultp-description\"},n?.description),c(\"\",e),(0,a.createElement)(\"button\",{onClick:()=>{t(!1)},className:\"ultp-popup-close\"},r.ZP.close_line)))),u=(e,t,n,r=\"\")=>(0,a.createElement)(\"a\",{href:(0,o.Z)(e,t,\"\"),className:\"ultp-primary-button \"+r,target:\"_blank\",rel:\"noreferrer\"},n),m=(e,t,n,r=\"\")=>(0,a.createElement)(\"a\",{href:(0,o.Z)(e,t,\"\"),className:\"ultp-secondary-button \"+r,target:\"_blank\",rel:\"noreferrer\"},n),f=({proBtnTags:e,FRBtnTag:t})=>{const[n,i]=(0,a.useState)([{id:\"go-pro-unlock-more\",title:\"Go Pro & Unlock More! 🚀\",description:\"Unlock the full potential of PostX to create and manage professional News Magazines and Blogging sites with complete creative freedom.\",features:[__(\"Access to 40+ Blocks\",\"ultimate-post\"),__(\"Access to 250+ Patterns\",\"ultimate-post\"),__(\"All Starter Packs Access\",\"ultimate-post\"),__(\"Advanced Query Builder\",\"ultimate-post\"),__(\"Ajax Filter and Pagination\",\"ultimate-post\"),__(\"Custom Fonts with Typography\",\"ultimate-post\")],visible:!ultp_option_panel.active,buttons:[{type:\"primary-alter\",icon:r.ZP.rocket,url:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-setting&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing\",label:\"Upgrade Pro\"},{type:\"transparent-alter\",label:\"Free VS Pro\"}]},{id:\"feature-request\",title:\"Feature Request\",description:\"Can't find your desired feature? Let us know your requirements. We will definitely take them into our consideration.\",buttons:[{type:\"primary\",url:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Froadmap\u002F?utm_source=postx-menu&utm_medium=DB-roadmap&utm_campaign=postx-dashboard\",label:\"Request a Feature\"}],visible:!0},{id:\"web-community\",title:\"PostX Community\",description:\"Join the Facebook community of PostX to stay up-to-date and share your thoughts and feedback.\",buttons:[{type:\"primary\",icon:r.ZP.facebook,url:\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fgutenbergpostx\",label:\"Join PostX Community\"}],visible:!0},{id:\"news-tips\",title:\"News, Tips & Update\",linkIcon:r.ZP.rightArrowLg,links:[{text:\"Getting Started with PostX\",url:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fgetting-started\u002F?utm_source=postx-menu&utm_medium=DB-news-postx_GT&utm_campaign=postx-dashboard\"},{text:\"How to use the Dynamic Site Builder\",url:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F?utm_source=postx-menu&utm_medium=DB-news-DSB_guide&utm_campaign=postx-dashboard\"},{text:\"How to use the PostX Features\",url:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fpostx-features\u002F?utm_source=postx-menu&utm_medium=DB-news-feature_guide&utm_campaign=postx-dashboard\"},{text:\"PostX Blog\",url:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcategory\u002Fpostx\u002F?utm_source=postx-menu&utm_medium=DB-news-blog&utm_campaign=postx-dashboard\"}],visible:!0},{id:\"rating\",title:\"Show your love\",description:\"Enjoying PostX? Give us a 5 Star review to support our ongoing work.\",buttons:[{type:\"primary\",url:\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Fultimate-post\u002Freviews\u002F\",label:\"Rate it Now\"}],visible:!0}]);return(0,a.createElement)(\"div\",{className:\"ultp-sidebar-features\"},!ultp_option_panel.active&&new Date>=new Date(\"2024-03-07\")&&new Date\u003C=new Date(\"2024-03-13\")&&(0,a.createElement)(\"div\",{className:\"ultp-dashboard-pro-features ultp-dash-item-con\"},(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=postx-ad&utm_medium=sidebar-banner&utm_campaign=postx-dashboard#pricing\",target:\"_blank\",style:{textDecoration:\"none !important\",display:\"block\"},rel:\"noreferrer\"},(0,a.createElement)(\"img\",{src:ultp_option_panel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdb_sidebar.jpg\",style:{width:\"100%\",height:\"100%\",borderRadius:\"8px\"},alt:\"40k+ Banner\"}))),n.map(((e,t)=>!1!==e.visible&&(0,a.createElement)(\"div\",{key:t,className:`ultp-sidebar-card-item ultp-sidebar-${e.id}`},\"banner\"===e.type?(0,a.createElement)(\"a\",{href:e.bannerUrl,target:\"_blank\",rel:\"noreferrer\",style:{textDecoration:\"none !important\",display:\"block\"}},(0,a.createElement)(\"img\",{src:e.imageUrl,style:{width:\"100%\",height:\"100%\",borderRadius:\"8px\"},alt:e.alt})):(0,a.createElement)(a.Fragment,null,e.title&&(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-title\"},__(e.title,\"ultimate-post\")),e.description&&(0,a.createElement)(\"span\",{className:\"ultp-sidebar-card-description\"},__(e.description,\"ultimate-post\")),e.features?(0,a.createElement)(\"div\",{className:\"ultp-pro-feature-lists\"},e.features.map(((e,t)=>(0,a.createElement)(\"span\",{key:t},r.ZP.right_circle_line,\" \",__(e,\"ultimate-post\"))))):e.links?(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-links\"},e.links.map(((t,n)=>(0,a.createElement)(\"a\",{className:\"ultp-sidebar-card-link\",key:n,target:\"_blank\",href:t.url,rel:\"noreferrer\"},e.linkIcon&&(0,a.createElement)(\"span\",null,e.linkIcon),__(t.text,\"ultimate-post\"))))):null,e.buttons&&e.buttons.length>0&&(0,a.createElement)(\"div\",{className:\"ultp-sidebar-card-buttons\"},e.buttons.map((e=>(({type:e=\"primary\",icon:t,url:n,tags:r,label:i,classname:l=\"\"})=>(0,a.createElement)(\"a\",{href:(0,o.Z)(n,r,\"\"),className:\"ultp-\"+e+\"-button \"+l,target:\"_blank\",rel:\"noreferrer\",key:i+Math.random()},t&&t,i))({type:e.type,icon:e.icon,url:e.url,tags:e.tags||\"\",label:e.label,classname:e.classname||\"\"})))))))))}},860:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>m});var a=n(7294),r=n(1383),o=n(7763),i=n(4766),l=n(4482),s=n(1389),p=n(8949),c=n(356),d=(n(6129),n(1370)),u=n(6731);const{__}=wp.i18n,m=({integrations:e,generalDiscount:t={}})=>{const[n,m]=(0,a.useState)(\"\"),[f,h]=(0,a.useState)(!1),[g,v]=(0,a.useState)({}),[_,w]=(0,a.useState)(\"\"),[b,x]=(0,a.useState)({state:!1,status:\"\"}),[y,k]=(0,a.useState)(\"\"),[E,C]=(0,a.useState)(!1);let S=d.q;const M=ultp_dashboard_pannel.addons_settings,L=Object.entries(S);L.sort(((e,t)=>e[1].position-t[1].position)),S=Object.fromEntries(L),(0,a.useEffect)((()=>(P(),document.addEventListener(\"mousedown\",A),()=>document.removeEventListener(\"mousedown\",A))),[]);const N=[{label:__(\"45+ Blocks\",\"ultimate-post\"),descp:__(\"PostX comes with over 45 Gutenberg blocks\",\"ultimate-post\")},{label:__(\"250+ Patterns\",\"ultimate-post\"),descp:__(\"Get full access to all ready post sections\",\"ultimate-post\")},{label:__(\"50+ Starter Sites\",\"ultimate-post\"),descp:__(\"Pre-built websites are ready to import in one click\",\"ultimate-post\")},{label:__(\"Global Styles\",\"ultimate-post\"),descp:__(\"Control the full website’s colors and typography globally\",\"ultimate-post\")},{label:__(\"Dark\u002FLight Mode\",\"ultimate-post\"),descp:__(\"Let your readers switch between light and dark modes\",\"ultimate-post\")},{label:__(\"Advanced Query Builder\",\"ultimate-post\"),descp:__(\"Display\u002Freorder posts, pages, and custom post types\",\"ultimate-post\")},{label:__(\"Dynamic Site Builder\",\"ultimate-post\"),descp:__(\"Dynamically create templates for essential pages\",\"ultimate-post\")},{label:__(\"Ajax Powered Filter\",\"ultimate-post\"),descp:__(\"Let your visitors filter posts by categories and tags\",\"ultimate-post\")},{label:__(\"Advanced Post Slider\",\"ultimate-post\"),descp:__(\"Display posts in engaging sliders and carousels\",\"ultimate-post\")},{label:__(\"SEO Meta Support\",\"ultimate-post\"),descp:__(\"Replace the post excerpts with meta descriptions\",\"ultimate-post\")},{label:__(\"Custom Fonts\",\"ultimate-post\"),descp:__(\"Upload custom fonts per your requirements\",\"ultimate-post\")},{label:__(\"Ajax Powered Pagination\",\"ultimate-post\"),descp:__(\"PostX comes with three types of Ajax pagination\",\"ultimate-post\")}],Z=(0,r.t)(),P=()=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_all_settings\",method:\"POST\",data:{key:\"key\",value:\"value\"}}).then((e=>{e.success&&Z.current&&v(e.settings)}))},z=e=>{C(!0),e.preventDefault();const t=new FormData(e.target),n={};for(const a of e.target.elements)a.name&&(\"checkbox\"!==a.type||a.checked?\"radio\"===a.type?a.checked&&(n[a.name]=a.value):\"select-multiple\"===a.type?n[a.name]=t.getAll(a.name):\"custom_multiselect\"==a.dataset.customprop?n[a.name]=a.value?a.value.split(\",\"):[]:n[a.name]=a.value:n[a.name]=\"\");wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fsave_plugin_settings\",method:\"POST\",data:{settings:n,action:\"action\",type:\"type\"}}).then((e=>{C(!1),e.success&&x({status:\"success\",messages:[e.message],state:!0})}))},A=e=>{e.target.closest(\".ultp-addon-settings-popup\")||m(\"\")},B=[__(\"Access to Pro Starter Site Templates\",\"ultimate-post\"),__(\"Access to All Pro Features\",\"ultimate-post\"),__(\"Fully Unlocked Site Builder\",\"ultimate-post\"),__(\"And more…\",\"ultimate-post\")],H=[{label:__(\"Add-Ons\",\"ultimate-post\"),value:\"addons\",integration:!1},{label:__(\"Integration Add-Ons\",\"ultimate-post\"),value:\"integration-addons\",integration:!0}];return(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-dashboard-addons-container \"+(Object.keys(g).length>0?\"\":\" skeletonOverflow\")},!e&&(0,a.createElement)(\"div\",{className:\"ultp-gettingstart-message\"},(0,a.createElement)(\"div\",{className:\"ultp-start-left\"},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdashboard_banner.jpg\",alt:\"Banner\"}),(0,a.createElement)(\"div\",{className:\"ultp-start-content\"},(0,a.createElement)(\"span\",{className:\"ultp-start-text\"},__(\"Enjoy Pro-level Ready Templates!\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-start-btns\"},(0,l.ac)(\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fstarter-sites\u002F?utm_source=db-postx-started&utm_medium=starter-sites&utm_campaign=postx-dashboard&pux_link=dbstartersite\",\"\",__(\"Explore Starter Sites\",\"ultimate-post\"),\"\"),(0,l.WO)(\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-started&utm_medium=details&utm_campaign=postx-dashboard\",\"\",__(\"Plugin Details\",\"ultimate-post\"),\"\")))),(0,a.createElement)(\"div\",{className:\"ultp-start-right\"},(0,a.createElement)(\"div\",{className:\"ultp-dashborad-banner\",style:{cursor:\"pointer\"},onClick:()=>k((0,a.createElement)(\"iframe\",{width:\"1100\",height:\"500\",src:\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FFYgSe7kgb6M?autoplay=1\",title:__(\"How to add Product Filter to WooCommerce Shop Page\",\"ultimate-post\"),allow:\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\",allowFullScreen:!0}))},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fdashboard\u002Fdashboard_right_banner.jpg\",className:\"ultp-banner-img\"}),(0,a.createElement)(\"div\",{className:\"ultp-play-icon-container\"},(0,a.createElement)(\"img\",{className:\"ultp-play-icon\",src:ultp_dashboard_pannel.url+\"\u002Fassets\u002Fimg\u002Fdashboard\u002Fplay.png\",alt:__(\"Play\",\"ultimate-post\")}),(0,a.createElement)(\"span\",{className:\"ultp-animate\"}))),(0,a.createElement)(\"div\",{className:\"ultp-dashboard-content\"},ultp_dashboard_pannel.active?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-title _pro\"},__(\"What Do You Need?\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-description _pro\"},__(\"Do you have something in mind you want to share? Both we and our users would like to hear about it. Share your ideas on our Facebook group and let us know what you need.\",\"ultimate-post\")),(0,l.ac)(\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fgutenbergpostx\",\"\",\"Share Ideas\",\"\")):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-title\"},__(\"Do More with\",\"ultimate-post\"),\" \",(0,a.createElement)(\"span\",{style:{color:\"var(--postx-primary-color)\"}},__(\"PRO:\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"ultp-description\"},__(\"Unlock powerful customizations with PostX Pro:\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-lists\"},B.map(((e,t)=>(0,a.createElement)(\"span\",{className:\"ultp-list\",key:t},o.Z.rightMark,\" \",e)))),(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-started&utm_medium=upgrade-pro-hero&utm_campaign=postx-dashboard#pricing\",className:\"ultp-upgrade-btn\",target:\"_blank\",rel:\"noreferrer\"},__(\"Upgrade to Pro\",\"ultimate-post\"),o.Z.rocketPro))))),f&&(0,l.cs)({tags:\"addons_popup\",func:e=>{h(e)},data:{icon:\"addon_lock.svg\",title:__(\"Unlock All Addons of PostX\",\"ultimate-post\"),description:__(\"Sorry, this addon is not available in the free version of PostX. Please upgrade to a pro plan to unlock all pro addons and features of PostX.\",\"ultimate-post\")}}),(0,a.createElement)(\"div\",{className:\"ultp-addons-container-grid\"},(0,a.createElement)(\"div\",{className:\"ultp-addons-items\"},H.map((t=>(0,a.createElement)(\"div\",{key:t.value,className:\"ultp-addon-group\"},(0,a.createElement)(\"div\",{className:\"ultp_h2 ultp-addon-parent-heading\"},t.label),Object.keys(g).length>0?((e=!1)=>(0,a.createElement)(\"div\",{className:\"ultp-addons-grid \"+(e?\"\":\"ultp-gs\")},Object.keys(S).map(((t,r)=>{const o=S[t];if(e&&!o.integration||!e&&o.integration)return;let s=!0;return s=!(\"true\"!=g[t]&&1!=g[t]||o.is_pro&&!ultp_dashboard_pannel.active),(0,a.createElement)(\"div\",{className:\"ultp-addon-item\",key:t},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-contents\",style:{paddingBottom:o.notice?\"10px\":\"auto\"}},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-name\"},(0,a.createElement)(\"img\",{src:`${ultp_dashboard_pannel.url}assets\u002Fimg\u002Faddons\u002F${o.img}`,alt:o.name}),(0,a.createElement)(\"div\",{className:\"ultp_h6 ultp-addon-item-title\"},o.name,o?.new&&(0,a.createElement)(\"span\",{className:\"ultp-new-tag\"},\"New\")),(0,a.createElement)(\"div\",{className:\"ultp-dash-control-options ultp-ml-auto\"},(0,a.createElement)(\"input\",{type:\"checkbox\",datatype:t,className:\"ultp-addons-enable \"+(o.is_pro&&!ultp_dashboard_pannel.active?\"disabled\":\"\"),id:t,checked:s,onChange:()=>{(e=>{const t=\"true\"==g[e]?\"false\":\"true\";!ultp_dashboard_pannel.active&&S[e].is_pro?(v({...g,[e]:\"false\"}),h(!0)):(v({...g,[e]:t}),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Faddon_block_action\",method:\"POST\",data:{key:e,value:t}}).then((n=>{n.success&&([\"ultp_templates\",\"ultp_custom_font\",\"ultp_builder\"].includes(e)&&(document.getElementById(\"postx-submenu-\"+e.replace(\"templates\",\"saved_templates\").replace(\"ultp_\",\"\").replace(\"_\",\"-\")).style.display=\"true\"==t?\"block\":\"none\",document.getElementById(e.replace(\"templates\",\"saved_templates\").replace(\"ultp_\",\"ultp-dasnav-\").replace(\"_\",\"-\")).style.display=\"true\"==t?\"\":\"none\"),setTimeout((function(){x({status:\"success\",messages:[n.message],state:!0})}),400))})))})(t)}}),(0,a.createElement)(\"label\",{htmlFor:t,className:\"ultp-control__label\"},o.is_pro&&!ultp_dashboard_pannel.active&&(0,a.createElement)(\"span\",{className:\"dashicons dashicons-lock\"})))),(0,a.createElement)(\"div\",{className:\"ultp-description\"},o.desc,o.notice&&(0,a.createElement)(\"div\",{className:\"ultp-description-notice\"},o.notice)),o.required&&o.required?.name&&(0,a.createElement)(\"span\",{className:\"ultp-plugin-required\"},\" \",__(\"This addon required this plugin:\",\"ultimate-post\"),o.required.name),o.is_pro&&!ultp_dashboard_pannel.active&&(0,a.createElement)(\"div\",{onClick:()=>{h(!0)},className:\"ultp-pro-lock\"},(0,a.createElement)(\"span\",null,\"PRO\"))),(0,a.createElement)(\"div\",{className:\"ultp-addon-item-actions ultp-dash-control-options\"},(0,a.createElement)(\"div\",{className:\"ultp-docs-action\"},o.live&&(0,a.createElement)(\"a\",{href:o.live.replace(\"live_demo_args\",`?utm_source=${e?\"db-postx-integration\":\"db-postx-addons\"}&utm_medium=${e?\"\":t+\"-\"}demo&utm_campaign=postx-dashboard`),className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},i.ZP.desktop,__(\"Demo\",\"ultimate-post\")),o.docs&&(0,a.createElement)(\"a\",{href:o.docs+(e?\"?utm_source=db-postx-integration\":\"?utm_source=db-postx-addons\")+\"&utm_medium=docs&utm_campaign=postx-dashboard\",className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},i.ZP.media_document,__(\"Docs\",\"ultimate-post\")),o.video&&(0,a.createElement)(\"a\",{href:o.video,className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},i.ZP.rightAngle,__(\"Video\",\"ultimate-post\")),M[t]&&(0,a.createElement)(\"div\",{className:\"ultp-popup-setting\",onClick:()=>{m(t)}},i.ZP.setting),n==t&&(0,a.createElement)(\"div\",{className:\"ultp-addon-settings\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-settings-popup\"},M[t]&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-addon-settings-title\"},(0,a.createElement)(\"div\",{className:\"ultp_h6\"},o.name,\": \",__(\"Settings\",\"ultimate-post\"))),(0,a.createElement)(\"form\",{onSubmit:z,action:\"\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-settings-body\"},\"ultp_frontend_submission\"===t&&(0,a.createElement)(u.Z,{attr:M[t].attr,settings:g,setSettings:v}),\"ultp_frontend_submission\"!=t&&(0,l.DC)(M[t].attr,g),(0,a.createElement)(\"div\",{className:\"ultp-data-message\"})),(0,a.createElement)(\"div\",{className:\"ultp-addon-settings-footer\"},(0,a.createElement)(\"button\",{type:\"submit\",className:\"cursor ultp-primary-button \"+(E?\"onloading\":\"\")},__(\"Save Settings\",\"ultimate-post\"),E&&i.ZP.refresh))),(0,a.createElement)(\"button\",{onClick:()=>{m(\"\")},className:\"ultp-popup-close\"})))))))}))))(!!t.integration):(0,a.createElement)(\"div\",{className:\"ultp-addons-grid \"+(e?\"\":\"ultp-gs\")},Array(6).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{key:t,className:\"ultp-addon-item\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-contents\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-name\"},(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"px\",size2:50,unit2:\"px\",br:18}}),(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:190,unit1:\"px\",size2:28,unit2:\"px\",br:4}})),(0,a.createElement)(\"div\",{className:\"ultp-description\"},(0,a.createElement)(p.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:100,unit1:\"%\",size2:14,unit2:\"px\",br:2}}),(0,a.createElement)(p.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:70,unit1:\"%\",size2:14,unit2:\"px\",br:2}}))),(0,a.createElement)(\"div\",{className:\"ultp-addon-item-actions ultp-dash-control-options\"},(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"px\",size2:20,unit2:\"px\",br:8}}),(0,a.createElement)(\"div\",{className:\"ultp-docs-action\"},(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:22,unit2:\"px\",br:2}}))))))),!e&&(0,a.createElement)(\"div\",{className:\"ultp_dash_key_features\"},(0,a.createElement)(\"div\",{className:\"ultp_h2\"},__(\"Key Features of PostX\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp_dash_key_features_content\"},N?.map(((e,t)=>(0,a.createElement)(\"div\",{key:t},(0,a.createElement)(\"div\",{className:\"ultp_dash_key_features_label\"},e.label),(0,a.createElement)(\"div\",{className:\"ultp-description\"},e.descp)))))))))),e&&(0,a.createElement)(l.gR,{FRBtnTag:\"settingsFR\",proBtnTags:\"postx_dashboard_settings\"}))),b.state&&(0,a.createElement)(c.Z,{delay:2e3,toastMessages:b,setToastMessages:x}),y&&(0,a.createElement)(s.Z,{title:__(\"Postx Intro\",\"ultimate-post\"),modalContent:y,setModalContent:k}))}},6731:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>i});var a=n(7294),r=n(4190),o=n(4766);const{__}=wp.i18n,i=({attr:e,settings:t,setSettings:n})=>{const i=e,l=({multikey:e,value:r,multiValue:i})=>{var l;const[s,p]=(0,a.useState)([...i]),[c,d]=(0,a.useState)(!1),[u,m]=(0,a.useState)(null!==(l=r.options)&&void 0!==l?l:{}),[f,h]=(0,a.useState)(\"\"),g=e=>{e.target.closest(\".ultp-ms-container\")||d(!1)};return(0,a.useEffect)((()=>(document.addEventListener(\"mousedown\",g),()=>document.removeEventListener(\"mousedown\",g))),[]),(0,a.useEffect)((()=>{setTimeout((()=>{const e=Object.fromEntries(Object.entries(r.options).filter((([e,t])=>t.toLowerCase().includes(f.toLowerCase())||e.toLowerCase().includes(f.toLowerCase()))));m(e)}),500)}),[f]),(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"input\",{type:\"hidden\",name:e,value:s,\"data-customprop\":\"custom_multiselect\"}),(0,a.createElement)(\"div\",{className:\"ultp-ms-container\"},(0,a.createElement)(\"div\",{onClick:()=>d(!c),className:\"ultp-ms-results-con cursor\"},(0,a.createElement)(\"div\",{className:\"ultp-ms-results\"},s.length>0?s?.map(((i,l)=>(0,a.createElement)(\"span\",{key:l,className:\"ultp-ms-selected\"},r.options[i],(0,a.createElement)(\"span\",{className:\"ultp-ms-remove cursor\",onClick:a=>{a.stopPropagation(),(a=>{const r=s.filter((e=>e!=a));p(r),n({...t,[e]:r})})(i)}},o.ZP.close_circle_line)))):(0,a.createElement)(\"span\",null,__(\"Select options\"))),(0,a.createElement)(\"span\",{onClick:()=>d(!c),className:\"ultp-ms-results-collapse cursor\"},o.ZP.collapse_bottom_line)),c&&u&&(0,a.createElement)(\"div\",{className:\"ultp-ms-options\"},(0,a.createElement)(\"input\",{type:\"text\",className:\"ultp-multiselect-search\",value:f,onChange:e=>h(e.target.value)}),Object.keys(u)?.map(((o,i)=>(0,a.createElement)(\"span\",{className:\"ultp-ms-option cursor\",onClick:()=>(a=>{let o=[];if(-1==s.indexOf(a)&&\"all\"!=a&&(o=[...s,a]),\"all\"===a){const e=Object.fromEntries(Object.entries(r.options).filter((([e,t])=>!t.toLowerCase().includes(\"all\"))));o=Object.keys(e)}p(o),n({...t,[e]:o})})(o),key:i,value:o},u[o]))))))};return(0,a.createElement)(a.Fragment,null,Object.keys(i).map(((e,o)=>{const s=i[e];return(0,a.createElement)(\"span\",{key:o},\"hidden\"==s.type&&(0,a.createElement)(\"input\",{key:e,type:\"hidden\",name:e,defaultValue:s.value}),\"hidden\"!=s.type&&(0,a.createElement)(a.Fragment,null,\"heading\"==s.type&&(0,a.createElement)(\"h2\",{className:\"ultp-settings-heading\"},s.label)&&(0,a.createElement)(a.Fragment,null,s.desc&&(0,a.createElement)(\"div\",{className:\"ultp-settings-subheading\"},s.desc)),\"heading\"!=s.type&&((e,n)=>{let a=!0;return n.hasOwnProperty(\"depends_on\")&&n.depends_on.forEach((e=>{\"==\"==e.condition&&t[e.key]!=e.value&&(a=!1)})),a})(0,s)&&(0,a.createElement)(\"div\",{className:\"ultp-settings-wrap\"},s.label&&(0,a.createElement)(\"strong\",null,s.label,s.tooltip&&(0,a.createElement)(r.Z,{placement:\"bottom\",content:s.tooltip},(0,a.createElement)(\"span\",{className:\" cursor dashicons dashicons-editor-help\"}))),(0,a.createElement)(\"div\",{className:\"ultp-settings-field-wrap\"},((e,r,o)=>{const i=t.hasOwnProperty(e)?t[e]:t.default?t.default:\"multiselect\"==r.type?[]:\"\",s=e=>{n((t=>\"checkbox\"===e.target.type?{...t,[e.target.name]:e.target.checked?\"yes\":\"no\"}:{...t,[e.target.name]:e.target.value}))};switch(r.type){case\"select\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"select\",{defaultValue:i,name:e,id:e,onChange:s},Object.keys(r.options).map(((e,t)=>(0,a.createElement)(\"option\",{key:t,value:e},r.options[e])))),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"radio\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"div\",{className:\"ultp-field-radio\"},(0,a.createElement)(\"div\",{className:\"ultp-field-radio-items\"},Object.keys(r.options).map(((t,n)=>(0,a.createElement)(\"div\",{key:n,className:\"ultp-field-radio-item\"},(0,a.createElement)(\"input\",{type:\"radio\",id:t,name:e,value:t,defaultChecked:t==i,onChange:s}),(0,a.createElement)(\"label\",{htmlFor:t},r.options[t])))))),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"color\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field\"},(0,a.createElement)(\"input\",{type:\"text\",defaultValue:i,className:\"ultp-color-picker\"}),(0,a.createElement)(\"span\",{className:\"ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"text\",name:e,className:\"ultp-color-code\",defaultValue:i})),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"number\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"number\",name:e,defaultValue:i,onChange:s}),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"switch\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-field-inline\"},(0,a.createElement)(\"input\",{value:\"yes\",type:\"checkbox\",name:e,defaultChecked:\"yes\"==i||\"on\"==i,onChange:s}),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc));case\"switchButton\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-field-inline\"},(0,a.createElement)(\"input\",{type:\"checkbox\",value:\"yes\",name:e,defaultChecked:\"yes\"==i||\"on\"==i}),r.desc&&(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"span\",{id:\"postx-regenerate-css\",className:`ultp-upgrade-pro-btn cursor ${\"yes\"==i?\"active\":\"\"} `},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-admin-generic\"}),(0,a.createElement)(\"span\",{className:\"ultp-text\"},__(\"Re-Generate Font Files\",\"ultimate-post\")))));case\"multiselect\":const t=Array.isArray(i)?i:[i];return(0,a.createElement)(l,{multikey:e,value:r,multiValue:t});case\"text\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"input\",{type:\"text\",name:e,defaultValue:i,onChange:s}),(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc,r.link&&(0,a.createElement)(\"a\",{className:\"settingsLink\",target:\"_blank\",href:r.link,rel:\"noreferrer\"},r.linkText)));case\"textarea\":return(0,a.createElement)(\"div\",{className:\"ultp-settings-field ultp-settings-input-field\"},(0,a.createElement)(\"textarea\",{name:e,defaultValue:i}),(0,a.createElement)(\"span\",{className:\"ultp-description\"},r.desc,r.link&&(0,a.createElement)(\"a\",{className:\"settingsLink\",target:\"_blank\",href:r.link,rel:\"noreferrer\"},r.linkText)));case\"shortcode\":return(0,a.createElement)(\"code\",{className:\"ultp-shortcode-copy\"},\"[\",r.value,\"]\")}})(e,s)))))})))}},1370:(e,t,n)=>{\"use strict\";n.d(t,{q:()=>a});const{__}=wp.i18n,a={ultp_wpbakery:{name:\"WPBakery\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the WPBakery Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"wpbakery.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fwpbakery-page-builder-addon\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=f99NZ6N9uDQ\",position:20,integration:!0},ultp_templates:{name:\"Saved Templates\",desc:__(\"Create unlimited templates by converting Gutenberg blocks into shortcodes to use them anywhere.\",\"ultimate-post\"),img:\"saved-template.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fshortcodes-support\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Faddons\u002Fsave-template\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=6ydwiIp2Jkg\",position:10},ultp_table_of_content:{name:\"Table of Contents\",desc:__(\"It enables a highly customizable block to the Gutenberg blocks library to display the Table of Contents.\",\"ultimate-post\"),img:\"table-of-content.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Ftable-of-content\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Faddons\u002Ftable-of-content\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=xKu_E720MkE\",position:25},ultp_oxygen:{name:\"Oxygen\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Oxygen Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"oxygen.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Foxygen-builder-addon\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=iGik4w3ZEuE\",position:20,integration:!0},ultp_elementor:{name:\"Elementor\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Elementor Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"elementor-icon.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Felementor-addon\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=GJEa2_Tow58\",position:20,integration:!0},ultp_dynamic_content:{name:\"Dynamic Content\",desc:__(\"Insert dynamic, real-time content like excerpts, dates, author names, etc. in PostX blocks.\",\"ultimate-post\"),img:\"dynamic-content.svg\",is_pro:!1,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fpostx-features\u002Fdynamic-content\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcreate-custom-fields-in-wordpress\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=4oeXkHCRVCA\",position:6,notice:\"ACF, Meta Box and Pods (PRO)\",new:!0},ultp_divi:{name:\"Divi\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Divi Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"divi.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fdivi-addon\u002F?utm_source=postx-menu&utm_medium=addons-demo&utm_campaign=postx-dashboard\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=p9RKTYzqU48\",position:20,integration:!0},ultp_custom_font:{name:\"Custom Font\",desc:__(\"It allows you to upload custom fonts and use them on any PostX blocks with all typographical options.\",\"ultimate-post\"),img:\"custom_font.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fwordpress-custom-fonts\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fcustom-fonts\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=tLqUpj_gL-U\",position:7},ultp_bricks_builder:{name:\"Bricks Builder\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Bricks Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"bricks.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fbricks-builder-addon\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=t0ae3TL48u0\",position:20,integration:!0},ultp_beaver_builder:{name:\"Beaver\",desc:__(\"It lets you use PostX’s Gutenberg blocks in the Beaver Builder by using the Saved Template Addon.\",\"ultimate-post\"),img:\"beaver.svg\",is_pro:!1,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fpage-builder-integration\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fbeaver-builder-addon\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=aLfI0RkJO6g\",position:20,integration:!0},ultp_frontend_submission:{name:\"Front End Post Submission\",desc:__(\"Registered\u002Fguest writers can submit posts from frontend. Admins can easily manage, review, and publish posts.\",\"ultimate-post\"),img:\"frontend_submission.svg\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Ffront-end-post-submission\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Ffront-end-post-submission\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=KofF7BUwNC0\",is_pro:!0,position:6,integration:!1},ultp_category:{name:\"Taxonomy Image & Color\",desc:__(\"It allows you to add category or taxonomy-specific featured images and colors to make them attractive.\",\"ultimate-post\"),is_pro:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fcategory-addon\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Ftaxonomy-image-and-color\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=cd75q-lJIwg\",img:\"category-style.svg\",position:15},ultp_progressbar:{name:\"Progress Bar\",desc:__(\"Display a visual indicator of the reading progression of blog posts and the scrolling progression of pages.\",\"ultimate-post\"),img:\"progressbar.svg\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fprogress-bar\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fprogress-bar\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=QErQoDhWi4c\",is_pro:!0,position:30},ultp_yoast:{name:\"Yoast\",desc:__(\"It allows you to display custom meta descriptions added with the Yoast SEO plugin instead of excerpts.\",\"ultimate-post\"),img:\"yoast.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"Yoast\",slug:\"wordpress-seo\u002Fwp-seo.php\"},position:55,integration:!0},ultp_aioseo:{name:\"All in One SEO\",desc:__(\"It allows you to display custom meta descriptions added with the All in One SEO plugin instead of excerpts.\",\"ultimate-post\"),img:\"aioseo.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"All in One SEO\",slug:\"all-in-one-seo-pack\u002Fall_in_one_seo_pack.php\"},position:35,integration:!0},ultp_rankmath:{name:\"Rank Math\",desc:__(\"It allows you to display custom meta descriptions added with the Rank Math plugin instead of excerpts.\",\"ultimate-post\"),img:\"rankmath.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"Rank Math\",slug:\"seo-by-rank-math\u002Frank-math.php\"},position:40,integration:!0},ultp_seopress:{name:\"SEOPress\",desc:__(\"It allows you to display custom meta descriptions added with the SEOPress plugin instead of excerpts.\",\"ultimate-post\"),img:\"seopress.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"SEOPress\",slug:\"wp-seopress\u002Fseopress.php\"},position:45,integration:!0},ultp_squirrly:{name:\"Squirrly\",desc:__(\"It allows you to display custom meta descriptions added with the Squirrly plugin instead of excerpts.\",\"ultimate-post\"),img:\"squirrly.svg\",is_pro:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fseo-meta-support\u002Flive_demo_args\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fseo-meta\u002F\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=H8x-hHC0JBM\",required:{name:\"Squirrly\",slug:\"squirrly-seo\u002Fsquirrly.php\"},position:50,integration:!0},ultp_builder:{name:\"Dynamic Site Builder\",desc:__(\"The Gutenberg-based Builder allows users to create dynamic templates for Home and all Archive pages.\",\"ultimate-post\"),img:\"builder-icon.svg\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fgutenberg-site-builder\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=0qQmnUqWcIg\",is_pro:!1,position:5},ultp_chatgpt:{name:\"ChatGPT\",desc:__(\"PostX brings the ChatGPT into the WordPress Dashboard to let you generate content effortlessly.\",\"ultimate-post\"),img:\"ChatGPT.svg\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fadd-on\u002Fchatgpt-addon\u002F\",live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx-chatgpt-wordpress-ai-content-generator\u002Flive_demo_args\",video:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=NE4BPw4OTAA\",is_pro:!1,position:6}}},7191:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>s});var a=n(7294),r=n(1383),o=n(8949),i=n(356);n(563);const{__}=wp.i18n,l={grid:{label:__(\"Post Grid Blocks\",\"ultimate-post\"),attr:{post_grid_1:{label:__(\"Post Grid #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6829\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-1\u002F\",icon:\"post-grid-1.svg\"},post_grid_2:{label:__(\"Post Grid #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6830\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-2\u002F\",icon:\"post-grid-2.svg\"},post_grid_3:{label:__(\"Post Grid #3\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6831\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-3\u002F\",icon:\"post-grid-3.svg\"},post_grid_4:{label:__(\"Post Grid #4\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6832\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-4\u002F\",icon:\"post-grid-4.svg\"},post_grid_5:{label:__(\"Post Grid #5\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6833\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-5\u002F\",icon:\"post-grid-5.svg\"},post_grid_6:{label:__(\"Post Grid #6\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6834\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-6\u002F\",icon:\"post-grid-6.svg\"},post_grid_7:{label:__(\"Post Grid #7\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6835\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-grid-7\u002F\",icon:\"post-grid-7.svg\"}}},list:{label:__(\"Post List Blocks\",\"ultimate-post\"),attr:{post_list_1:{label:__(\"Post List #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6836\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-1\u002F\",icon:\"post-list-1.svg\"},post_list_2:{label:__(\"Post List #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6837\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-2\u002F\",icon:\"post-list-2.svg\"},post_list_3:{label:__(\"Post List #3\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6838\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-3\u002F\",icon:\"post-list-3.svg\"},post_list_4:{label:__(\"Post List #4\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6839\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-list-4\u002F\",icon:\"post-list-4.svg\"}}},slider:{label:__(\"Post Slider Blocks\",\"ultimate-post\"),attr:{post_slider_1:{label:__(\"Post Slider #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6840\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-slider-1\u002F\",icon:\"post-slider-1.svg\"},post_slider_2:{label:__(\"Post Slider #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7487\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-slider-2\u002F\",icon:\"post-slider-2.svg\"}}},other:{label:__(\"Others PostX Blocks\",\"ultimate-post\"),attr:{menu:{label:__(\"Menu - PostX\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fintroducing-postx-mega-menu\u002F\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fpostx-menu\u002F\",icon:\"\u002Fmenu\u002Fmenu.svg\"},post_module_1:{label:__(\"Post Module #1\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6825\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-module-1\u002F\",icon:\"post-module-1.svg\"},post_module_2:{label:__(\"Post Module #2\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6827\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpost-module-2\u002F\",icon:\"post-module-2.svg\"},heading:{label:__(\"Heading\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6842\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fheading-blocks\u002F\",icon:\"heading.svg\"},image:{label:__(\"Image\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6843\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fimage-blocks\u002F\",icon:\"image.svg\"},taxonomy:{label:__(\"Taxonomy\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6841\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Ftaxonomy-1\u002F\",icon:\"ultp-taxonomy.svg\"},wrapper:{label:__(\"Wrapper\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6844\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fwrapper\u002F\",icon:\"wrapper.svg\"},news_ticker:{label:__(\"News Ticker\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid6845\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fnews-ticker-block\u002F\",icon:\"news-ticker.svg\"},advanced_list:{label:__(\"List - PostX\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7994\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Flist-block\u002F\",icon:\"advanced-list.svg\"},button_group:{label:__(\"Button Group\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid7952\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fbutton-block\u002F\",icon:\"button-group.svg\"},row:{label:__(\"Row\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx-row-column-block\u002F\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fpostx-features\u002Frow-column\u002F\",icon:\"row.svg\"},advanced_search:{label:__(\"Search - PostX\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8233\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fsearch-block\",icon:\"advanced-search.svg\"},dark_light:{label:__(\"Dark Light\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8233\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fsearch-block\",icon:\"advanced-search.svg\"},star_ratings:{label:__(\"Star Rating\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8858\",icon:\"star-rating.svg\"},accordion:{label:__(\"Accordion\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8851\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Faccordion-block\u002F\",icon:\"accordion.svg\"},tabs:{label:__(\"Tabs\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid9045\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Ftabs-block\u002F\",icon:\"tabs.svg\"},gallery:{label:__(\"PostX Gallery\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid8951\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fpostx-gallery-block\u002F\",icon:\"gallery.svg\"},youtube_gallery:{label:__(\"Youtube Gallery\",\"ultimate-post\"),default:!0,live:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Fblocks\u002F#demoid9096\",docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fall-blocks\u002Fyoutube-gallery-block\u002F\",icon:\"youtube-gallery.svg\"}}},builder:{label:__(\"Site Builder Blocks\",\"ultimate-post\"),attr:{builder_post_title:{label:__(\"Post Title\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fpost_title.svg\"},builder_advance_post_meta:{label:__(\"Advance Post Meta\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fpost_meta.svg\"},builder_archive_title:{label:__(\"Archive Title\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"archive-title.svg\"},builder_author_box:{label:__(\"Post Author Box\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fauthor_box.svg\"},builder_post_next_previous:{label:__(\"Post Next Previous\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fnext_previous.svg\"},builder_post_author_meta:{label:__(\"Post Author Meta\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fauthor.svg\"},builder_post_breadcrumb:{label:__(\"Post Breadcrumb\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fbreadcrumb.svg\"},builder_post_category:{label:__(\"Post Category\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fcategory.svg\"},builder_post_comment_count:{label:__(\"Post Comment Count\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fcomment_count.svg\"},builder_post_comments:{label:__(\"Post Comments\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fcomments.svg\"},builder_post_content:{label:__(\"Post Content\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fcontent.svg\"},builder_post_date_meta:{label:__(\"Post Date Meta\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fpost_date.svg\"},builder_post_excerpt:{label:__(\"Post Excerpt\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fexcerpt.svg\"},builder_post_featured_image:{label:__(\"Post Featured Image\u002FVideo\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Ffeatured_img.svg\"},builder_post_reading_time:{label:__(\"Post Reading Time\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Freading_time.svg\"},builder_post_social_share:{label:__(\"Post Social Share\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fshare.svg\"},builder_post_tag:{label:__(\"Post Tag\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fpost_tag.svg\"},builder_post_view_count:{label:__(\"Post View Count\",\"ultimate-post\"),default:!0,docs:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002Fdynamic-site-builder\u002F\",icon:\"builder\u002Fview_count.svg\"}}}},s=()=>{const[e,t]=(0,a.useState)({}),[n,s]=(0,a.useState)({state:!1,status:\"\"}),[p,c]=(0,a.useState)(!1),d=(0,r.t)();(0,a.useEffect)((()=>{u()}),[]);const u=()=>{c(!0),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_all_settings\",method:\"POST\",data:{key:\"key\",value:\"value\"}}).then((e=>{e.success&&d.current&&(t(e.settings),c(!1))}))};return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-blocks-container\"},n.state&&(0,a.createElement)(i.Z,{delay:2e3,toastMessages:n,setToastMessages:s}),Object.keys(l).map(((n,r)=>{const i=l[n];return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-blocks-group\",key:r},p?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:180,unit1:\"px\",size2:32,unit2:\"px\",br:4}}),(0,a.createElement)(\"div\",{className:\"ultp-dashboard-group-blocks\"},Array(3).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{className:\"ultp-dashboard-group-blocks-item ultp-dash-item-con\",key:t},(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-meta\"},(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:22,unit1:\"px\",size2:25,unit2:\"px\",br:4}}),(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"px\",size2:20,unit2:\"px\",br:2}})),(0,a.createElement)(\"div\",{className:\"ultp-blocks-control-option ultp-dash-control-options\"},(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:46,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,a.createElement)(o.Z,{type:\"custom_size\",c_s:{size1:36,unit1:\"px\",size2:20,unit2:\"px\",br:8}}))))))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp_h5\"},i.label),(0,a.createElement)(\"div\",{className:\"ultp-dashboard-group-blocks\"},Object.keys(i.attr).map(((n,r)=>{const o=i.attr[n];let l=!!o.default;return\"\"==e[n]&&(l=\"yes\"==e[n]),(0,a.createElement)(\"div\",{className:\"ultp-dashboard-group-blocks-item ultp-dash-item-con\",key:r},(0,a.createElement)(\"div\",{className:\"ultp-blocks-item-meta\"},(0,a.createElement)(\"img\",{src:`${ultp_dashboard_pannel.url}assets\u002Fimg\u002Fblocks\u002F${o.icon}`,alt:o.label}),(0,a.createElement)(\"div\",null,o.label)),(0,a.createElement)(\"div\",{className:\"ultp-blocks-control-option ultp-dash-control-options\"},o.docs&&(0,a.createElement)(\"a\",{href:o.docs+\"?utm_source=db-postx-blocks&utm_medium=docs&utm_campaign=postx-dashboard\",className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"div\",{className:\"dashicons dashicons-media-document\"}),__(\"Docs\",\"ultimate-post\")),o.live&&(0,a.createElement)(\"a\",{href:o.live,className:\"ultp-option-tooltip\",target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"div\",{className:\"dashicons dashicons-external\"}),__(\"Live\",\"ultimate-post\")),(0,a.createElement)(\"input\",{type:\"checkbox\",className:\"ultp-blocks-enable\",id:n,checked:l,onChange:()=>{(n=>{const a=e?.hasOwnProperty(n)&&\"yes\"!=e[n]?\"yes\":\"\";t({...e,[n]:a}),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Faddon_block_action\",method:\"POST\",data:{key:n,value:a}}).then((e=>{e.success&&s({status:\"success\",messages:[e.message],state:!0})}))})(n)}}),(0,a.createElement)(\"label\",{className:\"ultp-control__label\",htmlFor:n})))})))))})))}},4872:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>i});var a=n(7294),r=n(1078),o=n(6765);const{__}=wp.i18n,i=e=>{const{id:t,type:n,settings:i,defaults:l,setShowCondition:s}=e,[p,c]=(0,a.useState)(t&&void 0!==i[n]&&void 0!==i[n][t]?i[n][t]:[\"include\u002F\"+n]),[d,u]=(0,a.useState)({reload:!1,dataSaved:!1});return(0,a.createElement)(\"div\",{className:\"ultp-modal-content\"},(0,a.createElement)(\"div\",{className:\"ultp-condition-wrap\"},(0,a.createElement)(\"div\",{className:\"ultp_h3\"},__(\"Where Do You Want to Display Your Template?\",\"ultimate-post\")),(0,a.createElement)(\"p\",{className:\"ultp-description\"},__(\"Set the conditions that determine where your Template is used throughout your site.\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-condition-items\"},p.map(((e,i)=>{if(e)return(0,a.createElement)(\"div\",{key:i,className:\"ultp-condition-wrap__field\"},\"header\"==n||\"footer\"==n?(0,a.createElement)(r.Z,{key:e,id:t,index:i,type:n,value:e,defaults:l,setChange:(e,t)=>{u({dataSaved:!1});let n=JSON.parse(JSON.stringify(p));n[t]=e,c(n)}}):(0,a.createElement)(o.Z,{key:e,id:t,index:i,type:n,value:e,defaults:l,setChange:(e,t)=>{u({dataSaved:!1});let n=JSON.parse(JSON.stringify(p));n[t]=e,c(n)}}),(0,a.createElement)(\"span\",{className:\"dashicons dashicons-no-alt ultp-condition_cancel\",onClick:()=>{u({dataSaved:!1});let e=JSON.parse(JSON.stringify(p));e.splice(i,1),c(e)}}))}))),(0,a.createElement)(\"button\",{className:\"btnCondition cursor\",onClick:()=>{const e=\"singular\"==n?\"include\u002Fsingular\u002Fpost\":\"header\"==n||\"footer\"==n?\"include\u002F\"+n+\"\u002Fentire_site\":\"include\u002F\"+n;c([...p,e])}},__(\"Add Conditions\",\"ultimate-post\"))),(0,a.createElement)(\"button\",{className:\"ultp-save-condition cursor\",onClick:()=>{u({reload:!0});let e=Object.assign({},i);void 0!==e[n]||(e[n]={}),e[n][t]=p.filter((e=>e)),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fcondition_save\",method:\"POST\",data:{settings:e}}).then((e=>{e.success&&(u({reload:!1,dataSaved:!0}),setTimeout((function(){u({reload:!1,dataSaved:!1}),s&&s(\"\")}),2e3))}))}},d.dataSaved?\"Condition Saved.\":\"Save Condition\",(0,a.createElement)(\"span\",{style:{visibility:d.reload?\"visible\":\"hidden\"},className:\"dashicons dashicons-update rotate ultp-builder-import\"})))}},1078:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);const r=e=>{const t=(0,a.useRef)(),{value:n,type:r,defaults:o,setChange:i,index:l}=e,s=n.split(\"\u002F\"),[p,c]=(0,a.useState)([]),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)(!1),[h,g]=(0,a.useState)(s[2]||\"\"),[v,_]=(0,a.useState)(\"\"),w=e=>{null!=t.current&&(t.current.contains(e.target)||u(!1))};(0,a.useEffect)((()=>(s[4]?x(s[4],!0):b(),document.addEventListener(\"mousedown\",w),()=>document.removeEventListener(\"mousedown\",w))),[]);const b=()=>{let e=\"\";const t=s[3];return t&&o[s[2]]&&o[s[2]].forEach((n=>{n.value==t?(e=n.search,f(!0)):n.attr&&n.attr.forEach((n=>{n.value==t&&(e=n.search,f(!0))}))})),e},x=(e,t)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fcondition\",method:\"POST\",data:{type:b(),term:e,title_return:t}}).then((e=>{e.success&&(t?_(e.data):c(e.data))}))};return(0,a.createElement)(\"div\",{className:\"ultp-condition-fields\"},(0,a.createElement)(\"select\",{value:s[0]||\"include\",onChange:e=>{s.splice(0,1,e.target.value),i(s.join(\"\u002F\"),l)}},(0,a.createElement)(\"option\",{value:\"include\"},\"Include\"),(0,a.createElement)(\"option\",{value:\"exclude\"},\"Exclude\")),(0,a.createElement)(\"select\",{value:s[2]||\"entire_site\",onChange:e=>{s.splice(2,1,e.target.value||\"entire_site\"),s.splice(3),\"singular\"==e.target.value&&s.push(\"post\"),i(s.join(\"\u002F\"),l)}},o[r].map(((e,t)=>(0,a.createElement)(\"option\",{key:t,value:e.value},e.label)))),s[2]&&\"entire_site\"!=s[2]&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"select\",{value:s[3]||\"\",onChange:e=>{const t=e.target.options[e.target.options.selectedIndex].dataset.search;f(!!t),g(\"\"),c([]),s.splice(3,1,e.target.value),s.splice(e.target.value?4:3);const n=s.filter((function(e){return e}));i(n.join(\"\u002F\"),l)}},o[s[2]]&&o[s[2]].map(((e,t)=>e.attr?(0,a.createElement)(\"optgroup\",{label:e.label,key:t},e.attr.map(((e,t)=>!e.attr&&(0,a.createElement)(\"option\",{value:e.value,\"data-search\":e.search,key:t},e.label)))):(0,a.createElement)(\"option\",{value:e.value,\"data-search\":e.search,key:t},e.label)))),(m||s[4])&&(0,a.createElement)(\"div\",{ref:t,className:\"ultp-condition-dropdown\"},(0,a.createElement)(\"div\",{onClick:()=>u(!0),className:`ultp-condition-text ${h&&\"ultp-condition-dropdown__content\"}`},h&&v?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"span\",{className:\"ultp-condition-dropdown__label\"},v,(0,a.createElement)(\"span\",{className:\"dashicons dashicons-no-alt ultp-dropdown-value__close\",onClick:()=>{f(!0),g(\"\"),s.splice(4,1,\"\");const e=s.filter((function(e){return e}));i(e.join(\"\u002F\"),l)}}))):(0,a.createElement)(\"span\",{className:\"ultp-condition-dropdown__default\"},\" \",\"All\",\" \"),(0,a.createElement)(\"span\",{className:\"ultp-condition-arrow dashicons dashicons-arrow-down-alt2\"})),d&&(0,a.createElement)(\"div\",{className:\"ultp-condition-search\"},(0,a.createElement)(\"input\",{type:\"text\",name:\"search\",autoComplete:\"off\",placeholder:\"Search\",onChange:e=>{x(e.target.value,!1)}}),p.length>0&&(0,a.createElement)(\"ul\",null,p.map(((e,t)=>(0,a.createElement)(\"li\",{key:t,onClick:()=>{u(!1),g(e.value),_(e.title),s.splice(4,1,e.value),i(s.join(\"\u002F\"),l)}},e.title))))))))}},6765:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);const r=e=>{const t=(0,a.useRef)(),{value:n,type:r,defaults:o,setChange:i,index:l}=e,s=n.split(\"\u002F\"),[p,c]=(0,a.useState)([]),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)(!1),[h,g]=(0,a.useState)(s[2]||\"\"),[v,_]=(0,a.useState)(\"\"),w=e=>{null!=t.current&&(t.current.contains(e.target)||u(!1))};(0,a.useEffect)((()=>(s[3]?x(s[3],!0):b(),document.addEventListener(\"mousedown\",w),()=>document.removeEventListener(\"mousedown\",w))),[]);const b=()=>{let e=\"\";const t=s[2];return t&&o[r]&&o[r].forEach((n=>{n.value==t?(e=n.search,f(!0)):n.attr&&n.attr.forEach((n=>{n.value==t&&(e=n.search,f(!0))}))})),e},x=(e,t)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fcondition\",method:\"POST\",data:{type:b(),term:e,title_return:t}}).then((e=>{e.success&&(t?_(e.data):c(e.data))}))};return(0,a.createElement)(\"div\",{className:\"ultp-condition-fields\"},(0,a.createElement)(\"select\",{value:s[0]||\"include\",onChange:e=>{s[0]=e.target.value,i(s.join(\"\u002F\"),l)}},(0,a.createElement)(\"option\",{value:\"include\"},\"Include\"),(0,a.createElement)(\"option\",{value:\"exclude\"},\"Exclude\")),(0,a.createElement)(\"select\",{value:s[2]||\"post\",onChange:e=>{const t=e.target.options[e.target.options.selectedIndex].dataset.search;f(!!t),g(\"\"),c([]),s[2]=e.target.value;const n=s.filter((function(e){return e}));i(n.join(\"\u002F\"),l)}},o[r]&&o[r].map(((e,t)=>e.attr?(0,a.createElement)(\"optgroup\",{label:e.label,key:t},e.attr.map(((e,t)=>(0,a.createElement)(\"option\",{value:e.value,\"data-search\":e.search,key:t},e.label)))):(0,a.createElement)(\"option\",{value:e.value,\"data-search\":e.search,key:t},e.label)))),(m||s[3])&&(0,a.createElement)(\"div\",{ref:t,className:\"ultp-condition-dropdown\"},(0,a.createElement)(\"div\",{onClick:()=>u(!0),className:`ultp-condition-text ${h&&\"ultp-condition-dropdown__content\"}`},h&&v?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"span\",{className:\"ultp-condition-dropdown__label\"},v,(0,a.createElement)(\"span\",{className:\"dashicons dashicons-no-alt ultp-dropdown-value__close\",onClick:()=>{f(!0),g(\"\"),s[3]=\"\";const e=s.filter((function(e){return e}));i(e.join(\"\u002F\"),l)}}))):(0,a.createElement)(\"span\",{className:\"ultp-condition-dropdown__default\"},\" \",\"All\",\" \"),(0,a.createElement)(\"span\",{className:\"ultp-condition-arrow dashicons dashicons-arrow-down-alt2\"})),d&&(0,a.createElement)(\"div\",{className:\"ultp-condition-search\"},(0,a.createElement)(\"input\",{type:\"text\",name:\"search\",autoComplete:\"off\",placeholder:\"Search\",onChange:e=>{x(e.target.value,!1)}}),p.length>0&&(0,a.createElement)(\"ul\",null,p.map(((e,t)=>(0,a.createElement)(\"li\",{key:t,onClick:()=>{u(!1),g(e.value),_(e.title),s[3]=e.value,i(s.join(\"\u002F\"),l)}},e.title)))))))}},8351:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>d});var a=n(7462),r=n(7294),o=n(1383),i=n(4766),l=n(356),s=n(4482),p=n(8949),c=n(4872);n(3493);const{__}=wp.i18n,d=e=>{const t=e.has_ultp_condition?ultp_condition:ultp_dashboard_pannel,{notEditor:n}=e,d=[\"singular\",\"archive\",\"category\",\"search\",\"author\",\"post_tag\",\"date\",\"header\",\"footer\",\"404\"],[u,m]=(0,r.useState)(\"\"),[f,h]=(0,r.useState)([]),[g,v]=(0,r.useState)(\"all\"),[_,w]=(0,r.useState)(!1),[b,x]=(0,r.useState)([]),[y,k]=(0,r.useState)(n||\"\"),[E,C]=(0,r.useState)([]),[S,M]=(0,r.useState)(!1),[L,N]=(0,r.useState)(\"\"),[Z,P]=(0,r.useState)([]),[z,A]=(0,r.useState)(\"\"),[B,H]=(0,r.useState)(!1),[T,R]=(0,r.useState)(!1),[O,j]=(0,r.useState)(!1),[V,F]=(0,r.useState)(\"\"),[W,D]=(0,r.useState)(!1),I=\"yes\"==n?wp.data.select(\"core\u002Feditor\").getCurrentPostId():\"\",[U,$]=(0,r.useState)([]),[G,q]=(0,r.useState)(!1),[K,X]=(0,r.useState)({state:!1,status:\"\"}),Q=(0,o.t)(),J=async()=>{await wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ffetch_premade_data\",method:\"POST\",data:{type:\"starter_lists\"}}).then((e=>{if(e.success&&e.data){const t=JSON.parse(e.data);Y(t)}}))},Y=e=>{const t=[],n=[];e.forEach((e=>{e.templates.forEach((a=>{const r={...a,parentID:e.ID};r.hasOwnProperty(\"home_page\")&&\"home_page\"==r.home_page&&t.push(r),\"ultp_builder\"==r.type&&n.push(r)}))})),P(n),$(t)},ee=async()=>{await wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fdata_builder\",method:\"POST\",data:{pid:I}}).then((e=>{e.success&&Q.current&&(h(e.postlist),x(e.settings),C(e.defaults),m(e.type),j(!0),J())}))};(0,r.useEffect)((()=>(ee(),document.addEventListener(\"mousedown\",ne),()=>document.removeEventListener(\"mousedown\",ne))),[]);const te=(e,t)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_single_premade\",method:\"POST\",data:{type:L,ID:e,apiEndPoint:t}}).then((e=>{e.success?(A(\"\"),window.open(e?.link?.replaceAll(\"&amp;\",\"&\"))):(H(!0),A(\"\"),R(!0))}))},ne=e=>{e.target&&!e.target.classList?.contains(\"ultp-reserve-button\")&&(F(\"\"),D(!1))},ae=(e,n)=>{const a=`https:\u002F\u002Fpostxkit.wpxpo.com\u002F${e.live}\u002Fwp-content\u002Fuploads\u002Fsites\u002F${e.parentID}\u002Fpostx_importer_img\u002Fpages\u002F${e.name.toLowerCase().replaceAll(\" \",\"_\")}.jpg`,o=\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+([\"header\",\"footer\",\"front_page\"].includes(L)?e.live:e.live+\"\u002Fpostx_\"+(\"archive\"==e.builder_type?e.archive_type:e.builder_type));return(0,r.createElement)(\"div\",{key:n,className:\"ultp-item-list ultp-premade-item\"},(0,r.createElement)(\"div\",{className:\"listInfo\"},(0,r.createElement)(\"div\",{className:\"title\"},(0,r.createElement)(\"span\",null,e.name),(0,r.createElement)(\"div\",{className:\"parent\"},e.parent)),e.pro&&!t.active?(0,r.createElement)(\"a\",{className:\"ultp-upgrade-pro-btn\",target:\"_blank\",href:`https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-builder&utm_medium=${L}-template&utm_campaign=postx-dashboard#pricing`,rel:\"noreferrer\"},__(\"Upgrade to Pro\",\"ultimate-post\"),\"  ➤\"):e.pro&&T?(0,r.createElement)(\"a\",{className:\"ultp-btn-success\",target:\"_blank\",href:`https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-builder&utm_medium=${L}-template&utm_campaign=postx-dashboard#pricing`,rel:\"noreferrer\"},__(\"Get License\",\"ultimate-post\")):(0,r.createElement)(\"span\",{onClick:()=>{A(e.ID),te(e.ID,\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+e.live)},className:\"btnImport cursor\"},\" \",i.ZP.arrow_down_line,__(\"Import\",\"ultimate-post\"),z&&z==e.ID?(0,r.createElement)(\"span\",{className:\"dashicons dashicons-update rotate\"}):\"\")),(0,r.createElement)(\"div\",{className:\"listOverlay bg-image-aspect\",style:{backgroundImage:`url(${a})`}},(0,r.createElement)(\"div\",{className:\"ultp-list-dark-overlay\"},(0,r.createElement)(\"a\",{className:\"ultp-overlay-view ultp-dashboverlay\",href:o,target:\"_blank\",rel:\"noreferrer\"},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-visibility\"}),\" \",__(\"Live Preview\",\"ultimate-post\")))))},re=()=>\"all\"!=g&&\"archive\"!=g?(N(g),v(g),void((Z.length\u003C=0||\"front_page\"==g&&U.length\u003C=0)&&J())):(0,r.createElement)(\"div\",{className:\"ultp-builder-items\"},(\"all\"==g?[\"front_page\",...d]:\"archive\"==g?d.filter((e=>\"singular\"!=e)):[g]).map(((e,n)=>(0,r.createElement)(\"div\",{key:n,onClick:()=>{N(e),v(e),(Z.length\u003C=0||\"front_page\"==e&&U.length\u003C=0)&&J()}},(0,r.createElement)(\"div\",{className:\"newScreen ultp-item-list ultp-premade-item\"},(0,r.createElement)(\"div\",{className:\"listInfo\"},(0,r.createElement)(\"div\",{className:\"ultp_h6\"},e)),(0,r.createElement)(\"div\",{className:\"listOverlays\"},(0,r.createElement)(\"img\",{src:t.url+`addons\u002Fbuilder\u002Fassets\u002Ficons\u002Ftemplate\u002F${e.toLowerCase()}.svg`}),(0,r.createElement)(\"span\",{className:\"ultp-list-white-overlay\"},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-plus-alt\"}),__(\"Add\",\"ultimate-post\"),\" \",e)))))));return(0,r.createElement)(\"div\",{className:\"ultp-builder-dashboard\"},K.state&&(0,r.createElement)(l.Z,{delay:2e3,toastMessages:K,setToastMessages:X}),!n&&(0,r.createElement)(\"div\",{className:\"ultp-builder-dashboard__content ultp-builder-tab\"},(0,r.createElement)(\"div\",{className:\"ultp-builder-tab__option\"},(0,r.createElement)(\"span\",{onClick:()=>(M(!0),void wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ffetch_premade_data\",method:\"POST\",data:{type:\"fetch_all_data\"}}).then((e=>{e.success&&(ee(),M(!1),X({status:\"success\",messages:[e.message],state:!0}))}))),className:\"ultp-popup-sync\"},(0,r.createElement)(\"i\",{className:\"dashicons dashicons-update-alt\"+(S?\" rotate\":\"\")}),__(\"Synchronize\",\"ultimate-post\")),(0,r.createElement)(\"ul\",null,(0,r.createElement)(\"li\",(0,a.Z)({},\"all\"==g&&{className:\"active\"},{onClick:()=>{v(\"all\"),w(!1),N(\"\")}}),(0,r.createElement)(\"span\",{className:\"dashicons dashicons-admin-home\"}),\" \",__(\"All Template\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"front_page\"==g&&{className:\"active\"},{onClick:()=>{v(\"front_page\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Ffront_page.svg\"}),__(\"Front Page\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"singular\"==g&&{className:\"active\"},{onClick:()=>{v(\"singular\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fsingular.svg\"}),__(\"Singular\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"search\"==g&&{className:\"active\"},{onClick:()=>{v(\"search\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fsearch.svg\"}),__(\"Search Result\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"archive\"==g&&{className:\"active\"},{onClick:()=>{v(\"archive\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Farchive.svg\"}),__(\"Archive\",\"ultimate-post\")),(0,r.createElement)(\"ul\",null,(0,r.createElement)(\"li\",(0,a.Z)({},\"category\"==g&&{className:\"active\"},{onClick:()=>{v(\"category\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fcategory.svg\"}),__(\"Category\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"author\"==g&&{className:\"active\"},{onClick:()=>{v(\"author\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fauthor.svg\"}),__(\"Authors\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"post_tag\"==g&&{className:\"active\"},{onClick:()=>{v(\"post_tag\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Ftag.svg\"}),__(\"Tags\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"date\"==g&&{className:\"active\"},{onClick:()=>{v(\"date\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fdate.svg\"}),__(\"Date\",\"ultimate-post\"))),(0,r.createElement)(\"li\",(0,a.Z)({},\"header\"==g&&{className:\"active\"},{onClick:()=>{v(\"header\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Fheader.svg\"}),__(\"Header\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"footer\"==g&&{className:\"active\"},{onClick:()=>{v(\"footer\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002Ffooter.svg\"}),__(\"Footer\",\"ultimate-post\")),(0,r.createElement)(\"li\",(0,a.Z)({},\"404\"==g&&{className:\"active\"},{onClick:()=>{v(\"404\"),w(!1),N(\"\")}}),(0,r.createElement)(\"img\",{src:t.url+\"addons\u002Fbuilder\u002Fassets\u002Ficons\u002Fmenu\u002F404.svg\"}),\"404\"))),(0,r.createElement)(\"div\",{className:\"ultp-builder-tab__content ultp-builder-tab__template\"},(0,r.createElement)(\"div\",{className:\"ultp-builder-tab__heading\"},(0,r.createElement)(\"div\",{className:\"ultp-builder-heading__title\"},(\"\"!=L||_)&&G&&(0,r.createElement)(\"span\",{onClick:()=>{q(!1),w(!1),N(\"\")}},\" \",i.ZP.leftAngle2,__(\"Back\",\"ultimate-post\")),(0,r.createElement)(\"div\",{className:\"ultp_h5 heading\"},__(\"All\",\"ultimate-post\"),\" \",\"all\"==g?\"\":g.replace(\"_\",\" \"),\" \",__(\"Templates\",\"ultimate-post\"))),f.length>0&&\"\"==L&&!_?(0,r.createElement)(\"button\",{className:\"cursor ultp-primary-button ultp-builder-create-btn\",onClick:()=>{w(!0),q(!0),N(\"all\"==g||\"archive\"==g?\"\":g)}},\" \",\"+ \",__(\"Create\",\"ultimate-post\"),\" \",\"all\"==g?\"\":g.replace(\"_\",\" \"),\" \",__(\"Template\",\"ultimate-post\")):O?\"\":(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:170,unit1:\"px\",size2:42,unit2:\"px\",br:4}})),(0,r.createElement)(\"div\",{className:\"ultp-tab__content active\"},O?\"\"==L?((e=\"all\")=>{let t=0;return(0,r.createElement)(\"div\",{className:\"ultp-template-list__tab\"},0==_&&f.length>0?f.map(((n,a)=>{const o=((e,t)=>{let n=[];return e?.id&&void 0!==b[e?.type]&&b[e.type][e.id]?.map(((e,t)=>{e&&(n=e.split(\"\u002F\"))})),n})(n);if(\"all\"==e||e==n.type||e==o[2]&&n.type==o[1]&&![\"header\",\"footer\"].includes(n.type))return t++,(0,r.createElement)(\"div\",{key:a,className:\"ultp-template-list__wrapper\"},(0,r.createElement)(\"div\",{className:\"ultp-template-list__heading\"},(0,r.createElement)(\"div\",{className:\"ultp-template-list__meta\"},(0,r.createElement)(\"div\",null,(0,r.createElement)(\"span\",null,\"front_page\"==n.type?\"Front Page\":n.type,\" \",\":\"),\" \",n.title,\" \",(0,r.createElement)(\"span\",null,\"ID :\"),\" #\",n.id),n.id&&void 0!==b[n.type]&&(0,r.createElement)(\"div\",{className:\"ultp-condition__previews\"},\"(\",(b[n.type][n.id]||[]).map(((e,t)=>{if(e){const n=e.split(\"\u002F\");return(0,r.createElement)(r.Fragment,{key:t},0==t?\"\":\", \",(0,r.createElement)(\"span\",null,void 0!==n[2]?n[2]:n[1]))}})),\")\")),(0,r.createElement)(\"div\",{className:\"ultp-template-list__control ultp-template-list__content\"},\"front_page\"!=n.type&&\"404\"!=n.type&&(0,r.createElement)(\"button\",{onClick:()=>{m(n.type),k(n.id)},className:\"ultp-condition__edit\"},__(\"Conditions\",\"ultimate-post\")),(0,r.createElement)(\"a\",{className:\"status\"},\" \",\"publish\"==n.status?\"Published\":n.status),(0,r.createElement)(\"a\",{href:n?.edit?.replaceAll(\"&amp;\",\"&\"),className:\"ultp-condition-action\",target:\"_blank\",rel:\"noreferrer\"},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-edit-large\"}),__(\"Edit\",\"ultimate-post\")),(0,r.createElement)(\"a\",{className:\"ultp-condition-action ultp-single-popup__btn cursor\",onClick:e=>{e.preventDefault(),confirm(\"Are you sure you want to duplicate this template?\")&&wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ftemplate_action\",method:\"POST\",data:{id:n.id,type:\"duplicate\",section:\"builder\"}}).then((e=>{e.success&&(ee(),X({status:\"success\",messages:[e.message],state:!0}))}))}},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-admin-page\"}),__(\"Duplicate\",\"ultimate-post\")),(0,r.createElement)(\"a\",{className:\"ultp-condition-action ultp-single-popup__btn cursor\",onClick:e=>{e.preventDefault(),confirm(\"Are you sure you want to delete this template?\")&&wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ftemplate_action\",method:\"POST\",data:{id:n.id,type:\"delete\",section:\"builder\"}}).then((e=>{e.success&&(h(f.filter((e=>e.id!=n.id))),X({status:\"error\",messages:[e.message],state:!0}))}))}},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-trash\"}),__(\"Delete\",\"ultimate-post\")),(0,r.createElement)(\"span\",{onClick:e=>{D(!W),F(n.id)}},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-ellipsis ultp-builder-dashboard__action ultp-reserve-button\"})),V==n.id&&W&&(0,r.createElement)(\"span\",{className:\"ultp-builder-action__active ultp-reserve-button\",onClick:e=>{F(\"\"),D(!1),e.preventDefault(),confirm(`Are you sure you want to ${\"publish\"==n.status?\"draft\":\"publish\"} this template?`)&&wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ftemplate_action\",method:\"POST\",data:{id:n.id,type:\"status\",status:\"publish\"==n.status?\"draft\":\"publish\"}}).then((e=>{e.success&&(ee(),X({status:\"success\",messages:[e.message],state:!0}))}))}},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-open-folder ultp-reserve-button\"}),\" \",__(\"Set to\",\"ultimate-post\"),\" \",\"publish\"==n.status?__(\"Draft\",\"ultimate-post\"):__(\"Publish\",\"ultimate-post\")))))})):re(),0==_&&f.length>0&&!t&&re())})(g):(0,r.createElement)(\"div\",{className:`premadeScreen ${L&&\" ultp-builder-items ultp\"+L}`},(0,r.createElement)(\"div\",{className:\"ultp-list-blank-img ultp-item-list ultp-premade-item\"},(0,r.createElement)(\"div\",{className:\"ultp-item-list-overlay ultp-p20 ultp-premade-img__blank\"},(0,r.createElement)(\"img\",{src:t.url+\"assets\u002Fimg\u002Fdashboard\u002Fstart-scratch.svg\"}),(0,r.createElement)(\"a\",{className:\"cursor\",onClick:e=>{e.preventDefault(),te()}},(0,r.createElement)(\"span\",{className:\"ultp-list-white-overlay\"},(0,r.createElement)(\"span\",{className:\"dashicons dashicons-plus-alt\"}),\" \",__(\"Start from Scratch\",\"ultimate-post\"),\" \")))),\"front_page\"==L?U.map(((e,t)=>ae(e,t))):Z.map(((e,t)=>{if(\"archive\"!=e.builder_type&&e.builder_type==L||\"archive\"==e.builder_type&&(e.archive_type==L||\"archive\"==L))return ae(e,t)}))):(0,r.createElement)(\"div\",{className:\"skeletonOverflow\",label:__(\"Loading…\",\"ultimate-post\")},Array(6).fill(1).map(((e,t)=>(0,r.createElement)(\"div\",{key:t,className:\"ultp-template-list__tab\",style:{marginBottom:\"15px\"}},(0,r.createElement)(\"div\",{className:\"ultp-template-list__wrapper\"},(0,r.createElement)(\"div\",{className:\"ultp-template-list__heading\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"%\",size2:22,unit2:\"px\",br:2}}),(0,r.createElement)(\"div\",{className:\"ultp-template-list__control ultp-template-list__content\"},(2==t||4==t)&&(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:42,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:42,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:56,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:25,unit1:\"px\",size2:12,unit2:\"px\",br:2}}))))))))))),y&&(0,r.createElement)(\"div\",{className:\"ultp-condition-wrapper ultp-condition--active\"},(0,r.createElement)(\"div\",{className:\"ultp-condition-popup ultp-popup-wrap\"},(0,r.createElement)(\"button\",{className:\"ultp-save-close\",onClick:()=>k(\"\")},i.ZP.close_line),Object.keys(E).length&&u?(0,r.createElement)(c.Z,{type:u,id:\"yes\"==y?I:y,settings:b,defaults:E,setShowCondition:\"yes\"==n?k:\"\"}):(0,r.createElement)(\"div\",{className:\"ultp-modal-content\"},(0,r.createElement)(\"div\",{className:\"ultp-condition-wrap\"},(0,r.createElement)(\"div\",{className:\"ultp_h3 ultp-condition-wrap-heading\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:330,unit1:\"px\",size2:22,unit2:\"px\",br:2}})),(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:460,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,r.createElement)(\"div\",{className:\"ultp-condition-items\"},(0,r.createElement)(\"div\",{className:\"ultp-condition-wrap__field\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:30,unit2:\"px\",br:2}})),(0,r.createElement)(\"div\",{className:\"ultp-condition-wrap__field\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:30,unit2:\"px\",br:2}})),(0,r.createElement)(\"div\",{className:\"ultp-condition-wrap__field\"},(0,r.createElement)(p.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:30,unit2:\"px\",br:2}}))))))),B&&(0,s.cs)({tags:\"builder_popup\",func:e=>{H(e)},data:{icon:\"template_lock.svg\",title:__(\"Create Unlimited Templates With PostX Pro\",\"ultimate-post\"),description:__(\"We are sorry. Unfortunately, the free version of PostX lets you create only one template. Please upgrade to a pro version that unlocks the full capabilities of the dynamic site builder.\",\"ultimate-post\")}}))}},3944:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>p});var a=n(7294),r=n(1383),o=n(4766),i=n(4482),l=n(8949),s=n(356);n(8350);const{__}=wp.i18n,p=()=>{const[e,t]=(0,a.useState)({}),[n,p]=(0,a.useState)({state:!1,status:\"\"}),[c,d]=(0,a.useState)(!1);(0,a.useEffect)((()=>{m()}),[]);const u=(0,r.t)(),m=()=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fget_all_settings\",method:\"POST\",data:{key:\"key\",value:\"value\"}}).then((e=>{e.success&&u.current&&t(e.settings)}))};return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-general-settings-container\"},(0,a.createElement)(\"div\",{className:\"ultp-general-settings ultp-dash-item-con\"},(0,a.createElement)(\"div\",null,n.state&&(0,a.createElement)(s.Z,{delay:2e3,toastMessages:n,setToastMessages:p}),(0,a.createElement)(\"div\",{className:\"ultp_h5 heading\"},__(\"General Settings\",\"ultimate-post\")),Object.keys(e).length>0?(0,a.createElement)(\"form\",{onSubmit:e=>{d(!0),e.preventDefault();const t=new FormData(e.target),n={};for(const a of e.target.elements)a.name&&(\"checkbox\"!==a.type||a.checked?\"select-multiple\"===a.type?n[a.name]=t.getAll(a.name):\"custom_multiselect\"==a.dataset.customprop?n[a.name]=a.value?a.value.split(\",\"):[]:n[a.name]=a.value:n[a.name]=\"\");wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fsave_plugin_settings\",method:\"POST\",data:{settings:n,action:\"action\",type:\"type\"}}).then((e=>{e.success&&p({status:\"success\",messages:[e.message],state:!0}),d(!1)}))},action:\"\"},(0,i.DC)(i.u4,e),(0,a.createElement)(\"div\",{className:\"ultp-data-message\"}),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"button\",{type:\"submit\",className:\"cursor ultp-primary-button \"+(c?\"onloading\":\"\")},__(\"Save Settings\",\"ultimate-post\"),c&&o.ZP.refresh))):(0,a.createElement)(\"div\",{className:\"skeletonOverflow\"},Array(6).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{key:t},(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:150,unit1:\"px\",size2:20,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:\"\",unit1:\"\",size2:34,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:350,unit1:\"px\",size2:20,unit2:\"px\",br:2}})))),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:120,unit1:\"px\",size2:36,unit2:\"px\",br:2}})))),(0,a.createElement)(\"div\",{className:\"ultp-general-settings-content-right\"},(0,a.createElement)(i.gR,{FRBtnTag:\"settingsFR\",proBtnTags:\"postx_dashboard_settings\"})))}},3546:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(7294),r=n(2044);const{__}=wp.i18n,o=[{id:\"ultp_helloBar_flash_sale_2026_1\",start:\"2026-02-19\",end:\"2026-02-23\",countdownDuration:259200,utmKey:\"flash_sale\",content:(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"span\",{className:\"dashicons dashicons-bell ultp-ring\"}),\" \",(0,a.createElement)(\"span\",null,__(\"Flash Sale - Enjoy Up to 45% on\",\"ultimate-post\")),\" \",(0,a.createElement)(\"strong\",null,__(\"PostX\",\"ultimate-post\")))},{id:\"ultp_helloBar_final_hour_sale_2026_1\",start:\"2026-02-25\",end:\"2026-03-01\",countdownDuration:172800,utmKey:\"final_hour_sale\",content:(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"span\",{className:\"dashicons dashicons-bell ultp-ring\"}),\" \",(0,a.createElement)(\"span\",null,__(\"Final Hour Sale - Enjoy Up to 50% on\",\"ultimate-post\")),\" \",(0,a.createElement)(\"strong\",null,__(\"PostX\",\"ultimate-post\")))}],i=({duration:e,storageKey:t})=>{const n=1e3*Math.max(Number(e)||0,0),r=(0,a.useCallback)((()=>{if(!n||!t)return null;try{const e=window.localStorage.getItem(t),n=Number(e);if(Number.isFinite(n)&&n>0)return n}catch(e){return null}return null}),[n,t]),o=(0,a.useCallback)((e=>{if(t)try{window.localStorage.setItem(t,String(e))}catch(e){}}),[t]),i=(0,a.useCallback)((()=>{if(!n)return 0;const e=Date.now();let t=r();return(!t||t\u003C=e)&&(t=e+n,o(t)),Math.max(Math.ceil((t-e)\u002F1e3),0)}),[n,r,o]),[l,s]=(0,a.useState)(i);if((0,a.useEffect)((()=>{if(!n)return void s(0);const e=()=>{s(i())};e();const t=window.setInterval(e,1e3);return()=>{window.clearInterval(t)}}),[n,i]),!n)return null;const p=Math.floor(l\u002F86400),c=Math.floor(l%86400\u002F3600),d=Math.floor(l%3600\u002F60),u=l%60,m=String(c).padStart(2,\"0\"),f=String(d).padStart(2,\"0\"),h=String(u).padStart(2,\"0\");return(0,a.createElement)(\"strong\",null,`${p}:${m}:${f}:${h}`)},l=()=>{const[e,t]=(0,a.useState)((()=>o.find((e=>new Date>=new Date(e.start)&&new Date\u003C=new Date(e.end)&&ultp_dashboard_pannel.helloBar&&\"hide\"!==ultp_dashboard_pannel.helloBar[e.id]&&!ultp_dashboard_pannel?.active))||null));return e?(0,a.createElement)(\"div\",{className:\"ultp-setting-hellobar-wrapper\"},(0,a.createElement)(\"a\",{href:`${(0,r.Z)({utmKey:e.utmKey})}#pricing`,target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"div\",{className:\"ultp-setting-hellobar\"},(0,a.createElement)(\"span\",null,e.content),(0,a.createElement)(i,{duration:e.countdownDuration,storageKey:`ultp_hello_bar_timer_${e.id}`}),(0,a.createElement)(\"strong\",null,(0,a.createElement)(\"span\",null,__(\"Grab Now\",\"ultimate-post\")),\"  ➤\"),(0,a.createElement)(\"button\",{type:\"button\",className:\"helobarClose\",onClick:n=>{n.stopPropagation(),n.preventDefault(),wp.apiFetch({path:\"ultp\u002Fhello_bar\",method:\"POST\",data:{type:\"hello_bar\",id:e.id}}),t(null)},\"aria-label\":__(\"Close notification\",\"ultimate-post\"),style:{background:\"none\",border:\"none\",padding:0,cursor:\"pointer\"}},(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"20\",height:\"20\",fill:\"none\",viewBox:\"0 0 20 20\"},(0,a.createElement)(\"path\",{stroke:\"currentColor\",d:\"M15 5 5 15M5 5l10 10\"})))))):(console.log(\"return\"),null)}},1383:(e,t,n)=>{\"use strict\";n.d(t,{t:()=>_});var a=n(7294),r=n(3935),o=n(3100),i=n(4766),l=n(860),s=n(7191),p=n(8351),c=n(3644),d=(n(9780),n(3944)),u=n(3546),m=(n(2156),n(2470)),f=n(3701),h=n(5957),g=n(3554),v=n(58);const{__}=wp.i18n;function _(){const e=(0,a.useRef)(!1);return(0,a.useEffect)((()=>(e.current=!0,()=>e.current=!1)),[]),e}document.body.contains(document.getElementById(\"ultp-dashboard\"))&&r.render((0,a.createElement)(a.StrictMode,null,(0,a.createElement)((()=>{const[e,t]=(0,a.useState)(\"xx\"),[n,r]=(ultp_dashboard_pannel.status,ultp_dashboard_pannel.expire,(0,a.useState)(!1)),_=[{link:\"#home\",label:__(\"Dashboard\",\"ultimate-post\"),showin:\"both\"},{link:\"#startersites\",label:__(\"Starter Sites\",\"ultimate-post\"),showin:\"both\",tag:\"New\"},{link:\"#builder\",label:__(\"Site Builder\",\"ultimate-post\"),showin:ultp_dashboard_pannel.settings.hasOwnProperty(\"ultp_builder\")&&\"false\"!=ultp_dashboard_pannel.settings.ultp_builder?\"both\":\"none\",showhide:!0},{link:\"#blocks\",label:__(\"Blocks\",\"ultimate-post\"),showin:\"both\"},{link:\"#addons\",label:__(\"Add-ons\",\"ultimate-post\"),showin:\"both\"},{link:\"#settings\",label:__(\"Settings\",\"ultimate-post\"),showin:\"both\"}],w=[{label:__(\"Get Support\",\"ultimate-post\"),icon:\"dashicons-phone\",link:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcontact\u002F?utm_source=postx-menu&utm_medium=all_que-support&utm_campaign=postx-dashboard\"},{label:__(\"Welcome Guide\",\"ultimate-post\"),icon:\"dashicons-megaphone\",link:ultp_dashboard_pannel.setup_wizard_link},{label:__(\"Join Community\",\"ultimate-post\"),icon:\"dashicons-facebook-alt\",link:\"https:\u002F\u002Fwww.facebook.com\u002Fgroups\u002Fgutenbergpostx\"},{label:__(\"Feature Request\",\"ultimate-post\"),icon:\"dashicons-email-alt\",link:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002Froadmap\u002F?utm_source=postx-menu&utm_medium=all_que-FR&utm_campaign=postx-dashboard\"},{label:__(\"Youtube Tutorials\",\"ultimate-post\"),icon:\"dashicons-youtube\",link:\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=_GfXTvSdJTk&list=PLPidnGLSR4qcAwVwIjMo1OVaqXqjUp_s4\"},{label:__(\"Documentation\",\"ultimate-post\"),icon:\"dashicons-book\",link:\"https:\u002F\u002Fwpxpo.com\u002Fdocs\u002Fpostx\u002F?utm_source=postx-menu&utm_medium=all_que-docs&utm_campaign=postx-dashboard\"},{label:__(\"What’s New\",\"ultimate-post\"),icon:\"dashicons-edit\",link:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcategory\u002Fpostx\u002F?utm_source=postx-menu&utm_medium=all_que-roadmap&utm_campaign=postx-dashboard\"}],b=e=>{if(e.target&&!e.target.classList?.contains(\"ultp-reserve-button\")&&e.target.href&&e.target.href.indexOf(\"page=ultp-settings#\")>0){const n=e.target.href.split(\"#\");n[1]&&(t(n[1]),window.scrollTo({top:0,behavior:\"smooth\"}))}e.target.closest(\".dash-faq-container\")||e.target.classList?.contains(\"ultp-reserve-button\")||r(!1)},[x,y]=(0,a.useState)(window.location.hash||e);(0,a.useEffect)((()=>{const e=()=>{y(window.location.hash||\"#welcome\")};return window.location.hash||(window.location.hash=_[0].link.replace(\"#\",\"\")),window.addEventListener(\"hashchange\",e),()=>{window.removeEventListener(\"hashchange\",e)}}),[]),(0,a.useEffect)((()=>{const n=x.replace(\"#\",\"\");n&&n!==e&&t(n)}),[x,e]),(0,a.useEffect)((()=>((()=>{let e=window.location.href;e.includes(\"page=ultp-settings#\")&&(e=e.split(\"page=ultp-settings#\"),e[1]&&t(e[1]))})(),document.addEventListener(\"mousedown\",b),()=>document.removeEventListener(\"mousedown\",b))),[]);const[k,E]=(0,a.useState)({success:!1,license:\"\"});return(0,a.createElement)(\"div\",{className:\"ultp-menu-items-wrap\"},(0,a.createElement)(u.Z,null),(0,a.createElement)(\"div\",{className:\"ultp-setting-header\"},(0,a.createElement)(\"div\",{className:\"ultp-setting-logo\"},(0,a.createElement)(\"img\",{className:\"ultp-setting-header-img\",loading:\"lazy\",src:ultp_dashboard_pannel.url+\"\u002Fassets\u002Fimg\u002Flogo-new.png\",alt:\"PostX\"}),(0,a.createElement)(\"span\",{className:\"ultp-setting-version\"},ultp_dashboard_pannel.version)),(0,a.createElement)(\"div\",{className:\"ultp-menu-items\",id:\"ultp-dashboard-ultp-menu-items\"},_.map(((t,n)=>\"both\"==t.showin||\"menu\"==t.showin||t.showhide?(0,a.createElement)(\"a\",{href:t.link,style:{display:\"none\"==t.showin?\"none\":\"\"},id:\"ultp-dasnav-\"+t.link.replace(\"#\",\"\"),key:n,className:(t.link==\"#\"+e?\"current\":\"\")+\" ultp-menu-item\",onClick:()=>y(t.link.replace(\"#\",\"\"))},t.label,t.tag&&(0,a.createElement)(\"span\",{className:\"ultp-menu-item-tag\"},t.tag)):\"\"))),(0,a.createElement)(\"div\",{className:\"ultp-secondary-menu\"},(0,a.createElement)(\"a\",{href:\"#plugins\",className:\"ultp-menu-item \"+([\"plugins\",\"#plugins\"].includes(x)?\"current\":\"\"),onClick:()=>y(\"plugins\")},i.ZP.connect,__(\"Our Plugins\",\"ultimate-post\")),!ultp_dashboard_pannel?.active&&(0,a.createElement)(\"a\",{href:(0,o.Z)(\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-topbar&utm_medium=upgrade-pro-sidebar&utm_campaign=postx-dashboard#pricing\"),className:\"ultp-secondary-button ultp-pro-button\"},__(\"Upgrade Pro\",\"ultimate-post\"),i.ZP.unlock)),(0,a.createElement)(\"div\",{className:\"ultp-dash-faq-con\"},(0,a.createElement)(\"span\",{onClick:()=>r(!n),className:\"ultp-dash-faq-icon ultp-reserve-button dashicons dashicons-editor-help\"}),n&&(0,a.createElement)(\"div\",{className:\"dash-faq-container\"},w.map(((e,t)=>(0,a.createElement)(\"a\",{key:t,href:e.link,target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"span\",{className:`dashicons ${e.icon}`}),e.label)))))),(0,a.createElement)(\"div\",{className:\"ultp-settings-container \"+(\"startersites\"==e?\"ultp-settings-container-startersites\":\"\")},(0,a.createElement)(\"ul\",{className:\"ultp-settings-content\"},(0,a.createElement)(\"li\",{className:\"current\"},\"xx\"!=e&&(\"home\"==e||![\"builder\",\"startersites\",\"integrations\",\"saved-templates\",\"custom-font\",\"addons\",\"blocks\",\"settings\",\"tutorials\",\"license\",\"support\",\"plugins\"].includes(e))&&(0,a.createElement)(c.Z,null),\"saved-templates\"==e&&(0,a.createElement)(h.Z,{type:\"ultp_templates\"}),\"custom-font\"==e&&(0,a.createElement)(h.Z,{type:\"ultp_custom_font\"}),\"builder\"==e&&(0,a.createElement)(p.Z,null),\"startersites\"==e&&(0,a.createElement)(g.Z,null),\"addons\"==e&&(0,a.createElement)(l.Z,{integrations:!0}),\"blocks\"==e&&(0,a.createElement)(s.Z,null),\"settings\"==e&&(0,a.createElement)(d.Z,null),\"license\"==e&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(m.C,{licenseData:k,setLicenseData:E})),\"support\"==e&&(0,a.createElement)(v.Z,null),\"plugins\"==e&&(0,a.createElement)(f.I,null))),(0,a.createElement)(v.Z,null)),!ultp_dashboard_pannel.active&&(()=>{const e=(new Date).setHours(0,0,0,0)\u002F1e3,t=345600,n=new Date(\"2024-05-21\").setHours(0,0,0,0)\u002F1e3,a=new Date(\"2024-07-22\").setHours(0,0,0,0)\u002F1e3;if(e\u003Cn||e>a)return!1;if(ultp_dashboard_pannel.settings.activated_date&&Number(ultp_dashboard_pannel.settings.activated_date)+t>=e)return!1;const r=Number(localStorage.getItem(\"ultpCouponDiscount\"));return r?r\u003C=e&&e\u003C=r+t||e>=r+691200&&(localStorage.setItem(\"ultpCouponDiscount\",String(e)),!0):(localStorage.setItem(\"ultpCouponDiscount\",String(e)),!0)})()&&(0,a.createElement)(\"a\",{className:\"ultp-discount-wrap\",href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-discount&utm_medium=coupon&utm_campaign=postx-dashboard&pux_link=postxdbcoupon#pricing\",target:\"_blank\",rel:\"noreferrer\"},(0,a.createElement)(\"span\",{className:\"ultp-discount-text\"},__(\"Get Discount\",\"ultimate-post\"))))}),null)),document.getElementById(\"ultp-dashboard\"))},2470:(e,t,n)=>{\"use strict\";n.d(t,{C:()=>o});var a=n(7294),r=n(356);n(977);const{__}=wp.i18n,o=({licenseData:e,setLicenseData:t})=>{const[n,r]=(0,a.useState)(\"\"),[o,l]=(0,a.useState)(!1),[s,p]=(0,a.useState)(!0);return(0,a.useEffect)((()=>{(async()=>{p(!0);const e=await(async()=>{try{const e=`${ultp_dashboard_pannel.ajax}`,t=new URLSearchParams({action:\"edd_ultp_get_license_data\"}),n=await fetch(e,{method:\"POST\",body:t,headers:{\"Content-Type\":\"application\u002Fx-www-form-urlencoded\"}});if(!n.ok)throw l(!0),new Error(`HTTP error! Status: ${n.status}`);const a=await n.json();if(a.success)return a.data}catch(e){return null}})();e?.license_data&&t(e?.license_data),p(!1)})()}),[]),(0,a.useEffect)((()=>{\"valid\"===e?.license?ultp_dashboard_pannel.active=!0:\"\"!=e.license&&\"valid\"!=e?.license&&(ultp_dashboard_pannel.active=!1)}),[e]),(0,a.createElement)(\"div\",{className:\"ultp-license\"},s?(0,a.createElement)(\"div\",{className:\"ultp-license__activation\",style:{display:\"flex\",flexDirection:\"column\",gap:\"16px\",paddingTop:\"50px !important\"}},(0,a.createElement)(c,{width:\"250px\",height:\"30px\"}),(0,a.createElement)(c,{width:\"100%\",height:\"30px\",style:{marginTop:\"10px\"}}),(0,a.createElement)(c,{width:\"100%\",height:\"30px\"}),(0,a.createElement)(c,{width:\"100%\",height:\"30px\"}),(0,a.createElement)(c,{width:\"100%\",height:\"30px\"})):(0,a.createElement)(i,{proUpdate:o,licenseKey:n,setLicenseKey:r,licenseData:e,setLicenseData:t}),(0,a.createElement)(u,null))},i=({proUpdate:e,licenseKey:t,setLicenseKey:n,licenseData:o,setLicenseData:i})=>{const[p,c]=(0,a.useState)(!1),[d,u]=(0,a.useState)(!1),[m,f]=(0,a.useState)({state:!1,status:\"\",messages:[]}),h=async()=>{try{c(!0);const e=await g(t);e?.status&&(i(e?.license_data),window.location.reload()),f({status:e.status?\"success\":\"error\",messages:[e?.data||\"Some issues occured\"],state:!0}),n(\"\"),c(!1),u(!1)}catch(e){u(!0),f({status:\"error\",messages:[\"Some issues occured\"],state:!0}),console.error(\"License Activation Error: \",e)}},g=async e=>{const t=`${ultp_dashboard_pannel.ajax}`,n=new URLSearchParams({action:\"edd_ultp_activate_license\",security:ultp_dashboard_pannel.nonce,license_key:e}),a=await fetch(t,{method:\"POST\",body:n,headers:{\"Content-Type\":\"application\u002Fx-www-form-urlencoded\"}});if(!a.ok)throw new Error(`HTTP error! Status: ${a.status}`);return await a.json()};return(0,a.createElement)(\"div\",{className:\"ultp-license__activation\"},(0,a.createElement)(\"div\",{className:\"ultp-license__title\"},__(e?\"Notice: Upgrade PostX Pro plugin\":\"Ready to Use PostX Pro ?\",\"ultimate-post\")),m.state&&(0,a.createElement)(r.Z,{delay:2e3,toastMessages:m,setToastMessages:f}),!e&&(0,a.createElement)(a.Fragment,null,\"valid\"!==o?.license?(0,a.createElement)(\"div\",{className:\"ultp-license__form\"},(0,a.createElement)(\"input\",{type:\"password\",id:\"ultp-license-key\",placeholder:__(\"Enter Your License Key Here…\",\"ultimate-post\"),value:t||\"\",onChange:e=>n(e.target.value)}),(0,a.createElement)(\"div\",{className:\"ultp-license__helper-text\"},__(\"If you’re unable to activate your product license, please contact the\",\"ultimate-post\"),\" \",(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcontact\u002F\",target:\"_blank\",className:\"ultp-license__link\",rel:\"noreferrer\"},__(\"support team\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"ultp-activate-btn ultp_license_action_btn\",onClick:()=>h(),role:\"button\",tabIndex:-1,onKeyDown:e=>{\"Enter\"===e.key&&h()}},(0,a.createElement)(\"div\",null,__(\"Activate License\",\"ultimate-post\")),p&&(0,a.createElement)(\"span\",{className:\"ultp-activate-loading\"})),d&&(0,a.createElement)(\"div\",{className:\"ultp-license__helper-text\"},__(\"Please make sure your free and pro plugins are updated to the latest release or version. Otherwise, contact the\",\"ultimate-post\"),(0,a.createElement)(\"a\",{href:\"https:\u002F\u002Fwww.wpxpo.com\u002Fcontact\u002F\",target:\"_blank\",className:\"ultp-license__link\",rel:\"noreferrer\"},__(\"support team\",\"ultimate-post\")))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(l,{title:__(\"Congratulations on unlocking PostX Pro!\",\"ultimate-post\"),message:__(\"Ignite your imagination and design your ideal experience. Let PostX take care of you and your users.\",\"ultimate-post\")}),(0,a.createElement)(s,{licenseData:o,setLicenseData:i,setToastMessages:f}))))},l=({title:e,message:t})=>(0,a.createElement)(\"div\",{className:\"ultp-license-message\"},(0,a.createElement)(\"div\",{className:\"ultp-license-message__icon\"},(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",fill:\"none\",width:\"48px\",height:\"46px\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"g\",{fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M46.15 26.76a.94.94 0 0 0-.39-1.27 14.7 14.7 0 0 0-16.21 1.62l-1.52-1.52 2.48-2.47a.94.94 0 0 0-1.33-1.33l-2.47 2.48-6.04-6.04a13.1 13.1 0 0 0 1.07-13.98.94.94 0 0 0-1.66.88c2.02 3.8 1.7 8.3-.75 11.76l-3.98-3.98a2.3 2.3 0 0 0-3.79.84L.14 44.9c-.3.86-.1 1.78.54 2.42a2.28 2.28 0 0 0 2.42.54l31.15-11.42a2.3 2.3 0 0 0 .84-3.8l-4.2-4.2a12.83 12.83 0 0 1 13.99-1.3.94.94 0 0 0 1.27-.38ZM14.93 41.52l-8.45-8.45 2.34-6.4 12.5 12.5-6.39 2.35Zm-4.58 1.68L4.8 37.65 5.77 35l7.22 7.22-2.64.97Zm-7.9 2.9A.4.4 0 0 1 2 46a.4.4 0 0 1-.1-.45l2.19-5.96 4.32 4.32-5.96 2.19Zm31.43-11.73a.41.41 0 0 1-.27.3l-5.77 2.12-5.33-5.33a.94.94 0 0 0-1.33 1.32l4.72 4.72-2.64.97L9.53 24.74l.97-2.64 4.72 4.72a.93.93 0 0 0 1.32 0 .94.94 0 0 0 0-1.33l-5.33-5.33 2.11-5.77c.07-.19.23-.25.31-.27h.1c.09 0 .2.02.3.12l19.73 19.73c.14.15.13.31.12.4ZM28.27 7.48c.52 0 .94-.42.94-.94 0-.78.64-1.42 1.43-1.42a3.3 3.3 0 0 0 3.3-3.3.94.94 0 0 0-1.88 0c0 .79-.64 1.43-1.42 1.43a3.3 3.3 0 0 0-3.3 3.3c0 .51.42.93.93.93ZM36.6 16.33c1.87 0 3.4-1.53 3.4-3.4 0-.85.69-1.54 1.53-1.54a.94.94 0 0 0 0-1.87 3.41 3.41 0 0 0-3.4 3.4c0 .85-.7 1.54-1.54 1.54a.94.94 0 0 0 0 1.87ZM42 18.14a3 3 0 1 0 6 0 3 3 0 0 0-6 0ZM45 17a1.13 1.13 0 1 1 0 2.26A1.13 1.13 0 0 1 45 17Z\"}),(0,a.createElement)(\"path\",{d:\"M29.54 15.92a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4.12a1.13 1.13 0 1 1 0 2.25 1.13 1.13 0 0 1 0-2.25ZM12 6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm0-4.13a1.13 1.13 0 1 1 0 2.26 1.13 1.13 0 0 1 0-2.25ZM42.42 32.91a.94.94 0 0 0-1.32 1.33l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89ZM46.84 37.33a.94.94 0 0 0-1.32 1.33l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.33l-.89-.88ZM46.4 32.91l-.88.89a.94.94 0 0 0 1.32 1.32l.89-.88a.94.94 0 0 0-1.33-1.33ZM41.98 37.33l-.88.88a.94.94 0 0 0 1.32 1.33l.89-.88a.94.94 0 0 0-1.33-1.33ZM46.18 2.76c.24 0 .48-.1.66-.28l.89-.88A.94.94 0 1 0 46.4.27l-.88.89a.94.94 0 0 0 .66 1.6ZM41.76 7.18c.24 0 .48-.1.66-.28l.89-.88a.94.94 0 0 0-1.33-1.33l-.88.89a.94.94 0 0 0 .66 1.6ZM46.84 4.7a.94.94 0 0 0-1.32 1.32l.88.88a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89ZM41.98 2.48a.93.93 0 0 0 1.33 0 .94.94 0 0 0 0-1.32l-.89-.89A.94.94 0 0 0 41.1 1.6l.88.88ZM18.86 28.2a.94.94 0 0 0-.93.94.94.94 0 0 0 .93.93.94.94 0 0 0 .94-.93.94.94 0 0 0-.94-.94ZM32.54 18.43l-.68.68a.94.94 0 0 0 1.33 1.33l.68-.68a.94.94 0 0 0-1.33-1.33Z\"})))),(0,a.createElement)(\"div\",{className:\"ultp-license-message__content\"},(0,a.createElement)(\"div\",{className:\"ultp-license-message__title ultp-license-message-congrats\"},e),(0,a.createElement)(\"div\",{className:\"ultp-license-message__text\"},t))),s=({licenseData:e,setLicenseData:t,setToastMessages:n})=>{const[r,o]=(0,a.useState)(!1),i=async()=>{try{o(!0);const e=await l();t(e.license_data),n({status:\"success\",messages:[e?.data||\"Some issues occured\"],state:!0}),o(!1)}catch(e){n({status:\"error\",messages:[e.message||\"Some issues occured\"],state:!0}),o(!1)}},l=async()=>{const e=`${ultp_dashboard_pannel.ajax}`,t=new URLSearchParams({action:\"edd_ultp_deactivate_license\",security:ultp_dashboard_pannel.nonce,deactivate:\"yes\"}),n=await fetch(e,{method:\"POST\",body:t,headers:{\"Content-Type\":\"application\u002Fx-www-form-urlencoded\"}});if(!n.ok)throw new Error(`HTTP error! Status: ${n.status}`);const a=await n.json();if(a.status)return a};return(0,a.createElement)(\"div\",{className:\"ultp-license__status\"},(0,a.createElement)(\"div\",{className:\"ultp-license__status-messages\"},(0,a.createElement)(\"div\",{className:\"ultp-license__status-message\"},(0,a.createElement)(\"div\",{className:\"ultp-license__status-message-label\"},__(\"License Type\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-license__status-message-value\"},e.licenseType)),(0,a.createElement)(\"div\",{className:\"ultp-license__status-message\"},(0,a.createElement)(\"div\",{className:\"ultp-license__status-message-label\"},__(\"Expire On\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"ultp-license__status-message-value\"},e.expiresAt),(e?.toExpired||\"expired\"===e.license)&&(0,a.createElement)(\"a\",{href:`https:\u002F\u002Faccount.wpxpo.com\u002Fcheckout\u002F?edd_license_key=${ultp_dashboard_pannel.license}&download_id=${e.itemId}&renew=1`,target:\"_blank\",rel:\"noreferrer\",className:\"ultp-license__renew-link\"},(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M2.86 6.553a.5.5 0 01.823-.482l3.02 2.745c.196.178.506.13.64-.098L9.64 4.779a.417.417 0 01.72 0l2.297 3.939a.417.417 0 00.64.098l3.02-2.745a.5.5 0 01.823.482l-1.99 8.63a.833.833 0 01-.813.646H5.663a.833.833 0 01-.812-.646L2.86 6.553z\",stroke:\"currentColor\",strokeWidth:\"1.5\"})),__(\"Renew License\",\"ultimate-post\"))),(0,a.createElement)(p,{licenseData:e})),(0,a.createElement)(\"div\",{className:\"ultp-activate-btn ultp_license_action_btn\",onClick:()=>i(),role:\"button\",tabIndex:-1,onKeyDown:e=>{\"Enter\"===e.key&&i()}},(0,a.createElement)(\"div\",null,__(\"Deactivate License\",\"ultimate-post\")),r&&(0,a.createElement)(\"span\",{className:\"ultp-activate-loading\"})))},p=({licenseData:e})=>{const[t,n]=(0,a.useState)(\"\"),r={1:__(\"5 Sites - Yearly\",\"ultimate-post\"),2:__(\"Unlimited Sites - Yearly\",\"ultimate-post\"),3:__(\"1 Site - Lifetime\",\"ultimate-post\"),4:__(\"5 Sites - Lifetime\",\"ultimate-post\"),5:__(\"Unlimited Sites - Lifetime\",\"ultimate-post\")},o={1:[1,2,3,4,5],7:[2,3,4,5],2:[4,5],4:[2,4,5],5:[5]}[e?.priceId];return o&&0!==o.length?(0,a.createElement)(\"div\",{className:\"ultp-license__upgrade-message\"},(0,a.createElement)(\"div\",{className:\"ultp-license__upgrade-message-title\"},(0,a.createElement)(\"label\",{htmlFor:\"ultp-license-select\"},__(\"Choose a upgrade plan\",\"ultimate-post\")),(0,a.createElement)(\"select\",{id:\"ultp-license-select\",value:t,onChange:e=>{n(e.target.value)}},o.map((e=>(0,a.createElement)(\"option\",{key:e,value:e},r[e]))))),(0,a.createElement)(\"a\",{className:\"ultp-license__upgrade-link\",href:`https:\u002F\u002Faccount.wpxpo.com\u002Fcheckout\u002F?edd_action=sl_license_upgrade&license_key=${ultp_dashboard_pannel.license}&upgrade_id=${t||o[0]}`,target:\"_blank\",rel:\"noreferrer\"},__(\"Upgrade Now\",\"ultimate-post\"))):null},c=({width:e=\"100%\",height:t=\"1rem\",borderRadius:n=\"4px\",style:r={}})=>(0,a.createElement)(\"div\",{className:\"ultp-custom-skeleton-loader\",style:{width:e,height:t,borderRadius:n,...r}}),d=[{question:__(\"Do I need the free version of the plugin on my site?\",\"ultimate-post\"),answer:__(\"Yes. You can use the free version of the plugin, which includes the free features of PostX. However, please note that to use the pro features, you need the free version of the plugin installed on your WordPress site.\",\"ultimate-post\")},{question:__(\"Where do I get my product license?\",\"ultimate-post\"),answer:__(\"You can copy the product license from the client dashboard. Once you copy it, paste the license key into the PostX License validation page.\",\"ultimate-post\")},{question:__(\"How do I get help to use PostX Pro?\",\"ultimate-post\"),hasMarkup:!0,answer:__(\"Please go to the support link: \u003Ca href='https:\u002F\u002Fwww.wpxpo.com\u002Fcontact\u002F.' target='_blank'>www.wpxpo.com\u002Fcontact\u003C\u002Fa>\",\"ultimate-post\")}],u=()=>(0,a.createElement)(\"div\",{className:\"ultp-license__faq\"},d.map(((e,t)=>(0,a.createElement)(\"div\",{key:t,className:\"ultp-license-faq__item\"},(0,a.createElement)(\"div\",{className:\"ultp-license-faq__question\"},e.question),e.hasMarkup?(0,a.createElement)(\"div\",{className:\"ultp-license-faq__answer\",dangerouslySetInnerHTML:{__html:e.answer}}):(0,a.createElement)(\"div\",{className:\"ultp-license-faq__answer\"},e.answer)))),(0,a.createElement)(\"div\",{className:\"ultp-license-faq-item\"},__(\"PostX is a product of WPXPO. The contact support team is ready to help you with any queries, including how to use the pro version of PostX.\",\"ultimate-post\")))},3701:(e,t,n)=>{\"use strict\";n.d(t,{I:()=>l});var a=n(7294),r=n(1383);n(7376);const{__}=wp.i18n,o={wholesale_x:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{fill:\"#FEAD01\",d:\"M22.288 5.44498 11.1095 7.77499c-.6634.13829-1.0892.78825-.9509 1.45173l2.33 11.17848c.1383.6635.7883 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7882.9509-1.4517l-2.33-11.1785c-.1383-.66347-.7882-1.08921-1.4517-.95092Zm3.1934 15.32522-11.1785 2.33c-.6635.1383-1.0892.7882-.9509 1.4517l2.33 11.1785c.1383.6635.7882 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7883.9509-1.4517l-2.33-11.1785c-.1383-.6635-.7883-1.0892-1.4517-.9509ZM37.6161 2.25064 26.4377 4.58065c-.6635.1383-1.0893.78826-.951 1.45173l2.33 11.17852c.1383.6634.7883 1.0892 1.4518.9509l11.1784-2.33c.6635-.1383 1.0893-.7883.951-1.4518l-2.33-11.17843c-.1383-.66348-.7883-1.08922-1.4518-.95093Zm3.1934 15.32716-11.1785 2.33c-.6635.1383-1.0892.7883-.9509 1.4517l2.33 11.1785c.1383.6635.7883 1.0892 1.4517.9509l11.1785-2.33c.6635-.1383 1.0892-.7882.9509-1.4517l-2.33-11.1785c-.1383-.6635-.7882-1.0892-1.4517-.9509Z\"}),(0,a.createElement)(\"path\",{fill:\"#6C6CFF\",d:\"M11.4509 35.4957c-.2235-.0003-.4402-.0776-.6136-.2187-.1734-.1412-.293-.3377-.3386-.5566L4.40205 5.44687c-.0671-.32174-.25914-.60372-.53395-.784-.27481-.18029-.60992-.24415-.93177-.17757-.15961.03288-.31112.09709-.44576.18889-.13464.09181-.24976.20939-.33867.34596-.08986.13594-.15175.2884-.1821.4485-.03036.16011-.02855.32465.00531.48404l.47956 2.30076c.05267.25283.00277.51622-.13875.73225-.14152.21603-.36305.367-.61587.41971-.12518.0261-.25429.02728-.37992.00348-.12564-.0238-.24534-.07212-.352302-.1422-.106958-.07007-.199074-.16054-.271063-.26622-.071988-.10568-.122425-.22451-.14848-.3497L.0686777 6.35002c-.0868909-.41-.0913681-.83319-.0132214-1.24494.0781467-.41176.2373657-.80387.4684307-1.15352.228483-.35063.524233-.65249.870113-.8881.34589-.23562.73506-.40032 1.145-.48457.8274-.1712 1.68888-.00722 2.39554.45595.70665.46317 1.20075 1.18772 1.3739 2.01471L12.4051 34.3231c.0294.1417.0269.2883-.0074.4289s-.0996.2719-.1909.3842c-.0914.1122-.2067.2028-.3374.2649-.1307.0622-.2737.0944-.4185.0944v.0002Zm8.49 5.5912c-.2408-.0005-.4729-.0901-.6515-.2515-.1786-.1615-.291-.3834-.3156-.623-.0245-.2395.0404-.4796.1825-.674.1421-.1944.3511-.3293.5868-.3786l27.0841-5.6452c.2528-.0527.5162-.0028.7322.1387.216.1415.3669.3631.4196.6159.0527.2528.0028.5162-.1387.7322-.1415.216-.363.3669-.6158.4196l-27.0841 5.6452c-.0656.0136-.1325.0205-.1995.0207Z\"}),(0,a.createElement)(\"path\",{fill:\"#070C1A\",d:\"M12.8922 45.9671c-.8322-.0016-1.647-.2389-2.3499-.6845-.70286-.4456-1.26512-1.0812-1.62162-1.8332-.35651-.752-.49266-1.5896-.39269-2.4158.09996-.8262.43196-1.6072.95753-2.2525.52558-.6452 1.22318-1.1284 2.01208-1.3935.7889-.2651 1.6367-.3012 2.4453-.1043.8086.197 1.5448.619 2.1234 1.2172.5786.5981.9759 1.348 1.1458 2.1627.2383 1.1434.0126 2.3345-.6273 3.3115-.64.977-1.6418 1.6597-2.7852 1.898-.2984.0625-.6025.0941-.9074.0944Zm.014-6.8621c-.1701 0-.3398.0176-.5062.0525-.4757.099-.9113.3369-1.2518.6835-.3404.3467-.5704.7865-.6609 1.2638-.0905.4774-.0374.9708.1525 1.418.19.4472.5083.828.9147 1.0943.4064.2663.8826.4061 1.3684.4017.4859-.0044.9595-.1527 1.361-.4263.4015-.2735.7129-.66.8948-1.1105.1819-.4505.2261-.9449.127-1.4205-.1152-.5517-.4164-1.047-.8533-1.403-.4368-.3561-.9827-.5512-1.5462-.5528v-.0007Z\"})),wow_store:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{fill:\"#FF176B\",d:\"M33.4798 8.9711 48 0l-7.1908 32.9249-4.4393 5.9884H4.9711L0 32.9249l3.90751-17.9654 8.76299 2.9827-2.6127 11.9769h6.289l3.9307-17.9653h9.4335l-3.9307 17.9653h6.2891l4.578-20.948h-3.1676ZM9.98852 48.0005c1.66478 0 2.98268-1.3411 2.98268-2.9827s-1.3411-2.9826-2.98268-2.9826c-1.64162 0-2.98266 1.341-2.98266 2.9826 0 1.6416 1.34104 2.9827 2.98266 2.9827Zm15.67578 0c1.6416 0 2.9827-1.3411 2.9827-2.9827s-1.3411-2.9826-2.9827-2.9826-2.9827 1.341-2.9827 2.9826c0 1.6416 1.3411 2.9827 2.9827 2.9827Z\"})),wow_revenue:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"path\",{fill:\"#00A464\",d:\"M47.9999 47.9999H36L24 0h12l11.9999 47.9999Zm-12 0H24L12 15.96h12l11.9999 32.0399Zm-12 .0001H12L0 32.04h12L23.9999 48Z\"})),wow_optin:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 48 48\"},(0,a.createElement)(\"g\",{fill:\"#F97415\",clipPath:\"url(#optin_48_path)\"},(0,a.createElement)(\"path\",{d:\"M28.7992 24.0373c0-2.6419-2.1581-4.8-4.8-4.8-2.6418 0-4.8 2.1581-4.8 4.8 0 2.6419 2.1582 4.8 4.8 4.8 2.6419 0 4.8-2.1581 4.8-4.8Z\"}),(0,a.createElement)(\"path\",{d:\"M24 48.0372v-9.6c7.9256 0 14.4-6.4744 14.4-14.4S31.9256 9.63721 24 9.63721 9.6 16.1116 9.6 24.0372H0C0 10.7907 10.7535 0 24 0s24 10.7535 24 24-10.7535 24-24 24v.0372Z\"}),(0,a.createElement)(\"path\",{d:\"m19.2 28.8369-19.2 6.4 8.8186 3.9814L12.8 48.0369l6.4372-19.2H19.2Z\"})),(0,a.createElement)(\"defs\",null,(0,a.createElement)(\"clipPath\",{id:\"optin_48_path\"},(0,a.createElement)(\"path\",{fill:\"#fff\",d:\"M0 0h48v48H0z\"})))),wow_addon:(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"40\",height:\"40\",fill:\"none\",viewBox:\"0 0 32 32\"},(0,a.createElement)(\"rect\",{width:\"14.12\",height:\"14.12\",x:\"1\",y:\"16.88\",fill:\"#86A62C\",rx:\"3.53\"}),(0,a.createElement)(\"rect\",{width:\"14.12\",height:\"14.12\",x:\"16.88\",y:\"1\",fill:\"#86A62C\",rx:\"3.53\"}),(0,a.createElement)(\"path\",{fill:\"#86A62C\",fillRule:\"evenodd\",d:\"M1.38 2.93C1 3.68 1 4.67 1 6.65v2.82c0 1.98 0 2.97.38 3.72.34.66.88 1.2 1.55 1.54.75.39 1.74.39 3.72.39h2.82c1.98 0 2.97 0 3.72-.39.66-.34 1.2-.88 1.54-1.54.39-.75.39-1.74.39-3.72V6.65c0-1.98 0-2.97-.39-3.72a3.53 3.53 0 0 0-1.54-1.55C12.44 1 11.45 1 9.47 1H6.65c-1.98 0-2.97 0-3.72.38-.67.34-1.2.88-1.55 1.55Zm5.98 8.62 5.73-5.73-1.24-1.25-5.11 5.1-2.47-2.46-1.25 1.25 3.1 3.09c.34.34.9.34 1.24 0ZM16.88 22.53c0-1.98 0-2.97.39-3.72.34-.66.88-1.2 1.54-1.54.75-.39 1.74-.39 3.72-.39h2.82c1.98 0 2.97 0 3.72.39.67.34 1.2.88 1.55 1.54.38.75.38 1.74.38 3.72v2.82c0 1.98 0 2.97-.38 3.72-.34.67-.88 1.2-1.55 1.55-.75.38-1.74.38-3.72.38h-2.82c-1.98 0-2.97 0-3.72-.38a3.53 3.53 0 0 1-1.54-1.55c-.39-.75-.39-1.74-.39-3.72v-2.82Zm6.18.53v-3.09h1.76v3.09h3.1v1.76h-3.1v3.1h-1.76v-3.1h-3.09v-1.76h3.09Z\",clipRule:\"evenodd\"}))},i={wholesale_x:{title:\"WholesaleX\",subtitle:`WholesaleX \\n        ${__(\"is a B2B wholesale plugin featuring advanced wholesale pricing and customization features.\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fgetwholesalex.com\u002F\"},wow_store:{title:\"WowStore\",subtitle:`WowStore ${__(\"is a complete WooCommerce store builder featuring advanced options to improve sales!\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fwww.wpxpo.com\u002Fwowstore\u002F\"},wow_revenue:{title:\"WowRevenue\",subtitle:`WowRevenue ${__(\"boost sales and maximize revenue with the advanced discount campaigns of WowRevenue.\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fwww.wowrevenue.com\u002F\"},wow_optin:{title:\"WowOptin\",subtitle:`WowOptin ${__(\"generates actionable leads and boost sales with popups, banners, and floating bars using WowOptin.\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fwww.wowoptin.com\u002F\"},wow_addon:{title:\"WowAddons\",subtitle:`WowAddons ${__(\"extends the functionality of your WooCommerce store with additional features and options.\",\"ultimate-post\")}`,install:\"installation url\",pluginUrl:\"https:\u002F\u002Fwww.wpxpo.com\u002Fproduct-addons-for-woocommerce\u002F\"}},l=()=>{const[e,t]=(0,a.useState)({}),[n,l]=(0,a.useState)(ultp_dashboard_pannel.products||{}),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(ultp_dashboard_pannel.products_active||{}),u=e=>{t((t=>({...t,[e]:!0})));const n=new FormData;n.append(\"action\",\"ultp_install_plugin\"),n.append(\"wpnonce\",ultp_dashboard_pannel.security),n.append(\"plugin\",e),fetch(ultp_dashboard_pannel.ajax,{method:\"POST\",body:n}).then((e=>e.json())).then((()=>{})).catch((()=>{})).finally((()=>{t((t=>({...t,[e]:!1}))),l((t=>({...t,[e]:!0}))),d((t=>({...t,[e]:!0})))}))},m=(0,r.t)();return(0,a.useEffect)((()=>{p(!0),setTimeout((()=>{m.current&&p(!1)}),1e3)}),[]),(0,a.createElement)(\"div\",{className:\"ultp-plugins-wrapper\"},(0,a.createElement)(\"div\",{className:\"ultp-plugin-items\"},Object.keys(i).map(((t,r)=>((t,r)=>{const l=o[t]||null;return(0,a.createElement)(\"div\",{key:r,className:\"ultp-plugin-item\"},(0,a.createElement)(\"div\",{className:\"ultp-plugin-item-title\"},(0,a.createElement)(\"div\",{className:\"ultp-product-icon\"},l),i[t].title),(0,a.createElement)(\"div\",{className:\"ultp-plugin-item-desc\"},i[t].subtitle),(0,a.createElement)(\"div\",{className:\"ultp-plugin-item-action\"},(0,a.createElement)(a.Fragment,null,c[t]?(0,a.createElement)(\"div\",{className:\"ultp-secondary-button ultp-activated-button\"},__(\"Activated\",\"ultimate-post\")):(0,a.createElement)(\"div\",{className:\"ultp-secondary-button ultp-plugin-active-btn\",onClick:()=>u(t),role:\"button\",tabIndex:-1,onKeyDown:e=>{\"Enter\"===e.key&&u(t)}},(0,a.createElement)(\"div\",null,n[t]?__(\"Activate\",\"ultimate-post\"):__(\"Install\",\"ultimate-post\")),e[t]&&(0,a.createElement)(\"span\",{className:\"ultp-plugin-item-loading\"}))),(0,a.createElement)(\"div\",{className:\"ultp-transparent-alter-button\",role:\"button\",tabIndex:-1,onClick:()=>window.open(i[t].pluginUrl,\"_blank\"),onKeyDown:e=>{\"Enter\"===e.key&&window.open(i[t].pluginUrl,\"_blank\")}},__(\"Plugin Details\",\"ultimate-post\"))))})(t,r)))))}},5957:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>s});var a=n(7294),r=n(356),o=n(4766),i=n(4482),l=n(8949);n(6680);const{__}=wp.i18n,s=e=>{const[t,n]=(0,a.useState)([]),[s,p]=(0,a.useState)(!1),[c,d]=(0,a.useState)(1),[u,m]=(0,a.useState)(0),[f,h]=(0,a.useState)(\"\"),[g,v]=(0,a.useState)(0),[_,w]=(0,a.useState)(!1),[b,x]=(0,a.useState)(\"\"),[y,k]=(0,a.useState)([]),[E,C]=(0,a.useState)(\"\"),[S,M]=(0,a.useState)(!1),[L,N]=(0,a.useState)({state:!1,status:\"\"}),[Z,P]=(0,a.useState)(!1);(0,a.useEffect)((()=>(z(),document.addEventListener(\"mousedown\",B),()=>document.removeEventListener(\"mousedown\",B))),[]);const z=(t={})=>{A({action:\"dashborad\",data:Object.assign({},{type:\"saved_templates\",pages:c,pType:e.type},t)})},A=e=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002F\"+e.action,method:\"POST\",data:e.data}).then((t=>{if(t.success)switch(e.data.type){case\"saved_templates\":k(Array(t.data.length).fill(!1)),n(t.data),p(!(t.data.length>0)),h(t.new),m(t.found),v(t.pages),x(\"\"),w(!1),e.data.search&&d(1);break;case\"status\":case\"delete\":case\"duplicate\":case\"action_draft\":case\"action_delete\":case\"action_publish\":z(),w(!1),N({status:e.data.type.includes(\"delete\")?\"error\":\"success\",messages:[t.message],state:!0})}}))},B=e=>{e.target.parentNode.classList.contains(\"ultp-reserve-button\")||(C(\"\"),M(!1))};return(0,a.createElement)(\"div\",{className:`ultp-${\"ultp_templates\"==e.type?\"saved-template\":\"custom-font\"}-container`},L.state&&(0,a.createElement)(r.Z,{delay:2e3,toastMessages:L,setToastMessages:N}),f?(0,a.createElement)(a.Fragment,null,\"ultp_templates\"==e.type&&!ultp_dashboard_pannel.active&&t?.length>0?(0,a.createElement)(\"a\",{className:\"ultp-primary-button cursor\",onClick:()=>P(!0)},__(\"Add New\",\"ultimate-post\")):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"a\",{className:\"ultp-primary-button \",target:\"_blank\",href:f,rel:\"noreferrer\"},__(\"Add New\",\"ultimate-post\")))):(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:108,unit1:\"px\",size2:46,unit2:\"px\",br:4}}),(0,a.createElement)(\"div\",{className:\"tableCon\"},(0,a.createElement)(\"div\",{className:\"ultp-bulk-con ultp-dash-item-con\"},(0,a.createElement)(\"div\",null,(0,a.createElement)(\"select\",{value:b,onChange:e=>x(e.target.value)},(0,a.createElement)(\"option\",{value:\"\"},__(\"Bulk Action\",\"ultimate-post\")),(0,a.createElement)(\"option\",{value:\"publish\"},__(\"Publish\",\"ultimate-post\")),(0,a.createElement)(\"option\",{value:\"draft\"},__(\"Draft\",\"ultimate-post\")),(0,a.createElement)(\"option\",{value:\"delete\"},__(\"Delete\",\"ultimate-post\"))),(0,a.createElement)(\"a\",{className:\"ultp-primary-button cursor\",onClick:()=>{const e=y.filter((e=>Number.isInteger(e)));b&&e.length>0&&(\"delete\"==b?confirm(\"Are you sure you want to apply the action?\")&&A({action:\"dashborad\",data:{type:\"action_\"+b,ids:e}}):A({action:\"dashborad\",data:{type:\"action_\"+b,ids:e}}))}},__(\"Apply\",\"ultimate-post\"))),(0,a.createElement)(\"input\",{type:\"text\",placeholder:\"Search...\",onChange:e=>{z({search:e.target.value})}})),(0,a.createElement)(\"div\",{className:\"ultpTable\"},(0,a.createElement)(\"table\",{className:0!=t.length||s?\"\":\"skeletonOverflow\"},(0,a.createElement)(\"thead\",null,(0,a.createElement)(\"tr\",null,(0,a.createElement)(\"th\",null,(0,a.createElement)(\"input\",{type:\"checkbox\",checked:_,onChange:e=>{k(_?Array(t.length).fill(!1):t.map((e=>e.id))),w(!_)}})),(0,a.createElement)(a.Fragment,null,\"ultp_templates\"==e.type?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"th\",{className:\"title\"},__(\"Title\",\"ultimate-post\")),(0,a.createElement)(\"th\",null,__(\"Shortcode\",\"ultimate-post\"))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"th\",{className:\"title\"},__(\"Font Family\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontpreview\"},__(\"Preview\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"WOFF\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"WOFF2\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"TTF\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"SVG\",\"ultimate-post\")),(0,a.createElement)(\"th\",{className:\"fontType\"},__(\"EOT\",\"ultimate-post\"))),(0,a.createElement)(\"th\",{className:\"dateHead\"},__(\"Date\",\"ultimate-post\")),(0,a.createElement)(\"th\",null,__(\"Action\",\"ultimate-post\"))))),(0,a.createElement)(\"tbody\",null,t?.map(((t,n)=>(0,a.createElement)(\"tr\",{key:n},(0,a.createElement)(\"td\",null,(0,a.createElement)(\"input\",{type:\"checkbox\",checked:!!y[n],onChange:()=>{const e=[...y];e.splice(n,1,!y[n]&&t.id),k(e)}})),(t=>{let n=\"\",r={fontFamily:\"\",fontWeight:\"\"};if(\"ultp_templates\"!=e.type&&t?.font_settings?.length>0){const e=t.font_settings[0],a=[];e.woff&&a.push(`url(${e.woff}) format('woff')`),e.woff2&&a.push(`url(${e.woff2}) format('woff2')`),e.ttf&&a.push(`url(${e.ttf}) format('TrueType')`),e.svg&&a.push(`url(${e.svg}) format('svg')`),e.eot&&a.push(`url(${e.eot}) format('eot')`),n+=` @font-face {\\n                font-family: \"${t.title}\";\\n                font-weight: ${e.weight};\\n                font-display: auto;\\n                src: ${a.join(\", \")};\\n            } `,r={fontFamily:t.title,fontWeight:e.weight}}return(0,a.createElement)(a.Fragment,null,\"ultp_templates\"==e.type?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"td\",{className:\"title\"},(0,a.createElement)(\"a\",{href:t?.edit?.replace(\"&amp;\",\"&\"),target:\"_blank\",rel:\"noreferrer\"},t.title||\"Untitled\")),(0,a.createElement)(\"td\",null,(0,a.createElement)(\"span\",{className:\"shortCode\",onClick:e=>{(e=>{let t=!1;if(navigator.clipboard)t=navigator.clipboard.writeText(e.target.innerHTML);else{const n=document.createElement(\"input\");n.setAttribute(\"value\",e.target.innerHTML),document.body.appendChild(n),n.select(),t=document.execCommand(\"copy\"),document.body.removeChild(n)}if(t){const t=document.createElement(\"span\");t.innerText=\"Copied!\",e.target.appendChild(t),setTimeout((()=>{e.target.removeChild(t)}),800)}})(e)}},'[postx_template id=\"',t.id,'\"]'))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"td\",{className:\"title\"},(0,a.createElement)(\"a\",{href:t?.edit?.replace(\"&amp;\",\"&\"),target:\"_blank\",rel:\"noreferrer\"},t.title||\"Untitled\")),t.title&&(0,a.createElement)(\"style\",{type:\"text\u002Fcss\"},n),(0,a.createElement)(\"td\",{style:r},__(\"The quick brown fox jumps over the lazy dog.\",\"ultimate-post\")),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.woff?\"dashicons-yes\":\"dashicons-no-alt\")})),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.woff2?\"dashicons-yes\":\"dashicons-no-alt\")})),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.ttf?\"dashicons-yes\":\"dashicons-no-alt\")})),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.svg?\"dashicons-yes\":\"dashicons-no-alt\")})),(0,a.createElement)(\"td\",{className:\"fontType\"},(0,a.createElement)(\"span\",{className:\"dashicons \"+(t.eot?\"dashicons-yes\":\"dashicons-no-alt\")}))))})(t),(0,a.createElement)(\"td\",{className:\"typeDate\"},\"publish\"==t.status?\"Published\":t.status,\" \",(0,a.createElement)(\"br\",null),t.date),(0,a.createElement)(\"td\",null,(0,a.createElement)(\"span\",{className:\"actions ultp-reserve-button\",onClick:e=>{M(!S),C(t.id)}},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-ellipsis\"}),E==t.id&&S&&(0,a.createElement)(\"ul\",{className:\"ultp-dash-item-con actionPopUp ultp-reserve-button\"},(0,a.createElement)(\"li\",{className:\"ultp-reserve-button\"},(0,a.createElement)(\"a\",{target:\"_blank\",href:t?.edit?.replace(\"&amp;\",\"&\"),rel:\"noreferrer\"},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-edit-large\"}),__(\"Edit\",\"ultimate-post\"))),(0,a.createElement)(\"li\",{onClick:e=>{C(\"\"),M(!1),e.preventDefault(),confirm(\"Are you sure?\")&&A({action:\"template_action\",data:{type:\"status\",id:t.id,status:\"publish\"==t.status?\"draft\":\"publish\"}})}},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-open-folder\"}),__(\"Set to\",\"ultimate-post\"),\" \",\"draft\"==t.status?\"Publish\":\"Draft\"),(0,a.createElement)(\"li\",{onClick:e=>{C(\"\"),M(!1),e.preventDefault(),confirm(\"Are you sure you want to delete?\")&&A({action:\"template_action\",data:{type:\"delete\",id:t.id}})}},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-trash\"}),__(\"Delete\",\"ultimate-post\")),\"ultp_templates\"==e.type&&(0,a.createElement)(\"li\",{onClick:e=>{C(\"\"),M(!1),e.preventDefault(),confirm(\"Are you sure you want to duplicate this template?\")&&A({action:\"template_action\",data:{type:\"duplicate\",id:t.id}})}},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-admin-page\"}),__(\"Duplicate\",\"ultimate-post\")))))))),0==t.length&&s&&(0,a.createElement)(\"tr\",null,\"ultp_templates\"==e.type?(0,a.createElement)(\"td\",{colSpan:5},(0,a.createElement)(\"div\",{className:\"ultp_h2\"},__(\"No Data Found !!!\",\"ultimate-post\"))):(0,a.createElement)(\"td\",{colSpan:10},(0,a.createElement)(\"div\",{className:\"ultp_h2\"},__(\"No Data Found !!!\",\"ultimate-post\")))),0==t.length&&!s&&(0,a.createElement)(a.Fragment,null,Array(5).fill(1).map(((t,n)=>(0,a.createElement)(\"tr\",{key:n},(0,a.createElement)(\"td\",null,(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:22,unit1:\"px\",size2:20,unit2:\"px\",br:4}})),\"ultp_templates\"==e.type?(0,a.createElement)(a.Fragment,null,Array(4).fill(1).map(((e,t)=>(0,a.createElement)(\"td\",{key:t},(0,a.createElement)(l.Z,{type:\"title\",size:\"99\"}))))):(0,a.createElement)(a.Fragment,null,Array(9).fill(1).map(((e,t)=>(0,a.createElement)(\"td\",{key:t},(0,a.createElement)(l.Z,{type:\"title\",size:\"99\"})))))))))))),(0,a.createElement)(\"div\",{className:\"pageCon\"},(0,a.createElement)(\"div\",null,__(\"Page\",\"ultimate-post\"),\" \",g>0?c:g,\" \",__(\"of\",\"ultimate-post\"),\" \",g,\" [\",\" \",u,\" \",__(\"items\",\"ultimate-post\"),\" ]\"),g>0&&(0,a.createElement)(\"div\",{className:\"ultpPages\"},c>1&&(0,a.createElement)(\"span\",{onClick:()=>{const e=c-1;z({pages:e}),d(e)}},o.ZP.leftAngle2),(0,a.createElement)(\"span\",{className:\"currentPage\"},c),g>c&&(0,a.createElement)(\"span\",{onClick:()=>{const e=c+1;z({pages:e}),d(e)}},o.ZP.rightAngle2)))),Z&&(0,i.cs)({tags:\"menu_save_temp_pro\",func:e=>{P(e)},data:{icon:\"saved_template_lock.svg\",title:__(\"Create Unlimited Saved Templates with PostX Pro\",\"ultimate-post\"),description:__(\"You can create only one saved template with the free version of PostX. Please upgrade to a pro plan to create unlimited saved templates.\",\"ultimate-post\")}}))}},3554:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>d});var a=n(7294),r=n(1383),o=n(448),i=n(4766),l=n(8949),s=n(356),p=n(814),c=n(6488);const{__}=wp.i18n,d=e=>{const[t,n]=(0,a.useState)({templates:[],designs:[],reloadId:\"\",reload:!1,isTemplate:!0,error:!1,fetching:!1,loading:!1}),[d,u]=(0,a.useState)(\"\"),[m,f]=(0,a.useState)(\"all\"),[h,g]=(0,a.useState)(\"all\"),[v,_]=(0,a.useState)(\"all\"),[w,b]=(0,a.useState)([]),[x,y]=(0,a.useState)(!1),[k,E]=(0,a.useState)({state:!1,status:\"\"}),[C,S]=(0,a.useState)(\"3\"),[M,L]=(0,a.useState)(\"\"),[N,Z]=(0,a.useState)([]),{loading:P,fetching:z}=t,A=(0,r.t)(),B=async()=>{n((e=>({...e,loading:!0}))),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ffetch_premade_data\",method:\"POST\",data:{type:\"starter_lists\"}}).then((e=>{if(e.success&&A.current&&e.data){const t=JSON.parse(e.data);Z(t),n((e=>({...e,loading:!1})))}}))},H=[{value:\"all\",label:__(\"All Categories\",\"ultimate-post\")},{value:\"news\",label:__(\"News\",\"ultimate-post\")},{value:\"magazine\",label:__(\"Magazine\",\"ultimate-post\")},{value:\"blog\",label:__(\"Blog\",\"ultimate-post\")},{value:\"sports\",label:__(\"Sports\",\"ultimate-post\")},{value:\"fashion\",label:__(\"Fashion\",\"ultimate-post\")},{value:\"tech\",label:__(\"Tech\",\"ultimate-post\")},{value:\"travel\",label:__(\"Travel\",\"ultimate-post\")},{value:\"food\",label:__(\"Food\",\"ultimate-post\")},{value:\"movie\",label:__(\"Movie\",\"ultimate-post\")},{value:\"health\",label:__(\"Health\",\"ultimate-post\")},{value:\"gaming\",label:__(\"Gaming\",\"ultimate-post\")},{value:\"nft\",label:__(\"NFT\",\"ultimate-post\")}];(0,a.useEffect)((()=>{T(\"\",\"\",\"fetchData\"),B()}),[]);const T=(e,t=\"\",n=\"\")=>{wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Fpremade_wishlist_save\",method:\"POST\",data:{id:e,action:t,type:n}}).then((e=>{e.success&&A.current&&(b(Array.isArray(e.wishListArr)?e.wishListArr:Object.values(e.wishListArr||{})),\"fetchData\"!=n&&E({status:\"success\",messages:[e.message],state:!0}))}))};if(M){document.querySelector(\"#adminmenumain\").style=\"display: none;\",document.querySelector(\".ultp-settings-container\").style=\"min-height: unset;\";const e=N.filter((e=>e.live==M))[0];return(0,a.createElement)(p.Z,{_val:e,setLiveUrl:L,liveUrl:M})}document.querySelector(\"#adminmenumain\").style=\"\",document.querySelector(\".ultp-settings-container\").style=\"\";let R=(0,o.cC)(w.join(\"\"),[]);R&&\"object\"==typeof R&&!Array.isArray(R)&&(R=Object.keys(R).sort(((e,t)=>e-t)).map((e=>R[e])));const O=N.map((e=>e.ID)).sort(((e,t)=>t-e)).slice(0,3);return(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-templatekit-wrap\"},k.state&&(0,a.createElement)(s.Z,{delay:2e3,toastMessages:k,setToastMessages:E}),(0,a.createElement)(\"div\",{className:\"ultp-templatekit-list-container \"},(0,a.createElement)(c.Z,{changeStates:(e,t)=>{\"freePro\"==e?_(t):\"search\"==e?u(t):\"column\"==e?S(t):\"wishlist\"==e?y(t):\"trend\"==e?(f(t),\"latest\"==t||\"all\"==t?N.sort(((e,t)=>t.ID-e.ID)):\"popular\"==t&&N[0]&&N[0].hit&&N.sort(((e,t)=>t.hit-e.hit))):\"filter\"==e&&g(t)},useState:a.useState,useEffect:a.useEffect,useRef:a.useRef,column:C,showWishList:x,_fetchFile:()=>{n((e=>({...e,fetching:!0}))),wp.apiFetch({path:\"\u002Fultp\u002Fv2\u002Ffetch_premade_data\",method:\"POST\",data:{type:\"fetch_all_data\"}}).then((e=>{e.success&&A.current&&(B(),n((e=>({...e,fetching:!1}))),E({status:\"success\",messages:[e.message],state:!0}))}))},fetching:z,searchQuery:d,fields:{filter:!0,trend:!0,freePro:!0},fieldOptions:{filterArr:H,trendArr:[],freeProArr:[]},fieldValue:{filter:h,trend:m,freePro:v}}),N.length>0?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp-premade-grid ultp-templatekit-col\"+C},N.map((e=>e.title?.toLowerCase().includes(d.toLowerCase())&&(\"all\"==h||\"all\"!=h&&(h==e.category||(Array.isArray(e.parent_cat)?e.parent_cat:Object.values(e.parent_cat||{})).includes(h)))&&(\"all\"==v||\"pro\"==v&&e.pro||\"free\"==v&&!e.pro)&&(!x||x&&R?.includes(e.ID))&&(0,a.createElement)(\"div\",{key:e.ID,className:\"ultp-item-wrapper ultp-starter-group \"},(0,a.createElement)(\"div\",{className:\"ultp-item-list\"},(0,a.createElement)(\"div\",{className:\"ultp-item-list-overlay\"},(0,a.createElement)(\"a\",{className:\"ultp-templatekit-img bg-image-aspect\",href:\"#\",style:{backgroundImage:`url(https:\u002F\u002Fpostxkit.wpxpo.com\u002F${e.live}\u002Fwp-content\u002Fuploads\u002Fsites\u002F${e.ID}\u002Fpostx_importer_img\u002Fpages\u002Fhome.jpg)`}}),(0,a.createElement)(\"div\",{className:\"ultp-list-dark-overlay\"},!ultp_dashboard_pannel.active&&(0,a.createElement)(a.Fragment,null,e.pro?(0,a.createElement)(\"span\",{className:\"ultp-templatekit-premium-btn\"},__(\"Pro\",\"ultimate-post\")):(0,a.createElement)(\"span\",{className:\"ultp-templatekit-premium-btn ultp-templatekit-premium-free-btn\"},__(\"Free\",\"ultimate-post\"))),(0,a.createElement)(\"a\",{className:\"ultp-overlay-view ultp-dashboverlay\",onClick:()=>L(e.live)},i.ZP.eye,__(\"Live Preview\",\"ultimate-post\"))),e.pro&&(0,a.createElement)(\"div\",{className:\"ultp-list-info-tag-pro\"},(0,a.createElement)(\"span\",null,\"PRO\"))),(0,a.createElement)(\"div\",{className:\"ultp-item-list-info\"},(0,a.createElement)(\"div\",{className:\"ultp-list-info\",onClick:()=>L(e.live)},(0,a.createElement)(\"div\",{className:\"ultp-list-info-title\"},e.title,O.includes(e.ID)&&(0,a.createElement)(\"div\",{className:\"ultp-list-info-tag-new\"},\"NEW\")),(0,a.createElement)(\"div\",{className:\"ultp-list-info-count\"},e.templates?.length&&e.templates?.length+\" templates\")),(0,a.createElement)(\"span\",{className:\"ultp-action-btn\"},(0,a.createElement)(\"span\",{className:\"ultp-premade-wishlist\",onClick:()=>{T(e.ID,R?.includes(e.ID)?\"remove\":\"\")}},i.ZP[R?.includes(e.ID)?\"love_solid\":\"love_line\"]))))))))):P?(0,a.createElement)(\"div\",{className:\"ultp-premade-grid skeletonOverflow ultp-templatekit-col\"+C},Array(25).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{key:t,className:\"ultp-item-list\"},(0,a.createElement)(\"div\",{className:\"ultp-item-list-overlay\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:440,unit2:\"px\"}})),(0,a.createElement)(\"div\",{className:\"ultp-item-list-info\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"%\",size2:25,unit2:\"px\",br:2}}),(0,a.createElement)(\"span\",{className:\"ultp-action-btn\"},(0,a.createElement)(\"span\",{className:\"ultp-premade-wishlist\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:30,unit1:\"px\",size2:25,unit2:\"px\",br:2}})))))))):(0,a.createElement)(\"span\",{className:\"ultp-image-rotate\"},__(\"No Data Available…\",\"ultimate-post\")))))}},4371:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>i});var a=n(7294),r=n(448),o=n(5404);const{__}=wp.i18n,i=({ultpPresetColors:e,currentPresetColors:t,setCurrentPresetColors:n,setCurrentPostxGlobal:i,currentPostxGlobal:l})=>{const s={...e,rootCSS:(0,r.AJ)(\"styleCss\",e)},[p,c]=(0,a.useState)({...t,...s}),[d,u]=(0,a.useState)(\"\"),[m,f]=(0,a.useState)(!1),h=(0,r.AJ)(\"colorStacks\"),g=(0,r.AJ)(\"presetColorKeys\");(0,a.useEffect)((()=>{(0,r.x2)(\"get\",\"ultpPresetColors\",\"\",(e=>{if(e.data){const t={...e.data,...p};n({...t,rootCSS:(0,r.AJ)(\"styleCss\",t)})}}))}),[]);const v=(e,a=\"\")=>{let o={...t,...e};\"darkhandle\"!=a&&m&&(o=_(o));const i=((e={},t=\"\")=>{const n=(0,r.AJ)(\"styleCss\",e),a=document.querySelector(\"#ultp-starter-preview\");if(a.contentWindow){const e={type:\"replaceColorRoot\",id:\"#ultp-preset-colors-style-inline-css\",styleCss:n,dlMode:\"darkhandle\"==t?m?\"ultpLight\":\"ultpDark\":m?\"ultpDark\":\"ultpLight\"};a.contentWindow.postMessage(e,\"*\")}return n})(o,a);c(o),n({...o,rootCSS:i})},_=(e={})=>({...e,Base_1_color:e.Contrast_1_color,Base_2_color:e.Contrast_2_color,Base_3_color:e.Contrast_3_color,Contrast_1_color:e.Base_1_color,Contrast_2_color:e.Base_2_color,Contrast_3_color:e.Base_3_color});return(0,a.createElement)(\"div\",{className:\"ultp_starter_preset_container\"},(0,a.createElement)(\"div\",{className:\"ultp_starter_dark_container\"},(0,a.createElement)(\"div\",{onClick:()=>(()=>{const e=_(t);document.querySelector(\".ultp-dl-container .ultp-dl-svg-con\").style=`transform: translateX(${m?\"\":\"calc( 100% + 71px )\"}); transition: transform .4s ease`,document.querySelector(\".ultp-dl-container .ultp-dl-svg-title\").style=`transform: translateX(${m?\"\":\"calc( -100% + 50px )\"}); transition: transform .4s ease`,setTimeout((()=>{f(!m),i({...l,enableDark:!m}),v(e,\"darkhandle\")}),400)})(),className:\" ultp-dl-container \"},(0,a.createElement)(\"div\",{className:\"ultp-dl-svg-con \"+(m?\"dark\":\"\")},(0,a.createElement)(\"div\",{className:\"ultp-dl-svg\"},o.Z[m?\"moon\":\"sun\"])),(0,a.createElement)(\"div\",{className:\"ultp-dl-svg-title\"},m?\"Dark Mode\":\"Light Mode\"))),(0,a.createElement)(\"div\",{className:\"ultp_starter_reset_container\"},(0,a.createElement)(\"div\",{className:\"packs_title\"},__(\"Change Color Palette\",\"ultimate-post\")),d&&(0,a.createElement)(\"span\",{className:\"dashicons dashicons-image-rotate\",onClick:()=>{u(\"\"),v(s)}})),(0,a.createElement)(\"ul\",{className:\"ultp-color-group\"},h.map(((e,t)=>(0,a.createElement)(\"li\",{className:\"ultp_starter_preset_list \"+(d==t+1?\"active\":\"\"),key:t,onClick:()=>{const n={};u(t+1),g.forEach(((t,a)=>{n[t]=e[a]})),v(n)}},e.map(((e,t)=>![1,2,6,8,9].includes(t+1)&&(0,a.createElement)(\"span\",{key:t,className:\"ultp-global-color\",style:{backgroundColor:e}}))))))))}},5066:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294),r=n(448);const{__}=wp.i18n,o=({ultpPresetTypos:e,currentPresetTypos:t,setCurrentPresetTypos:n})=>{const o={...e,presetTypoCSS:(0,r.AJ)(\"typoCSS\",e,!0)},[i,l]=(0,a.useState)({...t,...o}),[s,p]=(0,a.useState)(\"\"),c=(0,r.AJ)(\"presetTypoKeys\"),d=(0,r.AJ)(\"typoStacks\");(0,a.useEffect)((()=>{(0,r.x2)(\"get\",\"ultpPresetTypos\",\"\",(e=>{if(e.data){const t={...e.data,...i};l({...t,presetTypoCSS:(0,r.AJ)(\"typoCSS\",t,!0)}),n({...t,presetTypoCSS:(0,r.AJ)(\"typoCSS\",t,!0)})}}))}),[]);const u=e=>{const a={...t,...e},o=((e={})=>{const t=(0,r.AJ)(\"typoCSS\",e,!0),n=document.querySelector(\"#ultp-starter-preview\");if(n.contentWindow){const e={type:\"replaceColorRoot\",id:\"#ultp-preset-typo-style-inline-css\",styleCss:t};n.contentWindow.postMessage(e,\"*\")}return t})(a);l(a),n({...a,presetTypoCSS:o})};return(0,a.createElement)(\"div\",{className:\"ultp_starter_preset_container\"},(0,a.createElement)(\"div\",{className:\"ultp_starter_reset_container\"},(0,a.createElement)(\"div\",{className:\"packs_title\"},__(\"Change Font & Typography\",\"ultimate-post\")),s&&(0,a.createElement)(\"span\",{className:\"dashicons dashicons-image-rotate\",onClick:()=>{p(\"\"),u(o)}})),(0,a.createElement)(\"ul\",{className:\"ultp-typo-group\"},d.map(((e,n)=>(0,a.createElement)(\"li\",{title:`${e[0].family}\u002F${e[1].family}`,className:\"ultp_starter_preset_typo_list \"+(s==n+1?\"active\":\"\"),key:n,onClick:()=>{const a={};p(n+1),c.forEach(((n,r)=>{a[n]={...t[n]},a[n].family=e[r].family,a[n].type=e[r].type,a[n].weight=e[r].weight})),u(a)}},e.map(((e,t)=>(0,a.createElement)(\"span\",{key:t},(0,a.createElement)(\"style\",null,(0,r.AJ)(\"font_load\",e,!0)),(0,a.createElement)(\"span\",{key:t,className:\"\",style:{fontFamily:`${e.family}, ${e.type}`}},0==t?\"A\":\"a\")))))))))}},5324:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294),r=n(4766);const o=e=>{const{useState:t,useEffect:n,useRef:o,onChange:i,options:l,value:s,contentWH:p}=e,[c,d]=t(!1),u=o(null),m=e=>{u?.current&&!u?.current.contains(e.target)?d(!1):u?.current&&u?.current.contains(e.target)&&!e.target.classList?.contains(\"ultp-reserve-button\")&&d(!u?.current.classList?.contains(\"open\"))};n((()=>(document.addEventListener(\"mousedown\",m),()=>document.removeEventListener(\"mousedown\",m))),[]);const f=l?.find((e=>e.value===s));return(0,a.createElement)(\"div\",{ref:u,className:\"starter_filter_select \"+(c?\"open\":\"\")},(0,a.createElement)(\"div\",{className:\"starter_filter_selected\"},f?f.label:\"Select an option\",r.ZP.collapse_bottom_line),c&&(0,a.createElement)(\"ul\",{className:\"starter_filter_select_options\",style:{minWidth:p?.width||\"100px\",maxHeight:p?.height||\"160px\"}},l.map(((e,t)=>(0,a.createElement)(\"li\",{className:\"ultp-reserve-button starter_filter_select_option\",key:t,onClick:()=>(e=>{d(!1),i(e.value)})(e)},e.label)))))}},814:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>c});var a=n(7294),r=n(448),o=n(4766),i=n(4482),l=n(8949),s=n(4371),p=n(5066);n(4602);const{__}=wp.i18n,c=e=>{const{_val:t,setLiveUrl:n,liveUrl:c}=e,[d,u]=(0,a.useState)({}),[m,f]=(0,a.useState)({}),[h,g]=(0,a.useState)({}),v={deletePrevious:\"yes\",installPlugin:\"yes\",user_email:ultp_dashboard_pannel.user_email,get_newsletter:\"yes\",importDummy:\"yes\"},[_,w]=(0,a.useState)(!1),[b,x]=(0,a.useState)(!1),[y,k]=(0,a.useState)(!1),[E,C]=(0,a.useState)([]),[S,M]=(0,a.useState)(v),[L,N]=(0,a.useState)(0),[Z,P]=(0,a.useState)({type:\"desktop\",width:\"100%\"}),[z,A]=(0,a.useState)(!1),[B,H]=(0,a.useState)(!0),[T,R]=(0,a.useState)(!1),[O,j]=(0,a.useState)({plugin:!1,content:!1}),[V,F]=(0,a.useState)(!1),[W,D]=(0,a.useState)({}),[I,U]=(0,a.useState)({}),[$,G]=(0,a.useState)([]);(0,a.useEffect)((()=>{window.fetch(\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+t.live+\"\u002Fwp-json\u002Fimporter\u002Fglobal_settings\",{method:\"GET\"}).then((e=>e.text())).then((e=>{const t=(0,r.cC)(e,{});t.success&&(((e={})=>{wp.apiFetch({path:\"\u002Fultp\u002Fv1\u002Faction_option\",method:\"POST\",data:{type:\"get\"}}).then((t=>{if(t.success){let n={...t.data,...e};n={...n,globalCSS:(0,r.AJ)(\"globalCSS\",n)},g(n)}}))})(t.postx_global),D(t.ultpPresetColors),U(t.ultpPresetTypos),G(t.plugins))})).catch((e=>{}))}),[]);const q=(e,t,n,r=\"\")=>(0,a.createElement)(\"div\",{className:\"input_container\"},\"checkbox\"==t&&(0,a.createElement)(\"input\",{id:e,className:r,name:e,type:t,defaultChecked:!(!S[e]||\"yes\"!=S[e]),onChange:t=>{const n=t.target.checked?\"yes\":\"no\";M({...S,[e]:n})}}),\"checkbox\"!=t&&(0,a.createElement)(\"input\",{id:e,className:r,name:e,type:t,defaultValue:S[e]||\"\",onChange:t=>{const n=t.target.value;M({...S,[e]:n})}}),n&&(0,a.createElement)(\"span\",null,(0,a.createElement)(\"span\",{className:\"ultp-info\"},n)));return(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\" ultp_starter_packs_demo theme-install-overlay wp-full-overlay expanded \"+(B?\"active\":\"inactive\"),style:{display:\"block\"}},(0,a.createElement)(\"div\",{className:\"wp-full-overlay-sidebar \"},(0,a.createElement)(\"div\",{className:\"wp-full-overlay-header\"},(0,a.createElement)(\"div\",{className:\"ultp_starter_packs_demo_header\"},(0,a.createElement)(\"div\",{className:\"packs_title\"},t.title,(0,a.createElement)(\"span\",null,t.category)),(0,a.createElement)(\"button\",{onClick:()=>n(\"\"),className:\"close-full-overlay\"})),(0,a.createElement)(\"div\",{className:\"ultp-starter-collapse \"+(B?\"active\":\"inactive\"),onClick:()=>{H(!B)}},o.ZP.collapse_bottom_line)),Array(6).fill(1).map(((e,t)=>(0,a.createElement)(\"div\",{key:t,className:\"ultp-addon-item ultp-dash-item-con\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-contents\"},(0,a.createElement)(\"div\",{className:\"ultp-addon-item-name\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"px\",size2:50,unit2:\"px\",br:18}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:190,unit1:\"px\",size2:28,unit2:\"px\",br:4}})),(0,a.createElement)(\"div\",{className:\"ultp-description\"},(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:100,unit1:\"%\",size2:14,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",classes:\"loop\",c_s:{size1:70,unit1:\"%\",size2:14,unit2:\"px\",br:2}}))),(0,a.createElement)(\"div\",{className:\"ultp-addon-item-actions ultp-dash-control-options\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:40,unit1:\"px\",size2:20,unit2:\"px\",br:8}}),(0,a.createElement)(\"div\",{className:\"ultp-docs-action\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:50,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:22,unit2:\"px\",br:2}})))))),(0,a.createElement)(\"div\",{className:\"wp-full-overlay-sidebar-content\"},W.hasOwnProperty(\"Base_1_color\")?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(s.Z,{ultpPresetColors:W,currentPresetColors:d,setCurrentPresetColors:u,currentPostxGlobal:h,setCurrentPostxGlobal:g})):(0,a.createElement)(\"div\",{className:\"skeletonOverflow\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:140,unit1:\"px\",size2:40,unit2:\"px\",br:40}}),(0,a.createElement)(\"div\",{className:\"skeletonOverflow_colors\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:140,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(\"div\",{className:\"demos-color\"},Array(10).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:\"custom_size\",c_s:{size1:100,unit1:\"px\",size2:30,unit2:\"px\",br:6}})))))),I.hasOwnProperty(\"Body_and_Others_typo\")?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(p.Z,{ultpPresetTypos:I,currentPresetTypos:m,setCurrentPresetTypos:f})):(0,a.createElement)(\"div\",{className:\"skeletonOverflow\"},(0,a.createElement)(\"div\",{className:\"skeletonOverflow_colors\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:140,unit1:\"px\",size2:22,unit2:\"px\",br:2}}),(0,a.createElement)(\"div\",{className:\"demos-color\"},Array(10).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:\"custom_size\",c_s:{size1:100,unit1:\"px\",size2:30,unit2:\"px\",br:6}}))))))),(0,a.createElement)(\"div\",{className:\"wp-full-overlay-footer\"},(0,a.createElement)(\"div\",{className:\"ultp_starter_import_options\"},(0,a.createElement)(\"div\",{className:\"option_buttons\"},t.pro&&!ultp_dashboard_pannel.active?(0,i.hx)(`https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-starter&utm_medium=${t.live}-upgrade-pro&utm_campaign=postx-dashboard#pricing`,\"\"):(0,a.createElement)(\"a\",{className:\"ultp-starter-button\",onClick:()=>{w(!0)}},__(\"Import Site\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"ultp-starter-packs-device-container\"},(0,a.createElement)(\"span\",{onClick:()=>P({type:\"desktop\",width:\"100%\"}),className:\"ultp-starter-packs-device \"+(\"desktop\"==Z.type?\"d-active\":\"\")},o.ZP.desktop),(0,a.createElement)(\"span\",{onClick:()=>P({type:\"tablet\",width:(h.breakpointSm||\"990\")+\"px\"}),className:\"ultp-starter-packs-device \"+(\"tablet\"==Z.type?\"d-active\":\"\")},o.ZP.tablet),(0,a.createElement)(\"span\",{onClick:()=>P({type:\"mobile\",width:(h.breakpointXs||\"767\")+\"px\"}),className:\"ultp-starter-packs-device \"+(\"mobile\"==Z.type?\"d-active\":\"\")},o.ZP.mobile))))),(0,a.createElement)(\"div\",{className:\"wp-full-overlay-main\"},!T&&(0,a.createElement)(\"div\",{className:\"iframe_loader\"},(0,a.createElement)(\"div\",{className:\"iframe_container\"},(0,a.createElement)(\"div\",{className:\"iframe_header\"},(0,a.createElement)(\"div\",{className:\"iframe_header_top\"},(0,a.createElement)(\"div\",{className:\"header_top_left\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:60,unit1:\"px\",size2:60,unit2:\"px\",br:60}})),(0,a.createElement)(\"div\",{className:\"header_top_right\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:90,unit1:\"px\",size2:30,unit2:\"px\",br:4}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:90,unit1:\"px\",size2:30,unit2:\"px\",br:4}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:90,unit1:\"px\",size2:30,unit2:\"px\",br:4}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:90,unit1:\"px\",size2:30,unit2:\"px\",br:4}}),Array(3).fill(1).map(((e,t)=>(0,a.createElement)(l.Z,{key:t,type:\"custom_size\",c_s:{size1:30,unit1:\"px\",size2:30,unit2:\"px\",br:30}})))))),(0,a.createElement)(\"div\",{className:\"iframe_body_content\"},(0,a.createElement)(\"div\",{className:\"iframe_body_slider\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:300,unit2:\"px\",br:2}})),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:190,unit1:\"px\",size2:36,unit2:\"px\",br:2}}),(0,a.createElement)(\"div\",{className:\"iframe_body\"},(0,a.createElement)(\"div\",{className:\"iframe_body_left\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:300,unit2:\"px\",br:2}})),(0,a.createElement)(\"div\",{className:\"iframe_body_right\"},(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:140,unit2:\"px\",br:2}}),(0,a.createElement)(l.Z,{type:\"custom_size\",c_s:{size1:100,unit1:\"%\",size2:140,unit2:\"px\",br:2}})))))),(0,a.createElement)(\"iframe\",{className:`${Z.type}View`,onLoad:()=>{R(!0),(()=>{const e=document.querySelector(\"#ultp-starter-preview\");if(d.hasOwnProperty(\"Base_1_color\")){const t=(0,r.AJ)(\"styleCss\",d);if(e.contentWindow){const n={type:\"replaceColorRoot\",id:\"#ultp-preset-colors-style-inline-css\",styleCss:t,dlMode:h.enableDark?\"ultpDark\":\"ultpLight\"};e.contentWindow.postMessage(n,\"*\")}}if(m.hasOwnProperty(\"Body_and_Others_typo\")){const t=(0,r.AJ)(\"typoCSS\",m,!0);if(e.contentWindow){const n={type:\"replaceColorRoot\",id:\"#ultp-preset-typo-style-inline-css\",styleCss:t};e.contentWindow.postMessage(n,\"*\")}}})()},style:{display:\"block\",margin:\"0 auto\",maxWidth:Z.width},id:\"ultp-starter-preview\",src:\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+c}))),_&&(0,a.createElement)(\"div\",{className:\"ultp-stater-container-settings-overlay\"},(0,a.createElement)(\"div\",{className:\"ultp-stater-settings-container\"},(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"ultp-popup-stater\"},b?(0,a.createElement)(a.Fragment,null,y?(0,a.createElement)(\"div\",{className:\"ultp_processing_import\"},(0,a.createElement)(\"div\",{className:\"stater_title\"},__(`Started building ${t.title} website`,\"ultimate-post\")),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"ultp_import_builders ultp-info\"},__(\"The import process can take a few seconds depending on the size of the kit you are importing and speed of the connection.\",\"ultimate-post\"),\" \",(0,a.createElement)(\"br\",null),(O.plugin||O.content)&&(0,a.createElement)(\"div\",{className:\"progress\"},(0,a.createElement)(\"div\",null,(0,a.createElement)(\"strong\",null,\"Progress:\"),\" \",O.plugin?\"Plugin Installation is\":O.content?\"Page\u002FPosts\u002FMedia Importing is\":\"Site Importing\",\" \",\"on progress..\")))),(0,a.createElement)(\"div\",{className:\"ultp_processing_show\"},(0,a.createElement)(\"div\",{className:\"ultp-importer-loader\"},(0,a.createElement)(\"div\",{id:\"ultp-importer-loader-bar\",style:{width:L+\"%\"}}),(0,a.createElement)(\"div\",{id:\"ultp-importer-loader-percentage\",style:{color:L>52?\"#fff\":\"#000\"}},L+\"%\"))),(0,a.createElement)(\"div\",{className:\"ultp_import_notice\"},(0,a.createElement)(\"span\",null,__(\"Note:\",\"ultimate-post\")),__(\"Please do not close this browser window until import is completed.\",\"ultimate-post\"))):(0,a.createElement)(\"div\",{className:\"ultp_successful_import\"},(0,a.createElement)(\"div\",{className:\"stater_title\"},t.title,__(` Imported ${V?\"Failed\":\"Successfully\"} `,\"ultimate-post\")),(0,a.createElement)(\"div\",null,V?(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp_import_builders\"},__(\"Due to resquest timeout this import is failed\",\"ultimate-post\"),(0,a.createElement)(\"a\",{className:\"cursor\",onClick:()=>{window.location.reload()}},__(\"Refresh\",\"ultimate-post\")),__(\"page and try again\",\"ultimate-post\"))):(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"ultp_import_builders\"},__(\"Navigate to\",\"ultimate-post\"),(0,a.createElement)(\"a\",{className:\"cursor\",onClick:()=>{window.location.href=ultp_dashboard_pannel.builder_url,window.location.reload()}},__(\"Site Builder to edit\",\"ultimate-post\")),__(\"your Archive, Post, Default Page and other templates.\",\"ultimate-post\")),(0,a.createElement)(\"a\",{className:\"ultp-primary-button\",href:ultp_dashboard_pannel.home_url},__(\"View Your Website\",\"ultimate-post\")))))):(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"ultp-info ultp-info-desc\"},\" \",__(\"Import the entire site including posts, images, pages, content and plugins.\",\"ultimate-post\")),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"stater_title\"},__(\"Import Settings\",\"ultimate-post\")),q(\"importDummy\",\"checkbox\",__(\"Import dummy post, taxonomy and featured images\",\"ultimate-post\")),q(\"deletePrevious\",\"checkbox\",__(\"Delete Previously imported sites\",\"ultimate-post\")),q(\"installPlugin\",\"checkbox\",__(\"Install required plugins\",\"ultimate-post\"))),(0,a.createElement)(\"div\",{className:\"starter_page_impports\"},(0,a.createElement)(\"div\",{className:\"stater_title\"},__(\"Template\u002FPages\",\"ultimate-post\")),t?.templates?.map(((e,t)=>(!z&&t\u003C3||z)&&(0,a.createElement)(\"div\",{key:t,className:\"input_container\"},(0,a.createElement)(\"input\",{type:\"checkbox\",defaultChecked:!E.includes(e.name),onChange:t=>{t.target.checked&&E.includes(e.name)?C(E.filter((t=>t!==e.name))):t.target.checked||E.includes(e.name)||C([...E,e.name])}}),(0,a.createElement)(\"span\",null,(0,a.createElement)(\"span\",{className:\"ultp-info\"},e.name))))),t.templates.length>3&&(0,a.createElement)(\"div\",{className:\"cursor\",onClick:()=>{A(!z)}},\"Show \"+(z?\"less\":\"more\"),\" \",o.ZP.videoplay)),(0,a.createElement)(\"div\",null,(0,a.createElement)(\"div\",{className:\"stater_title\"},__(\"Subscribe\",\"ultimate-post\")),(0,a.createElement)(\"span\",null,__(\"Stay up to date with the latest started templates and special offers\",\"ultimate-post\")),q(\"user_email\",\"email\",\"\",\"email_box\"),q(\"get_newsletter\",\"checkbox\",__(\"Stay updated with exciting features and news.\"),\"get_newsletter\")))),!b&&(0,a.createElement)(\"div\",{className:\"starter_import \"},(0,a.createElement)(\"a\",{className:\"ultp-primary-button\",onClick:()=>(async e=>{x(!0);let n,a=0;async function o(e,t,r){n=setInterval((()=>{e>=t?clearInterval(n):(e++,a++,N(e))}),r)}if(o(a,70,\"yes\"==S.importDummy?800:400),e){x(!0),k(!0);const i=$;if((0,r.x2)(\"set\",\"ultpPresetColors\",d),(0,r.x2)(\"set\",\"ultpPresetTypos\",m),wp.apiFetch({method:\"POST\",path:\"\u002Fultp\u002Fv1\u002Faction_option\",data:{type:\"set\",data:h}}),\"yes\"==S.deletePrevious||\"yes\"==S.get_newsletter){const e=new Promise(((e,t)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv3\u002Fdeletepost_getnewsletters\",method:\"POST\",data:{deletePrevious:S.deletePrevious,get_newsletter:S.get_newsletter}}).then((t=>{e(\"responsed\")}))}));await e}if(\"yes\"==S.importDummy){const t=new Promise(((t,n)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv3\u002Fstarter_dummy_post\",method:\"POST\",data:{api_endpoint:e,importDummy:S.importDummy}}).then((e=>{t(\"responsed\")})).catch((e=>{console.log(e),t(\"responsed\")}))}));await t}if(\"yes\"==S?.installPlugin){j({...O,plugin:!0});const e=i.map(((e,t)=>new Promise(((t,n)=>{jQuery.ajax({type:\"POST\",url:ultp_dashboard_pannel.ajax,data:{action:\"install_required_plugin\",wpnonce:ultp_dashboard_pannel.security,plugin:JSON.stringify(e)}}).done((function(e){t(\"responsed\")}))}))));await Promise.all(e),j({...O,plugin:!1})}clearInterval(n),o(a+1,80,500);const l=t.templates?.filter((e=>!E.includes(e.name)));l.length>0&&(j({...O,content:!0}),wp.apiFetch({path:\"\u002Fultp\u002Fv3\u002Fstarter_import_content\",method:\"POST\",data:{excludepages:JSON.stringify(E),api_endpoint:e,importDummy:S.importDummy,installPlugin:S?.installPlugin}}).then((e=>{clearInterval(n),o(a+1,100,50),setTimeout((()=>{k(!1),j({...O,content:!1})}),50*(100-a+2)),e.success||F(!0)})).catch((e=>{console.log(e),o(a+1,100,50),setTimeout((()=>{k(!1),j({...O,content:!1})}),50*(100-a+2))})))}})(\"https:\u002F\u002Fpostxkit.wpxpo.com\u002F\"+t.live)},__(\"Start Importing\",\"ultimate-post\"))),(0,a.createElement)(\"button\",{onClick:()=>{y||(M(v),x(!1),N(0),k(!1),w(!1))},className:\"ultp-popup-close \"+(y?\"s_loading\":\"\")},o.ZP.close_line)))))}},6488:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>s});var a=n(7294),r=n(4766),o=n(2402),i=n(7763),l=n(5324);const{__}=wp.i18n,s=e=>{const{changeStates:t,column:n,showWishList:s,_fetchFile:p,fetching:c,searchQuery:d,fields:u,fieldValue:m,fieldOptions:f,useState:h,useEffect:g,useRef:v}=e;return(0,a.createElement)(\"div\",{className:\"ultp-templatekit-layout-search-container\"},(0,a.createElement)(\"div\",{className:\"ultp-templatekit-search-container\"},u?.filter&&(0,a.createElement)(a.Fragment,null,\" \",(0,a.createElement)(\"span\",null,__(\"Filter:\",\"ultimate-post\")),(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.filter,contentWH:{height:\"190px\",width:\"150px\"},onChange:e=>{t(\"filter\",e)},options:f?.filterArr||[]})),u?.trend&&m?.trend&&(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.trend,onChange:e=>{t(\"trend\",e)},options:[{value:\"all\",label:__(\"Popular \u002F Latest\",\"ultimate-post\")},{value:\"popular\",label:__(\"Popular\",\"ultimate-post\")},{value:\"latest\",label:__(\"Latest\",\"ultimate-post\")}]}),u?.freePro&&(0,a.createElement)(l.Z,{useState:h,useEffect:g,useRef:v,value:m?.freePro,onChange:e=>{t(\"freePro\",e)},options:[{value:\"all\",label:__(\"Free \u002F Pro\",\"ultimate-post\")},{value:\"free\",label:__(\"Free\",\"ultimate-post\")},{value:\"pro\",label:__(\"Pro\",\"ultimate-post\")}]})),(0,a.createElement)(\"div\",{className:\"ultp-templatekit-layout-container\"},(0,a.createElement)(o.Z,{changeStates:t,searchQuery:d}),(0,a.createElement)(\"span\",{className:\"ultp-templatekit-iconcol2 \"+(\"2\"==n?\"ultp-lay-active\":\"\"),onClick:()=>t(\"column\",\"2\")},i.Z.grid_col1),(0,a.createElement)(\"span\",{className:\"ultp-templatekit-iconcol3 \"+(\"3\"==n?\"ultp-lay-active\":\"\"),onClick:()=>t(\"column\",\"3\")},i.Z.grid_col2),(0,a.createElement)(\"div\",{className:\"ultp-premade-wishlist-con\"},(0,a.createElement)(\"span\",{className:\"ultp-premade-wishlist cursor \"+(s?\"ultp-wishlist-active\":\"\"),onClick:()=>{t(\"wishlist\",!s)}},r.ZP[s?\"love_solid\":\"love_line\"])),p&&(0,a.createElement)(\"div\",{onClick:()=>p(),className:\"ultp-filter-sync\"},(0,a.createElement)(\"span\",{className:\"dashicons dashicons-update-alt \"+(c?\" rotate\":\"\")}),__(\"Synchronize\",\"ultimate-post\"))))}},58:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294);n(3358);const{__}=wp.i18n,r=()=>(0,a.createElement)(\"input\",{type:\"file\",name:\"attachment\",accept:\"image\u002Fpng, image\u002Fjpeg\",className:\"xpo-input-support\",id:\"xpo-support-file-input\"}),o=()=>{const[e,t]=(0,a.useState)(!1),[n,o]=(0,a.useState)(!1),[i,l]=(0,a.useState)(!1),s=(0,a.useRef)(null),p=(0,a.useRef)(null);return(0,a.useEffect)((()=>{!e&&i&&l(!1)}),[e,i]),(0,a.useEffect)((()=>{const n=new AbortController;if(e)return document.addEventListener(\"mousedown\",(e=>{s.current&&!s.current.contains(e.target)&&(t(!1),l(!1))}),{signal:n.signal}),()=>{n.abort()}}),[e]),(0,a.createElement)(\"div\",{ref:s},(0,a.createElement)(\"span\",{className:\"xpo-support-pops-btn xpo-support-pops-btn--small \"+(e?\"xpo-support-pops-btn--big\":\"\"),onClick:()=>t((e=>!e)),role:\"button\",tabIndex:-1,onKeyDown:e=>{\"Enter\"===e.key&&t((e=>!e))}},(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"28\",height:\"28\",fill:\"none\",viewBox:\"0 0 28 28\"},(0,a.createElement)(\"path\",{fill:\"var(--xpo-support-color-reverse)\",fillRule:\"evenodd\",d:\"M27.3 14c0 7.4-6 13.3-13.3 13.3H.7l3.9-3.9A13.3 13.3 0 0 1 14 .7c7.4 0 13.3 6 13.3 13.3Zm-19 1.7a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Zm7.4-1.7a1.7 1.7 0 1 1-3.4 0 1.7 1.7 0 0 1 3.4 0Zm5.6 0a1.7 1.7 0 1 1-3.3 0 1.7 1.7 0 0 1 3.3 0Z\",clipRule:\"evenodd\"}))),e&&(0,a.createElement)(\"div\",{className:`xpo-support-pops-container ${e?\"xpo-support-entry-anim\":\"\"} ${i?\"\":\"xpo-support-pops-container--full-height\"}`},(0,a.createElement)(\"div\",{className:\"xpo-support-pops-header\"},(0,a.createElement)(\"div\",{style:{maxHeight:i?\"0px\":\"140px\",opacity:i?\"0\":\"1\",transition:\"max-height 0.3s, opacity 0.3s\"}},(0,a.createElement)(\"div\",{className:\"xpo-support-header-bg\"}),(0,a.createElement)(\"div\",{className:\"xpo-support-pops-avatars\"},(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fsupport\u002F1.png\",alt:\"WPXPO\"}),(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fsupport\u002F2.jpg\",alt:\"A. Owadud Bhuiyan\"}),(0,a.createElement)(\"img\",{src:ultp_dashboard_pannel.url+\"assets\u002Fimg\u002Fsupport\u002F3.jpg\",alt:\"Abdullah Al Mahmud\"}),(0,a.createElement)(\"div\",{className:\"xpo-support-signal-green xpo-support-signal\"})),(0,a.createElement)(\"div\",{className:\"xpo-support-pops-text\"},\"Questions? Create an Issue!\"))),(0,a.createElement)(\"div\",{className:\"xpo-support-chat-body\"},(0,a.createElement)(\"div\",{style:{maxHeight:i?\"174px\":\"0px\",opacity:i?\"1\":\"0\",transition:\"max-height 0.3s, opacity 0.3s\"}},i&&(0,a.createElement)(a.Fragment,null,(0,a.createElement)(\"div\",{className:\"xpo-support-thankyou-icon\"},(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 52 52\",className:\"xpo-support-animation\"},(0,a.createElement)(\"circle\",{className:\"xpo-support-circle\",cx:\"26\",cy:\"26\",r:\"25\",fill:\"none\"}),(0,a.createElement)(\"path\",{className:\"xpo-support-check\",fill:\"none\",d:\"M14.1 27.2l7.1 7.2 16.7-16.8\"}))),(0,a.createElement)(\"div\",{className:\"xpo-support-thankyou-title\"},__(\"Thank You!\",\"ultimate-post\")),(0,a.createElement)(\"div\",{className:\"xpo-support-thankyou-subtitle\"},__(\"Your message has been received. We will contact you soon on your email with a response. Stay connected and check mail!\",\"ultimate-post\")))),(0,a.createElement)(\"form\",{ref:p,onSubmit:e=>{if(n)return;e.preventDefault(),o(!0);const t=new FormData(e.target);fetch(\"https:\u002F\u002Fwpxpo.com\u002Fwp-json\u002Fv2\u002Fsupport_mail\",{method:\"POST\",body:t}).then((e=>{if(!e.ok)throw new Error(\"Failed to submit ticket\");l(!0),p.current&&p.current.reset()})).catch((e=>{console.log(e)})).finally((()=>{o(!1)}))},encType:\"multipart\u002Fform-data\",style:{maxHeight:i?\"0px\":\"376px\",opacity:i?\"0\":\"1\",transition:\"max-height 0.3s, opacity 0.3s\"}},(0,a.createElement)(\"input\",{type:\"hidden\",name:\"user_name\",defaultValue:ultp_dashboard_pannel.userInfo.name}),(0,a.createElement)(\"input\",{type:\"email\",name:\"user_email\",className:\"xpo-input-support\",defaultValue:ultp_dashboard_pannel.userInfo.email,required:!0}),(0,a.createElement)(\"input\",{type:\"hidden\",name:\"subject\",value:\"Support from PostX\"}),(0,a.createElement)(\"div\",{className:\"xpo-support-title\"},__(\"Message\",\"ultimate-post\")),(0,a.createElement)(\"textarea\",{name:\"desc\",className:\"xpo-input-support\",placeholder:\"Write your message here...\"}),(0,a.createElement)(r,null),(0,a.createElement)(\"button\",{type:\"submit\",className:\"xpo-send-button\",disabled:n},n?(0,a.createElement)(a.Fragment,null,\"Sending\",(0,a.createElement)(\"div\",{className:\"xpo-support-loading\"})):(0,a.createElement)(a.Fragment,null,\"Send\",(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"21\",height:\"20\",fill:\"none\",viewBox:\"0 0 21 20\"},(0,a.createElement)(\"path\",{fill:\"var(--xpo-support-color-reverse)\",d:\"M18.4 10c0-.6-.3-1.1-.8-1.4L5 2c-.6-.3-1.2-.3-1.7 0-.6.4-.9 1.3-.7 1.9l1.2 4.8c0 .5.5.8 1 .8h7c.3 0 .6.3.6.6 0 .4-.3.6-.6.6h-7c-.5 0-1 .4-1 .9l-1.3 4.8c-.1.6 0 1.1.5 1.5l.1.2c.5.4 1.2.4 1.8.1l12.5-6.6c.6-.3 1-.9 1-1.5Z\"}))))))))}},1389:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(6509);const r=e=>{const{title:t,modalContent:n,setModalContent:r}=e;return(0,a.createElement)(\"div\",{className:\"ultp-dashboard-modal-wrapper\",onClick:e=>{e.target?.closest(\".ultp-dashboard-modal\")||r(\"\")}},(0,a.createElement)(\"div\",{className:\"ultp-dashboard-modal\"},(0,a.createElement)(\"div\",{className:\"ultp-modal-header\"},t&&(0,a.createElement)(\"span\",{className:\"ultp-modal-title\"},t),(0,a.createElement)(\"a\",{className:\"ultp-popup-close\",onClick:()=>r(\"\")})),(0,a.createElement)(\"div\",{className:\"ultp-modal-body\"},n)))}},8949:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(619);const r=e=>{const{type:t,size:n,loop:r,unit:o,c_s:i,classes:l}=e,s=()=>{let e={};switch(t){case\"image\":case\"circle\":e={width:n?n+\"px\":\"300px\",height:n?n+\"px\":\"300px\"};break;case\"title\":e={width:`${n||\"100\"}${o||\"%\"}`};break;case\"button\":e={width:n?n+\"px\":\"90px\"};break;case\"custom_size\":e={width:`${i.size1?i.size1:\"100\"}${i.unit1?i.unit1:\"%\"}`,height:`${i.size2?i.size2:\"20\"}${i.unit2?i.unit2:\"px\"}`,borderRadius:i.br?i.br+\"px\":\"0px\"}}return e};return(0,a.createElement)(a.Fragment,null,r?(0,a.createElement)(a.Fragment,null,Array(parseInt(r)).fill(\"1\").map(((e,n)=>(0,a.createElement)(\"div\",{key:n,className:`ultp_skeleton__${t} ultp_frequency loop ${l||\"\"}`,style:s()})))):(0,a.createElement)(\"div\",{className:`ultp_skeleton__${t} ultp_frequency ${l||\"\"}`,style:s()}))}},356:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(2413);const{__}=wp.i18n,r=({delay:e,toastMessages:t,setToastMessages:n})=>{const[r,o]=(0,a.useState)(!0),[i,l]=(0,a.useState)(\"show\");return(0,a.useEffect)((()=>{const t=setTimeout((()=>{o(!1),l(\"\"),n({state:!1,status:\"\"})}),e);return()=>clearTimeout(t)}),[e]),(0,a.createElement)(\"div\",{className:\"toast\"},r&&t.status&&t.messages.length>0&&(0,a.createElement)(\"div\",{className:\"toastMessages\"},t.messages.map(((e,r)=>(0,a.createElement)(\"span\",{key:`toast_${Date.now().toString()}_${r}`},(0,a.createElement)(\"div\",{className:`toaster ${i}`},(0,a.createElement)(\"span\",null,\"error\"==t.status?(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 52 52\",className:\"animation\",stroke:\"currentColor\"},(0,a.createElement)(\"circle\",{cx:\"26\",cy:\"26\",r:\"25\",fill:\"none\",className:\"circle cross\"}),(0,a.createElement)(\"path\",{fill:\"none\",d:\"M 12,12 L 40,40 M 40,12 L 12,40\",className:\"check\"})):(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 52 52\",className:\"animation\",stroke:\"currentColor\"},(0,a.createElement)(\"circle\",{className:\"circle\",cx:\"26\",cy:\"26\",r:\"25\",fill:\"none\"}),(0,a.createElement)(\"path\",{className:\"check\",fill:\"none\",d:\"M14.1 27.2l7.1 7.2 16.7-16.8\"}))),(0,a.createElement)(\"span\",{className:\"itmCenter\"},e),(0,a.createElement)(\"span\",{className:\"itmLast\",onClick:()=>(e=>{let a=[...t.messages];a=a.filter(((t,n)=>n!==e)),n({...t,messages:a})})(r)},__(\"Close\",\"ultimate-post\"))))))))}},448:(e,t,n)=>{\"use strict\";n.d(t,{AJ:()=>o,cC:()=>l,x2:()=>r});var a=n(2030);const{__}=wp.i18n,r=(e,t,n,a)=>{wp.apiFetch({path:\"\u002Fultp\u002Fv1\u002Fpostx_presets\",method:\"POST\",data:{type:e,key:t,data:n}}).then((r=>{r.success&&(\"set\"==e&&i(t,n),a&&a(r))}))},o=(e,t=\"\",n=!1)=>{if(\"typoStacks\"==e)return[[{type:\"sans-serif\",weight:500,family:\"Roboto\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"serif\",weight:600,family:\"Roboto Slab\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"sans-serif\",weight:600,family:\"Jost\"},{type:\"sans-serif\",weight:400,family:\"Jost\"}],[{type:\"display\",weight:500,family:\"Roboto\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"serif\",weight:700,family:\"Arvo\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"sans-serif\",weight:500,family:\"Roboto\"},{type:\"sans-serif\",weight:400,family:\"Roboto\"}],[{type:\"sans-serif\",weight:700,family:\"Merriweather\"},{type:\"sans-serif\",weight:400,family:\"Merriweather\"}],[{type:\"sans-serifs\",weight:500,family:\"Oswald\"},{type:\"sans-serif\",weight:400,family:\"Source Sans Pro\"}],[{type:\"display\",weight:400,family:\"Abril Fatface\"},{type:\"sans-serif\",weight:400,family:\"Poppins\"}],[{type:\"serif\",weight:700,family:\"Cardo\"},{type:\"sans-serif\",weight:400,family:\"Inter\"}]];if(\"multipleTypos\"==e)return{Body_and_Others_typo:[\"body_typo\",\"paragraph_1_typo\",\"paragraph_2_typo\",\"paragraph_3_typo\"],Heading_typo:[\"heading_h1_typo\",\"heading_h2_typo\",\"heading_h3_typo\",\"heading_h4_typo\",\"heading_h5_typo\",\"heading_h6_typo\"]};if(\"presetTypoKeys\"==e)return[\"Heading_typo\",\"Body_and_Others_typo\"];if(\"colorStacks\"==e)return[[\"#f4f4ff\",\"#dddff8\",\"#B4B4D6\",\"#3323f0\",\"#4a5fff\",\"#1B1B47\",\"#545472\",\"#262657\",\"#10102e\"],[\"#ffffff\",\"#f7f4ed\",\"#D6D1B4\",\"#fab42a\",\"#f4cd4e\",\"#3B3118\",\"#6F6C53\",\"#483d1f\",\"#29230f\"],[\"#ffffff\",\"#eaf7ea\",\"#C2DBBF\",\"#3b9138\",\"#54a757\",\"#1E381A\",\"#586E56\",\"#23411f\",\"#162c11\"],[\"#fdf7ff\",\"#eadef5\",\"#C1B4D6\",\"#8749d0\",\"#995ede\",\"#301B42\",\"#635472\",\"#38204e\",\"#231133\"],[\"#fffcfc\",\"#fce5ec\",\"#D6B4BC\",\"#f01f50\",\"#ff5878\",\"#431B23\",\"#72545B\",\"#4d2029\",\"#36141b\"],[\"#ffffff\",\"#ecf3f8\",\"#B4C2D6\",\"#2890e8\",\"#6cb0f4\",\"#1D3347\",\"#4B586C\",\"#2c4358\",\"#10202b\"],[\"#f8f3ed\",\"#f2e2d0\",\"#D6C4B4\",\"#dd8336\",\"#f09f4d\",\"#3D2A1D\",\"#6E5F52\",\"#483324\",\"#2e1e11\"],[\"#ffffff\",\"#faf0f4\",\"#D6B4CF\",\"#d948a2\",\"#e56ab5\",\"#401B2E\",\"#725468\",\"#4e2239\",\"#290e1d\"],[\"#f2f7ea\",\"#e1e6c4\",\"#D2DBBF\",\"#829d46\",\"#a1c36b\",\"#30371A\",\"#5F6551\",\"#38401f\",\"#242e10\"],[\"#ffffff\",\"#e9f7f3\",\"#B5D1C7\",\"#3cbe8b\",\"#59d5a5\",\"#1C3D3F\",\"#46675E\",\"#20484b\",\"#153234\"]];if(\"presetColorKeys\"==e)return[\"Base_1_color\",\"Base_2_color\",\"Base_3_color\",\"Primary_color\",\"Secondary_color\",\"Tertiary_color\",\"Contrast_3_color\",\"Contrast_2_color\",\"Contrast_1_color\"];if(\"presetGradientKeys\"==e)return[\"Cold_Evening_gradient\",\"Purple_Division_gradient\",\"Over_Sun_gradient\",\"Morning_Salad_gradient\",\"Fabled_Sunset_gradient\"];if(\"styleCss\"==e){let e=\":root { \";return Object.keys(t).forEach(((a,r)=>{if(![\"rootCSS\",\"globalColorCSS\"].includes(a)){const r=a,o=t[a]?.hasOwnProperty(\"openColor\")?\"color\"==t[a].type?t[a].color:t[a].gradient:t[a]||n||\"\";e+=`--postx_preset_${r}: ${o}; `}})),e+=\" }\",e}if(\"typoCSS\"==e){const e=o(\"multipleTypos\");let r=\"\",i=\":root { \";const l=[\"Arial\",\"Tahoma\",\"Verdana\",\"Helvetica\",\"Times New Roman\",\"Trebuchet MS\",\"Georgia\"];return Object.keys(t).forEach(((o,s)=>{const p=t[o],c=!![...e.Body_and_Others_typo,...e.Heading_typo].includes(o);if(![\"rootCSS\",\"presetTypoCSS\"].includes(o)&&\"object\"==typeof p&&Object.keys(p).length){const e=!l.includes(p.family),t=n?ultp_dashboard_pannel:ultp_data;!((!t?.settings?.hasOwnProperty(\"disable_google_font\")||\"yes\"==t?.settings.disable_google_font)&&t?.settings?.hasOwnProperty(\"disable_google_font\"))&&e&&p.family&&!p.family.includes(\"--postx_preset\")&&!r.includes(p.family.replace(\" \",\"+\")+\":\")&&void 0!==a.Z&&(r+=\"@import url('https:\u002F\u002Ffonts.googleapis.com\u002Fcss?family=\"+p.family.replace(\" \",\"+\")+\":\"+(a.Z?.filter((e=>e.n==p.family))[0]?.v||[]).join(\",\")+\"'); \"),c||(i+=p.family?`--postx_preset_${o}_font_family: ${p.family}; `:\"\",i+=p.family?`--postx_preset_${o}_font_family_type: ${p.type||\"sans-serif\"}; `:\"\",i+=p.weight?`--postx_preset_${o}_font_weight: ${p.weight}; `:\"\",i+=p.style?`--postx_preset_${o}_font_style: ${p.style}; `:\"\",i+=p.decoration?`--postx_preset_${o}_text_decoration: ${p.decoration}; `:\"\",i+=p.transform?`--postx_preset_${o}_text_transform: ${p.transform}; `:\"\",i+=p.spacing?.lg?`--postx_preset_${o}_letter_spacing_lg: ${p.spacing.lg}${p.spacing.ulg||\"px\"}; `:\"\",i+=p.spacing?.sm?`--postx_preset_${o}_letter_spacing_sm: ${p.spacing.sm}${p.spacing.usm||\"px\"}; `:\"\",i+=p.spacing?.xs?`--postx_preset_${o}_letter_spacing_xs: ${p.spacing.xs}${p.spacing.uxs||\"px\"}; `:\"\"),i+=p.size?.lg?`--postx_preset_${o}_font_size_lg: ${p.size.lg}${p.size.ulg||\"px\"}; `:\"\",i+=p.size?.sm?`--postx_preset_${o}_font_size_sm: ${p.size.sm}${p.size.usm||\"px\"}; `:\"\",i+=p.size?.xs?`--postx_preset_${o}_font_size_xs: ${p.size.xs}${p.size.uxs||\"px\"}; `:\"\",i+=p.height?.lg?`--postx_preset_${o}_line_height_lg: ${p.height.lg}${p.height.ulg||\"px\"}; `:\"\",i+=p.height?.sm?`--postx_preset_${o}_line_height_sm: ${p.height.sm}${p.height.usm||\"px\"}; `:\"\",i+=p.height?.xs?`--postx_preset_${o}_line_height_xs: ${p.height.xs}${p.height.uxs||\"px\"}; `:\"\"}})),i+=\"}\",r+i}if(\"font_load\"==e){let e=\"\";const a=[\"Arial\",\"Tahoma\",\"Verdana\",\"Helvetica\",\"Times New Roman\",\"Trebuchet MS\",\"Georgia\"],r=n?ultp_dashboard_pannel:ultp_data,o=!((!r.settings?.hasOwnProperty(\"disable_google_font\")||\"yes\"==r.settings.disable_google_font)&&r.settings?.hasOwnProperty(\"disable_google_font\"));if(\"object\"==typeof t&&Object.keys(t).length){const n=!a.includes(t.family);o&&n&&t.family&&(e+=\"@import url('https:\u002F\u002Ffonts.googleapis.com\u002Fcss?family=\"+t.family.replace(\" \",\"+\")+\":\"+t.weight+\"'); \")}return e}if(\"font_load_all\"==e){const e=[\"Roboto\",\"Roboto Slab\",\"Jost\",\"Arvo\",\"Merriweather\",\"Oswald\",\"Abril Fatface\",\"Cardo\",\"Source Sans Pro\",\"Poppins\",\"Inter\"],t=[\"400,500\",\"600\",\"400,600\",\"700\",\"400,700\",\"500\",\"400\",\"700\",\"400\",\"400\",\"400\"];let a=\"\";const r=[\"Arial\",\"Tahoma\",\"Verdana\",\"Helvetica\",\"Times New Roman\",\"Trebuchet MS\",\"Georgia\"],o=n?ultp_dashboard_pannel:ultp_data,i=!((!o.settings?.hasOwnProperty(\"disable_google_font\")||\"yes\"==o.settings.disable_google_font)&&o.settings?.hasOwnProperty(\"disable_google_font\"));return e.forEach(((e,n)=>{const o=!r.includes(e);i&&o&&e&&(a+=\"@import url('https:\u002F\u002Ffonts.googleapis.com\u002Fcss?family=\"+e.replace(\" \",\"+\")+\":\"+t[n]+\"'); \")})),a}if(\"bgCSS\"==e){let e={};const n=\"object\"==typeof t?{...t}:{};if(\"color\"==n.type)e.backgroundColor=n.color;else if(\"gradient\"==n.type&&n.gradient){let t=n.gradient;\"object\"==typeof n.gradient&&(t=\"linear\"==n.gradient.type?\"linear-gradient(\"+n.gradient.direction+\"deg, \"+n.gradient.color1+\" \"+n.gradient.start+\"%,\"+n.gradient.color2+\" \"+n.gradient.stop+\"%);\":\"radial-gradient( circle at \"+n.gradient.radial+\" , \"+n.gradient.color1+\" \"+n.gradient.start+\"%,\"+n.gradient.color2+\" \"+n.gradient.stop+\"%);\"),e.backgroundImage=t}else if(\"image\"==n.type){var r;(n.fallbackColor||n.color)&&(e.backgroundColor=null!==(r=n.fallbackColor)&&void 0!==r?r:n.color),n.image&&(e.backgroundImage='url(\"'+n.image+'\")',n.position&&(e.backgroundPositionX=100*n.position.x+\"%\",e.backgroundPositionY=100*n.position.y+\"%\"),n.attachment&&(e.backgroundAttachments=n.attachment),n.repeat&&(e.backgroundRepeat=n.repeat),n.size&&(e.backgroundSize=n.size))}else\"video\"==n.type&&n.fallback&&(e.backgroundImage='url(\"'+n.fallback+'\")',e.backgroundSize=\"cover\",e.backgroundPosition=\"50% 50%\");return e}if(\"globalCSS\"==e){let e=`:root {\\n            --preset-color1: ${t.presetColor1||\"#037fff\"}\\n            --preset-color2: ${t.presetColor2||\"#026fe0\"}\\n            --preset-color3: ${t.presetColor3||\"#071323\"}\\n            --preset-color4: ${t.presetColor4||\"#132133\"}\\n            --preset-color5: ${t.presetColor5||\"#34495e\"}\\n            --preset-color6: ${t.presetColor6||\"#787676\"}\\n            --preset-color7: ${t.presetColor7||\"#f0f2f3\"}\\n            --preset-color8: ${t.presetColor8||\"#f8f9fa\"}\\n            --preset-color9: ${t.presetColor9||\"#ffffff\"}\\n        }`;return t.enablePresetColorCSS&&(e+=\"\\n            html body.postx-admin-page .editor-styles-wrapper,\\n            html body.postx-admin-page .editor-styles-wrapper p,\\n            html body.postx-page,\\n            html body.postx-page p,\\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\\n            { \\n                color: var(--postx_preset_Contrast_2_color); \\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\\n            {\\n                color: var(--postx_preset_Contrast_1_color);\\n            }\\n            html.colibri-wp-theme body.postx-page h1,\\n            html.colibri-wp-theme body.postx-page h2,\\n            html.colibri-wp-theme body.postx-page h3,\\n            html.colibri-wp-theme body.postx-page h4,\\n            html.colibri-wp-theme body.postx-page h5,\\n            html.colibri-wp-theme body.postx-page h6 \\n            {\\n                color: var(--postx_preset_Contrast_1_color);\\n            }\\n\\n            body.block-editor-iframe__body h1,\\n            body.block-editor-iframe__body h2,\\n            body.block-editor-iframe__body h3,\\n            body.block-editor-iframe__body h4,\\n            body.block-editor-iframe__body h5,\\n            body.block-editor-iframe__body h6\\n            { \\n                color: var(--postx_preset_Contrast_1_color);\\n            }\\n            \",t.gbbodyBackground.openColor&&(e+=`\\n                    html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\\n                    html body.postx-admin-page.block-editor-page.post-content-style-boxed .editor-styles-wrapper::before,\\n                    html.colibri-wp-theme body.postx-page,\\n                    body.block-editor-iframe__body\\n                    { ${(e=>{let t=e.clip?\"-webkit-background-clip: text; -webkit-text-fill-color: transparent;\":\"\";if(\"color\"==e.type)t+=e.color?\"background-color: \"+e.color+\";\":\"\";else if(\"gradient\"==e.type&&e.gradient)\"object\"==typeof e.gradient?\"linear\"==e.gradient.type?t+=\"background-image : linear-gradient(\"+e.gradient.direction+\"deg, \"+e.gradient.color1+\" \"+e.gradient.start+\"%,\"+e.gradient.color2+\" \"+e.gradient.stop+\"%);\":t+=\"background-image : radial-gradient( circle at \"+e.gradient.radial+\" , \"+e.gradient.color1+\" \"+e.gradient.start+\"%,\"+e.gradient.color2+\" \"+e.gradient.stop+\"%);\":t+=\"background-image:\"+e.gradient+\";\";else if(\"image\"==e.type){var n;(e.fallbackColor||e.color)&&(t+=\"background-color:\"+(null!==(n=e.fallbackColor)&&void 0!==n?n:e.color)+\";\"),e.image&&(t+='background-image: url(\"'+e.image+'\");'+(e.position?\"background-position-x:\"+100*e.position.x+\"%;background-position-y:\"+100*e.position.y+\"%;\":\"\")+(e.attachment?\"background-attachment:\"+e.attachment+\";\":\"\")+(e.repeat?\"background-repeat:\"+e.repeat+\";\":\"\")+(e.size?\"background-size:\"+e.size+\";\":\"\"))}return t})(t.gbbodyBackground)} }\\n                `)),t.enablePresetTypoCSS&&(e+=`\\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\\n            { \\n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \\n                font-weight: var(--postx_preset_Heading_typo_font_weight);\\n                font-style: var(--postx_preset_Heading_typo_font_style);\\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\\n            }\\n            html.colibri-wp-theme body.postx-page h1,\\n            html.colibri-wp-theme body.postx-page h2,\\n            html.colibri-wp-theme body.postx-page h3,\\n            html.colibri-wp-theme body.postx-page h4,\\n            html.colibri-wp-theme body.postx-page h5,\\n            html.colibri-wp-theme body.postx-page h6\\n            { \\n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \\n                font-weight: var(--postx_preset_Heading_typo_font_weight);\\n                font-style: var(--postx_preset_Heading_typo_font_style);\\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\\n            }\\n            body.block-editor-iframe__body h1,\\n            body.block-editor-iframe__body h2,\\n            body.block-editor-iframe__body h3,\\n            body.block-editor-iframe__body h4,\\n            body.block-editor-iframe__body h5,\\n            body.block-editor-iframe__body h6\\n            { \\n                font-family: var(--postx_preset_Heading_typo_font_family),var(--postx_preset_Heading_typo_font_family_type); \\n                font-weight: var(--postx_preset_Heading_typo_font_weight);\\n                font-style: var(--postx_preset_Heading_typo_font_style);\\n                text-transform: var(--postx_preset_Heading_typo_text_transform);\\n                text-decoration: var(--postx_preset_Heading_typo_text_decoration);\\n                letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_lg, normal);\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n            html.colibri-wp-theme body.postx-page h1,\\n            body.block-editor-iframe__body h1\\n            { \\n                font-size: var(--postx_preset_heading_h1_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h1_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n            html.colibri-wp-theme body.postx-page h2,\\n            body.block-editor-iframe__body h2\\n            { \\n                font-size: var(--postx_preset_heading_h2_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h2_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n            html.colibri-wp-theme body.postx-page h3,\\n            body.block-editor-iframe__body h3\\n            { \\n                font-size: var(--postx_preset_heading_h3_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h3_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n            html.colibri-wp-theme body.postx-page h4,\\n            body.block-editor-iframe__body h4\\n            { \\n                font-size: var(--postx_preset_heading_h4_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h4_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n            html.colibri-wp-theme body.postx-page h5,\\n            body.block-editor-iframe__body h5\\n            { \\n                font-size: var(--postx_preset_heading_h5_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h5_typo_line_height_lg, normal) !important;\\n            }\\n            html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\\n            html.colibri-wp-theme body.postx-page h6,\\n            body.block-editor-iframe__body h6\\n            { \\n                font-size: var(--postx_preset_heading_h6_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_heading_h6_typo_line_height_lg, normal) !important;\\n            }\\n\\n            @media (max-width: ${t.breakpointSm||991}px) {\\n                html body.postx-admin-page .editor-styles-wrapper h1 , html body.postx-page h1,\\n                html body.postx-admin-page .editor-styles-wrapper h2 , html body.postx-page h2,\\n                html body.postx-admin-page .editor-styles-wrapper h3 , html body.postx-page h3,\\n                html body.postx-admin-page .editor-styles-wrapper h4 , html body.postx-page h4,\\n                html body.postx-admin-page .editor-styles-wrapper h5 , html body.postx-page h5,\\n                html body.postx-admin-page .editor-styles-wrapper h6 , html body.postx-page h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\\n                }\\n                html.colibri-wp-theme body.postx-page h1,\\n                html.colibri-wp-theme body.postx-page h2,\\n                html.colibri-wp-theme body.postx-page h3,\\n                html.colibri-wp-theme body.postx-page h4,\\n                html.colibri-wp-theme body.postx-page h5,\\n                html.colibri-wp-theme body.postx-page h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\\n                }\\n                body.block-editor-iframe__body h1,\\n                body.block-editor-iframe__body h2,\\n                body.block-editor-iframe__body h3,\\n                body.block-editor-iframe__body h4,\\n                body.block-editor-iframe__body h5,\\n                body.block-editor-iframe__body h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_sm, normal);\\n                }\\n\\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n                html.colibri-wp-theme body.postx-page h1,\\n                body.block-editor-iframe__body h1\\n                {\\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n                html.colibri-wp-theme body.postx-page h2,\\n                body.block-editor-iframe__body h2\\n                {\\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n                html.colibri-wp-theme body.postx-page h3,\\n                body.block-editor-iframe__body h3\\n                {\\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n                html.colibri-wp-theme body.postx-page h4,\\n                body.block-editor-iframe__body h4\\n                {\\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n                html.colibri-wp-theme body.postx-page h5,\\n                body.block-editor-iframe__body h5\\n                {\\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_sm, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\\n                html.colibri-wp-theme body.postx-page h6,\\n                body.block-editor-iframe__body h6\\n                {\\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_sm, normal) !important;\\n                }\\n            }\\n\\n            @media (max-width: ${t.breakpointXs||767}px) {\\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\\n                }\\n                html.colibri-wp-theme body.postx-page h1,\\n                html.colibri-wp-theme body.postx-page h2,\\n                html.colibri-wp-theme body.postx-page h3,\\n                html.colibri-wp-theme body.postx-page h4,\\n                html.colibri-wp-theme body.postx-page h5,\\n                html.colibri-wp-theme body.postx-page h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\\n                }\\n                body.block-editor-iframe__body h1,\\n                body.block-editor-iframe__body h2,\\n                body.block-editor-iframe__body h3,\\n                body.block-editor-iframe__body h4,\\n                body.block-editor-iframe__body h5,\\n                body.block-editor-iframe__body h6\\n                {\\n                    letter-spacing: var(--postx_preset_Heading_typo_letter_spacing_xs, normal);\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h1, html body.postx-page h1,\\n                html.colibri-wp-theme body.postx-page h1,\\n                body.block-editor-iframe__body h1\\n                {\\n                    font-size: var(--postx_preset_heading_h1_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h1_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h2, html body.postx-page h2,\\n                html.colibri-wp-theme body.postx-page h2,\\n                body.block-editor-iframe__body h2\\n                {\\n                    font-size: var(--postx_preset_heading_h2_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h2_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h3, html body.postx-page h3,\\n                html.colibri-wp-theme body.postx-page h3,\\n                body.block-editor-iframe__body h3\\n                {\\n                    font-size: var(--postx_preset_heading_h3_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h3_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h4, html body.postx-page h4,\\n                html.colibri-wp-theme body.postx-page h4,\\n                body.block-editor-iframe__body h4\\n                {\\n                    font-size: var(--postx_preset_heading_h4_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h4_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h5, html body.postx-page h5,\\n                html.colibri-wp-theme body.postx-page h5,\\n                body.block-editor-iframe__body h5\\n                {\\n                    font-size: var(--postx_preset_heading_h5_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h5_typo_line_height_xs, normal) !important;\\n                }\\n                html body.postx-admin-page .editor-styles-wrapper h6, html body.postx-page h6,\\n                html.colibri-wp-theme body.postx-page h6,\\n                body.block-editor-iframe__body h6\\n                {\\n                    font-size: var(--postx_preset_heading_h6_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_heading_h6_typo_line_height_xs, normal) !important;\\n                }\\n            }\\n            `),t.enablePresetTypoCSS&&(e+=`\\n            html body.postx-admin-page .editor-styles-wrapper, html body.postx-page,\\n            html body.postx-admin-page .editor-styles-wrapper p, html body.postx-page p,\\n            html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\\n            body.block-editor-iframe__body, body.block-editor-iframe__body p\\n            { \\n                font-family: var(--postx_preset_Body_and_Others_typo_font_family),var(--postx_preset_Body_and_Others_typo_font_family_type); \\n                font-weight: var(--postx_preset_Body_and_Others_typo_font_weight);\\n                font-style: var(--postx_preset_Body_and_Others_typo_font_style);\\n                text-transform: var(--postx_preset_Body_and_Others_typo_text_transform);\\n                text-decoration: var(--postx_preset_Body_and_Others_typo_text_decoration);\\n                letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_lg, normal);\\n                font-size: var(--postx_preset_body_typo_font_size_lg, initial);\\n                line-height: var(--postx_preset_body_typo_line_height_lg, normal) !important;\\n            }\\n            @media (max-width: ${t.breakpointSm||991}px) {\\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\\n                {\\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_sm, normal);\\n                    font-size: var(--postx_preset_body_typo_font_size_sm, initial);\\n                    line-height: var(--postx_preset_body_typo_line_height_sm, normal) !important;\\n                }\\n            }\\n            @media (max-width: ${t.breakpointXs||767}px) {\\n                .postx-admin-page .editor-styles-wrapper, .postx-page,\\n                .postx-admin-page .editor-styles-wrapper p, .postx-page p,\\n                html.colibri-wp-theme body.postx-page, html.colibri-wp-theme body.postx-page p,\\n                body.block-editor-iframe__body, body.block-editor-iframe__body p\\n                {\\n                    letter-spacing: var(--postx_preset_Body_and_Others_typo_letter_spacing_xs, normal);\\n                    font-size: var(--postx_preset_body_typo_font_size_xs, initial);\\n                    line-height: var(--postx_preset_body_typo_line_height_xs, normal) !important;\\n                }\\n            }\\n            `),e}},i=(e,t)=>{localStorage.setItem(e,JSON.stringify(t))},l=(e,t={})=>{try{return JSON.parse(e)}catch(e){return t}}},2402:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(4201);const r=({searchQuery:e,setSearchQuery:t,setTemplateModule:n,changeStates:r})=>(0,a.createElement)(\"div\",{className:\"ultp-design-search-wrapper\"},(0,a.createElement)(\"input\",{type:\"search\",id:\"ultp-design-search-form\",className:\"ultp-design-search-input\",placeholder:\"Search for...\",value:e,onChange:e=>{t&&t(e.target.value),n&&n(\"\"),r&&r(\"search\",e.target.value)}}))},3100:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(2044);const r=(e,t,n,r)=>(0,a.Z)({url:e||null,utmKey:t||null,affiliate:n||null,hash:r||null})},4190:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});var a=n(7294);n(2158);const r=e=>{let t;const[n,r]=(0,a.useState)(!1);return(0,a.createElement)(\"div\",{className:`ultp-tooltip-wrapper ${e.extraClass}`,onMouseEnter:()=>{t=setTimeout((()=>{r(!0)}),e.delay||400)},onMouseLeave:()=>{clearInterval(t),r(!1)}},e.children,n&&(0,a.createElement)(\"div\",{className:`tooltip-content ${e.direction||\"top\"}`},e.content))}},2030:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>a});const a=[{n:\"ABeeZee\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Abel\",v:[400],f:\"sans-serif\"},{n:\"Abhaya Libre\",v:[400,500,600,700,800],f:\"serif\"},{n:\"Abril Fatface\",v:[400],f:\"display\"},{n:\"Abyssinica SIL\",v:[400],f:\"serif\"},{n:\"Aclonica\",v:[400],f:\"sans-serif\"},{n:\"Acme\",v:[400],f:\"sans-serif\"},{n:\"Actor\",v:[400],f:\"sans-serif\"},{n:\"Adamina\",v:[400],f:\"serif\"},{n:\"Advent Pro\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Aguafina Script\",v:[400],f:\"handwriting\"},{n:\"Akaya Kanadaka\",v:[400],f:\"display\"},{n:\"Akaya Telivigala\",v:[400],f:\"display\"},{n:\"Akronim\",v:[400],f:\"display\"},{n:\"Akshar\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Aladin\",v:[400],f:\"handwriting\"},{n:\"Alata\",v:[400],f:\"sans-serif\"},{n:\"Alatsi\",v:[400],f:\"sans-serif\"},{n:\"Albert Sans\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Aldrich\",v:[400],f:\"sans-serif\"},{n:\"Alef\",v:[400,700],f:\"sans-serif\"},{n:\"Alexandria\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Alegreya\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Alegreya SC\",v:[400,\"400i\",500,\"500i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"serif\"},{n:\"Alegreya Sans\",v:[\"100\",\"100i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Alegreya Sans SC\",v:[\"100\",\"100i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Aleo\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Alex Brush\",v:[400],f:\"handwriting\"},{n:\"Alfa Slab One\",v:[400],f:\"display\"},{n:\"Alice\",v:[400],f:\"serif\"},{n:\"Alike\",v:[400],f:\"serif\"},{n:\"Alike Angular\",v:[400],f:\"serif\"},{n:\"Allan\",v:[400,700],f:\"display\"},{n:\"Allerta\",v:[400],f:\"sans-serif\"},{n:\"Allerta Stencil\",v:[400],f:\"sans-serif\"},{n:\"Allison\",v:[400],f:\"handwriting\"},{n:\"Allura\",v:[400],f:\"handwriting\"},{n:\"Almarai\",v:[\"300\",400,700,800],f:\"sans-serif\"},{n:\"Almendra\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Almendra Display\",v:[400],f:\"display\"},{n:\"Almendra SC\",v:[400],f:\"serif\"},{n:\"Alumni Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Alumni Sans Inline One\",v:[400,\"400i\"],f:\"display\"},{n:\"Amarante\",v:[400],f:\"display\"},{n:\"Amaranth\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Amatic SC\",v:[400,700],f:\"handwriting\"},{n:\"Amethysta\",v:[400],f:\"serif\"},{n:\"Amiko\",v:[400,600,700],f:\"sans-serif\"},{n:\"Amiri\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Amita\",v:[400,700],f:\"handwriting\"},{n:\"Anaheim\",v:[400],f:\"sans-serif\"},{n:\"Andada Pro\",v:[400,500,600,700,800,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Andika\",v:[400],f:\"sans-serif\"},{n:\"Anek Bangla\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Devanagari\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Gujarati\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Gurmukhi\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Kannada\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Latin\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Malayalam\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Odia\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Tamil\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Anek Telugu\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Angkor\",v:[400],f:\"display\"},{n:\"Annie Use Your Telescope\",v:[400],f:\"handwriting\"},{n:\"Anonymous Pro\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Antic\",v:[400],f:\"sans-serif\"},{n:\"Antic Didone\",v:[400],f:\"serif\"},{n:\"Antic Slab\",v:[400],f:\"serif\"},{n:\"Anton\",v:[400],f:\"sans-serif\"},{n:\"Antonio\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Anybody\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"display\"},{n:\"Arapey\",v:[400,\"400i\"],f:\"serif\"},{n:\"Arbutus\",v:[400],f:\"display\"},{n:\"Arbutus Slab\",v:[400],f:\"serif\"},{n:\"Architects Daughter\",v:[400],f:\"handwriting\"},{n:\"Archivo\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Archivo Black\",v:[400],f:\"sans-serif\"},{n:\"Archivo Narrow\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Are You Serious\",v:[400],f:\"handwriting\"},{n:\"Aref Ruqaa\",v:[400,700],f:\"serif\"},{n:\"Arimo\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Arizonia\",v:[400],f:\"handwriting\"},{n:\"Armata\",v:[400],f:\"sans-serif\"},{n:\"Arsenal\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Artifika\",v:[400],f:\"serif\"},{n:\"Arvo\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Arya\",v:[400,700],f:\"sans-serif\"},{n:\"Asap\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Asap Condensed\",v:[200,\"200i\",300,\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Asar\",v:[400],f:\"serif\"},{n:\"Asset\",v:[400],f:\"display\"},{n:\"Assistant\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Astloch\",v:[400,700],f:\"display\"},{n:\"Asul\",v:[400,700],f:\"sans-serif\"},{n:\"Athiti\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Atkinson Hyperlegible\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Atma\",v:[\"300\",400,500,600,700],f:\"display\"},{n:\"Atomic Age\",v:[400],f:\"display\"},{n:\"Aubrey\",v:[400],f:\"display\"},{n:\"Audiowide\",v:[400],f:\"display\"},{n:\"Autour One\",v:[400],f:\"display\"},{n:\"Average\",v:[400],f:\"serif\"},{n:\"Average Sans\",v:[400],f:\"sans-serif\"},{n:\"Averia Gruesa Libre\",v:[400],f:\"display\"},{n:\"Averia Libre\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Averia Sans Libre\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Averia Serif Libre\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Azeret Mono\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"monospace\"},{n:\"Aboreto\",v:[400],f:\"display\"},{n:\"Abyssinica SIL\",v:[400],f:\"serif\"},{n:\"Albert Sans\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Alexandria\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Alkalami\",v:[400],f:\"serif\"},{n:\"Alkatra\",v:[400,500,600,700],f:\"display\"},{n:\"Alumni Sans Collegiate One\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Alumni Sans Pinstripe\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Amiri Quran\",v:[400],f:\"serif\"},{n:\"Anuphan\",v:[100,200,300,400,500,600,700],f:\"sans-serif\"},{n:\"Aoboshi One\",v:[400],f:\"serif\"},{n:\"Aref Ruqaa Ink\",v:[400,700],f:\"serif\"},{n:\"Arima\",v:[100,200,300,400,500,600,700],f:\"display\"},{n:\"B612\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"B612 Mono\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"BIZ UDGothic\",v:[400,700],f:\"sans-serif\"},{n:\"BIZ UDMincho\",v:[400,700],f:\"serif\"},{n:\"BIZ UDPGothic\",v:[400,700],f:\"sans-serif\"},{n:\"BIZ UDPMincho\",v:[400,700],f:\"serif\"},{n:\"Babylonica\",v:[400],f:\"handwriting\"},{n:\"Bad Script\",v:[400],f:\"handwriting\"},{n:\"Bahiana\",v:[400],f:\"display\"},{n:\"Bahianita\",v:[400],f:\"display\"},{n:\"Bai Jamjuree\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Bakbak One\",v:[400],f:\"display\"},{n:\"Ballet\",v:[400],f:\"handwriting\"},{n:\"Baloo 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Bhai 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Bhaijaan 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Bhaina 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Chettan 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Da 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Paaji 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Tamma 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Tammudu 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Baloo Thambi 2\",v:[400,500,600,700,800],f:\"display\"},{n:\"Balsamiq Sans\",v:[400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Balthazar\",v:[400],f:\"serif\"},{n:\"Bangers\",v:[400],f:\"display\"},{n:\"Barlow\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Barlow Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Barlow Semi Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Barriecito\",v:[400],f:\"display\"},{n:\"Barrio\",v:[400],f:\"display\"},{n:\"Basic\",v:[400],f:\"sans-serif\"},{n:\"Baskervville\",v:[400,\"400i\"],f:\"serif\"},{n:\"Battambang\",v:[\"100\",\"300\",400,700,900],f:\"display\"},{n:\"Baumans\",v:[400],f:\"display\"},{n:\"Bayon\",v:[400],f:\"sans-serif\"},{n:\"Be Vietnam Pro\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Beau Rivage\",v:[400],f:\"handwriting\"},{n:\"Bebas Neue\",v:[400],f:\"sans-serif\"},{n:\"Belgrano\",v:[400],f:\"serif\"},{n:\"Bellefair\",v:[400],f:\"serif\"},{n:\"Belleza\",v:[400],f:\"sans-serif\"},{n:\"Bellota\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Bellota Text\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"BenchNine\",v:[\"300\",400,700],f:\"sans-serif\"},{n:\"Benne\",v:[400],f:\"serif\"},{n:\"Bentham\",v:[400],f:\"serif\"},{n:\"Berkshire Swash\",v:[400],f:\"handwriting\"},{n:\"Besley\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Beth Ellen\",v:[400],f:\"handwriting\"},{n:\"Bevan\",v:[400,\"400i\"],f:\"display\"},{n:\"BhuTuka Expanded One\",v:[400],f:\"display\"},{n:\"Big Shoulders Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Inline Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Inline Text\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Stencil Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Stencil Text\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Big Shoulders Text\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Bigelow Rules\",v:[400],f:\"display\"},{n:\"Bigshot One\",v:[400],f:\"display\"},{n:\"Bilbo\",v:[400],f:\"handwriting\"},{n:\"Bilbo Swash Caps\",v:[400],f:\"handwriting\"},{n:\"BioRhyme\",v:[\"200\",\"300\",400,700,800],f:\"serif\"},{n:\"BioRhyme Expanded\",v:[\"200\",\"300\",400,700,800],f:\"serif\"},{n:\"Birthstone\",v:[400],f:\"handwriting\"},{n:\"Birthstone Bounce\",v:[400,500],f:\"handwriting\"},{n:\"Biryani\",v:[\"200\",\"300\",400,600,700,800,900],f:\"sans-serif\"},{n:\"Bitter\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Black And White Picture\",v:[400],f:\"sans-serif\"},{n:\"Black Han Sans\",v:[400],f:\"sans-serif\"},{n:\"Black Ops One\",v:[400],f:\"display\"},{n:\"Blinker\",v:[\"100\",\"200\",\"300\",400,600,700,800,900],f:\"sans-serif\"},{n:\"Bodoni Moda\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Bokor\",v:[400],f:\"display\"},{n:\"Bona Nova\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Bonbon\",v:[400],f:\"handwriting\"},{n:\"Bonheur Royale\",v:[400],f:\"handwriting\"},{n:\"Boogaloo\",v:[400],f:\"display\"},{n:\"Bowlby One\",v:[400],f:\"display\"},{n:\"Bowlby One SC\",v:[400],f:\"display\"},{n:\"Brawler\",v:[400,700],f:\"serif\"},{n:\"Bree Serif\",v:[400],f:\"serif\"},{n:\"Brygada 1918\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Bubblegum Sans\",v:[400],f:\"display\"},{n:\"Bubbler One\",v:[400],f:\"sans-serif\"},{n:\"Buda\",v:[\"300\"],f:\"display\"},{n:\"Buenard\",v:[400,700],f:\"serif\"},{n:\"Bungee\",v:[400],f:\"display\"},{n:\"Bungee Hairline\",v:[400],f:\"display\"},{n:\"Bungee Inline\",v:[400],f:\"display\"},{n:\"Bungee Outline\",v:[400],f:\"display\"},{n:\"Bungee Shade\",v:[400],f:\"display\"},{n:\"Butcherman\",v:[400],f:\"display\"},{n:\"Butterfly Kids\",v:[400],f:\"handwriting\"},{n:\"Blaka\",v:[400],f:\"display\"},{n:\"Blaka Hollow\",v:[400],f:\"display\"},{n:\"Blaka Ink\",v:[400],f:\"display\"},{n:\"Braah One\",v:[400],f:\"sans-serif\"},{n:\"Bruno Ace\",v:[400],f:\"display\"},{n:\"Bruno Ace SC\",v:[400],f:\"display\"},{n:\"Bungee Spice\",v:[400],f:\"display\"},{n:\"Bungee Spice\",v:[400],f:\"display\"},{n:\"Cabin\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Cabin Condensed\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Cabin Sketch\",v:[400,700],f:\"display\"},{n:\"Caesar Dressing\",v:[400],f:\"display\"},{n:\"Cagliostro\",v:[400],f:\"sans-serif\"},{n:\"Cairo\",v:[\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Caladea\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Calistoga\",v:[400],f:\"display\"},{n:\"Calligraffitti\",v:[400],f:\"handwriting\"},{n:\"Cambay\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Cambo\",v:[400],f:\"serif\"},{n:\"Candal\",v:[400],f:\"sans-serif\"},{n:\"Cantarell\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Cantata One\",v:[400],f:\"serif\"},{n:\"Cantora One\",v:[400],f:\"sans-serif\"},{n:\"Capriola\",v:[400],f:\"sans-serif\"},{n:\"Caramel\",v:[400],f:\"handwriting\"},{n:\"Carattere\",v:[400],f:\"handwriting\"},{n:\"Cardo\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Carme\",v:[400],f:\"sans-serif\"},{n:\"Carrois Gothic\",v:[400],f:\"sans-serif\"},{n:\"Carrois Gothic SC\",v:[400],f:\"sans-serif\"},{n:\"Carter One\",v:[400],f:\"display\"},{n:\"Castoro\",v:[400,\"400i\"],f:\"serif\"},{n:\"Catamaran\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Caudex\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Caveat\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Caveat Brush\",v:[400],f:\"handwriting\"},{n:\"Cedarville Cursive\",v:[400],f:\"handwriting\"},{n:\"Ceviche One\",v:[400],f:\"display\"},{n:\"Chakra Petch\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Changa\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Changa One\",v:[400,\"400i\"],f:\"display\"},{n:\"Chango\",v:[400],f:\"display\"},{n:\"Charm\",v:[400,700],f:\"handwriting\"},{n:\"Charmonman\",v:[400,700],f:\"handwriting\"},{n:\"Chathura\",v:[\"100\",\"300\",400,700,800],f:\"sans-serif\"},{n:\"Chau Philomene One\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Chela One\",v:[400],f:\"display\"},{n:\"Chelsea Market\",v:[400],f:\"display\"},{n:\"Chenla\",v:[400],f:\"display\"},{n:\"Cherish\",v:[400],f:\"handwriting\"},{n:\"Cherry Cream Soda\",v:[400],f:\"display\"},{n:\"Cherry Swash\",v:[400,700],f:\"display\"},{n:\"Chewy\",v:[400],f:\"display\"},{n:\"Chicle\",v:[400],f:\"display\"},{n:\"Chilanka\",v:[400],f:\"handwriting\"},{n:\"Chivo\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Chonburi\",v:[400],f:\"display\"},{n:\"Cinzel\",v:[400,500,600,700,800,900],f:\"serif\"},{n:\"Cinzel Decorative\",v:[400,700,900],f:\"display\"},{n:\"Clicker Script\",v:[400],f:\"handwriting\"},{n:\"Coda\",v:[400,800],f:\"display\"},{n:\"Coda Caption\",v:[800],f:\"sans-serif\"},{n:\"Codystar\",v:[\"300\",400],f:\"display\"},{n:\"Coiny\",v:[400],f:\"display\"},{n:\"Combo\",v:[400],f:\"display\"},{n:\"Comfortaa\",v:[\"300\",400,500,600,700],f:\"display\"},{n:\"Comforter\",v:[400],f:\"handwriting\"},{n:\"Comforter Brush\",v:[400],f:\"handwriting\"},{n:\"Comic Neue\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"handwriting\"},{n:\"Coming Soon\",v:[400],f:\"handwriting\"},{n:\"Commissioner\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Concert One\",v:[400],f:\"display\"},{n:\"Condiment\",v:[400],f:\"handwriting\"},{n:\"Content\",v:[400,700],f:\"display\"},{n:\"Contrail One\",v:[400],f:\"display\"},{n:\"Convergence\",v:[400],f:\"sans-serif\"},{n:\"Cookie\",v:[400],f:\"handwriting\"},{n:\"Copse\",v:[400],f:\"serif\"},{n:\"Corben\",v:[400,700],f:\"display\"},{n:\"Corinthia\",v:[400,700],f:\"handwriting\"},{n:\"Cormorant\",v:[300,400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Cormorant Garamond\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"Cormorant Infant\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"Cormorant SC\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Cormorant Unicase\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Cormorant Upright\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Courgette\",v:[400],f:\"handwriting\"},{n:\"Courier Prime\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Cousine\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Coustard\",v:[400,900],f:\"serif\"},{n:\"Covered By Your Grace\",v:[400],f:\"handwriting\"},{n:\"Crafty Girls\",v:[400],f:\"handwriting\"},{n:\"Creepster\",v:[400],f:\"display\"},{n:\"Crete Round\",v:[400,\"400i\"],f:\"serif\"},{n:\"Crimson Pro\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Croissant One\",v:[400],f:\"display\"},{n:\"Crushed\",v:[400],f:\"display\"},{n:\"Cuprum\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Cute Font\",v:[400],f:\"display\"},{n:\"Cutive\",v:[400],f:\"serif\"},{n:\"Cutive Mono\",v:[400],f:\"monospace\"},{n:\"Cairo Play\",v:[200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Carlito\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Castoro Titling\",v:[400],f:\"display\"},{n:\"Charis SIL\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Cherry Bomb One\",v:[400],f:\"display\"},{n:\"Chivo Mono\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"monospace\"},{n:\"Chokokutai\",v:[400],f:\"display\"},{n:\"Climate Crisis\",v:[400],f:\"display\"},{n:\"Comme\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Crimson Text\",v:[400,\"400i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"DM Mono\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\"],f:\"monospace\"},{n:\"DM Sans\",v:[400,\"400i\",500,\"500i\",700,\"700i\"],f:\"sans-serif\"},{n:\"DM Serif Display\",v:[400,\"400i\"],f:\"serif\"},{n:\"DM Serif Text\",v:[400,\"400i\"],f:\"serif\"},{n:\"Damion\",v:[400],f:\"handwriting\"},{n:\"Dancing Script\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Dangrek\",v:[400],f:\"display\"},{n:\"Darker Grotesque\",v:[\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"David Libre\",v:[400,500,700],f:\"serif\"},{n:\"Dawning of a New Day\",v:[400],f:\"handwriting\"},{n:\"Days One\",v:[400],f:\"sans-serif\"},{n:\"Dekko\",v:[400],f:\"handwriting\"},{n:\"Dela Gothic One\",v:[400],f:\"display\"},{n:\"Delius\",v:[400],f:\"handwriting\"},{n:\"Delius Swash Caps\",v:[400],f:\"handwriting\"},{n:\"Delius Unicase\",v:[400,700],f:\"handwriting\"},{n:\"Della Respira\",v:[400],f:\"serif\"},{n:\"Denk One\",v:[400],f:\"sans-serif\"},{n:\"Devonshire\",v:[400],f:\"handwriting\"},{n:\"Dhurjati\",v:[400],f:\"sans-serif\"},{n:\"Didact Gothic\",v:[400],f:\"sans-serif\"},{n:\"Diplomata\",v:[400],f:\"display\"},{n:\"Diplomata SC\",v:[400],f:\"display\"},{n:\"Do Hyeon\",v:[400],f:\"sans-serif\"},{n:\"Dokdo\",v:[400],f:\"handwriting\"},{n:\"Domine\",v:[400,500,600,700],f:\"serif\"},{n:\"Donegal One\",v:[400],f:\"serif\"},{n:\"Dongle\",v:[\"300\",400,700],f:\"sans-serif\"},{n:\"Doppio One\",v:[400],f:\"sans-serif\"},{n:\"Dorsa\",v:[400],f:\"sans-serif\"},{n:\"Dosis\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"DotGothic16\",v:[400],f:\"sans-serif\"},{n:\"Dr Sugiyama\",v:[400],f:\"handwriting\"},{n:\"Duru Sans\",v:[400],f:\"sans-serif\"},{n:\"Dynalight\",v:[400],f:\"display\"},{n:\"Darumadrop One\",v:[400],f:\"display\"},{n:\"Delicious Handrawn\",v:[400],f:\"handwriting\"},{n:\"DynaPuff\",v:[400,500,600,700],f:\"display\"},{n:\"Edu NSW ACT Foundation\",v:[400,500,600,700],f:\"handwriting\"},{n:\"EB Garamond\",v:[400,500,600,700,800,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Eagle Lake\",v:[400],f:\"handwriting\"},{n:\"East Sea Dokdo\",v:[400],f:\"handwriting\"},{n:\"Eater\",v:[400],f:\"display\"},{n:\"Economica\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Eczar\",v:[400,500,600,700,800],f:\"serif\"},{n:\"El Messiri\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Electrolize\",v:[400],f:\"sans-serif\"},{n:\"Elsie\",v:[400,900],f:\"display\"},{n:\"Elsie Swash Caps\",v:[400,900],f:\"display\"},{n:\"Emblema One\",v:[400],f:\"display\"},{n:\"Emilys Candy\",v:[400],f:\"display\"},{n:\"Encode Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans Expanded\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans SC\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans Semi Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Encode Sans Semi Expanded\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Engagement\",v:[400],f:\"handwriting\"},{n:\"Englebert\",v:[400],f:\"sans-serif\"},{n:\"Enriqueta\",v:[400,500,600,700],f:\"serif\"},{n:\"Ephesis\",v:[400],f:\"handwriting\"},{n:\"Epilogue\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Erica One\",v:[400],f:\"display\"},{n:\"Esteban\",v:[400],f:\"serif\"},{n:\"Estonia\",v:[400],f:\"handwriting\"},{n:\"Euphoria Script\",v:[400],f:\"handwriting\"},{n:\"Ewert\",v:[400],f:\"display\"},{n:\"Exo\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Exo 2\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Expletus Sans\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"display\"},{n:\"Explora\",v:[400],f:\"handwriting\"},{n:\"Edu QLD Beginner\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Edu SA Beginner\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Edu TAS Beginner\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Edu VIC WA NT Beginner\",v:[400,500,600,700],f:\"handwriting\"},{n:\"Fahkwang\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Familjen Grotesk\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Fanwood Text\",v:[400,\"400i\"],f:\"serif\"},{n:\"Farro\",v:[\"300\",400,500,700],f:\"sans-serif\"},{n:\"Farsan\",v:[400],f:\"display\"},{n:\"Fascinate\",v:[400],f:\"display\"},{n:\"Fascinate Inline\",v:[400],f:\"display\"},{n:\"Faster One\",v:[400],f:\"display\"},{n:\"Fasthand\",v:[400],f:\"display\"},{n:\"Fauna One\",v:[400],f:\"serif\"},{n:\"Faustina\",v:[\"300\",400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Federant\",v:[400],f:\"display\"},{n:\"Federo\",v:[400],f:\"sans-serif\"},{n:\"Felipa\",v:[400],f:\"handwriting\"},{n:\"Fenix\",v:[400],f:\"serif\"},{n:\"Festive\",v:[400],f:\"handwriting\"},{n:\"Finger Paint\",v:[400],f:\"display\"},{n:\"Fira Code\",v:[\"300\",400,500,600,700],f:\"monospace\"},{n:\"Fira Mono\",v:[400,500,700],f:\"monospace\"},{n:\"Fira Sans\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Fira Sans Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Fira Sans Extra Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Fjalla One\",v:[400],f:\"sans-serif\"},{n:\"Fjord One\",v:[400],f:\"serif\"},{n:\"Flamenco\",v:[\"300\",400],f:\"display\"},{n:\"Flavors\",v:[400],f:\"display\"},{n:\"Fleur De Leah\",v:[400],f:\"handwriting\"},{n:\"Flow Block\",v:[400],f:\"display\"},{n:\"Flow Circular\",v:[400],f:\"display\"},{n:\"Flow Rounded\",v:[400],f:\"display\"},{n:\"Fondamento\",v:[400,\"400i\"],f:\"handwriting\"},{n:\"Fontdiner Swanky\",v:[400],f:\"display\"},{n:\"Forum\",v:[400],f:\"display\"},{n:\"Francois One\",v:[400],f:\"sans-serif\"},{n:\"Frank Ruhl Libre\",v:[\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Fraunces\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Freckle Face\",v:[400],f:\"display\"},{n:\"Fredericka the Great\",v:[400],f:\"display\"},{n:\"Fredoka\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Freehand\",v:[400],f:\"display\"},{n:\"Fresca\",v:[400],f:\"sans-serif\"},{n:\"Frijole\",v:[400],f:\"display\"},{n:\"Fruktur\",v:[400,\"400i\"],f:\"display\"},{n:\"Fugaz One\",v:[400],f:\"display\"},{n:\"Fuggles\",v:[400],f:\"handwriting\"},{n:\"Fuzzy Bubbles\",v:[400,700],f:\"handwriting\"},{n:\"Figtree\",v:[300,400,500,600,700,800,900,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Finlandica\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Foldit\",v:[100,200,300,400,500,600,700,800,900],f:\"display\"},{n:\"Fragment Mono\",v:[400,\"400i\"],f:\"monospace\"},{n:\"GFS Didot\",v:[400],f:\"serif\"},{n:\"GFS Neohellenic\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Gabriela\",v:[400],f:\"serif\"},{n:\"Gaegu\",v:[\"300\",400,700],f:\"handwriting\"},{n:\"Gafata\",v:[400],f:\"sans-serif\"},{n:\"Galada\",v:[400],f:\"display\"},{n:\"Galdeano\",v:[400],f:\"sans-serif\"},{n:\"Galindo\",v:[400],f:\"display\"},{n:\"Gamja Flower\",v:[400],f:\"handwriting\"},{n:\"Gayathri\",v:[\"100\",400,700],f:\"sans-serif\"},{n:\"Gelasio\",v:[400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"Gemunu Libre\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Genos\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Geo\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Georama\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Geostar\",v:[400],f:\"display\"},{n:\"Geostar Fill\",v:[400],f:\"display\"},{n:\"Germania One\",v:[400],f:\"display\"},{n:\"Gideon Roman\",v:[400],f:\"display\"},{n:\"Gidugu\",v:[400],f:\"sans-serif\"},{n:\"Gilda Display\",v:[400],f:\"serif\"},{n:\"Girassol\",v:[400],f:\"display\"},{n:\"Give You Glory\",v:[400],f:\"handwriting\"},{n:\"Glass Antiqua\",v:[400],f:\"display\"},{n:\"Glegoo\",v:[400,700],f:\"serif\"},{n:\"Gloria Hallelujah\",v:[400],f:\"handwriting\"},{n:\"Glory\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Gluten\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Goblin One\",v:[400],f:\"display\"},{n:\"Gochi Hand\",v:[400],f:\"handwriting\"},{n:\"Goldman\",v:[400,700],f:\"display\"},{n:\"Gorditas\",v:[400,700],f:\"display\"},{n:\"Gothic A1\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Gotu\",v:[400],f:\"sans-serif\"},{n:\"Goudy Bookletter 1911\",v:[400],f:\"serif\"},{n:\"Gowun Batang\",v:[400,700],f:\"serif\"},{n:\"Gowun Dodum\",v:[400],f:\"sans-serif\"},{n:\"Graduate\",v:[400],f:\"display\"},{n:\"Grand Hotel\",v:[400],f:\"handwriting\"},{n:\"Grandstander\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"display\"},{n:\"Grape Nuts\",v:[400],f:\"handwriting\"},{n:\"Gravitas One\",v:[400],f:\"display\"},{n:\"Great Vibes\",v:[400],f:\"handwriting\"},{n:\"Grechen Fuemen\",v:[400],f:\"handwriting\"},{n:\"Grenze\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"serif\"},{n:\"Grenze Gotisch\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Grey Qo\",v:[400],f:\"handwriting\"},{n:\"Griffy\",v:[400],f:\"display\"},{n:\"Gruppo\",v:[400],f:\"sans-serif\"},{n:\"Gudea\",v:[400,\"400i\",700],f:\"sans-serif\"},{n:\"Gugi\",v:[400],f:\"display\"},{n:\"Gupter\",v:[400,500,700],f:\"serif\"},{n:\"Gurajada\",v:[400],f:\"serif\"},{n:\"Gwendolyn\",v:[400,700],f:\"handwriting\"},{n:\"Gajraj One\",v:[400],f:\"display\"},{n:\"Gantari\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Gloock\",v:[400],f:\"serif\"},{n:\"Golos Text\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Gulzar\",v:[400],f:\"serif\"},{n:\"Gentium Book Plus\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Gentium Plus\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Habibi\",v:[400],f:\"serif\"},{n:\"Hachi Maru Pop\",v:[400],f:\"handwriting\"},{n:\"Hahmlet\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Halant\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Hammersmith One\",v:[400],f:\"sans-serif\"},{n:\"Hanalei\",v:[400],f:\"display\"},{n:\"Hanalei Fill\",v:[400],f:\"display\"},{n:\"Handlee\",v:[400],f:\"handwriting\"},{n:\"Hanuman\",v:[\"100\",\"300\",400,700,900],f:\"serif\"},{n:\"Happy Monkey\",v:[400],f:\"display\"},{n:\"Harmattan\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Headland One\",v:[400],f:\"serif\"},{n:\"Heebo\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Henny Penny\",v:[400],f:\"display\"},{n:\"Hepta Slab\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Herr Von Muellerhoff\",v:[400],f:\"handwriting\"},{n:\"Hi Melody\",v:[400],f:\"handwriting\"},{n:\"Hina Mincho\",v:[400],f:\"serif\"},{n:\"Hind\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Hind Guntur\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Hind Madurai\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Hind Siliguri\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Hind Vadodara\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Holtwood One SC\",v:[400],f:\"serif\"},{n:\"Homemade Apple\",v:[400],f:\"handwriting\"},{n:\"Homenaje\",v:[400],f:\"sans-serif\"},{n:\"Hubballi\",v:[400],f:\"display\"},{n:\"Hurricane\",v:[400],f:\"handwriting\"},{n:\"Hanken Grotesk\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"IBM Plex Mono\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"monospace\"},{n:\"IBM Plex Sans\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"IBM Plex Sans Arabic\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans Condensed\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"IBM Plex Sans Devanagari\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans Hebrew\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans KR\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans Thai\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Sans Thai Looped\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"IBM Plex Serif\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"IM Fell DW Pica\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell DW Pica SC\",v:[400],f:\"serif\"},{n:\"IM Fell Double Pica\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell Double Pica SC\",v:[400],f:\"serif\"},{n:\"IM Fell English\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell English SC\",v:[400],f:\"serif\"},{n:\"IM Fell French Canon\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell French Canon SC\",v:[400],f:\"serif\"},{n:\"IM Fell Great Primer\",v:[400,\"400i\"],f:\"serif\"},{n:\"IM Fell Great Primer SC\",v:[400],f:\"serif\"},{n:\"Ibarra Real Nova\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Iceberg\",v:[400],f:\"display\"},{n:\"Iceland\",v:[400],f:\"display\"},{n:\"Imbue\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Imperial Script\",v:[400],f:\"handwriting\"},{n:\"Imprima\",v:[400],f:\"sans-serif\"},{n:\"Inconsolata\",v:[\"200\",\"300\",400,500,600,700,800,900],f:\"monospace\"},{n:\"Inder\",v:[400],f:\"sans-serif\"},{n:\"Indie Flower\",v:[400],f:\"handwriting\"},{n:\"Ingrid Darling\",v:[400],f:\"handwriting\"},{n:\"Inika\",v:[400,700],f:\"serif\"},{n:\"Inknut Antiqua\",v:[\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Inria Sans\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Inria Serif\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Inspiration\",v:[400],f:\"handwriting\"},{n:\"Inter\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Irish Grover\",v:[400],f:\"display\"},{n:\"Island Moments\",v:[400],f:\"handwriting\"},{n:\"Istok Web\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Italiana\",v:[400],f:\"serif\"},{n:\"Italianno\",v:[400],f:\"handwriting\"},{n:\"Itim\",v:[400],f:\"handwriting\"},{n:\"IBM Plex Sans JP\",v:[100,200,300,400,500,600,700],f:\"sans-serif\"},{n:\"Instrument Sans\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Instrument Serif\",v:[400,\"400i\"],f:\"serif\"},{n:\"Inter Tight\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Jacques Francois\",v:[400],f:\"serif\"},{n:\"Jacques Francois Shadow\",v:[400],f:\"display\"},{n:\"Jaldi\",v:[400,700],f:\"sans-serif\"},{n:\"JetBrains Mono\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"monospace\"},{n:\"Jim Nightshade\",v:[400],f:\"handwriting\"},{n:\"Jockey One\",v:[400],f:\"sans-serif\"},{n:\"Jolly Lodger\",v:[400],f:\"display\"},{n:\"Jomhuria\",v:[400],f:\"display\"},{n:\"Jomolhari\",v:[400],f:\"serif\"},{n:\"Josefin Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Josefin Slab\",v:[\"100\",\"200\",\"300\",400,500,600,700,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Jost\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Joti One\",v:[400],f:\"display\"},{n:\"Jua\",v:[400],f:\"sans-serif\"},{n:\"Judson\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Julee\",v:[400],f:\"handwriting\"},{n:\"Julius Sans One\",v:[400],f:\"sans-serif\"},{n:\"Junge\",v:[400],f:\"serif\"},{n:\"Jura\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Just Another Hand\",v:[400],f:\"handwriting\"},{n:\"Just Me Again Down Here\",v:[400],f:\"handwriting\"},{n:\"K2D\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"sans-serif\"},{n:\"Joan\",v:[400],f:\"serif\"},{n:\"Kadwa\",v:[400,700],f:\"serif\"},{n:\"Kaisei Decol\",v:[400,500,700],f:\"serif\"},{n:\"Kaisei HarunoUmi\",v:[400,500,700],f:\"serif\"},{n:\"Kaisei Opti\",v:[400,500,700],f:\"serif\"},{n:\"Kaisei Tokumin\",v:[400,500,700,800],f:\"serif\"},{n:\"Kalam\",v:[\"300\",400,700],f:\"handwriting\"},{n:\"Kameron\",v:[400,700],f:\"serif\"},{n:\"Kanit\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Karantina\",v:[\"300\",400,700],f:\"display\"},{n:\"Karla\",v:[\"200\",\"300\",400,500,600,700,800,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Karma\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Katibeh\",v:[400],f:\"display\"},{n:\"Kaushan Script\",v:[400],f:\"handwriting\"},{n:\"Kavivanar\",v:[400],f:\"handwriting\"},{n:\"Kavoon\",v:[400],f:\"display\"},{n:\"Keania One\",v:[400],f:\"display\"},{n:\"Kelly Slab\",v:[400],f:\"display\"},{n:\"Kenia\",v:[400],f:\"display\"},{n:\"Khand\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Khmer\",v:[400],f:\"display\"},{n:\"Khula\",v:[\"300\",400,600,700,800],f:\"sans-serif\"},{n:\"Kings\",v:[400],f:\"handwriting\"},{n:\"Kirang Haerang\",v:[400],f:\"display\"},{n:\"Kite One\",v:[400],f:\"sans-serif\"},{n:\"Kiwi Maru\",v:[\"300\",400,500],f:\"serif\"},{n:\"Klee One\",v:[400,600],f:\"handwriting\"},{n:\"Knewave\",v:[400],f:\"display\"},{n:\"KoHo\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Kodchasan\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Koh Santepheap\",v:[\"100\",\"300\",400,700,900],f:\"display\"},{n:\"Kolker Brush\",v:[400],f:\"handwriting\"},{n:\"Kosugi\",v:[400],f:\"sans-serif\"},{n:\"Kosugi Maru\",v:[400],f:\"sans-serif\"},{n:\"Kotta One\",v:[400],f:\"serif\"},{n:\"Koulen\",v:[400],f:\"display\"},{n:\"Kranky\",v:[400],f:\"display\"},{n:\"Kreon\",v:[\"300\",400,500,600,700],f:\"serif\"},{n:\"Kristi\",v:[400],f:\"handwriting\"},{n:\"Krona One\",v:[400],f:\"sans-serif\"},{n:\"Krub\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Kufam\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Kulim Park\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Kumar One\",v:[400],f:\"display\"},{n:\"Kumar One Outline\",v:[400],f:\"display\"},{n:\"Kumbh Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Kurale\",v:[400],f:\"serif\"},{n:\"Kantumruy Pro\",v:[100,200,300,400,500,600,700,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Kdam Thmor Pro\",v:[400],f:\"sans-serif\"},{n:\"Konkhmer Sleokchher\",v:[400],f:\"display\"},{n:\"La Belle Aurore\",v:[400],f:\"handwriting\"},{n:\"Lacquer\",v:[400],f:\"display\"},{n:\"Laila\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Lakki Reddy\",v:[400],f:\"handwriting\"},{n:\"Lalezar\",v:[400],f:\"display\"},{n:\"Lancelot\",v:[400],f:\"display\"},{n:\"Langar\",v:[400],f:\"display\"},{n:\"Lateef\",v:[200,300,400,500,600,700,800],f:\"handwriting\"},{n:\"Lato\",v:[\"100\",\"100i\",\"300\",\"300i\",400,\"400i\",700,\"700i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Lavishly Yours\",v:[400],f:\"handwriting\"},{n:\"League Gothic\",v:[400],f:\"sans-serif\"},{n:\"League Script\",v:[400],f:\"handwriting\"},{n:\"League Spartan\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Leckerli One\",v:[400],f:\"handwriting\"},{n:\"Ledger\",v:[400],f:\"serif\"},{n:\"Lekton\",v:[400,\"400i\",700],f:\"sans-serif\"},{n:\"Lemon\",v:[400],f:\"display\"},{n:\"Lemonada\",v:[\"300\",400,500,600,700],f:\"display\"},{n:\"Lexend\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Deca\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Exa\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Giga\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Mega\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Peta\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Tera\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Lexend Zetta\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Libre Barcode 128\",v:[400],f:\"display\"},{n:\"Libre Barcode 128 Text\",v:[400],f:\"display\"},{n:\"Libre Barcode 39\",v:[400],f:\"display\"},{n:\"Libre Barcode 39 Extended\",v:[400],f:\"display\"},{n:\"Libre Barcode 39 Extended Text\",v:[400],f:\"display\"},{n:\"Libre Barcode 39 Text\",v:[400],f:\"display\"},{n:\"Libre Barcode EAN13 Text\",v:[400],f:\"display\"},{n:\"Libre Baskerville\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Libre Bodoni\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Libre Caslon Display\",v:[400],f:\"serif\"},{n:\"Libre Caslon Text\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Libre Franklin\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Licorice\",v:[400],f:\"handwriting\"},{n:\"Life Savers\",v:[400,700,800],f:\"display\"},{n:\"Lilita One\",v:[400],f:\"display\"},{n:\"Lily Script One\",v:[400],f:\"display\"},{n:\"Limelight\",v:[400],f:\"display\"},{n:\"Linden Hill\",v:[400,\"400i\"],f:\"serif\"},{n:\"Literata\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Liu Jian Mao Cao\",v:[400],f:\"handwriting\"},{n:\"Livvic\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Lobster\",v:[400],f:\"display\"},{n:\"Lobster Two\",v:[400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Londrina Outline\",v:[400],f:\"display\"},{n:\"Londrina Shadow\",v:[400],f:\"display\"},{n:\"Londrina Sketch\",v:[400],f:\"display\"},{n:\"Londrina Solid\",v:[\"100\",\"300\",400,900],f:\"display\"},{n:\"Long Cang\",v:[400],f:\"handwriting\"},{n:\"Lora\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Love Light\",v:[400],f:\"handwriting\"},{n:\"Love Ya Like A Sister\",v:[400],f:\"display\"},{n:\"Loved by the King\",v:[400],f:\"handwriting\"},{n:\"Lovers Quarrel\",v:[400],f:\"handwriting\"},{n:\"Luckiest Guy\",v:[400],f:\"display\"},{n:\"Lusitana\",v:[400,700],f:\"serif\"},{n:\"Lustria\",v:[400],f:\"serif\"},{n:\"Luxurious Roman\",v:[400],f:\"display\"},{n:\"Luxurious Script\",v:[400],f:\"handwriting\"},{n:\"Labrada\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"M PLUS 1\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"M PLUS 1 Code\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"M PLUS 1p\",v:[\"100\",\"300\",400,500,700,800,900],f:\"sans-serif\"},{n:\"M PLUS 2\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"M PLUS Code Latin\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"M PLUS Rounded 1c\",v:[\"100\",\"300\",400,500,700,800,900],f:\"sans-serif\"},{n:\"Ma Shan Zheng\",v:[400],f:\"handwriting\"},{n:\"Macondo\",v:[400],f:\"display\"},{n:\"Macondo Swash Caps\",v:[400],f:\"display\"},{n:\"Mada\",v:[\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Magra\",v:[400,700],f:\"sans-serif\"},{n:\"Maiden Orange\",v:[400],f:\"display\"},{n:\"Maitree\",v:[\"200\",\"300\",400,500,600,700],f:\"serif\"},{n:\"Major Mono Display\",v:[400],f:\"monospace\"},{n:\"Mako\",v:[400],f:\"sans-serif\"},{n:\"Mali\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"handwriting\"},{n:\"Mallanna\",v:[400],f:\"sans-serif\"},{n:\"Mandali\",v:[400],f:\"sans-serif\"},{n:\"Manjari\",v:[\"100\",400,700],f:\"sans-serif\"},{n:\"Manrope\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mansalva\",v:[400],f:\"handwriting\"},{n:\"Manuale\",v:[\"300\",400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Marcellus\",v:[400],f:\"serif\"},{n:\"Marcellus SC\",v:[400],f:\"serif\"},{n:\"Marck Script\",v:[400],f:\"handwriting\"},{n:\"Margarine\",v:[400],f:\"display\"},{n:\"Markazi Text\",v:[400,500,600,700],f:\"serif\"},{n:\"Marko One\",v:[400],f:\"serif\"},{n:\"Marmelad\",v:[400],f:\"sans-serif\"},{n:\"Martel\",v:[\"200\",\"300\",400,600,700,800,900],f:\"serif\"},{n:\"Martel Sans\",v:[\"200\",\"300\",400,600,700,800,900],f:\"sans-serif\"},{n:\"Marvel\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Mate\",v:[400,\"400i\"],f:\"serif\"},{n:\"Mate SC\",v:[400],f:\"serif\"},{n:\"Maven Pro\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"McLaren\",v:[400],f:\"display\"},{n:\"Mea Culpa\",v:[400],f:\"handwriting\"},{n:\"Meddon\",v:[400],f:\"handwriting\"},{n:\"MedievalSharp\",v:[400],f:\"display\"},{n:\"Medula One\",v:[400],f:\"display\"},{n:\"Meera Inimai\",v:[400],f:\"sans-serif\"},{n:\"Megrim\",v:[400],f:\"display\"},{n:\"Meie Script\",v:[400],f:\"handwriting\"},{n:\"Meow Script\",v:[400],f:\"handwriting\"},{n:\"Merienda\",v:[300,400,500,600,700,800,900],f:\"handwriting\"},{n:\"Merriweather\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\",900,\"900i\"],f:\"serif\"},{n:\"Merriweather Sans\",v:[\"300\",400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Metal\",v:[400],f:\"display\"},{n:\"Metal Mania\",v:[400],f:\"display\"},{n:\"Metamorphous\",v:[400],f:\"display\"},{n:\"Metrophobic\",v:[400],f:\"sans-serif\"},{n:\"Michroma\",v:[400],f:\"sans-serif\"},{n:\"Milonga\",v:[400],f:\"display\"},{n:\"Miltonian\",v:[400],f:\"display\"},{n:\"Miltonian Tattoo\",v:[400],f:\"display\"},{n:\"Mina\",v:[400,700],f:\"sans-serif\"},{n:\"Miniver\",v:[400],f:\"display\"},{n:\"Miriam Libre\",v:[400,700],f:\"sans-serif\"},{n:\"Mirza\",v:[400,500,600,700],f:\"display\"},{n:\"Miss Fajardose\",v:[400],f:\"handwriting\"},{n:\"Mitr\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Mochiy Pop One\",v:[400],f:\"sans-serif\"},{n:\"Mochiy Pop P One\",v:[400],f:\"sans-serif\"},{n:\"Modak\",v:[400],f:\"display\"},{n:\"Modern Antiqua\",v:[400],f:\"display\"},{n:\"Mogra\",v:[400],f:\"display\"},{n:\"Mohave\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Molengo\",v:[400],f:\"sans-serif\"},{n:\"Molle\",v:[\"400i\"],f:\"handwriting\"},{n:\"Monda\",v:[400,700],f:\"sans-serif\"},{n:\"Monofett\",v:[400],f:\"monospace\"},{n:\"Monoton\",v:[400],f:\"display\"},{n:\"Monsieur La Doulaise\",v:[400],f:\"handwriting\"},{n:\"Montaga\",v:[400],f:\"serif\"},{n:\"Montagu Slab\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"serif\"},{n:\"MonteCarlo\",v:[400],f:\"handwriting\"},{n:\"Montez\",v:[400],f:\"handwriting\"},{n:\"Montserrat\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Montserrat Alternates\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Montserrat Subrayada\",v:[400,700],f:\"sans-serif\"},{n:\"Moo Lah Lah\",v:[400],f:\"display\"},{n:\"Moon Dance\",v:[400],f:\"handwriting\"},{n:\"Moul\",v:[400],f:\"display\"},{n:\"Moulpali\",v:[400],f:\"display\"},{n:\"Mountains of Christmas\",v:[400,700],f:\"display\"},{n:\"Mouse Memoirs\",v:[400],f:\"sans-serif\"},{n:\"Mr Bedfort\",v:[400],f:\"handwriting\"},{n:\"Mr Dafoe\",v:[400],f:\"handwriting\"},{n:\"Mr De Haviland\",v:[400],f:\"handwriting\"},{n:\"Mrs Saint Delafield\",v:[400],f:\"handwriting\"},{n:\"Mrs Sheppards\",v:[400],f:\"handwriting\"},{n:\"Ms Madi\",v:[400],f:\"handwriting\"},{n:\"Mukta\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mukta Mahee\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mukta Malar\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mukta Vaani\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Mulish\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Murecho\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"MuseoModerno\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"display\"},{n:\"My Soul\",v:[400],f:\"handwriting\"},{n:\"Mystery Quest\",v:[400],f:\"display\"},{n:\"Marhey\",v:[300,400,500,600,700],f:\"display\"},{n:\"Martian Mono\",v:[100,200,300,400,500,600,700,800],f:\"monospace\"},{n:\"Material Icons\",v:[400],f:\"monospace\"},{n:\"Material Icons Outlined\",v:[400],f:\"monospace\"},{n:\"Material Icons Round\",v:[400],f:\"monospace\"},{n:\"Material Icons Sharp\",v:[400],f:\"monospace\"},{n:\"Material Icons Two Tone\",v:[400],f:\"monospace\"},{n:\"Material Symbols Outlined\",v:[100,200,300,400,500,600,700],f:\"monospace\"},{n:\"Material Symbols Rounded\",v:[100,200,300,400,500,600,700],f:\"monospace\"},{n:\"Material Symbols Sharp\",v:[100,200,300,400,500,600,700],f:\"monospace\"},{n:\"Mingzat\",v:[400],f:\"sans-serif\"},{n:\"Monomaniac One\",v:[400],f:\"sans-serif\"},{n:\"Mynerve\",v:[400],f:\"handwriting\"},{n:\"NTR\",v:[400],f:\"sans-serif\"},{n:\"Nanum Brush Script\",v:[400],f:\"handwriting\"},{n:\"Nanum Gothic\",v:[400,700,800],f:\"sans-serif\"},{n:\"Nanum Gothic Coding\",v:[400,700],f:\"monospace\"},{n:\"Nanum Myeongjo\",v:[400,700,800],f:\"serif\"},{n:\"Nanum Pen Script\",v:[400],f:\"handwriting\"},{n:\"Neonderthaw\",v:[400],f:\"handwriting\"},{n:\"Nerko One\",v:[400],f:\"handwriting\"},{n:\"Neucha\",v:[400],f:\"handwriting\"},{n:\"Neuton\",v:[\"200\",\"300\",400,\"400i\",700,800],f:\"serif\"},{n:\"New Rocker\",v:[400],f:\"display\"},{n:\"New Tegomin\",v:[400],f:\"serif\"},{n:\"News Cycle\",v:[400,700],f:\"sans-serif\"},{n:\"Newsreader\",v:[\"200\",\"300\",400,500,600,700,800,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"serif\"},{n:\"Niconne\",v:[400],f:\"handwriting\"},{n:\"Niramit\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Nixie One\",v:[400],f:\"display\"},{n:\"Nobile\",v:[400,\"400i\",500,\"500i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Nokora\",v:[\"100\",\"300\",400,700,900],f:\"sans-serif\"},{n:\"Norican\",v:[400],f:\"handwriting\"},{n:\"Nosifer\",v:[400],f:\"display\"},{n:\"Notable\",v:[400],f:\"sans-serif\"},{n:\"Nothing You Could Do\",v:[400],f:\"handwriting\"},{n:\"Noticia Text\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Noto Emoji\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Noto Kufi Arabic\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Music\",v:[400],f:\"sans-serif\"},{n:\"Noto Naskh Arabic\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Nastaliq Urdu\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Rashi Hebrew\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Sans\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Noto Sans Adlam\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Adlam Unjoined\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Anatolian Hieroglyphs\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Arabic\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Armenian\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Avestan\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Balinese\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Bamum\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Bassa Vah\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Batak\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Bengali\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Bhaiksuki\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Brahmi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Buginese\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Buhid\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Canadian Aboriginal\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Carian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Caucasian Albanian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Chakma\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Cham\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Cherokee\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Coptic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Cuneiform\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Cypriot\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Deseret\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Devanagari\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Noto Sans Duployan\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Egyptian Hieroglyphs\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Elbasan\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Elymaic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Georgian\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Glagolitic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Gothic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Grantha\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Gujarati\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Gunjala Gondi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Gurmukhi\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans HK\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Noto Sans Hanifi Rohingya\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Hanunoo\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Hatran\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Hebrew\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Imperial Aramaic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Indic Siyaq Numbers\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Inscriptional Pahlavi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Inscriptional Parthian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans JP\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Javanese\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans KR\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Noto Sans Kaithi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Kannada\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Kayah Li\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Kharoshthi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Khmer\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Khojki\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Khudawadi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Lao\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Lepcha\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Limbu\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Linear A\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Linear B\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Lisu\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Lycian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Lydian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Mahajani\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Malayalam\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Mandaic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Manichaean\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Marchen\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Masaram Gondi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Math\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Mayan Numerals\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Medefaidrin\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Meetei Mayek\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Meroitic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Miao\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Modi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Mongolian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Mono\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"monospace\"},{n:\"Noto Sans Mro\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Multani\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Myanmar\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans NKo\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Nabataean\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans New Tai Lue\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Newa\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Nushu\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Ogham\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Ol Chiki\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Old Hungarian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Italic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old North Arabian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Permic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Persian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Sogdian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old South Arabian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Old Turkic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Oriya\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Osage\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Osmanya\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Pahawh Hmong\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Palmyrene\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Pau Cin Hau\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Phags Pa\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Phoenician\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Psalter Pahlavi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Rejang\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Runic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans SC\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Noto Sans Samaritan\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Saurashtra\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Sharada\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Shavian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Siddham\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Sinhala\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Sogdian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Sora Sompeng\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Soyombo\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Sundanese\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Syloti Nagri\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Symbols\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Symbols 2\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Syriac\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans TC\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Noto Sans Tagalog\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tagbanwa\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tai Le\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tai Tham\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Tai Viet\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Takri\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tamil\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Tamil Supplement\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Telugu\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Thaana\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Thai\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Thai Looped\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Tifinagh\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tirhuta\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Ugaritic\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Vai\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Wancho\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Warang Citi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Yi\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Zanabazar Square\",v:[400],f:\"sans-serif\"},{n:\"Noto Serif\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Noto Serif Ahom\",v:[400],f:\"serif\"},{n:\"Noto Serif Armenian\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Balinese\",v:[400],f:\"serif\"},{n:\"Noto Serif Bengali\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Devanagari\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Display\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Noto Serif Dogra\",v:[400],f:\"serif\"},{n:\"Noto Serif Ethiopic\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Georgian\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Grantha\",v:[400],f:\"serif\"},{n:\"Noto Serif Gujarati\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Gurmukhi\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Hebrew\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif JP\",v:[\"200\",\"300\",400,500,600,700,900],f:\"serif\"},{n:\"Noto Serif KR\",v:[\"200\",\"300\",400,500,600,700,900],f:\"serif\"},{n:\"Noto Serif Kannada\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Khmer\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Lao\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Malayalam\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Myanmar\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Nyiakeng Puachue Hmong\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Serif SC\",v:[\"200\",\"300\",400,500,600,700,900],f:\"serif\"},{n:\"Noto Serif Sinhala\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif TC\",v:[\"200\",\"300\",400,500,600,700,900],f:\"serif\"},{n:\"Noto Serif Tamil\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Noto Serif Tangut\",v:[400],f:\"serif\"},{n:\"Noto Serif Telugu\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Thai\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Tibetan\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif Yezidi\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Traditional Nushu\",v:[300,400,500,600,700],f:\"sans-serif\"},{n:\"Nova Cut\",v:[400],f:\"display\"},{n:\"Nova Flat\",v:[400],f:\"display\"},{n:\"Nova Mono\",v:[400],f:\"monospace\"},{n:\"Nova Oval\",v:[400],f:\"display\"},{n:\"Nova Round\",v:[400],f:\"display\"},{n:\"Nova Script\",v:[400],f:\"display\"},{n:\"Nova Slim\",v:[400],f:\"display\"},{n:\"Nova Square\",v:[400],f:\"display\"},{n:\"Numans\",v:[400],f:\"sans-serif\"},{n:\"Nunito\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Nunito Sans\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Nabla\",v:[400],f:\"display\"},{n:\"Noto Color Emoji\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Chorasmian\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Ethiopic\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Lao Looped\",v:[100,200,300,400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Noto Sans Mende Kikakui\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Nag Mundari\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Sans Nandinagari\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans SignWriting\",v:[400],f:\"sans-serif\"},{n:\"Noto Sans Tangsa\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Noto Serif HK\",v:[200,300,400,500,600,700,800,900],f:\"serif\"},{n:\"Noto Serif NP Hmong\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Serif Oriya\",v:[400,500,600,700],f:\"serif\"},{n:\"Noto Serif Toto\",v:[400,500,600,700],f:\"serif\"},{n:\"Nuosu SIL\",v:[400],f:\"serif\"},{n:\"Odibee Sans\",v:[400],f:\"display\"},{n:\"Odor Mean Chey\",v:[400],f:\"serif\"},{n:\"Offside\",v:[400],f:\"display\"},{n:\"Oi\",v:[400],f:\"display\"},{n:\"Old Standard TT\",v:[400,\"400i\",700],f:\"serif\"},{n:\"Oldenburg\",v:[400],f:\"display\"},{n:\"Ole\",v:[400],f:\"handwriting\"},{n:\"Oleo Script\",v:[400,700],f:\"display\"},{n:\"Oleo Script Swash Caps\",v:[400,700],f:\"display\"},{n:\"Oooh Baby\",v:[400],f:\"handwriting\"},{n:\"Open Sans\",v:[\"300\",400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Oranienbaum\",v:[400],f:\"serif\"},{n:\"Orbitron\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Oregano\",v:[400,\"400i\"],f:\"display\"},{n:\"Orelega One\",v:[400],f:\"display\"},{n:\"Orienta\",v:[400],f:\"sans-serif\"},{n:\"Original Surfer\",v:[400],f:\"display\"},{n:\"Oswald\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Outfit\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Over the Rainbow\",v:[400],f:\"handwriting\"},{n:\"Overlock\",v:[400,\"400i\",700,\"700i\",900,\"900i\"],f:\"display\"},{n:\"Overlock SC\",v:[400],f:\"display\"},{n:\"Overpass\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Overpass Mono\",v:[\"300\",400,500,600,700],f:\"monospace\"},{n:\"Ovo\",v:[400],f:\"serif\"},{n:\"Oxanium\",v:[\"200\",\"300\",400,500,600,700,800],f:\"display\"},{n:\"Oxygen\",v:[\"300\",400,700],f:\"sans-serif\"},{n:\"Oxygen Mono\",v:[400],f:\"monospace\"},{n:\"PT Mono\",v:[400],f:\"monospace\"},{n:\"PT Sans\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"PT Sans Caption\",v:[400,700],f:\"sans-serif\"},{n:\"PT Sans Narrow\",v:[400,700],f:\"sans-serif\"},{n:\"PT Serif\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"PT Serif Caption\",v:[400,\"400i\"],f:\"serif\"},{n:\"Pacifico\",v:[400],f:\"handwriting\"},{n:\"Padauk\",v:[400,700],f:\"sans-serif\"},{n:\"Palanquin\",v:[\"100\",\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Palanquin Dark\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Pangolin\",v:[400],f:\"handwriting\"},{n:\"Paprika\",v:[400],f:\"display\"},{n:\"Parisienne\",v:[400],f:\"handwriting\"},{n:\"Passero One\",v:[400],f:\"display\"},{n:\"Passion One\",v:[400,700,900],f:\"display\"},{n:\"Passions Conflict\",v:[400],f:\"handwriting\"},{n:\"Pathway Gothic One\",v:[400],f:\"sans-serif\"},{n:\"Patrick Hand\",v:[400],f:\"handwriting\"},{n:\"Patrick Hand SC\",v:[400],f:\"handwriting\"},{n:\"Pattaya\",v:[400],f:\"sans-serif\"},{n:\"Patua One\",v:[400],f:\"display\"},{n:\"Pavanam\",v:[400],f:\"sans-serif\"},{n:\"Paytone One\",v:[400],f:\"sans-serif\"},{n:\"Peddana\",v:[400],f:\"serif\"},{n:\"Peralta\",v:[400],f:\"display\"},{n:\"Permanent Marker\",v:[400],f:\"handwriting\"},{n:\"Petemoss\",v:[400],f:\"handwriting\"},{n:\"Petit Formal Script\",v:[400],f:\"handwriting\"},{n:\"Petrona\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Philosopher\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Piazzolla\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Piedra\",v:[400],f:\"display\"},{n:\"Pinyon Script\",v:[400],f:\"handwriting\"},{n:\"Pirata One\",v:[400],f:\"display\"},{n:\"Plaster\",v:[400],f:\"display\"},{n:\"Play\",v:[400,700],f:\"sans-serif\"},{n:\"Playball\",v:[400],f:\"display\"},{n:\"Playfair Display\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Playfair Display SC\",v:[400,\"400i\",700,\"700i\",900,\"900i\"],f:\"serif\"},{n:\"Plus Jakarta Sans\",v:[\"200\",\"300\",400,500,600,700,800,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"sans-serif\"},{n:\"Podkova\",v:[400,500,600,700,800],f:\"serif\"},{n:\"Poiret One\",v:[400],f:\"display\"},{n:\"Poller One\",v:[400],f:\"display\"},{n:\"Poly\",v:[400,\"400i\"],f:\"serif\"},{n:\"Pompiere\",v:[400],f:\"display\"},{n:\"Pontano Sans\",v:[300,400,500,600,700],f:\"sans-serif\"},{n:\"Poor Story\",v:[400],f:\"display\"},{n:\"Poppins\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Port Lligat Sans\",v:[400],f:\"sans-serif\"},{n:\"Port Lligat Slab\",v:[400],f:\"serif\"},{n:\"Potta One\",v:[400],f:\"display\"},{n:\"Pragati Narrow\",v:[400,700],f:\"sans-serif\"},{n:\"Praise\",v:[400],f:\"handwriting\"},{n:\"Prata\",v:[400],f:\"serif\"},{n:\"Preahvihear\",v:[400],f:\"sans-serif\"},{n:\"Press Start 2P\",v:[400],f:\"display\"},{n:\"Pridi\",v:[\"200\",\"300\",400,500,600,700],f:\"serif\"},{n:\"Princess Sofia\",v:[400],f:\"handwriting\"},{n:\"Prociono\",v:[400],f:\"serif\"},{n:\"Prompt\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Prosto One\",v:[400],f:\"display\"},{n:\"Proza Libre\",v:[400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"sans-serif\"},{n:\"Public Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Puppies Play\",v:[400],f:\"handwriting\"},{n:\"Puritan\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Purple Purse\",v:[400],f:\"display\"},{n:\"Padyakke Expanded One\",v:[400],f:\"display\"},{n:\"Pathway Extreme\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Phudu\",v:[300,400,500,600,700,800,900],f:\"display\"},{n:\"Playfair\",v:[300,400,500,600,700,800,900,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Poltawski Nowy\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Qahiri\",v:[400],f:\"sans-serif\"},{n:\"Quando\",v:[400],f:\"serif\"},{n:\"Quantico\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Quattrocento\",v:[400,700],f:\"serif\"},{n:\"Quattrocento Sans\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Questrial\",v:[400],f:\"sans-serif\"},{n:\"Quicksand\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Quintessential\",v:[400],f:\"handwriting\"},{n:\"Qwigley\",v:[400],f:\"handwriting\"},{n:\"Qwitcher Grypen\",v:[400,700],f:\"handwriting\"},{n:\"Racing Sans One\",v:[400],f:\"display\"},{n:\"Radio Canada\",v:[300,400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Radley\",v:[400,\"400i\"],f:\"serif\"},{n:\"Rajdhani\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Rakkas\",v:[400],f:\"display\"},{n:\"Raleway\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Raleway Dots\",v:[400],f:\"display\"},{n:\"Ramabhadra\",v:[400],f:\"sans-serif\"},{n:\"Ramaraja\",v:[400],f:\"serif\"},{n:\"Rambla\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Rammetto One\",v:[400],f:\"display\"},{n:\"Rampart One\",v:[400],f:\"display\"},{n:\"Ranchers\",v:[400],f:\"display\"},{n:\"Rancho\",v:[400],f:\"handwriting\"},{n:\"Ranga\",v:[400,700],f:\"display\"},{n:\"Rasa\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Rationale\",v:[400],f:\"sans-serif\"},{n:\"Ravi Prakash\",v:[400],f:\"display\"},{n:\"Readex Pro\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Recursive\",v:[\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Red Hat Display\",v:[\"300\",400,500,600,700,800,900,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Red Hat Mono\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"monospace\"},{n:\"Red Hat Text\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Red Rose\",v:[\"300\",400,500,600,700],f:\"display\"},{n:\"Redacted\",v:[400],f:\"display\"},{n:\"Redacted Script\",v:[\"300\",400,700],f:\"display\"},{n:\"Redressed\",v:[400],f:\"handwriting\"},{n:\"Reem Kufi\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Reenie Beanie\",v:[400],f:\"handwriting\"},{n:\"Reggae One\",v:[400],f:\"display\"},{n:\"Revalia\",v:[400],f:\"display\"},{n:\"Rhodium Libre\",v:[400],f:\"serif\"},{n:\"Ribeye\",v:[400],f:\"display\"},{n:\"Ribeye Marrow\",v:[400],f:\"display\"},{n:\"Righteous\",v:[400],f:\"display\"},{n:\"Risque\",v:[400],f:\"display\"},{n:\"Road Rage\",v:[400],f:\"display\"},{n:\"Roboto\",v:[\"100\",\"100i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",700,\"700i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Roboto Condensed\",v:[\"300\",\"300i\",400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Roboto Flex\",v:[400],f:\"sans-serif\"},{n:\"Roboto Mono\",v:[\"100\",\"200\",\"300\",400,500,600,700,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"monospace\"},{n:\"Roboto Serif\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Roboto Slab\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"serif\"},{n:\"Rochester\",v:[400],f:\"handwriting\"},{n:\"Rock Salt\",v:[400],f:\"handwriting\"},{n:\"RocknRoll One\",v:[400],f:\"sans-serif\"},{n:\"Rokkitt\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Romanesco\",v:[400],f:\"handwriting\"},{n:\"Ropa Sans\",v:[400,\"400i\"],f:\"sans-serif\"},{n:\"Rosario\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"sans-serif\"},{n:\"Rosarivo\",v:[400,\"400i\"],f:\"serif\"},{n:\"Rouge Script\",v:[400],f:\"handwriting\"},{n:\"Rowdies\",v:[\"300\",400,700],f:\"display\"},{n:\"Rozha One\",v:[400],f:\"serif\"},{n:\"Rubik\",v:[\"300\",400,500,600,700,800,900,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Rubik Beastly\",v:[400],f:\"display\"},{n:\"Rubik Bubbles\",v:[400],f:\"display\"},{n:\"Rubik Glitch\",v:[400],f:\"display\"},{n:\"Rubik Microbe\",v:[400],f:\"display\"},{n:\"Rubik Mono One\",v:[400],f:\"sans-serif\"},{n:\"Rubik Moonrocks\",v:[400],f:\"display\"},{n:\"Rubik Puddles\",v:[400],f:\"display\"},{n:\"Rubik Wet Paint\",v:[400],f:\"display\"},{n:\"Ruda\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Rufina\",v:[400,700],f:\"serif\"},{n:\"Ruge Boogie\",v:[400],f:\"handwriting\"},{n:\"Ruluko\",v:[400],f:\"sans-serif\"},{n:\"Rum Raisin\",v:[400],f:\"sans-serif\"},{n:\"Ruslan Display\",v:[400],f:\"display\"},{n:\"Russo One\",v:[400],f:\"sans-serif\"},{n:\"Ruthie\",v:[400],f:\"handwriting\"},{n:\"Rye\",v:[400],f:\"display\"},{n:\"Reem Kufi Fun\",v:[400,500,600,700],f:\"sans-serif\"},{n:\"Reem Kufi Ink\",v:[400],f:\"sans-serif\"},{n:\"Rubik 80s Fade\",v:[400],f:\"display\"},{n:\"Rubik Burned\",v:[400],f:\"display\"},{n:\"Rubik Dirt\",v:[400],f:\"display\"},{n:\"Rubik Distressed\",v:[400],f:\"display\"},{n:\"Rubik Gemstones\",v:[400],f:\"display\"},{n:\"Rubik Iso\",v:[400],f:\"display\"},{n:\"Rubik Marker Hatch\",v:[400],f:\"display\"},{n:\"Rubik Maze\",v:[400],f:\"display\"},{n:\"Rubik Pixels\",v:[400],f:\"display\"},{n:\"Rubik Spray Paint\",v:[400],f:\"display\"},{n:\"Rubik Storm\",v:[400],f:\"display\"},{n:\"Rubik Vinyl\",v:[400],f:\"display\"},{n:\"STIX Two Text\",v:[400,500,600,700,\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Sacramento\",v:[400],f:\"handwriting\"},{n:\"Sahitya\",v:[400,700],f:\"serif\"},{n:\"Sail\",v:[400],f:\"display\"},{n:\"Saira\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Saira Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Saira Extra Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Saira Semi Condensed\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Saira Stencil One\",v:[400],f:\"display\"},{n:\"Salsa\",v:[400],f:\"display\"},{n:\"Sanchez\",v:[400,\"400i\"],f:\"serif\"},{n:\"Sancreek\",v:[400],f:\"display\"},{n:\"Sansita\",v:[400,\"400i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Sansita Swashed\",v:[\"300\",400,500,600,700,800,900],f:\"display\"},{n:\"Sarabun\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"sans-serif\"},{n:\"Sarala\",v:[400,700],f:\"sans-serif\"},{n:\"Sarina\",v:[400],f:\"display\"},{n:\"Sarpanch\",v:[400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Sassy Frass\",v:[400],f:\"handwriting\"},{n:\"Satisfy\",v:[400],f:\"handwriting\"},{n:\"Sawarabi Gothic\",v:[400],f:\"sans-serif\"},{n:\"Sawarabi Mincho\",v:[400],f:\"serif\"},{n:\"Scada\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Scheherazade New\",v:[400,500,600,700],f:\"serif\"},{n:\"Schoolbell\",v:[400],f:\"handwriting\"},{n:\"Scope One\",v:[400],f:\"serif\"},{n:\"Seaweed Script\",v:[400],f:\"display\"},{n:\"Secular One\",v:[400],f:\"sans-serif\"},{n:\"Sedgwick Ave\",v:[400],f:\"handwriting\"},{n:\"Sedgwick Ave Display\",v:[400],f:\"handwriting\"},{n:\"Sen\",v:[400,700,800],f:\"sans-serif\"},{n:\"Send Flowers\",v:[400],f:\"handwriting\"},{n:\"Sevillana\",v:[400],f:\"display\"},{n:\"Seymour One\",v:[400],f:\"sans-serif\"},{n:\"Shadows Into Light\",v:[400],f:\"handwriting\"},{n:\"Shadows Into Light Two\",v:[400],f:\"handwriting\"},{n:\"Shalimar\",v:[400],f:\"handwriting\"},{n:\"Shanti\",v:[400],f:\"sans-serif\"},{n:\"Share\",v:[400,\"400i\",700,\"700i\"],f:\"display\"},{n:\"Share Tech\",v:[400],f:\"sans-serif\"},{n:\"Share Tech Mono\",v:[400],f:\"monospace\"},{n:\"Shippori Antique\",v:[400],f:\"sans-serif\"},{n:\"Shippori Antique B1\",v:[400],f:\"sans-serif\"},{n:\"Shippori Mincho\",v:[400,500,600,700,800],f:\"serif\"},{n:\"Shippori Mincho B1\",v:[400,500,600,700,800],f:\"serif\"},{n:\"Shojumaru\",v:[400],f:\"display\"},{n:\"Short Stack\",v:[400],f:\"handwriting\"},{n:\"Shrikhand\",v:[400],f:\"display\"},{n:\"Siemreap\",v:[400],f:\"display\"},{n:\"Sigmar One\",v:[400],f:\"display\"},{n:\"Signika\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Signika Negative\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Simonetta\",v:[400,\"400i\",900,\"900i\"],f:\"display\"},{n:\"Single Day\",v:[400],f:\"display\"},{n:\"Sintony\",v:[400,700],f:\"sans-serif\"},{n:\"Sirin Stencil\",v:[400],f:\"display\"},{n:\"Six Caps\",v:[400],f:\"sans-serif\"},{n:\"Skranji\",v:[400,700],f:\"display\"},{n:\"Slabo 13px\",v:[400],f:\"serif\"},{n:\"Slabo 27px\",v:[400],f:\"serif\"},{n:\"Slackey\",v:[400],f:\"display\"},{n:\"Smokum\",v:[400],f:\"display\"},{n:\"Smooch\",v:[400],f:\"handwriting\"},{n:\"Smooch Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Smythe\",v:[400],f:\"display\"},{n:\"Sniglet\",v:[400,800],f:\"display\"},{n:\"Snippet\",v:[400],f:\"sans-serif\"},{n:\"Snowburst One\",v:[400],f:\"display\"},{n:\"Sofadi One\",v:[400],f:\"display\"},{n:\"Sofia\",v:[400],f:\"handwriting\"},{n:\"Solway\",v:[\"300\",400,500,700,800],f:\"serif\"},{n:\"Song Myung\",v:[400],f:\"serif\"},{n:\"Sonsie One\",v:[400],f:\"display\"},{n:\"Sora\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Sorts Mill Goudy\",v:[400,\"400i\"],f:\"serif\"},{n:\"Source Code Pro\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"monospace\"},{n:\"Source Sans 3\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Source Sans Pro\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",600,\"600i\",700,\"700i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Source Serif 4\",v:[\"200\",\"300\",400,500,600,700,800,900,\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Source Serif Pro\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",600,\"600i\",700,\"700i\",900,\"900i\"],f:\"serif\"},{n:\"Space Grotesk\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Space Mono\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Special Elite\",v:[400],f:\"display\"},{n:\"Spectral\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"serif\"},{n:\"Spectral SC\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"serif\"},{n:\"Spicy Rice\",v:[400],f:\"display\"},{n:\"Spinnaker\",v:[400],f:\"sans-serif\"},{n:\"Spirax\",v:[400],f:\"display\"},{n:\"Spline Sans\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Squada One\",v:[400],f:\"display\"},{n:\"Square Peg\",v:[400],f:\"handwriting\"},{n:\"Sree Krushnadevaraya\",v:[400],f:\"serif\"},{n:\"Sriracha\",v:[400],f:\"handwriting\"},{n:\"Srisakdi\",v:[400,700],f:\"display\"},{n:\"Staatliches\",v:[400],f:\"display\"},{n:\"Stalemate\",v:[400],f:\"handwriting\"},{n:\"Stalinist One\",v:[400],f:\"display\"},{n:\"Stardos Stencil\",v:[400,700],f:\"display\"},{n:\"Stick\",v:[400],f:\"sans-serif\"},{n:\"Stick No Bills\",v:[\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Stint Ultra Condensed\",v:[400],f:\"display\"},{n:\"Stint Ultra Expanded\",v:[400],f:\"display\"},{n:\"Stoke\",v:[\"300\",400],f:\"serif\"},{n:\"Strait\",v:[400],f:\"sans-serif\"},{n:\"Style Script\",v:[400],f:\"handwriting\"},{n:\"Stylish\",v:[400],f:\"sans-serif\"},{n:\"Sue Ellen Francisco\",v:[400],f:\"handwriting\"},{n:\"Suez One\",v:[400],f:\"serif\"},{n:\"Sulphur Point\",v:[\"300\",400,700],f:\"sans-serif\"},{n:\"Sumana\",v:[400,700],f:\"serif\"},{n:\"Sunflower\",v:[\"300\",500,700],f:\"sans-serif\"},{n:\"Sunshiney\",v:[400],f:\"handwriting\"},{n:\"Supermercado One\",v:[400],f:\"display\"},{n:\"Sura\",v:[400,700],f:\"serif\"},{n:\"Suranna\",v:[400],f:\"serif\"},{n:\"Suravaram\",v:[400],f:\"serif\"},{n:\"Suwannaphum\",v:[\"100\",\"300\",400,700,900],f:\"serif\"},{n:\"Swanky and Moo Moo\",v:[400],f:\"handwriting\"},{n:\"Syncopate\",v:[400,700],f:\"sans-serif\"},{n:\"Syne\",v:[400,500,600,700,800],f:\"sans-serif\"},{n:\"Syne Mono\",v:[400],f:\"monospace\"},{n:\"Syne Tactile\",v:[400],f:\"display\"},{n:\"Schibsted Grotesk\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Shantell Sans\",v:[300,400,500,600,700,800,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\"],f:\"display\"},{n:\"Sigmar\",v:[400],f:\"display\"},{n:\"Silkscreen\",v:[400,700],f:\"display\"},{n:\"Slackside One\",v:[400],f:\"handwriting\"},{n:\"Sofia Sans\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Sofia Sans Condensed\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Sofia Sans Extra Condensed\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Sofia Sans Semi Condensed\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Solitreo\",v:[400],f:\"handwriting\"},{n:\"Sono\",v:[200,300,400,500,600,700,800],f:\"sans-serif\"},{n:\"Splash\",v:[400],f:\"handwriting\"},{n:\"Spline Sans Mono\",v:[300,400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"monospace\"},{n:\"Tajawal\",v:[\"200\",\"300\",400,500,700,800,900],f:\"sans-serif\"},{n:\"Tangerine\",v:[400,700],f:\"handwriting\"},{n:\"Tapestry\",v:[400],f:\"handwriting\"},{n:\"Taprom\",v:[400],f:\"display\"},{n:\"Tauri\",v:[400],f:\"sans-serif\"},{n:\"Taviraj\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"serif\"},{n:\"Teko\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Telex\",v:[400],f:\"sans-serif\"},{n:\"Tenali Ramakrishna\",v:[400],f:\"sans-serif\"},{n:\"Tenor Sans\",v:[400],f:\"sans-serif\"},{n:\"Text Me One\",v:[400],f:\"sans-serif\"},{n:\"Texturina\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Thasadith\",v:[400,\"400i\",700,\"700i\"],f:\"sans-serif\"},{n:\"The Girl Next Door\",v:[400],f:\"handwriting\"},{n:\"The Nautigal\",v:[400,700],f:\"handwriting\"},{n:\"Tienne\",v:[400,700,900],f:\"serif\"},{n:\"Tillana\",v:[400,500,600,700,800],f:\"handwriting\"},{n:\"Timmana\",v:[400],f:\"sans-serif\"},{n:\"Tinos\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Titan One\",v:[400],f:\"display\"},{n:\"Titillium Web\",v:[\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",600,\"600i\",700,\"700i\",900],f:\"sans-serif\"},{n:\"Tomorrow\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"sans-serif\"},{n:\"Tourney\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"display\"},{n:\"Trade Winds\",v:[400],f:\"display\"},{n:\"Train One\",v:[400],f:\"display\"},{n:\"Trirong\",v:[\"100\",\"100i\",\"200\",\"200i\",\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\",900,\"900i\"],f:\"serif\"},{n:\"Trispace\",v:[\"100\",\"200\",\"300\",400,500,600,700,800],f:\"sans-serif\"},{n:\"Trocchi\",v:[400],f:\"serif\"},{n:\"Trochut\",v:[400,\"400i\",700],f:\"display\"},{n:\"Truculenta\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Trykker\",v:[400],f:\"serif\"},{n:\"Tulpen One\",v:[400],f:\"display\"},{n:\"Turret Road\",v:[\"200\",\"300\",400,500,700,800],f:\"display\"},{n:\"Twinkle Star\",v:[400],f:\"handwriting\"},{n:\"Tai Heritage Pro\",v:[400,700],f:\"serif\"},{n:\"Tilt Neon\",v:[400],f:\"display\"},{n:\"Tilt Prism\",v:[400],f:\"display\"},{n:\"Tilt Warp\",v:[400],f:\"display\"},{n:\"Tiro Bangla\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Devanagari Hindi\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Devanagari Marathi\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Devanagari Sanskrit\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Gurmukhi\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Kannada\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Tamil\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tiro Telugu\",v:[400,\"400i\"],f:\"serif\"},{n:\"Tsukimi Rounded\",v:[300,400,500,600,700],f:\"sans-serif\"},{n:\"Ubuntu\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",700,\"700i\"],f:\"sans-serif\"},{n:\"Ubuntu Condensed\",v:[400],f:\"sans-serif\"},{n:\"Ubuntu Mono\",v:[400,\"400i\",700,\"700i\"],f:\"monospace\"},{n:\"Uchen\",v:[400],f:\"serif\"},{n:\"Ultra\",v:[400],f:\"serif\"},{n:\"Uncial Antiqua\",v:[400],f:\"display\"},{n:\"Underdog\",v:[400],f:\"display\"},{n:\"Unica One\",v:[400],f:\"display\"},{n:\"UnifrakturCook\",v:[700],f:\"display\"},{n:\"UnifrakturMaguntia\",v:[400],f:\"display\"},{n:\"Unkempt\",v:[400,700],f:\"display\"},{n:\"Unlock\",v:[400],f:\"display\"},{n:\"Unna\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Updock\",v:[400],f:\"handwriting\"},{n:\"Urbanist\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Unbounded\",v:[200,300,400,500,600,700,800,900],f:\"display\"},{n:\"VT323\",v:[400],f:\"monospace\"},{n:\"Vampiro One\",v:[400],f:\"display\"},{n:\"Varela\",v:[400],f:\"sans-serif\"},{n:\"Varela Round\",v:[400],f:\"sans-serif\"},{n:\"Varta\",v:[\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Vast Shadow\",v:[400],f:\"display\"},{n:\"Vazirmatn\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900],f:\"sans-serif\"},{n:\"Vesper Libre\",v:[400,500,700,900],f:\"serif\"},{n:\"Viaoda Libre\",v:[400],f:\"display\"},{n:\"Vibes\",v:[400],f:\"display\"},{n:\"Vibur\",v:[400],f:\"handwriting\"},{n:\"Vidaloka\",v:[400],f:\"serif\"},{n:\"Viga\",v:[400],f:\"sans-serif\"},{n:\"Voces\",v:[400],f:\"display\"},{n:\"Volkhov\",v:[400,\"400i\",700,\"700i\"],f:\"serif\"},{n:\"Vollkorn\",v:[400,500,600,700,800,900,\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"serif\"},{n:\"Vollkorn SC\",v:[400,600,700,900],f:\"serif\"},{n:\"Voltaire\",v:[400],f:\"sans-serif\"},{n:\"Vujahday Script\",v:[400],f:\"handwriting\"},{n:\"Vina Sans\",v:[400],f:\"display\"},{n:\"Waiting for the Sunrise\",v:[400],f:\"handwriting\"},{n:\"Wallpoet\",v:[400],f:\"display\"},{n:\"Walter Turncoat\",v:[400],f:\"handwriting\"},{n:\"Warnes\",v:[400],f:\"display\"},{n:\"Water Brush\",v:[400],f:\"handwriting\"},{n:\"Waterfall\",v:[400],f:\"handwriting\"},{n:\"Wellfleet\",v:[400],f:\"display\"},{n:\"Wendy One\",v:[400],f:\"sans-serif\"},{n:\"Whisper\",v:[400],f:\"handwriting\"},{n:\"WindSong\",v:[400,500],f:\"handwriting\"},{n:\"Wire One\",v:[400],f:\"sans-serif\"},{n:\"Work Sans\",v:[\"100\",\"200\",\"300\",400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"Wix Madefor Display\",v:[400,500,600,700,800],f:\"sans-serif\"},{n:\"Wix Madefor Text\",v:[400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\",800,\"800i\"],f:\"sans-serif\"},{n:\"Xanh Mono\",v:[400,\"400i\"],f:\"monospace\"},{n:\"Yaldevi\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Yanone Kaffeesatz\",v:[\"200\",\"300\",400,500,600,700],f:\"sans-serif\"},{n:\"Yantramanav\",v:[\"100\",\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Yatra One\",v:[400],f:\"display\"},{n:\"Yellowtail\",v:[400],f:\"handwriting\"},{n:\"Yeon Sung\",v:[400],f:\"display\"},{n:\"Yeseva One\",v:[400],f:\"display\"},{n:\"Yesteryear\",v:[400],f:\"handwriting\"},{n:\"Yomogi\",v:[400],f:\"handwriting\"},{n:\"Yrsa\",v:[\"300\",400,500,600,700,\"300i\",\"400i\",\"500i\",\"600i\",\"700i\"],f:\"serif\"},{n:\"Yuji Boku\",v:[400],f:\"serif\"},{n:\"Yuji Mai\",v:[400],f:\"serif\"},{n:\"Yuji Syuku\",v:[400],f:\"serif\"},{n:\"Yusei Magic\",v:[400],f:\"sans-serif\"},{n:\"Ysabeau\",v:[100,200,300,400,500,600,700,800,900,\"100i\",\"200i\",\"300i\",\"400i\",\"500i\",\"600i\",\"700i\",\"800i\",\"900i\"],f:\"sans-serif\"},{n:\"ZCOOL KuaiLe\",v:[400],f:\"sans-serif\"},{n:\"ZCOOL QingKe HuangYou\",v:[400],f:\"sans-serif\"},{n:\"ZCOOL XiaoWei\",v:[400],f:\"sans-serif\"},{n:\"Zen Antique\",v:[400],f:\"serif\"},{n:\"Zen Antique Soft\",v:[400],f:\"serif\"},{n:\"Zen Dots\",v:[400],f:\"display\"},{n:\"Zen Kaku Gothic Antique\",v:[\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Zen Kaku Gothic New\",v:[\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Zen Kurenaido\",v:[400],f:\"sans-serif\"},{n:\"Zen Loop\",v:[400,\"400i\"],f:\"display\"},{n:\"Zen Maru Gothic\",v:[\"300\",400,500,700,900],f:\"sans-serif\"},{n:\"Zen Old Mincho\",v:[400,500,600,700,900],f:\"serif\"},{n:\"Zen Tokyo Zoo\",v:[400],f:\"display\"},{n:\"Zeyada\",v:[400],f:\"handwriting\"},{n:\"Zhi Mang Xing\",v:[400],f:\"handwriting\"},{n:\"Zilla Slab\",v:[\"300\",\"300i\",400,\"400i\",500,\"500i\",600,\"600i\",700,\"700i\"],f:\"serif\"},{n:\"Zilla Slab Highlight\",v:[400,700],f:\"display\"}]},7763:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7294);const r={};r.left=(0,a.createElement)(\"svg\",{width:24,height:24,xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M4 19.8h8.9v-1.5H4v1.5zm8.9-15.6H4v1.5h8.9V4.2zm-8.9 7v1.5h16v-1.5H4z\"})),r.center=(0,a.createElement)(\"svg\",{width:24,height:24,xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M16.4 4.2H7.6v1.5h8.9V4.2zM4 11.2v1.5h16v-1.5H4zm3.6 8.6h8.9v-1.5H7.6v1.5z\"})),r.right=(0,a.createElement)(\"svg\",{width:24,height:24,xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{d:\"M11.1 19.8H20v-1.5h-8.9v1.5zm0-15.6v1.5H20V4.2h-8.9zM4 12.8h16v-1.5H4v1.5z\"})),r.spacing=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:24,height:24,fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{stroke:\"#1E1E1E\",strokeWidth:\"1.5\",d:\"m10 8-3.3 3.3a1 1 0 0 0 0 1.4L10 16m4-8 3.3 3.3a1 1 0 0 1 0 1.4L14 16m-7.59-4H17.6M20 4v16M4 4v16\"})),r.updateLink=(0,a.createElement)(\"svg\",{style:{height:\"20px\",width:\"20px\"},xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"20\",height:\"20\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fill:\"#070707\",fillRule:\"evenodd\",d:\"M12.95 2.93a5.75 5.75 0 0 1 8.13 8.13v.01l-3 3a5.75 5.75 0 0 1-8.68-.62.75.75 0 0 1 1.2-.9 4.25 4.25 0 0 0 6.41.46l3-3a4.25 4.25 0 0 0-6.02-6l-1.71 1.7a.75.75 0 1 1-1.06-1.06l1.73-1.72Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fill:\"#070707\",fillRule:\"evenodd\",d:\"M7.99 8.6a5.75 5.75 0 0 1 6.61 1.95.75.75 0 1 1-1.2.9 4.25 4.25 0 0 0-6.41-.46l-3 3a4.25 4.25 0 0 0 6.01 6l1.71-1.7a.75.75 0 0 1 1.06 1.06l-1.72 1.72a5.75 5.75 0 0 1-8.13-8.13l.01-.01 3-3a5.75 5.75 0 0 1 2.06-1.32Z\",clipRule:\"evenodd\"})),r.addSubmenu=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"16\",height:\"16\",fill:\"none\",viewBox:\"0 0 16 16\"},(0,a.createElement)(\"g\",{fill:\"#070707\",fillRule:\"evenodd\",clipPath:\"url(#a)\",clipRule:\"evenodd\"},(0,a.createElement)(\"path\",{d:\"M.17 2C.17.99.99.17 2 .17h12c1.01 0 1.83.82 1.83 1.83v1.33c0 1.02-.82 1.84-1.83 1.84H2A1.83 1.83 0 0 1 .17 3.33V2ZM2 1.17a.83.83 0 0 0-.83.83v1.33c0 .46.37.84.83.84h12c.46 0 .83-.38.83-.84V2a.83.83 0 0 0-.83-.83H2ZM5.5 8c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83v.67c0 1-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 8.67V8Zm1.83-.83A.83.83 0 0 0 6.5 8v.67c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83V8a.83.83 0 0 0-.83-.83H7.33ZM5.5 13.33c0-1.01.82-1.83 1.83-1.83h5.34c1 0 1.83.82 1.83 1.83V14c0 1.01-.82 1.83-1.83 1.83H7.33A1.83 1.83 0 0 1 5.5 14v-.67Zm1.83-.83a.83.83 0 0 0-.83.83V14c0 .46.37.83.83.83h5.34c.46 0 .83-.37.83-.83v-.67a.83.83 0 0 0-.83-.83H7.33Z\"}),(0,a.createElement)(\"path\",{d:\"M2.17 13V4.67h1V13c0 .1.07.17.16.17H6.5v1H3.33c-.64 0-1.16-.53-1.16-1.17Z\"}),(0,a.createElement)(\"path\",{d:\"M2.17 7.83H6.5v1H2.17v-1Z\"})),(0,a.createElement)(\"defs\",null,(0,a.createElement)(\"clipPath\",{id:\"a\"},(0,a.createElement)(\"path\",{fill:\"#fff\",d:\"M0 0h16v16H0z\"})))),r.textTab=(0,a.createElement)(\"span\",{className:\"ultp-tab-button\"},(0,a.createElement)(\"svg\",{width:24,height:24,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4 18V6C4 4.89543 4.89543 4 6 4H14.8639C15.3943 4 15.903 4.21071 16.2781 4.58579L19.4142 7.72191C19.7893 8.09698 20 8.60569 20 9.13612V18C20 19.1046 19.1046 20 18 20H6C4.89543 20 4 19.1046 4 18Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M8 15H16\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M8 12H16\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"path\",{d:\"M8 9H14\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"})),(0,a.createElement)(\"span\",null,\"Text\")),r.style=(0,a.createElement)(\"span\",{className:\"ultp-tab-button\"},(0,a.createElement)(\"svg\",{width:24,height:24,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"circle\",{cx:\"16.25\",cy:\"9.25\",r:\"1.25\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z\",fill:\"#1E1E1E\"})),(0,a.createElement)(\"span\",null,\"Style\")),r.settings3=(0,a.createElement)(\"span\",{className:\"ultp-tab-button\"},(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M20.0733 7.98829L19.5027 6.9982C19.02 6.16044 17.9503 5.87144 17.1114 6.35213C16.7121 6.58737 16.2356 6.65411 15.787 6.53764C15.3384 6.42116 14.9546 6.13103 14.7201 5.73123C14.5693 5.47711 14.4882 5.18767 14.4852 4.89218C14.4988 4.41843 14.3201 3.95934 13.9897 3.61951C13.6593 3.27967 13.2055 3.08802 12.7316 3.08821H11.5821C11.1177 3.08821 10.6725 3.27323 10.345 3.60234C10.0175 3.93145 9.83459 4.37752 9.83682 4.84183C9.82306 5.80049 9.04195 6.57039 8.08319 6.57029C7.7877 6.56722 7.49826 6.48617 7.24414 6.33535C6.40523 5.85465 5.33553 6.14366 4.85284 6.98142L4.24033 7.98829C3.75822 8.825 4.04329 9.89403 4.87801 10.3796C5.42059 10.6928 5.75483 11.2718 5.75483 11.8983C5.75483 12.5248 5.42059 13.1037 4.87801 13.417C4.04435 13.8993 3.75897 14.9657 4.24033 15.7999L4.81927 16.7984C5.04543 17.2064 5.42489 17.5076 5.87369 17.6351C6.32248 17.7627 6.8036 17.7061 7.21058 17.478C7.61067 17.2445 8.08743 17.1806 8.5349 17.3003C8.98238 17.4201 9.36347 17.7136 9.59349 18.1157C9.74431 18.3698 9.82536 18.6592 9.82843 18.9547C9.82843 19.9232 10.6136 20.7083 11.5821 20.7083H12.7316C13.6968 20.7083 14.4806 19.9283 14.4852 18.9631C14.4829 18.4973 14.667 18.05 14.9963 17.7206C15.3257 17.3913 15.773 17.2073 16.2388 17.2095C16.5336 17.2174 16.8218 17.2981 17.0779 17.4444C17.9146 17.9265 18.9836 17.6415 19.4692 16.8067L20.0733 15.7999C20.3071 15.3985 20.3713 14.9205 20.2516 14.4717C20.1319 14.0228 19.8382 13.6402 19.4356 13.4086C19.033 13.1769 18.7393 12.7943 18.6196 12.3455C18.4999 11.8967 18.5641 11.4186 18.7979 11.0173C18.95 10.7518 19.1701 10.5317 19.4356 10.3796C20.2653 9.89429 20.5497 8.83151 20.0733 7.99668V7.98829Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12.1606 14.3147C13.4952 14.3147 14.5771 13.2329 14.5771 11.8983C14.5771 10.5637 13.4952 9.4818 12.1606 9.4818C10.826 9.4818 9.74414 10.5637 9.74414 11.8983C9.74414 13.2329 10.826 14.3147 12.1606 14.3147Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),(0,a.createElement)(\"span\",null,\"Settings\")),r.add=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:22,height:24,viewBox:\"0 0 22 24\",fill:\"none\"},(0,a.createElement)(\"g\",{clipPath:\"url(#clip0_16_9344)\"},(0,a.createElement)(\"path\",{d:\"M15.7131 0.87241C16.6876 0.87241 17.4896 1.67503 17.4896 2.66957V17.6401C17.4896 18.626 16.6962 19.4373 15.7131 19.4373H2.63896C1.66445 19.4373 0.862407 18.6347 0.862407 17.6401V2.66957C0.862407 1.68375 1.65582 0.87241 2.63896 0.87241H15.7131ZM15.7131 0H2.63896C1.1815 0 0 1.1952 0 2.66957V17.6401C0 19.1145 1.1815 20.3097 2.63896 20.3097H15.7131C17.1705 20.3097 18.352 19.1145 18.352 17.6401V2.66957C18.352 1.1952 17.1705 0 15.7131 0Z\",fill:\"black\"}),(0,a.createElement)(\"path\",{d:\"M19.2921 10.2683H11.1337C9.63817 10.2683 8.42578 11.4948 8.42578 13.0077V21.2607C8.42578 22.7736 9.63817 24 11.1337 24H19.2921C20.7877 24 22.0001 22.7736 22.0001 21.2607V13.0077C22.0001 11.4948 20.7877 10.2683 19.2921 10.2683Z\",fill:\"black\"}),(0,a.createElement)(\"path\",{d:\"M15.7047 13.9934H14.7129V20.2835H15.7047V13.9934Z\",fill:\"white\"}),(0,a.createElement)(\"path\",{d:\"M18.3264 16.6282H12.1084V17.6314H18.3264V16.6282Z\",fill:\"white\"})),(0,a.createElement)(\"defs\",null,(0,a.createElement)(\"clipPath\",{id:\"clip0_16_9344\"},(0,a.createElement)(\"rect\",{width:22,height:24,fill:\"white\"})))),r.setting=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",role:\"img\",\"aria-hidden\":\"true\",focusable:\"false\"},(0,a.createElement)(\"path\",{d:\"M14.5 13.8c-1.1 0-2.1.7-2.4 1.8H4V17h8.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20v-1.5h-3.1c-.3-1-1.3-1.7-2.4-1.7zM11.9 7c-.3-1-1.3-1.8-2.4-1.8S7.4 6 7.1 7H4v1.5h3.1c.3 1 1.3 1.8 2.4 1.8s2.1-.7 2.4-1.8H20V7h-8.1z\"})),r.styleIcon=(0,a.createElement)(\"svg\",{width:24,height:24,viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",style:{fill:\"white\"}},(0,a.createElement)(\"path\",{d:\"M19.9753 10C20.1346 11.5 19.6219 12.5 18.6219 13.5C16.6219 15.5 12.5451 14.2091 11.73 15C10.9148 15.791 11.73 16.8594 12.7008 17.4873C14.2468 18.4873 13.7314 19.9873 12.2453 20.0001C7.69166 20.0391 4 16 4 12C4 7.58197 7.69149 4 12.2453 4C16.7991 4 19.7128 7.52818 19.9753 10Z\",stroke:\"#1E1E1E\",strokeWidth:\"1.5\"}),(0,a.createElement)(\"circle\",{cx:\"16.25\",cy:\"9.25\",r:\"1.25\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M14 7C14 7.69036 13.4404 8.25 12.75 8.25C12.0596 8.25 11.5 7.69036 11.5 7C11.5 6.30964 12.0596 5.75 12.75 5.75C13.4404 5.75 14 6.30964 14 7Z\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M10 8.25C10 8.94036 9.44036 9.5 8.75 9.5C8.05964 9.5 7.5 8.94036 7.5 8.25C7.5 7.55964 8.05964 7 8.75 7C9.44036 7 10 7.55964 10 8.25Z\",fill:\"#1E1E1E\"}),(0,a.createElement)(\"path\",{d:\"M8.5 12C8.5 12.6904 7.94036 13.25 7.25 13.25C6.55964 13.25 6 12.6904 6 12C6 11.3096 6.55964 10.75 7.25 10.75C7.94036 10.75 8.5 11.3096 8.5 12Z\",fill:\"#1E1E1E\"})),r.chatgpt=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",style:{fill:\"#10a37f\"},width:\"25\",height:\"25.06\",viewBox:\"0 0 25 25.06\"},(0,a.createElement)(\"path\",{\"data-name\":\"Path 146\",d:\"M24.795 12.941a6.153 6.153 0 0 0-1.519-2.7A6.07 6.07 0 0 0 22.8 5.1a6.327 6.327 0 0 0-6.88-2.917A6.28 6.28 0 0 0 5.139 4.471 6.223 6.223 0 0 0 .846 7.45a6.137 6.137 0 0 0 .862 7.358 6.07 6.07 0 0 0 .479 5.138 6.281 6.281 0 0 0 6.88 2.91A6.278 6.278 0 0 0 19.851 20.6a6.23 6.23 0 0 0 4.293-2.979 6.092 6.092 0 0 0 .651-4.682m-4.888 5.947v-6.22a.639.639 0 0 0-.285-.621L13.913 8.82l2.061-1.17L20.8 10.4a4.636 4.636 0 0 1 2.209 2.854 4.566 4.566 0 0 1-.475 3.517 4.662 4.662 0 0 1-2.185 1.943c-.146.063-.3.122-.446.178M5.083 6.178v6.2a.624.624 0 0 0 .279.622l5.708 3.226L9.011 17.4l-4.852-2.752a4.639 4.639 0 0 1-2.21-2.854 4.562 4.562 0 0 1 .473-3.514 4.687 4.687 0 0 1 1.784-1.736 4.551 4.551 0 0 1 .877-.367m11.268.023a.714.714 0 0 0-.707 0L9.855 9.5V7.1l4.92-2.748a4.79 4.79 0 0 1 6.485 1.721 4.574 4.574 0 0 1 .616 2.648c-.014.19-.039.393-.07.58zm-3.859 3.47 2.637 1.5v2.756l-2.637 1.457-2.631-1.5v-2.741zM8.8 6.067a.684.684 0 0 0-.3.624v6.4l-2.082-1.137V6.587a1.017 1.017 0 0 0 0-.112 4.75 4.75 0 0 1 7.364-3.911 6.33 6.33 0 0 1 .547.412zm-5.614 9.692 5.448 3.1a.713.713 0 0 0 .707 0l5.8-3.294v2.4l-4.927 2.729a4.79 4.79 0 0 1-6.485-1.713 4.573 4.573 0 0 1-.588-2.917c.013-.1.031-.2.05-.3m13 3.226a.647.647 0 0 0 .3-.627v-6.4l2.07 1.137v5.367a.637.637 0 0 0 0 .112 4.75 4.75 0 0 1-7.441 3.851 7.315 7.315 0 0 1-.467-.356z\",transform:\"translate(0 .001)\"})),r.fs_comment=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"50\",height:\"50.003\",viewBox:\"0 0 50 50.003\"},(0,a.createElement)(\"path\",{id:\"Path_2150\",\"data-name\":\"Path 2150\",d:\"M25,11.6c-21.64,0-25,2.79-25,20.8C0,46.131,1.963,51.017,12.476,52.567V61.6l10.646-8.4c.611.005,1.235.008,1.878.008,21.65,0,25-2.8,25-20.81S46.65,11.6,25,11.6m0,18.04a2.765,2.765,0,1,1-2.76,2.76A2.768,2.768,0,0,1,25,29.642m-9.53,0a2.765,2.765,0,1,1-2.76,2.76,2.768,2.768,0,0,1,2.76-2.76m19.06,5.53A2.765,2.765,0,1,1,37.3,32.4a2.768,2.768,0,0,1-2.77,2.77\",transform:\"translate(0 -11.602)\",fill:\"#037FFF\"})),r.fs_comment_selected=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"70\",height:\"70\",viewBox:\"0 0 70 70\"},(0,a.createElement)(\"g\",{id:\"Group_4357\",\"data-name\":\"Group 4357\",transform:\"translate(-221.11 2002)\"},(0,a.createElement)(\"path\",{id:\"Path_2154\",\"data-name\":\"Path 2154\",d:\"M172.35,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2155\",\"data-name\":\"Path 2155\",d:\"M181.88,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2156\",\"data-name\":\"Path 2156\",d:\"M191.41,30.8a2.765,2.765,0,1,1-2.77-2.76,2.77,2.77,0,0,1,2.77,2.76\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2157\",\"data-name\":\"Path 2157\",d:\"M204.65,0H153.58a9.468,9.468,0,0,0-9.47,9.46V60.54A9.468,9.468,0,0,0,153.58,70h51.07a9.46,9.46,0,0,0,9.46-9.46V9.46A9.46,9.46,0,0,0,204.65,0M179.11,51.61c-.64,0-1.26,0-1.87-.01L166.59,60V50.96c-10.51-1.55-12.48-6.43-12.48-20.16,0-18.01,3.36-20.8,25-20.8s25,2.79,25,20.8-3.35,20.81-25,20.81\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}))),r.fs_suggestion=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"50.001\",height:\"49.997\",viewBox:\"0 0 50.001 49.997\"},(0,a.createElement)(\"g\",{id:\"Group_4358\",\"data-name\":\"Group 4358\",transform:\"translate(-137.503 1994.592)\"},(0,a.createElement)(\"path\",{id:\"Path_2151\",\"data-name\":\"Path 2151\",d:\"M104.722,20.306H89.545V24.08a4.274,4.274,0,0,1-4.267,4.267H76.261a4.218,4.218,0,0,1-1.812-.424,4.272,4.272,0,0,1-4.107,3.166h-6.1V51.623A5.773,5.773,0,0,0,70.021,57.4h34.7a5.78,5.78,0,0,0,5.782-5.782V26.1a5.789,5.789,0,0,0-5.782-5.793M90.13,47.791H76.835a1.692,1.692,0,0,1,0-3.384H90.13a1.692,1.692,0,0,1,0,3.384m7.778-7.915H76.835a1.692,1.692,0,0,1,0-3.384H97.908a1.692,1.692,0,0,1,0,3.384\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2152\",\"data-name\":\"Path 2152\",d:\"M86.1,24.077V15.065a.827.827,0,0,0-.827-.827H80.619a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194h-2a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366v9.646a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}),(0,a.createElement)(\"path\",{id:\"Path_2153\",\"data-name\":\"Path 2153\",d:\"M71.169,26.82V17.808a.827.827,0,0,0-.827-.827H65.684a.827.827,0,0,1-.742-1.193l2.2-4.443a.827.827,0,0,0-.741-1.194H64.392a.827.827,0,0,0-.741.461l-3.062,6.2a.83.83,0,0,0-.086.366V26.82a.827.827,0,0,0,.827.827h9.012a.827.827,0,0,0,.827-.827\",transform:\"translate(77 -2002)\",fill:\"#037FFF\"}))),r.fs_suggestion_selected=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"70\",height:\"70\",viewBox:\"0 0 70 70\"},(0,a.createElement)(\"path\",{id:\"Path_2158\",\"data-name\":\"Path 2158\",d:\"M329.38,0H278.3a9.46,9.46,0,0,0-9.46,9.46V60.54A9.46,9.46,0,0,0,278.3,70h51.08a9.466,9.466,0,0,0,9.46-9.46V9.46A9.466,9.466,0,0,0,329.38,0M293.77,17.03a.779.779,0,0,1,.09-.37l3.06-6.2a.834.834,0,0,1,.74-.46h2.01a.833.833,0,0,1,.74,1.2l-2.2,4.44a.825.825,0,0,0,.74,1.19h4.66a.828.828,0,0,1,.83.83v9.01a.828.828,0,0,1-.83.83H294.6a.828.828,0,0,1-.83-.83ZM278.84,29.41V19.77a.946.946,0,0,1,.08-.37l3.06-6.19a.82.82,0,0,1,.75-.46h2a.825.825,0,0,1,.74,1.19l-2.19,4.44a.826.826,0,0,0,.74,1.2h4.66a.824.824,0,0,1,.82.82v9.01a.826.826,0,0,1-.82.83h-9.02a.826.826,0,0,1-.82-.83m50,24.81A5.783,5.783,0,0,1,323.06,60H288.35a5.77,5.77,0,0,1-5.78-5.78V33.68h6.11a4.26,4.26,0,0,0,4.1-3.16,4.257,4.257,0,0,0,1.81.42h9.02a4.274,4.274,0,0,0,4.27-4.27V22.9h15.18a5.791,5.791,0,0,1,5.78,5.79Zm-12.6-15.13H295.17a1.69,1.69,0,1,0,0,3.38h21.07a1.69,1.69,0,1,0,0-3.38M308.46,47H295.17a1.7,1.7,0,0,0,0,3.39h13.29a1.7,1.7,0,0,0,0-3.39\",transform:\"translate(-268.84)\",fill:\"#037FFF\"})),r.grid_col1=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"22\",height:\"22\",viewBox:\"0 0 22 22\",fill:\"currentColor\"},(0,a.createElement)(\"g\",{transform:\"translate(-770 -381)\"},(0,a.createElement)(\"rect\",{width:\"10\",height:\"10\",transform:\"translate(770 381)\"}),(0,a.createElement)(\"rect\",{width:\"10\",height:\"10\",transform:\"translate(770 393)\"}),(0,a.createElement)(\"rect\",{width:\"10\",height:\"10\",transform:\"translate(782 381)\"}),(0,a.createElement)(\"rect\",{width:\"10\",height:\"10\",transform:\"translate(782 393)\"}))),r.grid_col2=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"22\",height:\"22\",viewBox:\"0 0 22 22\",fill:\"currentColor\"},(0,a.createElement)(\"g\",{transform:\"translate(-858 -381)\"},(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(858 381)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(858 389)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(858 397)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(866 381)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(866 389)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(866 397)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(874 381)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(874 389)\"}),(0,a.createElement)(\"rect\",{width:\"6\",height:\"6\",transform:\"translate(874 397)\"}))),r.grid_col3=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"22\",height:\"22\",viewBox:\"0 0 22 22\"},(0,a.createElement)(\"g\",{transform:\"translate(-909 -381)\"},(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(909 381)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(909 387)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(909 393)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(909 399)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(915 381)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(915 387)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(915 393)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(915 399)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(921 381)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(921 387)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(921 393)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(921 399)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(927 381)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(927 387)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(927 393)\"}),(0,a.createElement)(\"rect\",{width:\"4\",height:\"4\",transform:\"translate(927 399)\"}))),r.rocketPro=(0,a.createElement)(\"svg\",{width:\"16\",height:\"16\",viewBox:\"0 0 16 16\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M10.7991 7.20004C9.69681 7.20004 8.7993 6.30253 8.7993 5.20024C8.7993 4.09795 9.69681 3.20044 10.7991 3.20044C11.9014 3.20044 12.7989 4.09795 12.7989 5.20024C12.7989 6.30253 11.9014 7.20004 10.7991 7.20004ZM10.7991 4.00036C10.1376 4.00036 9.59922 4.53871 9.59922 5.20024C9.59922 5.86177 10.1376 6.40012 10.7991 6.40012C11.4606 6.40012 11.999 5.86177 11.999 5.20024C11.999 4.53871 11.4606 4.00036 10.7991 4.00036ZM0.400132 15.9992C0.335857 15.9993 0.272494 15.984 0.215433 15.9544C0.158371 15.9248 0.109297 15.8819 0.0723848 15.8292C0.0354726 15.7766 0.0118133 15.7159 0.00341887 15.6521C-0.00497556 15.5884 0.00214312 15.5236 0.0241696 15.4632C1.25525 12.0788 2.54952 10.3621 3.87019 10.3621C4.30615 10.3621 4.7133 10.5493 5.08207 10.9173C5.66441 11.4996 5.68521 12.0796 5.60042 12.4635C5.33324 13.6698 3.62941 14.8513 0.536919 15.976C0.49303 15.9917 0.446764 15.9998 0.400132 16V15.9992ZM3.87099 11.1612C3.47503 11.1612 3.00867 11.5084 2.52312 12.1651C2.04557 12.8107 1.56562 13.7306 1.09286 14.9065C2.16076 14.4769 3.01907 14.041 3.65181 13.6066C4.50533 13.0203 4.7581 12.5667 4.81969 12.2899C4.88129 12.0132 4.7821 11.7484 4.51652 11.4828C4.30055 11.2668 4.08937 11.162 3.87019 11.162L3.87099 11.1612Z\",fill:\"white\"}),(0,a.createElement)(\"path\",{d:\"M15.5986 0.00079992C13.5228 0.00079992 11.6734 0.352765 10.1 1.0471C8.80329 1.61984 7.693 2.42296 6.79949 3.43566C6.63311 3.62444 6.47872 3.81562 6.33554 4.0076C5.64601 4.05319 4.94048 4.32757 4.23655 4.82352C3.64061 5.24268 3.04227 5.82342 2.45673 6.54894C1.47282 7.76802 0.868084 8.9703 0.842486 9.0207C0.800011 9.10558 0.789106 9.2028 0.81172 9.29498C0.834335 9.38716 0.888995 9.4683 0.96593 9.52388C1.04287 9.57947 1.13706 9.60588 1.23168 9.5984C1.3263 9.59092 1.41518 9.55003 1.48242 9.48305C1.48642 9.47905 1.86878 9.10309 2.52072 8.73433C3.05826 8.43036 3.88698 8.07279 4.88928 8.0096C5.14286 8.65833 5.86838 9.43426 6.21635 9.78222C6.56431 10.1302 7.34024 10.8557 7.98897 11.1093C7.92578 12.1116 7.56821 12.9403 7.26425 13.4779C6.89468 14.1306 6.51952 14.5121 6.51632 14.5153C6.45032 14.5828 6.41026 14.6714 6.40318 14.7655C6.3961 14.8596 6.42247 14.9532 6.47763 15.0298C6.5328 15.1064 6.61322 15.1611 6.70473 15.1842C6.79625 15.2073 6.89297 15.1973 6.97787 15.1561C7.02827 15.1305 8.23055 14.5257 9.44963 13.5418C10.1752 12.9563 10.7559 12.358 11.1751 11.762C11.671 11.0573 11.9446 10.3526 11.991 9.66303C12.1822 9.52065 12.3733 9.36626 12.5629 9.19908C13.5756 8.30557 14.3787 7.19528 14.9515 5.89861C15.6458 4.32597 15.9978 2.47575 15.9978 0.39996V0H15.5978L15.5986 0.00079992ZM2.48552 7.84641C3.24785 6.74013 4.41333 5.36826 5.7268 4.93711C5.20765 5.84661 4.93888 6.68173 4.84209 7.21128C4.02236 7.26546 3.22145 7.48132 2.48552 7.84641ZM8.15376 13.5114C8.51883 12.7761 8.73444 11.9757 8.78809 11.1565C9.31684 11.0597 10.1528 10.7909 11.0615 10.2726C10.6295 11.5836 9.25845 12.7491 8.15296 13.5114H8.15376ZM12.0342 8.59994C10.3703 10.0678 8.64731 10.3998 8.39933 10.3998C8.39773 10.3998 8.23375 10.3966 7.79219 10.0854C7.48422 9.86861 7.12506 9.55984 6.78269 9.21748C6.44033 8.87511 6.13156 8.51595 5.91478 8.20798C5.60361 7.76642 5.60041 7.60244 5.60041 7.60084C5.60041 7.35286 5.93238 5.62984 7.40023 3.966C9.15686 1.9758 11.8454 0.887111 15.1947 0.806319C15.1139 4.15558 14.026 6.84411 12.035 8.60074L12.0342 8.59994Z\",fill:\"white\"})),r.subtract=(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M5 12H19\",stroke:\"#070707\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.rightMark=(0,a.createElement)(\"svg\",{width:\"14\",height:\"11\",viewBox:\"0 0 14 11\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M1 5L5 9L13 1\",stroke:\"#5ECA70\",strokeWidth:\"1.5\"})),r.plus=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M12 19.8c-.4 0-.8-.3-.8-.8v-6.2H5c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h6.2V5c0-.4.3-.8.8-.8s.8.3.8.8v6.2H19c.4 0 .8.3.8.8s-.3.8-.8.8h-6.2V19c0 .4-.4.8-.8.8z\"})),r.delete=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M18.2 6.5H16c-.4 0-.8-.3-1-.7l-.3-1c-.1-.4-.5-.7-1-.7h-3.5c-.4 0-.8.3-1 .7l-.2 1c-.1.4-.5.7-1 .7H5.8c-.5 0-.8.3-.8.7s.3.8.8.8h12.5c.4 0 .7-.3.7-.8s-.3-.7-.8-.7zM12.5 16.5c0 .3-.2.5-.5.5s-.5-.2-.5-.5V9H6l1.3 9.3c.1 1 1 1.7 2 1.7h5.5c1 0 1.8-.7 2-1.7L18 9h-5.5v7.5z\"})),r.edit=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},(0,a.createElement)(\"path\",{d:\"M19.3 18.1h-5.9c-.4 0-.8.3-.8.8s.3.8.8.8h5.9c.4 0 .8-.3.8-.8s-.4-.8-.8-.8zM16.2 11c1.5-1.9 1.5-2 1.6-2 .4-.6.5-1.2.3-1.9-.1-.7-.6-1.2-1.1-1.5 0 0-1.3-1-1.4-1.1-1.1-.9-2.7-.7-3.6.4l-7.7 9.6c-.3.4-.5 1.1-.3 1.7l.7 2.8c.1.3.4.6.7.6h3c.6 0 1.2-.3 1.6-.8 3.2-4.1 5.1-6.4 6.2-7.8zm-1.5-5.3s1.4 1.1 1.5 1.2c.2.1.4.4.5.6.1.3 0 .5-.1.7 0 .1-.4.6-1.1 1.3L12.3 7l.9-1.2c.4-.4 1-.5 1.5-.1zM8.8 17.8c-.1.1-.3.2-.5.2H5.9l-.5-2.2c0-.2 0-.4.1-.5l5.8-7.2 3.2 2.5c-1.7 2.2-4.1 5.3-5.7 7.2z\"})),r.duplicate=(0,a.createElement)(\"svg\",{xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\",width:\"24\",height:\"24\",fill:\"none\",viewBox:\"0 0 24 24\"},(0,a.createElement)(\"path\",{fill:\"currentColor\",fillRule:\"evenodd\",d:\"M11 9.75c-.69 0-1.25.56-1.25 1.25v9c0 .69.56 1.25 1.25 1.25h9c.69 0 1.25-.56 1.25-1.25v-9c0-.69-.56-1.25-1.25-1.25h-9ZM8.25 11A2.75 2.75 0 0 1 11 8.25h9A2.75 2.75 0 0 1 22.75 11v9A2.75 2.75 0 0 1 20 22.75h-9A2.75 2.75 0 0 1 8.25 20v-9Z\",clipRule:\"evenodd\"}),(0,a.createElement)(\"path\",{fill:\"currentColor\",fillRule:\"evenodd\",d:\"M4 2.75A1.25 1.25 0 0 0 2.75 4v9A1.25 1.25 0 0 0 4 14.25h1a.75.75 0 0 1 0 1.5H4A2.75 2.75 0 0 1 1.25 13V4A2.75 2.75 0 0 1 4 1.25h9A2.75 2.75 0 0 1 15.75 4v1a.75.75 0 0 1-1.5 0V4A1.25 1.25 0 0 0 13 2.75H4Z\",clipRule:\"evenodd\"})),r.tabLongArrowRight=(0,a.createElement)(\"svg\",{width:\"33\",height:\"8\",viewBox:\"0 0 33 8\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M32.8536 4.35355C33.0488 4.15829 33.0488 3.84171 32.8536 3.64645L29.6716 0.464466C29.4763 0.269204 29.1597 0.269204 28.9645 0.464466C28.7692 0.659728 28.7692 0.976311 28.9645 1.17157L31.7929 4L28.9645 6.82843C28.7692 7.02369 28.7692 7.34027 28.9645 7.53553C29.1597 7.7308 29.4763 7.7308 29.6716 7.53553L32.8536 4.35355ZM0.5 4V4.5H32.5V4V3.5H0.5V4Z\",fill:\"currentColor\"})),r.saveLine=(0,a.createElement)(\"svg\",{width:\"16\",height:\"16\",viewBox:\"0 0 16 16\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3 8.66667L6.33333 12L13 4\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.rightAngle=(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M17.9333 12.8C18.4667 12.4 18.4667 11.6 17.9333 11.2L8.6 4.2C7.94076 3.70557 7 4.17595 7 5V19C7 19.824 7.94076 20.2944 8.6 19.8L17.9333 12.8Z\",fill:\"currentColor\"})),r.arrowRight=(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3 12H20M14 5L21 12L14 19\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.arrowLeft=(0,a.createElement)(\"svg\",{width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M21 12H4M10 5L3 12L10 19\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.fiveStar=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M9.18029 2.60415C9.5027 1.90962 10.4975 1.90962 10.8199 2.60415L12.6 6.43897C12.7314 6.72197 13.0016 6.91689 13.3134 6.95362L17.5362 7.45111C18.3006 7.54117 18.6078 8.47852 18.043 8.99753L14.9193 11.8678C14.6892 12.0792 14.5862 12.394 14.6473 12.6992L15.4762 16.8444C15.6261 17.5942 14.8215 18.1737 14.1496 17.7999L10.4414 15.7375C10.1673 15.585 9.83291 15.585 9.55876 15.7375L5.8506 17.7999C5.17864 18.1737 4.37404 17.5942 4.52397 16.8444L5.35289 12.6992C5.41393 12.394 5.31093 12.0792 5.08084 11.8678L1.95716 8.99753C1.39232 8.47852 1.69954 7.54117 2.464 7.45111L6.68675 6.95362C6.99858 6.91689 7.26875 6.72197 7.40012 6.43897L9.18029 2.60415Z\",stroke:\"currentColor\",strokeWidth:\"1.31579\",strokeLinejoin:\"round\"})),r.knowledgeBase=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4.16667 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V7.35702C17.5 6.915 17.3244 6.49107 17.0118 6.17851L13.8215 2.98816C13.5089 2.67559 13.085 2.5 12.643 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V15.8333C2.5 16.7538 3.24619 17.5 4.16667 17.5Z\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.6665 7.5L9.99984 7.5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.6665 10L13.3332 10\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.6665 12.5L11.6665 12.5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.commentCount2=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M16.6667 3.33325H3.33341C2.41294 3.33325 1.66675 4.07944 1.66675 4.99992V12.4999C1.66675 13.4204 2.41294 14.1666 3.33341 14.1666H7.08341V17.4999L11.2501 14.1666H16.6667C17.5872 14.1666 18.3334 13.4204 18.3334 12.4999V4.99992C18.3334 4.07944 17.5872 3.33325 16.6667 3.33325Z\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M6.66675 9.16659L6.66675 8.33325\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M10 9.16659L10 8.33325\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M13.3333 9.16659L13.3333 8.33325\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.customerSupport=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4.1665 7.5C4.1665 4.73857 6.77818 2.5 9.99984 2.5C13.2215 2.5 15.8332 4.73857 15.8332 7.5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15.8333 14.1667V15.8334C15.8333 16.7539 15.0872 17.5001 14.1667 17.5001H10\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M3.42064 7.99896L2.038 8.91951C1.80593 9.07401 1.6665 9.33434 1.6665 9.61317V12.0538C1.6665 12.3327 1.80593 12.593 2.038 12.7475L3.42064 13.6681C3.88395 13.9765 4.47696 14.0133 4.97485 13.7645C5.50087 13.5016 5.83317 12.964 5.83317 12.376V9.29101C5.83317 8.70301 5.50087 8.16542 4.97485 7.90253C4.47696 7.65369 3.88395 7.69048 3.42064 7.99896Z\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15.0248 7.90253C15.5227 7.65369 16.1158 7.69048 16.579 7.99896L17.9617 8.91951C18.1938 9.07401 18.3332 9.33434 18.3332 9.61317V12.0538C18.3332 12.3327 18.1938 12.593 17.9617 12.7475L16.579 13.6681C16.1158 13.9765 15.5227 14.0133 15.0248 13.7645C14.4988 13.5016 14.1665 12.964 14.1665 12.376V9.29101C14.1665 8.70301 14.4988 8.16542 15.0248 7.90253Z\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.facebook=(0,a.createElement)(\"svg\",{width:\"20\",height:\"20\",viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M4.16667 1.875C2.90101 1.875 1.875 2.90101 1.875 4.16667V15.8333C1.875 17.099 2.90101 18.125 4.16667 18.125H9.51011V12.2281H7.91667V9.86675H9.51011V8.84924C9.51011 6.2191 10.7004 5 13.2825 5C13.7721 5 14.6168 5.09601 14.9624 5.19201V7.33258C14.78 7.31338 14.4632 7.3038 14.0696 7.3038C12.8026 7.3038 12.313 7.78373 12.313 9.03161V9.86675H14.8371L14.4034 12.2281H12.313V18.125H15.8333C17.099 18.125 18.125 17.099 18.125 15.8333V4.16667C18.125 2.90101 17.099 1.875 15.8333 1.875H4.16667Z\",fill:\"currentColor\"})),r.typography=(0,a.createElement)(\"svg\",{viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"rect\",{x:\"2.5\",y:\"2.5\",width:\"15\",height:\"15\",rx:\"1.66667\",stroke:\"currentColor\",strokeWidth:\"1.25\"}),(0,a.createElement)(\"path\",{d:\"M5.83203 7.91671V6.66671C5.83203 6.20647 6.20513 5.83337 6.66536 5.83337H13.332C13.7923 5.83337 14.1654 6.20647 14.1654 6.66671V7.91671M9.9987 5.83337V14.1667M7.91536 14.1667H12.082\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"})),r.reload=(0,a.createElement)(\"svg\",{viewBox:\"0 0 24 24\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M3.43552 16C4.90822 18.9634 7.96628 21 11.5 21C16.4706 21 20.5 16.9706 20.5 12C20.5 7.02944 16.4706 3 11.5 3C7.96628 3 4.90822 5.03656 3.43552 8M8.5 8.5H3V3\",stroke:\"currentColor\",strokeWidth:\"1.5\",strokeLinecap:\"round\",strokeLinejoin:\"round\"})),r.border=(0,a.createElement)(\"svg\",{viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"path\",{d:\"M8.33398 2.5H11.6673\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M2.5 11.6666L2.5 8.33329\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8.33398 17.5H11.6673\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.5 11.6666L17.5 8.33329\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M5 2.5H4.16667C3.24619 2.5 2.5 3.24619 2.5 4.16667V5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M5 17.5H4.16667C3.24619 17.5 2.5 16.7538 2.5 15.8333V15\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15 2.5H15.8333C16.7538 2.5 17.5 3.24619 17.5 4.16667V5\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15 17.5H15.8333C16.7538 17.5 17.5 16.7538 17.5 15.8333V15\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\"})),r.boxShadow=(0,a.createElement)(\"svg\",{viewBox:\"0 0 20 20\",fill:\"none\",xmlns:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"},(0,a.createElement)(\"rect\",{x:\"2.5\",y:\"2.5\",width:\"12.5\",height:\"12.5\",rx:\"0.833333\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M15 5H16.6667C17.1269 5 17.5 5.3731 17.5 5.83333V6.66667\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M5 15V16.6667C5 17.1269 5.3731 17.5 5.83333 17.5H6.66667\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.5007 15.8333V16.6666C17.5007 17.1268 17.1276 17.4999 16.6673 17.4999H15.834\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M8.75 17.5H10.2083\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M12.291 17.5H13.7493\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.5 8.75V10.2083\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}),(0,a.createElement)(\"path\",{d:\"M17.5 12.2916V13.75\",stroke:\"currentColor\",strokeWidth:\"1.25\",strokeLinecap:\"round\",strokeLinejoin:\"round\"}));const o=r},2044:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>r});const a={example:{source:\"db-postx-featurename\",medium:\"block-feature\",campaign:\"postx-dashboard\"},db_hellobar:{source:\"db-postx-hellobar\",medium:\"summer-sale\",campaign:\"postx-dashboard\"},explore_pro_feature:{source:\"db-postx-wizard\",medium:\"explore-features\",campaign:\"postx-dashboard\"},ticket_support:{source:\"db-postx-wizard\",medium:\"ticket-support\",campaign:\"postx-dashboard\"},postx_doc:{source:\"db-postx-wizard\",medium:\"postx-doc\",campaign:\"postx-dashboard\"},addons_popup:{source:\"db-postx-addons\",medium:\"popup\",campaign:\"postx-dashboard\"},builder_popup:{source:\"db-postx-builder\",medium:\"popup-upgrade-pro\",campaign:\"postx-dashboard\"},block_docs:{source:\"db-postx-editor\",medium:\"block-docs\",campaign:\"postx-dashboard\"},blockProFeat:{source:\"db-postx-editor\",medium:\"pro-features\",campaign:\"postx-dashboard\"},blockUpgrade:{source:\"db-postx-editor\",medium:\"block-pro\",campaign:\"postx-dashboard\"},blockPatternPro:{source:\"db-postx-editor\",medium:\"blocks-premade\",campaign:\"postx-dashboard\"},blockProLay:{source:\"db-postx-editor\",medium:\"pro-layout\",campaign:\"postx-dashboard\"},wizardPatternPro:{source:\"db-postx-wizard\",medium:\"core_features-patterns\",campaign:\"postx-dashboard\"},wizardStaterPackPro:{source:\"db-postx-wizard\",medium:\"core_features-SP\",campaign:\"postx-dashboard\"},slider_2:{source:\"db-postx-editor\",medium:\"slider2-pro\",campaign:\"postx-dashboard\"},advanced_search:{source:\"db-postx-editor\",medium:\"adv_search-pro\",campaign:\"postx-dashboard\"},customFont:{source:\"db-postx-editor\",medium:\"custom-font\",campaign:\"postx-dashboard\"},dc:{source:\"db-postx-editor\",medium:\"acf-pro\",campaign:\"postx-dashboard\"},postx_dashboard_settings:{source:\"db-postx-setting\",medium:\"upgrade-pro-sidebar\",campaign:\"postx-dashboard\"},postx_dashboard_tutorials:{source:\"db-postx-tutorial\",medium:\"tutorials-upgrade_to_pro\",campaign:\"postx-dashboard\"},postx_dashboard_tutorialsdocs:{source:\"db-postx-tutorial\",medium:\"tutorials-doc\",campaign:\"postx-dashboard\"},menu_save_temp_pro:{source:\"db-postx-save-template\",medium:\"popup-upgrade\",campaign:\"postx-dashboard\"},settingsFR:{source:\"db-postx-setting\",medium:\"settings-upgrade-pro\",campaign:\"postx-dashboard\"},tutorialsFR:{source:\"db-postx-tutorial\",medium:\"tutorials-FR\",campaign:\"postx-dashboard\"},editor_darklight:{source:\"db-postx-editor\",medium:\"darklight-pro\",campaign:\"postx-dashboard\"},final_hour_sale:{source:\"db-postx-hellobar\",medium:\"final-hour-sale\",campaign:\"postx-dashboard\"},massive_sale:{source:\"db-postx-hellobar\",medium:\"massive-sale\",campaign:\"postx-dashboard\"},flash_sale:{source:\"db-postx-hellobar\",medium:\"flash-sale\",campaign:\"postx-dashboard\"},exclusive_deals:{source:\"db-postx-hellobar\",medium:\"exclusive-deals\",campaign:\"postx-dashboard\"},black_friday_sale:{source:\"db-postx-hellobar\",medium:\"black-friday\",campaign:\"postx-dashboard\"},new_year_sale:{source:\"db-postx-hellobar\",medium:\"new-year-sale\",campaign:\"postx-dashboard\"}},r=e=>{const{url:t,utmKey:n,affiliate:r,hash:o}=e,i=new URL(t||\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F\"),l=a[n];return l&&(i.searchParams.set(\"utm_source\",l.source),i.searchParams.set(\"utm_medium\",l.medium),i.searchParams.set(\"utm_campaign\",l.campaign)),r&&i.searchParams.set(\"ref\",r),o&&(i.hash=o.startsWith(\"#\")?o:`#${o}`),i.toString()}},6511:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>u});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o),l=n(1667),s=n.n(l),p=new URL(n(4975),n.b),c=i()(r()),d=s()(p);c.push([e.id,`.ultp-gettingstart-message{display:grid;grid-template-columns:440px auto;gap:30px;align-items:center;justify-content:space-between}@media only screen and (max-width: 1200px){.ultp-gettingstart-message{grid-template-columns:1fr 1fr}}.ultp-gettingstart-message .ultp-start-left{position:relative;line-height:0;height:100%}.ultp-gettingstart-message .ultp-start-left img{width:100%;height:100%;border-radius:4px}@media only screen and (max-width: 1400px){.ultp-gettingstart-message .ultp-start-left img{object-fit:cover}}.ultp-gettingstart-message .ultp-start-left .ultp-start-content{position:absolute;flex-direction:column;gap:20px;display:flex;bottom:24px;left:24px;line-height:normal}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-text{color:#fff;font-size:18px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns{display:flex;align-items:center;flex-wrap:wrap;gap:12px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-primary-button,.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button{padding:10px 20px;font-size:14px;border-radius:4px}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button{background:unset;border:1px solid #fff;color:#fff !important;font-weight:600}.ultp-gettingstart-message .ultp-start-left .ultp-start-content .ultp-start-btns .ultp-secondary-button:hover{background:unset}.ultp-gettingstart-message .ultp-start-right{display:grid;grid-template-columns:1fr 1fr;height:100%}@media only screen and (max-width: 1200px){.ultp-gettingstart-message .ultp-start-right{grid-template-columns:1fr}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content{background:#fff;padding:24px 32px;border-radius:0 4px 4px 0;display:flex;flex-direction:column;justify-content:center}@media only screen and (min-width: 1200px)and (max-width: 1360px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content{padding:24px 15px}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-title{color:#091f36;font-size:16px;font-weight:600;margin-bottom:8px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-title._pro{font-size:20px;margin-bottom:12px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description{margin-bottom:22px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description._pro{color:#070707;margin-bottom:32px}@media only screen and (min-width: 1200px)and (max-width: 1300px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-description{display:none}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists{display:flex;flex-direction:column;gap:5px;margin-bottom:22px}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists .ultp-list{display:flex;align-items:center;gap:7px;color:#070707;font-weight:500;font-size:14px}@media only screen and (min-width: 1200px)and (max-width: 1300px){.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-lists .ultp-list{font-size:12px}}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-upgrade-btn{background:linear-gradient(180deg, #ea5e40, transparent) #e36f16;padding:12px 25px;border-radius:4px;font-size:14px;margin-bottom:15px;display:flex;align-items:center;gap:10px;width:fit-content;cursor:pointer;text-decoration:none;color:#fff}.ultp-gettingstart-message .ultp-start-right .ultp-dashboard-content .ultp-upgrade-btn:hover{background:linear-gradient(180deg, #e36f16, transparent) #ea5e40}.ultp-gettingstart-message .ultp-dashborad-banner{width:100%;position:relative;line-height:0}@media only screen and (max-width: 1200px){.ultp-gettingstart-message .ultp-dashborad-banner{display:none}}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container{max-width:25%;position:absolute;left:0;right:0;top:0;bottom:0;margin:auto;max-height:fit-content;cursor:pointer;height:fit-content}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container .ultp-play-icon{max-width:100%}.ultp-gettingstart-message .ultp-dashborad-banner .ultp-play-icon-container .ultp-animate{-webkit-animation:pulse 1.2s ease infinite;animation:pulse 1.2s ease infinite;background:var(--postx-primary-color);position:absolute;width:100%;height:100%;left:0;right:0;top:0;bottom:0;margin:auto;border-radius:100%}.ultp-gettingstart-message .ultp-dashborad-banner img.ultp-banner-img{max-width:100%;height:100%;border-radius:4px 0 0 4px}@media only screen and (max-width: 1420px){.ultp-gettingstart-message .ultp-dashborad-banner img.ultp-banner-img{object-fit:cover}}@-webkit-keyframes pulse{0%{opacity:0;transform:scale(1, 1)}50%{opacity:.3}100%{transform:scale(1.5);opacity:0}}@keyframes pulse{0%{opacity:0;transform:scale(1, 1)}50%{opacity:.3}100%{transform:scale(1.5);opacity:0}}.ultp-dashboard-addons-container{display:flex;flex-direction:column;gap:50px}.ultp-dashboard-addons-container .ultp-addon-parent-heading.mt{margin-top:50px}.ultp-dashboard-addons-container .ultp-addon-parent-heading{margin-bottom:32px;color:#070707;font-size:24px;font-weight:600}.ultp-dashboard-addons-container .ultp-addon-parent-heading>span{color:var(--postx-primary-color)}.ultp-dashboard-addons-container .ultp-addons-grid{display:grid;justify-content:space-between;grid-template-columns:1fr 1fr;gap:30px;position:relative}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item{display:flex;flex-direction:column;justify-content:space-between;padding:unset !important;position:relative;overflow:hidden;border:1px solid #e6e6e6;border-radius:8px;background:#fbfbfb}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item img{height:24px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .dashicons{height:unset;width:unset;line-height:unset;font-size:16px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-new-tag{font-weight:500;font-size:10px;color:#070707;padding:4px 8px;background:#ffbd42;border-radius:24px;padding:4px 8px;height:fit-content;line-height:10px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-shortcode-copy{cursor:copy}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents{padding:24px;position:relative}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name{display:flex;gap:12px;align-items:center;margin-bottom:16px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name .name{font-size:20px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-addon-item-name .ultp-addon-item-title{font-weight:500;display:flex;align-items:center;gap:8px;line-height:24px}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock{position:absolute;top:0;left:0}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock span{position:absolute;top:4px;left:2px;font-weight:600;font-size:12px;transform:rotate(315deg);color:#fff}.ultp-dashboard-addons-container .ultp-addons-grid .ultp-addon-item .ultp-addon-item-contents .ultp-pro-lock::after{content:\"\";width:42px;height:42px;background-image:url(${d});display:block}.ultp-dashboard-addons-container .ultp-addons-container-grid{display:grid;grid-template-columns:auto 360px;gap:32px}.ultp-dashboard-addons-container .ultp-addons-container-grid.ultp-gs{display:block}.ultp-dashboard-addons-container .ultp-addons-container-grid .ultp-addons-items{display:flex;gap:32px;flex-direction:column}.ultp-dashboard-addons-container .ultp-addon-item-actions{display:flex;align-items:center;justify-content:space-between;padding:16px 24px;border-top:1px solid #eaedf2}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action{display:flex;justify-content:space-between;align-items:center;gap:6px}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip{display:flex;align-items:center;text-decoration:none;gap:6px;border:1px solid #e6e6e6;padding:2px 6px;color:#6e6e6e;font-size:14px;font-weight:500;border-radius:4px;transition:400ms}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip svg{width:14px;height:14px}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .ultp-option-tooltip:hover{color:#070707;font-weight:500;border:1px solid #070707}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .dashicons,.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action a{font-size:14px;color:#575a5d;cursor:pointer}.ultp-dashboard-addons-container .ultp-addon-item-actions>.ultp-docs-action .dashicons-admin-collapse{transform:rotate(180deg)}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting{position:relative;height:20px !important;width:20px !important;margin-left:10px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting svg{color:#6e6e6e;cursor:pointer;opacity:1}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting svg:hover{color:#070707}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-popup-setting::before{position:absolute;left:-12px;font-size:30px;top:-13px;border-left:1px solid #eaedf2;padding-left:9px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings{width:150%;height:100vh;background-color:rgba(0,0,0,.5);position:fixed;top:0%;right:10%;transition:.5s;z-index:999}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup{height:100%;width:600px;position:fixed;z-index:99;top:32px;right:0px;margin:0 auto;border-radius:4px;box-sizing:border-box;background-color:var(--postx-white-color);box-shadow:0 1px 2px 0 rgba(8,68,129,.2);overflow-x:hidden;transition:.5s}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup::-webkit-scrollbar{display:none}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-addon-settings-title{padding:15px 20px;background:#e3f1ff;position:sticky;top:0;z-index:1}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form{display:flex;flex-direction:column;justify-content:space-between;height:100%;position:relative}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-body{position:relative;padding:40px 40px 30px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer{text-align:center;background:#e3f1ff;padding:16px;position:sticky;bottom:32px}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer .onloading{cursor:no-drop}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addon-settings-footer .onloading svg{height:14px;width:14px;vertical-align:middle;margin-left:4px;animation:ultp-spin 1s linear infinite;color:#fff}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup form .ultp-addons-setting-save{color:var(--postx-white-color);cursor:pointer;width:600px;border:none;position:fixed;right:0;bottom:0;padding:10px 25px;background:var(--postx-primary-color)}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close{position:fixed;top:40px;right:11px;color:var(--postx-white-color);font-size:25px;cursor:pointer;border:none;padding:0px 9px 3px;background-color:var(--postx-dark-color);z-index:99}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close::after{content:\"×\"}.ultp-dashboard-addons-container .ultp-addon-item-actions .ultp-addon-settings .ultp-addon-settings-popup .ultp-popup-close:hover{background:red}.addons_promotions{margin-top:40px;border:1px solid #b9cff0;background-color:#e0ecff;padding:30px;border-radius:4px;text-align:center;font-size:16px;color:#091f36}.addons_promotions.ultp-gs{max-width:80%;margin-left:auto;margin-right:auto}.addons_promotions .addons_promotions_label{line-height:20px;font-size:16px}.addons_promotions .addons_promotions_btns{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-top:15px}.addons_promotions .addons_promotions_btns .addons_promotions_btn{padding:6px 12px;border-radius:4px;cursor:pointer;font-size:12px}.addons_promotions .addons_promotions_btns .addons_promotions_btn.btn1{background:#07cc92;color:#fff;text-decoration:none}.addons_promotions .addons_promotions_btns .addons_promotions_btn.btn2{background:#fff;color:#000;text-decoration:none}.ultp_dash_key_features{margin-top:60px;margin-bottom:30px}.ultp_dash_key_features .ultp_dash_key_features_content{display:grid;grid-template-columns:repeat(4, 1fr);gap:20px;margin-top:30px}.ultp_dash_key_features .ultp_dash_key_features_label{font-size:18px;font-weight:600;margin-bottom:10px;color:#091f36}.ultp_dash_key_features .ultp-description{font-size:14px}.ultp-description{color:#4a4a4a;font-size:14px}.ultp-description-notice{margin-top:5px;color:#e68429}.ultp-plugin-required{font-size:14px;text-align:center;display:inline-block;padding:20px 0px 0;color:var(--postx-warning-button-color);margin-top:-16px}@media only screen and (max-width: 1200px){.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp_dash_key_features .ultp_dash_key_features_content{grid-template-columns:1fr 1fr 1fr}}@media only screen and (max-width: 1100px){.ultp-dashboard-addons-container .ultp-addons-container-grid{grid-template-columns:auto}.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 768px){.ultp-dashboard-addons-container .ultp-addons-container-grid{grid-template-columns:auto}.addons_promotions.ultp-gs{max-width:100%}.ultp-gettingstart-message{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid{grid-template-columns:1fr}.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(2, 1fr)}.ultp_dash_key_features .ultp_dash_key_features_content{grid-template-columns:1fr}}@media only screen and (max-width: 425px){.ultp-dashboard-addons-container .ultp-addons-grid.ultp-gs{grid-template-columns:repeat(1, 1fr)}}.ultp-addon-group{background:#fff;border-radius:8px;padding:32px}`,\"\"]);const u=c},3038:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-dashboard-blocks-container{display:flex;flex-direction:column;gap:50px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .frequency{margin-bottom:0px !important}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{margin-top:20px;display:grid;gap:30px;grid-template-columns:1fr 1fr 1fr}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item{display:flex;justify-content:space-between;padding:20px 15px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-item-meta{display:flex;gap:10px;align-items:center;font-size:16px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-item-meta img{height:25px;width:25px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option{display:flex;align-items:center;gap:10px}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option a{text-decoration:none}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option .ultp-option-tooltip{display:flex;align-items:center;text-decoration:none;gap:3px;font-size:14px;color:#575a5d}.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks .ultp-dashboard-group-blocks-item .ultp-blocks-control-option .ultp-option-tooltip .dashicons{height:unset;width:unset;line-height:unset;font-size:14px;color:#575a5d}@media only screen and (max-width: 1350px){.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 990px){.ultp-dashboard-blocks-container .ultp-dashboard-blocks-group .ultp-dashboard-group-blocks{grid-template-columns:1fr}}\",\"\"]);const l=i},725:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-builder-dashboard__content{width:100%;margin:0;display:grid;grid-template-columns:200px 1fr}.ultp-builder-dashboard__content .ultp-builder-tab__content{display:flex;flex-direction:column;justify-content:flex-start}.ultp-builder-dashboard__content .ultp-builder-tab__content .ultp-tab__content{height:100%}.ultp-builder-tab__option{background:#edf6ff;border:1px solid rgba(3,127,255,.03);min-height:100vh;border-radius:4px 0 0 4px}.ultp-builder-tab__option ul{padding:0px;margin:0px}.ultp-builder-tab__option ul li{font-size:14px;cursor:pointer;color:#091f36;padding:12px 0px 12px 30px;display:flex;align-items:center;transition:400ms}.ultp-builder-tab__option ul li.active,.ultp-builder-tab__option ul li.active *{color:var(--postx-primary-color);background-color:var(--postx-white-color)}.ultp-builder-tab__option ul li:hover,.ultp-builder-tab__option ul li:hover *{color:var(--postx-primary-color)}.ultp-builder-tab__option ul li img{margin-right:8px;height:20px;text-align:left}.ultp-builder-tab__option ul li span{margin-right:8px;font-size:24px;text-align:left;display:block;line-height:1;height:auto}.ultp-builder-tab__option ul ul li{padding-left:50px}.ultp-builder-tab__option .ultp-popup-sync{font-size:14px;cursor:pointer;display:flex;align-items:center;transition:400ms;padding:12px 0px 12px 30px;margin-bottom:0}.ultp-builder-tab__option .ultp-popup-sync i{margin-right:4px;font-size:25px;height:auto;width:auto}.ultp-builder-tab__option .ultp-popup-sync:hover,.ultp-builder-tab__option .ultp-popup-sync:hover *{color:var(--postx-primary-color)}.ultp-builder-tab__content .ultp-builder-tab__heading{display:flex;align-items:center;justify-content:space-between;padding:0 0 20px 30px;max-height:30px}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title .heading{display:inline-block;font-size:18px;text-transform:capitalize}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title span{margin-right:20px;padding-right:20px;border-right:1px solid #575a5d;font-size:18px;cursor:pointer;color:#575a5d}.ultp-builder-tab__content .ultp-builder-tab__heading .ultp-builder-heading__title span svg{height:12px;width:14px;color:#575a5d;margin-right:5px}.ultp-builder-tab__content .ultp-tab__content{display:none !important;opacity:0;transition:.3s;padding:30px;background:var(--postx-white-color);border-radius:0 4px 4px 0;box-shadow:0 1px 2px 0 rgba(8,68,129,.2)}.ultp-builder-tab__content .ultp-tab__content.active{display:block !important;opacity:100;transition:.3s}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab{display:flex;flex-direction:column;gap:20px}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper{background:#f6f8fa;padding:15px 20px 15px 20px;border-radius:4px;border:solid 1px #eaedf2}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading{display:flex;align-items:center;flex-wrap:wrap;gap:15px;justify-content:space-between}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta{display:flex;gap:15px;color:#172c41}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta>div{font-size:14px;font-weight:normal;margin:0px !important}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__meta>div>span{font-weight:600;text-transform:capitalize}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__content div{display:flex;align-items:center;justify-content:space-between}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control{display:flex;gap:12px;position:relative;min-height:26px;align-items:center}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a{text-decoration:none;font-size:13px;color:#575a5d;display:flex;align-items:center;justify-content:center;text-transform:capitalize}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a span{font-size:12px;color:#091f36;height:auto}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control a.status{min-width:56px}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-dashboard__action{line-height:1.2;cursor:pointer}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-action__active{position:absolute;top:52px;cursor:pointer;right:-20px;padding:10px 36px;background:#f9f9f9;box-shadow:4px 6px 12px -10px #000;z-index:9999}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-builder-action__active .dashicons{font-size:18px;top:3px;position:relative}.ultp-builder-tab__content .ultp-tab__content .ultp-template-list__tab .ultp-template-list__wrapper .ultp-template-list__heading .ultp-template-list__control .ultp-condition__edit{padding:5px 10px;border-radius:2px;font-size:12px;border:none;color:#fff;cursor:pointer;background-color:#091f36}.ultp-builder-tab__content .ultp-builder-items{display:grid;gap:30px;grid-template-columns:1fr 1fr 1fr}.ultp-builder-tab__content .ultp-builder-items .newScreen{border-radius:4px;border:solid 1px #eaedf2;background-color:#fff}.ultp-builder-tab__content .ultp-builder-items .newScreen .listInfo{padding:8px 12px;border-bottom:solid 1px #eaedf2;text-transform:capitalize;margin-bottom:12px}.ultp-builder-tab__content .ultp-builder-items .newScreen .listInfo .ultp_h6{font-size:16px;font-weight:500}.ultp-builder-tab__content .ultp-builder-items .newScreen .listOverlays{height:250px}.ultp-builder-tab__content .ultp-builder-items .newScreen .listOverlays img{height:100%;object-fit:fill}.premadeScreen .ultp-item-list{border-radius:4px;border:solid 1px #eaedf2;background-color:#fff}.premadeScreen .ultp-item-list .listInfo{padding:10px;display:flex;justify-content:space-between;align-items:center;border-bottom:solid 1px #eaedf2;text-transform:capitalize;flex-wrap:wrap;row-gap:10px}.premadeScreen .ultp-item-list .listInfo .title{font-size:14px;color:#091f36;font-weight:500}.premadeScreen .ultp-item-list .listInfo .title .parent{font-weight:400;font-size:12px;color:rgba(9,31,54,.67)}.premadeScreen .ultp-item-list .listInfo .btnImport{display:flex;align-items:center;border-radius:4px;background-image:linear-gradient(#18dd5c, #0c8d20);padding:5px 10px;color:#fff;font-size:12px}.premadeScreen .ultp-item-list .listInfo .btnImport svg{height:12px;color:#fff;margin-right:6px}.premadeScreen .ultp-item-list .listInfo .btnImport span{color:#fff}.premadeScreen .ultp-item-list .listInfo .ultp-upgrade-pro-btn{font-size:12px;padding:5px 10px}.premadeScreen .ultp-item-list .listOverlay{box-sizing:border-box;position:relative;line-height:0;padding:10px}.premadeScreen .ultp-item-list .listOverlay img{border-radius:4px}.premadeScreen.ultp-builder-items.ultpheader .bg-image-aspect,.premadeScreen.ultp-builder-items.ultpfooter .bg-image-aspect{aspect-ratio:1.8}.premadeScreen.ultp-builder-items.ultpheader .ultp-list-blank-img img,.premadeScreen.ultp-builder-items.ultpfooter .ultp-list-blank-img img{max-height:190px}.premadeScreen.ultp-builder-items.ultpheader .dashicons-visibility,.premadeScreen.ultp-builder-items.ultpfooter .dashicons-visibility{font-size:50px}.ultp-builder-items .ultp-item-list img{width:100%;max-width:100%}.ultp-item-list{position:relative}.ultp-premade-item{transition:.3s}.ultp-premade-item:hover{box-shadow:1px 4px 18px -12px #000}.ultp-list-white-overlay{cursor:pointer;font-weight:600;width:100%;height:100%;justify-content:center;align-items:center;top:0;left:0;position:absolute;display:flex;align-items:center;color:var(--postx-primary-color);font-size:12px}.ultp-list-white-overlay .dashicons{margin-right:15px;font-size:32px;display:block;height:auto;color:var(--postx-primary-color)}.ultp-condition-wrapper{z-index:100000;position:fixed;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;background:rgba(0,0,0,.7)}.ultp-condition-wrapper .ultp-condition-popup{max-width:700px;width:100%;position:relative;background:#fff;padding:40px 60px;border-radius:4px;height:fit-content;max-height:90%;overflow:unset !important;margin:50px auto 0}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close{position:absolute;top:0;right:-52px;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff;transition:400ms}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close svg{color:#000}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close:hover{background:red}.ultp-condition-wrapper .ultp-condition-popup .ultp-save-close:hover svg{color:#fff}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content{display:flex;gap:30px;align-items:center;justify-content:center;flex-wrap:wrap;position:relative}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap{height:450px;width:100%;display:flex;flex-direction:column;align-items:center;overflow-y:scroll !important;-ms-overflow-style:none;scrollbar-width:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap-heading{margin-bottom:14px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap::-webkit-scrollbar{display:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-items{width:600px;margin-top:20px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .btnCondition{margin-top:20px;color:#fff;border-radius:4px;background-color:#091f36;padding:8px 16px;border:none;cursor:pointer}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition_cancel{cursor:pointer;position:absolute;right:-30px;color:#de1010;font-size:24px;line-height:.7;transition:400ms}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition_cancel:hover{color:#c00a0a}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields,.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap__field{display:flex;align-items:center;position:relative;width:100%}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-wrap__field{background:#fff;margin-top:15px;border:1px solid #eaedf2;border-radius:2px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields{padding:0px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields select{color:#575a5d;border:none;margin-right:0;padding-top:7px;padding-bottom:7px;border-right:1px solid #eaedf2;border-radius:0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-fields select:last-child{border-right:none;width:100%;max-width:100%}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__label{display:inline-flex;align-items:center;background:#7c8084;padding:4px 8px;border-radius:2px;color:#fff}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__label::-webkit-scrollbar{display:none}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown{text-align:left;width:100%;display:flex;align-items:center;position:relative}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-condition-text{width:100%;display:inline-flex;padding:0 10px 0 10px;align-items:center}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-condition-text .ultp-condition-arrow{font-size:15px;display:inline-block;padding-left:15px;line-height:1.5}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown span{cursor:pointer}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown .ultp-dropdown-value__close{color:#fff;background:#000;margin-left:8px;border-radius:50%;font-size:14px;line-height:1;height:auto;width:auto}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__default{width:100%;display:block;padding:12px 0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__content{width:100%;display:flex;align-items:center;justify-content:space-between}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-dropdown__content .ultp-condition-arrow{top:3px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search{background:#fff;position:absolute;left:0;z-index:1;top:39px;width:100%;padding:10px;border-radius:0;box-sizing:border-box;border:1px solid #eaedf2}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search input{width:100%;border-radius:2px;min-height:34px;border:1px solid #eaedf2}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search li{cursor:pointer;text-align:left;margin-bottom:12px}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-condition-wrap .ultp-condition-search li:last-child{margin-bottom:0}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-save-condition{width:100%;font-size:14px;position:sticky;bottom:0;color:#fff;border-radius:4px;padding:15px;border:none;cursor:pointer;background-image:linear-gradient(#399aff, #016cdb)}.ultp-condition-wrapper .ultp-condition-popup .ultp-modal-content .ultp-save-condition span{font-size:17px;margin-left:4px;color:#fff}.ultp-builder-items .ultp-premade-img__blank{height:100%;display:flex;align-items:center;justify-content:center;padding:20px}.ultp-premade-img__blank img{max-height:395px}.ultp-list-blank-img img{opacity:.1}.ultp-list-blank-img a{text-decoration:none !important}@media only screen and (max-width: 1100px){.ultp-builder-dashboard__content{gap:20px;grid-template-columns:auto}.ultp-builder-dashboard__content .ultp-builder-tab__option{min-width:300px;width:fit-content;min-height:fit-content}.ultp-builder-tab__content .ultp-builder-items{grid-template-columns:1fr 1fr}}.ultp-builder-create-btn{text-transform:capitalize}\",\"\"]);const l=i},5735:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'@media only screen and (max-width: 1350px){.ultp-menu-items div{margin:0px 10px 0 0}}@media only screen and (max-width: 1250px){.ultp-menu-items div a:after{bottom:-2px;height:2px}}.dash-faq-container{min-width:170px}.dash-faq-container a{text-decoration:none;font-size:14px;color:#575a5d;display:flex;gap:8px;align-items:center;width:-webkit-fill-available;padding-right:32px}.dash-faq-container a:focus{box-shadow:none}.dash-faq-container a .dashicons{padding-top:2px}.dash-faq-container a:hover{color:var(--postx-primary-color)}.dash-faq-container{display:flex;flex-direction:column;gap:15px;padding:25px;position:absolute;right:20px;top:70px;border-radius:2px;box-shadow:0 2px 4px 0 rgba(8,68,129,.2);background-color:#fff;z-index:1}.dash-faq-container::before{content:\"\";content:\"\";position:absolute;right:0px;top:-29px;font:normal 42px dashicons;color:#fff}.ultp-dashboard-container-grid{display:grid;grid-template-columns:auto 424px;gap:32px}@media only screen and (max-width: 1250px){.ultp-dashboard-container-grid{display:flex;flex-direction:column}}@media only screen and (max-width: 1250px){.ultp-dashboard-container-grid{display:flex;flex-direction:column}}.ultp-dashboard-container-grid .ultp-dashboard-content{display:flex;gap:32px;flex-direction:column}.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-banner,.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-pro-promo,.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-blocks{padding:32px}.ultp-dashboard-container-grid .ultp-dashboard-content .ultp-dash-item-con{box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863)}.ultp-dash-banner{padding:32px;display:flex;gap:80px;justify-content:space-between}@media screen and (max-width: 758px){.ultp-dash-banner{padding:16px;flex-direction:column-reverse;gap:8px;width:fit-content}}.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-title{font-weight:600;font-size:24px;line-height:32px;color:#070707}@media screen and (max-width: 768px){.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-title{font-size:18px;display:inline-block}}.ultp-dash-banner .ultp-dash-banner-left .ultp-dash-banner-description{max-width:365px;font-size:16px;line-height:24px;color:#41474e;margin-top:14px}.ultp-dash-banner .ultp-dash-banner-left .ultp-primary-alter-button{padding:10px 24px;margin-top:32px}.ultp-dash-banner .ultp-dash-banner-right{width:352px}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img{position:relative}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img img{max-width:100%}@keyframes pulse-border{0%{box-shadow:0 0 0 5px rgba(241,19,108,.6)}70%{box-shadow:0 0 0 15px rgba(255,67,142,0)}100%{box-shadow:0 0 0 5px rgba(255,67,142,0)}}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img .ultp-dash-banner-right-play-button{cursor:pointer;width:64px;height:64px;border-radius:50%;background-color:#fff;display:flex;align-items:center;justify-content:center;position:absolute;top:50%;right:50%;transform:translate(50%, -50%);animation:pulse-border 1.2s ease-in infinite}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-img .ultp-dash-banner-right-play-button svg{width:24px;height:24px;color:#070707;margin-top:-1px;margin-left:1px}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-video{width:352px;height:240px;border-radius:8px;overflow:hidden;box-shadow:0px 0px 42.67px 0px rgba(212,212,221,.4784313725)}.ultp-dash-banner .ultp-dash-banner-right .ultp-dash-banner-right-video iframe{width:100%;height:100%}.ultp-dash-pro-promo{padding:32px;background-color:#fff;display:flex;gap:80px;justify-content:space-between}@media only screen and (max-width: 1400px){.ultp-dash-pro-promo{flex-direction:column-reverse;gap:24px}}@media only screen and (max-width: 758px){.ultp-dash-pro-promo{flex-direction:column-reverse;gap:24px;padding:16px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-title{font-weight:600;font-size:24px;line-height:32px;color:#070707}@media only screen and (max-width: 1250px){.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-title{font-size:18px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-description{max-width:365px;font-size:16px;line-height:24px;color:#41474e;margin-top:14px}@media only screen and (max-width: 1250px){.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-description{font-size:14px}}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-primary-alter-button{margin-top:32px}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature{display:flex;column-gap:24px;row-gap:12px;flex-wrap:wrap;margin-top:24px}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature .ultp-dash-pro-promo-left-keyfeature-item{display:flex;align-items:center;gap:6px;font-weight:500;font-size:14px;line-height:20px;color:#070707}.ultp-dash-pro-promo .ultp-dash-pro-promo-left .ultp-dash-pro-promo-left-keyfeature .ultp-dash-pro-promo-left-keyfeature-item svg{width:20px;height:20px;color:#1f66ff}.ultp-dash-pro-promo .ultp-dash-pro-promo-right-img{max-width:352px;object-fit:contain}.ultp-dash-blocks{padding:32px}@media only screen and (max-width: 1250px){.ultp-dash-blocks{padding:16px}}.ultp-dash-blocks .ultp-dash-blocks-heading{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-dash-blocks-heading-title{font-weight:600;font-size:18px;line-height:24px;color:#0a0d14}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-transparent-button{color:#1f66ff !important}.ultp-dash-blocks .ultp-dash-blocks-heading .ultp-transparent-button svg{fill:#1f66ff !important;width:20px;height:20px}.ultp-dash-blocks .ultp-dash-blocks-items{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px}@media only screen and (max-width: 1500px){.ultp-dash-blocks .ultp-dash-blocks-items{grid-template-columns:1fr 1fr}}@media only screen and (max-width: 1250px){.ultp-dash-blocks .ultp-dash-blocks-items{grid-template-columns:1fr}}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-dash-blocks-item{display:flex;gap:8px;align-items:center;justify-content:space-between;border:1px solid #e6e6e6;border-radius:8px;background:#fbfbfb;box-shadow:none}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta{display:flex;align-items:center;gap:8px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta .ultp-blocks-item-icon{width:24px;height:24px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-item-meta .ultp-blocks-item-title{font-weight:500;font-size:14px;line-height:20px;color:#2e2e2e}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-control-option{display:flex;align-items:center;gap:8px}.ultp-dash-blocks .ultp-dash-blocks-items .ultp-blocks-control-option .ultp-option-tooltip{font-size:12px;line-height:16px;color:#6e6e6e;text-decoration:none}',\"\"]);const l=i},9455:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-dashboard-general-settings-container{display:grid;grid-template-columns:auto 360px;gap:32px}.ultp-dashboard-general-settings-container .ultp-general-settings{height:fit-content;width:-webkit-fill-available;padding:32px}.ultp-dashboard-general-settings-container .ultp-general-settings form{margin-top:40px}.ultp-dashboard-general-settings-container .ultp-general-settings .skeletonOverflow{display:flex;gap:30px;flex-direction:column;margin-top:40px}.ultp-dashboard-general-settings-container .ultp-general-settings .onloading{cursor:no-drop}.ultp-dashboard-general-settings-container .ultp-general-settings .onloading svg{height:14px;width:14px;vertical-align:middle;margin-left:4px;animation:ultp-spin 1s linear infinite;color:#fff}@media only screen and (max-width: 1100px){.ultp-dashboard-general-settings-container{grid-template-columns:auto;justify-items:center}.ultp-dashboard-general-settings-container .ultp-general-settings-content-right{width:360px}}@media only screen and (max-width: 768px){.ultp-dashboard-general-settings-container .ultp-general-settings-content-right{width:100%}}\",\"\"]);const l=i},283:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp_h1{font-size:var(--postx-h1-fontsize);font-weight:var(--postx-h1-weight)}.ultp_h2{font-size:var(--postx-h2-fontsize);font-weight:var(--postx-h2-weight)}.ultp_h3{font-size:var(--postx-h3-fontsize);font-weight:var(--postx-h3-weight)}.ultp_h4{font-size:var(--postx-h4-fontsize);font-weight:var(--postx-h4-weight)}.ultp_h5{font-size:var(--postx-h5-fontsize);font-weight:var(--postx-h5-weight)}.ultp_h6{font-size:var(--postx-h6-fontsize);font-weight:var(--postx-h6-weight)}.ultp_h1,.ultp_h2,.ultp_h3,.ultp_h4,.ultp_h5,.ultp_h6{color:#091f36}.ultp-settings-container{margin:0 !important;background:#f6f8fa;padding:32px;min-height:100vh;height:100%}.ultp-settings-container .ultp-settings-content .ultp-premade-grid{background:#f6f8fa}@media screen and (max-width: 1250px){.ultp-settings-container{padding:12px}}.ultp-settings-content{margin:0 auto 40px !important;max-width:1376px}@media screen and (max-width: 768px){.ultp-settings-content{max-width:100%;overflow:scroll}}.ultp-dash-item-con{background:#fff;padding:12px;border-radius:8px;box-shadow:0 2px 4px 0 rgba(27,28,29,.0392156863)}.ultp-setting-header{display:grid;align-items:center;grid-template-columns:148px 502px auto 72px;gap:16px;background:var(--postx-white-color);border-bottom:1px solid var(--postx-border-color);padding:0 32px;position:sticky;top:32px;width:100%;height:67px;min-height:67px;box-sizing:border-box;z-index:99}@media screen and (max-width: 1200px){.ultp-setting-header{grid-template-columns:152px auto;background-color:#fff;gap:32px;height:auto;padding-top:12px;column-gap:38px;box-shadow:0px 0px 11px rgba(0,0,0,.168627451)}}@media screen and (max-width: 768px){.ultp-setting-header{display:flex;flex-wrap:wrap;padding:8px;height:auto}}.ultp-pro-feature-lists{display:flex;flex-direction:column;gap:15px;margin-top:24px}.ultp-pro-feature-lists>span{display:inline-flex;gap:8px;align-items:center}.ultp-pro-feature-lists>span,.ultp-pro-feature-lists>span>span{color:#070707;font-weight:500;font-size:14px;line-height:20px}.ultp-pro-feature-lists>span>span>a{text-decoration:none}.ultp-pro-feature-lists>span>span>a .dashicons{color:var(--postx-primary-color);font-size:17px;line-height:1.2}.ultp-pro-feature-lists>span svg{height:16px;width:16px;vertical-align:middle;color:#070707;flex-shrink:0}.settingsLink{color:var(--postx-primary-color) !important}.ultp-ring{display:inline-block;margin-right:5px;font-size:20px;position:relative;top:2px;color:#fff;animation:ring 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite}@keyframes ring{0%{transform:rotate(0)}5%{transform:rotate(25deg)}10%{transform:rotate(-20deg)}15%{transform:rotate(12deg)}20%{transform:rotate(-6deg)}25%{transform:rotate(2deg)}28%,100%{transform:rotate(0)}}#postx-regenerate-css{display:none;margin-top:10px}#postx-regenerate-css span{color:var(--postx-white-color)}#postx-regenerate-css.active{display:inline-block}#postx-regenerate-css .dashicons{display:none;margin-right:8px;-webkit-animation:ultp-spin 1s linear infinite;animation:ultp-spin 1s linear infinite}#postx-regenerate-css.ultp-spinner .dashicons{display:inline-block}@keyframes ultp-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}form .ultp-settings-wrap{display:flex;flex-direction:column;gap:12px;margin-bottom:30px}form .ultp-settings-wrap strong{font-size:14px;color:#091f36;font-weight:500}form .ultp-settings-wrap .ultp-settings-field-wrap select,form .ultp-settings-wrap .ultp-settings-field-wrap input[type=text],form .ultp-settings-wrap .ultp-settings-field-wrap input[type=number]{height:36px;width:100%;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:0px 13px 0px;background-color:#fff;margin-bottom:3px}form .ultp-settings-wrap .ultp-settings-field-wrap textarea{width:100%;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:0px 13px 0px;background-color:#fff;margin-bottom:3px}form .ultp-settings-wrap .ultp-settings-field-wrap select[multiple]{max-height:100px;height:100%}form .ultp-settings-wrap .ultp-settings-field-wrap .ultp-description{font-size:12px}form .ultp-data-message{display:none;position:fixed;bottom:10%;padding:13px 14px 14px 15px;border-radius:4px;box-shadow:0 1px 2px 0 rgba(8,68,129,.2);background:rgba(115,184,28,.1);width:224px;color:#091f36}.ultp-upgrade-pro-btn{display:inline-block;padding:10px 25px;color:#fff;font-size:14px;background:linear-gradient(180deg, #ff9336, transparent) #de521e;border-radius:4px;text-decoration:none;width:fit-content;transition:background-color 400ms}.ultp-upgrade-pro-btn:hover{background-color:#ff9336;color:#fff}.ultp-upgrade-pro-btn:focus{outline:0;box-shadow:none}.ultp-upgrade-pro-btn:active{color:#fff}input[type=checkbox]{width:22px;height:20px;border-radius:2px;border:solid 1px #eaedf2;background:#fff;position:relative;margin:0;box-shadow:none;display:inline-block}input[type=checkbox]+.ultp-description{margin-left:10px}input[type=checkbox]:checked{background:var(--postx-primary-color);border:none}input[type=checkbox]:checked::before{content:\"✓\";color:#fff;height:unset;width:unset;margin:unset;position:absolute;left:5px;top:9px;font-weight:900}.ultp-primary-button{cursor:pointer;padding:12px 25px;color:#fff !important;font-size:14px;background:#070707;border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;border:none;transition:background-color 400ms;gap:8px;line-height:20px}.ultp-primary-button:hover{background-color:var(--postx-primary-color)}.ultp-primary-button:focus{outline:0;box-shadow:none}.ultp-secondary-button{cursor:pointer;padding:10px 25px;color:#070707;font-size:14px;background:rgba(0,0,0,0);border-radius:4px;text-decoration:none;border:1px solid #070707;display:inline-flex;align-items:center;width:fit-content;transition:background-color 400ms}.ultp-secondary-button:hover{background-color:#dee5fa}.ultp-secondary-button:focus{outline:0;box-shadow:none}.ultp-primary-alter-button{cursor:pointer;padding:12px 24px;color:#fff !important;font-size:14px;background:var(--postx-primary-color);border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;border:none;transition:background-color 400ms;gap:8px;line-height:20px}.ultp-primary-alter-button:hover{background-color:#070707}.ultp-primary-alter-button:focus{outline:0;box-shadow:none}.ultp-transparent-button{cursor:pointer;color:#a1a1a1 !important;font-size:14px;background:rgba(0,0,0,0);border-radius:4px;text-decoration:none;display:flex;align-items:center;width:fit-content;transition:background-color 400ms;gap:8px}.ultp-transparent-button:hover{text-decoration:underline}.ultp-transparent-button:focus{outline:0;box-shadow:none}.ultp-transparent-alter-button{cursor:pointer;color:#4a4a4a;font-size:14px;background:rgba(0,0,0,0);text-decoration:underline;display:flex;align-items:center;width:fit-content;transition:background-color 400ms;gap:8px}.ultp-transparent-alter-button:hover{color:#3c3c3c}.ultp-transparent-alter-button:focus{outline:0;box-shadow:none}.ultp-primary-button svg,.ultp-primary-alter-button svg,.ultp-secondary-button svg,.ultp-transparent-button svg,.ultp-transparent-alter-button svg{width:24px;height:24px}.cursor{cursor:pointer}#wpbody-content:has(.ultp-menu-items-wrap){padding:0 !important;background-color:#f6f8fa}.ultp-menu-items-wrap{line-height:1.6}.ultp-menu-items-wrap h1,.ultp-menu-items-wrap h2,.ultp-menu-items-wrap h3,.ultp-menu-items-wrap h4,.ultp-menu-items-wrap h5,.ultp-menu-items-wrap h6{padding:0;margin:0}.ultp-menu-items-wrap .ultp-discount-wrap{transform:rotate(-90deg);width:150px;height:40px;display:flex;gap:10px;align-items:center;justify-content:center;border-radius:4px 4px 0 0;position:fixed;top:200px;right:-55px;z-index:99999;text-decoration:none;background:linear-gradient(60deg, hsl(224, 88%, 61%), hsl(359, 85%, 66%), hsl(44, 74%, 55%), hsl(89, 72%, 47%), hsl(114, 79%, 48%), hsl(179, 85%, 66%));background-size:300% 300%;background-position:0 50%;animation:ultp_moveGradient 4s alternate infinite;transition:.4s}.ultp-menu-items-wrap .ultp-discount-wrap .ultp-discount-text{font-weight:600;color:#fff;text-transform:uppercase;font-size:14px}@keyframes ultp_moveGradient{50%{background-position:100% 50%}}.ultp-ml-auto{margin-left:auto}.ultp-dash-control-options .ultp-addons-enable,.ultp-dash-control-options .ultp-blocks-enable{width:0;height:0;display:none}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label{position:relative;background-color:var(--postx-primary-color);opacity:unset}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label>span,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label>span{display:none}.ultp-dash-control-options .ultp-addons-enable:checked+.ultp-control__label::after,.ultp-dash-control-options .ultp-blocks-enable:checked+.ultp-control__label::after{left:calc(100% - 3px);transform:translateX(-100%)}.ultp-dash-control-options .ultp-addons-enable.disabled+.ultp-control__label,.ultp-dash-control-options .ultp-blocks-enable.disabled+.ultp-control__label{opacity:.25 !important}.ultp-dash-control-options>label{width:36px;height:18px;display:block;cursor:pointer;border-radius:100px;text-indent:-9999px;background:#d2d2d2;opacity:1;position:relative}.ultp-dash-control-options>label::after{content:\"\";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:90px;background:var(--postx-white-color);transition:.3s}.rotate{animation:rotate 1.5s linear infinite}@keyframes rotate{to{transform:rotate(360deg)}}.ultp-setting-logo{display:flex;gap:4px;align-items:center;border-right:1px solid #e2e4e9;height:100%;width:100%;max-width:152px}@media screen and (max-width: 1300px){.ultp-setting-logo{padding-right:11px}}@media screen and (max-width: 768px){.ultp-setting-logo{border-right:none}}.ultp-setting-logo .ultp-setting-header-img{height:26px}.ultp-setting-logo .ultp-setting-version{font-size:14px;border:1px solid var(--postx-primary-color);border-radius:100px;padding:7px 11px;background:#edf6ff;color:var(--postx-primary-color);line-height:18px;font-weight:500}.ultp-menu-items{display:flex;gap:24px}@media screen and (max-width: 1200px){.ultp-menu-items{margin-top:-9px}}@media screen and (max-width: 768px){.ultp-menu-items{flex-wrap:wrap;gap:16px}}.ultp-menu-item{position:relative;text-decoration:none;font-size:14px;padding:0;color:#070707;position:relative;display:flex;gap:8px;font-weight:500;align-items:center;transition:400ms;white-space:nowrap}.ultp-menu-item:hover{color:#1f66ff}.ultp-menu-item:focus{outline:none;box-shadow:none}.ultp-menu-item:after{content:\"\";position:absolute;bottom:-21px;width:100%;height:2px;background:var(--postx-primary-color);left:0;opacity:0}@media only screen and (max-width: 1250px){.ultp-menu-item:after{bottom:-9px}}.ultp-menu-item svg{width:20px;height:20px;color:#1f66ff}.ultp-menu-item.current{color:var(--postx-primary-color)}.ultp-menu-item.current:after{opacity:1}.ultp-menu-item .ultp-menu-item-tag{position:absolute;top:-14px;right:-20px;background:#fdedf0;border-radius:100px;padding:2px 6px;font-size:10px;font-weight:500;color:#dc2671;animation:ultpMenuTagColor 2s ease-in-out infinite}@keyframes ultpMenuTagColor{0%{background-color:#f8d7dd}50%{background-color:#fdedf0}100%{background-color:#f8d7dd}}.ultp-menu-items div a:active,.ultp-menu-items div a:focus{outline:none;box-shadow:none;border:none}.ultp-secondary-menu{display:flex;align-items:center;gap:8px;justify-content:space-between;padding:12px 0 12px 16px;border-left:1px solid var(--postx-border-color);height:-webkit-fill-available}@media screen and (max-width: 1300px){.ultp-secondary-menu{padding-left:0px !important;width:fit-content;border:0px !important}}@media screen and (max-width: 768px){.ultp-secondary-menu{border-left:none;padding:0}}.ultp-secondary-menu .ultp-pro-button{background-color:#edf6ff;color:#1f66ff !important;border:1px solid #1f66ff;padding:8px 20px;font-weight:500;font-size:16px;text-wrap:nowrap;display:flex;align-items:center;gap:8px}@media screen and (max-width: 768px){.ultp-secondary-menu .ultp-pro-button{padding:4px 8px}}.ultp-secondary-menu .ultp-pro-button svg{width:24px;height:24px;color:#1f66ff}.ultp-secondary-menu .ultp-pro-button:hover{background-color:#1f66ff;color:#fff !important}.ultp-secondary-menu .ultp-pro-button:hover svg{color:#fff}ul:has(.ultp-dash-faq-icon){position:relative}.ultp-dash-faq-con{height:100%;border-left:1px solid var(--postx-border-color);display:flex;align-items:center;justify-content:center;position:relative}@media screen and (max-width: 1200px){.ultp-dash-faq-con{width:fit-content;margin-left:0px !important;padding-left:2%}}@media screen and (max-width: 768px){.ultp-dash-faq-con{border-left:none;margin:0px;position:relative}}.ultp-dash-faq-icon{height:auto;width:auto;font-size:35px;cursor:pointer}.ultp-ms-container{position:relative}.ultp-ms-container .ultp-ms-results-con{min-height:30px;max-width:100%;border:1px solid #eaedf2;border-radius:4px;color:#000;padding:8px 14px;background-color:#fff;margin-bottom:3px;display:flex;gap:10px;justify-content:space-between}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results{display:flex;gap:8px;flex-wrap:wrap}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected{padding:4px 8px;border-radius:2px;background-color:#7c8084;color:#fff;display:inline-flex;align-items:center;gap:6px}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove{height:16px;width:14px}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove:hover svg{color:var(--postx-primary-color)}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results .ultp-ms-selected .ultp-ms-remove svg{color:#fff}.ultp-ms-container .ultp-ms-results-con .ultp-ms-results-collapse{height:12px;width:12px;display:inline-block}.ultp-ms-container .ultp-ms-options{display:flex;flex-direction:column;gap:5px;z-index:1;position:absolute;width:100%;box-sizing:border-box;margin-top:4px;border:1px solid #eaedf2;box-shadow:0 1px 2px 0 rgba(8,68,129,.2);border-radius:4px;color:#000;padding:8px 14px;background-color:#fff;margin-bottom:3px}.ultp-ms-container .ultp-ms-options .ultp-ms-option{padding:4px 8px;border-radius:2px}.ultp-ms-container .ultp-ms-options .ultp-ms-option:hover{background-color:#7c8084;color:#fff}.ultp-field-radio .ultp-field-radio-items{display:flex;gap:20px;flex-wrap:wrap}.ultp-field-radio .ultp-field-radio-items input[type=radio]:checked::before{background-color:var(--postx-primary-color)}.ultp-sidebar-features{display:flex;flex-direction:column;gap:32px}.ultp-sidebar-card-item{border-radius:8px;padding:24px;display:flex;flex-direction:column;box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863);background-color:#fff}@media only screen and (max-width: 1250px){.ultp-sidebar-card-item{padding:16px}}.ultp-sidebar-card-item:has(.ultp-sidebar-card-title) img{margin-bottom:20px}.ultp-sidebar-card-item .ultp-sidebar-card-title{font-weight:600;font-size:18px;line-height:24px;color:#0a0d14}.ultp-sidebar-card-item .ultp-sidebar-card-description{font-size:14px;line-height:20px;color:#4a4a4a;margin-top:16px}.ultp-sidebar-card-item .ultp-primary-button,.ultp-sidebar-card-item .ultp-secondary-button,.ultp-sidebar-card-item .ultp-primary-alter-button,.ultp-sidebar-card-item .ultp-transparent-alter-button{padding:10px 24px;display:flex;align-items:center;gap:8px;margin-top:20px}.ultp-sidebar-card-item .ultp-primary-button svg,.ultp-sidebar-card-item .ultp-secondary-button svg,.ultp-sidebar-card-item .ultp-primary-alter-button svg,.ultp-sidebar-card-item .ultp-transparent-alter-button svg{width:20px;height:20px}.ultp-sidebar-card-item .ultp-sidebar-card-buttons{margin-top:24px}.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-primary-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-secondary-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-primary-alter-button,.ultp-sidebar-card-item .ultp-sidebar-card-buttons .ultp-transparent-alter-button{margin-top:0}.ultp-sidebar-card-item .ultp-sidebar-card-links{display:flex;gap:16px;flex-direction:column;margin-top:24px}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link{text-decoration:none;color:#000;font-size:16px;font-weight:400;display:flex;align-items:center;gap:12px;line-height:normal}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link:hover{text-decoration:underline}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link span{display:flex}.ultp-sidebar-card-item .ultp-sidebar-card-links .ultp-sidebar-card-link svg{width:24px;height:24px;color:#1f66ff}.ultp-sidebar-card-item .ultp-sidebar-card-buttons{display:flex;gap:20px;align-items:center}.ultp-setting-hellobar-wrapper a{text-decoration:none}.ultp-setting-hellobar{background:#027fff;padding:6px 0;text-align:center;color:rgba(255,255,255,.85);font-size:14px;display:flex;gap:20px;justify-content:center;align-items:center}.ultp-setting-hellobar a{margin-left:4px;font-size:14px;color:#fff}.ultp-setting-hellobar strong{color:#fff;font-weight:700}.ultp-ring{-webkit-animation:ring 4s .7s ease-in-out infinite;-moz-animation:ring 4s .7s ease-in-out infinite;animation:ring 4s .7s ease-in-out infinite;color:#fff}.helobarClose{position:absolute;cursor:pointer;right:15px}.helobarClose svg{height:18px;color:#fff}@keyframes ring{0%{transform:rotate(0)}1%{transform:rotate(30deg)}3%{transform:rotate(-28deg)}5%{transform:rotate(34deg)}7%{transform:rotate(-32deg)}9%{transform:rotate(30deg)}11%{transform:rotate(-28deg)}13%{transform:rotate(26deg)}15%{transform:rotate(-24deg)}17%{transform:rotate(22deg)}19%{transform:rotate(-20deg)}21%{transform:rotate(18deg)}23%{transform:rotate(-16deg)}25%{transform:rotate(14deg)}27%{transform:rotate(-12deg)}29%{transform:rotate(10deg)}31%{transform:rotate(-8deg)}33%{transform:rotate(6deg)}35%{transform:rotate(-4deg)}37%{transform:rotate(2deg)}39%{transform:rotate(-1deg)}41%{transform:rotate(1deg)}43%{transform:rotate(0)}100%{transform:rotate(0)}}',\"\"]);const l=i},4421:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-license{--brand-color: #037fff;--brand-color-fade: #f0f7ff;max-width:1600px;padding:32px !important;display:flex;margin:0 auto !important;gap:32px}.ultp-license__activation{background-color:#fff;padding:32px !important;box-shadow:0px 2px 4px 0px rgba(91,95,88,.078);max-width:890px;width:60%}.ultp-license__title{margin-bottom:32px !important;color:#000;font-size:24px;line-height:1.2em;font-weight:600}.ultp-license__form{margin-bottom:30px !important}.ultp-license__form input{width:100%;padding:0 8px;color:#000 !important;border-radius:4px !important;max-height:40px !important;border-color:currentColor !important}.ultp-license__helper-text{font-size:12px;color:#80837f;margin-top:8px !important}.ultp-license__renew-link{display:flex;align-items:center;gap:6px;color:#fff;background-color:#f17b2c;border-radius:6px;box-shadow:none;padding:4px 8px;cursor:pointer;text-decoration:none;margin-left:12px}.ultp-license__renew-link:hover{color:#fff}.ultp-license__link{color:var(--brand-color)}.ultp-license__status-messages{display:flex;flex-direction:column;gap:30px;margin-top:48px !important;margin-bottom:48px !important}.ultp-license__status-message{display:flex;align-items:center;font-size:14px}.ultp-license__status-message-label{text-align:left;color:#000;width:133px}.ultp-license__status-message-value{color:#000;text-align:left}.ultp-license__status-message-value::before{content:\":\";margin-right:33px !important;color:#000}.ultp-license__faq{max-width:567px;width:40%;padding-left:32px !important;border-left:1px solid #d5dad4}.ultp_license_action_btn{display:flex;gap:10px;margin-left:auto;margin-top:32px !important;text-transform:none;text-decoration:none;justify-content:center;font-size:14px;font-weight:500;border-radius:4px;background-color:var(--brand-color);width:fit-content;padding:10px 20px !important;color:#fff;cursor:pointer}.ultp-activate-loading{--loader-size: 22px;--loader-thickness: 3px;--loader-brand-color: #ffffff;width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top\u002Fvar(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:ultp-activate-loading 1s infinite linear}@keyframes ultp-activate-loading{100%{transform:rotate(1turn)}}.ultp-license-faq__item{margin-bottom:32px !important}.ultp-license-faq__question{text-align:left;color:#000;font-size:24px;font-weight:600;line-height:1.3em}.ultp-license-faq__answer{text-align:left;color:#262a25;margin-top:8px !important;font-size:14px}.ultp-license-message{display:flex;align-items:flex-start;background-color:var(--brand-color-fade);border:1px solid var(--brand-color);border-radius:8px;padding:24px !important}.ultp-license-message__icon{color:var(--brand-color);font-size:24px;margin-right:16px !important}.ultp-license-message__content{flex:1}.ultp-license-message__title{color:#0b0e04;margin-top:-8px !important;margin-bottom:8px !important}.ultp-license-message__text{text-align:left;color:#0b0e04;font-size:14px}.ultp-license-message-congrats{font-size:24px;font-weight:600}.ultp-custom-skeleton-loader{background:linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);background-size:200% 100%;animation:ultp-custom-skeleton-anim 4s infinite;display:inline-block}@keyframes ultp-custom-skeleton-anim{0%{background-position:200% 0}100%{background-position:-200% 0}}.ultp-license__upgrade-message{display:flex;gap:12px;align-items:end}.ultp-license__upgrade-message .ultp-license__upgrade-message-title{display:flex;flex-direction:column;gap:4px}.ultp-license__upgrade-message .ultp-license__upgrade-message-title select{min-height:36px;width:100%;max-width:100%}.ultp-license__upgrade-message .ultp-license__upgrade-link{color:#fff;background-color:var(--brand-color);text-decoration:none;font-weight:500;font-size:14px;padding:8px 16px;border-radius:4px}',\"\"]);const l=i},2041:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-plugins-wrapper{background-color:var(--postx-h1-fontsize)}.ultp-plugin-items{display:grid;grid-template-columns:repeat(4, 1fr);gap:32px}@media only screen and (max-width: 1200px){.ultp-plugin-items{grid-template-columns:repeat(2, 1fr)}}@media only screen and (max-width: 425px){.ultp-plugin-items{grid-template-columns:repeat(1, 1fr)}}.ultp-plugin-items .ultp-plugin-item{padding:24px;background:#fff;box-shadow:0px 2px 4px 0px rgba(27,28,29,.0392156863);border-radius:8px;display:flex;gap:12px;flex-direction:column}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-title{display:flex;align-items:center;gap:16px;font-weight:600;font-size:18px;line-height:24px;color:#070707}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-title img{width:40px;height:40px}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-desc{font-weight:400;font-size:14px;line-height:20px;color:#4a4a4a}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action{display:flex;align-items:center;gap:20px}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-secondary-button{padding:10px 24px;font-weight:500}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-secondary-button:hover{background-color:#070707;color:#fff}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-transparent-alter-button{color:#070707;font-weight:500}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-activated-button{background-color:#fff;color:#1f66ff;border:1px solid #1f66ff;cursor:not-allowed}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-item-action .ultp-activated-button:hover{background-color:#fff;color:#1f66ff}.ultp-plugin-items .ultp-plugin-item .ultp-plugin-active-btn{gap:10px}.ultp-plugin-items .ultp-plugin-item-loading{--loader-size: 18px;--loader-thickness: 3px;--loader-brand-color: var(--postx-primary-color);width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top\u002Fvar(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:ultp-install-loading 1s infinite linear}@keyframes ultp-install-loading{100%{transform:rotate(1turn)}}\",\"\"]);const l=i},6657:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultpPages li.active{color:#ee0404}.tableCon{margin-top:30px;border-radius:4px;box-shadow:0 1px 2px 0 rgba(8,68,129,.2)}.ultp-bulk-con{display:flex;justify-content:space-between;border-radius:4px 4px 0 0 !important;box-shadow:unset !important;flex-wrap:wrap;gap:20px}.ultp-bulk-con>div{display:flex;gap:15px}.ultp-bulk-con select,.ultp-bulk-con input{max-height:35px}.ultp-bulk-con .ultp-primary-button{padding:6px 15px}.ultp-bulk-con input[type=text],.ultp-bulk-con select{border:1px solid #eaedf2;padding-left:12px}.ultp-bulk-con input[type=text]:focus,.ultp-bulk-con select:focus{box-shadow:none;outline:0;border:1px solid var(--postx-primary-color)}.pageCon{display:flex;justify-content:space-between;border-radius:0 0 4px 4px;padding:22px 25px;background:#fff}.pageCon .ultpPages{display:flex;gap:12px}.pageCon .ultpPages .currentPage{background:#000;border-radius:50%;font-size:14px;color:var(--postx-white-color);height:25px;width:25px;text-align:center}.pageCon .ultpPages span:not(.currentPage){cursor:pointer;display:flex;align-items:center}.pageCon .ultpPages span:not(.currentPage) svg{height:14px;width:14px}.shortCode{cursor:copy;position:relative}.shortCode span{background:rgba(0,0,0,.7);color:#fff;border-radius:6px;position:absolute;left:calc(100% + 6px);padding:2px 6px}th.title{width:220px}th.fontType{width:65px}th.fontpreview{width:300px}.fontType{text-align:center}.actions{position:relative}.actions .dashicons{cursor:pointer}.actions .actionPopUp{position:absolute;width:130px;right:0;text-align:left;padding:10px;z-index:1}.actions .actionPopUp li{cursor:pointer;margin-bottom:8px;padding:0 6px}.actions .actionPopUp li a{display:block;text-decoration:none}.actions .actionPopUp li:hover{background:rgba(3,127,255,.04);border-radius:4px}.actions .actionPopUp li .dashicons{font-size:16px;margin-right:5px}.ultpTable{width:100%}.ultpTable table{width:100%;border-spacing:0px}.ultpTable table thead tr{background:rgba(3,127,255,.04)}.ultpTable table thead tr th{font-size:14px;border-bottom:1px solid #e7eef7;border-top:1px solid #e7eef7;padding:15px 0px;color:#091f36}.ultpTable table th:first-child,.ultpTable table td:first-child{padding-left:25px;padding-right:12px;width:55px}.ultpTable table th:last-child,.ultpTable table td:last-child{text-align:center;padding-right:25px}.ultpTable table tbody{background:#fff}.ultpTable table tbody .dashicons{vertical-align:middle}.ultpTable table tbody tr td{border-bottom:1px solid #eaedf2;padding:15px 0px;color:#575a5d;font-size:14px}.ultpTable table tbody tr td.title a{color:var(--postx-primary-color)}.ultpTable table tbody tr td.typeDate{text-transform:capitalize}@media only screen and (max-width: 1350px){.ultpTable{overflow-x:auto}.ultpTable table{width:1200px}}\",\"\"]);const l=i},2793:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-addon-lock-container{position:fixed;top:20%;z-index:999;background:#fff;padding:40px 100px;border-radius:4px;box-shadow:0 50px 99px 0 rgba(62,51,51,.5)}.ultp-addon-lock-container .ultp-popup-unlock{display:flex;flex-direction:column;align-items:center;justify-content:center;max-width:300px;width:100%;width:100%;gap:20px}.ultp-addon-lock-container .ultp-popup-unlock .title{text-align:center}.ultp-addon-lock-container .ultp-popup-unlock img{height:112px}.ultp-addon-lock-container .ultp-popup-unlock .ultp-description{text-align:center}.ultp-addon-lock-container .ultp-popup-close{position:absolute;font-size:0px;top:0;right:-10%;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff}.ultp-addon-lock-container .ultp-popup-close:hover{background:red}.ultp-addon-lock-container .ultp-popup-close:hover svg{color:#fff}.ultp-addon-lock-container-overlay{background:rgba(0,0,0,.7);position:absolute;right:0;height:100%;width:100%;z-index:999;top:0;display:flex;justify-content:center}\",\"\"]);const l=i},4558:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-settings-container.ultp-settings-container-startersites{padding-top:0;padding-left:0;padding-right:0}.ultp-settings-container.ultp-settings-container-startersites .ultp-settings-content{max-width:100%}.ultp-settings-container.ultp-settings-container-startersites .ultp-premade-grid{max-width:1376px;margin:0 auto;padding-left:30px;padding-right:30px}#ultp-starter-preview.mobileView,#ultp-starter-preview.tabletView{box-shadow:#828282 0px 0px 12px -3px;border-radius:8px 8px 0px 0px;margin-top:24px}.ultp_starter_packs_demo .wp-full-overlay-sidebar{width:300px !important}.ultp_starter_packs_demo.expanded .wp-full-overlay-footer{width:299px !important}.ultp_starter_packs_demo .wp-full-overlay-main::before{content:unset}.ultp_starter_packs_demo.wp-full-overlay.expanded{margin-left:300px !important}.ultp_starter_packs_demo.inactive.expanded{margin-left:0 !important}.ultp_starter_packs_demo.inactive.expanded .wp-full-overlay-sidebar,.ultp_starter_packs_demo.inactive.expanded .wp-full-overlay-footer{margin-left:-300px !important}.ultp_starter_packs_demo .ultp_starter_packs_demo_header{display:flex;justify-content:space-between;padding-right:12px;padding-left:12px;align-items:center;height:100%}.ultp_starter_packs_demo .ultp_starter_packs_demo_header .packs_title{font-size:14px}.ultp_starter_packs_demo .ultp-starter-packs-device-container{display:flex;gap:10px;line-height:normal;align-items:center;justify-content:center}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device{border:1px solid rgba(0,0,0,0);height:14px;padding:2px;transition:400ms}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device svg{width:15px;cursor:pointer;color:#091f36;opacity:.5}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device.d-active{border:1px solid #091f36;border-radius:2px}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device.d-active svg{opacity:1}.ultp_starter_packs_demo .ultp-starter-packs-device-container .ultp-starter-packs-device:hover svg{opacity:1}.ultp_starter_packs_demo .close-full-overlay{margin-left:12px;border:none;padding:0;width:auto}.ultp_starter_packs_demo .close-full-overlay:hover{background:none;color:var(--postx-primary-color)}.ultp_starter_packs_demo .ultp_starter_preset_container{padding:20px}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp_starter_reset_container{display:flex;justify-content:space-between;margin-bottom:15px;align-items:center}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp_starter_reset_container .dashicons{font-size:16px;height:16px;cursor:pointer}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group{display:grid;grid-template-columns:1fr 1fr;gap:10px}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list{background:#fff;display:flex;padding:4px;gap:2px;align-items:center;justify-content:space-between;margin-bottom:0;cursor:pointer;border-radius:4px;border:1px solid #ededed}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list.active,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-color-group .ultp_starter_preset_list:hover{border:1px solid #037fff}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-global-color,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-global-current-color{width:20px;height:20px;border-radius:50%;display:inline-block;box-shadow:0 0 5px 1px rgba(0,0,0,.05);border:1px solid #e5e5e5}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:25px;position:relative}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list{background:#fff;display:flex;padding:5px;cursor:pointer;border-radius:2px;border:1px solid #ededed;margin-bottom:0;width:55px;box-sizing:border-box;justify-content:center}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list.active,.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list:hover{border:1px solid #037fff}.ultp_starter_packs_demo .ultp_starter_preset_container .ultp-typo-group .ultp_starter_preset_typo_list>span{font-size:24px}.ultp_starter_packs_demo .ultp_starter_import_options{position:absolute;bottom:0;width:100%;box-sizing:border-box;padding:15px 20px;border-top:1px solid #dcdcde;background:#fff}.ultp_starter_packs_demo .ultp_starter_import_options .title{text-align:center}.ultp_starter_packs_demo .ultp_starter_import_options .option_buttons{display:flex;gap:10px;justify-content:center;margin-top:10px;margin-bottom:15px}.ultp_starter_packs_demo .ultp_starter_import_options .option_buttons a{width:100%;box-sizing:border-box;text-align:center}.ultp_starter_packs_demo .close-full-overlay{background:#fff}.ultp_starter_packs_demo .wp-full-overlay-header{background:#fff;height:60px}.ultp_starter_packs_demo .packs_title{color:#091f36;font-size:16px;font-weight:600;line-height:normal}.ultp_starter_packs_demo .packs_title span{text-transform:capitalize;display:block;color:#575a5d;font-weight:normal;margin-top:5px}.ultp_starter_packs_demo .ultp-starter-collapse{position:absolute;width:40px;height:40px;right:-20px;background:#fff;border-radius:100px;top:70px;box-shadow:inset 0 0 0 1px rgba(9,32,54,.15),0 2px 15px 6px rgba(9,32,54,.15);text-align:center;line-height:40px;cursor:pointer;transition:400ms;z-index:9999}.ultp_starter_packs_demo .ultp-starter-collapse svg{transform:rotate(90deg);width:100%;transition:400ms;color:#091f36;margin-left:-2px}.ultp_starter_packs_demo .ultp-starter-collapse:hover{transform:scale(1.1);background:#091f36}.ultp_starter_packs_demo .ultp-starter-collapse:hover svg{color:#fff}.ultp_starter_packs_demo .ultp-starter-collapse.inactive{right:-44px}.ultp_starter_packs_demo .ultp-starter-collapse.inactive svg{transform:rotate(-90deg);margin-left:2px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content{background:#f7f9ff;bottom:112px;top:60px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow{padding:25px 20px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow>.ultp_skeleton__custom_size{margin:auto}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors{margin-top:30px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors>.ultp_skeleton__custom_size{margin-bottom:20px}.ultp_starter_packs_demo .wp-full-overlay-sidebar-content .skeletonOverflow_colors .demos-color{display:grid;grid-template-columns:1fr 1fr;gap:10px}.ultp_starter_packs_demo .close-full-overlay{height:60px}.ultp_starter_packs_demo .close-full-overlay::before{font-size:32px}.ultp-stater-container-settings-overlay{background:rgba(0,0,0,.7);position:absolute;right:0;height:100vh;width:100vw;z-index:999999999999;top:-32px;display:flex;justify-content:center}.ultp-stater-settings-container{position:fixed;top:6%;z-index:999;background:#fff;border-radius:4px;box-shadow:0 50px 99px 0 rgba(62,51,51,.5);display:flex}.ultp-stater-settings-container>div:first-child{flex:1;max-height:auto;width:600px}.ultp-stater-settings-container .ultp-info{margin-bottom:15px;color:#575a5d}.ultp-stater-settings-container .ultp-info.ultp-info-desc{font-size:16px}.ultp-stater-settings-container .ultp-stater-settings-header{color:#091f36;font-size:16px;font-weight:400;position:absolute;box-sizing:border-box;width:100%;top:0;padding:12px 30px;border-bottom:1px solid #eaedf2}.ultp-stater-settings-container .stater_title{color:#091f36;margin-bottom:15px;font-size:16px;font-weight:600}.ultp-stater-settings-container .ultp-popup-stater{padding:40px 40px 20px;max-height:calc(75vh - 20px);overflow:auto}.ultp-stater-settings-container .ultp-popup-stater .input_container{margin-bottom:15px}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]{margin-right:8px;width:22px;height:20px}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]:checked{background:#092036}.ultp-stater-settings-container .ultp-popup-stater .input_container input[type=checkbox]:checked::before{left:6px;top:9px;font-size:13px;transform:rotate(6deg)}.ultp-stater-settings-container .starter_page_impports{margin-top:25px;margin-bottom:20px}.ultp-stater-settings-container .starter_page_impports .cursor{font-size:14px;margin-top:15px;transition:400ms;color:#091f36;opacity:.7}.ultp-stater-settings-container .starter_page_impports .cursor:hover{opacity:1}.ultp-stater-settings-container .starter_page_impports .cursor svg{height:10px;width:10px;margin-left:4px}.ultp-stater-settings-container .starter_import{padding-left:40px;padding-right:40px;padding-bottom:40px;text-align:center}.ultp-stater-settings-container .starter_import .ultp-primary-button{width:100%;box-sizing:border-box;justify-content:center}.ultp-stater-settings-container .ultp-popup-close{position:absolute;font-size:0px;top:0;right:-10%;height:40px;width:40px;border-radius:50%;color:#000;cursor:pointer;border:none;padding:12px;background:#fff}.ultp-stater-settings-container .ultp-popup-close:hover{background:red}.ultp-stater-settings-container .ultp-popup-close:hover svg{color:#fff}.ultp-stater-settings-container .ultp-popup-close.s_loading{cursor:no-drop}.ultp-stater-settings-container .input_container .email_box{width:100%;box-sizing:border-box;margin:8px 0;border:1px solid #dcdcde;border-radius:2px;padding:5px 15px}.ultp-stater-settings-container .input_container .get_newsletter{background:#888}.ultp-stater-settings-container .ultp_successful_import .stater_title{font-size:20px}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders{margin:20px 0;max-width:80%;font-size:16px}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders a{color:var(--postx-primary-color);text-decoration:underline}.ultp-stater-settings-container .ultp_successful_import .ultp_import_builders a:hover{color:var(--postx-primary-hover-color)}.ultp-stater-settings-container .ultp_successful_import .ultp-primary-button{margin-bottom:20px}.ultp-stater-settings-container .ultp_processing_import .stater_title{font-size:20px}.ultp-stater-settings-container .ultp_processing_import .progress{font-size:16px;margin-top:12px}.ultp-stater-settings-container .ultp_processing_import .ultp_import_notice{margin-top:10px;margin-bottom:20px;color:var(--postx-warning-button-color)}.ultp-stater-settings-container .ultp_processing_import .ultp_import_notice>span{font-size:14px;font-weight:500}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show{margin-top:20px;margin-bottom:0;text-align:center}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show .ultp-importer-loader{width:100%;height:20px;background-color:#f0f0f0;position:relative;border-radius:4px;overflow:hidden}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show #ultp-importer-loader-bar{width:0;height:100%;background-color:var(--postx-primary-color);position:absolute;transition:width .5s}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show #ultp-importer-loader-percentage{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.ultp-stater-settings-container .ultp_processing_import .ultp_processing_show .ultp_processing_loader{border-radius:4px;width:80%;height:12px;display:inline-block;background-color:#f7f9ff;background-image:linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%, transparent 50%, rgba(3, 127, 255, 0.75) 50%, rgba(3, 127, 255, 0.75) 75%, transparent 75%, transparent);font-size:30px;background-size:1em 1em;box-sizing:border-box;animation:ultp_processing_loader .5s linear infinite}@keyframes ultp_processing_loader{0%{background-position:0 0}100%{background-position:1em 0}}.ultp_starter_dark_container{display:flex;gap:5px;align-items:center;margin-bottom:25px;margin-top:15px;font-size:16px}.ultp_starter_dark_container .ultp_starter_dark_enable{display:none;height:0;width:0;border-radius:2px;border:solid 1px #eaedf2;background:#fff;position:relative;margin:0;box-shadow:none}.ultp_starter_dark_container .ultp_starter_dark_enable:checked+label{opacity:unset}.ultp_starter_dark_container .ultp_starter_dark_enable:checked+label::after{left:calc(100% - 3px);transform:translateX(-100%)}.ultp_starter_dark_container>label{color:#037fff;width:36px;height:18px;display:block;cursor:pointer;border-radius:100px;text-indent:-9999px;background:var(--postx-primary-color);opacity:.4;position:relative;margin:0 8px}.ultp_starter_dark_container>label::after{content:\"\";position:absolute;top:3px;left:3px;width:12px;height:12px;border-radius:90px;background:#fff;transition:.3s}.ultp_starter_dark_container{justify-content:center}.ultp_starter_dark_container .ultp-dl-container{cursor:pointer;display:flex;background:#fff;gap:10px;align-items:center;border-radius:100px;width:140px;height:40px;box-shadow:0px 0px 0 2px rgba(9,32,54,.2),2px 4px 15px 5px rgba(9,32,54,.1)}.ultp_starter_dark_container .ultp-dl-container svg{height:20px;width:20px}.ultp_starter_dark_container .ultp-dl-container .ultp-dl-svg-con{transform:translateX(4px)}.ultp_starter_dark_container .ultp-dl-container .ultp-dl-svg-con.dark svg{color:#fff}.ultp_starter_dark_container .ultp-dl-svg{display:flex;background:#091f36;padding:6px;border-radius:50%}.ultp_starter_dark_container .ultp-dl-svg svg{fill:#ffc107}.iframe_loader{height:100%;width:100%;background-color:#fff;overflow-y:scroll}.iframe_loader .iframe_container{width:calc(100% - 80px);height:100%;display:flex;flex-direction:column;gap:40px;padding:60px 40px}.iframe_loader .iframe_header_top{display:flex;justify-content:space-between;gap:40px;align-items:center}.iframe_loader .header_top_right{display:flex;justify-content:space-between;align-items:center;gap:20px}.iframe_loader .iframe_body{height:100%;display:flex;flex-wrap:wrap;gap:24px;margin-top:20px}.iframe_loader .iframe_body_slider{margin-bottom:60px}.iframe_loader .iframe_body_left{flex-basis:calc(60% - 12px);border-radius:4px;display:flex;flex-direction:column;gap:20px}.iframe_loader .iframe_body_right{flex-basis:calc(40% - 12px);border-radius:4px;display:flex;flex-direction:column;gap:20px}.ultp-starter-button{cursor:pointer;padding:12px 25px;color:#fff !important;font-size:14px;background:linear-gradient(180deg, #399aff, transparent) #004fd0;border-radius:4px;text-decoration:none;display:inline-block;width:fit-content;border:none;transition:background-color 400ms}.ultp-starter-button:hover{background-color:var(--postx-primary-color)}',\"\"]);const l=i},6922:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,':root{--xpo-support-color-primary: #335cff;--xpo-support-color-secondary: #4263eb;--xpo-support-color-base-one: #ffffff;--xpo-support-color-base-two: #e1e7ff;--xpo-support-color-base-three: #e0e0e0;--xpo-support-color-green: #09fd09;--xpo-support-color-red: #fb3748;--xpo-support-color-dark: #070707;--xpo-support-color-reverse: #ffffff;--xpo-support-color-title: #0e121b;--xpo-support-color-border-primary: #e1e4ea;--xpo-support-color-shadow: rgba(0, 0, 0, 0.1)}.xpo-support-pops-btn{position:fixed;bottom:34px;right:20px;background-color:var(--xpo-support-color-primary);border-radius:50%;width:56px;height:56px;display:flex;justify-content:center;align-items:center;box-shadow:0 4px 15px var(--xpo-support-color-shadow);cursor:pointer;z-index:9999;transition-property:all;transition-duration:.2s}.xpo-support-pops-btn--small{scale:.8;bottom:0px;right:0px;transition-property:all;transition-duration:.2s}.xpo-support-pops-btn--small:hover:after{content:\"\";position:absolute;inset:-20px;z-index:-10}.xpo-support-pops-btn--small:hover{scale:1;bottom:34px;right:20px}.xpo-support-pops-btn--big{scale:1 !important;bottom:34px !important;right:20px !important}.xpo-support-pops-container--full-height{max-height:551px;height:calc(100vh - 150px);overflow:auto !important}.xpo-support-pops-container{position:fixed;bottom:90px;right:20px;background-color:var(--xpo-support-color-base-one);border-radius:8px;box-shadow:0 4px 15px var(--xpo-support-color-shadow);overflow:hidden;width:400px;max-width:calc(100% - 40px);z-index:9999;margin-bottom:8px}.xpo-support-pops-header{background-color:var(--xpo-support-color-primary);color:var(--xpo-support-color-reverse);text-align:center;padding:24px 24px 0;position:relative;overflow:hidden;z-index:0}.xpo-support-header-bg{position:absolute;inset:0;z-index:-1;opacity:.2;background:radial-gradient(circle, var(--xpo-support-color-secondary) 4px, transparent 5px),radial-gradient(circle, var(--xpo-support-color-reverse) 5px, transparent 5px);background-repeat:repeat;background-size:20px 20px,20px 20px}.xpo-support-pops-avatars{width:fit-content;margin:0 auto;position:relative}.xpo-support-pops-avatars img{display:inline-block;justify-content:center;align-items:center;margin-bottom:15px;width:60px;height:60px;border-radius:50%;margin-left:-20px;border:2px solid var(--xpo-support-color-primary);margin-bottom:5px}.xpo-support-signal{width:10px;height:10px;border-radius:50%;display:inline-block;margin-left:5px;border:2px solid var(--xpo-support-color-base-one);position:absolute;bottom:14px;right:6px}.xpo-support-signal-green{background-color:var(--xpo-support-color-green)}.xpo-support-signal-red{background-color:var(--xpo-support-color-red)}.xpo-support-pops-text{font-weight:600;font-size:14px;padding-bottom:24px}.xpo-support-chat-body{padding:20px}.xpo-support-title{font-size:14px;font-weight:500;line-height:20px;letter-spacing:-0.08px;color:var(--xpo-support-color-title);margin-bottom:4px}input.xpo-input-support,textarea.xpo-input-support{width:100%;padding:12px;border:1px solid var(--xpo-support-color-border-primary);border-radius:4px;font-size:16px;outline:none;margin-bottom:16px}input[type=email].xpo-input-support{max-height:48px}textarea.xpo-input-support{min-height:150px;resize:none}.xpo-send-button{background-color:var(--xpo-support-color-primary);color:var(--xpo-support-color-reverse);width:100%;padding:15px;border:none;border-radius:4px;font-size:16px;font-weight:500;cursor:pointer;display:flex;justify-content:center;align-items:center;gap:10px}.xpo-support-animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px !important;color:var(--xpo-support-color-base-one);stroke-miterlimit:10;box-shadow:inset 0 0 0 var(--xpo-support-color-base-two);animation:fill-message .4s ease-in-out .4s forwards,scale-message .3s ease-in-out .9s both;margin-right:10px !important}@keyframes scale-message{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fill-message{100%{box-shadow:inset 0px 0px 0px 30px var(--xpo-support-color-base-two)}}.xpo-support-circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:var(--xpo-support-color-base-two);fill:none;animation:stroke-message .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.xpo-support-check{stroke-width:2;color:var(--xpo-support-color-primary)}@keyframes stroke-message{100%{stroke-dashoffset:0}}.xpo-support-thankyou-icon{line-height:0;margin:0 auto;width:fit-content}.xpo-support-thankyou-title{margin:24px auto 12px;font-size:24px;font-weight:600;line-height:32px;letter-spacing:-0.36px;color:var(--xpo-support-color-dark);text-align:center}.xpo-support-thankyou-subtitle{font-size:14px;line-height:20px;font-weight:400;letter-spacing:-0.18px;text-align:center}.xpo-support-entry-anim{animation:xpo-support-entry-anim 200ms ease 0s 1 normal forwards}@keyframes xpo-support-entry-anim{0%{opacity:0;transform:translateY(50px)}100%{opacity:1;transform:translateY(0)}}.xpo-support-loading{--loader-size: 21px;--loader-thickness: 3px;--loader-brand-color: var(--xpo-support-color-reverse);width:var(--loader-size);aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, var(--loader-brand-color) 94%, rgba(0, 0, 0, 0)) top\u002Fvar(--loader-thickness) var(--loader-thickness) no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, var(--loader-brand-color));mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--loader-thickness)), #000 0);animation:xpo-support-loading-anim 1s infinite linear}@keyframes xpo-support-loading-anim{100%{transform:rotate(1turn)}}#xpo-support-file-input{width:100%;max-width:100%;color:#444;padding:4px;background:#fff;border:1px solid var(--xpo-support-color-border-primary);border-radius:4px;font-size:14px;min-height:unset}#xpo-support-file-input::file-selector-button{margin-right:20px;border:none;background:var(--xpo-support-color-primary);padding:5px 10px;font-size:16px;border-radius:4px;color:var(--xpo-support-color-reverse);cursor:pointer;transition:background .2s ease-in-out}#xpo-support-file-input::file-selector-button:hover{background:var(--xpo-support-color-secondary)}',\"\"]);const l=i},439:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".toastMessages{display:flex;flex-direction:column;gap:10px;padding:10px;position:fixed;right:400px;z-index:1001;top:70px}.toast{position:absolute}.toaster{position:fixed;visibility:hidden;width:345px;background-color:#fefefe;height:76px;border-radius:4px;box-shadow:0px 0px 4px #9f9f9f;display:flex;align-items:center}.toaster span{display:block}.toaster .itmCenter{font-size:14px}.toaster .itmLast{padding:0 15px;margin-left:auto;height:100%;display:flex;align-items:center;border-left:1px solid #f2f2f2}.toaster .itmLast:hover{cursor:pointer;background-color:#f2f2f2}.toaster.show{visibility:visible;-webkit-animation:fadeinmessage .7s;animation:fadeinmessage .7s}@keyframes fadeinmessage{from{right:0;opacity:0}to{right:65px;opacity:1}}.circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:2;stroke-miterlimit:10;color:#7ac142;fill:none;animation:strokemessage .6s cubic-bezier(0.65, 0, 0.45, 1) forwards}.animation{width:45px;height:45px;border-radius:50%;display:block;stroke-width:2;margin:10px;color:#fff;stroke-miterlimit:10;box-shadow:inset 0px 0px 0px #7ac142;animation:fillmessage .4s ease-in-out .4s forwards,scalemessage .3s ease-in-out .9s both;margin-right:10px}.check{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;animation:strokemessage .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards}.cross{color:red;fill:red}@keyframes strokemessage{100%{stroke-dashoffset:0}}@keyframes scalemessage{0%,100%{transform:none}50%{transform:scale3d(1.1, 1.1, 1)}}@keyframes fillmessage{100%{box-shadow:inset 0px 0px 0px 30px #7ac142}}\",\"\"]);const l=i},9839:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-dashboard-modal-wrapper{position:fixed;left:0;top:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;z-index:999999;background:rgba(0,0,0,.35)}.ultp-dashboard-modal-wrapper .ultp-dashboard-modal{width:fit-content;background:#fff;max-width:90%;max-height:80%;overflow:hidden}.ultp-dashboard-modal-wrapper .ultp-modal-header{display:flex;align-items:center;height:40px;padding:0 20px 0;background:#e3f1ff;position:relative}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-modal-title{font-size:1.2rem;font-weight:600;color:#091f36}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close{position:absolute;top:-3px;right:0;color:var(--postx-white-color);font-size:25px;cursor:pointer;border:none;padding:0px 9px 3px;background-color:var(--postx-dark-color);z-index:99}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close::after{content:\"×\"}.ultp-dashboard-modal-wrapper .ultp-modal-header .ultp-popup-close:hover{background:red}.ultp-dashboard-modal-wrapper .ultp-modal-body{padding:20px}.ultp-dashboard-modal-wrapper .ultp-modal-body iframe{max-width:100%;max-height:100%}',\"\"]);const l=i},1211:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp_skeleton__image{height:300px;width:300px;border-radius:4px}.ultp_skeleton__circle{height:300px;width:300px;border-radius:50%}.ultp_skeleton__title{height:20px;width:100%;border-radius:4px}.ultp_skeleton__button{height:40px;width:90px;border-radius:4px}.ultp_frequency{position:relative;background-color:#e2e2e2;overflow:hidden}.ultp_frequency.loop{margin-bottom:10px}.ultp_frequency.loop:last-child{margin-bottom:0}.ultp_frequency::after{display:block;content:\"\";position:absolute;width:100%;height:100%;transform:translateX(-100%);background:-webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));background:linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);animation:loadings .8s infinite}.skeletonOverflow{overflow:hidden}@keyframes loadings{100%{transform:translateX(100%)}}',\"\"]);const l=i},1589:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,'.ultp-tooltip-wrapper{display:inline-block;position:relative;width:inherit;height:inherit}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip{position:unset}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip .tooltip-content{width:fit-content;bottom:unset;left:90px;top:-36px !important}.ultp-tooltip-wrapper.ultp-preset-typo-tooltip .tooltip-content::before{content:unset}.tooltip-content{top:unset !important;background:#000;color:#fff;font-size:12px;line-height:1.4;z-index:100;white-space:pre-wrap;width:250px;position:absolute;bottom:25px;transform:translateX(-46%);padding:8px 12px;border-radius:4px;white-space:pre-wrap}.tooltip-content::before{content:\" \";left:50%;border:solid rgba(0,0,0,0);height:0;width:0;position:absolute;pointer-events:none;border-width:6px;margin-left:-6px}.tooltip-content.top::before{top:100%;border-top-color:#000}.tooltip-content.right{left:calc(100% + 30px);top:50%;transform:translateX(0) translateY(-50%)}.tooltip-content.right::before{left:-6px;top:50%;transform:translateX(0) translateY(-50%);border-right-color:#000}.tooltip-content.bottom{bottom:-30px}.tooltip-content.bottom::before{bottom:100%;border-bottom-color:#000}.tooltip-content.left{left:auto;right:calc(100% + 30px);top:50%;transform:translateX(0) translateY(-50%)}.tooltip-content.left::before{left:auto;right:-12px;top:50%;transform:translateX(0) translateY(-50%);border-left-color:#000}.tooltip-icon{width:inherit;height:inherit;font-size:28px}',\"\"]);const l=i},1729:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>l});var a=n(8081),r=n.n(a),o=n(3645),i=n.n(o)()(r());i.push([e.id,\".ultp-design-search-wrapper{margin-bottom:20px;width:fit-content;margin-left:auto;margin-right:auto}@media only screen and (max-width: 1250px){.ultp-design-search-wrapper{display:none}}.ultp-design-search-wrapper .ultp-design-search-input{color:#575a5d;padding:8px 15px;min-width:250px;height:36px;font-size:14px;border-radius:2px;border:solid 1px #eaedf2;background-color:#fff}.ultp-design-search-wrapper .ultp-design-search-input:focus{border:1px solid var(--postx-primary-color);box-shadow:unset}@media only screen and (max-width: 1350px){.ultp-design-search-wrapper .ultp-design-search-input{min-width:220px}}\",\"\"]);const l=i},3645:e=>{\"use strict\";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=\"\",a=void 0!==t[5];return t[4]&&(n+=\"@supports (\".concat(t[4],\") {\")),t[2]&&(n+=\"@media \".concat(t[2],\" {\")),a&&(n+=\"@layer\".concat(t[5].length>0?\" \".concat(t[5]):\"\",\" {\")),n+=e(t),a&&(n+=\"}\"),t[2]&&(n+=\"}\"),t[4]&&(n+=\"}\"),n})).join(\"\")},t.i=function(e,n,a,r,o){\"string\"==typeof e&&(e=[[null,e,void 0]]);var i={};if(a)for(var l=0;l\u003Cthis.length;l++){var s=this[l][0];null!=s&&(i[s]=!0)}for(var p=0;p\u003Ce.length;p++){var c=[].concat(e[p]);a&&i[c[0]]||(void 0!==o&&(void 0===c[5]||(c[1]=\"@layer\".concat(c[5].length>0?\" \".concat(c[5]):\"\",\" {\").concat(c[1],\"}\")),c[5]=o),n&&(c[2]?(c[1]=\"@media \".concat(c[2],\" {\").concat(c[1],\"}\"),c[2]=n):c[2]=n),r&&(c[4]?(c[1]=\"@supports (\".concat(c[4],\") {\").concat(c[1],\"}\"),c[4]=r):c[4]=\"\".concat(r)),t.push(c))}},t}},1667:e=>{\"use strict\";e.exports=function(e,t){return t||(t={}),e?(e=String(e.__esModule?e.default:e),\u002F^['\"].*['\"]$\u002F.test(e)&&(e=e.slice(1,-1)),t.hash&&(e+=t.hash),\u002F[\"'() \\t\\n]|(%20)\u002F.test(e)||t.needQuotes?'\"'.concat(e.replace(\u002F\"\u002Fg,'\\\\\"').replace(\u002F\\n\u002Fg,\"\\\\n\"),'\"'):e):e}},8081:e=>{\"use strict\";e.exports=function(e){return e[1]}},7418:e=>{\"use strict\";var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String(\"abc\");if(e[5]=\"de\",\"5\"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n\u003C10;n++)t[\"_\"+String.fromCharCode(n)]=n;if(\"0123456789\"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(\"\"))return!1;var a={};return\"abcdefghijklmnopqrst\".split(\"\").forEach((function(e){a[e]=e})),\"abcdefghijklmnopqrst\"===Object.keys(Object.assign({},a)).join(\"\")}catch(e){return!1}}()?Object.assign:function(e,r){for(var o,i,l=function(e){if(null==e)throw new TypeError(\"Object.assign cannot be called with null or undefined\");return Object(e)}(e),s=1;s\u003Carguments.length;s++){for(var p in o=Object(arguments[s]))n.call(o,p)&&(l[p]=o[p]);if(t){i=t(o);for(var c=0;c\u003Ci.length;c++)a.call(o,i[c])&&(l[i[c]]=o[i[c]])}}return l}},4448:(e,t,n)=>{\"use strict\";var a=n(7294),r=n(7418),o=n(3840);function i(e){for(var t=\"https:\u002F\u002Freactjs.org\u002Fdocs\u002Ferror-decoder.html?invariant=\"+e,n=1;n\u003Carguments.length;n++)t+=\"&args[]=\"+encodeURIComponent(arguments[n]);return\"Minified React error #\"+e+\"; visit \"+t+\" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\"}if(!a)throw Error(i(227));var l=new Set,s={};function p(e,t){c(e,t),c(e+\"Capture\",t)}function c(e,t){for(s[e]=t,e=0;e\u003Ct.length;e++)l.add(t[e])}var d=!(\"undefined\"==typeof window||void 0===window.document||void 0===window.document.createElement),u=\u002F^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$\u002F,m=Object.prototype.hasOwnProperty,f={},h={};function g(e,t,n,a,r,o,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=a,this.attributeNamespace=r,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=o,this.removeEmptyString=i}var v={};\"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style\".split(\" \").forEach((function(e){v[e]=new g(e,0,!1,e,null,!1,!1)})),[[\"acceptCharset\",\"accept-charset\"],[\"className\",\"class\"],[\"htmlFor\",\"for\"],[\"httpEquiv\",\"http-equiv\"]].forEach((function(e){var t=e[0];v[t]=new g(t,1,!1,e[1],null,!1,!1)})),[\"contentEditable\",\"draggable\",\"spellCheck\",\"value\"].forEach((function(e){v[e]=new g(e,2,!1,e.toLowerCase(),null,!1,!1)})),[\"autoReverse\",\"externalResourcesRequired\",\"focusable\",\"preserveAlpha\"].forEach((function(e){v[e]=new g(e,2,!1,e,null,!1,!1)})),\"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope\".split(\" \").forEach((function(e){v[e]=new g(e,3,!1,e.toLowerCase(),null,!1,!1)})),[\"checked\",\"multiple\",\"muted\",\"selected\"].forEach((function(e){v[e]=new g(e,3,!0,e,null,!1,!1)})),[\"capture\",\"download\"].forEach((function(e){v[e]=new g(e,4,!1,e,null,!1,!1)})),[\"cols\",\"rows\",\"size\",\"span\"].forEach((function(e){v[e]=new g(e,6,!1,e,null,!1,!1)})),[\"rowSpan\",\"start\"].forEach((function(e){v[e]=new g(e,5,!1,e.toLowerCase(),null,!1,!1)}));var _=\u002F[\\-:]([a-z])\u002Fg;function w(e){return e[1].toUpperCase()}function b(e,t,n,a){var r=v.hasOwnProperty(t)?v[t]:null;(null!==r?0===r.type:!a&&2\u003Ct.length&&(\"o\"===t[0]||\"O\"===t[0])&&(\"n\"===t[1]||\"N\"===t[1]))||(function(e,t,n,a){if(null==t||function(e,t,n,a){if(null!==n&&0===n.type)return!1;switch(typeof t){case\"function\":case\"symbol\":return!0;case\"boolean\":return!a&&(null!==n?!n.acceptsBooleans:\"data-\"!==(e=e.toLowerCase().slice(0,5))&&\"aria-\"!==e);default:return!1}}(e,t,n,a))return!0;if(a)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,n,r,a)&&(n=null),a||null===r?function(e){return!!m.call(h,e)||!m.call(f,e)&&(u.test(e)?h[e]=!0:(f[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,\"\"+n)):r.mustUseProperty?e[r.propertyName]=null===n?3!==r.type&&\"\":n:(t=r.attributeName,a=r.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(r=r.type)||4===r&&!0===n?\"\":\"\"+n,a?e.setAttributeNS(a,t,n):e.setAttribute(t,n))))}\"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height\".split(\" \").forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,null,!1,!1)})),\"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type\".split(\" \").forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxlink\",!1,!1)})),[\"xml:base\",\"xml:lang\",\"xml:space\"].forEach((function(e){var t=e.replace(_,w);v[t]=new g(t,1,!1,e,\"http:\u002F\u002Fwww.w3.org\u002FXML\u002F1998\u002Fnamespace\",!1,!1)})),[\"tabIndex\",\"crossOrigin\"].forEach((function(e){v[e]=new g(e,1,!1,e.toLowerCase(),null,!1,!1)})),v.xlinkHref=new g(\"xlinkHref\",1,!1,\"xlink:href\",\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxlink\",!0,!1),[\"src\",\"href\",\"action\",\"formAction\"].forEach((function(e){v[e]=new g(e,1,!1,e.toLowerCase(),null,!0,!0)}));var x=a.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,y=60103,k=60106,E=60107,C=60108,S=60114,M=60109,L=60110,N=60112,Z=60113,P=60120,z=60115,A=60116,B=60121,H=60128,T=60129,R=60130,O=60131;if(\"function\"==typeof Symbol&&Symbol.for){var j=Symbol.for;y=j(\"react.element\"),k=j(\"react.portal\"),E=j(\"react.fragment\"),C=j(\"react.strict_mode\"),S=j(\"react.profiler\"),M=j(\"react.provider\"),L=j(\"react.context\"),N=j(\"react.forward_ref\"),Z=j(\"react.suspense\"),P=j(\"react.suspense_list\"),z=j(\"react.memo\"),A=j(\"react.lazy\"),B=j(\"react.block\"),j(\"react.scope\"),H=j(\"react.opaque.id\"),T=j(\"react.debug_trace_mode\"),R=j(\"react.offscreen\"),O=j(\"react.legacy_hidden\")}var V,F=\"function\"==typeof Symbol&&Symbol.iterator;function W(e){return null===e||\"object\"!=typeof e?null:\"function\"==typeof(e=F&&e[F]||e[\"@@iterator\"])?e:null}function D(e){if(void 0===V)try{throw Error()}catch(e){var t=e.stack.trim().match(\u002F\\n( *(at )?)\u002F);V=t&&t[1]||\"\"}return\"\\n\"+V+e}var I=!1;function U(e,t){if(!e||I)return\"\";I=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,\"props\",{set:function(){throw Error()}}),\"object\"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(e){var a=e}Reflect.construct(e,[],t)}else{try{t.call()}catch(e){a=e}e.call(t.prototype)}else{try{throw Error()}catch(e){a=e}e()}}catch(e){if(e&&a&&\"string\"==typeof e.stack){for(var r=e.stack.split(\"\\n\"),o=a.stack.split(\"\\n\"),i=r.length-1,l=o.length-1;1\u003C=i&&0\u003C=l&&r[i]!==o[l];)l--;for(;1\u003C=i&&0\u003C=l;i--,l--)if(r[i]!==o[l]){if(1!==i||1!==l)do{if(i--,0>--l||r[i]!==o[l])return\"\\n\"+r[i].replace(\" at new \",\" at \")}while(1\u003C=i&&0\u003C=l);break}}}finally{I=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:\"\")?D(e):\"\"}function $(e){switch(e.tag){case 5:return D(e.type);case 16:return D(\"Lazy\");case 13:return D(\"Suspense\");case 19:return D(\"SuspenseList\");case 0:case 2:case 15:return U(e.type,!1);case 11:return U(e.type.render,!1);case 22:return U(e.type._render,!1);case 1:return U(e.type,!0);default:return\"\"}}function G(e){if(null==e)return null;if(\"function\"==typeof e)return e.displayName||e.name||null;if(\"string\"==typeof e)return e;switch(e){case E:return\"Fragment\";case k:return\"Portal\";case S:return\"Profiler\";case C:return\"StrictMode\";case Z:return\"Suspense\";case P:return\"SuspenseList\"}if(\"object\"==typeof e)switch(e.$$typeof){case L:return(e.displayName||\"Context\")+\".Consumer\";case M:return(e._context.displayName||\"Context\")+\".Provider\";case N:var t=e.render;return t=t.displayName||t.name||\"\",e.displayName||(\"\"!==t?\"ForwardRef(\"+t+\")\":\"ForwardRef\");case z:return G(e.type);case B:return G(e._render);case A:t=e._payload,e=e._init;try{return G(e(t))}catch(e){}}return null}function q(e){switch(typeof e){case\"boolean\":case\"number\":case\"object\":case\"string\":case\"undefined\":return e;default:return\"\"}}function K(e){var t=e.type;return(e=e.nodeName)&&\"input\"===e.toLowerCase()&&(\"checkbox\"===t||\"radio\"===t)}function X(e){e._valueTracker||(e._valueTracker=function(e){var t=K(e)?\"checked\":\"value\",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),a=\"\"+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&\"function\"==typeof n.get&&\"function\"==typeof n.set){var r=n.get,o=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return r.call(this)},set:function(e){a=\"\"+e,o.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return a},setValue:function(e){a=\"\"+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function Q(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),a=\"\";return e&&(a=K(e)?e.checked?\"true\":\"false\":e.value),(e=a)!==n&&(t.setValue(e),!0)}function J(e){if(void 0===(e=e||(\"undefined\"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function Y(e,t){var n=t.checked;return r({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function ee(e,t){var n=null==t.defaultValue?\"\":t.defaultValue,a=null!=t.checked?t.checked:t.defaultChecked;n=q(null!=t.value?t.value:n),e._wrapperState={initialChecked:a,initialValue:n,controlled:\"checkbox\"===t.type||\"radio\"===t.type?null!=t.checked:null!=t.value}}function te(e,t){null!=(t=t.checked)&&b(e,\"checked\",t,!1)}function ne(e,t){te(e,t);var n=q(t.value),a=t.type;if(null!=n)\"number\"===a?(0===n&&\"\"===e.value||e.value!=n)&&(e.value=\"\"+n):e.value!==\"\"+n&&(e.value=\"\"+n);else if(\"submit\"===a||\"reset\"===a)return void e.removeAttribute(\"value\");t.hasOwnProperty(\"value\")?re(e,t.type,n):t.hasOwnProperty(\"defaultValue\")&&re(e,t.type,q(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function ae(e,t,n){if(t.hasOwnProperty(\"value\")||t.hasOwnProperty(\"defaultValue\")){var a=t.type;if(!(\"submit\"!==a&&\"reset\"!==a||void 0!==t.value&&null!==t.value))return;t=\"\"+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}\"\"!==(n=e.name)&&(e.name=\"\"),e.defaultChecked=!!e._wrapperState.initialChecked,\"\"!==n&&(e.name=n)}function re(e,t,n){\"number\"===t&&J(e.ownerDocument)===e||(null==n?e.defaultValue=\"\"+e._wrapperState.initialValue:e.defaultValue!==\"\"+n&&(e.defaultValue=\"\"+n))}function oe(e,t){return e=r({children:void 0},t),(t=function(e){var t=\"\";return a.Children.forEach(e,(function(e){null!=e&&(t+=e)})),t}(t.children))&&(e.children=t),e}function ie(e,t,n,a){if(e=e.options,t){t={};for(var r=0;r\u003Cn.length;r++)t[\"$\"+n[r]]=!0;for(n=0;n\u003Ce.length;n++)r=t.hasOwnProperty(\"$\"+e[n].value),e[n].selected!==r&&(e[n].selected=r),r&&a&&(e[n].defaultSelected=!0)}else{for(n=\"\"+q(n),t=null,r=0;r\u003Ce.length;r++){if(e[r].value===n)return e[r].selected=!0,void(a&&(e[r].defaultSelected=!0));null!==t||e[r].disabled||(t=e[r])}null!==t&&(t.selected=!0)}}function le(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(i(91));return r({},t,{value:void 0,defaultValue:void 0,children:\"\"+e._wrapperState.initialValue})}function se(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(i(92));if(Array.isArray(n)){if(!(1>=n.length))throw Error(i(93));n=n[0]}t=n}null==t&&(t=\"\"),n=t}e._wrapperState={initialValue:q(n)}}function pe(e,t){var n=q(t.value),a=q(t.defaultValue);null!=n&&((n=\"\"+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=a&&(e.defaultValue=\"\"+a)}function ce(e){var t=e.textContent;t===e._wrapperState.initialValue&&\"\"!==t&&null!==t&&(e.value=t)}var de={html:\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxhtml\",mathml:\"http:\u002F\u002Fwww.w3.org\u002F1998\u002FMath\u002FMathML\",svg:\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"};function ue(e){switch(e){case\"svg\":return\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\";case\"math\":return\"http:\u002F\u002Fwww.w3.org\u002F1998\u002FMath\u002FMathML\";default:return\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxhtml\"}}function me(e,t){return null==e||\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxhtml\"===e?ue(t):\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\"===e&&\"foreignObject\"===t?\"http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxhtml\":e}var fe,he,ge=(he=function(e,t){if(e.namespaceURI!==de.svg||\"innerHTML\"in e)e.innerHTML=t;else{for((fe=fe||document.createElement(\"div\")).innerHTML=\"\u003Csvg>\"+t.valueOf().toString()+\"\u003C\u002Fsvg>\",t=fe.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},\"undefined\"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,t,n,a){MSApp.execUnsafeLocalFunction((function(){return he(e,t)}))}:he);function ve(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}var _e={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},we=[\"Webkit\",\"ms\",\"Moz\",\"O\"];function be(e,t,n){return null==t||\"boolean\"==typeof t||\"\"===t?\"\":n||\"number\"!=typeof t||0===t||_e.hasOwnProperty(e)&&_e[e]?(\"\"+t).trim():t+\"px\"}function xe(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var a=0===n.indexOf(\"--\"),r=be(n,t[n],a);\"float\"===n&&(n=\"cssFloat\"),a?e.setProperty(n,r):e[n]=r}}Object.keys(_e).forEach((function(e){we.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),_e[t]=_e[e]}))}));var ye=r({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ke(e,t){if(t){if(ye[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(i(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(i(60));if(\"object\"!=typeof t.dangerouslySetInnerHTML||!(\"__html\"in t.dangerouslySetInnerHTML))throw Error(i(61))}if(null!=t.style&&\"object\"!=typeof t.style)throw Error(i(62))}}function Ee(e,t){if(-1===e.indexOf(\"-\"))return\"string\"==typeof t.is;switch(e){case\"annotation-xml\":case\"color-profile\":case\"font-face\":case\"font-face-src\":case\"font-face-uri\":case\"font-face-format\":case\"font-face-name\":case\"missing-glyph\":return!1;default:return!0}}function Ce(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var Se=null,Me=null,Le=null;function Ne(e){if(e=ar(e)){if(\"function\"!=typeof Se)throw Error(i(280));var t=e.stateNode;t&&(t=or(t),Se(e.stateNode,e.type,t))}}function Ze(e){Me?Le?Le.push(e):Le=[e]:Me=e}function Pe(){if(Me){var e=Me,t=Le;if(Le=Me=null,Ne(e),t)for(e=0;e\u003Ct.length;e++)Ne(t[e])}}function ze(e,t){return e(t)}function Ae(e,t,n,a,r){return e(t,n,a,r)}function Be(){}var He=ze,Te=!1,Re=!1;function Oe(){null===Me&&null===Le||(Be(),Pe())}function je(e,t){var n=e.stateNode;if(null===n)return null;var a=or(n);if(null===a)return null;n=a[t];e:switch(t){case\"onClick\":case\"onClickCapture\":case\"onDoubleClick\":case\"onDoubleClickCapture\":case\"onMouseDown\":case\"onMouseDownCapture\":case\"onMouseMove\":case\"onMouseMoveCapture\":case\"onMouseUp\":case\"onMouseUpCapture\":case\"onMouseEnter\":(a=!a.disabled)||(a=!(\"button\"===(e=e.type)||\"input\"===e||\"select\"===e||\"textarea\"===e)),e=!a;break e;default:e=!1}if(e)return null;if(n&&\"function\"!=typeof n)throw Error(i(231,t,typeof n));return n}var Ve=!1;if(d)try{var Fe={};Object.defineProperty(Fe,\"passive\",{get:function(){Ve=!0}}),window.addEventListener(\"test\",Fe,Fe),window.removeEventListener(\"test\",Fe,Fe)}catch(he){Ve=!1}function We(e,t,n,a,r,o,i,l,s){var p=Array.prototype.slice.call(arguments,3);try{t.apply(n,p)}catch(e){this.onError(e)}}var De=!1,Ie=null,Ue=!1,$e=null,Ge={onError:function(e){De=!0,Ie=e}};function qe(e,t,n,a,r,o,i,l,s){De=!1,Ie=null,We.apply(Ge,arguments)}function Ke(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026&(t=e).flags)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function Xe(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&null!==(e=e.alternate)&&(t=e.memoizedState),null!==t)return t.dehydrated}return null}function Qe(e){if(Ke(e)!==e)throw Error(i(188))}function Je(e){if(e=function(e){var t=e.alternate;if(!t){if(null===(t=Ke(e)))throw Error(i(188));return t!==e?null:e}for(var n=e,a=t;;){var r=n.return;if(null===r)break;var o=r.alternate;if(null===o){if(null!==(a=r.return)){n=a;continue}break}if(r.child===o.child){for(o=r.child;o;){if(o===n)return Qe(r),e;if(o===a)return Qe(r),t;o=o.sibling}throw Error(i(188))}if(n.return!==a.return)n=r,a=o;else{for(var l=!1,s=r.child;s;){if(s===n){l=!0,n=r,a=o;break}if(s===a){l=!0,a=r,n=o;break}s=s.sibling}if(!l){for(s=o.child;s;){if(s===n){l=!0,n=o,a=r;break}if(s===a){l=!0,a=o,n=r;break}s=s.sibling}if(!l)throw Error(i(189))}}if(n.alternate!==a)throw Error(i(190))}if(3!==n.tag)throw Error(i(188));return n.stateNode.current===n?e:t}(e),!e)return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function Ye(e,t){for(var n=e.alternate;null!==t;){if(t===e||t===n)return!0;t=t.return}return!1}var et,tt,nt,at,rt=!1,ot=[],it=null,lt=null,st=null,pt=new Map,ct=new Map,dt=[],ut=\"mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit\".split(\" \");function mt(e,t,n,a,r){return{blockedOn:e,domEventName:t,eventSystemFlags:16|n,nativeEvent:r,targetContainers:[a]}}function ft(e,t){switch(e){case\"focusin\":case\"focusout\":it=null;break;case\"dragenter\":case\"dragleave\":lt=null;break;case\"mouseover\":case\"mouseout\":st=null;break;case\"pointerover\":case\"pointerout\":pt.delete(t.pointerId);break;case\"gotpointercapture\":case\"lostpointercapture\":ct.delete(t.pointerId)}}function ht(e,t,n,a,r,o){return null===e||e.nativeEvent!==o?(e=mt(t,n,a,r,o),null!==t&&null!==(t=ar(t))&&tt(t),e):(e.eventSystemFlags|=a,t=e.targetContainers,null!==r&&-1===t.indexOf(r)&&t.push(r),e)}function gt(e){var t=nr(e.target);if(null!==t){var n=Ke(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Xe(n)))return e.blockedOn=t,void at(e.lanePriority,(function(){o.unstable_runWithPriority(e.priority,(function(){nt(n)}))}))}else if(3===t&&n.stateNode.hydrate)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function vt(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0\u003Ct.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n)return null!==(t=ar(n))&&tt(t),e.blockedOn=n,!1;t.shift()}return!0}function _t(e,t,n){vt(e)&&n.delete(t)}function wt(){for(rt=!1;0\u003Cot.length;){var e=ot[0];if(null!==e.blockedOn){null!==(e=ar(e.blockedOn))&&et(e);break}for(var t=e.targetContainers;0\u003Ct.length;){var n=Jt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n){e.blockedOn=n;break}t.shift()}null===e.blockedOn&&ot.shift()}null!==it&&vt(it)&&(it=null),null!==lt&&vt(lt)&&(lt=null),null!==st&&vt(st)&&(st=null),pt.forEach(_t),ct.forEach(_t)}function bt(e,t){e.blockedOn===t&&(e.blockedOn=null,rt||(rt=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,wt)))}function xt(e){function t(t){return bt(t,e)}if(0\u003Cot.length){bt(ot[0],e);for(var n=1;n\u003Cot.length;n++){var a=ot[n];a.blockedOn===e&&(a.blockedOn=null)}}for(null!==it&&bt(it,e),null!==lt&&bt(lt,e),null!==st&&bt(st,e),pt.forEach(t),ct.forEach(t),n=0;n\u003Cdt.length;n++)(a=dt[n]).blockedOn===e&&(a.blockedOn=null);for(;0\u003Cdt.length&&null===(n=dt[0]).blockedOn;)gt(n),null===n.blockedOn&&dt.shift()}function yt(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n[\"Webkit\"+e]=\"webkit\"+t,n[\"Moz\"+e]=\"moz\"+t,n}var kt={animationend:yt(\"Animation\",\"AnimationEnd\"),animationiteration:yt(\"Animation\",\"AnimationIteration\"),animationstart:yt(\"Animation\",\"AnimationStart\"),transitionend:yt(\"Transition\",\"TransitionEnd\")},Et={},Ct={};function St(e){if(Et[e])return Et[e];if(!kt[e])return e;var t,n=kt[e];for(t in n)if(n.hasOwnProperty(t)&&t in Ct)return Et[e]=n[t];return e}d&&(Ct=document.createElement(\"div\").style,\"AnimationEvent\"in window||(delete kt.animationend.animation,delete kt.animationiteration.animation,delete kt.animationstart.animation),\"TransitionEvent\"in window||delete kt.transitionend.transition);var Mt=St(\"animationend\"),Lt=St(\"animationiteration\"),Nt=St(\"animationstart\"),Zt=St(\"transitionend\"),Pt=new Map,zt=new Map,At=[\"abort\",\"abort\",Mt,\"animationEnd\",Lt,\"animationIteration\",Nt,\"animationStart\",\"canplay\",\"canPlay\",\"canplaythrough\",\"canPlayThrough\",\"durationchange\",\"durationChange\",\"emptied\",\"emptied\",\"encrypted\",\"encrypted\",\"ended\",\"ended\",\"error\",\"error\",\"gotpointercapture\",\"gotPointerCapture\",\"load\",\"load\",\"loadeddata\",\"loadedData\",\"loadedmetadata\",\"loadedMetadata\",\"loadstart\",\"loadStart\",\"lostpointercapture\",\"lostPointerCapture\",\"playing\",\"playing\",\"progress\",\"progress\",\"seeking\",\"seeking\",\"stalled\",\"stalled\",\"suspend\",\"suspend\",\"timeupdate\",\"timeUpdate\",Zt,\"transitionEnd\",\"waiting\",\"waiting\"];function Bt(e,t){for(var n=0;n\u003Ce.length;n+=2){var a=e[n],r=e[n+1];r=\"on\"+(r[0].toUpperCase()+r.slice(1)),zt.set(a,t),Pt.set(a,r),p(r,[a])}}(0,o.unstable_now)();var Ht=8;function Tt(e){if(0!=(1&e))return Ht=15,1;if(0!=(2&e))return Ht=14,2;if(0!=(4&e))return Ht=13,4;var t=24&e;return 0!==t?(Ht=12,t):0!=(32&e)?(Ht=11,32):0!=(t=192&e)?(Ht=10,t):0!=(256&e)?(Ht=9,256):0!=(t=3584&e)?(Ht=8,t):0!=(4096&e)?(Ht=7,4096):0!=(t=4186112&e)?(Ht=6,t):0!=(t=62914560&e)?(Ht=5,t):67108864&e?(Ht=4,67108864):0!=(134217728&e)?(Ht=3,134217728):0!=(t=805306368&e)?(Ht=2,t):0!=(1073741824&e)?(Ht=1,1073741824):(Ht=8,e)}function Rt(e,t){var n=e.pendingLanes;if(0===n)return Ht=0;var a=0,r=0,o=e.expiredLanes,i=e.suspendedLanes,l=e.pingedLanes;if(0!==o)a=o,r=Ht=15;else if(0!=(o=134217727&n)){var s=o&~i;0!==s?(a=Tt(s),r=Ht):0!=(l&=o)&&(a=Tt(l),r=Ht)}else 0!=(o=n&~i)?(a=Tt(o),r=Ht):0!==l&&(a=Tt(l),r=Ht);if(0===a)return 0;if(a=n&((0>(a=31-Dt(a))?0:1\u003C\u003Ca)\u003C\u003C1)-1,0!==t&&t!==a&&0==(t&i)){if(Tt(t),r\u003C=Ht)return t;Ht=r}if(0!==(t=e.entangledLanes))for(e=e.entanglements,t&=a;0\u003Ct;)r=1\u003C\u003C(n=31-Dt(t)),a|=e[n],t&=~r;return a}function Ot(e){return 0!=(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function jt(e,t){switch(e){case 15:return 1;case 14:return 2;case 12:return 0===(e=Vt(24&~t))?jt(10,t):e;case 10:return 0===(e=Vt(192&~t))?jt(8,t):e;case 8:return 0===(e=Vt(3584&~t))&&0===(e=Vt(4186112&~t))&&(e=512),e;case 2:return 0===(t=Vt(805306368&~t))&&(t=268435456),t}throw Error(i(358,e))}function Vt(e){return e&-e}function Ft(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Wt(e,t,n){e.pendingLanes|=t;var a=t-1;e.suspendedLanes&=a,e.pingedLanes&=a,(e=e.eventTimes)[t=31-Dt(t)]=n}var Dt=Math.clz32?Math.clz32:function(e){return 0===e?32:31-(It(e)\u002FUt|0)|0},It=Math.log,Ut=Math.LN2,$t=o.unstable_UserBlockingPriority,Gt=o.unstable_runWithPriority,qt=!0;function Kt(e,t,n,a){Te||Be();var r=Qt,o=Te;Te=!0;try{Ae(r,e,t,n,a)}finally{(Te=o)||Oe()}}function Xt(e,t,n,a){Gt($t,Qt.bind(null,e,t,n,a))}function Qt(e,t,n,a){var r;if(qt)if((r=0==(4&t))&&0\u003Cot.length&&-1\u003Cut.indexOf(e))e=mt(null,e,t,n,a),ot.push(e);else{var o=Jt(e,t,n,a);if(null===o)r&&ft(e,a);else{if(r){if(-1\u003Cut.indexOf(e))return e=mt(o,e,t,n,a),void ot.push(e);if(function(e,t,n,a,r){switch(t){case\"focusin\":return it=ht(it,e,t,n,a,r),!0;case\"dragenter\":return lt=ht(lt,e,t,n,a,r),!0;case\"mouseover\":return st=ht(st,e,t,n,a,r),!0;case\"pointerover\":var o=r.pointerId;return pt.set(o,ht(pt.get(o)||null,e,t,n,a,r)),!0;case\"gotpointercapture\":return o=r.pointerId,ct.set(o,ht(ct.get(o)||null,e,t,n,a,r)),!0}return!1}(o,e,t,n,a))return;ft(e,a)}Ha(e,t,a,null,n)}}}function Jt(e,t,n,a){var r=Ce(a);if(null!==(r=nr(r))){var o=Ke(r);if(null===o)r=null;else{var i=o.tag;if(13===i){if(null!==(r=Xe(o)))return r;r=null}else if(3===i){if(o.stateNode.hydrate)return 3===o.tag?o.stateNode.containerInfo:null;r=null}else o!==r&&(r=null)}}return Ha(e,t,a,r,n),null}var Yt=null,en=null,tn=null;function nn(){if(tn)return tn;var e,t,n=en,a=n.length,r=\"value\"in Yt?Yt.value:Yt.textContent,o=r.length;for(e=0;e\u003Ca&&n[e]===r[e];e++);var i=a-e;for(t=1;t\u003C=i&&n[a-t]===r[o-t];t++);return tn=r.slice(e,1\u003Ct?1-t:void 0)}function an(e){var t=e.keyCode;return\"charCode\"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32\u003C=e||13===e?e:0}function rn(){return!0}function on(){return!1}function ln(e){function t(t,n,a,r,o){for(var i in this._reactName=t,this._targetInst=a,this.type=n,this.nativeEvent=r,this.target=o,this.currentTarget=null,e)e.hasOwnProperty(i)&&(t=e[i],this[i]=t?t(r):r[i]);return this.isDefaultPrevented=(null!=r.defaultPrevented?r.defaultPrevented:!1===r.returnValue)?rn:on,this.isPropagationStopped=on,this}return r(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():\"unknown\"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=rn)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():\"unknown\"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=rn)},persist:function(){},isPersistent:rn}),t}var sn,pn,cn,dn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},un=ln(dn),mn=r({},dn,{view:0,detail:0}),fn=ln(mn),hn=r({},mn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Ln,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return\"movementX\"in e?e.movementX:(e!==cn&&(cn&&\"mousemove\"===e.type?(sn=e.screenX-cn.screenX,pn=e.screenY-cn.screenY):pn=sn=0,cn=e),sn)},movementY:function(e){return\"movementY\"in e?e.movementY:pn}}),gn=ln(hn),vn=ln(r({},hn,{dataTransfer:0})),wn=ln(r({},mn,{relatedTarget:0})),bn=ln(r({},dn,{animationName:0,elapsedTime:0,pseudoElement:0})),xn=r({},dn,{clipboardData:function(e){return\"clipboardData\"in e?e.clipboardData:window.clipboardData}}),yn=ln(xn),kn=ln(r({},dn,{data:0})),En={Esc:\"Escape\",Spacebar:\" \",Left:\"ArrowLeft\",Up:\"ArrowUp\",Right:\"ArrowRight\",Down:\"ArrowDown\",Del:\"Delete\",Win:\"OS\",Menu:\"ContextMenu\",Apps:\"ContextMenu\",Scroll:\"ScrollLock\",MozPrintableKey:\"Unidentified\"},Cn={8:\"Backspace\",9:\"Tab\",12:\"Clear\",13:\"Enter\",16:\"Shift\",17:\"Control\",18:\"Alt\",19:\"Pause\",20:\"CapsLock\",27:\"Escape\",32:\" \",33:\"PageUp\",34:\"PageDown\",35:\"End\",36:\"Home\",37:\"ArrowLeft\",38:\"ArrowUp\",39:\"ArrowRight\",40:\"ArrowDown\",45:\"Insert\",46:\"Delete\",112:\"F1\",113:\"F2\",114:\"F3\",115:\"F4\",116:\"F5\",117:\"F6\",118:\"F7\",119:\"F8\",120:\"F9\",121:\"F10\",122:\"F11\",123:\"F12\",144:\"NumLock\",145:\"ScrollLock\",224:\"Meta\"},Sn={Alt:\"altKey\",Control:\"ctrlKey\",Meta:\"metaKey\",Shift:\"shiftKey\"};function Mn(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Sn[e])&&!!t[e]}function Ln(){return Mn}var Nn=r({},mn,{key:function(e){if(e.key){var t=En[e.key]||e.key;if(\"Unidentified\"!==t)return t}return\"keypress\"===e.type?13===(e=an(e))?\"Enter\":String.fromCharCode(e):\"keydown\"===e.type||\"keyup\"===e.type?Cn[e.keyCode]||\"Unidentified\":\"\"},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Ln,charCode:function(e){return\"keypress\"===e.type?an(e):0},keyCode:function(e){return\"keydown\"===e.type||\"keyup\"===e.type?e.keyCode:0},which:function(e){return\"keypress\"===e.type?an(e):\"keydown\"===e.type||\"keyup\"===e.type?e.keyCode:0}}),Zn=ln(Nn),Pn=ln(r({},hn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),zn=ln(r({},mn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Ln})),An=ln(r({},dn,{propertyName:0,elapsedTime:0,pseudoElement:0})),Bn=r({},hn,{deltaX:function(e){return\"deltaX\"in e?e.deltaX:\"wheelDeltaX\"in e?-e.wheelDeltaX:0},deltaY:function(e){return\"deltaY\"in e?e.deltaY:\"wheelDeltaY\"in e?-e.wheelDeltaY:\"wheelDelta\"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),Hn=ln(Bn),Tn=[9,13,27,32],Rn=d&&\"CompositionEvent\"in window,On=null;d&&\"documentMode\"in document&&(On=document.documentMode);var jn=d&&\"TextEvent\"in window&&!On,Vn=d&&(!Rn||On&&8\u003COn&&11>=On),Fn=String.fromCharCode(32),Wn=!1;function Dn(e,t){switch(e){case\"keyup\":return-1!==Tn.indexOf(t.keyCode);case\"keydown\":return 229!==t.keyCode;case\"keypress\":case\"mousedown\":case\"focusout\":return!0;default:return!1}}function In(e){return\"object\"==typeof(e=e.detail)&&\"data\"in e?e.data:null}var Un=!1,$n={color:!0,date:!0,datetime:!0,\"datetime-local\":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Gn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return\"input\"===t?!!$n[e.type]:\"textarea\"===t}function qn(e,t,n,a){Ze(a),0\u003C(t=Ra(t,\"onChange\")).length&&(n=new un(\"onChange\",\"change\",null,n,a),e.push({event:n,listeners:t}))}var Kn=null,Xn=null;function Qn(e){Na(e,0)}function Jn(e){if(Q(rr(e)))return e}function Yn(e,t){if(\"change\"===e)return t}var ea=!1;if(d){var ta;if(d){var na=\"oninput\"in document;if(!na){var aa=document.createElement(\"div\");aa.setAttribute(\"oninput\",\"return;\"),na=\"function\"==typeof aa.oninput}ta=na}else ta=!1;ea=ta&&(!document.documentMode||9\u003Cdocument.documentMode)}function ra(){Kn&&(Kn.detachEvent(\"onpropertychange\",oa),Xn=Kn=null)}function oa(e){if(\"value\"===e.propertyName&&Jn(Xn)){var t=[];if(qn(t,Xn,e,Ce(e)),e=Qn,Te)e(t);else{Te=!0;try{ze(e,t)}finally{Te=!1,Oe()}}}}function ia(e,t,n){\"focusin\"===e?(ra(),Xn=n,(Kn=t).attachEvent(\"onpropertychange\",oa)):\"focusout\"===e&&ra()}function la(e){if(\"selectionchange\"===e||\"keyup\"===e||\"keydown\"===e)return Jn(Xn)}function sa(e,t){if(\"click\"===e)return Jn(t)}function pa(e,t){if(\"input\"===e||\"change\"===e)return Jn(t)}var ca=\"function\"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1\u002Fe==1\u002Ft)||e!=e&&t!=t},da=Object.prototype.hasOwnProperty;function ua(e,t){if(ca(e,t))return!0;if(\"object\"!=typeof e||null===e||\"object\"!=typeof t||null===t)return!1;var n=Object.keys(e),a=Object.keys(t);if(n.length!==a.length)return!1;for(a=0;a\u003Cn.length;a++)if(!da.call(t,n[a])||!ca(e[n[a]],t[n[a]]))return!1;return!0}function ma(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function fa(e,t){var n,a=ma(e);for(e=0;a;){if(3===a.nodeType){if(n=e+a.textContent.length,e\u003C=t&&n>=t)return{node:a,offset:t-e};e=n}e:{for(;a;){if(a.nextSibling){a=a.nextSibling;break e}a=a.parentNode}a=void 0}a=ma(a)}}function ha(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?ha(e,t.parentNode):\"contains\"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function ga(){for(var e=window,t=J();t instanceof e.HTMLIFrameElement;){try{var n=\"string\"==typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;t=J((e=t.contentWindow).document)}return t}function va(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(\"input\"===t&&(\"text\"===e.type||\"search\"===e.type||\"tel\"===e.type||\"url\"===e.type||\"password\"===e.type)||\"textarea\"===t||\"true\"===e.contentEditable)}var _a=d&&\"documentMode\"in document&&11>=document.documentMode,wa=null,ba=null,xa=null,ya=!1;function ka(e,t,n){var a=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;ya||null==wa||wa!==J(a)||(a=\"selectionStart\"in(a=wa)&&va(a)?{start:a.selectionStart,end:a.selectionEnd}:{anchorNode:(a=(a.ownerDocument&&a.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:a.anchorOffset,focusNode:a.focusNode,focusOffset:a.focusOffset},xa&&ua(xa,a)||(xa=a,0\u003C(a=Ra(ba,\"onSelect\")).length&&(t=new un(\"onSelect\",\"select\",null,t,n),e.push({event:t,listeners:a}),t.target=wa)))}Bt(\"cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange\".split(\" \"),0),Bt(\"drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel\".split(\" \"),1),Bt(At,2);for(var Ea=\"change selectionchange textInput compositionstart compositionend compositionupdate\".split(\" \"),Ca=0;Ca\u003CEa.length;Ca++)zt.set(Ea[Ca],0);c(\"onMouseEnter\",[\"mouseout\",\"mouseover\"]),c(\"onMouseLeave\",[\"mouseout\",\"mouseover\"]),c(\"onPointerEnter\",[\"pointerout\",\"pointerover\"]),c(\"onPointerLeave\",[\"pointerout\",\"pointerover\"]),p(\"onChange\",\"change click focusin focusout input keydown keyup selectionchange\".split(\" \")),p(\"onSelect\",\"focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange\".split(\" \")),p(\"onBeforeInput\",[\"compositionend\",\"keypress\",\"textInput\",\"paste\"]),p(\"onCompositionEnd\",\"compositionend focusout keydown keypress keyup mousedown\".split(\" \")),p(\"onCompositionStart\",\"compositionstart focusout keydown keypress keyup mousedown\".split(\" \")),p(\"onCompositionUpdate\",\"compositionupdate focusout keydown keypress keyup mousedown\".split(\" \"));var Sa=\"abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting\".split(\" \"),Ma=new Set(\"cancel close invalid load scroll toggle\".split(\" \").concat(Sa));function La(e,t,n){var a=e.type||\"unknown-event\";e.currentTarget=n,function(e,t,n,a,r,o,l,s,p){if(qe.apply(this,arguments),De){if(!De)throw Error(i(198));var c=Ie;De=!1,Ie=null,Ue||(Ue=!0,$e=c)}}(a,t,void 0,e),e.currentTarget=null}function Na(e,t){t=0!=(4&t);for(var n=0;n\u003Ce.length;n++){var a=e[n],r=a.event;a=a.listeners;e:{var o=void 0;if(t)for(var i=a.length-1;0\u003C=i;i--){var l=a[i],s=l.instance,p=l.currentTarget;if(l=l.listener,s!==o&&r.isPropagationStopped())break e;La(r,l,p),o=s}else for(i=0;i\u003Ca.length;i++){if(s=(l=a[i]).instance,p=l.currentTarget,l=l.listener,s!==o&&r.isPropagationStopped())break e;La(r,l,p),o=s}}}if(Ue)throw e=$e,Ue=!1,$e=null,e}function Za(e,t){var n=ir(t),a=e+\"__bubble\";n.has(a)||(Ba(t,e,2,!1),n.add(a))}var Pa=\"_reactListening\"+Math.random().toString(36).slice(2);function za(e){e[Pa]||(e[Pa]=!0,l.forEach((function(t){Ma.has(t)||Aa(t,!1,e,null),Aa(t,!0,e,null)})))}function Aa(e,t,n,a){var r=4\u003Carguments.length&&void 0!==arguments[4]?arguments[4]:0,o=n;if(\"selectionchange\"===e&&9!==n.nodeType&&(o=n.ownerDocument),null!==a&&!t&&Ma.has(e)){if(\"scroll\"!==e)return;r|=2,o=a}var i=ir(o),l=e+\"__\"+(t?\"capture\":\"bubble\");i.has(l)||(t&&(r|=4),Ba(o,e,r,t),i.add(l))}function Ba(e,t,n,a){var r=zt.get(t);switch(void 0===r?2:r){case 0:r=Kt;break;case 1:r=Xt;break;default:r=Qt}n=r.bind(null,t,n,e),r=void 0,!Ve||\"touchstart\"!==t&&\"touchmove\"!==t&&\"wheel\"!==t||(r=!0),a?void 0!==r?e.addEventListener(t,n,{capture:!0,passive:r}):e.addEventListener(t,n,!0):void 0!==r?e.addEventListener(t,n,{passive:r}):e.addEventListener(t,n,!1)}function Ha(e,t,n,a,r){var o=a;if(0==(1&t)&&0==(2&t)&&null!==a)e:for(;;){if(null===a)return;var i=a.tag;if(3===i||4===i){var l=a.stateNode.containerInfo;if(l===r||8===l.nodeType&&l.parentNode===r)break;if(4===i)for(i=a.return;null!==i;){var s=i.tag;if((3===s||4===s)&&((s=i.stateNode.containerInfo)===r||8===s.nodeType&&s.parentNode===r))return;i=i.return}for(;null!==l;){if(null===(i=nr(l)))return;if(5===(s=i.tag)||6===s){a=o=i;continue e}l=l.parentNode}}a=a.return}!function(e,t,n){if(Re)return e();Re=!0;try{return He(e,t,n)}finally{Re=!1,Oe()}}((function(){var a=o,r=Ce(n),i=[];e:{var l=Pt.get(e);if(void 0!==l){var s=un,p=e;switch(e){case\"keypress\":if(0===an(n))break e;case\"keydown\":case\"keyup\":s=Zn;break;case\"focusin\":p=\"focus\",s=wn;break;case\"focusout\":p=\"blur\",s=wn;break;case\"beforeblur\":case\"afterblur\":s=wn;break;case\"click\":if(2===n.button)break e;case\"auxclick\":case\"dblclick\":case\"mousedown\":case\"mousemove\":case\"mouseup\":case\"mouseout\":case\"mouseover\":case\"contextmenu\":s=gn;break;case\"drag\":case\"dragend\":case\"dragenter\":case\"dragexit\":case\"dragleave\":case\"dragover\":case\"dragstart\":case\"drop\":s=vn;break;case\"touchcancel\":case\"touchend\":case\"touchmove\":case\"touchstart\":s=zn;break;case Mt:case Lt:case Nt:s=bn;break;case Zt:s=An;break;case\"scroll\":s=fn;break;case\"wheel\":s=Hn;break;case\"copy\":case\"cut\":case\"paste\":s=yn;break;case\"gotpointercapture\":case\"lostpointercapture\":case\"pointercancel\":case\"pointerdown\":case\"pointermove\":case\"pointerout\":case\"pointerover\":case\"pointerup\":s=Pn}var c=0!=(4&t),d=!c&&\"scroll\"===e,u=c?null!==l?l+\"Capture\":null:l;c=[];for(var m,f=a;null!==f;){var h=(m=f).stateNode;if(5===m.tag&&null!==h&&(m=h,null!==u&&null!=(h=je(f,u))&&c.push(Ta(f,h,m))),d)break;f=f.return}0\u003Cc.length&&(l=new s(l,p,null,n,r),i.push({event:l,listeners:c}))}}if(0==(7&t)){if(s=\"mouseout\"===e||\"pointerout\"===e,(!(l=\"mouseover\"===e||\"pointerover\"===e)||0!=(16&t)||!(p=n.relatedTarget||n.fromElement)||!nr(p)&&!p[er])&&(s||l)&&(l=r.window===r?r:(l=r.ownerDocument)?l.defaultView||l.parentWindow:window,s?(s=a,null!==(p=(p=n.relatedTarget||n.toElement)?nr(p):null)&&(p!==(d=Ke(p))||5!==p.tag&&6!==p.tag)&&(p=null)):(s=null,p=a),s!==p)){if(c=gn,h=\"onMouseLeave\",u=\"onMouseEnter\",f=\"mouse\",\"pointerout\"!==e&&\"pointerover\"!==e||(c=Pn,h=\"onPointerLeave\",u=\"onPointerEnter\",f=\"pointer\"),d=null==s?l:rr(s),m=null==p?l:rr(p),(l=new c(h,f+\"leave\",s,n,r)).target=d,l.relatedTarget=m,h=null,nr(r)===a&&((c=new c(u,f+\"enter\",p,n,r)).target=m,c.relatedTarget=d,h=c),d=h,s&&p)e:{for(u=p,f=0,m=c=s;m;m=Oa(m))f++;for(m=0,h=u;h;h=Oa(h))m++;for(;0\u003Cf-m;)c=Oa(c),f--;for(;0\u003Cm-f;)u=Oa(u),m--;for(;f--;){if(c===u||null!==u&&c===u.alternate)break e;c=Oa(c),u=Oa(u)}c=null}else c=null;null!==s&&ja(i,l,s,c,!1),null!==p&&null!==d&&ja(i,d,p,c,!0)}if(\"select\"===(s=(l=a?rr(a):window).nodeName&&l.nodeName.toLowerCase())||\"input\"===s&&\"file\"===l.type)var g=Yn;else if(Gn(l))if(ea)g=pa;else{g=la;var v=ia}else(s=l.nodeName)&&\"input\"===s.toLowerCase()&&(\"checkbox\"===l.type||\"radio\"===l.type)&&(g=sa);switch(g&&(g=g(e,a))?qn(i,g,n,r):(v&&v(e,l,a),\"focusout\"===e&&(v=l._wrapperState)&&v.controlled&&\"number\"===l.type&&re(l,\"number\",l.value)),v=a?rr(a):window,e){case\"focusin\":(Gn(v)||\"true\"===v.contentEditable)&&(wa=v,ba=a,xa=null);break;case\"focusout\":xa=ba=wa=null;break;case\"mousedown\":ya=!0;break;case\"contextmenu\":case\"mouseup\":case\"dragend\":ya=!1,ka(i,n,r);break;case\"selectionchange\":if(_a)break;case\"keydown\":case\"keyup\":ka(i,n,r)}var _;if(Rn)e:{switch(e){case\"compositionstart\":var w=\"onCompositionStart\";break e;case\"compositionend\":w=\"onCompositionEnd\";break e;case\"compositionupdate\":w=\"onCompositionUpdate\";break e}w=void 0}else Un?Dn(e,n)&&(w=\"onCompositionEnd\"):\"keydown\"===e&&229===n.keyCode&&(w=\"onCompositionStart\");w&&(Vn&&\"ko\"!==n.locale&&(Un||\"onCompositionStart\"!==w?\"onCompositionEnd\"===w&&Un&&(_=nn()):(en=\"value\"in(Yt=r)?Yt.value:Yt.textContent,Un=!0)),0\u003C(v=Ra(a,w)).length&&(w=new kn(w,e,null,n,r),i.push({event:w,listeners:v}),(_||null!==(_=In(n)))&&(w.data=_))),(_=jn?function(e,t){switch(e){case\"compositionend\":return In(t);case\"keypress\":return 32!==t.which?null:(Wn=!0,Fn);case\"textInput\":return(e=t.data)===Fn&&Wn?null:e;default:return null}}(e,n):function(e,t){if(Un)return\"compositionend\"===e||!Rn&&Dn(e,t)?(e=nn(),tn=en=Yt=null,Un=!1,e):null;switch(e){case\"paste\":default:return null;case\"keypress\":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1\u003Ct.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case\"compositionend\":return Vn&&\"ko\"!==t.locale?null:t.data}}(e,n))&&0\u003C(a=Ra(a,\"onBeforeInput\")).length&&(r=new kn(\"onBeforeInput\",\"beforeinput\",null,n,r),i.push({event:r,listeners:a}),r.data=_)}Na(i,t)}))}function Ta(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Ra(e,t){for(var n=t+\"Capture\",a=[];null!==e;){var r=e,o=r.stateNode;5===r.tag&&null!==o&&(r=o,null!=(o=je(e,n))&&a.unshift(Ta(e,o,r)),null!=(o=je(e,t))&&a.push(Ta(e,o,r))),e=e.return}return a}function Oa(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function ja(e,t,n,a,r){for(var o=t._reactName,i=[];null!==n&&n!==a;){var l=n,s=l.alternate,p=l.stateNode;if(null!==s&&s===a)break;5===l.tag&&null!==p&&(l=p,r?null!=(s=je(n,o))&&i.unshift(Ta(n,s,l)):r||null!=(s=je(n,o))&&i.push(Ta(n,s,l))),n=n.return}0!==i.length&&e.push({event:t,listeners:i})}function Va(){}var Fa=null,Wa=null;function Da(e,t){switch(e){case\"button\":case\"input\":case\"select\":case\"textarea\":return!!t.autoFocus}return!1}function Ia(e,t){return\"textarea\"===e||\"option\"===e||\"noscript\"===e||\"string\"==typeof t.children||\"number\"==typeof t.children||\"object\"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var Ua=\"function\"==typeof setTimeout?setTimeout:void 0,$a=\"function\"==typeof clearTimeout?clearTimeout:void 0;function Ga(e){(1===e.nodeType||9===e.nodeType&&null!=(e=e.body))&&(e.textContent=\"\")}function qa(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Ka(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if(\"$\"===n||\"$!\"===n||\"$?\"===n){if(0===t)return e;t--}else\"\u002F$\"===n&&t++}e=e.previousSibling}return null}var Xa=0,Qa=Math.random().toString(36).slice(2),Ja=\"__reactFiber$\"+Qa,Ya=\"__reactProps$\"+Qa,er=\"__reactContainer$\"+Qa,tr=\"__reactEvents$\"+Qa;function nr(e){var t=e[Ja];if(t)return t;for(var n=e.parentNode;n;){if(t=n[er]||n[Ja]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=Ka(e);null!==e;){if(n=e[Ja])return n;e=Ka(e)}return t}n=(e=n).parentNode}return null}function ar(e){return!(e=e[Ja]||e[er])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function rr(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(i(33))}function or(e){return e[Ya]||null}function ir(e){var t=e[tr];return void 0===t&&(t=e[tr]=new Set),t}var lr=[],sr=-1;function pr(e){return{current:e}}function cr(e){0>sr||(e.current=lr[sr],lr[sr]=null,sr--)}function dr(e,t){sr++,lr[sr]=e.current,e.current=t}var ur={},mr=pr(ur),fr=pr(!1),hr=ur;function gr(e,t){var n=e.type.contextTypes;if(!n)return ur;var a=e.stateNode;if(a&&a.__reactInternalMemoizedUnmaskedChildContext===t)return a.__reactInternalMemoizedMaskedChildContext;var r,o={};for(r in n)o[r]=t[r];return a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function vr(e){return null!=e.childContextTypes}function _r(){cr(fr),cr(mr)}function wr(e,t,n){if(mr.current!==ur)throw Error(i(168));dr(mr,t),dr(fr,n)}function br(e,t,n){var a=e.stateNode;if(e=t.childContextTypes,\"function\"!=typeof a.getChildContext)return n;for(var o in a=a.getChildContext())if(!(o in e))throw Error(i(108,G(t)||\"Unknown\",o));return r({},n,a)}function xr(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||ur,hr=mr.current,dr(mr,e),dr(fr,fr.current),!0}function yr(e,t,n){var a=e.stateNode;if(!a)throw Error(i(169));n?(e=br(e,t,hr),a.__reactInternalMemoizedMergedChildContext=e,cr(fr),cr(mr),dr(mr,e)):cr(fr),dr(fr,n)}var kr=null,Er=null,Cr=o.unstable_runWithPriority,Sr=o.unstable_scheduleCallback,Mr=o.unstable_cancelCallback,Lr=o.unstable_shouldYield,Nr=o.unstable_requestPaint,Zr=o.unstable_now,Pr=o.unstable_getCurrentPriorityLevel,zr=o.unstable_ImmediatePriority,Ar=o.unstable_UserBlockingPriority,Br=o.unstable_NormalPriority,Hr=o.unstable_LowPriority,Tr=o.unstable_IdlePriority,Rr={},Or=void 0!==Nr?Nr:function(){},jr=null,Vr=null,Fr=!1,Wr=Zr(),Dr=1e4>Wr?Zr:function(){return Zr()-Wr};function Ir(){switch(Pr()){case zr:return 99;case Ar:return 98;case Br:return 97;case Hr:return 96;case Tr:return 95;default:throw Error(i(332))}}function Ur(e){switch(e){case 99:return zr;case 98:return Ar;case 97:return Br;case 96:return Hr;case 95:return Tr;default:throw Error(i(332))}}function $r(e,t){return e=Ur(e),Cr(e,t)}function Gr(e,t,n){return e=Ur(e),Sr(e,t,n)}function qr(){if(null!==Vr){var e=Vr;Vr=null,Mr(e)}Kr()}function Kr(){if(!Fr&&null!==jr){Fr=!0;var e=0;try{var t=jr;$r(99,(function(){for(;e\u003Ct.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}})),jr=null}catch(t){throw null!==jr&&(jr=jr.slice(e+1)),Sr(zr,qr),t}finally{Fr=!1}}}var Xr=x.ReactCurrentBatchConfig;function Qr(e,t){if(e&&e.defaultProps){for(var n in t=r({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}return t}var Jr=pr(null),Yr=null,eo=null,to=null;function no(){to=eo=Yr=null}function ao(e){var t=Jr.current;cr(Jr),e.type._context._currentValue=t}function ro(e,t){for(;null!==e;){var n=e.alternate;if((e.childLanes&t)===t){if(null===n||(n.childLanes&t)===t)break;n.childLanes|=t}else e.childLanes|=t,null!==n&&(n.childLanes|=t);e=e.return}}function oo(e,t){Yr=e,to=eo=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!=(e.lanes&t)&&(Ri=!0),e.firstContext=null)}function io(e,t){if(to!==e&&!1!==t&&0!==t)if(\"number\"==typeof t&&1073741823!==t||(to=e,t=1073741823),t={context:e,observedBits:t,next:null},null===eo){if(null===Yr)throw Error(i(308));eo=t,Yr.dependencies={lanes:0,firstContext:t,responders:null}}else eo=eo.next=t;return e._currentValue}var lo=!1;function so(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null},effects:null}}function po(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function co(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function uo(e,t){if(null!==(e=e.updateQueue)){var n=(e=e.shared).pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}}function mo(e,t){var n=e.updateQueue,a=e.alternate;if(null!==a&&n===(a=a.updateQueue)){var r=null,o=null;if(null!==(n=n.firstBaseUpdate)){do{var i={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};null===o?r=o=i:o=o.next=i,n=n.next}while(null!==n);null===o?r=o=t:o=o.next=t}else r=o=t;return n={baseState:a.baseState,firstBaseUpdate:r,lastBaseUpdate:o,shared:a.shared,effects:a.effects},void(e.updateQueue=n)}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function fo(e,t,n,a){var o=e.updateQueue;lo=!1;var i=o.firstBaseUpdate,l=o.lastBaseUpdate,s=o.shared.pending;if(null!==s){o.shared.pending=null;var p=s,c=p.next;p.next=null,null===l?i=c:l.next=c,l=p;var d=e.alternate;if(null!==d){var u=(d=d.updateQueue).lastBaseUpdate;u!==l&&(null===u?d.firstBaseUpdate=c:u.next=c,d.lastBaseUpdate=p)}}if(null!==i){for(u=o.baseState,l=0,d=c=p=null;;){s=i.lane;var m=i.eventTime;if((a&s)===s){null!==d&&(d=d.next={eventTime:m,lane:0,tag:i.tag,payload:i.payload,callback:i.callback,next:null});e:{var f=e,h=i;switch(s=t,m=n,h.tag){case 1:if(\"function\"==typeof(f=h.payload)){u=f.call(m,u,s);break e}u=f;break e;case 3:f.flags=-4097&f.flags|64;case 0:if(null==(s=\"function\"==typeof(f=h.payload)?f.call(m,u,s):f))break e;u=r({},u,s);break e;case 2:lo=!0}}null!==i.callback&&(e.flags|=32,null===(s=o.effects)?o.effects=[i]:s.push(i))}else m={eventTime:m,lane:s,tag:i.tag,payload:i.payload,callback:i.callback,next:null},null===d?(c=d=m,p=u):d=d.next=m,l|=s;if(null===(i=i.next)){if(null===(s=o.shared.pending))break;i=s.next,s.next=null,o.lastBaseUpdate=s,o.shared.pending=null}}null===d&&(p=u),o.baseState=p,o.firstBaseUpdate=c,o.lastBaseUpdate=d,Vl|=l,e.lanes=l,e.memoizedState=u}}function ho(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t\u003Ce.length;t++){var a=e[t],r=a.callback;if(null!==r){if(a.callback=null,a=n,\"function\"!=typeof r)throw Error(i(191,r));r.call(a)}}}var go=(new a.Component).refs;function vo(e,t,n,a){n=null==(n=n(a,t=e.memoizedState))?t:r({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var _o={isMounted:function(e){return!!(e=e._reactInternals)&&Ke(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var a=ds(),r=us(e),o=co(a,r);o.payload=t,null!=n&&(o.callback=n),uo(e,o),ms(e,r,a)},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var a=ds(),r=us(e),o=co(a,r);o.tag=1,o.payload=t,null!=n&&(o.callback=n),uo(e,o),ms(e,r,a)},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=ds(),a=us(e),r=co(n,a);r.tag=2,null!=t&&(r.callback=t),uo(e,r),ms(e,a,n)}};function wo(e,t,n,a,r,o,i){return\"function\"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(a,o,i):!(t.prototype&&t.prototype.isPureReactComponent&&ua(n,a)&&ua(r,o))}function bo(e,t,n){var a=!1,r=ur,o=t.contextType;return\"object\"==typeof o&&null!==o?o=io(o):(r=vr(t)?hr:mr.current,o=(a=null!=(a=t.contextTypes))?gr(e,r):ur),t=new t(n,o),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=_o,e.stateNode=t,t._reactInternals=e,a&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=r,e.__reactInternalMemoizedMaskedChildContext=o),t}function xo(e,t,n,a){e=t.state,\"function\"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,a),\"function\"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,a),t.state!==e&&_o.enqueueReplaceState(t,t.state,null)}function yo(e,t,n,a){var r=e.stateNode;r.props=n,r.state=e.memoizedState,r.refs=go,so(e);var o=t.contextType;\"object\"==typeof o&&null!==o?r.context=io(o):(o=vr(t)?hr:mr.current,r.context=gr(e,o)),fo(e,n,r,a),r.state=e.memoizedState,\"function\"==typeof(o=t.getDerivedStateFromProps)&&(vo(e,t,o,n),r.state=e.memoizedState),\"function\"==typeof t.getDerivedStateFromProps||\"function\"==typeof r.getSnapshotBeforeUpdate||\"function\"!=typeof r.UNSAFE_componentWillMount&&\"function\"!=typeof r.componentWillMount||(t=r.state,\"function\"==typeof r.componentWillMount&&r.componentWillMount(),\"function\"==typeof r.UNSAFE_componentWillMount&&r.UNSAFE_componentWillMount(),t!==r.state&&_o.enqueueReplaceState(r,r.state,null),fo(e,n,r,a),r.state=e.memoizedState),\"function\"==typeof r.componentDidMount&&(e.flags|=4)}var ko=Array.isArray;function Eo(e,t,n){if(null!==(e=n.ref)&&\"function\"!=typeof e&&\"object\"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(i(309));var a=n.stateNode}if(!a)throw Error(i(147,e));var r=\"\"+e;return null!==t&&null!==t.ref&&\"function\"==typeof t.ref&&t.ref._stringRef===r?t.ref:(t=function(e){var t=a.refs;t===go&&(t=a.refs={}),null===e?delete t[r]:t[r]=e},t._stringRef=r,t)}if(\"string\"!=typeof e)throw Error(i(284));if(!n._owner)throw Error(i(290,e))}return e}function Co(e,t){if(\"textarea\"!==e.type)throw Error(i(31,\"[object Object]\"===Object.prototype.toString.call(t)?\"object with keys {\"+Object.keys(t).join(\", \")+\"}\":t))}function So(e){function t(t,n){if(e){var a=t.lastEffect;null!==a?(a.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.flags=8}}function n(n,a){if(!e)return null;for(;null!==a;)t(n,a),a=a.sibling;return null}function a(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function r(e,t){return(e=Us(e,t)).index=0,e.sibling=null,e}function o(t,n,a){return t.index=a,e?null!==(a=t.alternate)?(a=a.index)\u003Cn?(t.flags=2,n):a:(t.flags=2,n):n}function l(t){return e&&null===t.alternate&&(t.flags=2),t}function s(e,t,n,a){return null===t||6!==t.tag?((t=Ks(n,e.mode,a)).return=e,t):((t=r(t,n)).return=e,t)}function p(e,t,n,a){return null!==t&&t.elementType===n.type?((a=r(t,n.props)).ref=Eo(e,t,n),a.return=e,a):((a=$s(n.type,n.key,n.props,null,e.mode,a)).ref=Eo(e,t,n),a.return=e,a)}function c(e,t,n,a){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?((t=Xs(n,e.mode,a)).return=e,t):((t=r(t,n.children||[])).return=e,t)}function d(e,t,n,a,o){return null===t||7!==t.tag?((t=Gs(n,e.mode,a,o)).return=e,t):((t=r(t,n)).return=e,t)}function u(e,t,n){if(\"string\"==typeof t||\"number\"==typeof t)return(t=Ks(\"\"+t,e.mode,n)).return=e,t;if(\"object\"==typeof t&&null!==t){switch(t.$$typeof){case y:return(n=$s(t.type,t.key,t.props,null,e.mode,n)).ref=Eo(e,null,t),n.return=e,n;case k:return(t=Xs(t,e.mode,n)).return=e,t}if(ko(t)||W(t))return(t=Gs(t,e.mode,n,null)).return=e,t;Co(e,t)}return null}function m(e,t,n,a){var r=null!==t?t.key:null;if(\"string\"==typeof n||\"number\"==typeof n)return null!==r?null:s(e,t,\"\"+n,a);if(\"object\"==typeof n&&null!==n){switch(n.$$typeof){case y:return n.key===r?n.type===E?d(e,t,n.props.children,a,r):p(e,t,n,a):null;case k:return n.key===r?c(e,t,n,a):null}if(ko(n)||W(n))return null!==r?null:d(e,t,n,a,null);Co(e,n)}return null}function f(e,t,n,a,r){if(\"string\"==typeof a||\"number\"==typeof a)return s(t,e=e.get(n)||null,\"\"+a,r);if(\"object\"==typeof a&&null!==a){switch(a.$$typeof){case y:return e=e.get(null===a.key?n:a.key)||null,a.type===E?d(t,e,a.props.children,r,a.key):p(t,e,a,r);case k:return c(t,e=e.get(null===a.key?n:a.key)||null,a,r)}if(ko(a)||W(a))return d(t,e=e.get(n)||null,a,r,null);Co(t,a)}return null}function h(r,i,l,s){for(var p=null,c=null,d=i,h=i=0,g=null;null!==d&&h\u003Cl.length;h++){d.index>h?(g=d,d=null):g=d.sibling;var v=m(r,d,l[h],s);if(null===v){null===d&&(d=g);break}e&&d&&null===v.alternate&&t(r,d),i=o(v,i,h),null===c?p=v:c.sibling=v,c=v,d=g}if(h===l.length)return n(r,d),p;if(null===d){for(;h\u003Cl.length;h++)null!==(d=u(r,l[h],s))&&(i=o(d,i,h),null===c?p=d:c.sibling=d,c=d);return p}for(d=a(r,d);h\u003Cl.length;h++)null!==(g=f(d,r,h,l[h],s))&&(e&&null!==g.alternate&&d.delete(null===g.key?h:g.key),i=o(g,i,h),null===c?p=g:c.sibling=g,c=g);return e&&d.forEach((function(e){return t(r,e)})),p}function g(r,l,s,p){var c=W(s);if(\"function\"!=typeof c)throw Error(i(150));if(null==(s=c.call(s)))throw Error(i(151));for(var d=c=null,h=l,g=l=0,v=null,_=s.next();null!==h&&!_.done;g++,_=s.next()){h.index>g?(v=h,h=null):v=h.sibling;var w=m(r,h,_.value,p);if(null===w){null===h&&(h=v);break}e&&h&&null===w.alternate&&t(r,h),l=o(w,l,g),null===d?c=w:d.sibling=w,d=w,h=v}if(_.done)return n(r,h),c;if(null===h){for(;!_.done;g++,_=s.next())null!==(_=u(r,_.value,p))&&(l=o(_,l,g),null===d?c=_:d.sibling=_,d=_);return c}for(h=a(r,h);!_.done;g++,_=s.next())null!==(_=f(h,r,g,_.value,p))&&(e&&null!==_.alternate&&h.delete(null===_.key?g:_.key),l=o(_,l,g),null===d?c=_:d.sibling=_,d=_);return e&&h.forEach((function(e){return t(r,e)})),c}return function(e,a,o,s){var p=\"object\"==typeof o&&null!==o&&o.type===E&&null===o.key;p&&(o=o.props.children);var c=\"object\"==typeof o&&null!==o;if(c)switch(o.$$typeof){case y:e:{for(c=o.key,p=a;null!==p;){if(p.key===c){if(7===p.tag){if(o.type===E){n(e,p.sibling),(a=r(p,o.props.children)).return=e,e=a;break e}}else if(p.elementType===o.type){n(e,p.sibling),(a=r(p,o.props)).ref=Eo(e,p,o),a.return=e,e=a;break e}n(e,p);break}t(e,p),p=p.sibling}o.type===E?((a=Gs(o.props.children,e.mode,s,o.key)).return=e,e=a):((s=$s(o.type,o.key,o.props,null,e.mode,s)).ref=Eo(e,a,o),s.return=e,e=s)}return l(e);case k:e:{for(p=o.key;null!==a;){if(a.key===p){if(4===a.tag&&a.stateNode.containerInfo===o.containerInfo&&a.stateNode.implementation===o.implementation){n(e,a.sibling),(a=r(a,o.children||[])).return=e,e=a;break e}n(e,a);break}t(e,a),a=a.sibling}(a=Xs(o,e.mode,s)).return=e,e=a}return l(e)}if(\"string\"==typeof o||\"number\"==typeof o)return o=\"\"+o,null!==a&&6===a.tag?(n(e,a.sibling),(a=r(a,o)).return=e,e=a):(n(e,a),(a=Ks(o,e.mode,s)).return=e,e=a),l(e);if(ko(o))return h(e,a,o,s);if(W(o))return g(e,a,o,s);if(c&&Co(e,o),void 0===o&&!p)switch(e.tag){case 1:case 22:case 0:case 11:case 15:throw Error(i(152,G(e.type)||\"Component\"))}return n(e,a)}}var Mo=So(!0),Lo=So(!1),No={},Zo=pr(No),Po=pr(No),zo=pr(No);function Ao(e){if(e===No)throw Error(i(174));return e}function Bo(e,t){switch(dr(zo,t),dr(Po,e),dr(Zo,No),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:me(null,\"\");break;default:t=me(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}cr(Zo),dr(Zo,t)}function Ho(){cr(Zo),cr(Po),cr(zo)}function To(e){Ao(zo.current);var t=Ao(Zo.current),n=me(t,e.type);t!==n&&(dr(Po,e),dr(Zo,n))}function Ro(e){Po.current===e&&(cr(Zo),cr(Po))}var Oo=pr(0);function jo(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||\"$?\"===n.data||\"$!\"===n.data))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(64&t.flags))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Vo=null,Fo=null,Wo=!1;function Do(e,t){var n=Ds(5,null,null,0);n.elementType=\"DELETED\",n.type=\"DELETED\",n.stateNode=t,n.return=e,n.flags=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function Io(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,!0);case 6:return null!==(t=\"\"===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,!0);default:return!1}}function Uo(e){if(Wo){var t=Fo;if(t){var n=t;if(!Io(e,t)){if(!(t=qa(n.nextSibling))||!Io(e,t))return e.flags=-1025&e.flags|2,Wo=!1,void(Vo=e);Do(Vo,n)}Vo=e,Fo=qa(t.firstChild)}else e.flags=-1025&e.flags|2,Wo=!1,Vo=e}}function $o(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;Vo=e}function Go(e){if(e!==Vo)return!1;if(!Wo)return $o(e),Wo=!0,!1;var t=e.type;if(5!==e.tag||\"head\"!==t&&\"body\"!==t&&!Ia(t,e.memoizedProps))for(t=Fo;t;)Do(e,t),t=qa(t.nextSibling);if($o(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(i(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if(\"\u002F$\"===n){if(0===t){Fo=qa(e.nextSibling);break e}t--}else\"$\"!==n&&\"$!\"!==n&&\"$?\"!==n||t++}e=e.nextSibling}Fo=null}}else Fo=Vo?qa(e.stateNode.nextSibling):null;return!0}function qo(){Fo=Vo=null,Wo=!1}var Ko=[];function Xo(){for(var e=0;e\u003CKo.length;e++)Ko[e]._workInProgressVersionPrimary=null;Ko.length=0}var Qo=x.ReactCurrentDispatcher,Jo=x.ReactCurrentBatchConfig,Yo=0,ei=null,ti=null,ni=null,ai=!1,ri=!1;function oi(){throw Error(i(321))}function ii(e,t){if(null===t)return!1;for(var n=0;n\u003Ct.length&&n\u003Ce.length;n++)if(!ca(e[n],t[n]))return!1;return!0}function li(e,t,n,a,r,o){if(Yo=o,ei=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,Qo.current=null===e||null===e.memoizedState?Ai:Bi,e=n(a,r),ri){o=0;do{if(ri=!1,!(25>o))throw Error(i(301));o+=1,ni=ti=null,t.updateQueue=null,Qo.current=Hi,e=n(a,r)}while(ri)}if(Qo.current=zi,t=null!==ti&&null!==ti.next,Yo=0,ni=ti=ei=null,ai=!1,t)throw Error(i(300));return e}function si(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===ni?ei.memoizedState=ni=e:ni=ni.next=e,ni}function pi(){if(null===ti){var e=ei.alternate;e=null!==e?e.memoizedState:null}else e=ti.next;var t=null===ni?ei.memoizedState:ni.next;if(null!==t)ni=t,ti=e;else{if(null===e)throw Error(i(310));e={memoizedState:(ti=e).memoizedState,baseState:ti.baseState,baseQueue:ti.baseQueue,queue:ti.queue,next:null},null===ni?ei.memoizedState=ni=e:ni=ni.next=e}return ni}function ci(e,t){return\"function\"==typeof t?t(e):t}function di(e){var t=pi(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var a=ti,r=a.baseQueue,o=n.pending;if(null!==o){if(null!==r){var l=r.next;r.next=o.next,o.next=l}a.baseQueue=r=o,n.pending=null}if(null!==r){r=r.next,a=a.baseState;var s=l=o=null,p=r;do{var c=p.lane;if((Yo&c)===c)null!==s&&(s=s.next={lane:0,action:p.action,eagerReducer:p.eagerReducer,eagerState:p.eagerState,next:null}),a=p.eagerReducer===e?p.eagerState:e(a,p.action);else{var d={lane:c,action:p.action,eagerReducer:p.eagerReducer,eagerState:p.eagerState,next:null};null===s?(l=s=d,o=a):s=s.next=d,ei.lanes|=c,Vl|=c}p=p.next}while(null!==p&&p!==r);null===s?o=a:s.next=l,ca(a,t.memoizedState)||(Ri=!0),t.memoizedState=a,t.baseState=o,t.baseQueue=s,n.lastRenderedState=a}return[t.memoizedState,n.dispatch]}function ui(e){var t=pi(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var a=n.dispatch,r=n.pending,o=t.memoizedState;if(null!==r){n.pending=null;var l=r=r.next;do{o=e(o,l.action),l=l.next}while(l!==r);ca(o,t.memoizedState)||(Ri=!0),t.memoizedState=o,null===t.baseQueue&&(t.baseState=o),n.lastRenderedState=o}return[o,a]}function mi(e,t,n){var a=t._getVersion;a=a(t._source);var r=t._workInProgressVersionPrimary;if(null!==r?e=r===a:(e=e.mutableReadLanes,(e=(Yo&e)===e)&&(t._workInProgressVersionPrimary=a,Ko.push(t))),e)return n(t._source);throw Ko.push(t),Error(i(350))}function fi(e,t,n,a){var r=zl;if(null===r)throw Error(i(349));var o=t._getVersion,l=o(t._source),s=Qo.current,p=s.useState((function(){return mi(r,t,n)})),c=p[1],d=p[0];p=ni;var u=e.memoizedState,m=u.refs,f=m.getSnapshot,h=u.source;u=u.subscribe;var g=ei;return e.memoizedState={refs:m,source:t,subscribe:a},s.useEffect((function(){m.getSnapshot=n,m.setSnapshot=c;var e=o(t._source);if(!ca(l,e)){e=n(t._source),ca(d,e)||(c(e),e=us(g),r.mutableReadLanes|=e&r.pendingLanes),e=r.mutableReadLanes,r.entangledLanes|=e;for(var a=r.entanglements,i=e;0\u003Ci;){var s=31-Dt(i),p=1\u003C\u003Cs;a[s]|=e,i&=~p}}}),[n,t,a]),s.useEffect((function(){return a(t._source,(function(){var e=m.getSnapshot,n=m.setSnapshot;try{n(e(t._source));var a=us(g);r.mutableReadLanes|=a&r.pendingLanes}catch(e){n((function(){throw e}))}}))}),[t,a]),ca(f,n)&&ca(h,t)&&ca(u,a)||((e={pending:null,dispatch:null,lastRenderedReducer:ci,lastRenderedState:d}).dispatch=c=Pi.bind(null,ei,e),p.queue=e,p.baseQueue=null,d=mi(r,t,n),p.memoizedState=p.baseState=d),d}function hi(e,t,n){return fi(pi(),e,t,n)}function gi(e){var t=si();return\"function\"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={pending:null,dispatch:null,lastRenderedReducer:ci,lastRenderedState:e}).dispatch=Pi.bind(null,ei,e),[t.memoizedState,e]}function vi(e,t,n,a){return e={tag:e,create:t,destroy:n,deps:a,next:null},null===(t=ei.updateQueue)?(t={lastEffect:null},ei.updateQueue=t,t.lastEffect=e.next=e):null===(n=t.lastEffect)?t.lastEffect=e.next=e:(a=n.next,n.next=e,e.next=a,t.lastEffect=e),e}function _i(e){return e={current:e},si().memoizedState=e}function wi(){return pi().memoizedState}function bi(e,t,n,a){var r=si();ei.flags|=e,r.memoizedState=vi(1|t,n,void 0,void 0===a?null:a)}function xi(e,t,n,a){var r=pi();a=void 0===a?null:a;var o=void 0;if(null!==ti){var i=ti.memoizedState;if(o=i.destroy,null!==a&&ii(a,i.deps))return void vi(t,n,o,a)}ei.flags|=e,r.memoizedState=vi(1|t,n,o,a)}function yi(e,t){return bi(516,4,e,t)}function ki(e,t){return xi(516,4,e,t)}function Ei(e,t){return xi(4,2,e,t)}function Ci(e,t){return\"function\"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function Si(e,t,n){return n=null!=n?n.concat([e]):null,xi(4,2,Ci.bind(null,t,e),n)}function Mi(){}function Li(e,t){var n=pi();t=void 0===t?null:t;var a=n.memoizedState;return null!==a&&null!==t&&ii(t,a[1])?a[0]:(n.memoizedState=[e,t],e)}function Ni(e,t){var n=pi();t=void 0===t?null:t;var a=n.memoizedState;return null!==a&&null!==t&&ii(t,a[1])?a[0]:(e=e(),n.memoizedState=[e,t],e)}function Zi(e,t){var n=Ir();$r(98>n?98:n,(function(){e(!0)})),$r(97\u003Cn?97:n,(function(){var n=Jo.transition;Jo.transition=1;try{e(!1),t()}finally{Jo.transition=n}}))}function Pi(e,t,n){var a=ds(),r=us(e),o={lane:r,action:n,eagerReducer:null,eagerState:null,next:null},i=t.pending;if(null===i?o.next=o:(o.next=i.next,i.next=o),t.pending=o,i=e.alternate,e===ei||null!==i&&i===ei)ri=ai=!0;else{if(0===e.lanes&&(null===i||0===i.lanes)&&null!==(i=t.lastRenderedReducer))try{var l=t.lastRenderedState,s=i(l,n);if(o.eagerReducer=i,o.eagerState=s,ca(s,l))return}catch(e){}ms(e,r,a)}}var zi={readContext:io,useCallback:oi,useContext:oi,useEffect:oi,useImperativeHandle:oi,useLayoutEffect:oi,useMemo:oi,useReducer:oi,useRef:oi,useState:oi,useDebugValue:oi,useDeferredValue:oi,useTransition:oi,useMutableSource:oi,useOpaqueIdentifier:oi,unstable_isNewReconciler:!1},Ai={readContext:io,useCallback:function(e,t){return si().memoizedState=[e,void 0===t?null:t],e},useContext:io,useEffect:yi,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,bi(4,2,Ci.bind(null,t,e),n)},useLayoutEffect:function(e,t){return bi(4,2,e,t)},useMemo:function(e,t){var n=si();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var a=si();return t=void 0!==n?n(t):t,a.memoizedState=a.baseState=t,e=(e=a.queue={pending:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=Pi.bind(null,ei,e),[a.memoizedState,e]},useRef:_i,useState:gi,useDebugValue:Mi,useDeferredValue:function(e){var t=gi(e),n=t[0],a=t[1];return yi((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=gi(!1),t=e[0];return _i(e=Zi.bind(null,e[1])),[e,t]},useMutableSource:function(e,t,n){var a=si();return a.memoizedState={refs:{getSnapshot:t,setSnapshot:null},source:e,subscribe:n},fi(a,e,t,n)},useOpaqueIdentifier:function(){if(Wo){var e=!1,t=function(e){return{$$typeof:H,toString:e,valueOf:e}}((function(){throw e||(e=!0,n(\"r:\"+(Xa++).toString(36))),Error(i(355))})),n=gi(t)[1];return 0==(2&ei.mode)&&(ei.flags|=516,vi(5,(function(){n(\"r:\"+(Xa++).toString(36))}),void 0,null)),t}return gi(t=\"r:\"+(Xa++).toString(36)),t},unstable_isNewReconciler:!1},Bi={readContext:io,useCallback:Li,useContext:io,useEffect:ki,useImperativeHandle:Si,useLayoutEffect:Ei,useMemo:Ni,useReducer:di,useRef:wi,useState:function(){return di(ci)},useDebugValue:Mi,useDeferredValue:function(e){var t=di(ci),n=t[0],a=t[1];return ki((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=di(ci)[0];return[wi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return di(ci)[0]},unstable_isNewReconciler:!1},Hi={readContext:io,useCallback:Li,useContext:io,useEffect:ki,useImperativeHandle:Si,useLayoutEffect:Ei,useMemo:Ni,useReducer:ui,useRef:wi,useState:function(){return ui(ci)},useDebugValue:Mi,useDeferredValue:function(e){var t=ui(ci),n=t[0],a=t[1];return ki((function(){var t=Jo.transition;Jo.transition=1;try{a(e)}finally{Jo.transition=t}}),[e]),n},useTransition:function(){var e=ui(ci)[0];return[wi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return ui(ci)[0]},unstable_isNewReconciler:!1},Ti=x.ReactCurrentOwner,Ri=!1;function Oi(e,t,n,a){t.child=null===e?Lo(t,null,n,a):Mo(t,e.child,n,a)}function ji(e,t,n,a,r){n=n.render;var o=t.ref;return oo(t,r),a=li(e,t,n,a,o,r),null===e||Ri?(t.flags|=1,Oi(e,t,a,r),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~r,rl(e,t,r))}function Vi(e,t,n,a,r,o){if(null===e){var i=n.type;return\"function\"!=typeof i||Is(i)||void 0!==i.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=$s(n.type,null,a,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=i,Fi(e,t,i,a,r,o))}return i=e.child,0==(r&o)&&(r=i.memoizedProps,(n=null!==(n=n.compare)?n:ua)(r,a)&&e.ref===t.ref)?rl(e,t,o):(t.flags|=1,(e=Us(i,a)).ref=t.ref,e.return=t,t.child=e)}function Fi(e,t,n,a,r,o){if(null!==e&&ua(e.memoizedProps,a)&&e.ref===t.ref){if(Ri=!1,0==(o&r))return t.lanes=e.lanes,rl(e,t,o);0!=(16384&e.flags)&&(Ri=!0)}return Ii(e,t,n,a,o)}function Wi(e,t,n){var a=t.pendingProps,r=a.children,o=null!==e?e.memoizedState:null;if(\"hidden\"===a.mode||\"unstable-defer-without-hiding\"===a.mode)if(0==(4&t.mode))t.memoizedState={baseLanes:0},xs(0,n);else{if(0==(1073741824&n))return e=null!==o?o.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e},xs(0,e),null;t.memoizedState={baseLanes:0},xs(0,null!==o?o.baseLanes:n)}else null!==o?(a=o.baseLanes|n,t.memoizedState=null):a=n,xs(0,a);return Oi(e,t,r,n),t.child}function Di(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=128)}function Ii(e,t,n,a,r){var o=vr(n)?hr:mr.current;return o=gr(t,o),oo(t,r),n=li(e,t,n,a,o,r),null===e||Ri?(t.flags|=1,Oi(e,t,n,r),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~r,rl(e,t,r))}function Ui(e,t,n,a,r){if(vr(n)){var o=!0;xr(t)}else o=!1;if(oo(t,r),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),bo(t,n,a),yo(t,n,a,r),a=!0;else if(null===e){var i=t.stateNode,l=t.memoizedProps;i.props=l;var s=i.context,p=n.contextType;p=\"object\"==typeof p&&null!==p?io(p):gr(t,p=vr(n)?hr:mr.current);var c=n.getDerivedStateFromProps,d=\"function\"==typeof c||\"function\"==typeof i.getSnapshotBeforeUpdate;d||\"function\"!=typeof i.UNSAFE_componentWillReceiveProps&&\"function\"!=typeof i.componentWillReceiveProps||(l!==a||s!==p)&&xo(t,i,a,p),lo=!1;var u=t.memoizedState;i.state=u,fo(t,a,i,r),s=t.memoizedState,l!==a||u!==s||fr.current||lo?(\"function\"==typeof c&&(vo(t,n,c,a),s=t.memoizedState),(l=lo||wo(t,n,l,a,u,s,p))?(d||\"function\"!=typeof i.UNSAFE_componentWillMount&&\"function\"!=typeof i.componentWillMount||(\"function\"==typeof i.componentWillMount&&i.componentWillMount(),\"function\"==typeof i.UNSAFE_componentWillMount&&i.UNSAFE_componentWillMount()),\"function\"==typeof i.componentDidMount&&(t.flags|=4)):(\"function\"==typeof i.componentDidMount&&(t.flags|=4),t.memoizedProps=a,t.memoizedState=s),i.props=a,i.state=s,i.context=p,a=l):(\"function\"==typeof i.componentDidMount&&(t.flags|=4),a=!1)}else{i=t.stateNode,po(e,t),l=t.memoizedProps,p=t.type===t.elementType?l:Qr(t.type,l),i.props=p,d=t.pendingProps,u=i.context,s=\"object\"==typeof(s=n.contextType)&&null!==s?io(s):gr(t,s=vr(n)?hr:mr.current);var m=n.getDerivedStateFromProps;(c=\"function\"==typeof m||\"function\"==typeof i.getSnapshotBeforeUpdate)||\"function\"!=typeof i.UNSAFE_componentWillReceiveProps&&\"function\"!=typeof i.componentWillReceiveProps||(l!==d||u!==s)&&xo(t,i,a,s),lo=!1,u=t.memoizedState,i.state=u,fo(t,a,i,r);var f=t.memoizedState;l!==d||u!==f||fr.current||lo?(\"function\"==typeof m&&(vo(t,n,m,a),f=t.memoizedState),(p=lo||wo(t,n,p,a,u,f,s))?(c||\"function\"!=typeof i.UNSAFE_componentWillUpdate&&\"function\"!=typeof i.componentWillUpdate||(\"function\"==typeof i.componentWillUpdate&&i.componentWillUpdate(a,f,s),\"function\"==typeof i.UNSAFE_componentWillUpdate&&i.UNSAFE_componentWillUpdate(a,f,s)),\"function\"==typeof i.componentDidUpdate&&(t.flags|=4),\"function\"==typeof i.getSnapshotBeforeUpdate&&(t.flags|=256)):(\"function\"!=typeof i.componentDidUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=4),\"function\"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=256),t.memoizedProps=a,t.memoizedState=f),i.props=a,i.state=f,i.context=s,a=p):(\"function\"!=typeof i.componentDidUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=4),\"function\"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&u===e.memoizedState||(t.flags|=256),a=!1)}return $i(e,t,n,a,o,r)}function $i(e,t,n,a,r,o){Di(e,t);var i=0!=(64&t.flags);if(!a&&!i)return r&&yr(t,n,!1),rl(e,t,o);a=t.stateNode,Ti.current=t;var l=i&&\"function\"!=typeof n.getDerivedStateFromError?null:a.render();return t.flags|=1,null!==e&&i?(t.child=Mo(t,e.child,null,o),t.child=Mo(t,null,l,o)):Oi(e,t,l,o),t.memoizedState=a.state,r&&yr(t,n,!0),t.child}function Gi(e){var t=e.stateNode;t.pendingContext?wr(0,t.pendingContext,t.pendingContext!==t.context):t.context&&wr(0,t.context,!1),Bo(e,t.containerInfo)}var qi,Ki,Xi,Qi,Ji={dehydrated:null,retryLane:0};function Yi(e,t,n){var a,r=t.pendingProps,o=Oo.current,i=!1;return(a=0!=(64&t.flags))||(a=(null===e||null!==e.memoizedState)&&0!=(2&o)),a?(i=!0,t.flags&=-65):null!==e&&null===e.memoizedState||void 0===r.fallback||!0===r.unstable_avoidThisFallback||(o|=1),dr(Oo,1&o),null===e?(void 0!==r.fallback&&Uo(t),e=r.children,o=r.fallback,i?(e=el(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Ji,e):\"number\"==typeof r.unstable_expectedLoadTime?(e=el(t,e,o,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Ji,t.lanes=33554432,e):((n=qs({mode:\"visible\",children:e},t.mode,n,null)).return=t,t.child=n)):(e.memoizedState,i?(r=function(e,t,n,a,r){var o=t.mode,i=e.child;e=i.sibling;var l={mode:\"hidden\",children:n};return 0==(2&o)&&t.child!==i?((n=t.child).childLanes=0,n.pendingProps=l,null!==(i=n.lastEffect)?(t.firstEffect=n.firstEffect,t.lastEffect=i,i.nextEffect=null):t.firstEffect=t.lastEffect=null):n=Us(i,l),null!==e?a=Us(e,a):(a=Gs(a,o,r,null)).flags|=2,a.return=t,n.return=t,n.sibling=a,t.child=n,a}(e,t,r.children,r.fallback,n),i=t.child,o=e.child.memoizedState,i.memoizedState=null===o?{baseLanes:n}:{baseLanes:o.baseLanes|n},i.childLanes=e.childLanes&~n,t.memoizedState=Ji,r):(n=function(e,t,n,a){var r=e.child;return e=r.sibling,n=Us(r,{mode:\"visible\",children:n}),0==(2&t.mode)&&(n.lanes=a),n.return=t,n.sibling=null,null!==e&&(e.nextEffect=null,e.flags=8,t.firstEffect=t.lastEffect=e),t.child=n}(e,t,r.children,n),t.memoizedState=null,n))}function el(e,t,n,a){var r=e.mode,o=e.child;return t={mode:\"hidden\",children:t},0==(2&r)&&null!==o?(o.childLanes=0,o.pendingProps=t):o=qs(t,r,0,null),n=Gs(n,r,a,null),o.return=e,n.return=e,o.sibling=n,e.child=o,n}function tl(e,t){e.lanes|=t;var n=e.alternate;null!==n&&(n.lanes|=t),ro(e.return,t)}function nl(e,t,n,a,r,o){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:a,tail:n,tailMode:r,lastEffect:o}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=a,i.tail=n,i.tailMode=r,i.lastEffect=o)}function al(e,t,n){var a=t.pendingProps,r=a.revealOrder,o=a.tail;if(Oi(e,t,a.children,n),0!=(2&(a=Oo.current)))a=1&a|2,t.flags|=64;else{if(null!==e&&0!=(64&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&tl(e,n);else if(19===e.tag)tl(e,n);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}a&=1}if(dr(Oo,a),0==(2&t.mode))t.memoizedState=null;else switch(r){case\"forwards\":for(n=t.child,r=null;null!==n;)null!==(e=n.alternate)&&null===jo(e)&&(r=n),n=n.sibling;null===(n=r)?(r=t.child,t.child=null):(r=n.sibling,n.sibling=null),nl(t,!1,r,n,o,t.lastEffect);break;case\"backwards\":for(n=null,r=t.child,t.child=null;null!==r;){if(null!==(e=r.alternate)&&null===jo(e)){t.child=r;break}e=r.sibling,r.sibling=n,n=r,r=e}nl(t,!0,n,null,o,t.lastEffect);break;case\"together\":nl(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}function rl(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),Vl|=t.lanes,0!=(n&t.childLanes)){if(null!==e&&t.child!==e.child)throw Error(i(153));if(null!==t.child){for(n=Us(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Us(e,e.pendingProps)).return=t;n.sibling=null}return t.child}return null}function ol(e,t){if(!Wo)switch(e.tailMode){case\"hidden\":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case\"collapsed\":n=e.tail;for(var a=null;null!==n;)null!==n.alternate&&(a=n),n=n.sibling;null===a?t||null===e.tail?e.tail=null:e.tail.sibling=null:a.sibling=null}}function il(e,t,n){var a=t.pendingProps;switch(t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return null;case 1:case 17:return vr(t.type)&&_r(),null;case 3:return Ho(),cr(fr),cr(mr),Xo(),(a=t.stateNode).pendingContext&&(a.context=a.pendingContext,a.pendingContext=null),null!==e&&null!==e.child||(Go(t)?t.flags|=4:a.hydrate||(t.flags|=256)),Ki(t),null;case 5:Ro(t);var o=Ao(zo.current);if(n=t.type,null!==e&&null!=t.stateNode)Xi(e,t,n,a,o),e.ref!==t.ref&&(t.flags|=128);else{if(!a){if(null===t.stateNode)throw Error(i(166));return null}if(e=Ao(Zo.current),Go(t)){a=t.stateNode,n=t.type;var l=t.memoizedProps;switch(a[Ja]=t,a[Ya]=l,n){case\"dialog\":Za(\"cancel\",a),Za(\"close\",a);break;case\"iframe\":case\"object\":case\"embed\":Za(\"load\",a);break;case\"video\":case\"audio\":for(e=0;e\u003CSa.length;e++)Za(Sa[e],a);break;case\"source\":Za(\"error\",a);break;case\"img\":case\"image\":case\"link\":Za(\"error\",a),Za(\"load\",a);break;case\"details\":Za(\"toggle\",a);break;case\"input\":ee(a,l),Za(\"invalid\",a);break;case\"select\":a._wrapperState={wasMultiple:!!l.multiple},Za(\"invalid\",a);break;case\"textarea\":se(a,l),Za(\"invalid\",a)}for(var p in ke(n,l),e=null,l)l.hasOwnProperty(p)&&(o=l[p],\"children\"===p?\"string\"==typeof o?a.textContent!==o&&(e=[\"children\",o]):\"number\"==typeof o&&a.textContent!==\"\"+o&&(e=[\"children\",\"\"+o]):s.hasOwnProperty(p)&&null!=o&&\"onScroll\"===p&&Za(\"scroll\",a));switch(n){case\"input\":X(a),ae(a,l,!0);break;case\"textarea\":X(a),ce(a);break;case\"select\":case\"option\":break;default:\"function\"==typeof l.onClick&&(a.onclick=Va)}a=e,t.updateQueue=a,null!==a&&(t.flags|=4)}else{switch(p=9===o.nodeType?o:o.ownerDocument,e===de.html&&(e=ue(n)),e===de.html?\"script\"===n?((e=p.createElement(\"div\")).innerHTML=\"\u003Cscript>\u003C\\\u002Fscript>\",e=e.removeChild(e.firstChild)):\"string\"==typeof a.is?e=p.createElement(n,{is:a.is}):(e=p.createElement(n),\"select\"===n&&(p=e,a.multiple?p.multiple=!0:a.size&&(p.size=a.size))):e=p.createElementNS(e,n),e[Ja]=t,e[Ya]=a,qi(e,t,!1,!1),t.stateNode=e,p=Ee(n,a),n){case\"dialog\":Za(\"cancel\",e),Za(\"close\",e),o=a;break;case\"iframe\":case\"object\":case\"embed\":Za(\"load\",e),o=a;break;case\"video\":case\"audio\":for(o=0;o\u003CSa.length;o++)Za(Sa[o],e);o=a;break;case\"source\":Za(\"error\",e),o=a;break;case\"img\":case\"image\":case\"link\":Za(\"error\",e),Za(\"load\",e),o=a;break;case\"details\":Za(\"toggle\",e),o=a;break;case\"input\":ee(e,a),o=Y(e,a),Za(\"invalid\",e);break;case\"option\":o=oe(e,a);break;case\"select\":e._wrapperState={wasMultiple:!!a.multiple},o=r({},a,{value:void 0}),Za(\"invalid\",e);break;case\"textarea\":se(e,a),o=le(e,a),Za(\"invalid\",e);break;default:o=a}ke(n,o);var c=o;for(l in c)if(c.hasOwnProperty(l)){var d=c[l];\"style\"===l?xe(e,d):\"dangerouslySetInnerHTML\"===l?null!=(d=d?d.__html:void 0)&&ge(e,d):\"children\"===l?\"string\"==typeof d?(\"textarea\"!==n||\"\"!==d)&&ve(e,d):\"number\"==typeof d&&ve(e,\"\"+d):\"suppressContentEditableWarning\"!==l&&\"suppressHydrationWarning\"!==l&&\"autoFocus\"!==l&&(s.hasOwnProperty(l)?null!=d&&\"onScroll\"===l&&Za(\"scroll\",e):null!=d&&b(e,l,d,p))}switch(n){case\"input\":X(e),ae(e,a,!1);break;case\"textarea\":X(e),ce(e);break;case\"option\":null!=a.value&&e.setAttribute(\"value\",\"\"+q(a.value));break;case\"select\":e.multiple=!!a.multiple,null!=(l=a.value)?ie(e,!!a.multiple,l,!1):null!=a.defaultValue&&ie(e,!!a.multiple,a.defaultValue,!0);break;default:\"function\"==typeof o.onClick&&(e.onclick=Va)}Da(n,a)&&(t.flags|=4)}null!==t.ref&&(t.flags|=128)}return null;case 6:if(e&&null!=t.stateNode)Qi(e,t,e.memoizedProps,a);else{if(\"string\"!=typeof a&&null===t.stateNode)throw Error(i(166));n=Ao(zo.current),Ao(Zo.current),Go(t)?(a=t.stateNode,n=t.memoizedProps,a[Ja]=t,a.nodeValue!==n&&(t.flags|=4)):((a=(9===n.nodeType?n:n.ownerDocument).createTextNode(a))[Ja]=t,t.stateNode=a)}return null;case 13:return cr(Oo),a=t.memoizedState,0!=(64&t.flags)?(t.lanes=n,t):(a=null!==a,n=!1,null===e?void 0!==t.memoizedProps.fallback&&Go(t):n=null!==e.memoizedState,a&&!n&&0!=(2&t.mode)&&(null===e&&!0!==t.memoizedProps.unstable_avoidThisFallback||0!=(1&Oo.current)?0===Rl&&(Rl=3):(0!==Rl&&3!==Rl||(Rl=4),null===zl||0==(134217727&Vl)&&0==(134217727&Fl)||vs(zl,Bl))),(a||n)&&(t.flags|=4),null);case 4:return Ho(),Ki(t),null===e&&za(t.stateNode.containerInfo),null;case 10:return ao(t),null;case 19:if(cr(Oo),null===(a=t.memoizedState))return null;if(l=0!=(64&t.flags),null===(p=a.rendering))if(l)ol(a,!1);else{if(0!==Rl||null!==e&&0!=(64&e.flags))for(e=t.child;null!==e;){if(null!==(p=jo(e))){for(t.flags|=64,ol(a,!1),null!==(l=p.updateQueue)&&(t.updateQueue=l,t.flags|=4),null===a.lastEffect&&(t.firstEffect=null),t.lastEffect=a.lastEffect,a=n,n=t.child;null!==n;)e=a,(l=n).flags&=2,l.nextEffect=null,l.firstEffect=null,l.lastEffect=null,null===(p=l.alternate)?(l.childLanes=0,l.lanes=e,l.child=null,l.memoizedProps=null,l.memoizedState=null,l.updateQueue=null,l.dependencies=null,l.stateNode=null):(l.childLanes=p.childLanes,l.lanes=p.lanes,l.child=p.child,l.memoizedProps=p.memoizedProps,l.memoizedState=p.memoizedState,l.updateQueue=p.updateQueue,l.type=p.type,e=p.dependencies,l.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return dr(Oo,1&Oo.current|2),t.child}e=e.sibling}null!==a.tail&&Dr()>Ul&&(t.flags|=64,l=!0,ol(a,!1),t.lanes=33554432)}else{if(!l)if(null!==(e=jo(p))){if(t.flags|=64,l=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),ol(a,!0),null===a.tail&&\"hidden\"===a.tailMode&&!p.alternate&&!Wo)return null!==(t=t.lastEffect=a.lastEffect)&&(t.nextEffect=null),null}else 2*Dr()-a.renderingStartTime>Ul&&1073741824!==n&&(t.flags|=64,l=!0,ol(a,!1),t.lanes=33554432);a.isBackwards?(p.sibling=t.child,t.child=p):(null!==(n=a.last)?n.sibling=p:t.child=p,a.last=p)}return null!==a.tail?(n=a.tail,a.rendering=n,a.tail=n.sibling,a.lastEffect=t.lastEffect,a.renderingStartTime=Dr(),n.sibling=null,t=Oo.current,dr(Oo,l?1&t|2:1&t),n):null;case 23:case 24:return ys(),null!==e&&null!==e.memoizedState!=(null!==t.memoizedState)&&\"unstable-defer-without-hiding\"!==a.mode&&(t.flags|=4),null}throw Error(i(156,t.tag))}function ll(e){switch(e.tag){case 1:vr(e.type)&&_r();var t=e.flags;return 4096&t?(e.flags=-4097&t|64,e):null;case 3:if(Ho(),cr(fr),cr(mr),Xo(),0!=(64&(t=e.flags)))throw Error(i(285));return e.flags=-4097&t|64,e;case 5:return Ro(e),null;case 13:return cr(Oo),4096&(t=e.flags)?(e.flags=-4097&t|64,e):null;case 19:return cr(Oo),null;case 4:return Ho(),null;case 10:return ao(e),null;case 23:case 24:return ys(),null;default:return null}}function sl(e,t){try{var n=\"\",a=t;do{n+=$(a),a=a.return}while(a);var r=n}catch(e){r=\"\\nError generating stack: \"+e.message+\"\\n\"+e.stack}return{value:e,source:t,stack:r}}function pl(e,t){try{console.error(t.value)}catch(e){setTimeout((function(){throw e}))}}qi=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},Ki=function(){},Xi=function(e,t,n,a){var o=e.memoizedProps;if(o!==a){e=t.stateNode,Ao(Zo.current);var i,l=null;switch(n){case\"input\":o=Y(e,o),a=Y(e,a),l=[];break;case\"option\":o=oe(e,o),a=oe(e,a),l=[];break;case\"select\":o=r({},o,{value:void 0}),a=r({},a,{value:void 0}),l=[];break;case\"textarea\":o=le(e,o),a=le(e,a),l=[];break;default:\"function\"!=typeof o.onClick&&\"function\"==typeof a.onClick&&(e.onclick=Va)}for(d in ke(n,a),n=null,o)if(!a.hasOwnProperty(d)&&o.hasOwnProperty(d)&&null!=o[d])if(\"style\"===d){var p=o[d];for(i in p)p.hasOwnProperty(i)&&(n||(n={}),n[i]=\"\")}else\"dangerouslySetInnerHTML\"!==d&&\"children\"!==d&&\"suppressContentEditableWarning\"!==d&&\"suppressHydrationWarning\"!==d&&\"autoFocus\"!==d&&(s.hasOwnProperty(d)?l||(l=[]):(l=l||[]).push(d,null));for(d in a){var c=a[d];if(p=null!=o?o[d]:void 0,a.hasOwnProperty(d)&&c!==p&&(null!=c||null!=p))if(\"style\"===d)if(p){for(i in p)!p.hasOwnProperty(i)||c&&c.hasOwnProperty(i)||(n||(n={}),n[i]=\"\");for(i in c)c.hasOwnProperty(i)&&p[i]!==c[i]&&(n||(n={}),n[i]=c[i])}else n||(l||(l=[]),l.push(d,n)),n=c;else\"dangerouslySetInnerHTML\"===d?(c=c?c.__html:void 0,p=p?p.__html:void 0,null!=c&&p!==c&&(l=l||[]).push(d,c)):\"children\"===d?\"string\"!=typeof c&&\"number\"!=typeof c||(l=l||[]).push(d,\"\"+c):\"suppressContentEditableWarning\"!==d&&\"suppressHydrationWarning\"!==d&&(s.hasOwnProperty(d)?(null!=c&&\"onScroll\"===d&&Za(\"scroll\",e),l||p===c||(l=[])):\"object\"==typeof c&&null!==c&&c.$$typeof===H?c.toString():(l=l||[]).push(d,c))}n&&(l=l||[]).push(\"style\",n);var d=l;(t.updateQueue=d)&&(t.flags|=4)}},Qi=function(e,t,n,a){n!==a&&(t.flags|=4)};var cl=\"function\"==typeof WeakMap?WeakMap:Map;function dl(e,t,n){(n=co(-1,n)).tag=3,n.payload={element:null};var a=t.value;return n.callback=function(){Kl||(Kl=!0,Xl=a),pl(0,t)},n}function ul(e,t,n){(n=co(-1,n)).tag=3;var a=e.type.getDerivedStateFromError;if(\"function\"==typeof a){var r=t.value;n.payload=function(){return pl(0,t),a(r)}}var o=e.stateNode;return null!==o&&\"function\"==typeof o.componentDidCatch&&(n.callback=function(){\"function\"!=typeof a&&(null===Ql?Ql=new Set([this]):Ql.add(this),pl(0,t));var e=t.stack;this.componentDidCatch(t.value,{componentStack:null!==e?e:\"\"})}),n}var ml=\"function\"==typeof WeakSet?WeakSet:Set;function fl(e){var t=e.ref;if(null!==t)if(\"function\"==typeof t)try{t(null)}catch(t){js(e,t)}else t.current=null}function hl(e,t){switch(t.tag){case 0:case 11:case 15:case 22:case 5:case 6:case 4:case 17:return;case 1:if(256&t.flags&&null!==e){var n=e.memoizedProps,a=e.memoizedState;t=(e=t.stateNode).getSnapshotBeforeUpdate(t.elementType===t.type?n:Qr(t.type,n),a),e.__reactInternalSnapshotBeforeUpdate=t}return;case 3:return void(256&t.flags&&Ga(t.stateNode.containerInfo))}throw Error(i(163))}function gl(e,t,n){switch(n.tag){case 0:case 11:case 15:case 22:if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{if(3==(3&e.tag)){var a=e.create;e.destroy=a()}e=e.next}while(e!==t)}if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{var r=e;a=r.next,0!=(4&(r=r.tag))&&0!=(1&r)&&(Ts(n,e),Hs(n,e)),e=a}while(e!==t)}return;case 1:return e=n.stateNode,4&n.flags&&(null===t?e.componentDidMount():(a=n.elementType===n.type?t.memoizedProps:Qr(n.type,t.memoizedProps),e.componentDidUpdate(a,t.memoizedState,e.__reactInternalSnapshotBeforeUpdate))),void(null!==(t=n.updateQueue)&&ho(n,t,e));case 3:if(null!==(t=n.updateQueue)){if(e=null,null!==n.child)switch(n.child.tag){case 5:case 1:e=n.child.stateNode}ho(n,t,e)}return;case 5:return e=n.stateNode,void(null===t&&4&n.flags&&Da(n.type,n.memoizedProps)&&e.focus());case 6:case 4:case 12:case 19:case 17:case 20:case 21:case 23:case 24:return;case 13:return void(null===n.memoizedState&&(n=n.alternate,null!==n&&(n=n.memoizedState,null!==n&&(n=n.dehydrated,null!==n&&xt(n)))))}throw Error(i(163))}function vl(e,t){for(var n=e;;){if(5===n.tag){var a=n.stateNode;if(t)\"function\"==typeof(a=a.style).setProperty?a.setProperty(\"display\",\"none\",\"important\"):a.display=\"none\";else{a=n.stateNode;var r=n.memoizedProps.style;r=null!=r&&r.hasOwnProperty(\"display\")?r.display:null,a.style.display=be(\"display\",r)}}else if(6===n.tag)n.stateNode.nodeValue=t?\"\":n.memoizedProps;else if((23!==n.tag&&24!==n.tag||null===n.memoizedState||n===e)&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)break;for(;null===n.sibling;){if(null===n.return||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}}function _l(e,t){if(Er&&\"function\"==typeof Er.onCommitFiberUnmount)try{Er.onCommitFiberUnmount(kr,t)}catch(e){}switch(t.tag){case 0:case 11:case 14:case 15:case 22:if(null!==(e=t.updateQueue)&&null!==(e=e.lastEffect)){var n=e=e.next;do{var a=n,r=a.destroy;if(a=a.tag,void 0!==r)if(0!=(4&a))Ts(t,n);else{a=t;try{r()}catch(e){js(a,e)}}n=n.next}while(n!==e)}break;case 1:if(fl(t),\"function\"==typeof(e=t.stateNode).componentWillUnmount)try{e.props=t.memoizedProps,e.state=t.memoizedState,e.componentWillUnmount()}catch(e){js(t,e)}break;case 5:fl(t);break;case 4:El(e,t)}}function wl(e){e.alternate=null,e.child=null,e.dependencies=null,e.firstEffect=null,e.lastEffect=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.return=null,e.updateQueue=null}function bl(e){return 5===e.tag||3===e.tag||4===e.tag}function xl(e){e:{for(var t=e.return;null!==t;){if(bl(t))break e;t=t.return}throw Error(i(160))}var n=t;switch(t=n.stateNode,n.tag){case 5:var a=!1;break;case 3:case 4:t=t.containerInfo,a=!0;break;default:throw Error(i(161))}16&n.flags&&(ve(t,\"\"),n.flags&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||bl(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag&&18!==n.tag;){if(2&n.flags)continue t;if(null===n.child||4===n.tag)continue t;n.child.return=n,n=n.child}if(!(2&n.flags)){n=n.stateNode;break e}}a?yl(e,n,t):kl(e,n,t)}function yl(e,t,n){var a=e.tag,r=5===a||6===a;if(r)e=r?e.stateNode:e.stateNode.instance,t?8===n.nodeType?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(8===n.nodeType?(t=n.parentNode).insertBefore(e,n):(t=n).appendChild(e),null!=(n=n._reactRootContainer)||null!==t.onclick||(t.onclick=Va));else if(4!==a&&null!==(e=e.child))for(yl(e,t,n),e=e.sibling;null!==e;)yl(e,t,n),e=e.sibling}function kl(e,t,n){var a=e.tag,r=5===a||6===a;if(r)e=r?e.stateNode:e.stateNode.instance,t?n.insertBefore(e,t):n.appendChild(e);else if(4!==a&&null!==(e=e.child))for(kl(e,t,n),e=e.sibling;null!==e;)kl(e,t,n),e=e.sibling}function El(e,t){for(var n,a,r=t,o=!1;;){if(!o){o=r.return;e:for(;;){if(null===o)throw Error(i(160));switch(n=o.stateNode,o.tag){case 5:a=!1;break e;case 3:case 4:n=n.containerInfo,a=!0;break e}o=o.return}o=!0}if(5===r.tag||6===r.tag){e:for(var l=e,s=r,p=s;;)if(_l(l,p),null!==p.child&&4!==p.tag)p.child.return=p,p=p.child;else{if(p===s)break e;for(;null===p.sibling;){if(null===p.return||p.return===s)break e;p=p.return}p.sibling.return=p.return,p=p.sibling}a?(l=n,s=r.stateNode,8===l.nodeType?l.parentNode.removeChild(s):l.removeChild(s)):n.removeChild(r.stateNode)}else if(4===r.tag){if(null!==r.child){n=r.stateNode.containerInfo,a=!0,r.child.return=r,r=r.child;continue}}else if(_l(e,r),null!==r.child){r.child.return=r,r=r.child;continue}if(r===t)break;for(;null===r.sibling;){if(null===r.return||r.return===t)return;4===(r=r.return).tag&&(o=!1)}r.sibling.return=r.return,r=r.sibling}}function Cl(e,t){switch(t.tag){case 0:case 11:case 14:case 15:case 22:var n=t.updateQueue;if(null!==(n=null!==n?n.lastEffect:null)){var a=n=n.next;do{3==(3&a.tag)&&(e=a.destroy,a.destroy=void 0,void 0!==e&&e()),a=a.next}while(a!==n)}return;case 1:case 12:case 17:return;case 5:if(null!=(n=t.stateNode)){a=t.memoizedProps;var r=null!==e?e.memoizedProps:a;e=t.type;var o=t.updateQueue;if(t.updateQueue=null,null!==o){for(n[Ya]=a,\"input\"===e&&\"radio\"===a.type&&null!=a.name&&te(n,a),Ee(e,r),t=Ee(e,a),r=0;r\u003Co.length;r+=2){var l=o[r],s=o[r+1];\"style\"===l?xe(n,s):\"dangerouslySetInnerHTML\"===l?ge(n,s):\"children\"===l?ve(n,s):b(n,l,s,t)}switch(e){case\"input\":ne(n,a);break;case\"textarea\":pe(n,a);break;case\"select\":e=n._wrapperState.wasMultiple,n._wrapperState.wasMultiple=!!a.multiple,null!=(o=a.value)?ie(n,!!a.multiple,o,!1):e!==!!a.multiple&&(null!=a.defaultValue?ie(n,!!a.multiple,a.defaultValue,!0):ie(n,!!a.multiple,a.multiple?[]:\"\",!1))}}}return;case 6:if(null===t.stateNode)throw Error(i(162));return void(t.stateNode.nodeValue=t.memoizedProps);case 3:return void((n=t.stateNode).hydrate&&(n.hydrate=!1,xt(n.containerInfo)));case 13:return null!==t.memoizedState&&(Il=Dr(),vl(t.child,!0)),void Sl(t);case 19:return void Sl(t);case 23:case 24:return void vl(t,null!==t.memoizedState)}throw Error(i(163))}function Sl(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new ml),t.forEach((function(t){var a=Fs.bind(null,e,t);n.has(t)||(n.add(t),t.then(a,a))}))}}function Ml(e,t){return null!==e&&(null===(e=e.memoizedState)||null!==e.dehydrated)&&null!==(t=t.memoizedState)&&null===t.dehydrated}var Ll=Math.ceil,Nl=x.ReactCurrentDispatcher,Zl=x.ReactCurrentOwner,Pl=0,zl=null,Al=null,Bl=0,Hl=0,Tl=pr(0),Rl=0,Ol=null,jl=0,Vl=0,Fl=0,Wl=0,Dl=null,Il=0,Ul=1\u002F0;function $l(){Ul=Dr()+500}var Gl,ql=null,Kl=!1,Xl=null,Ql=null,Jl=!1,Yl=null,es=90,ts=[],ns=[],as=null,rs=0,os=null,is=-1,ls=0,ss=0,ps=null,cs=!1;function ds(){return 0!=(48&Pl)?Dr():-1!==is?is:is=Dr()}function us(e){if(0==(2&(e=e.mode)))return 1;if(0==(4&e))return 99===Ir()?1:2;if(0===ls&&(ls=jl),0!==Xr.transition){0!==ss&&(ss=null!==Dl?Dl.pendingLanes:0),e=ls;var t=4186112&~ss;return 0==(t&=-t)&&0==(t=(e=4186112&~e)&-e)&&(t=8192),t}return e=Ir(),e=jt(0!=(4&Pl)&&98===e?12:e=function(e){switch(e){case 99:return 15;case 98:return 10;case 97:case 96:return 8;case 95:return 2;default:return 0}}(e),ls)}function ms(e,t,n){if(50\u003Crs)throw rs=0,os=null,Error(i(185));if(null===(e=fs(e,t)))return null;Wt(e,t,n),e===zl&&(Fl|=t,4===Rl&&vs(e,Bl));var a=Ir();1===t?0!=(8&Pl)&&0==(48&Pl)?_s(e):(hs(e,n),0===Pl&&($l(),qr())):(0==(4&Pl)||98!==a&&99!==a||(null===as?as=new Set([e]):as.add(e)),hs(e,n)),Dl=e}function fs(e,t){e.lanes|=t;var n=e.alternate;for(null!==n&&(n.lanes|=t),n=e,e=e.return;null!==e;)e.childLanes|=t,null!==(n=e.alternate)&&(n.childLanes|=t),n=e,e=e.return;return 3===n.tag?n.stateNode:null}function hs(e,t){for(var n=e.callbackNode,a=e.suspendedLanes,r=e.pingedLanes,o=e.expirationTimes,l=e.pendingLanes;0\u003Cl;){var s=31-Dt(l),p=1\u003C\u003Cs,c=o[s];if(-1===c){if(0==(p&a)||0!=(p&r)){c=t,Tt(p);var d=Ht;o[s]=10\u003C=d?c+250:6\u003C=d?c+5e3:-1}}else c\u003C=t&&(e.expiredLanes|=p);l&=~p}if(a=Rt(e,e===zl?Bl:0),t=Ht,0===a)null!==n&&(n!==Rr&&Mr(n),e.callbackNode=null,e.callbackPriority=0);else{if(null!==n){if(e.callbackPriority===t)return;n!==Rr&&Mr(n)}15===t?(n=_s.bind(null,e),null===jr?(jr=[n],Vr=Sr(zr,Kr)):jr.push(n),n=Rr):14===t?n=Gr(99,_s.bind(null,e)):(n=function(e){switch(e){case 15:case 14:return 99;case 13:case 12:case 11:case 10:return 98;case 9:case 8:case 7:case 6:case 4:case 5:return 97;case 3:case 2:case 1:return 95;case 0:return 90;default:throw Error(i(358,e))}}(t),n=Gr(n,gs.bind(null,e))),e.callbackPriority=t,e.callbackNode=n}}function gs(e){if(is=-1,ss=ls=0,0!=(48&Pl))throw Error(i(327));var t=e.callbackNode;if(Bs()&&e.callbackNode!==t)return null;var n=Rt(e,e===zl?Bl:0);if(0===n)return null;var a=n,r=Pl;Pl|=16;var o=Cs();for(zl===e&&Bl===a||($l(),ks(e,a));;)try{Ls();break}catch(t){Es(e,t)}if(no(),Nl.current=o,Pl=r,null!==Al?a=0:(zl=null,Bl=0,a=Rl),0!=(jl&Fl))ks(e,0);else if(0!==a){if(2===a&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Ga(e.containerInfo)),0!==(n=Ot(e))&&(a=Ss(e,n))),1===a)throw t=Ol,ks(e,0),vs(e,n),hs(e,Dr()),t;switch(e.finishedWork=e.current.alternate,e.finishedLanes=n,a){case 0:case 1:throw Error(i(345));case 2:case 5:Ps(e);break;case 3:if(vs(e,n),(62914560&n)===n&&10\u003C(a=Il+500-Dr())){if(0!==Rt(e,0))break;if(((r=e.suspendedLanes)&n)!==n){ds(),e.pingedLanes|=e.suspendedLanes&r;break}e.timeoutHandle=Ua(Ps.bind(null,e),a);break}Ps(e);break;case 4:if(vs(e,n),(4186112&n)===n)break;for(a=e.eventTimes,r=-1;0\u003Cn;){var l=31-Dt(n);o=1\u003C\u003Cl,(l=a[l])>r&&(r=l),n&=~o}if(n=r,10\u003C(n=(120>(n=Dr()-n)?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*Ll(n\u002F1960))-n)){e.timeoutHandle=Ua(Ps.bind(null,e),n);break}Ps(e);break;default:throw Error(i(329))}}return hs(e,Dr()),e.callbackNode===t?gs.bind(null,e):null}function vs(e,t){for(t&=~Wl,t&=~Fl,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0\u003Ct;){var n=31-Dt(t),a=1\u003C\u003Cn;e[n]=-1,t&=~a}}function _s(e){if(0!=(48&Pl))throw Error(i(327));if(Bs(),e===zl&&0!=(e.expiredLanes&Bl)){var t=Bl,n=Ss(e,t);0!=(jl&Fl)&&(n=Ss(e,t=Rt(e,t)))}else n=Ss(e,t=Rt(e,0));if(0!==e.tag&&2===n&&(Pl|=64,e.hydrate&&(e.hydrate=!1,Ga(e.containerInfo)),0!==(t=Ot(e))&&(n=Ss(e,t))),1===n)throw n=Ol,ks(e,0),vs(e,t),hs(e,Dr()),n;return e.finishedWork=e.current.alternate,e.finishedLanes=t,Ps(e),hs(e,Dr()),null}function ws(e,t){var n=Pl;Pl|=1;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}}function bs(e,t){var n=Pl;Pl&=-2,Pl|=8;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}}function xs(e,t){dr(Tl,Hl),Hl|=t,jl|=t}function ys(){Hl=Tl.current,cr(Tl)}function ks(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,$a(n)),null!==Al)for(n=Al.return;null!==n;){var a=n;switch(a.tag){case 1:null!=(a=a.type.childContextTypes)&&_r();break;case 3:Ho(),cr(fr),cr(mr),Xo();break;case 5:Ro(a);break;case 4:Ho();break;case 13:case 19:cr(Oo);break;case 10:ao(a);break;case 23:case 24:ys()}n=n.return}zl=e,Al=Us(e.current,null),Bl=Hl=jl=t,Rl=0,Ol=null,Wl=Fl=Vl=0}function Es(e,t){for(;;){var n=Al;try{if(no(),Qo.current=zi,ai){for(var a=ei.memoizedState;null!==a;){var r=a.queue;null!==r&&(r.pending=null),a=a.next}ai=!1}if(Yo=0,ni=ti=ei=null,ri=!1,Zl.current=null,null===n||null===n.return){Rl=1,Ol=t,Al=null;break}e:{var o=e,i=n.return,l=n,s=t;if(t=Bl,l.flags|=2048,l.firstEffect=l.lastEffect=null,null!==s&&\"object\"==typeof s&&\"function\"==typeof s.then){var p=s;if(0==(2&l.mode)){var c=l.alternate;c?(l.updateQueue=c.updateQueue,l.memoizedState=c.memoizedState,l.lanes=c.lanes):(l.updateQueue=null,l.memoizedState=null)}var d=0!=(1&Oo.current),u=i;do{var m;if(m=13===u.tag){var f=u.memoizedState;if(null!==f)m=null!==f.dehydrated;else{var h=u.memoizedProps;m=void 0!==h.fallback&&(!0!==h.unstable_avoidThisFallback||!d)}}if(m){var g=u.updateQueue;if(null===g){var v=new Set;v.add(p),u.updateQueue=v}else g.add(p);if(0==(2&u.mode)){if(u.flags|=64,l.flags|=16384,l.flags&=-2981,1===l.tag)if(null===l.alternate)l.tag=17;else{var _=co(-1,1);_.tag=2,uo(l,_)}l.lanes|=1;break e}s=void 0,l=t;var w=o.pingCache;if(null===w?(w=o.pingCache=new cl,s=new Set,w.set(p,s)):void 0===(s=w.get(p))&&(s=new Set,w.set(p,s)),!s.has(l)){s.add(l);var b=Vs.bind(null,o,p,l);p.then(b,b)}u.flags|=4096,u.lanes=t;break e}u=u.return}while(null!==u);s=Error((G(l.type)||\"A React component\")+\" suspended while rendering, but no fallback UI was specified.\\n\\nAdd a \u003CSuspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display.\")}5!==Rl&&(Rl=2),s=sl(s,l),u=i;do{switch(u.tag){case 3:o=s,u.flags|=4096,t&=-t,u.lanes|=t,mo(u,dl(0,o,t));break e;case 1:o=s;var x=u.type,y=u.stateNode;if(0==(64&u.flags)&&(\"function\"==typeof x.getDerivedStateFromError||null!==y&&\"function\"==typeof y.componentDidCatch&&(null===Ql||!Ql.has(y)))){u.flags|=4096,t&=-t,u.lanes|=t,mo(u,ul(u,o,t));break e}}u=u.return}while(null!==u)}Zs(n)}catch(e){t=e,Al===n&&null!==n&&(Al=n=n.return);continue}break}}function Cs(){var e=Nl.current;return Nl.current=zi,null===e?zi:e}function Ss(e,t){var n=Pl;Pl|=16;var a=Cs();for(zl===e&&Bl===t||ks(e,t);;)try{Ms();break}catch(t){Es(e,t)}if(no(),Pl=n,Nl.current=a,null!==Al)throw Error(i(261));return zl=null,Bl=0,Rl}function Ms(){for(;null!==Al;)Ns(Al)}function Ls(){for(;null!==Al&&!Lr();)Ns(Al)}function Ns(e){var t=Gl(e.alternate,e,Hl);e.memoizedProps=e.pendingProps,null===t?Zs(e):Al=t,Zl.current=null}function Zs(e){var t=e;do{var n=t.alternate;if(e=t.return,0==(2048&t.flags)){if(null!==(n=il(n,t,Hl)))return void(Al=n);if(24!==(n=t).tag&&23!==n.tag||null===n.memoizedState||0!=(1073741824&Hl)||0==(4&n.mode)){for(var a=0,r=n.child;null!==r;)a|=r.lanes|r.childLanes,r=r.sibling;n.childLanes=a}null!==e&&0==(2048&e.flags)&&(null===e.firstEffect&&(e.firstEffect=t.firstEffect),null!==t.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=t.firstEffect),e.lastEffect=t.lastEffect),1\u003Ct.flags&&(null!==e.lastEffect?e.lastEffect.nextEffect=t:e.firstEffect=t,e.lastEffect=t))}else{if(null!==(n=ll(t)))return n.flags&=2047,void(Al=n);null!==e&&(e.firstEffect=e.lastEffect=null,e.flags|=2048)}if(null!==(t=t.sibling))return void(Al=t);Al=t=e}while(null!==t);0===Rl&&(Rl=5)}function Ps(e){var t=Ir();return $r(99,zs.bind(null,e,t)),null}function zs(e,t){do{Bs()}while(null!==Yl);if(0!=(48&Pl))throw Error(i(327));var n=e.finishedWork;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(i(177));e.callbackNode=null;var a=n.lanes|n.childLanes,r=a,o=e.pendingLanes&~r;e.pendingLanes=r,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=r,e.mutableReadLanes&=r,e.entangledLanes&=r,r=e.entanglements;for(var l=e.eventTimes,s=e.expirationTimes;0\u003Co;){var p=31-Dt(o),c=1\u003C\u003Cp;r[p]=0,l[p]=-1,s[p]=-1,o&=~c}if(null!==as&&0==(24&a)&&as.has(e)&&as.delete(e),e===zl&&(Al=zl=null,Bl=0),1\u003Cn.flags?null!==n.lastEffect?(n.lastEffect.nextEffect=n,a=n.firstEffect):a=n:a=n.firstEffect,null!==a){if(r=Pl,Pl|=32,Zl.current=null,Fa=qt,va(l=ga())){if(\"selectionStart\"in l)s={start:l.selectionStart,end:l.selectionEnd};else e:if(s=(s=l.ownerDocument)&&s.defaultView||window,(c=s.getSelection&&s.getSelection())&&0!==c.rangeCount){s=c.anchorNode,o=c.anchorOffset,p=c.focusNode,c=c.focusOffset;try{s.nodeType,p.nodeType}catch(e){s=null;break e}var d=0,u=-1,m=-1,f=0,h=0,g=l,v=null;t:for(;;){for(var _;g!==s||0!==o&&3!==g.nodeType||(u=d+o),g!==p||0!==c&&3!==g.nodeType||(m=d+c),3===g.nodeType&&(d+=g.nodeValue.length),null!==(_=g.firstChild);)v=g,g=_;for(;;){if(g===l)break t;if(v===s&&++f===o&&(u=d),v===p&&++h===c&&(m=d),null!==(_=g.nextSibling))break;v=(g=v).parentNode}g=_}s=-1===u||-1===m?null:{start:u,end:m}}else s=null;s=s||{start:0,end:0}}else s=null;Wa={focusedElem:l,selectionRange:s},qt=!1,ps=null,cs=!1,ql=a;do{try{As()}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);ps=null,ql=a;do{try{for(l=e;null!==ql;){var w=ql.flags;if(16&w&&ve(ql.stateNode,\"\"),128&w){var b=ql.alternate;if(null!==b){var x=b.ref;null!==x&&(\"function\"==typeof x?x(null):x.current=null)}}switch(1038&w){case 2:xl(ql),ql.flags&=-3;break;case 6:xl(ql),ql.flags&=-3,Cl(ql.alternate,ql);break;case 1024:ql.flags&=-1025;break;case 1028:ql.flags&=-1025,Cl(ql.alternate,ql);break;case 4:Cl(ql.alternate,ql);break;case 8:El(l,s=ql);var y=s.alternate;wl(s),null!==y&&wl(y)}ql=ql.nextEffect}}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);if(x=Wa,b=ga(),w=x.focusedElem,l=x.selectionRange,b!==w&&w&&w.ownerDocument&&ha(w.ownerDocument.documentElement,w)){null!==l&&va(w)&&(b=l.start,void 0===(x=l.end)&&(x=b),\"selectionStart\"in w?(w.selectionStart=b,w.selectionEnd=Math.min(x,w.value.length)):(x=(b=w.ownerDocument||document)&&b.defaultView||window).getSelection&&(x=x.getSelection(),s=w.textContent.length,y=Math.min(l.start,s),l=void 0===l.end?y:Math.min(l.end,s),!x.extend&&y>l&&(s=l,l=y,y=s),s=fa(w,y),o=fa(w,l),s&&o&&(1!==x.rangeCount||x.anchorNode!==s.node||x.anchorOffset!==s.offset||x.focusNode!==o.node||x.focusOffset!==o.offset)&&((b=b.createRange()).setStart(s.node,s.offset),x.removeAllRanges(),y>l?(x.addRange(b),x.extend(o.node,o.offset)):(b.setEnd(o.node,o.offset),x.addRange(b))))),b=[];for(x=w;x=x.parentNode;)1===x.nodeType&&b.push({element:x,left:x.scrollLeft,top:x.scrollTop});for(\"function\"==typeof w.focus&&w.focus(),w=0;w\u003Cb.length;w++)(x=b[w]).element.scrollLeft=x.left,x.element.scrollTop=x.top}qt=!!Fa,Wa=Fa=null,e.current=n,ql=a;do{try{for(w=e;null!==ql;){var k=ql.flags;if(36&k&&gl(w,ql.alternate,ql),128&k){b=void 0;var E=ql.ref;if(null!==E){var C=ql.stateNode;ql.tag,b=C,\"function\"==typeof E?E(b):E.current=b}}ql=ql.nextEffect}}catch(e){if(null===ql)throw Error(i(330));js(ql,e),ql=ql.nextEffect}}while(null!==ql);ql=null,Or(),Pl=r}else e.current=n;if(Jl)Jl=!1,Yl=e,es=t;else for(ql=a;null!==ql;)t=ql.nextEffect,ql.nextEffect=null,8&ql.flags&&((k=ql).sibling=null,k.stateNode=null),ql=t;if(0===(a=e.pendingLanes)&&(Ql=null),1===a?e===os?rs++:(rs=0,os=e):rs=0,n=n.stateNode,Er&&\"function\"==typeof Er.onCommitFiberRoot)try{Er.onCommitFiberRoot(kr,n,void 0,64==(64&n.current.flags))}catch(e){}if(hs(e,Dr()),Kl)throw Kl=!1,e=Xl,Xl=null,e;return 0!=(8&Pl)||qr(),null}function As(){for(;null!==ql;){var e=ql.alternate;cs||null===ps||(0!=(8&ql.flags)?Ye(ql,ps)&&(cs=!0):13===ql.tag&&Ml(e,ql)&&Ye(ql,ps)&&(cs=!0));var t=ql.flags;0!=(256&t)&&hl(e,ql),0==(512&t)||Jl||(Jl=!0,Gr(97,(function(){return Bs(),null}))),ql=ql.nextEffect}}function Bs(){if(90!==es){var e=97\u003Ces?97:es;return es=90,$r(e,Rs)}return!1}function Hs(e,t){ts.push(t,e),Jl||(Jl=!0,Gr(97,(function(){return Bs(),null})))}function Ts(e,t){ns.push(t,e),Jl||(Jl=!0,Gr(97,(function(){return Bs(),null})))}function Rs(){if(null===Yl)return!1;var e=Yl;if(Yl=null,0!=(48&Pl))throw Error(i(331));var t=Pl;Pl|=32;var n=ns;ns=[];for(var a=0;a\u003Cn.length;a+=2){var r=n[a],o=n[a+1],l=r.destroy;if(r.destroy=void 0,\"function\"==typeof l)try{l()}catch(e){if(null===o)throw Error(i(330));js(o,e)}}for(n=ts,ts=[],a=0;a\u003Cn.length;a+=2){r=n[a],o=n[a+1];try{var s=r.create;r.destroy=s()}catch(e){if(null===o)throw Error(i(330));js(o,e)}}for(s=e.current.firstEffect;null!==s;)e=s.nextEffect,s.nextEffect=null,8&s.flags&&(s.sibling=null,s.stateNode=null),s=e;return Pl=t,qr(),!0}function Os(e,t,n){uo(e,t=dl(0,t=sl(n,t),1)),t=ds(),null!==(e=fs(e,1))&&(Wt(e,1,t),hs(e,t))}function js(e,t){if(3===e.tag)Os(e,e,t);else for(var n=e.return;null!==n;){if(3===n.tag){Os(n,e,t);break}if(1===n.tag){var a=n.stateNode;if(\"function\"==typeof n.type.getDerivedStateFromError||\"function\"==typeof a.componentDidCatch&&(null===Ql||!Ql.has(a))){var r=ul(n,e=sl(t,e),1);if(uo(n,r),r=ds(),null!==(n=fs(n,1)))Wt(n,1,r),hs(n,r);else if(\"function\"==typeof a.componentDidCatch&&(null===Ql||!Ql.has(a)))try{a.componentDidCatch(t,e)}catch(e){}break}}n=n.return}}function Vs(e,t,n){var a=e.pingCache;null!==a&&a.delete(t),t=ds(),e.pingedLanes|=e.suspendedLanes&n,zl===e&&(Bl&n)===n&&(4===Rl||3===Rl&&(62914560&Bl)===Bl&&500>Dr()-Il?ks(e,0):Wl|=n),hs(e,t)}function Fs(e,t){var n=e.stateNode;null!==n&&n.delete(t),0==(t=0)&&(0==(2&(t=e.mode))?t=1:0==(4&t)?t=99===Ir()?1:2:(0===ls&&(ls=jl),0===(t=Vt(62914560&~ls))&&(t=4194304))),n=ds(),null!==(e=fs(e,t))&&(Wt(e,t,n),hs(e,n))}function Ws(e,t,n,a){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=a,this.flags=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childLanes=this.lanes=0,this.alternate=null}function Ds(e,t,n,a){return new Ws(e,t,n,a)}function Is(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Us(e,t){var n=e.alternate;return null===n?((n=Ds(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.nextEffect=null,n.firstEffect=null,n.lastEffect=null),n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function $s(e,t,n,a,r,o){var l=2;if(a=e,\"function\"==typeof e)Is(e)&&(l=1);else if(\"string\"==typeof e)l=5;else e:switch(e){case E:return Gs(n.children,r,o,t);case T:l=8,r|=16;break;case C:l=8,r|=1;break;case S:return(e=Ds(12,n,t,8|r)).elementType=S,e.type=S,e.lanes=o,e;case Z:return(e=Ds(13,n,t,r)).type=Z,e.elementType=Z,e.lanes=o,e;case P:return(e=Ds(19,n,t,r)).elementType=P,e.lanes=o,e;case R:return qs(n,r,o,t);case O:return(e=Ds(24,n,t,r)).elementType=O,e.lanes=o,e;default:if(\"object\"==typeof e&&null!==e)switch(e.$$typeof){case M:l=10;break e;case L:l=9;break e;case N:l=11;break e;case z:l=14;break e;case A:l=16,a=null;break e;case B:l=22;break e}throw Error(i(130,null==e?e:typeof e,\"\"))}return(t=Ds(l,n,t,r)).elementType=e,t.type=a,t.lanes=o,t}function Gs(e,t,n,a){return(e=Ds(7,e,a,t)).lanes=n,e}function qs(e,t,n,a){return(e=Ds(23,e,a,t)).elementType=R,e.lanes=n,e}function Ks(e,t,n){return(e=Ds(6,e,null,t)).lanes=n,e}function Xs(e,t,n){return(t=Ds(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Qs(e,t,n){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=0,this.eventTimes=Ft(0),this.expirationTimes=Ft(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Ft(0),this.mutableSourceEagerHydrationData=null}function Js(e,t,n,a){var r=t.current,o=ds(),l=us(r);e:if(n){t:{if(Ke(n=n._reactInternals)!==n||1!==n.tag)throw Error(i(170));var s=n;do{switch(s.tag){case 3:s=s.stateNode.context;break t;case 1:if(vr(s.type)){s=s.stateNode.__reactInternalMemoizedMergedChildContext;break t}}s=s.return}while(null!==s);throw Error(i(171))}if(1===n.tag){var p=n.type;if(vr(p)){n=br(n,p,s);break e}}n=s}else n=ur;return null===t.context?t.context=n:t.pendingContext=n,(t=co(o,l)).payload={element:e},null!==(a=void 0===a?null:a)&&(t.callback=a),uo(r,t),ms(r,l,o),l}function Ys(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function ep(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n\u003Ct?n:t}}function tp(e,t){ep(e,t),(e=e.alternate)&&ep(e,t)}function np(e,t,n){var a=null!=n&&null!=n.hydrationOptions&&n.hydrationOptions.mutableSources||null;if(n=new Qs(e,t,null!=n&&!0===n.hydrate),t=Ds(3,null,null,2===t?7:1===t?3:0),n.current=t,t.stateNode=n,so(t),e[er]=n.current,za(8===e.nodeType?e.parentNode:e),a)for(e=0;e\u003Ca.length;e++){var r=(t=a[e])._getVersion;r=r(t._source),null==n.mutableSourceEagerHydrationData?n.mutableSourceEagerHydrationData=[t,r]:n.mutableSourceEagerHydrationData.push(t,r)}this._internalRoot=n}function ap(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||\" react-mount-point-unstable \"!==e.nodeValue))}function rp(e,t,n,a,r){var o=n._reactRootContainer;if(o){var i=o._internalRoot;if(\"function\"==typeof r){var l=r;r=function(){var e=Ys(i);l.call(e)}}Js(t,i,e,r)}else{if(o=n._reactRootContainer=function(e,t){if(t||(t=!(!(t=e?9===e.nodeType?e.documentElement:e.firstChild:null)||1!==t.nodeType||!t.hasAttribute(\"data-reactroot\"))),!t)for(var n;n=e.lastChild;)e.removeChild(n);return new np(e,0,t?{hydrate:!0}:void 0)}(n,a),i=o._internalRoot,\"function\"==typeof r){var s=r;r=function(){var e=Ys(i);s.call(e)}}bs((function(){Js(t,i,e,r)}))}return Ys(i)}function op(e,t){var n=2\u003Carguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!ap(t))throw Error(i(200));return function(e,t,n){var a=3\u003Carguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:k,key:null==a?null:\"\"+a,children:e,containerInfo:t,implementation:n}}(e,t,null,n)}Gl=function(e,t,n){var a=t.lanes;if(null!==e)if(e.memoizedProps!==t.pendingProps||fr.current)Ri=!0;else{if(0==(n&a)){switch(Ri=!1,t.tag){case 3:Gi(t),qo();break;case 5:To(t);break;case 1:vr(t.type)&&xr(t);break;case 4:Bo(t,t.stateNode.containerInfo);break;case 10:a=t.memoizedProps.value;var r=t.type._context;dr(Jr,r._currentValue),r._currentValue=a;break;case 13:if(null!==t.memoizedState)return 0!=(n&t.child.childLanes)?Yi(e,t,n):(dr(Oo,1&Oo.current),null!==(t=rl(e,t,n))?t.sibling:null);dr(Oo,1&Oo.current);break;case 19:if(a=0!=(n&t.childLanes),0!=(64&e.flags)){if(a)return al(e,t,n);t.flags|=64}if(null!==(r=t.memoizedState)&&(r.rendering=null,r.tail=null,r.lastEffect=null),dr(Oo,Oo.current),a)break;return null;case 23:case 24:return t.lanes=0,Wi(e,t,n)}return rl(e,t,n)}Ri=0!=(16384&e.flags)}else Ri=!1;switch(t.lanes=0,t.tag){case 2:if(a=t.type,null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=gr(t,mr.current),oo(t,n),r=li(null,t,a,e,r,n),t.flags|=1,\"object\"==typeof r&&null!==r&&\"function\"==typeof r.render&&void 0===r.$$typeof){if(t.tag=1,t.memoizedState=null,t.updateQueue=null,vr(a)){var o=!0;xr(t)}else o=!1;t.memoizedState=null!==r.state&&void 0!==r.state?r.state:null,so(t);var l=a.getDerivedStateFromProps;\"function\"==typeof l&&vo(t,a,l,e),r.updater=_o,t.stateNode=r,r._reactInternals=t,yo(t,a,e,n),t=$i(null,t,a,!0,o,n)}else t.tag=0,Oi(null,t,r,n),t=t.child;return t;case 16:r=t.elementType;e:{switch(null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=(o=r._init)(r._payload),t.type=r,o=t.tag=function(e){if(\"function\"==typeof e)return Is(e)?1:0;if(null!=e){if((e=e.$$typeof)===N)return 11;if(e===z)return 14}return 2}(r),e=Qr(r,e),o){case 0:t=Ii(null,t,r,e,n);break e;case 1:t=Ui(null,t,r,e,n);break e;case 11:t=ji(null,t,r,e,n);break e;case 14:t=Vi(null,t,r,Qr(r.type,e),a,n);break e}throw Error(i(306,r,\"\"))}return t;case 0:return a=t.type,r=t.pendingProps,Ii(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 1:return a=t.type,r=t.pendingProps,Ui(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 3:if(Gi(t),a=t.updateQueue,null===e||null===a)throw Error(i(282));if(a=t.pendingProps,r=null!==(r=t.memoizedState)?r.element:null,po(e,t),fo(t,a,null,n),(a=t.memoizedState.element)===r)qo(),t=rl(e,t,n);else{if((o=(r=t.stateNode).hydrate)&&(Fo=qa(t.stateNode.containerInfo.firstChild),Vo=t,o=Wo=!0),o){if(null!=(e=r.mutableSourceEagerHydrationData))for(r=0;r\u003Ce.length;r+=2)(o=e[r])._workInProgressVersionPrimary=e[r+1],Ko.push(o);for(n=Lo(t,null,a,n),t.child=n;n;)n.flags=-3&n.flags|1024,n=n.sibling}else Oi(e,t,a,n),qo();t=t.child}return t;case 5:return To(t),null===e&&Uo(t),a=t.type,r=t.pendingProps,o=null!==e?e.memoizedProps:null,l=r.children,Ia(a,r)?l=null:null!==o&&Ia(a,o)&&(t.flags|=16),Di(e,t),Oi(e,t,l,n),t.child;case 6:return null===e&&Uo(t),null;case 13:return Yi(e,t,n);case 4:return Bo(t,t.stateNode.containerInfo),a=t.pendingProps,null===e?t.child=Mo(t,null,a,n):Oi(e,t,a,n),t.child;case 11:return a=t.type,r=t.pendingProps,ji(e,t,a,r=t.elementType===a?r:Qr(a,r),n);case 7:return Oi(e,t,t.pendingProps,n),t.child;case 8:case 12:return Oi(e,t,t.pendingProps.children,n),t.child;case 10:e:{a=t.type._context,r=t.pendingProps,l=t.memoizedProps,o=r.value;var s=t.type._context;if(dr(Jr,s._currentValue),s._currentValue=o,null!==l)if(s=l.value,0==(o=ca(s,o)?0:0|(\"function\"==typeof a._calculateChangedBits?a._calculateChangedBits(s,o):1073741823))){if(l.children===r.children&&!fr.current){t=rl(e,t,n);break e}}else for(null!==(s=t.child)&&(s.return=t);null!==s;){var p=s.dependencies;if(null!==p){l=s.child;for(var c=p.firstContext;null!==c;){if(c.context===a&&0!=(c.observedBits&o)){1===s.tag&&((c=co(-1,n&-n)).tag=2,uo(s,c)),s.lanes|=n,null!==(c=s.alternate)&&(c.lanes|=n),ro(s.return,n),p.lanes|=n;break}c=c.next}}else l=10===s.tag&&s.type===t.type?null:s.child;if(null!==l)l.return=s;else for(l=s;null!==l;){if(l===t){l=null;break}if(null!==(s=l.sibling)){s.return=l.return,l=s;break}l=l.return}s=l}Oi(e,t,r.children,n),t=t.child}return t;case 9:return r=t.type,a=(o=t.pendingProps).children,oo(t,n),a=a(r=io(r,o.unstable_observedBits)),t.flags|=1,Oi(e,t,a,n),t.child;case 14:return o=Qr(r=t.type,t.pendingProps),Vi(e,t,r,o=Qr(r.type,o),a,n);case 15:return Fi(e,t,t.type,t.pendingProps,a,n);case 17:return a=t.type,r=t.pendingProps,r=t.elementType===a?r:Qr(a,r),null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),t.tag=1,vr(a)?(e=!0,xr(t)):e=!1,oo(t,n),bo(t,a,r),yo(t,a,r,n),$i(null,t,a,!0,e,n);case 19:return al(e,t,n);case 23:case 24:return Wi(e,t,n)}throw Error(i(156,t.tag))},np.prototype.render=function(e){Js(e,this._internalRoot,null,null)},np.prototype.unmount=function(){var e=this._internalRoot,t=e.containerInfo;Js(null,e,null,(function(){t[er]=null}))},et=function(e){13===e.tag&&(ms(e,4,ds()),tp(e,4))},tt=function(e){13===e.tag&&(ms(e,67108864,ds()),tp(e,67108864))},nt=function(e){if(13===e.tag){var t=ds(),n=us(e);ms(e,n,t),tp(e,n)}},at=function(e,t){return t()},Se=function(e,t,n){switch(t){case\"input\":if(ne(e,n),t=n.name,\"radio\"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll(\"input[name=\"+JSON.stringify(\"\"+t)+'][type=\"radio\"]'),t=0;t\u003Cn.length;t++){var a=n[t];if(a!==e&&a.form===e.form){var r=or(a);if(!r)throw Error(i(90));Q(a),ne(a,r)}}}break;case\"textarea\":pe(e,n);break;case\"select\":null!=(t=n.value)&&ie(e,!!n.multiple,t,!1)}},ze=ws,Ae=function(e,t,n,a,r){var o=Pl;Pl|=4;try{return $r(98,e.bind(null,t,n,a,r))}finally{0===(Pl=o)&&($l(),qr())}},Be=function(){0==(49&Pl)&&(function(){if(null!==as){var e=as;as=null,e.forEach((function(e){e.expiredLanes|=24&e.pendingLanes,hs(e,Dr())}))}qr()}(),Bs())},He=function(e,t){var n=Pl;Pl|=2;try{return e(t)}finally{0===(Pl=n)&&($l(),qr())}};var ip={Events:[ar,rr,or,Ze,Pe,Bs,{current:!1}]},lp={findFiberByHostInstance:nr,bundleType:0,version:\"17.0.2\",rendererPackageName:\"react-dom\"},sp={bundleType:lp.bundleType,version:lp.version,rendererPackageName:lp.rendererPackageName,rendererConfig:lp.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:x.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=Je(e))?null:e.stateNode},findFiberByHostInstance:lp.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null};if(\"undefined\"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var pp=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!pp.isDisabled&&pp.supportsFiber)try{kr=pp.inject(sp),Er=pp}catch(he){}}t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ip,t.createPortal=op,t.findDOMNode=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternals;if(void 0===t){if(\"function\"==typeof e.render)throw Error(i(188));throw Error(i(268,Object.keys(e)))}return null===(e=Je(t))?null:e.stateNode},t.flushSync=function(e,t){var n=Pl;if(0!=(48&n))return e(t);Pl|=1;try{if(e)return $r(99,e.bind(null,t))}finally{Pl=n,qr()}},t.hydrate=function(e,t,n){if(!ap(t))throw Error(i(200));return rp(null,e,t,!0,n)},t.render=function(e,t,n){if(!ap(t))throw Error(i(200));return rp(null,e,t,!1,n)},t.unmountComponentAtNode=function(e){if(!ap(e))throw Error(i(40));return!!e._reactRootContainer&&(bs((function(){rp(null,null,e,!1,(function(){e._reactRootContainer=null,e[er]=null}))})),!0)},t.unstable_batchedUpdates=ws,t.unstable_createPortal=function(e,t){return op(e,t,2\u003Carguments.length&&void 0!==arguments[2]?arguments[2]:null)},t.unstable_renderSubtreeIntoContainer=function(e,t,n,a){if(!ap(n))throw Error(i(200));if(null==e||void 0===e._reactInternals)throw Error(i(38));return rp(e,t,n,!1,a)},t.version=\"17.0.2\"},3935:(e,t,n)=>{\"use strict\";!function e(){if(\"undefined\"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&\"function\"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),e.exports=n(4448)},2408:(e,t,n)=>{\"use strict\";var a=n(7418),r=60103,o=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var i=60109,l=60110,s=60112;t.Suspense=60113;var p=60115,c=60116;if(\"function\"==typeof Symbol&&Symbol.for){var d=Symbol.for;r=d(\"react.element\"),o=d(\"react.portal\"),t.Fragment=d(\"react.fragment\"),t.StrictMode=d(\"react.strict_mode\"),t.Profiler=d(\"react.profiler\"),i=d(\"react.provider\"),l=d(\"react.context\"),s=d(\"react.forward_ref\"),t.Suspense=d(\"react.suspense\"),p=d(\"react.memo\"),c=d(\"react.lazy\")}var u=\"function\"==typeof Symbol&&Symbol.iterator;function m(e){for(var t=\"https:\u002F\u002Freactjs.org\u002Fdocs\u002Ferror-decoder.html?invariant=\"+e,n=1;n\u003Carguments.length;n++)t+=\"&args[]=\"+encodeURIComponent(arguments[n]);return\"Minified React error #\"+e+\"; visit \"+t+\" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\"}var f={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},h={};function g(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||f}function v(){}function _(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||f}g.prototype.isReactComponent={},g.prototype.setState=function(e,t){if(\"object\"!=typeof e&&\"function\"!=typeof e&&null!=e)throw Error(m(85));this.updater.enqueueSetState(this,e,t,\"setState\")},g.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,\"forceUpdate\")},v.prototype=g.prototype;var w=_.prototype=new v;w.constructor=_,a(w,g.prototype),w.isPureReactComponent=!0;var b={current:null},x=Object.prototype.hasOwnProperty,y={key:!0,ref:!0,__self:!0,__source:!0};function k(e,t,n){var a,o={},i=null,l=null;if(null!=t)for(a in void 0!==t.ref&&(l=t.ref),void 0!==t.key&&(i=\"\"+t.key),t)x.call(t,a)&&!y.hasOwnProperty(a)&&(o[a]=t[a]);var s=arguments.length-2;if(1===s)o.children=n;else if(1\u003Cs){for(var p=Array(s),c=0;c\u003Cs;c++)p[c]=arguments[c+2];o.children=p}if(e&&e.defaultProps)for(a in s=e.defaultProps)void 0===o[a]&&(o[a]=s[a]);return{$$typeof:r,type:e,key:i,ref:l,props:o,_owner:b.current}}function E(e){return\"object\"==typeof e&&null!==e&&e.$$typeof===r}var C=\u002F\\\u002F+\u002Fg;function S(e,t){return\"object\"==typeof e&&null!==e&&null!=e.key?function(e){var t={\"=\":\"=0\",\":\":\"=2\"};return\"$\"+e.replace(\u002F[=:]\u002Fg,(function(e){return t[e]}))}(\"\"+e.key):t.toString(36)}function M(e,t,n,a,i){var l=typeof e;\"undefined\"!==l&&\"boolean\"!==l||(e=null);var s=!1;if(null===e)s=!0;else switch(l){case\"string\":case\"number\":s=!0;break;case\"object\":switch(e.$$typeof){case r:case o:s=!0}}if(s)return i=i(s=e),e=\"\"===a?\".\"+S(s,0):a,Array.isArray(i)?(n=\"\",null!=e&&(n=e.replace(C,\"$&\u002F\")+\"\u002F\"),M(i,t,n,\"\",(function(e){return e}))):null!=i&&(E(i)&&(i=function(e,t){return{$$typeof:r,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(i,n+(!i.key||s&&s.key===i.key?\"\":(\"\"+i.key).replace(C,\"$&\u002F\")+\"\u002F\")+e)),t.push(i)),1;if(s=0,a=\"\"===a?\".\":a+\":\",Array.isArray(e))for(var p=0;p\u003Ce.length;p++){var c=a+S(l=e[p],p);s+=M(l,t,n,c,i)}else if(c=function(e){return null===e||\"object\"!=typeof e?null:\"function\"==typeof(e=u&&e[u]||e[\"@@iterator\"])?e:null}(e),\"function\"==typeof c)for(e=c.call(e),p=0;!(l=e.next()).done;)s+=M(l=l.value,t,n,c=a+S(l,p++),i);else if(\"object\"===l)throw t=\"\"+e,Error(m(31,\"[object Object]\"===t?\"object with keys {\"+Object.keys(e).join(\", \")+\"}\":t));return s}function L(e,t,n){if(null==e)return e;var a=[],r=0;return M(e,a,\"\",\"\",(function(e){return t.call(n,e,r++)})),a}function N(e){if(-1===e._status){var t=e._result;t=t(),e._status=0,e._result=t,t.then((function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)}),(function(t){0===e._status&&(e._status=2,e._result=t)}))}if(1===e._status)return e._result;throw e._result}var Z={current:null};function P(){var e=Z.current;if(null===e)throw Error(m(321));return e}var z={ReactCurrentDispatcher:Z,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:b,IsSomeRendererActing:{current:!1},assign:a};t.Children={map:L,forEach:function(e,t,n){L(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return L(e,(function(){t++})),t},toArray:function(e){return L(e,(function(e){return e}))||[]},only:function(e){if(!E(e))throw Error(m(143));return e}},t.Component=g,t.PureComponent=_,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=z,t.cloneElement=function(e,t,n){if(null==e)throw Error(m(267,e));var o=a({},e.props),i=e.key,l=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(l=t.ref,s=b.current),void 0!==t.key&&(i=\"\"+t.key),e.type&&e.type.defaultProps)var p=e.type.defaultProps;for(c in t)x.call(t,c)&&!y.hasOwnProperty(c)&&(o[c]=void 0===t[c]&&void 0!==p?p[c]:t[c])}var c=arguments.length-2;if(1===c)o.children=n;else if(1\u003Cc){p=Array(c);for(var d=0;d\u003Cc;d++)p[d]=arguments[d+2];o.children=p}return{$$typeof:r,type:e.type,key:i,ref:l,props:o,_owner:s}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:l,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:i,_context:e},e.Consumer=e},t.createElement=k,t.createFactory=function(e){var t=k.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:s,render:e}},t.isValidElement=E,t.lazy=function(e){return{$$typeof:c,_payload:{_status:-1,_result:e},_init:N}},t.memo=function(e,t){return{$$typeof:p,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return P().useCallback(e,t)},t.useContext=function(e,t){return P().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return P().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return P().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return P().useLayoutEffect(e,t)},t.useMemo=function(e,t){return P().useMemo(e,t)},t.useReducer=function(e,t,n){return P().useReducer(e,t,n)},t.useRef=function(e){return P().useRef(e)},t.useState=function(e){return P().useState(e)},t.version=\"17.0.2\"},7294:(e,t,n)=>{\"use strict\";e.exports=n(2408)},53:(e,t)=>{\"use strict\";var n,a,r,o;if(\"object\"==typeof performance&&\"function\"==typeof performance.now){var i=performance;t.unstable_now=function(){return i.now()}}else{var l=Date,s=l.now();t.unstable_now=function(){return l.now()-s}}if(\"undefined\"==typeof window||\"function\"!=typeof MessageChannel){var p=null,c=null,d=function(){if(null!==p)try{var e=t.unstable_now();p(!0,e),p=null}catch(e){throw setTimeout(d,0),e}};n=function(e){null!==p?setTimeout(n,0,e):(p=e,setTimeout(d,0))},a=function(e,t){c=setTimeout(e,t)},r=function(){clearTimeout(c)},t.unstable_shouldYield=function(){return!1},o=t.unstable_forceFrameRate=function(){}}else{var u=window.setTimeout,m=window.clearTimeout;if(\"undefined\"!=typeof console){var f=window.cancelAnimationFrame;\"function\"!=typeof window.requestAnimationFrame&&console.error(\"This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https:\u002F\u002Freactjs.org\u002Flink\u002Freact-polyfills\"),\"function\"!=typeof f&&console.error(\"This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https:\u002F\u002Freactjs.org\u002Flink\u002Freact-polyfills\")}var h=!1,g=null,v=-1,_=5,w=0;t.unstable_shouldYield=function(){return t.unstable_now()>=w},o=function(){},t.unstable_forceFrameRate=function(e){0>e||125\u003Ce?console.error(\"forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported\"):_=0\u003Ce?Math.floor(1e3\u002Fe):5};var b=new MessageChannel,x=b.port2;b.port1.onmessage=function(){if(null!==g){var e=t.unstable_now();w=e+_;try{g(!0,e)?x.postMessage(null):(h=!1,g=null)}catch(e){throw x.postMessage(null),e}}else h=!1},n=function(e){g=e,h||(h=!0,x.postMessage(null))},a=function(e,n){v=u((function(){e(t.unstable_now())}),n)},r=function(){m(v),v=-1}}function y(e,t){var n=e.length;e.push(t);e:for(;;){var a=n-1>>>1,r=e[a];if(!(void 0!==r&&0\u003CC(r,t)))break e;e[a]=t,e[n]=r,n=a}}function k(e){return void 0===(e=e[0])?null:e}function E(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var a=0,r=e.length;a\u003Cr;){var o=2*(a+1)-1,i=e[o],l=o+1,s=e[l];if(void 0!==i&&0>C(i,n))void 0!==s&&0>C(s,i)?(e[a]=s,e[l]=n,a=l):(e[a]=i,e[o]=n,a=o);else{if(!(void 0!==s&&0>C(s,n)))break e;e[a]=s,e[l]=n,a=l}}}return t}return null}function C(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var S=[],M=[],L=1,N=null,Z=3,P=!1,z=!1,A=!1;function B(e){for(var t=k(M);null!==t;){if(null===t.callback)E(M);else{if(!(t.startTime\u003C=e))break;E(M),t.sortIndex=t.expirationTime,y(S,t)}t=k(M)}}function H(e){if(A=!1,B(e),!z)if(null!==k(S))z=!0,n(T);else{var t=k(M);null!==t&&a(H,t.startTime-e)}}function T(e,n){z=!1,A&&(A=!1,r()),P=!0;var o=Z;try{for(B(n),N=k(S);null!==N&&(!(N.expirationTime>n)||e&&!t.unstable_shouldYield());){var i=N.callback;if(\"function\"==typeof i){N.callback=null,Z=N.priorityLevel;var l=i(N.expirationTime\u003C=n);n=t.unstable_now(),\"function\"==typeof l?N.callback=l:N===k(S)&&E(S),B(n)}else E(S);N=k(S)}if(null!==N)var s=!0;else{var p=k(M);null!==p&&a(H,p.startTime-n),s=!1}return s}finally{N=null,Z=o,P=!1}}var R=o;t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){z||P||(z=!0,n(T))},t.unstable_getCurrentPriorityLevel=function(){return Z},t.unstable_getFirstCallbackNode=function(){return k(S)},t.unstable_next=function(e){switch(Z){case 1:case 2:case 3:var t=3;break;default:t=Z}var n=Z;Z=t;try{return e()}finally{Z=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=R,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=Z;Z=e;try{return t()}finally{Z=n}},t.unstable_scheduleCallback=function(e,o,i){var l=t.unstable_now();switch(i=\"object\"==typeof i&&null!==i&&\"number\"==typeof(i=i.delay)&&0\u003Ci?l+i:l,e){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return e={id:L++,callback:o,priorityLevel:e,startTime:i,expirationTime:s=i+s,sortIndex:-1},i>l?(e.sortIndex=i,y(M,e),null===k(S)&&e===k(M)&&(A?r():A=!0,a(H,i-l))):(e.sortIndex=s,y(S,e),z||P||(z=!0,n(T))),e},t.unstable_wrapCallback=function(e){var t=Z;return function(){var n=Z;Z=t;try{return e.apply(this,arguments)}finally{Z=n}}}},3840:(e,t,n)=>{\"use strict\";e.exports=n(53)},8975:(e,t,n)=>{var a;!function(){\"use strict\";var r={not_string:\u002F[^s]\u002F,not_bool:\u002F[^t]\u002F,not_type:\u002F[^T]\u002F,not_primitive:\u002F[^v]\u002F,number:\u002F[diefg]\u002F,numeric_arg:\u002F[bcdiefguxX]\u002F,json:\u002F[j]\u002F,not_json:\u002F[^j]\u002F,text:\u002F^[^\\x25]+\u002F,modulo:\u002F^\\x25{2}\u002F,placeholder:\u002F^\\x25(?:([1-9]\\d*)\\$|\\(([^)]+)\\))?(\\+)?(0|'[^$])?(-)?(\\d+)?(?:\\.(\\d+))?([b-gijostTuvxX])\u002F,key:\u002F^([a-z_][a-z_\\d]*)\u002Fi,key_access:\u002F^\\.([a-z_][a-z_\\d]*)\u002Fi,index_access:\u002F^\\[(\\d+)\\]\u002F,sign:\u002F^[+-]\u002F};function o(e){return function(e,t){var n,a,i,l,s,p,c,d,u,m=1,f=e.length,h=\"\";for(a=0;a\u003Cf;a++)if(\"string\"==typeof e[a])h+=e[a];else if(\"object\"==typeof e[a]){if((l=e[a]).keys)for(n=t[m],i=0;i\u003Cl.keys.length;i++){if(null==n)throw new Error(o('[sprintf] Cannot access property \"%s\" of undefined value \"%s\"',l.keys[i],l.keys[i-1]));n=n[l.keys[i]]}else n=l.param_no?t[l.param_no]:t[m++];if(r.not_type.test(l.type)&&r.not_primitive.test(l.type)&&n instanceof Function&&(n=n()),r.numeric_arg.test(l.type)&&\"number\"!=typeof n&&isNaN(n))throw new TypeError(o(\"[sprintf] expecting number but found %T\",n));switch(r.number.test(l.type)&&(d=n>=0),l.type){case\"b\":n=parseInt(n,10).toString(2);break;case\"c\":n=String.fromCharCode(parseInt(n,10));break;case\"d\":case\"i\":n=parseInt(n,10);break;case\"j\":n=JSON.stringify(n,null,l.width?parseInt(l.width):0);break;case\"e\":n=l.precision?parseFloat(n).toExponential(l.precision):parseFloat(n).toExponential();break;case\"f\":n=l.precision?parseFloat(n).toFixed(l.precision):parseFloat(n);break;case\"g\":n=l.precision?String(Number(n.toPrecision(l.precision))):parseFloat(n);break;case\"o\":n=(parseInt(n,10)>>>0).toString(8);break;case\"s\":n=String(n),n=l.precision?n.substring(0,l.precision):n;break;case\"t\":n=String(!!n),n=l.precision?n.substring(0,l.precision):n;break;case\"T\":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=l.precision?n.substring(0,l.precision):n;break;case\"u\":n=parseInt(n,10)>>>0;break;case\"v\":n=n.valueOf(),n=l.precision?n.substring(0,l.precision):n;break;case\"x\":n=(parseInt(n,10)>>>0).toString(16);break;case\"X\":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}r.json.test(l.type)?h+=n:(!r.number.test(l.type)||d&&!l.sign?u=\"\":(u=d?\"+\":\"-\",n=n.toString().replace(r.sign,\"\")),p=l.pad_char?\"0\"===l.pad_char?\"0\":l.pad_char.charAt(1):\" \",c=l.width-(u+n).length,s=l.width&&c>0?p.repeat(c):\"\",h+=l.align?u+n+s:\"0\"===p?u+s+n:s+u+n)}return h}(function(e){if(l[e])return l[e];for(var t,n=e,a=[],o=0;n;){if(null!==(t=r.text.exec(n)))a.push(t[0]);else if(null!==(t=r.modulo.exec(n)))a.push(\"%\");else{if(null===(t=r.placeholder.exec(n)))throw new SyntaxError(\"[sprintf] unexpected placeholder\");if(t[2]){o|=1;var i=[],s=t[2],p=[];if(null===(p=r.key.exec(s)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");for(i.push(p[1]);\"\"!==(s=s.substring(p[0].length));)if(null!==(p=r.key_access.exec(s)))i.push(p[1]);else{if(null===(p=r.index_access.exec(s)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");i.push(p[1])}t[2]=i}else o|=2;if(3===o)throw new Error(\"[sprintf] mixing positional and named placeholders is not (yet) supported\");a.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}n=n.substring(t[0].length)}return l[e]=a}(e),arguments)}function i(e,t){return o.apply(null,[e].concat(t||[]))}var l=Object.create(null);\"undefined\"!=typeof window&&(window.sprintf=o,window.vsprintf=i,void 0===(a=function(){return{sprintf:o,vsprintf:i}}.call(t,n,t,e))||(e.exports=a))}()},6129:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6511),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},563:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(3038),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3493:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(725),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},9780:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(5735),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},8350:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(9455),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2156:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(283),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},977:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(4421),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},7376:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(2041),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},6680:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6657),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3479:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(2793),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},4602:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(4558),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3358:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(6922),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2413:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(439),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},6509:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(9839),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},619:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1211),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},2158:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1589),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},4201:(e,t,n)=>{\"use strict\";var a=n(3379),r=n.n(a),o=n(7795),i=n.n(o),l=n(569),s=n.n(l),p=n(3565),c=n.n(p),d=n(9216),u=n.n(d),m=n(4589),f=n.n(m),h=n(1729),g={};g.styleTagTransform=f(),g.setAttributes=c(),g.insert=s().bind(null,\"head\"),g.domAPI=i(),g.insertStyleElement=u(),r()(h.Z,g),h.Z&&h.Z.locals&&h.Z.locals},3379:e=>{\"use strict\";var t=[];function n(e){for(var n=-1,a=0;a\u003Ct.length;a++)if(t[a].identifier===e){n=a;break}return n}function a(e,a){for(var o={},i=[],l=0;l\u003Ce.length;l++){var s=e[l],p=a.base?s[0]+a.base:s[0],c=o[p]||0,d=\"\".concat(p,\" \").concat(c);o[p]=c+1;var u=n(d),m={css:s[1],media:s[2],sourceMap:s[3],supports:s[4],layer:s[5]};if(-1!==u)t[u].references++,t[u].updater(m);else{var f=r(m,a);a.byIndex=l,t.splice(l,0,{identifier:d,updater:f,references:1})}i.push(d)}return i}function r(e,t){var n=t.domAPI(t);return n.update(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap&&t.supports===e.supports&&t.layer===e.layer)return;n.update(e=t)}else n.remove()}}e.exports=function(e,r){var o=a(e=e||[],r=r||{});return function(e){e=e||[];for(var i=0;i\u003Co.length;i++){var l=n(o[i]);t[l].references--}for(var s=a(e,r),p=0;p\u003Co.length;p++){var c=n(o[p]);0===t[c].references&&(t[c].updater(),t.splice(c,1))}o=s}}},569:e=>{\"use strict\";var t={};e.exports=function(e,n){var a=function(e){if(void 0===t[e]){var n=document.querySelector(e);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}t[e]=n}return t[e]}(e);if(!a)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");a.appendChild(n)}},9216:e=>{\"use strict\";e.exports=function(e){var t=document.createElement(\"style\");return e.setAttributes(t,e.attributes),e.insert(t,e.options),t}},3565:(e,t,n)=>{\"use strict\";e.exports=function(e){var t=n.nc;t&&e.setAttribute(\"nonce\",t)}},7795:e=>{\"use strict\";e.exports=function(e){if(\"undefined\"==typeof document)return{update:function(){},remove:function(){}};var t=e.insertStyleElement(e);return{update:function(n){!function(e,t,n){var a=\"\";n.supports&&(a+=\"@supports (\".concat(n.supports,\") {\")),n.media&&(a+=\"@media \".concat(n.media,\" {\"));var r=void 0!==n.layer;r&&(a+=\"@layer\".concat(n.layer.length>0?\" \".concat(n.layer):\"\",\" {\")),a+=n.css,r&&(a+=\"}\"),n.media&&(a+=\"}\"),n.supports&&(a+=\"}\");var o=n.sourceMap;o&&\"undefined\"!=typeof btoa&&(a+=\"\\n\u002F*# sourceMappingURL=data:application\u002Fjson;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o)))),\" *\u002F\")),t.styleTagTransform(a,e,t.options)}(t,e,n)},remove:function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(t)}}}},4589:e=>{\"use strict\";e.exports=function(e,t){if(t.styleSheet)t.styleSheet.cssText=e;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(e))}}},5022:(e,t,n)=>{\"use strict\";n.d(t,{Z:()=>o});var a=n(7680),r={contextDelimiter:\"\u0004\",onMissingKey:null};function o(e,t){var n;for(n in this.data=e,this.pluralForms={},this.options={},r)this.options[n]=void 0!==t&&n in t?t[n]:r[n]}o.prototype.getPluralForm=function(e,t){var n,r,o,i=this.pluralForms[e];return i||(\"function\"!=typeof(o=(n=this.data[e][\"\"])[\"Plural-Forms\"]||n[\"plural-forms\"]||n.plural_forms)&&(r=function(e){var t,n,a;for(t=e.split(\";\"),n=0;n\u003Ct.length;n++)if(0===(a=t[n].trim()).indexOf(\"plural=\"))return a.substr(7)}(n[\"Plural-Forms\"]||n[\"plural-forms\"]||n.plural_forms),o=(0,a.Z)(r)),i=this.pluralForms[e]=o),i(t)},o.prototype.dcnpgettext=function(e,t,n,a,r){var o,i,l;return o=void 0===r?0:this.getPluralForm(e,r),i=n,t&&(i=t+this.options.contextDelimiter+n),(l=this.data[e][i])&&l[o]?l[o]:(this.options.onMissingKey&&this.options.onMissingKey(n,e),0===o?n:a)}},4975:e=>{\"use strict\";e.exports=\"data:image\u002Fsvg+xml,%3Csvg width=%2742%27 height=%2742%27 viewBox=%270 0 42 42%27 fill=%27none%27 xmlns=%27http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg%27%3E%3Cpath d=%27M0 42V7C0 3.13401 3.13401 0 7 0H42L0 42Z%27 fill=%27%23FF285E%27\u002F%3E%3C\u002Fsvg%3E\"},7462:(e,t,n)=>{\"use strict\";function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t\u003Carguments.length;t++){var n=arguments[t];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(e[a]=n[a])}return e},a.apply(this,arguments)}n.d(t,{Z:()=>a})},6290:(e,t,n)=>{\"use strict\";function a(e,t){var n,a,r=0;function o(){var o,i,l=n,s=arguments.length;e:for(;l;){if(l.args.length===arguments.length){for(i=0;i\u003Cs;i++)if(l.args[i]!==arguments[i]){l=l.next;continue e}return l!==n&&(l===a&&(a=l.prev),l.prev.next=l.next,l.next&&(l.next.prev=l.prev),l.next=n,l.prev=null,n.prev=l,n=l),l.val}l=l.next}for(o=new Array(s),i=0;i\u003Cs;i++)o[i]=arguments[i];return l={args:o,val:e.apply(null,o)},n?(n.prev=l,l.next=n):a=l,r===t.maxSize?(a=a.prev).next=null:r++,n=l,l.val}return t=t||{},o.clear=function(){n=null,a=null,r=0},o}n.d(t,{Z:()=>a})}},t={};function n(a){var r=t[a];if(void 0!==r)return r.exports;var o=t[a]={id:a,exports:{}};return e[a](o,o.exports,n),o.exports}n.m=e,n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var a in t)n.o(t,a)&&!n.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:t[a]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.b=document.baseURI||self.location.href,n.nc=void 0,n(1383)})();\n\\ No newline at end of file\ndiff -ru \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fassets\u002Fjs\u002Fultp.js \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fassets\u002Fjs\u002Fultp.js\n--- \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fassets\u002Fjs\u002Fultp.js\t2026-02-23 09:39:46.000000000 +0000\n+++ \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fassets\u002Fjs\u002Fultp.js\t2026-02-25 11:53:26.000000000 +0000\n@@ -3,6 +3,36 @@\n \n \tconst isFront = $(\"body.postx-admin-page\").length == 0;\n \t\u002F\u002F *************************************\n+\t\u002F\u002F Nonce Generation for AJAX\n+\t\u002F\u002F *************************************\n+\tasync function getUltpNonce() {\n+\t\tconst nonce = sessionStorage.getItem(\"ultp_nonce\");\n+\t\tif (nonce) return nonce;\n+\n+\t\ttry {\n+\t\t\tconst response = await $.ajax({\n+\t\t\t\turl: ultp_data_frontend.ajax,\n+\t\t\t\ttype: \"POST\",\n+\t\t\t\tdata: { action: \"ultp_get_nonce\" },\n+\t\t\t});\n+\n+\t\t\tif (response?.success && response?.data?.nonce) {\n+\t\t\t\tsessionStorage.setItem(\"ultp_nonce\", response.data.nonce);\n+\t\t\t\treturn response.data.nonce;\n+\t\t\t}\n+\n+\t\t\tconsole.log(\"Failed to fetching nonce\");\n+\t\t\treturn null;\n+\t\t} catch (xhr) {\n+\t\t\tconsole.log(\n+\t\t\t\t\"Error occured.please try again\" + xhr.statusText + xhr.responseText,\n+\t\t\t);\n+\t\t\tconsole.log(\"Nonce Not Generating Properly\");\n+\t\t\treturn null;\n+\t\t}\n+\t}\n+\n+\t\u002F\u002F *************************************\n \t\u002F\u002F Social Share window\n \t\u002F\u002F *************************************\n \t$(\".ultp-post-share-item a\").each(function () {\n@@ -530,9 +560,9 @@\n \t\u002F\u002F *************************************\n \t\u002F\u002F Filter\n \t\u002F\u002F *************************************\n-\t$(document).on(\"click\", \".ultp-filter-wrap li a\", function (e) {\n+\t$(document).on(\"click\", \".ultp-filter-wrap li a\", async function (e) {\n \t\te.preventDefault();\n-\n+\t\tconst ultpNonce = await getUltpNonce();\n \t\tif ($(this).closest(\"li\").hasClass(\"filter-item\")) {\n \t\t\tlet that = $(this),\n \t\t\t\tparents = that.closest(\".ultp-filter-wrap\"),\n@@ -579,7 +609,7 @@\n \t\t\t\t\t\twidgetBlockId: widgetBlockId,\n \t\t\t\t\t\tultpUniqueIds: ultpUniqueIds || [],\n \t\t\t\t\t\tultpCurrentUniquePosts: ultpCurrentUniquePosts || [],\n-\t\t\t\t\t\twpnonce: ultp_data_frontend.security,\n+\t\t\t\t\t\twpnonce: ultpNonce,\n \t\t\t\t\t},\n \t\t\t\t\tbeforeSend: function () {\n \t\t\t\t\t\twrap.addClass(\"ultp-loading-active\");\n@@ -763,155 +793,161 @@\n \t\t);\n \t}\n \n-\t$(document).on(\"click\", \".ultp-pagination-ajax-action li\", function (e) {\n-\t\te.preventDefault();\n-\t\tlet that = $(this),\n-\t\t\tparents = that.closest(\".ultp-pagination-ajax-action\"),\n-\t\t\twrap = that.closest(\".ultp-block-wrapper\");\n+\t$(document).on(\n+\t\t\"click\",\n+\t\t\".ultp-pagination-ajax-action li\",\n+\t\tasync function (e) {\n+\t\t\te.preventDefault();\n+\t\t\tconst ultpNonce = await getUltpNonce();\n \n-\t\tconst blockid = parents.attr(\"data-blockid\");\n+\t\t\tlet that = $(this),\n+\t\t\t\tparents = that.closest(\".ultp-pagination-ajax-action\"),\n+\t\t\t\twrap = that.closest(\".ultp-block-wrapper\");\n \n-\t\t\u002F\u002F Pagination block integration\n-\t\tif (wrap.length \u003C 1) {\n-\t\t\tconst pagiFor = parents.data(\"for\");\n-\t\t\tif (pagiFor) {\n-\t\t\t\twrap = $(\".\" + pagiFor + \" .ultp-block-wrapper\");\n+\t\t\tconst blockid = parents.attr(\"data-blockid\");\n+\n+\t\t\t\u002F\u002F Pagination block integration\n+\t\t\tif (wrap.length \u003C 1) {\n+\t\t\t\tconst pagiFor = parents.data(\"for\");\n+\t\t\t\tif (pagiFor) {\n+\t\t\t\t\twrap = $(\".\" + pagiFor + \" .ultp-block-wrapper\");\n+\t\t\t\t}\n \t\t\t}\n-\t\t}\n \n-\t\tif (parents.is(\".ultp-disable-editor-click\")) {\n-\t\t\treturn;\n-\t\t}\n-\t\tlet pageNum = 1;\n-\t\tlet pages = parents.attr(\"data-pages\");\n+\t\t\tif (parents.is(\".ultp-disable-editor-click\")) {\n+\t\t\t\treturn;\n+\t\t\t}\n+\t\t\tlet pageNum = 1;\n+\t\t\tlet pages = parents.attr(\"data-pages\");\n \n-\t\tif (that.attr(\"data-current\")) {\n-\t\t\tpageNum = Number(that.attr(\"data-current\"));\n-\t\t\tparents\n-\t\t\t\t.attr(\"data-paged\", pageNum)\n-\t\t\t\t.find(\"li\")\n-\t\t\t\t.removeClass(\"pagination-active\");\n-\t\t\tserial(parents, pageNum, pages);\n-\t\t\tshowHide(parents, pageNum, pages);\n-\t\t} else {\n-\t\t\tif (that.hasClass(\"ultp-prev-page-numbers\")) {\n-\t\t\t\tpageNum = Number(parents.attr(\"data-paged\")) - 1;\n-\t\t\t\tparents\n-\t\t\t\t\t.attr(\"data-paged\", pageNum)\n-\t\t\t\t\t.find(\"li\")\n-\t\t\t\t\t.removeClass(\"pagination-active\");\n-\t\t\t\t\u002F\u002Fparents.find('li[data-current=\"'+pageNum+'\"]').addClass('pagination-active')\n-\t\t\t\tserial(parents, pageNum, pages);\n-\t\t\t\tshowHide(parents, pageNum, pages);\n-\t\t\t} else if (that.hasClass(\"ultp-next-page-numbers\")) {\n-\t\t\t\tpageNum = Number(parents.attr(\"data-paged\")) + 1;\n+\t\t\tif (that.attr(\"data-current\")) {\n+\t\t\t\tpageNum = Number(that.attr(\"data-current\"));\n \t\t\t\tparents\n \t\t\t\t\t.attr(\"data-paged\", pageNum)\n \t\t\t\t\t.find(\"li\")\n \t\t\t\t\t.removeClass(\"pagination-active\");\n-\t\t\t\t\u002F\u002Fparents.find('li[data-current=\"'+pageNum+'\"]').addClass('pagination-active')\n \t\t\t\tserial(parents, pageNum, pages);\n \t\t\t\tshowHide(parents, pageNum, pages);\n+\t\t\t} else {\n+\t\t\t\tif (that.hasClass(\"ultp-prev-page-numbers\")) {\n+\t\t\t\t\tpageNum = Number(parents.attr(\"data-paged\")) - 1;\n+\t\t\t\t\tparents\n+\t\t\t\t\t\t.attr(\"data-paged\", pageNum)\n+\t\t\t\t\t\t.find(\"li\")\n+\t\t\t\t\t\t.removeClass(\"pagination-active\");\n+\t\t\t\t\t\u002F\u002Fparents.find('li[data-current=\"'+pageNum+'\"]').addClass('pagination-active')\n+\t\t\t\t\tserial(parents, pageNum, pages);\n+\t\t\t\t\tshowHide(parents, pageNum, pages);\n+\t\t\t\t} else if (that.hasClass(\"ultp-next-page-numbers\")) {\n+\t\t\t\t\tpageNum = Number(parents.attr(\"data-paged\")) + 1;\n+\t\t\t\t\tparents\n+\t\t\t\t\t\t.attr(\"data-paged\", pageNum)\n+\t\t\t\t\t\t.find(\"li\")\n+\t\t\t\t\t\t.removeClass(\"pagination-active\");\n+\t\t\t\t\t\u002F\u002Fparents.find('li[data-current=\"'+pageNum+'\"]').addClass('pagination-active')\n+\t\t\t\t\tserial(parents, pageNum, pages);\n+\t\t\t\t\tshowHide(parents, pageNum, pages);\n+\t\t\t\t}\n \t\t\t}\n-\t\t}\n \n-\t\tlet post_ID =\n-\t\t\tparents.parents(\".ultp-shortcode\").length != 0 &&\n-\t\t\tparents.data(\"selfpostid\") == \"no\"\n-\t\t\t\t? parents.parents(\".ultp-shortcode\").data(\"postid\")\n-\t\t\t\t: parents.data(\"postid\");\n-\n-\t\tif (that.closest(\".ultp-builder-content\").length > 0) {\n-\t\t\tpost_ID = that.closest(\".ultp-builder-content\").data(\"postid\");\n-\t\t}\n-\t\tlet widgetBlockId = \"\";\n-\t\tlet widgetBlock = $(this).parents(\".widget_block:first\");\n-\t\tif (widgetBlock.length > 0) {\n-\t\t\tlet widget_items = widgetBlock.attr(\"id\").split(\"-\");\n-\t\t\twidgetBlockId = widget_items[widget_items.length - 1];\n-\t\t}\n-\n-\t\tconst ultpUniqueIds = sessionStorage.getItem(\"ultp_uniqueIds\");\n-\t\tconst ultpCurrentUniquePosts = JSON.stringify(\n-\t\t\twrap.find(\".ultp-current-unique-posts\").data(\"current-unique-posts\"),\n-\t\t);\n+\t\t\tlet post_ID =\n+\t\t\t\tparents.parents(\".ultp-shortcode\").length != 0 &&\n+\t\t\t\tparents.data(\"selfpostid\") == \"no\"\n+\t\t\t\t\t? parents.parents(\".ultp-shortcode\").data(\"postid\")\n+\t\t\t\t\t: parents.data(\"postid\");\n \n-\t\t\u002F\u002F Adv Filter Integration\n-\t\tconst filterValue = parents.data(\"filter-value\") || \"\";\n-\t\tconst advFilterData = {};\n+\t\t\tif (that.closest(\".ultp-builder-content\").length > 0) {\n+\t\t\t\tpost_ID = that.closest(\".ultp-builder-content\").data(\"postid\");\n+\t\t\t}\n+\t\t\tlet widgetBlockId = \"\";\n+\t\t\tlet widgetBlock = $(this).parents(\".widget_block:first\");\n+\t\t\tif (widgetBlock.length > 0) {\n+\t\t\t\tlet widget_items = widgetBlock.attr(\"id\").split(\"-\");\n+\t\t\t\twidgetBlockId = widget_items[widget_items.length - 1];\n+\t\t\t}\n \n-\t\tif (Array.isArray(filterValue) && filterValue.length > 0) {\n-\t\t\tadvFilterData.filterShow = true;\n-\t\t\tadvFilterData.checkFilter = true;\n-\t\t\tadvFilterData.isAdv = true;\n-\t\t\tadvFilterData.author = parents.data(\"filter-author\") || \"\";\n-\t\t\tadvFilterData.order = parents.data(\"filter-order\") || \"\";\n-\t\t\tadvFilterData.orderby = parents.data(\"filter-orderby\") || \"\";\n-\t\t\tadvFilterData.adv_sort = parents.data(\"filter-adv-sort\") || \"\";\n-\t\t}\n+\t\t\tconst ultpUniqueIds = sessionStorage.getItem(\"ultp_uniqueIds\");\n+\t\t\tconst ultpCurrentUniquePosts = JSON.stringify(\n+\t\t\t\twrap.find(\".ultp-current-unique-posts\").data(\"current-unique-posts\"),\n+\t\t\t);\n \n-\t\tif (pageNum) {\n-\t\t\tif (blockid) {\n-\t\t\t\tsetCurrPage(blockid, pageNum, getCurrPage(blockid));\n-\t\t\t}\n+\t\t\t\u002F\u002F Adv Filter Integration\n+\t\t\tconst filterValue = parents.data(\"filter-value\") || \"\";\n+\t\t\tconst advFilterData = {};\n+\n+\t\t\tif (Array.isArray(filterValue) && filterValue.length > 0) {\n+\t\t\t\tadvFilterData.filterShow = true;\n+\t\t\t\tadvFilterData.checkFilter = true;\n+\t\t\t\tadvFilterData.isAdv = true;\n+\t\t\t\tadvFilterData.author = parents.data(\"filter-author\") || \"\";\n+\t\t\t\tadvFilterData.order = parents.data(\"filter-order\") || \"\";\n+\t\t\t\tadvFilterData.orderby = parents.data(\"filter-orderby\") || \"\";\n+\t\t\t\tadvFilterData.adv_sort = parents.data(\"filter-adv-sort\") || \"\";\n+\t\t\t}\n+\n+\t\t\tif (pageNum) {\n+\t\t\t\tif (blockid) {\n+\t\t\t\t\tsetCurrPage(blockid, pageNum, getCurrPage(blockid));\n+\t\t\t\t}\n \n-\t\t\t$.ajax({\n-\t\t\t\turl: ultp_data_frontend.ajax,\n-\t\t\t\ttype: \"POST\",\n-\t\t\t\tdata: {\n-\t\t\t\t\texclude: parents.data(\"expost\"),\n-\t\t\t\t\taction: \"ultp_pagination\",\n-\t\t\t\t\tpaged: pageNum,\n-\t\t\t\t\tblockId: parents.data(\"blockid\"),\n-\t\t\t\t\tpostId: post_ID,\n-\t\t\t\t\tblockName: parents.data(\"blockname\"),\n-\t\t\t\t\tbuilder: parents.data(\"builder\"),\n-\t\t\t\t\twidgetBlockId: widgetBlockId,\n-\t\t\t\t\tultpUniqueIds: ultpUniqueIds || [],\n-\t\t\t\t\tultpCurrentUniquePosts: ultpCurrentUniquePosts || [],\n+\t\t\t\t$.ajax({\n+\t\t\t\t\turl: ultp_data_frontend.ajax,\n+\t\t\t\t\ttype: \"POST\",\n+\t\t\t\t\tdata: {\n+\t\t\t\t\t\texclude: parents.data(\"expost\"),\n+\t\t\t\t\t\taction: \"ultp_pagination\",\n+\t\t\t\t\t\tpaged: pageNum,\n+\t\t\t\t\t\tblockId: parents.data(\"blockid\"),\n+\t\t\t\t\t\tpostId: post_ID,\n+\t\t\t\t\t\tblockName: parents.data(\"blockname\"),\n+\t\t\t\t\t\tbuilder: parents.data(\"builder\"),\n+\t\t\t\t\t\twidgetBlockId: widgetBlockId,\n+\t\t\t\t\t\tultpUniqueIds: ultpUniqueIds || [],\n+\t\t\t\t\t\tultpCurrentUniquePosts: ultpCurrentUniquePosts || [],\n \n-\t\t\t\t\tfilterType: parents.data(\"filter-type\") || \"\",\n-\t\t\t\t\tfilterValue: filterValue,\n+\t\t\t\t\t\tfilterType: parents.data(\"filter-type\") || \"\",\n+\t\t\t\t\t\tfilterValue: filterValue,\n \n-\t\t\t\t\t...advFilterData,\n+\t\t\t\t\t\t...advFilterData,\n \n-\t\t\t\t\twpnonce: ultp_data_frontend.security,\n-\t\t\t\t},\n-\t\t\t\tbeforeSend: function () {\n-\t\t\t\t\twrap.addClass(\"ultp-loading-active\");\n-\t\t\t\t},\n-\t\t\t\tsuccess: function (data) {\n-\t\t\t\t\twrap.find(\".ultp-block-items-wrap\").html(data);\n-\t\t\t\t\tsetSession(\n-\t\t\t\t\t\t\"ultp_uniqueIds\",\n-\t\t\t\t\t\tJSON.stringify(\n-\t\t\t\t\t\t\twrap.find(\".ultp-current-unique-posts\").data(\"ultp-unique-ids\"),\n-\t\t\t\t\t\t),\n-\t\t\t\t\t);\n-\t\t\t\t\tif ($(window).scrollTop() > wrap.offset().top) {\n-\t\t\t\t\t\t$([document.documentElement, document.body]).animate(\n-\t\t\t\t\t\t\t{\n-\t\t\t\t\t\t\t\tscrollTop: wrap.offset().top - 80,\n-\t\t\t\t\t\t\t},\n-\t\t\t\t\t\t\t100,\n+\t\t\t\t\t\twpnonce: ultpNonce,\n+\t\t\t\t\t},\n+\t\t\t\t\tbeforeSend: function () {\n+\t\t\t\t\t\twrap.addClass(\"ultp-loading-active\");\n+\t\t\t\t\t},\n+\t\t\t\t\tsuccess: function (data) {\n+\t\t\t\t\t\twrap.find(\".ultp-block-items-wrap\").html(data);\n+\t\t\t\t\t\tsetSession(\n+\t\t\t\t\t\t\t\"ultp_uniqueIds\",\n+\t\t\t\t\t\t\tJSON.stringify(\n+\t\t\t\t\t\t\t\twrap.find(\".ultp-current-unique-posts\").data(\"ultp-unique-ids\"),\n+\t\t\t\t\t\t\t),\n \t\t\t\t\t\t);\n-\t\t\t\t\t}\n-\t\t\t\t},\n-\t\t\t\tcomplete: function () {\n-\t\t\t\t\twrap.removeClass(\"ultp-loading-active\");\n-\t\t\t\t\thandleDailyMotion();\n-\t\t\t\t},\n-\t\t\t\terror: function (xhr) {\n-\t\t\t\t\tconsole.log(\n-\t\t\t\t\t\t\"Error occured.please try again\" +\n-\t\t\t\t\t\t\txhr.statusText +\n-\t\t\t\t\t\t\txhr.responseText,\n-\t\t\t\t\t);\n-\t\t\t\t\twrap.removeClass(\"ultp-loading-active\");\n-\t\t\t\t},\n-\t\t\t});\n-\t\t}\n-\t});\n+\t\t\t\t\t\tif ($(window).scrollTop() > wrap.offset().top) {\n+\t\t\t\t\t\t\t$([document.documentElement, document.body]).animate(\n+\t\t\t\t\t\t\t\t{\n+\t\t\t\t\t\t\t\t\tscrollTop: wrap.offset().top - 80,\n+\t\t\t\t\t\t\t\t},\n+\t\t\t\t\t\t\t\t100,\n+\t\t\t\t\t\t\t);\n+\t\t\t\t\t\t}\n+\t\t\t\t\t},\n+\t\t\t\t\tcomplete: function () {\n+\t\t\t\t\t\twrap.removeClass(\"ultp-loading-active\");\n+\t\t\t\t\t\thandleDailyMotion();\n+\t\t\t\t\t},\n+\t\t\t\t\terror: function (xhr) {\n+\t\t\t\t\t\tconsole.log(\n+\t\t\t\t\t\t\t\"Error occured.please try again\" +\n+\t\t\t\t\t\t\t\txhr.statusText +\n+\t\t\t\t\t\t\t\txhr.responseText,\n+\t\t\t\t\t\t);\n+\t\t\t\t\t\twrap.removeClass(\"ultp-loading-active\");\n+\t\t\t\t\t},\n+\t\t\t\t});\n+\t\t\t}\n+\t\t},\n+\t);\n \n \t\u002F\u002F *************************************\n \t\u002F\u002F SlideShow\ndiff -ru \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fassets\u002Fjs\u002Fultp.min.js \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fassets\u002Fjs\u002Fultp.min.js\n--- \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fassets\u002Fjs\u002Fultp.min.js\t2026-02-23 09:39:46.000000000 +0000\n+++ \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fassets\u002Fjs\u002Fultp.min.js\t2026-02-25 11:53:26.000000000 +0000\n@@ -1 +1 @@\n-!function(t){\"use strict\";t.fn.UltpSlider=function(e){let i=t.extend({},t.fn.UltpSlider.defaults,e),s=t(this),o=!0,l=0;if(s.wrap(\"\u003Cdiv class='acmeticker-wrap'>\u003C\u002Fdiv>\"),s.parent().css({position:\"relative\"}),s.children().first().addClass(\"active\"),\"horizontal\"==i.type||\"vertical\"==i.type||\"typewriter\"==i.type){let e=\"\";\"typewriter\"==i.type&&(e=setInterval((function(){a()}),i.speed));let l=\"\";\"horizontal\"!=i.type&&\"vertical\"!=i.type||(l=setInterval((function(){a()}),i.speed)),t(i.controls.prev).on(\"click\",(function(){\"horizontal\"!=i.type&&\"vertical\"!=i.type||(clearInterval(l),n(\"prev\"),o&&(l=setInterval((function(){a()}),i.speed))),\"typewriter\"==i.type&&(clearInterval(e),n(\"prev\"),o&&(e=setInterval((function(){a()}),i.speed)))})),t(i.controls.next).on(\"click\",(function(){\"horizontal\"!=i.type&&\"vertical\"!=i.type||(clearInterval(l),n(\"next\"),o&&(l=setInterval((function(){a()}),i.speed))),\"typewriter\"==i.type&&(clearInterval(e),n(\"next\"),o&&(e=setInterval((function(){a()}),i.speed)))})),t(i.controls.toggle).on(\"click\",(function(){\"horizontal\"!=i.type&&\"vertical\"!=i.type||(o?(o=!1,clearInterval(l)):(o=!0,clearInterval(l),l=setInterval((function(){a()}),i.speed))),\"typewriter\"==i.type&&(o?(o=!1,clearInterval(e)):(o=!0,clearInterval(e),e=setInterval((function(){a()}),i.speed)))})),i.pauseOnHover&&(s.on(\"mouseenter\",(function(){\"typewriter\"===i.type&&clearInterval(e),\"horizontal\"!==i.type&&\"vertical\"!==i.type||clearInterval(l)})),s.on(\"mouseleave\",(function(){\"typewriter\"===i.type&&o&&(e=setInterval((function(){a()}),i.speed)),\"horizontal\"!==i.type&&\"vertical\"!==i.type||!o||(l=setInterval((function(){a()}),i.speed))})))}if(\"marquee\"==i.type){let e,n=i.speed,a=0,r=i.direction,d=s.outerWidth(),c=t(\".ultp-newsTicker-wrap\").outerWidth(),p=t(document).find(\"body\").hasClass(\"rtl\");\"right\"==r&&(e=c),\"left\"==r&&(e=s.outerWidth());let u=setInterval((function(){e\u003Ca&&\"left\"==r&&!p&&(a=-c),e\u003Ca&&\"right\"==r&&!p&&(a=-d),d\u003Ca&&\"right\"==r&&p&&(a=-c),c\u003Ca&&\"left\"==r&&p&&(a=-e),s.css(r,-a),a++}),n);t(i.controls.prev).on(\"click\",(function(){o?(-s.outerWidth()>a&&\"right\"==r&&!p&&(a=e),a\u003C-t(\".ultp-newsTicker-wrap\").outerWidth()&&\"left\"==r&&!p&&(a=e),-e>a&&\"right\"==r&&p&&(a=s.outerWidth()),-e>a&&\"left\"==r&&p&&(a=t(\".ultp-newsTicker-wrap\").outerWidth()),a-=250):(o=!0,u=setInterval((function(){e\u003Ca&&\"left\"==r&&!p&&(a=-c),-c>a&&\"left\"==r&&!p&&(a=e-100),e\u003Ca&&\"right\"==r&&!p&&(a=-d),d\u003Ca&&\"right\"==r&&p&&(a=-e),c\u003Ca&&\"left\"==r&&p&&(a=-e),s.css(r,-a),a++}),n))})),t(i.controls.prev).on(\"mousedown touchstart\",(function(e){l=setInterval((function(){p||\"right\"!=r?p&&\"left\"==r?(a\u003C-d&&(a=t(\".ultp-newsTicker-wrap\").outerWidth()-10),a-=30):p||\"left\"!=r?(a\u003C-t(\".ultp-newsTicker-wrap\").outerWidth()&&p&&\"right\"==r&&(a=d),a-=30):(a\u003C-t(\".ultp-newsTicker-wrap\").outerWidth()&&(a=d),a-=30):a>-d?a-=30:a=t(\".ultp-newsTicker-wrap\").outerWidth()-10}),100)})).bind(\"mouseup mouseleave touchend\",(function(){clearInterval(l)})),t(i.controls.next).on(\"click\",(function(){o?a+=250:(o=!0,u=setInterval((function(){e\u003Ca&&\"left\"==r&&!p&&(a=-c),e\u003Ca&&\"right\"==r&&!p&&(a=-d),c\u003Ca&&\"left\"==r&&p&&(a=-e),d\u003Ca&&\"right\"==r&&p&&(a=-e),s.css(r,-a),a++}),n))})),t(i.controls.next).on(\"mousedown touchstart\",(function(t){l=setInterval((function(){a+=80}),80)})).bind(\"mouseup mouseleave touchend\",(function(){clearInterval(l)})),t(i.controls.toggle).on(\"click\",(function(){o?(o=!1,clearInterval(u)):(o=!0,u=setInterval((function(){e\u003Ca&&\"left\"==r&&!p&&(a=-c),t(\".ultp-newsTicker-wrap\").outerWidth()\u003Ca&&\"left\"==r&&p&&(a=-(d+100)),e\u003Ca&&\"right\"==r&&!p&&(a=-d),d\u003Ca&&\"right\"==r&&p&&(a=-t(\".ultp-newsTicker-wrap\").outerWidth()),s.css(r,-a),a++}),n))})),i.pauseOnHover&&(s.on(\"mouseenter\",(function(){clearInterval(u)})),s.on(\"mouseleave\",(function(){o&&(u=setInterval((function(){e\u003Ca&&\"left\"===r&&!p&&(a=-t(\".ultp-newsTicker-wrap\").outerWidth()),t(\".ultp-newsTicker-wrap\").outerWidth()\u003Ca&&\"left\"===r&&p&&(a=-e),t(\".ultp-newsTicker-wrap\").outerWidth()\u003Ca&&\"right\"===r&&!p&&(a=-d),d\u003Ca&&\"right\"===r&&p&&(a=-e),s.css(r,-a),a++}),n))})))}function n(t){let e=s.find(\".active\").index();e\u003C0&&(e=0);let i=1;\"prev\"==t&&(s.children().eq(e).removeClass(\"active\"),s.children().eq(e-i).addClass(\"active\")),\"next\"==t&&(s.children().eq(e).removeClass(\"active\"),e==s.children().length-1&&(i=-(s.children().length-1)),s.children().eq(e+i).addClass(\"active\"))}function a(){let t=1,e=s.find(\".active\").index();e\u003C0&&(e=0),s.children().eq(e).removeClass(\"active\"),e==s.children().length-1&&(t=-(s.children().length-1)),s.children().eq(e+t).addClass(\"active\")}},t.fn.UltpSlider.defaults={type:\"horizontal\",autoplay:2e3,speed:50,direction:\"up\",pauseOnFocus:!0,pauseOnHover:!0,controls:{prev:\"\",next:\"\",toggle:\"\"}}}(jQuery),function(t){\"use strict\";let e=0!=t(\".wp-block-ultimate-post-gallery\").length;t(\".wp-block-ultimate-post-gallery\").each((function(){const e=t(this);!function(e){const i=e.data(\"lightbox\"),s=e.data(\"caption\"),o=e.find(\".ultp-gallery-item\"),l=e.data(\"indicators\"),n=e.find(\".ultp-gallery-lightbox\"),a=e.find(\".ultp-gallery-loadMore\"),r=e.find(\".ultp-gallery-lightbox__zoom-in\"),d=e.find(\".ultp-gallery-lightbox__zoom-out\"),c=e.find(\".ultp-gallery-lightbox__close\"),p=e.find(\".ultp-gallery-lightbox__control\"),u=e.find(\".ultp-gallery-lightbox__full-screen\"),h=e.find(\".ultp-gallery-lightbox__indicator-control\");let f=null,m=!0;t(document).on(\"click\",(function(e){const i=t(e.target),s=t(\".ultp-lightbox\");i.closest(\".ultp-gallery-lightbox__control, .ultp-lightbox__left-icon, .ultp-lightbox__right-icon, .ultp-lightbox__img-container, .ultp-lightbox-indicator__item-img\").length>0||m||(s.hide(),p.hide(),m=!0),s.is(\":visible\")&&(m=!1)})),c.on(\"click\",(function(){t(this).parent().parent(\".ultp-gallery-wrapper\").find(\".ultp-lightbox\").hide(),p.hide(),document.exitFullscreen?document.exitFullscreen().catch((t=>{console.error(\"Failed to exit fullscreen:\",t)})):document.webkitExitFullscreen?document.webkitExitFullscreen():document.msExitFullscreen&&document.msExitFullscreen(),f=null}));let g=1;r.on(\"click\",(function(){g+=.5;t(this).closest(\".ultp-gallery-wrapper\").find(\".ultp-lightbox__inside img\").css({transform:`scale(${g})`}),g>1?(t(\".ultp-lightbox__caption\").slideUp(300),t(\".ultp-lightbox-indicator\").slideUp(300)):t(\".ultp-lightbox__caption\").is(\":visible\")||t(\".ultp-lightbox__caption\").fadeIn(300)})),d.on(\"click\",(function(){g-=.5;t(this).closest(\".ultp-gallery-wrapper\").find(\".ultp-lightbox__inside img\").css({transform:`scale(${g})`}),t(\".ultp-lightbox__caption\").is(\":visible\")||1!=g||t(\".ultp-lightbox__caption\").fadeIn(300),t(\".ultp-lightbox-indicator\").is(\":visible\")||1!=g||t(\".ultp-lightbox-indicator\").fadeIn(300)})),h.off(\"click\").on(\"click\",(function(e){e.stopPropagation();t(this).closest(\".ultp-gallery-wrapper\").find(\".ultp-lightbox-indicator\").slideToggle(300)})),u.on(\"click\",(function(){const t=document.documentElement;document.fullscreenElement||document.webkitFullscreenElement||document.msFullscreenElement?document.exitFullscreen?document.exitFullscreen().catch((t=>{console.error(\"Failed to exit fullscreen:\",t)})):document.webkitExitFullscreen?document.webkitExitFullscreen():document.msExitFullscreen&&document.msExitFullscreen():t.webkitRequestFullscreen?t.webkitRequestFullscreen():t.msRequestFullscreen&&t.msRequestFullscreen()})),i&&n.each((function(){t(this).off().on(\"click\",(function(e){e.stopPropagation();const i=t(this);m=!1;const o=i.data(\"id\"),n=i.data(\"index\"),a=i.data(\"img\"),r=i.closest(\".ultp-gallery-item\").data(\"caption\"),d=i.parent().parent();w(i,o,n,a,r,d,s,l)}))})),t(document).on(\"click\",\".ultp-lightbox__right-icon, .ultp-lightbox__left-icon\",(function(){const e=t(this),i=e.hasClass(\"ultp-lightbox__right-icon\"),s=e.closest(\".ultp-lightbox\"),o=e.closest(\".ultp-gallery-container\"),l=s.find(\".ultp-lightbox-indicator\"),n=s.find(\".ultp-lightbox__img\"),a=s.find(\".ultp-lightbox__caption\"),r=o.children(),d=s.data(\"index\");null==f&&(f=d),f=i?(f+1)%r.length:(f-1+r.length)%r.length;const c=r.eq(f),p=c.find(\".ultp-gallery-media img\").attr(\"src\"),u=c.data(\"id\"),h=c.data(\"caption\");n.fadeOut(200,(function(){n.attr(\"src\",p).fadeIn(200)})),a.fadeOut(200,(function(){a.text(h).fadeIn(200)}));const m=l.children().eq(f);m.addClass(\"lightbox-active\").siblings().removeClass(\"lightbox-active\"),m.data(\"id\")!==u&&m.removeClass(\"lightbox-active\")})),t(document).on(\"click\",\".ultp-lightbox-indicator__item\",(function(){const e=t(this),i=e.find(\"img\").attr(\"src\"),s=e.closest(\".ultp-lightbox\").find(\".ultp-lightbox__img\");f=e.data(\"index\"),s.fadeOut(200,(function(){s.attr(\"src\",i).fadeIn(200)})),e.addClass(\"lightbox-active\").siblings().removeClass(\"lightbox-active\")})),i&&!(n.length>0)&&o.off().on(\"click\",(function(e){const i=t(e.target).closest(\"svg\").parent().is(\".ultp-gallery-action a\");if(!o.find(\".ultp-lightbox\").is(\":visible\")&&!i){const e=t(this);f=e.data(\"index\");const i=e.data(\"id\"),o=e.data(\"caption\"),n=e.data(\"index\"),a=e.find(\".ultp-gallery-media img\").attr(\"src\"),r=e.find(\".ultp-gallery-action-container\");w(e,i,n,a,o,r,s,l)}}));const v=a[0]?Number(getComputedStyle(a[0]).getPropertyValue(\"--ultp-gallery-count\").trim()):\"\";let b=v;a?.length>0&&o.each((function(e){v\u003Ce+1&&(t(this).find(\"img\").attr({width:t(this).find(\"img\").width(),height:t(this).find(\"img\").height()}),t(this).css({display:\"none\"}))}));o.length\u003C=b&&a.css({display:\"none\"});function w(e,i,s,l,n,a,r,d){p.css({display:\"flex\"}),t(\".ultp-lightbox\").remove();const c=o.map((function(e){const s=t(this).find(\"img\").attr(\"src\"),o=t(this).data(\"caption\");return i==t(this).data(\"id\")&&(f=e),console.log(s,\"imgSrc\"),`\u003Cdiv  data-index=${e} class=\"${i==t(this).data(\"id\")?\"ultp-lightbox-indicator__item lightbox-active\":\"ultp-lightbox-indicator__item\"}\" data-id=${t(this).data(\"id\")} data-caption=${o}>\u003Cimg class=\"ultp-lightbox-indicator__item-img\" src=\"${s}\" \u002F>\u003C\u002Fdiv>`})).get().join(\"\"),u=`\u003Cdiv class=\"ultp-lightbox\" data-id=${i} data-index=${s}>\\n                        \u003Cdiv class=\"ultp-lightbox__container\">\\n                            \u003Cdiv class=\"ultp-lightbox__inside\">\\n                                \u003Cdiv class=\"ultp-lightbox__left-icon\">\u003Csvg  fill=\"currentColor\"xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"0 0 49.16 37.25\">\u003Cpath  stroke-miterlimit=\"10\" d=\"M18.157 36.154 2.183 20.179l-.053-.053-1.423-1.423 17.45-17.449a2.05 2.05 0 0 1 2.9 2.9l-12.503 12.5h38.053a2.05 2.05 0 1 1 0 4.1H8.555l12.5 12.5a2.05 2.05 0 1 1-2.9 2.9Z\">\u003C\u002Fpath>\u003C\u002Fsvg>\u003C\u002Fdiv>\\n                                \u003Cdiv class=\"ultp-lightbox__img-container\">\\n                                    \u003Cimg class=\"ultp-lightbox__img\" src=\"${l}\" \u002F>\\n                                    ${r?`\u003Cspan class=\"ultp-lightbox__caption\">${n}\u003C\u002Fspan>`:\"\"}\\n                                \u003C\u002Fdiv>\\n                                \u003Cdiv class=\"ultp-lightbox__right-icon\">\u003Csvg fill=\"currentColor\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"0 0 49.16 37.25\">\u003Cpath  stroke-miterlimit=\"10\" d=\"M28.1 36.154a2.048 2.048 0 0 1 0-2.9l12.5-12.5H2.55a2.05 2.05 0 1 1 0-4.1H40.6l-12.5-12.5a2.05 2.05 0 1 1 2.9-2.9l17.45 17.448L31 36.154a2.047 2.047 0 0 1-2.9 0Z\">\u003C\u002Fpath>\u003C\u002Fsvg>\u003C\u002Fdiv>\\n                            \u003C\u002Fdiv>\\n                            ${d?`\u003Cdiv class=\"ultp-lightbox-indicator\">${c}\u003C\u002Fdiv>`:\"\"}\\n                        \u003C\u002Fdiv>\\n                    \u003C\u002Fdiv>`;a.append(u)}}(e),i(e)}));function i(e){const i=e;let s=i.find(\".ultp-gallery-loader\"),o=i.find(\".ultp-no-gallery-message\");const l=i.find(\".ultp-gallery-container\"),n=i.find(\".ultp-gallery-filter__item\"),a=i.find(\".ultp-gallery-loadMore\"),r=i.find(\".ultp-gallery-container.ultp-gallery-tiled\"),d=i.find(\".ultp-gallery-container.ultp-gallery-masonry\"),c=l[0]?Number(getComputedStyle(l[0]).getPropertyValue(\"--ultp-gallery-columns\").trim()):3,p=l[0]?Number(getComputedStyle(l[0]).getPropertyValue(\"--ultp-gallery-gap\").trim()):10,u=l.find(\".ultp-gallery-item\"),h=a[0]?Number(getComputedStyle(a[0]).getPropertyValue(\"--ultp-gallery-count\").trim()):0;let f=h;if(0===s.length&&(d?.length||r?.length)&&(l.css({height:\"250px\",overflow:\"hidden\"}),s=t('\u003Cdiv class=\"ultp-gallery-loader\" style=\"display:none;position:absolute;top:0;left:0;right:0;bottom:0;background:rgb(255 255 255 \u002F 92%);z-index:9; display: flex; align-items:center;justify-content:center;\">\\n                    \u003Cdiv class=\"spinner\" style=\"border: 4px solid #f3f3f3;border-top: 4px solid #037FFF;border-radius: 50%;width: 30px;height: 30px;animation: spin 0.8s linear infinite;\">\u003C\u002Fdiv>\\n                            \u003C\u002Fdiv>'),i.css(\"position\",\"relative\"),l.append(s)),!document.getElementById(\"ultp-spinner-style\")){const y='\u003Cstyle id=\"ultp-spinner-style\">\\n                    @keyframes spin {\\n                        0% { transform: rotate(0deg); }\\n                        100% { transform: rotate(360deg); }\\n                    }\\n                \u003C\u002Fstyle>';t(\"head\").append(y)}s.fadeIn(150),0===o.length&&(o=t('\u003Cdiv class=\"ultp-no-gallery-message\">No gallery item found\u003C\u002Fdiv>'),l.after(o));let m=function(){};function g(){if(0===r.length)return;const e=r.find(\".ultp-gallery-item:visible\");r.css(\"visibility\",\"hidden\"),e.each((function(){t(this).css({top:\"\",left:\"\",width:\"\",height:\"\",position:\"\"})})),requestAnimationFrame((()=>{m(e),r.css(\"visibility\",\"visible\")}))}function v(){if(0===d.length)return;const e=(d.width()-(c-1)*p)\u002Fc,i=d.find(\".ultp-gallery-item:visible\");let s=new Array(c).fill(0);i.each((function(){const i=t(this);i.css({width:e+\"px\",position:\"absolute\"});const o=s.indexOf(Math.min(...s)),l=s[o],n=o*(e+p);i.stop().animate({top:`${l}px`,left:`${n}px`},300),s[o]+=i.outerHeight(!0)+p})),d.css(\"height\",Math.max(...s)+\"px\")}function b(e,i){let s=0,l=0;return u.each((function(){const o=t(this),n=o.data(\"tag\")||\"\";\"All\"===e||n.includes(e)?(l++,s\u003Ci?(o.css({display:\"block\"}),s++):o.css({display:\"none\"})):o.css({display:\"none\"})})),o.toggle(0===l),{visibleCount:s,totalMatch:l}}function w(t){s.fadeIn(150),setTimeout((()=>{t(),s.fadeOut(150)}),400)}if(n.on(\"click\",(function(){const e=t(this),i=e.text();e.siblings().removeClass(\"active-gallery-filter\"),e.addClass(\"active-gallery-filter\"),f=h,w((()=>{const{visibleCount:t,totalMatch:e}=b(i,f);a.css({display:t\u003Ce?\"block\":\"none\"}),g(),v()}))})),a.on(\"click\",(function(e){e.preventDefault();const s=i.find(\".active-gallery-filter\").text()||\"All\";let l=0,n=0;u.each((function(){const e=t(this),i=e.data(\"tag\")||\"\";(\"All\"===s||i.includes(s))&&(n++,e.is(\":visible\")&&l++)}));const r=l%c;let d=0!==r?c-r:c;f=Math.min(l+d,n),w((()=>{let e=0;u.each((function(){const i=t(this),o=i.data(\"tag\")||\"\";\"All\"===s||o.includes(s)?(i.css({display:e\u003Cf?\"block\":\"none\"}),e++):i.css({display:\"none\"})})),f>=n&&a.css({display:\"none\"}),o.toggle(0===n),g(),v()}))})),r.length){const k=Number(getComputedStyle(l[0]).getPropertyValue(\"--ultp-gallery-height\").trim())||300;function x(t){const e=t[0];return(e.naturalWidth||e.width||1)\u002F(e.naturalHeight||e.height||1)}m=function(e){const i=r,s=i.width()||i.closest(\".ultp-tab-content\").width();let o=0;const l=[];let n=[],a=0;e.each((function(){const e=t(this),i=x(e.find(\"img\"));n.push({$item:e,ratio:i}),a+=i,n.length===c&&(l.push({cells:n,ratioSum:a}),n=[],a=0)})),n.length&&l.push({cells:n,ratioSum:a}),l.forEach((t=>{const e=p*(t.cells.length-1),i=s-e;let l=0;t.cells.forEach((({$item:e,ratio:s},n)=>{const a=i*(s\u002Ft.ratioSum);e.css({position:\"absolute\",top:o,left:l,width:a,height:k}),l+=a+p})),o+=k+p})),i.height(o-p)}}setTimeout((()=>{const t=i.find(\".ultp-gallery-filter__item.active-gallery-filter\").text()||\"All\",{visibleCount:e,totalMatch:l}=b(t,f);a.css({display:e\u003Cl?\"block\":\"none\"}),o.toggle(0===l),g(),v(),s.fadeOut(50)}),500)}0==t(\"body.postx-admin-page\").length&&e&&t(window).on(\"load resize\",(function(){t(\".wp-block-ultimate-post-gallery\").each((function(){i(t(this))}))}))}(jQuery),function(t){function e(){const e=t=>t.closest(\".wp-block-ultimate-post-tabs\");t(\".wp-block-ultimate-post-tabs\").each((function(){let i=t(this);const s=i.data(\"responsive\"),o=i.find(\".ultp-tabs-nav\").first(),l=i.find(\".ultp-tab-content\").first().children(\".wp-block-ultimate-post-tab-item\"),n=i.children().children(\".ultp-nav-right\").length>0||i.children().children(\".ultp-nav-left\").length>0;i.parent(\".wp-block-ultimate-post-tab-item\").length>0&&i.closest(\".ultp-tab-content\").css({overflow:\"hidden\"}),\"slider\"==s&&i.width()\u003C600&&i.find(\".ultp-tabs-nav\").css({flexWrap:\"nowrap\"}),i.width()\u003C600&&\"accordion\"==i.data(\"responsive\")&&!i.hasClass(\".ultp-tab-accordion-active\")&&(i.addClass(\"ultp-tab-accordion-active\"),i.find(\".ultp-tabs-nav-element\").each((function(e){t(this).data(\"order\")&&t(this).css({order:2*(e+1)-1})})),l.each((function(e){t(this).css({order:2*(e+1)})}))),i.hasClass(\"ultp-tab-accordion-active\")&&(o.css(\"display\",\"contents\").parent().css(\"display\",\"contents\"),l.addClass(\"ultp-tab-content\").parent().css(\"display\",\"contents\")),l.each((function(i){e(t(this)).data(\"activetab\")==t(this).data(\"tabindex\")&&t(this).addClass(\"active\")}));const a=i.find(\".ultp-tabs-nav-wrapper\"),r=i.find(\".ultp-tab-left-arrow\").first(),d=i.find(\".ultp-tab-right-arrow\").first(),c=\"autoplay\"==i.data(\"tabevent\")?\"click\":i.data(\"tabevent\");let p=\"slider\"==s||i.find(\".ultp-tab-wrapper\").hasClass(\"ultp-nav-left\")||i.find(\".ultp-tab-wrapper\").hasClass(\"ultp-nav-right\"),u=n?o.height():o.width(),h=u\u002Fo?.children().length,f=n?a.height():a.width(),m=0,g=h;function v(){0==m&&d.addClass(\"ultp-arrow-active\"),d.off(\"click\").on(\"click\",(function(e){e.stopPropagation();const i=n?t(this).closest(\".ultp-tabs-nav-wrapper\").height():t(this).closest(\".ultp-tabs-nav-wrapper\").width(),s=n?t(this).siblings().find(\".ultp-tabs-nav\").height():t(this).siblings().find(\".ultp-tabs-nav\").width(),o=s-i,l=s\u002Ft(this).siblings().find(\".ultp-tabs-nav\")?.children().length;o>m&&o-m>l&&(m+=l),o-m\u003Cl+1&&(m+=o-m,t(this).removeClass(\"ultp-arrow-active\")),m>0&&t(this).siblings(\".ultp-tab-left-arrow\").addClass(\"ultp-arrow-active\");let a=n?`translate(0px, -${m}px)`:`translate(-${m}px, 0px)`;t(this).siblings().find(\".ultp-tabs-nav\").css({transform:a})})),r.off(\"click\").on(\"click\",(function(e){const i=(n?t(this).siblings().find(\".ultp-tabs-nav\").height():t(this).siblings().find(\".ultp-tabs-nav\").width())\u002Ft(this).siblings().find(\".ultp-tabs-nav\")?.children().length;m>i?m-=i:m=0,m>0?t(this).siblings(\".ultp-tab-right-arrow\").addClass(\"ultp-arrow-active\"):t(this).removeClass(\"ultp-arrow-active\");let s=n?`translate(0px, -${m}px)`:`translate(-${m}px, 0px)`;t(this).siblings().find(\".ultp-tabs-nav\").css({transform:s})}))}function b(e,i,o){if(!(e.parent(\".wp-block-ultimate-post-tab-item\").length>0)||e.parent(\".wp-block-ultimate-post-tab-item\").hasClass(\"active\")){u=n?o.height():o.width(),h=u\u002Fo?.children().length,f=n?a.height():a.width();const e=o.find(\".ultp-tabs-nav-element\");if(g+=h,k*h\u003Cf&&(o.css({transform:\"translate(0px, 0px)\"}),\"slider\"==s&&(d.addClass(\"ultp-arrow-active\"),r.removeClass(\"ultp-arrow-active\"))),k*h>f){p&&(r.addClass(\"ultp-arrow-active\"),d.addClass(\"ultp-arrow-active\"));let t=n?`translate(0px, ${f-k*h}px)`:`translate(${f-k*h}px, 0px)`;o.css({transform:t})}const l=e.parent().children().length;e.each((function(e){w&&t(this).removeClass(\"tab-progressbar-active\"),e+1==k?(t(this).addClass(\"ultp-tab-active\"),w&&t(this).addClass(\"tab-progressbar-active\")):t(this).removeClass(\"ultp-tab-active\")})),i.each((function(e){t(this).each((function(){e+1==k?t(this).addClass(\"active\"):t(this).removeClass(\"active\")}))})),l==k&&(d.removeClass(\"ultp-arrow-active\"),k=0),k++}}t(\".ultp-tabs-nav-element\").off(c).on(c,(function(i){i.stopPropagation;const s=t(this);s.addClass(\"ultp-tab-active\").siblings().removeClass(\"ultp-tab-active\"),e(t(this)).find(\".wp-block-ultimate-post-tab-item\").each((function(){t(this).removeClass(\"active\"),t(this).data(\"tabindex\")==s.data(\"tabindex\")&&t(this).addClass(\"active\")})),u=n?o.height():o.width(),h=u\u002Fo?.children().length,f=n?a.height():a.width(),u>f&&p&&v()})),u>f&&p&&v();const w=i.data(\"progressbar\"),y=1e3*t(this).data(\"duration\");let k=e(t(this)).data(\"activetab\")-1||1;if(\"autoplay\"==t(this).data(\"tabevent\")){let t=setInterval((()=>b(i,l,o)),y);i.on(\"mouseleave\",(function(){t=setInterval((()=>b(i,l,o)),y)})),i.on(\"mouseenter\",(function(){clearInterval(t)}))}}))}e(),t(window).on(\"resize\",(function(){e()}))}(jQuery),function(t){t(\".wp-block-ultimate-post-advanced-search\")?.length&&function(){let e=1;t(document).on(\"click\",\".ultp-search-clear\",(function(){e=1;const i=t(this).data(\"blockid\");t(this).parents(\".ultp-search-inputwrap\").find(\".ultp-searchres-input\").val(\"\"),t(this).removeClass(\"active\"),t(`.ultp-block-${i}`).find(\".ultp-result-data\").html(\"\"),t(`.ultp-block-${i}`).find(\".ultp-search-noresult, .ultp-viewall-results, .ultp-result-loader\").removeClass(\"active\")})),t(document).on(\"click\",\".ultp-popupclose-icon\",(function(){t(this).parents(\".result-data\").removeClass(\"popup-active\")})),t(document).on(\"click\",\".ultp-searchpopup-icon\",(function(){const e=t(this).parents(\".ultp-search-frontend\"),i=e.data(\"blockid\");s(e,!t(`.result-data.ultp-block-${i}`).length),t(`.result-data.ultp-block-${i}`).toggleClass(\"popup-active\")})),t(\".ultp-searchres-input\").val().length>2&&t(\".ultp-searchres-input\").closest(\".ultp-search-inputwrap\").find(\".ultp-search-clear\").addClass(\"active\");t(document).on(\"input\",\".ultp-searchres-input\",(function(e){i(t(this),e.target.value)}));const i=(i,o,l=\"\",n=!0)=>{l=l||i.parents(\".ultp-search-inputwrap\").find(\".ultp-search-clear\").data(\"blockid\");const a=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${l}`).find(\".ultp-search-frontend\"),r=t(`.result-data.ultp-block-${l}`);s(a,!r.length),o.length>2?a.data(\"ajax\")&&(r.find(\".ultp-search-result\").addClass(\"ultp-search-show\"),r.find(\".ultp-result-loader\").addClass(\"active\"),r.addClass(\"popup-active\"),wp.apiFetch({path:\"\u002Fultp\u002Fultp_search_data\",method:\"POST\",data:{searchText:o,date:parseInt(a.data(\"date\")),image:parseInt(a.data(\"image\")),author:parseInt(a.data(\"author\")),excerpt:parseInt(a.data(\"excerpt\")),category:parseInt(a.data(\"catenable\")),excerptLimit:parseInt(a.data(\"excerptlimit\")),postPerPage:a.data(\"allresult\")?a.data(\"postno\"):10,exclude:\"string\"!=typeof a.data(\"searchposttype\")&&a.data(\"searchposttype\").length>0&&a.data(\"searchposttype\"),paged:e,wpnonce:ultp_data_frontend.security}}).then((e=>{if(e.post_data){n?(r.find(\".ultp-search-result\").addClass(\"ultp-search-show\"),r.find(\".ultp-result-data\").addClass(\"ultp-result-show\"),r.find(\".ultp-result-data\").html(e.post_data)):(r.find(\".ultp-search-result\").addClass(\"ultp-search-show\"),r.find(\".ultp-result-data\").addClass(\"ultp-result-show\"),r.find(\".ultp-result-data\").append(e.post_data).fadeIn(500,(function(){t(this).animate({scrollTop:t(this).prop(\"scrollHeight\")},400)}))),r.find(\".ultp-search-noresult, .ultp-result-loader\").removeClass(\"active\");const i=r.find(\".ultp-result-data .ultp-search-result__item\").length;r.find(\".ultp-viewall-results\").addClass(\"active\").find(\"span\").text(`(${e.post_count-i})`)}else r.find(\".ultp-result-data\").removeClass(\"ultp-result-show\"),r.find(\".ultp-result-data\").html(\"\"),r.find(\".ultp-search-noresult\").addClass(\"active\"),r.find(\".ultp-result-loader, .ultp-viewall-results\").removeClass(\"active\");if(a.data(\"allresult\")){const t=r.find(\".ultp-result-data .ultp-search-result__item\").length;e.post_count&&e.post_count>t?r.find(\".ultp-viewall-results\").addClass(\"active\").find(\"span\").text(`(${e.post_count-t})`):r.find(\".ultp-viewall-results\").removeClass(\"active\")}}))):(r.find(\".ultp-search-result\").removeClass(\"ultp-search-show\"),r.find(\".ultp-result-data\").removeClass(\"ultp-result-show\"),r.find(\".ultp-search-noresult\").removeClass(\"active\")),o.length\u003C3?(e=1,r.find(\".ultp-result-data\").html(\"\"),r.find(\".ultp-viewall-results\").removeClass(\"active\"),r.find(\".ultp-search-noresult\").removeClass(\"active\"),a.find(\".ultp-search-clear\").removeClass(\"active\"),t(`.result-data.ultp-block-${l}`).find(\".ultp-search-clear\").removeClass(\"active\")):(a.find(\".ultp-search-clear\").addClass(\"active\"),t(`.result-data.ultp-block-${l}`).find(\".ultp-search-clear\").addClass(\"active\"))};t(document).on(\"click\",\".ultp-viewall-results\",(function(s){e++;const o=t(this).closest(\".result-data\").data(\"blockid\");i(t(this),t(`.ultp-block-${o} .ultp-searchres-input`).val(),o,!1)})),t(\".wp-block-ultimate-post-advanced-search\").length>0&&t(document).on(\"click\",(function(e){t(e.target).closest(\".ultp-searchpopup-icon\").length||t(e.target).closest(\".ultp-searchres-input\").length||t(e.target).closest(\".result-data.popup-active\").length||t(\".result-data\").removeClass(\"popup-active\"),t(e.target).closest(\".ultp-search-frontend\").length||t(e.target).closest(\".result-data.popup-active\").length||t(\".result-data\").removeClass(\"popup-active\")}));t(document).on(\"keyup\",\".ultp-searchres-input\",(function(e){const i=t(this).closest(\".ultp-search-inputwrap\").find(\".ultp-search-clear\").data(\"blockid\"),s=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(\".ultp-search-frontend\").data(\"gosearch\");let o=\"_self\";if(t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(\".ultp-search-frontend\").data(\"enablenewtab\")&&(o=\"_blank\"),s&&\"Enter\"==e.key&&t(this).val().length>2){const e=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(\".ultp-search-frontend\");let s=\"string\"!=typeof e.data(\"searchposttype\")&&e.data(\"searchposttype\")?.length>0&&e?.data(\"searchposttype\");s=s.length?`&ultp_exclude=${JSON.stringify(s.map((t=>t.value)))}`:\"\",window.open(`${ultp_data_frontend.home_url}\u002F?s=${t(this).val()}${s}`,o)}})),t(document).on(\"click\",\".ultp-search-button\",(function(e){const i=t(this).closest(\".ultp-searchform-content\").find(\".ultp-search-clear\").data(\"blockid\"),s=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(\".ultp-search-frontend\").data(\"gosearch\");let o=\"_self\";if(t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(\".ultp-search-frontend\").data(\"enablenewtab\")&&(o=\"_blank\"),s){const e=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(\".ultp-search-frontend\");let s=\"string\"!=typeof e.data(\"searchposttype\")&&e.data(\"searchposttype\")?.length>0&&e?.data(\"searchposttype\");s=s.length?`&ultp_exclude=${JSON.stringify(s.map((t=>t.value)))}`:\"\",window.open(`${ultp_data_frontend.home_url}\u002F?s=${t(this).closest(\".ultp-searchform-content\").find(\".ultp-searchres-input\").val()}${s}`,o)}else t(`.result-data.ultp-block-${i}`).addClass(\"popup-active\")})),t(document).on(\"click\",\".ultp-searchres-input\",(function(e){const i=t(this).closest(\".ultp-searchform-content\").find(\".ultp-search-clear\").data(\"blockid\");t(\".result-data\").removeClass(\"popup-active\"),t(`.result-data.ultp-block-${i}`).addClass(\"popup-active\")})),t(window).on(\"resize\",(function(){t(\".ultp-search-result\").length>0&&t(\".ultp-search-frontend\").each((function(e){s(t(e))}))}));const s=(e,i=!1)=>{const s=e.data(\"blockid\"),o=e.data(\"popuptype\"),l=e.data(\"popupposition\");if(i){const i=e.data(\"allresult\"),n=`\u003Cdiv class=\"ultp-search-result\" data-image=${e.data(\"image\")||!1} data-author=${e.data(\"author\")||!1} data-date=${e.data(\"date\")||!1} data-excerpt=${e.data(\"excerpt\")||!1} data-excerptlimit=${e.data(\"excerptlimit\")} data-allresult=${i||!1} data-catenable=${e.data(\"catenable\")||!1} data-postno=${e.data(\"postno\")||!1} data-gosearch=${e.data(\"gosearch\")||!1} data-popupposition=${l||!1}>\\n                    \u003Cdiv class=\"ultp-result-data\">\u003C\u002Fdiv>\\n                    \u003Cdiv class=\"ultp-search-result__item ultp-search-noresult\">${e.data(\"noresultext\")}\u003C\u002Fdiv>\\n                    \u003Cdiv class=\"ultp-search-result__item ultp-result-loader\">\u003C\u002Fdiv>\\n                    ${i?`\u003Cdiv class=\"ultp-viewall-results ultp-search-result__item\">${e.data(\"viewmoretext\")}\u003Cspan>\u003C\u002Fspan>\u003C\u002Fdiv>\u003Cdiv class=\"ultp-search-result__item ultp-viewmore-loader\">\u003C\u002Fdiv>`:\"\"}\\n                    \u003C\u002Fdiv>`;if(o){const i=t(`.ultp-block-${s}`).find(\".ultp-search-canvas\").detach();t(\"body\").append(`\u003Cdiv class=\"result-data ultp-block-${s} ultp-search-animation-${o}\" data-blockid=${s}>\u003Cdiv class=\"ultp-search-canvas\">${i.html()+(e.data(\"ajax\")?n:\"\")}\u003C\u002Fdiv>\u003C\u002Fdiv>`)}else t(\"body\").append(`\u003Cdiv class=\"result-data ultp-block-${s}\" data-blockid=${s}>${n}\u003C\u002Fdiv>`)}let n=\"\";if(!o){n=e.find(\".ultp-searchform-content\");const i=n.offset();return t(`body > .ultp-block-${s}`).css({width:`${n.width()}px`,top:`${i?.top+n.height()}px`,left:`${i?.left}px`})}if(\"popup\"==o){n=e.find(\".ultp-searchpopup-icon\");const i=n.offset(),o=\"right\"==l?i?.left>t(`body > .ultp-block-${s}`).width():t(document).width()-i?.left>t(`body > .ultp-block-${s}`).width();let a=\"\",r=\"\";return\"right\"==l?(a=o?t(document).width()-i?.left-n.outerWidth()+\"px\":\"unset\",r=o?\"auto\":i?.left+(\"right\"==l?10:0)+\"px\"):(a=o?\"unset\":t(document).width()-i?.left-n.outerWidth()+\"px\",r=o?i?.left+(\"right\"==l?10:0)+\"px\":\"auto\"),t(`body > .ultp-block-${s}`).css({top:`${i?.top+n.outerHeight()}px`,right:a,left:r})}}}()}(jQuery),function(t){function e(e){if(t(\".editor-styles-wrapper\")?.length)return;const i=t(\".wp-block-ultimate-post-menu-item.hasMegaMenuChild > .ultp-menu-item-wrapper > .ultp-menu-item-content\");i.length>0&&i.each((function(){if(t(this).hasClass(\"ultpMegaWindowWidth\")){const e=t(\"body\")?.width()||1200,i=t(\"body\")?.offset()?.left||0;t(this)?.offset();t(this).find(\" > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper\").css({maxWidth:`${e}px`,boxSizing:\"border-box\"});const s=t(this).siblings(\".ultp-menu-item-label-container\")?.offset()?.left||0;t(this).css({left:i-s+\"px\"})}else if(t(this).hasClass(\"ultpMegaMenuWidth\")){const e=t(this).closest(\".wp-block-ultimate-post-menu\")?.width()||800,i=t(this).closest(\".wp-block-ultimate-post-menu\")?.offset()?.left||0,s=t(this)?.offset()?.left||0;t(this).find(\" > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper\").css({maxWidth:`${e}px`,boxSizing:\"border-box\"}),t(this).css({left:i-s+\"px\"});const o=t(this).siblings(\".ultp-menu-item-label-container\")?.offset()?.left||0;t(this).css({left:i-o+\"px\"})}else t(this).find(\" > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper\").css({maxWidth:\"\",boxSizing:\"\"}),t(this).css({left:\"\"})}))}setTimeout((()=>{e(\"setTimeout\")}),10),e(\"normal\");const i=0==t(\"body.postx-admin-page\").length;i&&t(window).on(\"resize\",(function(){e()}));let s,o,l,n,a,r,d,c,p,u=\"\",h=[],f=[];function m(e,i=\"\"){if(\"close\"==i)t(l).find(\"> .ultp-mobile-view-container > .ultp-mobile-view-wrapper\").css({transform:\"translateX(-100%)\",visibility:\"hidden\",opacity:\"0\"}),setTimeout((()=>{t(l).hasClass(\"ultpMenu__Css\")&&(t(l).addClass(\"ultpMenuCss\"),t(l).removeClass(\"ultpMenu__Css\")),t(l).removeClass(\"ultp-mobile-menu\"),t(l).find(\"> .ultp-mobile-view-container\").removeClass(\"ultp-mv-active\"),t(l).find(\"> .ultp-mobile-view-container > .ultp-mobile-view-wrapper\").css({transform:\"\",visibility:\"\",opacity:\"\",\"transition-property\":\"\",\"transition-timing-function\":\"\",\"transition-duration\":\"\"}),s?.html(\"\"),u=\"\",h=[],s=\"\",o=\"\",l=\"\",n=\"\",a=\"\",c=0,p=\"\",f=[]}),c);else{const i=t(e.target);c=t(i).hasClass(\"ultp-mv-ham-icon\")?t(i).data(\"animationduration\"):i.closest(\".ultp-mv-ham-icon\").data(\"animationduration\"),c=c||100,p=t(i).hasClass(\"ultp-mv-ham-icon\")?t(i).data(\"headtext\"):i.closest(\".ultp-mv-ham-icon\").data(\"headtext\"),r=i.closest(\".wp-block-ultimate-post-menu\").find(\"> .ultp-mobile-view-container > .ultp-mv-icons > .ultp-mv-label-icon svg\").prop(\"outerHTML\"),d=i.closest(\".wp-block-ultimate-post-menu\").find(\"> .ultp-mobile-view-container > .ultp-mv-icons > .ultp-mv-label-icon-expand svg\").prop(\"outerHTML\"),l=i.closest(\".wp-block-ultimate-post-menu\");const s=t(l);t(l).hasClass(\"ultpMenuCss\")&&(t(l).removeClass(\"ultpMenuCss\"),t(l).addClass(\"ultpMenu__Css\")),u=\"ultp-block-\"+s.data(\"bid\"),s.addClass(\"ultp-mobile-menu\"),s.find(\"> .ultp-mobile-view-container\").addClass(\"ultp-mv-active\"),v(\"\",\"hamIcon\"),s.find(\"> .ultp-mobile-view-container > .ultp-mobile-view-wrapper\").css({\"transition-property\":\"opacity, visibility, transform\",\"transition-timing-function\":\"ease-in\",\"transition-duration\":c?c\u002F1e3+\"s\":\".25s\"})}}function g(t){const e=t?._replace||r;let i=t?._string;return i&&f.length&&f.forEach((t=>{t&&e&&(i=i.replace(t,e))})),i}function v(e,i){if(\"hamIcon\"==i){n=l.data(\"rcsstype\"),a=l.data(\"rstr\"),s=t(l).find(\"> .ultp-mobile-view-container .ultp-mobile-view-body\"),o=t(l).find(\"> .ultp-mobile-view-container .ultp-mv-back-label\");let e=t(l).find(\"> .ultp-menu-wrapper > .ultp-menu-content\").html();if(t(l).find(\".ultp-menu-item-dropdown\").toArray().forEach((e=>{t(e).html()&&f.push(t(e).html())})),e){let i=t(\"\u003Cdiv>\").html(e);i.find(\".wp-block-ultimate-post-menu\").addClass(\"ultp-mobile-menu\"),e=i.html(),e=g({type:\"hamicon\",_string:e}),s.html(\"custom\"==n?e.replaceAll(\"ultpMenuCss\",\"ultpMenu__Css\"):e),o.html(p)}}else if(\"next\"==i){const i=t(e.target).closest(\".wp-block-ultimate-post-menu-item\"),r=i.data(\"bid\");if(!h.includes(\"ultp-block-\"+r)){let e=\"\",d=\"\";if(i.hasClass(\"hasListMenuChild\")?(d=i.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-list-menu\").css(\"display\"),e=i.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-list-menu > .ultp-list-menu-wrapper > .ultp-list-menu-content\").html()):(d=i.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-mega-menu\").css(\"display\"),e=i.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\").html()),\"none\"==d)return;if(e){t(l).find(\".ultp-mv-back-label-con\").removeClass(\"ultpmenu-dnone\");let d=t(\"\u003Cdiv>\").html(e);d.find(\".wp-block-ultimate-post-menu\").addClass(\"ultp-mobile-menu\"),e=d.html(),h.push(u),u=\"ultp-block-\"+r,o.html(i.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-label-text\").html()),\"mv_dissolve\"==a?s.find(\"> *\").animate({opacity:.2},c,(function(){s.html(\"custom\"==n?e.replaceAll(\"ultpMenuCss\",\"ultpMenu__Css\"):e),s.find(\"> *\").css(\"opacity\",\".1\"),s.find(\"> *\").animate({opacity:1},c)})):(s.html(\"custom\"==n?e.replaceAll(\"ultpMenuCss\",\"ultpMenu__Css\"):e),s.find(\"> *\").css({opacity:\".1\",transform:\"translateX(100%)\",transition:`transform ${c\u002F1e3+\"s\"} ease`}),s.find(\"> *\").animate({opacity:.3},10,(function(){s.find(\"> *\").css({opacity:\"1\",transform:\"translateX(0px)\"})})))}}}else if(\"back\"==i){if(0==h.length)return;u=h.pop()||\"\";let e=\"\";if(0==h.length?(e=t(l).find(\"> .ultp-menu-wrapper > .ultp-menu-content\").html(),o.html(p),t(l).find(\".ultp-mv-back-label-con\").addClass(\"ultpmenu-dnone\")):t(\".\"+u).hasClass(\"wp-block-ultimate-post-menu-item\")&&(e=t(\".\"+u).hasClass(\"hasListMenuChild\")?t(l).find(\".\"+u).find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-list-menu > .ultp-list-menu-wrapper > .ultp-list-menu-content\").html():t(l).find(\".\"+u).find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\").html()),e){let i=t(\"\u003Cdiv>\").html(e);i.find(\".wp-block-ultimate-post-menu\").addClass(\"ultp-mobile-menu\"),e=i.html(),e=g({type:\"back\",_string:e}),o.html(t(l).find(\".\"+u).find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-label-text\").html()),\"mv_dissolve\"==a?(s.find(\"> *\").animate({opacity:.2},c,(function(){s.html(\"custom\"==n?e.replaceAll(\"ultpMenuCss\",\"ultpMenu__Css\"):e)})),s.find(\"> *\").animate({opacity:1},c)):(s.html(\"custom\"==n?e.replaceAll(\"ultpMenuCss\",\"ultpMenu__Css\"):e),s.find(\"> *\").css({opacity:\".1\",transform:\"translateX(-100%)\",transition:`transform ${c\u002F1e3+\"s\"} ease`}),s.find(\"> *\").animate({opacity:.3},10,(function(){s.find(\"> *\").css({opacity:\"1\",transform:\"translateX(0px)\"})})))}}}function b(e,i){const s=t(e.target).closest(\".wp-block-ultimate-post-menu-item\");let o,l,n=\"next\";if(s.hasClass(\"ultp-menu-res-css\")?n=\"back\":s.addClass(\"ultp-menu-res-css\"),\"next\"==n){s.addClass(\"ultp-hammenu-accordian-active\"),d&&s.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-dropdown\").html(d),o=s.hasClass(\"hasListMenuChild\")?s.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-list-menu > .ultp-list-menu-wrapper > .ultp-list-menu-content\"):s.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\"),o.length||(o=s.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\")),l=o.outerHeight();const e=s.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\"),i=e.css(\"padding-top\"),n=e.css(\"padding-bottom\");s.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\").html(o.html()),s.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\").css({height:\"0px\",\"padding-top\":\"0\",\"padding-bottom\":\"0\"}),s.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\").animate({height:l+\"px\",\"padding-top\":i,\"padding-bottom\":n},c,(function(){t(this).css({height:\"\",\"padding-top\":\"\",\"padding-bottom\":\"\"})}))}else\"back\"==n&&(s.removeClass(\"ultp-hammenu-accordian-active\"),s.find(\".wp-block-ultimate-post-menu-item\").removeClass(\"ultp-hammenu-accordian-active\"),s.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\").animate({height:\"0\",paddingTop:\"0\",paddingBottom:\"0\"},c,(function(){t(this).css({height:\"\",paddingTop:\"\",paddingBottom:\"\"}),r&&s.find(\".ultp-menu-item-wrapper .ultp-menu-item-label-container .ultp-menu-item-dropdown\").each((function(){t(this).html()&&t(this).html(r)})),s.removeClass(\"ultp-menu-res-css\"),s.find(\".wp-block-ultimate-post-menu-item\").removeClass(\"ultp-menu-res-css\")})))}i&&(t(\".wp-block-ultimate-post-menu\").each((function(){const e=t(this);\"hasRootMenu\"!=e.data(\"hasrootmenu\")&&e.find(`.ultp-menu-item-wrapper[data-parentbid=\".ultp-block-${e?.data(\"bid\")}\"] > .ultp-menu-item-label-container a`).each((function(){const i=t(this),s=window.location.href;let o=!1;const l=i[0].href;if(s.endsWith(\"\u002F\")&&!l.endsWith(\"\u002F\")){const t=l+\"\u002F\";s.replace(\"https:\",\"http:\")==t.replace(\"https:\",\"http:\")&&(o=!0)}(s.replace(\"https:\",\"http:\")==l.replace(\"https:\",\"http:\")||o)&&i.closest(`.ultp-menu-item-wrapper[data-parentbid=\".ultp-block-${e?.data(\"bid\")}\"]`).addClass(\"ultp-current-link\")}))})),t(document).on(\"click\",'.wp-block-ultimate-post-menu[data-mv=\"enable\"] > .ultp-mv-ham-icon.ultp-active',(function(t){m(t,\"ham\")})),t(document).on(\"click\",\".ultp-mobile-view-container .ultp-mv-back, .ultp-mobile-view-container .ultp-mv-back-label-con\",(function(t){\"mv_dissolve\"==a||\"mv_slide\"==a?v(t,\"back\"):b(t,\"back\")})),t(document).on(\"click\",\".ultp-mobile-view-container .ultp-mv-close\",(function(t){m(t,\"close\")})),t(document).on(\"click\",\".ultp-mobile-view-container\",(function(e){t(e.target).hasClass(\"ultp-mobile-view-container\")&&m(e,\"close\")})),t(document).on(\"click\",\".ultp-mobile-view-container .ultp-menu-item-label-container\",(function(e){t(e.target).is(\".ultp-menu-item-label\")||t(e.target).parent().is(\".ultp-menu-item-label\")||t(e.target).is(\".ultp-menu-item-label-container\")&&0==t(e.target).siblings(\".ultp-menu-item-content\").find(\"> *\").length||(e.preventDefault(),\"mv_dissolve\"==a||\"mv_slide\"==a?v(e,\"next\"):b(e,\"next\"))})))}(jQuery),function(t){function e(){if(t(\".ultp-video-modal.modal_active\").length>0){let e=t(\".ultp-video-modal.modal_active\").find(\"iframe\");if(e.length){const t=e.attr(\"src\");if(t){let i=\"\";i=t.includes(\"dailymotion.com\u002Fplayer\")?t.replaceAll(\"&?autoplay=1\",\"?autoplay=0\"):t.replaceAll(\"&autoplay=1\",\"\"),i&&e.attr(\"src\",i)}}else t(\".ultp-video-modal.modal_active\").find(\"video\").trigger(\"pause\");t(\".ultp-video-modal\").removeClass(\"modal_active\")}}t(document).on(\"click\",\".ultp-video-icon\",(function(){const e=t(this),i=e.parents(\".ultp-block-item\"),s=e.closest(\".ultp-block-image\"),o=s.find(\"div.ultp-block-video-content\");let l=i.find(\".ultp-video-icon\").attr(\"enableAutoPlay\"),n=i.find(\".ultp-video-icon\").attr(\"enableVideoPopup\"),a=i.find(\"iframe\");const r=o.find(\"iframe\").length>0,d=o.find(\"video\").length>0;if(n||!r&&!d||(s.find(\"> a img\").hide(),o.css({display:\"block\"}),e.hide(),(r||d)&&(a=o.find(\"iframe\").length>0?o.find(\"iframe\"):o.find(\"video\"),d&&l&&o.find(\"video\").trigger(\"play\"))),a.length){i.find(\".ultp-video-modal\").addClass(\"modal_active\");const e=a.attr(\"src\");e&&l&&(e.includes(\"dailymotion.com\u002Fplayer\")?a.attr(\"src\",e.includes(\"?autoplay=0\")?e.replace(\"?autoplay=0\",\"&?autoplay=1\"):`${e}?autoplay=1`):a.attr(\"src\",`${e}&autoplay=1`)),a.on(\"load\",(function(){t(\".ultp-loader-container\").hide()}))}else i.find(\".ultp-video-modal\").addClass(\"modal_active\"),t(\".ultp-video-modal.modal_active\").find(\"video\").trigger(\"play\")})),t(document).on(\"click\",\".ultp-video-close\",(function(){e()})),t(document).on(\"keyup\",(function(t){\"Escape\"==t.key&&e()}))}(jQuery),function(t){0==t(\"body.postx-admin-page\").length&&t(\".wp-block-ultimate-post-accordion\").length>0&&t(\".wp-block-ultimate-post-accordion\").each((function(){const e=t(this).data(\"active\"),i=t(this).data(\"autocollapse\");t(this).children().children(\".wp-block-ultimate-post-accordion-item\").each((function(s){const o=t(this);s==e?(t(this).addClass(\"active active-accordion\"),o.find(\".ultp-accordion-item__content\").first().css({display:\"block\"})):t(this).removeClass(\"active active-accordion\"),t(this).children(\".ultp-accordion-item\").children(\".ultp-accordion-item__navigation\").on(\"click\",(function(){const e=t(this).parent().parent(\".wp-block-ultimate-post-accordion-item\"),s=e.find(\".ultp-accordion-item__content\").first(),o=e.parent().parent(\".wp-block-ultimate-post-accordion\");s.is(\":visible\")?s.stop(!0,!0).slideUp(300,(function(){e.removeClass(\"active active-accordion\")})):(i&&o.find(\".ultp-accordion-item__content:visible\").first().stop(!0,!0).slideUp(300,(function(){e.siblings().removeClass(\"active active-accordion\"),e.addClass(\"active active-accordion\")})),e.addClass(\"active active-accordion\"),s.stop(!0,!0).slideDown(300))}))}))}))}(jQuery),function(t){t(document).ready((function(){!function(){function e(t,e){if(\"string\"==typeof t)try{return JSON.parse(t)}catch(t){return e}return\"object\"==typeof t&&null!==t?t:e}function i(e,i){if(!e)return\"\";const s=t(window).width();let o;return o=s\u003C600?i.sm||i.lg:s\u003C900&&i.md||i.lg,e.length>o?e.substring(0,o)+\"...\":e}function s(t,e){const i=[...t];switch(e){case\"title\":return i.sort(((t,e)=>t.title.localeCompare(e.title,void 0,{sensitivity:\"base\"})));case\"latest\":return i.sort(((t,e)=>new Date(e.publishedAt).getTime()-new Date(t.publishedAt).getTime()));case\"date\":return i.sort(((t,e)=>new Date(t.publishedAt).getTime()-new Date(e.publishedAt).getTime()));case\"popular\":return i.sort(((t,e)=>(e.viewCount||0)-(t.viewCount||0)));default:return t}}function o(t){if(!t)return\"\";try{const e=new URL(t);if(\"www.youtube.com\"===e.hostname){if(e.pathname.startsWith(\"\u002Fchannel\u002F\"))return e.pathname.split(\"\u002Fchannel\u002F\")[1];if(e.pathname.startsWith(\"\u002F@\"))return e.pathname.substring(2);if(e.searchParams.get(\"list\"))return e.searchParams.get(\"list\")}return t}catch(e){return t}}function l(e,i,s){t.get(`https:\u002F\u002Fwww.googleapis.com\u002Fyoutube\u002Fv3\u002Fsearch?part=snippet&q=${encodeURIComponent(e)}&type=channel&key=${i}`).done((function(t){t.items&&t.items.length>0?s(t.items[0].snippet.channelId):s(null)})).fail((function(){s(null)}))}function n(t,e){return`\\n\\t\\t\\t\\t\u003Cdiv class=\"ultp-ytg-video-wrapper\">\\n\\t\\t\\t\\t\\t\u003Ciframe \\n\\t\\t\\t\\t\\t\\tsrc=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F${t}?${[\"autoplay=\"+(e.autoplay?\"1\":\"0\"),\"loop=\"+(e.loop?\"1\":\"0\"),\"mute=\"+(e.mute?\"1\":\"0\"),\"controls=\"+(e.showPlayerControl?\"1\":\"0\"),\"modestbranding=\"+(e.hideYoutubeLogo?\"1\":\"0\"),e.loop?`playlist=${t}`:null].filter(Boolean).join(\"&\")}\"\\n\\t\\t\\t\\t\\t\\ttitle=\"YouTube Video\"\\n\\t\\t\\t\\t\\t\\tframeborder=\"0\"\\n\\t\\t\\t\\t\\t\\tallow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\\n\\t\\t\\t\\t\\t\\tallowfullscreen\\n\\t\\t\\t\\t\\t>\u003C\u002Fiframe>\\n\\t\\t\\t\\t\u003C\u002Fdiv>\\n\\t\\t\\t`}function a(t,e,s,o,l,n,a){let r='\u003Cdiv class=\"ultp-ytg-content\">';return t&&(r+=`\u003Cdiv class=\"ultp-ytg-title\">\u003Ca href=\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=${a}\" target=\"_blank\" rel=\"noopener noreferrer\">${i(e,s)}\u003C\u002Fa>\u003C\u002Fdiv>`),o&&(r+=`\u003Cdiv class=\"ultp-ytg-description\">${i(l,n)}\u003C\u002Fdiv>`),r+=\"\u003C\u002Fdiv>\",r}t(\".wp-block-ultimate-post-youtube-gallery\").each((function(){const r=t(this),d=r.find(\".ultp-block-wrapper\");let c=r.find(\".ultp-ytg-view-grid, .ultp-ytg-container\");const p=r.find(\".ultp-ytg-loadmore-btn\"),u={playlistIdOrUrl:r.data(\"playlist\")||\"\",apiKey:r.data(\"api-key\")||\"\",cacheDuration:parseInt(r.data(\"cache-duration\"))||0,sortBy:r.data(\"sort-by\")||\"date\",galleryLayout:r.data(\"gallery-layout\")||\"grid\",videosPerPage:e(r.data(\"videos-per-page\"),{lg:9,md:6,sm:3}),showVideoTitle:\"1\"==r.data(\"show-video-title\"),videoTitleLength:e(r.data(\"video-title-length\"),{lg:50,md:50,sm:50}),loadMoreEnable:\"1\"==r.data(\"load-more-enable\"),moreButtonLabel:r.data(\"more-button-label\")||\"More Videos\",autoplay:\"1\"==r.data(\"autoplay\"),loop:\"1\"==r.data(\"loop\"),mute:\"1\"==r.data(\"mute\"),showPlayerControl:\"1\"==r.data(\"show-player-control\"),hideYoutubeLogo:\"1\"==r.data(\"hide-youtube-logo\"),showDescription:\"1\"==r.data(\"show-description\"),videoDescriptionLength:e(r.data(\"video-description-length\"),{lg:100,md:100,sm:100}),imageHeightRatio:r.data(\"image-height-ratio\")||\"16-9\",galleryColumn:e(r.data(\"gallery-column\"),{lg:3,md:2,sm:1}),displayType:r.data(\"display-type\")||\"grid\",enableListView:\"1\"==r.data(\"enable-list-view\"),enableIconAnimation:\"1\"==r.data(\"enable-icon-animation\"),defaultYoutubeIcon:\"1\"==r.data(\"enable-youtube-icon\"),imgHeight:r.data(\"img-height\")};let h=o(u.playlistIdOrUrl);if(h.startsWith(\"@\")){l(h.substring(1),u.apiKey,(function(t){t?(h=t,f(h)):d.html('\u003Cp style=\"color:#888\">Invalid handle or API key.\u003C\u002Fp>')}))}else f(h);function f(e){if(e.startsWith(\"UC\")&&(e=\"UU\"+e.substring(2)),!e||!u.apiKey)return void d.html('\u003Cp style=\"color:#888\">Please provide both YouTube playlist ID\u002FURL and API key.\u003C\u002Fp>');let o=[],l=u.videosPerPage.lg||9,h=null,f=null;function m(){const e=t(window).width();l=e\u003C600?Math.max(l,u.videosPerPage.sm||3):e\u003C900?Math.max(l,u.videosPerPage.md||6):Math.max(l,u.videosPerPage.lg||9)}function g(t){if(!t.length)return void c.html(\"\u003Cp>No videos found in this playlist.\u003C\u002Fp>\");h||(h=t[0]);let e='\u003Cdiv class=\"ultp-ytg-main\">';const s=`\\n\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"ultp-ytg-video-wrapper\">\\n\\t\\t\\t\\t\\t\\t\\t\u003Ciframe \\n\\t\\t\\t\\t\\t\\t\\t\\tsrc=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F${h.videoId}?${[\"autoplay=\"+(u.autoplay?\"1\":\"0\"),\"loop=\"+(u.loop?\"1\":\"0\"),\"mute=\"+(u.mute?\"1\":\"0\"),\"controls=\"+(u.showPlayerControl?\"1\":\"0\"),\"modestbranding=\"+(u.hideYoutubeLogo?\"1\":\"0\"),u.loop?`playlist=${h.videoId}`:null].filter(Boolean).join(\"&\")}\"\\n\\t\\t\\t\\t\\t\\t\\t\\ttitle=\"YouTube Video\"\\n\\t\\t\\t\\t\\t\\t\\t\\tframeborder=\"0\"\\n\\t\\t\\t\\t\\t\\t\\t\\tallow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\\n\\t\\t\\t\\t\\t\\t\\t\\tallowfullscreen\\n\\t\\t\\t\\t\\t\\t\\t>\u003C\u002Fiframe>\\n\\t\\t\\t\\t\\t\\t\\t${a(u.showVideoTitle,h.title,u.videoTitleLength,u.showDescription,h.description,u.videoDescriptionLength,h.videoId)}\\n\\t\\t\\t\\t\\t\\t\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t`;e+=s,e+=\"\u003C\u002Fdiv>\",e+='\u003Cdiv class=\"ultp-ytg-playlist-sidebar\">',e+='\u003Cdiv class=\"ultp-ytg-playlist-items\">',t.forEach((function(t){const s=t.videoId===h.videoId;e+=`\\n\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"ultp-ytg-playlist-item ${s?\"active\":\"\"}\" data-video-id=\"${t.videoId}\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cimg src=\"${t.thumbnail}\" alt=\"${t.title}\" loading=\"lazy\" \u002F>\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"ultp-ytg-playlist-item-content\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"ultp-ytg-playlist-item-title\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t${i(t.title,u.videoTitleLength)}\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t`})),e+=\"\u003C\u002Fdiv>\u003C\u002Fdiv>\",c.html(e)}function v(e,i){if(!e.length)return void c.html(\"\u003Cp>No videos found in this playlist.\u003C\u002Fp>\");const s=e.slice(0,i);let o=\"\";s.forEach((function(e){const i=f===e.videoId;if(o+=`\u003Cdiv class=\"ultp-ytg-item${i?\" active\":\"\"}\">`,o+='\u003Cdiv class=\"ultp-ytg-video\">',i)o+=n(e.videoId,u);else{const i=t(\".ultp-ytg-play__icon\").html();o+=`\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cimg src=\"${e.thumbnail}\" alt=\"${e.title}\" loading=\"lazy\" data-video-id=\"${e.videoId}\" style=\"cursor:pointer;\" \u002F>\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"ultp-ytg-play__icon${u.enableIconAnimation?\" ytg-icon-animation\":\"\"}\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t${i}\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t`}o+=\"\u003C\u002Fdiv>\",o+='\u003Cdiv class=\"ultp-ytg-inside\">',o+=a(u.showVideoTitle,e.title,u.videoTitleLength,u.showDescription,e.description,u.videoDescriptionLength,e.videoId),o+=\"\u003C\u002Fdiv>\u003C\u002Fdiv>\"})),c.html(o),u.loadMoreEnable&&i\u003Ce.length?p.show():p.hide()}function b(t,e){\"playlist\"===u.galleryLayout?g(t):v(t,e)}const w=`ultp_youtube_gallery_${e}_${u.apiKey}_${u.sortBy}_${u.imgHeight}`,y=u.cacheDuration;let k=null;try{k=JSON.parse(localStorage.getItem(w))}catch(t){k=null}const x=Date.now();k&&k.data&&k.timestamp&&y>0&&x-k.timestamp\u003C1e3*y?(o=s(k.data,u.sortBy),b(o,l)):(\"playlist\"!==u.galleryLayout?c.html('\\n\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"ultp-ytg-loading gallery-postx gallery-active\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"skeleton-box\">\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"skeleton-box\">\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"skeleton-box\">\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"skeleton-box\">\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"skeleton-box\">\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"skeleton-box\">\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t'):c.html('\\n\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"ultp-ytg-loading ultp-ytg-playlist-loading\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"ytg-loader\">\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\u003C\u002Fdiv>'),t.get(\"https:\u002F\u002Fwww.googleapis.com\u002Fyoutube\u002Fv3\u002FplaylistItems\",{part:\"snippet\",maxResults:50,playlistId:e,key:u.apiKey}).done((function(e){setTimeout((function(){if(c.empty(),e.error)return void c.html(`\u003Cdiv class=\"ultp-ytg-error\">${e.error.message||\"Failed to fetch playlist.\"}\u003C\u002Fdiv>`);const i=(e.items||[]).filter((function(t){return\"Private video\"!==t.snippet.title&&\"Deleted video\"!==t.snippet.title})).map((function(t){return{videoId:t.snippet.resourceId.videoId,title:t.snippet.title,thumbnail:t.snippet.thumbnails&&t.snippet.thumbnails[u.imgHeight]&&t.snippet.thumbnails[u.imgHeight].url||t.snippet.thumbnails[u.imgHeight].url||t.snippet.thumbnails?.medium?.url||\"\",publishedAt:t.snippet.publishedAt||\"\",description:t.snippet.description||\"\",viewCount:0}}));if(\"popular\"===u.sortBy){const e=i.map((t=>t.videoId)).join(\",\");t.get(`https:\u002F\u002Fwww.googleapis.com\u002Fyoutube\u002Fv3\u002Fvideos?part=statistics&id=${e}&key=${u.apiKey}`).done((function(t){if(t.items){const e={};t.items.forEach((function(t){e[t.id]=t.statistics.viewCount})),i.forEach((function(t){t.viewCount=parseInt(e[t.videoId]||0)}))}if(o=s(i,u.sortBy),y>0)try{localStorage.setItem(w,JSON.stringify({data:i,timestamp:x}))}catch(t){console.warn(\"Failed to cache videos:\",t)}b(o,l)})).fail((function(){console.warn(\"Failed to fetch video statistics for popular sorting.\"),o=s(i,u.sortBy),b(o,l)}))}else{if(o=s(i,u.sortBy),y>0)try{localStorage.setItem(w,JSON.stringify({data:i,timestamp:x}))}catch(t){console.warn(\"Failed to cache videos:\",t)}b(o,l)}}),2e3)})).fail((function(){setTimeout((function(){c.empty(),c.html('\u003Cdiv class=\"ultp-ytg-error\">Failed to fetch videos. Please try again.\u003C\u002Fdiv>')}),3e3)}))),r.on(\"click\",\".ultp-ytg-playlist-item\",(function(){const e=t(this).data(\"video-id\");e&&(h=o.find((function(t){return t.videoId===e})),h&&g(o))})),r.on(\"click\",\".ultp-ytg-play__icon\",(function(){const e=t(this).siblings(\"img[data-video-id]\").data(\"video-id\");if(!e)return;const i=t(this).closest(\".ultp-ytg-item\");i.find(\".ultp-ytg-video\").html('\u003Cdiv class=\"ultp-ytg-loading\">\u003Cdiv class=\"ytg-loader\">\u003C\u002Fdiv>\u003C\u002Fdiv>'),i.addClass(\"active\").siblings(\".ultp-ytg-item\").removeClass(\"active\"),setTimeout((function(){f=e,v(o,l)}),1e3)})),r.on(\"click\",\".ultp-ytg-video img[data-video-id]\",(function(){const e=t(this).data(\"video-id\");e&&(f=e,v(o,l))})),p.on(\"click\",(function(){l+=u.videosPerPage.lg,v(o,l)})),t(window).on(\"resize\",(function(){o.length&&(m(),b(o,l))}))}}))}()}))}(jQuery),function(t){\"function\"==typeof define&&define.amd?define([\"jquery\"],t):t(jQuery)}((function(t){var e,i=t(window).width(),s=t(window).height(),o=[];t(window).on(\"resize\",(function(){clearTimeout(e),e=setTimeout((function(){t(window).width()===i&&t(window).height()===s||(t(o).each((function(){t(this).flexMenu({undo:!0}).flexMenu(this.options)})),i=t(window).width(),s=t(window).height())}),200)})),t.fn.flexMenu=function(e){var i,s=t.extend({threshold:2,cutoff:2,linkText:\"More\",linkTitle:\"View More\",linkTextAll:\"Menu\",linkTitleAll:\"Open\u002FClose Menu\",shouldApply:function(){return!0},showOnHover:!0,popupAbsolute:!0,popupClass:\"\",undo:!1},e);return this.options=s,(i=t.inArray(this,o))>=0?o.splice(i,1):o.push(this),this.each((function(){var e,i,o,l,n,a,r=t(this),d=r.find(\"> li\"),c=d.first(),p=d.last(),u=d.length,h=Math.floor(c.offset().top),f=Math.floor(c.outerHeight(!0)),m=!1;function g(t){return Math.ceil(t.offset().top)>=h+f}if(g(p)&&u>s.threshold&&!s.undo&&r.is(\":visible\")&&s.shouldApply()){var v=t('\u003Cul class=\"flexMenu-popup\" style=\"display:none;'+(s.popupAbsolute?\" position: absolute;\":\"\")+'\">\u003C\u002Ful>');for(v.addClass(s.popupClass),a=u;a>1;a--){if(i=g(e=r.find(\"> li:last-child\")),a-1\u003C=s.cutoff){t(r.children().get().reverse()).appendTo(v),m=!0;break}if(!i)break;e.appendTo(v)}m?r.append('\u003Cli class=\"flexMenu-viewMore flexMenu-allInPopup\">\u003Ca href=\"#\" title=\"'+s.linkTitleAll+'\">'+s.linkTextAll+\"\u003C\u002Fa>\u003C\u002Fli>\"):r.append('\u003Cli class=\"flexMenu-viewMore\">\u003Ca href=\"#\" title=\"'+s.linkTitle+'\">'+s.linkText+\"\u003C\u002Fa>\u003C\u002Fli>\"),g(o=r.find(\"> li.flexMenu-viewMore\"))&&r.find(\"> li:nth-last-child(2)\").appendTo(v),v.children().each((function(t,e){v.prepend(e)})),o.append(v),r.find(\"> li.flexMenu-viewMore > a\").on(\"click\",(function(e){var i;i=o,t(\"li.flexMenu-viewMore.active\").not(i).removeClass(\"active\").find(\"> ul\").hide(),v.toggle(),o.toggleClass(\"active\"),e.preventDefault()})),s.showOnHover&&\"undefined\"!=typeof Modernizr&&!Modernizr.touch&&o.hover((function(){v.show(),t(this).addClass(\"active\")}),(function(){v.hide(),t(this).removeClass(\"active\")}))}else if(s.undo&&r.find(\"ul.flexMenu-popup\")){for(l=(n=r.find(\"ul.flexMenu-popup\")).find(\"li\").length,a=1;a\u003C=l;a++)n.find(\"> li:first-child\").appendTo(r);n.remove(),r.find(\"> li.flexMenu-viewMore\").remove()}}))}})),function(t){\"use strict\";\"function\"==typeof define&&define.amd?define([\"jquery\"],t):\"undefined\"!=typeof exports?module.exports=t(require(\"jquery\")):t(jQuery)}((function(t){\"use strict\";var e,i=window.Slick||{};e=0,(i=function(i,s){var o,l=this;l.defaults={accessibility:!0,adaptiveHeight:!1,appendArrows:t(i),appendDots:t(i),arrows:!0,asNavFor:null,prevArrow:'\u003Cbutton class=\"slick-prev\" aria-label=\"Previous\" type=\"button\">Previous\u003C\u002Fbutton>',nextArrow:'\u003Cbutton class=\"slick-next\" aria-label=\"Next\" type=\"button\">Next\u003C\u002Fbutton>',autoplay:!1,autoplaySpeed:3e3,centerMode:!1,centerPadding:\"50px\",cssEase:\"ease\",customPaging:function(e,i){return t('\u003Cbutton type=\"button\" \u002F>').text(i+1)},dots:!1,dotsClass:\"slick-dots\",draggable:!0,easing:\"linear\",edgeFriction:.35,fade:!1,focusOnSelect:!1,focusOnChange:!1,infinite:!0,initialSlide:0,lazyLoad:\"ondemand\",mobileFirst:!1,pauseOnHover:!0,pauseOnFocus:!0,pauseOnDotsHover:!1,respondTo:\"window\",responsive:null,rows:1,rtl:!1,slide:\"\",slidesPerRow:1,slidesToShow:1,slidesToScroll:1,speed:500,swipe:!0,swipeToSlide:!1,touchMove:!0,touchThreshold:5,useCSS:!0,useTransform:!0,variableWidth:!1,vertical:!1,verticalSwiping:!1,waitForAnimate:!0,zIndex:1e3},l.initials={animating:!1,dragging:!1,autoPlayTimer:null,currentDirection:0,currentLeft:null,currentSlide:0,direction:1,$dots:null,listWidth:null,listHeight:null,loadIndex:0,$nextArrow:null,$prevArrow:null,scrolling:!1,slideCount:null,slideWidth:null,$slideTrack:null,$slides:null,sliding:!1,slideOffset:0,swipeLeft:null,swiping:!1,$list:null,touchObject:{},transformsEnabled:!1,unslicked:!1},t.extend(l,l.initials),l.activeBreakpoint=null,l.animType=null,l.animProp=null,l.breakpoints=[],l.breakpointSettings=[],l.cssTransitions=!1,l.focussed=!1,l.interrupted=!1,l.hidden=\"hidden\",l.paused=!0,l.positionProp=null,l.respondTo=null,l.rowCount=1,l.shouldClick=!0,l.$slider=t(i),l.$slidesCache=null,l.transformType=null,l.transitionType=null,l.visibilityChange=\"visibilitychange\",l.windowWidth=0,l.windowTimer=null,o=t(i).data(\"slick\")||{},l.options=t.extend({},l.defaults,s,o),l.currentSlide=l.options.initialSlide,l.originalSettings=l.options,void 0!==document.mozHidden?(l.hidden=\"mozHidden\",l.visibilityChange=\"mozvisibilitychange\"):void 0!==document.webkitHidden&&(l.hidden=\"webkitHidden\",l.visibilityChange=\"webkitvisibilitychange\"),l.autoPlay=t.proxy(l.autoPlay,l),l.autoPlayClear=t.proxy(l.autoPlayClear,l),l.autoPlayIterator=t.proxy(l.autoPlayIterator,l),l.changeSlide=t.proxy(l.changeSlide,l),l.clickHandler=t.proxy(l.clickHandler,l),l.selectHandler=t.proxy(l.selectHandler,l),l.setPosition=t.proxy(l.setPosition,l),l.swipeHandler=t.proxy(l.swipeHandler,l),l.dragHandler=t.proxy(l.dragHandler,l),l.keyHandler=t.proxy(l.keyHandler,l),l.instanceUid=e++,l.htmlExpr=\u002F^(?:\\s*(\u003C[\\w\\W]+>)[^>]*)$\u002F,l.registerBreakpoints(),l.init(!0)}).prototype.activateADA=function(){this.$slideTrack.find(\".slick-active\").attr({\"aria-hidden\":\"false\"}).find(\"a, input, button, select\").attr({tabindex:\"0\"})},i.prototype.addSlide=i.prototype.slickAdd=function(e,i,s){var o=this;if(\"boolean\"==typeof i)s=i,i=null;else if(i\u003C0||i>=o.slideCount)return!1;o.unload(),\"number\"==typeof i?0===i&&0===o.$slides.length?t(e).appendTo(o.$slideTrack):s?t(e).insertBefore(o.$slides.eq(i)):t(e).insertAfter(o.$slides.eq(i)):!0===s?t(e).prependTo(o.$slideTrack):t(e).appendTo(o.$slideTrack),o.$slides=o.$slideTrack.children(this.options.slide),o.$slideTrack.children(this.options.slide).detach(),o.$slideTrack.append(o.$slides),o.$slides.each((function(e,i){t(i).attr(\"data-slick-index\",e)})),o.$slidesCache=o.$slides,o.reinit()},i.prototype.animateHeight=function(){var t=this;if(1===t.options.slidesToShow&&!0===t.options.adaptiveHeight&&!1===t.options.vertical){var e=t.$slides.eq(t.currentSlide).outerHeight(!0);t.$list.animate({height:e},t.options.speed)}},i.prototype.animateSlide=function(e,i){var s={},o=this;o.animateHeight(),!0===o.options.rtl&&!1===o.options.vertical&&(e=-e),!1===o.transformsEnabled?!1===o.options.vertical?o.$slideTrack.animate({left:e},o.options.speed,o.options.easing,i):o.$slideTrack.animate({top:e},o.options.speed,o.options.easing,i):!1===o.cssTransitions?(!0===o.options.rtl&&(o.currentLeft=-o.currentLeft),t({animStart:o.currentLeft}).animate({animStart:e},{duration:o.options.speed,easing:o.options.easing,step:function(t){t=Math.ceil(t),!1===o.options.vertical?(s[o.animType]=\"translate(\"+t+\"px, 0px)\",o.$slideTrack.css(s)):(s[o.animType]=\"translate(0px,\"+t+\"px)\",o.$slideTrack.css(s))},complete:function(){i&&i.call()}})):(o.applyTransition(),e=Math.ceil(e),!1===o.options.vertical?s[o.animType]=\"translate3d(\"+e+\"px, 0px, 0px)\":s[o.animType]=\"translate3d(0px,\"+e+\"px, 0px)\",o.$slideTrack.css(s),i&&setTimeout((function(){o.disableTransition(),i.call()}),o.options.speed))},i.prototype.getNavTarget=function(){var e=this.options.asNavFor;return e&&null!==e&&(e=t(e).not(this.$slider)),e},i.prototype.asNavFor=function(e){var i=this.getNavTarget();null!==i&&\"object\"==typeof i&&i.each((function(){var i=t(this).slick(\"getSlick\");i.unslicked||i.slideHandler(e,!0)}))},i.prototype.applyTransition=function(t){var e=this,i={};!1===e.options.fade?i[e.transitionType]=e.transformType+\" \"+e.options.speed+\"ms \"+e.options.cssEase:i[e.transitionType]=\"opacity \"+e.options.speed+\"ms \"+e.options.cssEase,!1===e.options.fade?e.$slideTrack.css(i):e.$slides.eq(t).css(i)},i.prototype.autoPlay=function(){var t=this;t.autoPlayClear(),t.slideCount>t.options.slidesToShow&&(t.autoPlayTimer=setInterval(t.autoPlayIterator,t.options.autoplaySpeed))},i.prototype.autoPlayClear=function(){this.autoPlayTimer&&clearInterval(this.autoPlayTimer)},i.prototype.autoPlayIterator=function(){var t=this,e=t.currentSlide+t.options.slidesToScroll;t.paused||t.interrupted||t.focussed||(!1===t.options.infinite&&(1===t.direction&&t.currentSlide+1===t.slideCount-1?t.direction=0:0===t.direction&&(e=t.currentSlide-t.options.slidesToScroll,t.currentSlide-1==0&&(t.direction=1))),t.slideHandler(e))},i.prototype.buildArrows=function(){var e=this;!0===e.options.arrows&&(e.$prevArrow=t(e.options.prevArrow).addClass(\"slick-arrow\"),e.$nextArrow=t(e.options.nextArrow).addClass(\"slick-arrow\"),e.slideCount>e.options.slidesToShow?(e.$prevArrow.removeClass(\"slick-hidden\").removeAttr(\"aria-hidden tabindex\"),e.$nextArrow.removeClass(\"slick-hidden\").removeAttr(\"aria-hidden tabindex\"),e.htmlExpr.test(e.options.prevArrow)&&e.$prevArrow.prependTo(e.options.appendArrows),e.htmlExpr.test(e.options.nextArrow)&&e.$nextArrow.appendTo(e.options.appendArrows),!0!==e.options.infinite&&e.$prevArrow.addClass(\"slick-disabled\").attr(\"aria-disabled\",\"true\")):e.$prevArrow.add(e.$nextArrow).addClass(\"slick-hidden\").attr({\"aria-disabled\":\"true\",tabindex:\"-1\"}))},i.prototype.buildDots=function(){var e,i,s=this;if(!0===s.options.dots&&s.slideCount>s.options.slidesToShow){for(s.$slider.addClass(\"slick-dotted\"),i=t(\"\u003Cul \u002F>\").addClass(s.options.dotsClass),e=0;e\u003C=s.getDotCount();e+=1)i.append(t(\"\u003Cli \u002F>\").append(s.options.customPaging.call(this,s,e)));s.$dots=i.appendTo(s.options.appendDots),s.$dots.find(\"li\").first().addClass(\"slick-active\")}},i.prototype.buildOut=function(){var e=this;e.$slides=e.$slider.children(e.options.slide+\":not(.slick-cloned)\").addClass(\"slick-slide\"),e.slideCount=e.$slides.length,e.$slides.each((function(e,i){t(i).attr(\"data-slick-index\",e).data(\"originalStyling\",t(i).attr(\"style\")||\"\")})),e.$slider.addClass(\"slick-slider\"),e.$slideTrack=0===e.slideCount?t('\u003Cdiv class=\"slick-track\"\u002F>').appendTo(e.$slider):e.$slides.wrapAll('\u003Cdiv class=\"slick-track\"\u002F>').parent(),e.$list=e.$slideTrack.wrap('\u003Cdiv class=\"slick-list\"\u002F>').parent(),e.$slideTrack.css(\"opacity\",0),!0!==e.options.centerMode&&!0!==e.options.swipeToSlide||(e.options.slidesToScroll=1),t(\"img[data-lazy]\",e.$slider).not(\"[src]\").addClass(\"slick-loading\"),e.setupInfinite(),e.buildArrows(),e.buildDots(),e.updateDots(),e.setSlideClasses(\"number\"==typeof e.currentSlide?e.currentSlide:0),!0===e.options.draggable&&e.$list.addClass(\"draggable\")},i.prototype.buildRows=function(){var t,e,i,s,o,l,n,a=this;if(s=document.createDocumentFragment(),l=a.$slider.children(),a.options.rows>0){for(n=a.options.slidesPerRow*a.options.rows,o=Math.ceil(l.length\u002Fn),t=0;t\u003Co;t++){var r=document.createElement(\"div\");for(e=0;e\u003Ca.options.rows;e++){var d=document.createElement(\"div\");for(i=0;i\u003Ca.options.slidesPerRow;i++){var c=t*n+(e*a.options.slidesPerRow+i);l.get(c)&&d.appendChild(l.get(c))}r.appendChild(d)}s.appendChild(r)}a.$slider.empty().append(s),a.$slider.children().children().children().css({width:100\u002Fa.options.slidesPerRow+\"%\",display:\"inline-block\"})}},i.prototype.checkResponsive=function(e,i){var s,o,l,n=this,a=!1,r=n.$slider.width(),d=window.innerWidth||t(window).width();if(\"window\"===n.respondTo?l=d:\"slider\"===n.respondTo?l=r:\"min\"===n.respondTo&&(l=Math.min(d,r)),n.options.responsive&&n.options.responsive.length&&null!==n.options.responsive){for(s in o=null,n.breakpoints)n.breakpoints.hasOwnProperty(s)&&(!1===n.originalSettings.mobileFirst?l\u003Cn.breakpoints[s]&&(o=n.breakpoints[s]):l>n.breakpoints[s]&&(o=n.breakpoints[s]));null!==o?null!==n.activeBreakpoint?(o!==n.activeBreakpoint||i)&&(n.activeBreakpoint=o,\"unslick\"===n.breakpointSettings[o]?n.unslick(o):(n.options=t.extend({},n.originalSettings,n.breakpointSettings[o]),!0===e&&(n.currentSlide=n.options.initialSlide),n.refresh(e)),a=o):(n.activeBreakpoint=o,\"unslick\"===n.breakpointSettings[o]?n.unslick(o):(n.options=t.extend({},n.originalSettings,n.breakpointSettings[o]),!0===e&&(n.currentSlide=n.options.initialSlide),n.refresh(e)),a=o):null!==n.activeBreakpoint&&(n.activeBreakpoint=null,n.options=n.originalSettings,!0===e&&(n.currentSlide=n.options.initialSlide),n.refresh(e),a=o),e||!1===a||n.$slider.trigger(\"breakpoint\",[n,a])}},i.prototype.changeSlide=function(e,i){var s,o,l=this,n=t(e.currentTarget);switch(n.is(\"a\")&&e.preventDefault(),n.is(\"li\")||(n=n.closest(\"li\")),s=l.slideCount%l.options.slidesToScroll!=0?0:(l.slideCount-l.currentSlide)%l.options.slidesToScroll,e.data.message){case\"previous\":o=0===s?l.options.slidesToScroll:l.options.slidesToShow-s,l.slideCount>l.options.slidesToShow&&l.slideHandler(l.currentSlide-o,!1,i);break;case\"next\":o=0===s?l.options.slidesToScroll:s,l.slideCount>l.options.slidesToShow&&l.slideHandler(l.currentSlide+o,!1,i);break;case\"index\":var a=0===e.data.index?0:e.data.index||n.index()*l.options.slidesToScroll;l.slideHandler(l.checkNavigable(a),!1,i),n.children().trigger(\"focus\");break;default:return}},i.prototype.checkNavigable=function(t){var e,i;if(i=0,t>(e=this.getNavigableIndexes())[e.length-1])t=e[e.length-1];else for(var s in e){if(t\u003Ce[s]){t=i;break}i=e[s]}return t},i.prototype.cleanUpEvents=function(){var e=this;e.options.dots&&null!==e.$dots&&(t(\"li\",e.$dots).off(\"click.slick\",e.changeSlide).off(\"mouseenter.slick\",t.proxy(e.interrupt,e,!0)).off(\"mouseleave.slick\",t.proxy(e.interrupt,e,!1)),!0===e.options.accessibility&&e.$dots.off(\"keydown.slick\",e.keyHandler)),e.$slider.off(\"focus.slick blur.slick\"),!0===e.options.arrows&&e.slideCount>e.options.slidesToShow&&(e.$prevArrow&&e.$prevArrow.off(\"click.slick\",e.changeSlide),e.$nextArrow&&e.$nextArrow.off(\"click.slick\",e.changeSlide),!0===e.options.accessibility&&(e.$prevArrow&&e.$prevArrow.off(\"keydown.slick\",e.keyHandler),e.$nextArrow&&e.$nextArrow.off(\"keydown.slick\",e.keyHandler))),e.$list.off(\"touchstart.slick mousedown.slick\",e.swipeHandler),e.$list.off(\"touchmove.slick mousemove.slick\",e.swipeHandler),e.$list.off(\"touchend.slick mouseup.slick\",e.swipeHandler),e.$list.off(\"touchcancel.slick mouseleave.slick\",e.swipeHandler),e.$list.off(\"click.slick\",e.clickHandler),t(document).off(e.visibilityChange,e.visibility),e.cleanUpSlideEvents(),!0===e.options.accessibility&&e.$list.off(\"keydown.slick\",e.keyHandler),!0===e.options.focusOnSelect&&t(e.$slideTrack).children().off(\"click.slick\",e.selectHandler),t(window).off(\"orientationchange.slick.slick-\"+e.instanceUid,e.orientationChange),t(window).off(\"resize.slick.slick-\"+e.instanceUid,e.resize),t(\"[draggable!=true]\",e.$slideTrack).off(\"dragstart\",e.preventDefault),t(window).off(\"load.slick.slick-\"+e.instanceUid,e.setPosition)},i.prototype.cleanUpSlideEvents=function(){var e=this;e.$list.off(\"mouseenter.slick\",t.proxy(e.interrupt,e,!0)),e.$list.off(\"mouseleave.slick\",t.proxy(e.interrupt,e,!1))},i.prototype.cleanUpRows=function(){var t,e=this;e.options.rows>0&&((t=e.$slides.children().children()).removeAttr(\"style\"),e.$slider.empty().append(t))},i.prototype.clickHandler=function(t){!1===this.shouldClick&&(t.stopImmediatePropagation(),t.stopPropagation(),t.preventDefault())},i.prototype.destroy=function(e){var i=this;i.autoPlayClear(),i.touchObject={},i.cleanUpEvents(),t(\".slick-cloned\",i.$slider).detach(),i.$dots&&i.$dots.remove(),i.$prevArrow&&i.$prevArrow.length&&(i.$prevArrow.removeClass(\"slick-disabled slick-arrow slick-hidden\").removeAttr(\"aria-hidden aria-disabled tabindex\").css(\"display\",\"\"),i.htmlExpr.test(i.options.prevArrow)&&i.$prevArrow.remove()),i.$nextArrow&&i.$nextArrow.length&&(i.$nextArrow.removeClass(\"slick-disabled slick-arrow slick-hidden\").removeAttr(\"aria-hidden aria-disabled tabindex\").css(\"display\",\"\"),i.htmlExpr.test(i.options.nextArrow)&&i.$nextArrow.remove()),i.$slides&&(i.$slides.removeClass(\"slick-slide slick-active slick-center slick-visible slick-current\").removeAttr(\"aria-hidden\").removeAttr(\"data-slick-index\").each((function(){t(this).attr(\"style\",t(this).data(\"originalStyling\"))})),i.$slideTrack.children(this.options.slide).detach(),i.$slideTrack.detach(),i.$list.detach(),i.$slider.append(i.$slides)),i.cleanUpRows(),i.$slider.removeClass(\"slick-slider\"),i.$slider.removeClass(\"slick-initialized\"),i.$slider.removeClass(\"slick-dotted\"),i.unslicked=!0,e||i.$slider.trigger(\"destroy\",[i])},i.prototype.disableTransition=function(t){var e=this,i={};i[e.transitionType]=\"\",!1===e.options.fade?e.$slideTrack.css(i):e.$slides.eq(t).css(i)},i.prototype.fadeSlide=function(t,e){var i=this;!1===i.cssTransitions?(i.$slides.eq(t).css({zIndex:i.options.zIndex}),i.$slides.eq(t).animate({opacity:1},i.options.speed,i.options.easing,e)):(i.applyTransition(t),i.$slides.eq(t).css({opacity:1,zIndex:i.options.zIndex}),e&&setTimeout((function(){i.disableTransition(t),e.call()}),i.options.speed))},i.prototype.fadeSlideOut=function(t){var e=this;!1===e.cssTransitions?e.$slides.eq(t).animate({opacity:0,zIndex:e.options.zIndex-2},e.options.speed,e.options.easing):(e.applyTransition(t),e.$slides.eq(t).css({opacity:0,zIndex:e.options.zIndex-2}))},i.prototype.filterSlides=i.prototype.slickFilter=function(t){var e=this;null!==t&&(e.$slidesCache=e.$slides,e.unload(),e.$slideTrack.children(this.options.slide).detach(),e.$slidesCache.filter(t).appendTo(e.$slideTrack),e.reinit())},i.prototype.focusHandler=function(){var e=this;e.$slider.off(\"focus.slick blur.slick\").on(\"focus.slick\",\"*\",(function(i){var s=t(this);setTimeout((function(){e.options.pauseOnFocus&&s.is(\":focus\")&&(e.focussed=!0,e.autoPlay())}),0)})).on(\"blur.slick\",\"*\",(function(i){t(this);e.options.pauseOnFocus&&(e.focussed=!1,e.autoPlay())}))},i.prototype.getCurrent=i.prototype.slickCurrentSlide=function(){return this.currentSlide},i.prototype.getDotCount=function(){var t=this,e=0,i=0,s=0;if(!0===t.options.infinite)if(t.slideCount\u003C=t.options.slidesToShow)++s;else for(;e\u003Ct.slideCount;)++s,e=i+t.options.slidesToScroll,i+=t.options.slidesToScroll\u003C=t.options.slidesToShow?t.options.slidesToScroll:t.options.slidesToShow;else if(!0===t.options.centerMode)s=t.slideCount;else if(t.options.asNavFor)for(;e\u003Ct.slideCount;)++s,e=i+t.options.slidesToScroll,i+=t.options.slidesToScroll\u003C=t.options.slidesToShow?t.options.slidesToScroll:t.options.slidesToShow;else s=1+Math.ceil((t.slideCount-t.options.slidesToShow)\u002Ft.options.slidesToScroll);return s-1},i.prototype.getLeft=function(t){var e,i,s,o,l=this,n=0;return l.slideOffset=0,i=l.$slides.first().outerHeight(!0),!0===l.options.infinite?(l.slideCount>l.options.slidesToShow&&(l.slideOffset=l.slideWidth*l.options.slidesToShow*-1,o=-1,!0===l.options.vertical&&!0===l.options.centerMode&&(2===l.options.slidesToShow?o=-1.5:1===l.options.slidesToShow&&(o=-2)),n=i*l.options.slidesToShow*o),l.slideCount%l.options.slidesToScroll!=0&&t+l.options.slidesToScroll>l.slideCount&&l.slideCount>l.options.slidesToShow&&(t>l.slideCount?(l.slideOffset=(l.options.slidesToShow-(t-l.slideCount))*l.slideWidth*-1,n=(l.options.slidesToShow-(t-l.slideCount))*i*-1):(l.slideOffset=l.slideCount%l.options.slidesToScroll*l.slideWidth*-1,n=l.slideCount%l.options.slidesToScroll*i*-1))):t+l.options.slidesToShow>l.slideCount&&(l.slideOffset=(t+l.options.slidesToShow-l.slideCount)*l.slideWidth,n=(t+l.options.slidesToShow-l.slideCount)*i),l.slideCount\u003C=l.options.slidesToShow&&(l.slideOffset=0,n=0),!0===l.options.centerMode&&l.slideCount\u003C=l.options.slidesToShow?l.slideOffset=l.slideWidth*Math.floor(l.options.slidesToShow)\u002F2-l.slideWidth*l.slideCount\u002F2:!0===l.options.centerMode&&!0===l.options.infinite?l.slideOffset+=l.slideWidth*Math.floor(l.options.slidesToShow\u002F2)-l.slideWidth:!0===l.options.centerMode&&(l.slideOffset=0,l.slideOffset+=l.slideWidth*Math.floor(l.options.slidesToShow\u002F2)),e=!1===l.options.vertical?t*l.slideWidth*-1+l.slideOffset:t*i*-1+n,!0===l.options.variableWidth&&(s=l.slideCount\u003C=l.options.slidesToShow||!1===l.options.infinite?l.$slideTrack.children(\".slick-slide\").eq(t):l.$slideTrack.children(\".slick-slide\").eq(t+l.options.slidesToShow),e=!0===l.options.rtl?s[0]?-1*(l.$slideTrack.width()-s[0].offsetLeft-s.width()):0:s[0]?-1*s[0].offsetLeft:0,!0===l.options.centerMode&&(s=l.slideCount\u003C=l.options.slidesToShow||!1===l.options.infinite?l.$slideTrack.children(\".slick-slide\").eq(t):l.$slideTrack.children(\".slick-slide\").eq(t+l.options.slidesToShow+1),e=!0===l.options.rtl?s[0]?-1*(l.$slideTrack.width()-s[0].offsetLeft-s.width()):0:s[0]?-1*s[0].offsetLeft:0,e+=(l.$list.width()-s.outerWidth())\u002F2)),e},i.prototype.getOption=i.prototype.slickGetOption=function(t){return this.options[t]},i.prototype.getNavigableIndexes=function(){var t,e=this,i=0,s=0,o=[];for(!1===e.options.infinite?t=e.slideCount:(i=-1*e.options.slidesToScroll,s=-1*e.options.slidesToScroll,t=2*e.slideCount);i\u003Ct;)o.push(i),i=s+e.options.slidesToScroll,s+=e.options.slidesToScroll\u003C=e.options.slidesToShow?e.options.slidesToScroll:e.options.slidesToShow;return o},i.prototype.getSlick=function(){return this},i.prototype.getSlideCount=function(){var e,i,s,o=this;return s=!0===o.options.centerMode?Math.floor(o.$list.width()\u002F2):0,i=-1*o.swipeLeft+s,!0===o.options.swipeToSlide?(o.$slideTrack.find(\".slick-slide\").each((function(s,l){var n,a;if(n=t(l).outerWidth(),a=l.offsetLeft,!0!==o.options.centerMode&&(a+=n\u002F2),i\u003Ca+n)return e=l,!1})),Math.abs(t(e).attr(\"data-slick-index\")-o.currentSlide)||1):o.options.slidesToScroll},i.prototype.goTo=i.prototype.slickGoTo=function(t,e){this.changeSlide({data:{message:\"index\",index:parseInt(t)}},e)},i.prototype.init=function(e){var i=this;t(i.$slider).hasClass(\"slick-initialized\")||(t(i.$slider).addClass(\"slick-initialized\"),i.buildRows(),i.buildOut(),i.setProps(),i.startLoad(),i.loadSlider(),i.initializeEvents(),i.updateArrows(),i.updateDots(),i.checkResponsive(!0),i.focusHandler()),e&&i.$slider.trigger(\"init\",[i]),!0===i.options.accessibility&&i.initADA(),i.options.autoplay&&(i.paused=!1,i.autoPlay())},i.prototype.initADA=function(){var e=this,i=Math.ceil(e.slideCount\u002Fe.options.slidesToShow),s=e.getNavigableIndexes().filter((function(t){return t>=0&&t\u003Ce.slideCount}));e.$slides.add(e.$slideTrack.find(\".slick-cloned\")).attr({\"aria-hidden\":\"true\",tabindex:\"-1\"}).find(\"a, input, button, select\").attr({tabindex:\"-1\"}),null!==e.$dots&&(e.$slides.not(e.$slideTrack.find(\".slick-cloned\")).each((function(i){var o=s.indexOf(i);if(t(this).attr({role:\"tabpanel\",id:\"slick-slide\"+e.instanceUid+i,tabindex:-1}),-1!==o){var l=\"slick-slide-control\"+e.instanceUid+o;t(\"#\"+l).length&&t(this).attr({\"aria-describedby\":l})}})),e.$dots.attr(\"role\",\"tablist\").find(\"li\").each((function(o){var l=s[o];t(this).attr({role:\"presentation\"}),t(this).find(\"button\").first().attr({role:\"tab\",id:\"slick-slide-control\"+e.instanceUid+o,\"aria-controls\":\"slick-slide\"+e.instanceUid+l,\"aria-label\":o+1+\" of \"+i,\"aria-selected\":null,tabindex:\"-1\"})})).eq(e.currentSlide).find(\"button\").attr({\"aria-selected\":\"true\",tabindex:\"0\"}).end());for(var o=e.currentSlide,l=o+e.options.slidesToShow;o\u003Cl;o++)e.options.focusOnChange?e.$slides.eq(o).attr({tabindex:\"0\"}):e.$slides.eq(o).removeAttr(\"tabindex\");e.activateADA()},i.prototype.initArrowEvents=function(){var t=this;!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&(t.$prevArrow.off(\"click.slick\").on(\"click.slick\",{message:\"previous\"},t.changeSlide),t.$nextArrow.off(\"click.slick\").on(\"click.slick\",{message:\"next\"},t.changeSlide),!0===t.options.accessibility&&(t.$prevArrow.on(\"keydown.slick\",t.keyHandler),t.$nextArrow.on(\"keydown.slick\",t.keyHandler)))},i.prototype.initDotEvents=function(){var e=this;!0===e.options.dots&&e.slideCount>e.options.slidesToShow&&(t(\"li\",e.$dots).on(\"click.slick\",{message:\"index\"},e.changeSlide),!0===e.options.accessibility&&e.$dots.on(\"keydown.slick\",e.keyHandler)),!0===e.options.dots&&!0===e.options.pauseOnDotsHover&&e.slideCount>e.options.slidesToShow&&t(\"li\",e.$dots).on(\"mouseenter.slick\",t.proxy(e.interrupt,e,!0)).on(\"mouseleave.slick\",t.proxy(e.interrupt,e,!1))},i.prototype.initSlideEvents=function(){var e=this;e.options.pauseOnHover&&(e.$list.on(\"mouseenter.slick\",t.proxy(e.interrupt,e,!0)),e.$list.on(\"mouseleave.slick\",t.proxy(e.interrupt,e,!1)))},i.prototype.initializeEvents=function(){var e=this;e.initArrowEvents(),e.initDotEvents(),e.initSlideEvents(),e.$list.on(\"touchstart.slick mousedown.slick\",{action:\"start\"},e.swipeHandler),e.$list.on(\"touchmove.slick mousemove.slick\",{action:\"move\"},e.swipeHandler),e.$list.on(\"touchend.slick mouseup.slick\",{action:\"end\"},e.swipeHandler),e.$list.on(\"touchcancel.slick mouseleave.slick\",{action:\"end\"},e.swipeHandler),e.$list.on(\"click.slick\",e.clickHandler),t(document).on(e.visibilityChange,t.proxy(e.visibility,e)),!0===e.options.accessibility&&e.$list.on(\"keydown.slick\",e.keyHandler),!0===e.options.focusOnSelect&&t(e.$slideTrack).children().on(\"click.slick\",e.selectHandler),t(window).on(\"orientationchange.slick.slick-\"+e.instanceUid,t.proxy(e.orientationChange,e)),t(window).on(\"resize.slick.slick-\"+e.instanceUid,t.proxy(e.resize,e)),t(\"[draggable!=true]\",e.$slideTrack).on(\"dragstart\",e.preventDefault),t(window).on(\"load.slick.slick-\"+e.instanceUid,e.setPosition),t(e.setPosition)},i.prototype.initUI=function(){var t=this;!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&(t.$prevArrow.show(),t.$nextArrow.show()),!0===t.options.dots&&t.slideCount>t.options.slidesToShow&&t.$dots.show()},i.prototype.keyHandler=function(t){var e=this;t.target.tagName.match(\"TEXTAREA|INPUT|SELECT\")||(37===t.keyCode&&!0===e.options.accessibility?e.changeSlide({data:{message:!0===e.options.rtl?\"next\":\"previous\"}}):39===t.keyCode&&!0===e.options.accessibility&&e.changeSlide({data:{message:!0===e.options.rtl?\"previous\":\"next\"}}))},i.prototype.lazyLoad=function(){var e,i,s,o=this;function l(e){t(\"img[data-lazy]\",e).each((function(){var e=t(this),i=t(this).attr(\"data-lazy\"),s=t(this).attr(\"data-srcset\"),l=t(this).attr(\"data-sizes\")||o.$slider.attr(\"data-sizes\"),n=document.createElement(\"img\");n.onload=function(){e.animate({opacity:0},100,(function(){s&&(e.attr(\"srcset\",s),l&&e.attr(\"sizes\",l)),e.attr(\"src\",i).animate({opacity:1},200,(function(){e.removeAttr(\"data-lazy data-srcset data-sizes\").removeClass(\"slick-loading\")})),o.$slider.trigger(\"lazyLoaded\",[o,e,i])}))},n.onerror=function(){e.removeAttr(\"data-lazy\").removeClass(\"slick-loading\").addClass(\"slick-lazyload-error\"),o.$slider.trigger(\"lazyLoadError\",[o,e,i])},n.src=i}))}if(!0===o.options.centerMode?!0===o.options.infinite?s=(i=o.currentSlide+(o.options.slidesToShow\u002F2+1))+o.options.slidesToShow+2:(i=Math.max(0,o.currentSlide-(o.options.slidesToShow\u002F2+1)),s=o.options.slidesToShow\u002F2+1+2+o.currentSlide):(i=o.options.infinite?o.options.slidesToShow+o.currentSlide:o.currentSlide,s=Math.ceil(i+o.options.slidesToShow),!0===o.options.fade&&(i>0&&i--,s\u003C=o.slideCount&&s++)),e=o.$slider.find(\".slick-slide\").slice(i,s),\"anticipated\"===o.options.lazyLoad)for(var n=i-1,a=s,r=o.$slider.find(\".slick-slide\"),d=0;d\u003Co.options.slidesToScroll;d++)n\u003C0&&(n=o.slideCount-1),e=(e=e.add(r.eq(n))).add(r.eq(a)),n--,a++;l(e),o.slideCount\u003C=o.options.slidesToShow?l(o.$slider.find(\".slick-slide\")):o.currentSlide>=o.slideCount-o.options.slidesToShow?l(o.$slider.find(\".slick-cloned\").slice(0,o.options.slidesToShow)):0===o.currentSlide&&l(o.$slider.find(\".slick-cloned\").slice(-1*o.options.slidesToShow))},i.prototype.loadSlider=function(){var t=this;t.setPosition(),t.$slideTrack.css({opacity:1}),t.$slider.removeClass(\"slick-loading\"),t.initUI(),\"progressive\"===t.options.lazyLoad&&t.progressiveLazyLoad()},i.prototype.next=i.prototype.slickNext=function(){this.changeSlide({data:{message:\"next\"}})},i.prototype.orientationChange=function(){this.checkResponsive(),this.setPosition()},i.prototype.pause=i.prototype.slickPause=function(){this.autoPlayClear(),this.paused=!0},i.prototype.play=i.prototype.slickPlay=function(){var t=this;t.autoPlay(),t.options.autoplay=!0,t.paused=!1,t.focussed=!1,t.interrupted=!1},i.prototype.postSlide=function(e){var i=this;i.unslicked||(i.$slider.trigger(\"afterChange\",[i,e]),i.animating=!1,i.slideCount>i.options.slidesToShow&&i.setPosition(),i.swipeLeft=null,i.options.autoplay&&i.autoPlay(),!0===i.options.accessibility&&(i.initADA(),i.options.focusOnChange&&t(i.$slides.get(i.currentSlide)).attr(\"tabindex\",0).focus()))},i.prototype.prev=i.prototype.slickPrev=function(){this.changeSlide({data:{message:\"previous\"}})},i.prototype.preventDefault=function(t){t.preventDefault()},i.prototype.progressiveLazyLoad=function(e){e=e||1;var i,s,o,l,n,a=this,r=t(\"img[data-lazy]\",a.$slider);r.length?(i=r.first(),s=i.attr(\"data-lazy\"),o=i.attr(\"data-srcset\"),l=i.attr(\"data-sizes\")||a.$slider.attr(\"data-sizes\"),(n=document.createElement(\"img\")).onload=function(){o&&(i.attr(\"srcset\",o),l&&i.attr(\"sizes\",l)),i.attr(\"src\",s).removeAttr(\"data-lazy data-srcset data-sizes\").removeClass(\"slick-loading\"),!0===a.options.adaptiveHeight&&a.setPosition(),a.$slider.trigger(\"lazyLoaded\",[a,i,s]),a.progressiveLazyLoad()},n.onerror=function(){e\u003C3?setTimeout((function(){a.progressiveLazyLoad(e+1)}),500):(i.removeAttr(\"data-lazy\").removeClass(\"slick-loading\").addClass(\"slick-lazyload-error\"),a.$slider.trigger(\"lazyLoadError\",[a,i,s]),a.progressiveLazyLoad())},n.src=s):a.$slider.trigger(\"allImagesLoaded\",[a])},i.prototype.refresh=function(e){var i,s,o=this;s=o.slideCount-o.options.slidesToShow,!o.options.infinite&&o.currentSlide>s&&(o.currentSlide=s),o.slideCount\u003C=o.options.slidesToShow&&(o.currentSlide=0),i=o.currentSlide,o.destroy(!0),t.extend(o,o.initials,{currentSlide:i}),o.init(),e||o.changeSlide({data:{message:\"index\",index:i}},!1)},i.prototype.registerBreakpoints=function(){var e,i,s,o=this,l=o.options.responsive||null;if(\"array\"===t.type(l)&&l.length){for(e in o.respondTo=o.options.respondTo||\"window\",l)if(s=o.breakpoints.length-1,l.hasOwnProperty(e)){for(i=l[e].breakpoint;s>=0;)o.breakpoints[s]&&o.breakpoints[s]===i&&o.breakpoints.splice(s,1),s--;o.breakpoints.push(i),o.breakpointSettings[i]=l[e].settings}o.breakpoints.sort((function(t,e){return o.options.mobileFirst?t-e:e-t}))}},i.prototype.reinit=function(){var e=this;e.$slides=e.$slideTrack.children(e.options.slide).addClass(\"slick-slide\"),e.slideCount=e.$slides.length,e.currentSlide>=e.slideCount&&0!==e.currentSlide&&(e.currentSlide=e.currentSlide-e.options.slidesToScroll),e.slideCount\u003C=e.options.slidesToShow&&(e.currentSlide=0),e.registerBreakpoints(),e.setProps(),e.setupInfinite(),e.buildArrows(),e.updateArrows(),e.initArrowEvents(),e.buildDots(),e.updateDots(),e.initDotEvents(),e.cleanUpSlideEvents(),e.initSlideEvents(),e.checkResponsive(!1,!0),!0===e.options.focusOnSelect&&t(e.$slideTrack).children().on(\"click.slick\",e.selectHandler),e.setSlideClasses(\"number\"==typeof e.currentSlide?e.currentSlide:0),e.setPosition(),e.focusHandler(),e.paused=!e.options.autoplay,e.autoPlay(),e.$slider.trigger(\"reInit\",[e])},i.prototype.resize=function(){var e=this;t(window).width()!==e.windowWidth&&(clearTimeout(e.windowDelay),e.windowDelay=window.setTimeout((function(){e.windowWidth=t(window).width(),e.checkResponsive(),e.unslicked||e.setPosition()}),50))},i.prototype.removeSlide=i.prototype.slickRemove=function(t,e,i){var s=this;if(t=\"boolean\"==typeof t?!0===(e=t)?0:s.slideCount-1:!0===e?--t:t,s.slideCount\u003C1||t\u003C0||t>s.slideCount-1)return!1;s.unload(),!0===i?s.$slideTrack.children().remove():s.$slideTrack.children(this.options.slide).eq(t).remove(),s.$slides=s.$slideTrack.children(this.options.slide),s.$slideTrack.children(this.options.slide).detach(),s.$slideTrack.append(s.$slides),s.$slidesCache=s.$slides,s.reinit()},i.prototype.setCSS=function(t){var e,i,s=this,o={};!0===s.options.rtl&&(t=-t),e=\"left\"==s.positionProp?Math.ceil(t)+\"px\":\"0px\",i=\"top\"==s.positionProp?Math.ceil(t)+\"px\":\"0px\",o[s.positionProp]=t,!1===s.transformsEnabled?s.$slideTrack.css(o):(o={},!1===s.cssTransitions?(o[s.animType]=\"translate(\"+e+\", \"+i+\")\",s.$slideTrack.css(o)):(o[s.animType]=\"translate3d(\"+e+\", \"+i+\", 0px)\",s.$slideTrack.css(o)))},i.prototype.setDimensions=function(){var t=this;!1===t.options.vertical?!0===t.options.centerMode&&t.$list.css({padding:\"0px \"+t.options.centerPadding}):(t.$list.height(t.$slides.first().outerHeight(!0)*t.options.slidesToShow),!0===t.options.centerMode&&t.$list.css({padding:t.options.centerPadding+\" 0px\"})),t.listWidth=t.$list.width(),t.listHeight=t.$list.height(),!1===t.options.vertical&&!1===t.options.variableWidth?(t.slideWidth=Math.ceil(t.listWidth\u002Ft.options.slidesToShow),t.$slideTrack.width(Math.ceil(t.slideWidth*t.$slideTrack.children(\".slick-slide\").length))):!0===t.options.variableWidth?t.$slideTrack.width(5e3*t.slideCount):(t.slideWidth=Math.ceil(t.listWidth),t.$slideTrack.height(Math.ceil(t.$slides.first().outerHeight(!0)*t.$slideTrack.children(\".slick-slide\").length)));var e=t.$slides.first().outerWidth(!0)-t.$slides.first().width();!1===t.options.variableWidth&&t.$slideTrack.children(\".slick-slide\").width(t.slideWidth-e)},i.prototype.setFade=function(){var e,i=this;i.$slides.each((function(s,o){e=i.slideWidth*s*-1,!0===i.options.rtl?t(o).css({position:\"relative\",right:e,top:0,zIndex:i.options.zIndex-2,opacity:0}):t(o).css({position:\"relative\",left:e,top:0,zIndex:i.options.zIndex-2,opacity:0})})),i.$slides.eq(i.currentSlide).css({zIndex:i.options.zIndex-1,opacity:1})},i.prototype.setHeight=function(){var t=this;if(1===t.options.slidesToShow&&!0===t.options.adaptiveHeight&&!1===t.options.vertical){var e=t.$slides.eq(t.currentSlide).outerHeight(!0);t.$list.css(\"height\",e)}},i.prototype.setOption=i.prototype.slickSetOption=function(){var e,i,s,o,l,n=this,a=!1;if(\"object\"===t.type(arguments[0])?(s=arguments[0],a=arguments[1],l=\"multiple\"):\"string\"===t.type(arguments[0])&&(s=arguments[0],o=arguments[1],a=arguments[2],\"responsive\"===arguments[0]&&\"array\"===t.type(arguments[1])?l=\"responsive\":void 0!==arguments[1]&&(l=\"single\")),\"single\"===l)n.options[s]=o;else if(\"multiple\"===l)t.each(s,(function(t,e){n.options[t]=e}));else if(\"responsive\"===l)for(i in o)if(\"array\"!==t.type(n.options.responsive))n.options.responsive=[o[i]];else{for(e=n.options.responsive.length-1;e>=0;)n.options.responsive[e].breakpoint===o[i].breakpoint&&n.options.responsive.splice(e,1),e--;n.options.responsive.push(o[i])}a&&(n.unload(),n.reinit())},i.prototype.setPosition=function(){var t=this;t.setDimensions(),t.setHeight(),!1===t.options.fade?t.setCSS(t.getLeft(t.currentSlide)):t.setFade(),t.$slider.trigger(\"setPosition\",[t])},i.prototype.setProps=function(){var t=this,e=document.body.style;t.positionProp=!0===t.options.vertical?\"top\":\"left\",\"top\"===t.positionProp?t.$slider.addClass(\"slick-vertical\"):t.$slider.removeClass(\"slick-vertical\"),void 0===e.WebkitTransition&&void 0===e.MozTransition&&void 0===e.msTransition||!0===t.options.useCSS&&(t.cssTransitions=!0),t.options.fade&&(\"number\"==typeof t.options.zIndex?t.options.zIndex\u003C3&&(t.options.zIndex=3):t.options.zIndex=t.defaults.zIndex),void 0!==e.OTransform&&(t.animType=\"OTransform\",t.transformType=\"-o-transform\",t.transitionType=\"OTransition\",void 0===e.perspectiveProperty&&void 0===e.webkitPerspective&&(t.animType=!1)),void 0!==e.MozTransform&&(t.animType=\"MozTransform\",t.transformType=\"-moz-transform\",t.transitionType=\"MozTransition\",void 0===e.perspectiveProperty&&void 0===e.MozPerspective&&(t.animType=!1)),void 0!==e.webkitTransform&&(t.animType=\"webkitTransform\",t.transformType=\"-webkit-transform\",t.transitionType=\"webkitTransition\",void 0===e.perspectiveProperty&&void 0===e.webkitPerspective&&(t.animType=!1)),void 0!==e.msTransform&&(t.animType=\"msTransform\",t.transformType=\"-ms-transform\",t.transitionType=\"msTransition\",void 0===e.msTransform&&(t.animType=!1)),void 0!==e.transform&&!1!==t.animType&&(t.animType=\"transform\",t.transformType=\"transform\",t.transitionType=\"transition\"),t.transformsEnabled=t.options.useTransform&&null!==t.animType&&!1!==t.animType},i.prototype.setSlideClasses=function(t){var e,i,s,o,l=this;if(i=l.$slider.find(\".slick-slide\").removeClass(\"slick-active slick-center slick-current\").attr(\"aria-hidden\",\"true\"),l.$slides.eq(t).addClass(\"slick-current\"),!0===l.options.centerMode){var n=l.options.slidesToShow%2==0?1:0;e=Math.floor(l.options.slidesToShow\u002F2),!0===l.options.infinite&&(t>=e&&t\u003C=l.slideCount-1-e?l.$slides.slice(t-e+n,t+e+1).addClass(\"slick-active\").attr(\"aria-hidden\",\"false\"):(s=l.options.slidesToShow+t,i.slice(s-e+1+n,s+e+2).addClass(\"slick-active\").attr(\"aria-hidden\",\"false\")),0===t?i.eq(l.options.slidesToShow+l.slideCount+1).addClass(\"slick-center\"):t===l.slideCount-1&&i.eq(l.options.slidesToShow).addClass(\"slick-center\")),l.$slides.eq(t).addClass(\"slick-center\")}else t>=0&&t\u003C=l.slideCount-l.options.slidesToShow?l.$slides.slice(t,t+l.options.slidesToShow).addClass(\"slick-active\").attr(\"aria-hidden\",\"false\"):i.length\u003C=l.options.slidesToShow?i.addClass(\"slick-active\").attr(\"aria-hidden\",\"false\"):(o=l.slideCount%l.options.slidesToShow,s=!0===l.options.infinite?l.options.slidesToShow+t:t,l.options.slidesToShow==l.options.slidesToScroll&&l.slideCount-t\u003Cl.options.slidesToShow?i.slice(s-(l.options.slidesToShow-o),s+o).addClass(\"slick-active\").attr(\"aria-hidden\",\"false\"):i.slice(s,s+l.options.slidesToShow).addClass(\"slick-active\").attr(\"aria-hidden\",\"false\"));\"ondemand\"!==l.options.lazyLoad&&\"anticipated\"!==l.options.lazyLoad||l.lazyLoad()},i.prototype.setupInfinite=function(){var e,i,s,o=this;if(!0===o.options.fade&&(o.options.centerMode=!1),!0===o.options.infinite&&!1===o.options.fade&&(i=null,o.slideCount>o.options.slidesToShow)){for(s=!0===o.options.centerMode?o.options.slidesToShow+1:o.options.slidesToShow,e=o.slideCount;e>o.slideCount-s;e-=1)i=e-1,t(o.$slides[i]).clone(!0).attr(\"id\",\"\").attr(\"data-slick-index\",i-o.slideCount).prependTo(o.$slideTrack).addClass(\"slick-cloned\");for(e=0;e\u003Cs+o.slideCount;e+=1)i=e,t(o.$slides[i]).clone(!0).attr(\"id\",\"\").attr(\"data-slick-index\",i+o.slideCount).appendTo(o.$slideTrack).addClass(\"slick-cloned\");o.$slideTrack.find(\".slick-cloned\").find(\"[id]\").each((function(){t(this).attr(\"id\",\"\")}))}},i.prototype.interrupt=function(t){t||this.autoPlay(),this.interrupted=t},i.prototype.selectHandler=function(e){var i=this,s=t(e.target).is(\".slick-slide\")?t(e.target):t(e.target).parents(\".slick-slide\"),o=parseInt(s.attr(\"data-slick-index\"));o||(o=0),i.slideCount\u003C=i.options.slidesToShow?i.slideHandler(o,!1,!0):i.slideHandler(o)},i.prototype.slideHandler=function(t,e,i){var s,o,l,n,a,r,d=this;if(e=e||!1,!(!0===d.animating&&!0===d.options.waitForAnimate||!0===d.options.fade&&d.currentSlide===t))if(!1===e&&d.asNavFor(t),s=t,a=d.getLeft(s),n=d.getLeft(d.currentSlide),d.currentLeft=null===d.swipeLeft?n:d.swipeLeft,!1===d.options.infinite&&!1===d.options.centerMode&&(t\u003C0||t>d.getDotCount()*d.options.slidesToScroll))!1===d.options.fade&&(s=d.currentSlide,!0!==i&&d.slideCount>d.options.slidesToShow?d.animateSlide(n,(function(){d.postSlide(s)})):d.postSlide(s));else if(!1===d.options.infinite&&!0===d.options.centerMode&&(t\u003C0||t>d.slideCount-d.options.slidesToScroll))!1===d.options.fade&&(s=d.currentSlide,!0!==i&&d.slideCount>d.options.slidesToShow?d.animateSlide(n,(function(){d.postSlide(s)})):d.postSlide(s));else{if(d.options.autoplay&&clearInterval(d.autoPlayTimer),o=s\u003C0?d.slideCount%d.options.slidesToScroll!=0?d.slideCount-d.slideCount%d.options.slidesToScroll:d.slideCount+s:s>=d.slideCount?d.slideCount%d.options.slidesToScroll!=0?0:s-d.slideCount:s,d.animating=!0,d.$slider.trigger(\"beforeChange\",[d,d.currentSlide,o]),l=d.currentSlide,d.currentSlide=o,d.setSlideClasses(d.currentSlide),d.options.asNavFor&&(r=(r=d.getNavTarget()).slick(\"getSlick\")).slideCount\u003C=r.options.slidesToShow&&r.setSlideClasses(d.currentSlide),d.updateDots(),d.updateArrows(),!0===d.options.fade)return!0!==i?(d.fadeSlideOut(l),d.fadeSlide(o,(function(){d.postSlide(o)}))):d.postSlide(o),void d.animateHeight();!0!==i&&d.slideCount>d.options.slidesToShow?d.animateSlide(a,(function(){d.postSlide(o)})):d.postSlide(o)}},i.prototype.startLoad=function(){var t=this;!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&(t.$prevArrow.hide(),t.$nextArrow.hide()),!0===t.options.dots&&t.slideCount>t.options.slidesToShow&&t.$dots.hide(),t.$slider.addClass(\"slick-loading\")},i.prototype.swipeDirection=function(){var t,e,i,s,o=this;return t=o.touchObject.startX-o.touchObject.curX,e=o.touchObject.startY-o.touchObject.curY,i=Math.atan2(e,t),(s=Math.round(180*i\u002FMath.PI))\u003C0&&(s=360-Math.abs(s)),s\u003C=45&&s>=0||s\u003C=360&&s>=315?!1===o.options.rtl?\"left\":\"right\":s>=135&&s\u003C=225?!1===o.options.rtl?\"right\":\"left\":!0===o.options.verticalSwiping?s>=35&&s\u003C=135?\"down\":\"up\":\"vertical\"},i.prototype.swipeEnd=function(t){var e,i,s=this;if(s.dragging=!1,s.swiping=!1,s.scrolling)return s.scrolling=!1,!1;if(s.interrupted=!1,s.shouldClick=!(s.touchObject.swipeLength>10),void 0===s.touchObject.curX)return!1;if(!0===s.touchObject.edgeHit&&s.$slider.trigger(\"edge\",[s,s.swipeDirection()]),s.touchObject.swipeLength>=s.touchObject.minSwipe){switch(i=s.swipeDirection()){case\"left\":case\"down\":e=s.options.swipeToSlide?s.checkNavigable(s.currentSlide+s.getSlideCount()):s.currentSlide+s.getSlideCount(),s.currentDirection=0;break;case\"right\":case\"up\":e=s.options.swipeToSlide?s.checkNavigable(s.currentSlide-s.getSlideCount()):s.currentSlide-s.getSlideCount(),s.currentDirection=1}\"vertical\"!=i&&(s.slideHandler(e),s.touchObject={},s.$slider.trigger(\"swipe\",[s,i]))}else s.touchObject.startX!==s.touchObject.curX&&(s.slideHandler(s.currentSlide),s.touchObject={})},i.prototype.swipeHandler=function(t){var e=this;if(!(!1===e.options.swipe||\"ontouchend\"in document&&!1===e.options.swipe||!1===e.options.draggable&&-1!==t.type.indexOf(\"mouse\")))switch(e.touchObject.fingerCount=t.originalEvent&&void 0!==t.originalEvent.touches?t.originalEvent.touches.length:1,e.touchObject.minSwipe=e.listWidth\u002Fe.options.touchThreshold,!0===e.options.verticalSwiping&&(e.touchObject.minSwipe=e.listHeight\u002Fe.options.touchThreshold),t.data.action){case\"start\":e.swipeStart(t);break;case\"move\":e.swipeMove(t);break;case\"end\":e.swipeEnd(t)}},i.prototype.swipeMove=function(t){var e,i,s,o,l,n,a=this;return l=void 0!==t.originalEvent?t.originalEvent.touches:null,!(!a.dragging||a.scrolling||l&&1!==l.length)&&(e=a.getLeft(a.currentSlide),a.touchObject.curX=void 0!==l?l[0].pageX:t.clientX,a.touchObject.curY=void 0!==l?l[0].pageY:t.clientY,a.touchObject.swipeLength=Math.round(Math.sqrt(Math.pow(a.touchObject.curX-a.touchObject.startX,2))),n=Math.round(Math.sqrt(Math.pow(a.touchObject.curY-a.touchObject.startY,2))),!a.options.verticalSwiping&&!a.swiping&&n>4?(a.scrolling=!0,!1):(!0===a.options.verticalSwiping&&(a.touchObject.swipeLength=n),i=a.swipeDirection(),void 0!==t.originalEvent&&a.touchObject.swipeLength>4&&(a.swiping=!0,t.preventDefault()),o=(!1===a.options.rtl?1:-1)*(a.touchObject.curX>a.touchObject.startX?1:-1),!0===a.options.verticalSwiping&&(o=a.touchObject.curY>a.touchObject.startY?1:-1),s=a.touchObject.swipeLength,a.touchObject.edgeHit=!1,!1===a.options.infinite&&(0===a.currentSlide&&\"right\"===i||a.currentSlide>=a.getDotCount()&&\"left\"===i)&&(s=a.touchObject.swipeLength*a.options.edgeFriction,a.touchObject.edgeHit=!0),!1===a.options.vertical?a.swipeLeft=e+s*o:a.swipeLeft=e+s*(a.$list.height()\u002Fa.listWidth)*o,!0===a.options.verticalSwiping&&(a.swipeLeft=e+s*o),!0!==a.options.fade&&!1!==a.options.touchMove&&(!0===a.animating?(a.swipeLeft=null,!1):void a.setCSS(a.swipeLeft))))},i.prototype.swipeStart=function(t){var e,i=this;if(i.interrupted=!0,1!==i.touchObject.fingerCount||i.slideCount\u003C=i.options.slidesToShow)return i.touchObject={},!1;void 0!==t.originalEvent&&void 0!==t.originalEvent.touches&&(e=t.originalEvent.touches[0]),i.touchObject.startX=i.touchObject.curX=void 0!==e?e.pageX:t.clientX,i.touchObject.startY=i.touchObject.curY=void 0!==e?e.pageY:t.clientY,i.dragging=!0},i.prototype.unfilterSlides=i.prototype.slickUnfilter=function(){var t=this;null!==t.$slidesCache&&(t.unload(),t.$slideTrack.children(this.options.slide).detach(),t.$slidesCache.appendTo(t.$slideTrack),t.reinit())},i.prototype.unload=function(){var e=this;t(\".slick-cloned\",e.$slider).remove(),e.$dots&&e.$dots.remove(),e.$prevArrow&&e.htmlExpr.test(e.options.prevArrow)&&e.$prevArrow.remove(),e.$nextArrow&&e.htmlExpr.test(e.options.nextArrow)&&e.$nextArrow.remove(),e.$slides.removeClass(\"slick-slide slick-active slick-visible slick-current\").attr(\"aria-hidden\",\"true\").css(\"width\",\"\")},i.prototype.unslick=function(t){var e=this;e.$slider.trigger(\"unslick\",[e,t]),e.destroy()},i.prototype.updateArrows=function(){var t=this;Math.floor(t.options.slidesToShow\u002F2),!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&!t.options.infinite&&(t.$prevArrow.removeClass(\"slick-disabled\").attr(\"aria-disabled\",\"false\"),t.$nextArrow.removeClass(\"slick-disabled\").attr(\"aria-disabled\",\"false\"),0===t.currentSlide?(t.$prevArrow.addClass(\"slick-disabled\").attr(\"aria-disabled\",\"true\"),t.$nextArrow.removeClass(\"slick-disabled\").attr(\"aria-disabled\",\"false\")):(t.currentSlide>=t.slideCount-t.options.slidesToShow&&!1===t.options.centerMode||t.currentSlide>=t.slideCount-1&&!0===t.options.centerMode)&&(t.$nextArrow.addClass(\"slick-disabled\").attr(\"aria-disabled\",\"true\"),t.$prevArrow.removeClass(\"slick-disabled\").attr(\"aria-disabled\",\"false\")))},i.prototype.updateDots=function(){var t=this;null!==t.$dots&&(t.$dots.find(\"li\").removeClass(\"slick-active\").end(),t.$dots.find(\"li\").eq(Math.floor(t.currentSlide\u002Ft.options.slidesToScroll)).addClass(\"slick-active\"))},i.prototype.visibility=function(){var t=this;t.options.autoplay&&(document[t.hidden]?t.interrupted=!0:t.interrupted=!1)},t.fn.slick=function(){var t,e,s=this,o=arguments[0],l=Array.prototype.slice.call(arguments,1),n=s.length;for(t=0;t\u003Cn;t++)if(\"object\"==typeof o||void 0===o?s[t].slick=new i(s[t],o):e=s[t].slick[o].apply(s[t].slick,l),void 0!==e)return e;return s}})),function(t){\"use strict\";const e=0==t(\"body.postx-admin-page\").length;function i(){t(document).scrollTop()>1e3?(t(\".ultp-toc-backtotop\").addClass(\"tocshow\"),t(\".wp-block-ultimate-post-table-of-content\").addClass(\"ultp-toc-scroll\")):(t(\".ultp-toc-backtotop\").removeClass(\"tocshow\"),t(\".wp-block-ultimate-post-table-of-content\").removeClass(\"ultp-toc-scroll\"))}function s(t,e,i){e==i?t.find(\".ultp-next-page-numbers\").hide():t.find(\".ultp-next-page-numbers\").show(),e>1?t.find(\".ultp-prev-page-numbers\").show():t.find(\".ultp-prev-page-numbers\").hide(),e>3?t.find(\".ultp-first-dot\").show():t.find(\".ultp-first-dot\").hide(),e>2?t.find(\".ultp-first-pages\").show():t.find(\".ultp-first-pages\").hide(),i>e+2?t.find(\".ultp-last-dot\").show():t.find(\".ultp-last-dot\").hide(),i>e+1?t.find(\".ultp-last-pages\").show():t.find(\".ultp-last-pages\").hide()}function o(e,i,s){let o=i\u003C=2?[1,2,3]:s==i?[s-2,s-1,s]:[i-1,i,i+1],l=0;e.find(\".ultp-center-item\").each((function(){i==o[l]&&t(this).addClass(\"pagination-active\"),t(this).find(\"a\").blur(),t(this).attr(\"data-current\",o[l]).find(\"a\").text(o[l]),l++})),e.find(\".ultp-prev-page-numbers a\").blur(),e.find(\".ultp-next-page-numbers a\").blur()}function l(t,e){null!=e&&sessionStorage.setItem(t,e)}function n(){t(\".wp-block-ultimate-post-post-slider-1, .wp-block-ultimate-post-post-slider-2\").each((function(){const e=\"#\"+t(this).attr(\"id\");let i=t(e).find(\".ultp-block-items-wrap\");t(this).parent(\".ultp-shortcode\")&&(i=t(this).find(\".ultp-block-items-wrap\"));let s={arrows:!0,dots:!!i.data(\"dots\"),infinite:!0,speed:500,slidesToShow:i.data(\"slidelg\")||1,slidesToScroll:1,autoplay:!!i.data(\"autoplay\"),autoplaySpeed:i.data(\"slidespeed\")||3e3,cssEase:\"linear\",prevArrow:i.parent().find(\".ultp-slick-prev\").html(),nextArrow:i.parent().find(\".ultp-slick-next\").html()},o=\"slide2\"==i.data(\"layout\")||\"slide3\"==i.data(\"layout\")||\"slide5\"==i.data(\"layout\")||\"slide6\"==i.data(\"layout\")||\"slide8\"==i.data(\"layout\");i.data(\"layout\")?i.data(\"fade\")&&o?s.fade=!!i.data(\"fade\"):!i.data(\"fade\")&&o?(s.slidesToShow=i.data(\"slidelg\")||1,s.responsive=[{breakpoint:991,settings:{slidesToShow:i.data(\"slidesm\")||1,slidesToScroll:1}},{breakpoint:767,settings:{slidesToShow:i.data(\"slidexs\")||1,slidesToScroll:1}}]):(s.slidesToShow=i.data(\"slidelg\")||1,s.centerMode=!0,s.centerPadding=`${i.data(\"paddlg\")}px`||100,s.responsive=[{breakpoint:991,settings:{slidesToShow:i.data(\"slidesm\")||1,slidesToScroll:1,centerPadding:`${i.data(\"paddsm\")}px`||50}},{breakpoint:767,settings:{slidesToShow:i.data(\"slidexs\")||1,slidesToScroll:1,centerPadding:`${i.data(\"paddxs\")}px`||50}}]):i.data(\"slidelg\")\u003C2?s.fade=!!i.data(\"fade\"):s.responsive=[{breakpoint:1024,settings:{slidesToShow:i.data(\"slidesm\")||1,slidesToScroll:1}},{breakpoint:600,settings:{slidesToShow:i.data(\"slidexs\")||1,slidesToScroll:1}}],i.not(\".slick-initialized\").slick(s)}))}t(\".ultp-post-share-item a\").each((function(){t(this).on(\"click\",(function(){let e,i,s=t(this).attr(\"url\");e=window.screen.width\u002F2-410,i=window.screen.height\u002F2-300;let o=\"height=500,width=800,resizable=yes,left=\"+e+\",top=\"+i+\",screenX=\"+e+\",screenY=\"+i;window.open(s,\"sharer\",o);let l=t(this).parents(\".ultp-post-share-item-inner-block\").attr(\"postId\"),n=t(this).parents(\".ultp-post-share-item-inner-block\").attr(\"count\");return t.ajax({url:ultp_data_frontend.ajax,type:\"POST\",data:{action:\"ultp_share_count\",shareCount:n,postId:l,wpnonce:ultp_data_frontend.security},error:function(t){console.log(\"Error occured.please try again\"+t.statusText+t.responseText)}}),!1}))})),t(window).on(\"scroll\",(function(){t(window).scrollTop()+window.innerHeight>=t(\"footer\")?.offset()?.top?t(\".wp-block-ultimate-post-post_share .ultp-block-wrapper .ultp-disable-sticky-footer\").addClass(\"remove-sticky\"):t(\".wp-block-ultimate-post-post_share .ultp-block-wrapper .ultp-disable-sticky-footer\").removeClass(\"remove-sticky\")})),t(\".ultp-news-ticker\").each((function(){t(this).UltpSlider({type:t(this).data(\"type\"),direction:t(this).data(\"direction\"),speed:t(this).data(\"speed\"),pauseOnHover:1==t(this).data(\"hover\"),controls:{prev:t(this).closest(\".ultp-newsTicker-wrap\").find(\".ultp-news-ticker-prev\"),next:t(this).closest(\".ultp-newsTicker-wrap\").find(\".ultp-news-ticker-next\"),toggle:t(this).closest(\".ultp-newsTicker-wrap\").find(\".ultp-news-ticker-pause\")}})})),t(\".ultp-toc-backtotop\").on(\"click\",(function(e){e.preventDefault(),t(\"html, body\").animate({scrollTop:0},\"slow\")})),t(window).on(\"scroll\",(function(){i()})),i(),t(\".ultp-collapsible-open\").on(\"click\",(function(e){t(this).closest(\".ultp-collapsible-toggle\").removeClass(\"ultp-toggle-collapsed\"),t(this).parents(\".ultp-block-toc\").find(\".ultp-block-toc-body\").show()})),t(\".ultp-collapsible-hide\").on(\"click\",(function(e){t(this).closest(\".ultp-collapsible-toggle\").addClass(\"ultp-toggle-collapsed\"),t(this).parents(\".ultp-block-toc\").find(\".ultp-block-toc-body\").hide()})),t(\".ultp-toc-lists li a\").on(\"click\",(function(){t([document.documentElement,document.body]).animate({scrollTop:t(t(this).attr(\"href\")).offset().top-50},500)})),t(document).ready((function(){if(t(\".ultp-flex-menu\").length>0){const e=t(\"ul.ultp-flex-menu\").data(\"name\");t(\"ul.ultp-flex-menu\").flexMenu({linkText:e,linkTextAll:e,linkTitle:e})}})),t(document).on(\"click\",(function(e){0===t(e.target).closest(\".flexMenu-viewMore\").length&&(t(\".flexMenu-viewMore\").removeClass(\"active\"),t(\".flexMenu-viewMore\").children(\"ul.flexMenu-popup\").css(\"display\",\"none\"))})),t(document).on(\"click\",\".ultp-filter-navigation .flexMenu-popup .filter-item\",(function(e){t(\".flexMenu-viewMore\").removeClass(\"active\"),t(\".flexMenu-viewMore\").children(\"ul.flexMenu-popup\").css(\"display\",\"none\")})),t(\".ultp-post-grid-parent\").each((function(){const e=t(this).find(\".ultp-post-grid-block\"),i=t(this).find(\".ultp-pagination-block\"),s=e.find(\".pagination-block-html > div\");i.length\u003C1||s.length\u003C1||(i.attr(\"class\").split(\" \").forEach((t=>{s.addClass(t)})),i.html(s))})),t(document).off(\"click\",\".ultp-pagination-ajax-action li, .ultp-loadmore-action, .ultp-prev-action, .ultp-next-action\",(function(t){})),t(document).on(\"click\",\".ultp-prev-action, .ultp-next-action\",(function(e){e.preventDefault();let i=t(this).closest(\".ultp-next-prev-wrap\"),s=i.closest(\".ultp-block-wrapper\").find(\".ultp-block-items-wrap\"),o=parseInt(i.data(\"pagenum\")),n=parseInt(i.data(\"pages\")),a=i.closest(\".ultp-block-wrapper\");const r=i.parents(\".ultp-post-grid-parent\");if(s.length\u003C1){const e=i.data(\"for\");e&&(s=t(\".\"+e+\" .ultp-block-items-wrap\"))}if(i.is(\".ultp-disable-editor-click\"))return;if(t(this).hasClass(\"ultp-prev-action\")){if(t(this).hasClass(\"ultp-disable\"))return;o--,i.data(\"pagenum\",o),i.find(\".ultp-prev-action, .ultp-next-action\").removeClass(\"ultp-disable\"),1==o&&t(this).addClass(\"ultp-disable\")}if(t(this).hasClass(\"ultp-next-action\")){if(t(this).hasClass(\"ultp-disable\"))return;o++,i.data(\"pagenum\",o),i.find(\".ultp-prev-action, .ultp-next-action\").removeClass(\"ultp-disable\"),o==n&&t(this).addClass(\"ultp-disable\")}let d=0!=i.parents(\".ultp-shortcode\").length&&\"no\"==i.data(\"selfpostid\")?i.parents(\".ultp-shortcode\").data(\"postid\"):i.data(\"postid\");t(this).closest(\".ultp-builder-content\").length>0&&(d=t(this).closest(\".ultp-builder-content\").data(\"postid\"));let c=\"\",p=t(this).parents(\".widget_block:first\");if(p.length>0){let t=p.attr(\"id\").split(\"-\");c=t[t.length-1]}const h=sessionStorage.getItem(\"ultp_uniqueIds\"),f=JSON.stringify(s.find(\".ultp-current-unique-posts\").data(\"current-unique-posts\")),m=i.data(\"filter-value\")||\"\",g={};Array.isArray(m)&&m.length>0&&(g.filterShow=!0,g.checkFilter=!0,g.isAdv=!0,g.author=i.data(\"filter-author\")||\"\",g.order=i.data(\"filter-order\")||\"\",g.orderby=i.data(\"filter-orderby\")||\"\",g.adv_sort=i.data(\"filter-adv-sort\")||\"\"),t.ajax({url:ultp_data_frontend.ajax,type:\"POST\",data:{action:\"ultp_next_prev\",paged:o,blockId:i.data(\"blockid\"),postId:d,exclude:i.data(\"expost\"),blockName:i.data(\"blockname\"),builder:i.data(\"builder\"),filterValue:m,filterType:i.data(\"filter-type\")||\"\",widgetBlockId:c,ultpUniqueIds:h||[],ultpCurrentUniquePosts:f||[],...g,wpnonce:ultp_data_frontend.security},beforeSend:function(){a.length\u003C1&&r.length>0?r.find(\".ultp-block-wrapper\").addClass(\"ultp-loading-active\"):a.addClass(\"ultp-loading-active\")},success:function(e){e&&(s.html(e),l(\"ultp_uniqueIds\",JSON.stringify(s.find(\".ultp-current-unique-posts\").data(\"ultp-unique-ids\"))),t(window).scrollTop()>s.offset().top&&t([document.documentElement,document.body]).animate({scrollTop:s.offset().top-80},100))},complete:function(){a.length\u003C1&&r.length>0?r.find(\".ultp-block-wrapper\").removeClass(\"ultp-loading-active\"):a.removeClass(\"ultp-loading-active\"),u()},error:function(t){console.log(\"Error occured.please try again\"+t.statusText+t.responseText),i.closest(\".ultp-block-wrapper\").removeClass(\"ultp-loading-active\")}})})),t(document).on(\"click\",\".ultp-loadmore-action\",(function(e){if(t(this).is(\".ultp-disable-editor-click\"))return;e.preventDefault();let i=t(this),s=i.closest(\".ultp-block-wrapper\"),o=!1;if(s.length\u003C1){const e=i.data(\"for\");e&&(s=t(\".\"+e+\" .ultp-block-wrapper\"),o=s.length>0)}let n=parseInt(i.data(\"pagenum\")),a=parseInt(i.data(\"pages\"));if(i.hasClass(\"ultp-disable\"))return;n++,i.data(\"pagenum\",n),n==a?t(this).addClass(\"ultp-disable\"):t(this).removeClass(\"ultp-disable\");let r=0!=i.parents(\".ultp-shortcode\").length&&\"no\"==i.data(\"selfpostid\")?i.parents(\".ultp-shortcode\").data(\"postid\"):i.data(\"postid\");i.closest(\".ultp-builder-content\").length>0&&(r=i.closest(\".ultp-builder-content\").data(\"postid\"));let d=\"\",c=t(this).parents(\".widget_block:first\");if(c.length>0){let t=c.attr(\"id\").split(\"-\");d=t[t.length-1]}const p=sessionStorage.getItem(\"ultp_uniqueIds\"),u=JSON.stringify(s.find(\".ultp-current-unique-posts\").data(\"current-unique-posts\")),h=i.data(\"filter-value\")||\"\",f={};Array.isArray(h)&&h.length>0&&(f.filterShow=!0,f.checkFilter=!0,f.isAdv=!0,f.author=i.data(\"filter-author\")||\"\",f.order=i.data(\"filter-order\")||\"\",f.orderby=i.data(\"filter-orderby\")||\"\",f.adv_sort=i.data(\"filter-adv-sort\")||\"\"),t.ajax({url:ultp_data_frontend.ajax,type:\"POST\",data:{action:\"ultp_next_prev\",paged:n,blockId:i.data(\"blockid\"),postId:r,blockName:i.data(\"blockname\"),builder:i.data(\"builder\"),exclude:i.data(\"expost\"),filterValue:h,filterType:i.data(\"filter-type\")||\"\",widgetBlockId:d,ultpUniqueIds:p||[],ultpCurrentUniquePosts:u||[],...f,wpnonce:ultp_data_frontend.security},beforeSend:function(){s.addClass(\"ultp-loading-active\"),o&&i.find(\".ultp-spin\").css(\"display\",\"flex\")},success:function(e){if(e){s.find(\".ultp-block-row\").css(\"max-height\",\"unset\"),s.find(\".ultp-current-unique-posts\").remove();const o=s.find(\".ultp-loadmore-insert-before\");if(o.length)i.data(\"blockname\").includes(\"post-module\")&&t('\u003Cdiv style=\"clear:left;width:100%;padding-block:15px;\">\u003C\u002Fdiv>').insertBefore(o),t(e).insertBefore(o);else{const o=s.find(\".ultp-block-items-wrap\");i.data(\"blockname\").includes(\"post-module\")&&o.append(t('\u003Cdiv style=\"clear:left;width:100%;padding-block:15px;\">\u003C\u002Fdiv>')),o.append(e)}l(\"ultp_uniqueIds\",JSON.stringify(s.find(\".ultp-current-unique-posts\").data(\"ultp-unique-ids\")))}},complete:function(){s.removeClass(\"ultp-loading-active\"),o&&i.find(\".ultp-spin\").css(\"display\",\"none\")},error:function(t){console.log(\"Error occured.please try again\"+t.statusText+t.responseText),s.removeClass(\"ultp-loading-active\"),o&&i.find(\".ultp-spin\").css(\"display\",\"none\")}})})),t(document).on(\"click\",\".ultp-filter-wrap li a\",(function(e){if(e.preventDefault(),t(this).closest(\"li\").hasClass(\"filter-item\")){let e=t(this),i=e.closest(\".ultp-filter-wrap\"),s=e.closest(\".ultp-block-wrapper\");const o=e.parents(\".ultp-post-grid-parent\");if(i.find(\"a\").removeClass(\"filter-active\"),e.addClass(\"filter-active\"),i.is(\".ultp-disable-editor-click\"))return;let n=0!=i.parents(\".ultp-shortcode\").length&&\"no\"==i.data(\"selfpostid\")?i.parents(\".ultp-shortcode\").data(\"postid\"):i.data(\"postid\");e.closest(\".ultp-builder-content\").length>0&&(n=e.closest(\".ultp-builder-content\").data(\"postid\"));let a=\"\",r=t(this).parents(\".widget_block:first\");if(r.length>0){let t=r.attr(\"id\").split(\"-\");a=t[t.length-1]}const d=sessionStorage.getItem(\"ultp_uniqueIds\"),c=JSON.stringify(s.find(\".ultp-current-unique-posts\").data(\"current-unique-posts\"));i.data(\"blockid\")&&t.ajax({url:ultp_data_frontend.ajax,type:\"POST\",data:{action:\"ultp_filter\",taxtype:i.data(\"taxtype\"),taxonomy:e.data(\"taxonomy\"),blockId:i.data(\"blockid\"),postId:n,blockName:i.data(\"blockname\"),widgetBlockId:a,ultpUniqueIds:d||[],ultpCurrentUniquePosts:c||[],wpnonce:ultp_data_frontend.security},beforeSend:function(){s.addClass(\"ultp-loading-active\")},success:function(e){s.find(\".ultp-block-items-wrap\").html(e?.data?.filteredData?.blocks),\"loadMore\"==e?.data?.filteredData?.paginationType&&e?.data?.filteredData?.paginationShow?s.find(\".ultp-loadmore\").replaceWith(e?.data?.filteredData?.pagination):\"navigation\"==e?.data?.filteredData?.paginationType?s.find(\".ultp-next-prev-wrap\").replaceWith(e?.data?.filteredData?.pagination):\"pagination\"==e?.data?.filteredData?.paginationType&&s.find(\".ultp-pagination-wrap\").replaceWith(e?.data?.filteredData?.pagination),e?.data?.filteredData?.pagination&&o.length>0&&o.data(\"pagi\")?.map((i=>{let s=[];if(\"loadMore\"===e?.data?.filteredData?.paginationType?(s=t(\".ultp-loadmore.\"+i),s.length):s=t(\".\"+i+\"[data-for]\"),s.length>0){const i=t(e.data.filteredData.pagination);s.attr(\"class\").split(\" \").forEach((t=>i.addClass(t))),s.replaceWith(i)}}))},complete:function(){s.removeClass(\"ultp-loading-active\"),l(\"ultp_uniqueIds\",JSON.stringify(s.find(\".ultp-current-unique-posts\").data(\"ultp-unique-ids\"))),u()},error:function(t){console.log(\"Error occured.please try again\"+t.statusText+t.responseText),s.removeClass(\"ultp-loading-active\")}})}})),t(\".ultp-current-unique-posts\").length>0&&t(\".ultp-current-unique-posts\").each((function(){l(\"ultp_uniqueIds\",JSON.stringify(t(this).data(\"ultp-unique-ids\")))})),t(document).on(\"click\",\".ultp-pagination-ajax-action li\",(function(e){e.preventDefault();let i=t(this),n=i.closest(\".ultp-pagination-ajax-action\"),a=i.closest(\".ultp-block-wrapper\");const r=n.attr(\"data-blockid\");if(a.length\u003C1){const e=n.data(\"for\");e&&(a=t(\".\"+e+\" .ultp-block-wrapper\"))}if(n.is(\".ultp-disable-editor-click\"))return;let d=1,c=n.attr(\"data-pages\");i.attr(\"data-current\")?(d=Number(i.attr(\"data-current\")),n.attr(\"data-paged\",d).find(\"li\").removeClass(\"pagination-active\"),o(n,d,c),s(n,d,c)):i.hasClass(\"ultp-prev-page-numbers\")?(d=Number(n.attr(\"data-paged\"))-1,n.attr(\"data-paged\",d).find(\"li\").removeClass(\"pagination-active\"),o(n,d,c),s(n,d,c)):i.hasClass(\"ultp-next-page-numbers\")&&(d=Number(n.attr(\"data-paged\"))+1,n.attr(\"data-paged\",d).find(\"li\").removeClass(\"pagination-active\"),o(n,d,c),s(n,d,c));let p=0!=n.parents(\".ultp-shortcode\").length&&\"no\"==n.data(\"selfpostid\")?n.parents(\".ultp-shortcode\").data(\"postid\"):n.data(\"postid\");i.closest(\".ultp-builder-content\").length>0&&(p=i.closest(\".ultp-builder-content\").data(\"postid\"));let h=\"\",f=t(this).parents(\".widget_block:first\");if(f.length>0){let t=f.attr(\"id\").split(\"-\");h=t[t.length-1]}const m=sessionStorage.getItem(\"ultp_uniqueIds\"),g=JSON.stringify(a.find(\".ultp-current-unique-posts\").data(\"current-unique-posts\")),v=n.data(\"filter-value\")||\"\",b={};Array.isArray(v)&&v.length>0&&(b.filterShow=!0,b.checkFilter=!0,b.isAdv=!0,b.author=n.data(\"filter-author\")||\"\",b.order=n.data(\"filter-order\")||\"\",b.orderby=n.data(\"filter-orderby\")||\"\",b.adv_sort=n.data(\"filter-adv-sort\")||\"\"),d&&(r&&function(t,e,i){const s=new URLSearchParams(window.location.search);s.set(`${t}_page`,e);const o=window.location.pathname+\"?\"+s.toString();window.history.replaceState({page:{[t]:i}},document.title,o)}(r,d,function(t){const e=new URLSearchParams(window.location.search).get(t+\"_page\");return e?+e:1}(r)),t.ajax({url:ultp_data_frontend.ajax,type:\"POST\",data:{exclude:n.data(\"expost\"),action:\"ultp_pagination\",paged:d,blockId:n.data(\"blockid\"),postId:p,blockName:n.data(\"blockname\"),builder:n.data(\"builder\"),widgetBlockId:h,ultpUniqueIds:m||[],ultpCurrentUniquePosts:g||[],filterType:n.data(\"filter-type\")||\"\",filterValue:v,...b,wpnonce:ultp_data_frontend.security},beforeSend:function(){a.addClass(\"ultp-loading-active\")},success:function(e){a.find(\".ultp-block-items-wrap\").html(e),l(\"ultp_uniqueIds\",JSON.stringify(a.find(\".ultp-current-unique-posts\").data(\"ultp-unique-ids\"))),t(window).scrollTop()>a.offset().top&&t([document.documentElement,document.body]).animate({scrollTop:a.offset().top-80},100)},complete:function(){a.removeClass(\"ultp-loading-active\"),u()},error:function(t){console.log(\"Error occured.please try again\"+t.statusText+t.responseText),a.removeClass(\"ultp-loading-active\")}}))})),t(window).on(\"elementor\u002Ffrontend\u002Finit\",(()=>{setTimeout((()=>{t(\".elementor-editor-active\").length>0&&n()}),2e3)})),t(\".bricks-builder-iframe\").length>0&&t(window.parent.document).find(\".bricks-panel-controls\").length>0&&setTimeout((()=>{n()}),2500),n(),t('span[role=\"button\"].ultp-loadmore-action').on(\"keydown\",(function(t){const e=void 0!==t.key?t.key:t.keyCode;(\"Enter\"===e||13===e||[\"Spacebar\",\" \"].indexOf(e)>=0||32===e)&&(t.preventDefault(),this.click())}));let a=!0;function r(t){switch(t){case\"categories\":return\"category\";case\"tag\":case\"tags\":return\"post_tag\";case\"authors\":return\"author\";case\"order_by\":return\"orderby\";default:return t}}t(window).on(\"scroll\",(function(){let e=t(this).scrollTop();t(\".wp-block-ultimate-post-post-image\").each((function(){let i=t(this).find(\".ultp-builder-video video , .ultp-builder-video iframe\");if(t(this).find(\".ultp-video-block\").hasClass(\"ultp-sticky-video\")){let s=t(this).find(\".ultp-image-wrapper\"),o=s.offset(),l=i.height(),n=i.offset(),r=e+(t(\"#wpadminbar\").height()||0),d=n.top+l;r>n.top&&r>d&&a&&(t(this).find(\".ultp-image-wrapper\").css(\"height\",s.height()),t(this).find(\".ultp-sticky-video\").addClass(\"ultp-sticky-active\")),r\u003Cs.height()+o.top&&(t(this).find(\".ultp-sticky-video\").removeClass(\"ultp-sticky-active\"),t(this).find(\".ultp-image-wrapper\").css(\"height\",\"auto\")),t(\".ultp-sticky-close\").on(\"click\",(function(){t(this).find(\".ultp-image-wrapper\").css(\"height\",\"auto\"),t(\".ultp-sticky-video\").removeClass(\"ultp-sticky-active\"),a=!1}))}}))})),t(\".ultp-filter-block\").each((function(){const e=t(this),i=t(this).parents(\".ultp-post-grid-parent\"),s=i.find(\".ultp-block-wrapper\"),o=JSON.parse(i.attr(\"data-grids\")),n=i.attr(\"data-postid\"),a=t(this).find(\".ultp-filter-clear-template\"),d=t(this).find(\".ultp-filter-clear-button\"),c=\"ultp-block-\"+d.data(\"blockid\")+\"-first\";function p(){o.forEach((e=>{!function(e,i,s,o,n){const a=[],d={},c=e.data(\"pagi\");e.find(\".ultp-filter-select\").each((function(){const e=t(this).attr(\"data-type\"),i=t(this).attr(\"data-selected\"),s=t(this).find('.ultp-filter-select__dropdown-inner[data-id=\"'+i+'\"]').data(\"tax\");\"author\"!==r(e)?\"order\"!==r(e)?\"orderby\"!==r(e)?\"adv_sort\"!==r(e)?\"custom_tax\"!==r(e)?a.push({value:r(e)+\"###\"+i}):s&&a.push({value:s+\"###\"+i}):d.adv_sort=i:d.orderby=i:d.order=i:\"_all\"!==i&&(d.author=[{value:i}])})),e.find('.ultp-filter-button[data-is-active=\"true\"]').each((function(){const e=t(this).attr(\"data-type\"),i=t(this).attr(\"data-selected\"),s=t(this).attr(\"data-tax\");\"author\"!==r(e)?\"order\"!==r(e)?\"orderby\"!==r(e)?\"adv_sort\"!==r(e)?\"custom_tax\"!==r(e)?a.push({value:r(e)+\"###\"+i}):s&&a.push({value:s+\"###\"+i}):d.adv_sort=i:d.orderby=i:d.order=i:\"_all\"!==i&&(d.author=[{value:i}])})),d.taxonomy=a;const p=e.find(\".ultp-filter-search input\");p.length>0&&(d.search=p.val());const u=sessionStorage.getItem(\"ultp_uniqueIds\"),h=JSON.stringify(e.find(\".ultp-current-unique-posts\").data(\"current-unique-posts\"));let f=\"\",m=e.parents(\".widget_block:first\");if(m.length>0){let t=m.attr(\"id\").split(\"-\");f=t[t.length-1]}t(n).each((function(){const n=t(this);t.ajax({url:ultp_data_frontend.ajax,type:\"POST\",data:{action:\"ultp_adv_filter\",...d,blockId:i,blockName:s,postId:o,ultpUniqueIds:u||[],ultpCurrentUniquePosts:h||[],widgetBlockId:f,wpnonce:ultp_data_frontend.security},beforeSend:function(){n.addClass(\"ultp-loading-active\")},success:function(e){n.closest(\".wp-block-ultimate-post-post-grid-parent\")?.find(\".ultp-not-found-message\")?.remove(),\"\"===e?.data?.filteredData?.blocks&&e?.data?.filteredData?.notFound&&n.closest(\".wp-block-ultimate-post-post-grid-parent\").append('\u003Cdiv class=\"ultp-not-found-message\" role=\"alert\">'+e?.data?.filteredData?.notFound+\"\u003C\u002Fdiv>\"),n.find(\".ultp-block-items-wrap\").html(e?.data?.filteredData?.blocks),\"loadMore\"==e?.data?.filteredData?.paginationType&&e?.data?.filteredData?.paginationShow?n.find(\".ultp-loadmore\").replaceWith(e?.data?.filteredData?.pagination):\"navigation\"==e?.data?.filteredData?.paginationType?n.find(\".ultp-next-prev-wrap\").replaceWith(e?.data?.filteredData?.pagination):\"pagination\"==e?.data?.filteredData?.paginationType&&n.find(\".ultp-pagination-wrap\").replaceWith(e?.data?.filteredData?.pagination),e?.data?.filteredData?.pagination&&c?.map((i=>{let s=[];if(\"loadMore\"===e?.data?.filteredData?.paginationType?(s=t(\".ultp-loadmore.\"+i),s.length):s=t(\".\"+i+\"[data-for]\"),s.length>0){const i=t(e.data.filteredData.pagination);s.attr(\"class\").split(\" \").forEach((t=>i.addClass(t))),s.replaceWith(i)}}))},complete:function(){n.removeClass(\"ultp-loading-active\"),l(\"ultp_uniqueIds\",JSON.stringify(e.find(\".ultp-current-unique-posts\").data(\"ultp-unique-ids\")))},error:function(t){console.log(\"Error occured.please try again\"+t.statusText+t.responseText),n.removeClass(\"ultp-loading-active\")}})}))}(i,e.blockId,e.name,n,s)}))}let u;function h(t){clearTimeout(u),u=t?setTimeout(p,500):p()}e.find(\".ultp-filter-select\").each((function(){const i=t(this).find(\".ultp-filter-select-options\"),s=t(this).find(\".ultp-filter-select-field-selected\"),o=t(this).find(\".ultp-filter-select-field-icon\"),l=t(this),n=t(this).attr(\"data-type\"),r=t(this).find(\".ultp-filter-select-search\");function u(e){e?(t(\".ultp-filter-select .ultp-filter-select-options\").css(\"display\",\"none\"),t(\".ultp-filter-select .ultp-filter-select-field-icon\").removeClass(\"ultp-dropdown-icon-rotate\"),t(\".ultp-filter-select\").attr(\"aria-expanded\",!1),i.css(\"display\",\"block\"),o.addClass(\"ultp-dropdown-icon-rotate\")):(i.css(\"display\",\"none\"),o.removeClass(\"ultp-dropdown-icon-rotate\")),l.attr(\"aria-expanded\",e)}const h=i.find(\"li\").first();t(this).on(\"click\",(function(t){t.stopPropagation(),u(\"none\"===i.css(\"display\"))})),t(i).find(\"li\").each((function(){const i=t(this).attr(\"data-id\"),o=t(this).attr(\"data-blockId\"),r=t(this).text();t(this).on(\"click\",(function(){if(s.text(r),l.attr(\"data-selected\",i),\"_all\"===i)e.find(`.ultp-filter-clear[data-type=\"${n}\"]`).remove();else if(d.length>0){let t=!1,u=e.find(`.ultp-filter-clear[data-type=\"${n}\"]`);u.length\u003C1&&(t=!0,u=a.clone()),u.removeClass(\"ultp-filter-clear-template\"),u.addClass(\"ultp-filter-clear-selected-filter\"),u.find(\".ultp-selected-filter-text\").text(function(t,e){return`${t.replace(\"_\",\" \").replace(\u002F\\b\\w\u002Fg,(t=>t.toUpperCase()))}: ${e}`}(n,r)),d.hasClass(c)&&(d.removeClass(c),u.addClass(c)),u.find(\".ultp-selected-filter-icon\").on(\"click\",(function(){s.text(h.text()),l.attr(\"data-selected\",h.attr(\"data-id\")),u.hasClass(c)&&(u.next().hasClass(\"ultp-filter-clear-selected-filter\")?u.next().addClass(c):d.addClass(c)),u.remove(),p()})),u.attr(\"data-id\",i),u.attr(\"data-type\",n),u.attr(\"data-for\",o),u.css({display:\"block\"}),t&&u.insertBefore(d)}p(),u(!0)}))})),r.on(\"click\",(function(t){t.preventDefault(),t.stopPropagation()})),r.on(\"input\",(function(e){const s=String(e.target.value).toLowerCase();s.length>0?i.find(\"li\").each((function(){const e=t(this).text();t(this).css(\"display\",e.toLowerCase().includes(s)?\"list-item\":\"none\")})):i.find(\"li\").each((function(){t(this).css(\"display\",\"list-item\")}))})),t(document).on(\"click\",(function(t){l.is(t.target)||l.has(t.target).length||u(!1)}))})),e.find(\".ultp-filter-button\").each((function(){const i=this,s=t(this).data(\"type\");t(this).on(\"click\",(function(){const o=\"true\"===t(i).attr(\"data-is-active\");if(\"_all\"===t(this).data(\"selected\")){const t=e.find('.ultp-filter-button[data-selected]:not([data-selected=\"_all\"])');t.length>0&&(t.attr(\"data-is-active\",\"false\"),t.removeClass(\"ultp-filter-button-active\"))}else if([\"adv_sort\",\"order\",\"order_by\"].includes(s)&&!o){const t=e.find(`.ultp-filter-button[data-type=\"${s}\"]`);t.length>0&&(t.attr(\"data-is-active\",\"false\"),t.removeClass(\"ultp-filter-button-active\"))}else{const t=e.find('.ultp-filter-button[data-selected=\"_all\"]');t.length>0&&(t.attr(\"data-is-active\",\"false\"),t.removeClass(\"ultp-filter-button-active\"))}o?(t(i).attr(\"data-is-active\",\"false\"),t(i).removeClass(\"ultp-filter-button-active\")):(t(i).attr(\"data-is-active\",\"true\"),t(i).addClass(\"ultp-filter-button-active\"),([\"author\"].includes(s)||\"true\"!=t(this).parent().attr(\"data-multiselect\"))&&t(i).siblings().attr(\"data-is-active\",\"false\").removeClass(\"ultp-filter-button-active\")),p()}))})),d.on(\"click\",(function(){!function(){e.find(\".ultp-filter-select\").each((function(){const e=t(this).find(\".ultp-filter-select-options li\").first();t(this).attr(\"data-selected\",e.attr(\"data-id\")),t(this).find(\".ultp-filter-select-field-selected\").text(e.text())}));const i=e.find(\".ultp-filter-clear-selected-filter\");i.hasClass(c)&&d.addClass(c),i.remove(),e.find(\".ultp-filter-search input\").val(\"\"),e.find('.ultp-filter-button[data-is-active=\"true\"]').each((function(){t(this).removeClass(\"ultp-filter-button-active\"),t(this).attr(\"data-is-active\",\"false\")}))}(),p()})),i.find(\".ultp-filter-search input\").off(\"input\").on(\"input\",(function(){h(!0)})),i.find(\".ultp-filter-search input\").on(\"keydown\",(function(t){\"Enter\"===t.key&&h(!1)})),i.find(\".ultp-filter-search-icon\").on(\"click\",(function(){h(!1)}))}));const d=ultp_data_frontend?.dark_logo,c=t(\".ultp-dark-logo.wp-block-site-logo\").find(\"img\").attr(\"src\"),p=t(\".ultp-dark-logo.wp-block-site-logo\").find(\"img\").attr(\"srcset\")||\"\";function u(){t(\".ultp-video-modal .ultp-video-modal__content .ultp-video-wrapper > iframe\").each((function(){const e=t(this),i=e.attr(\"src\");i&&i.includes(\"dailymotion.com\u002Fplayer\")&&\"&\"==i[i.length-1]&&e.attr(\"src\",i.slice(0,i.length-1)+\"?autoplay=0\")}))}t(document).on(\"click\",\".ultp-dark-light-block-wrapper-content.ultp-frontend .ultp-dl-con\",(function(e){e.preventDefault();const i=t(this).closest(\".ultp-dark-light-block-wrapper-content\"),s=t(this).hasClass(\"ultp-light-con\"),o=t(this).closest(\".ultp-dl-after-before-con\"),l=i.find(`.ultp-${s?\"dark\":\"light\"}-con`).closest(\".ultp-dl-after-before-con\"),n=o.data(\"iconlay\"),a=o.data(\"iconsize\"),r=o.data(\"iconrev\");let u=0;if([\"layout5\",\"layout6\",\"layout7\"].includes(n)){u=\"layout7\"==n?500:400;const e=\"layout7\"==n?t(this).find(\".ultp-dl-text\").width():a\u002F2;s?(t(this).find(\".ultp-dl-svg-con\").css({transform:`translateX(calc(${100*(r?-1:1)}% ${r?\"-\":\"+\"} ${e}px))`,transition:`transform ${u\u002F1e3}s ease`}),\"layout6\"==n?t(this).find(\".ultp-dl-text\").css({transform:`translateX(calc(${100*(r?1:-1)}% ${r?\"+\":\"-\"} ${e}px))`,transition:`transform ${u\u002F1e3}s ease`}):\"layout7\"==n&&t(this).find(\".ultp-dl-text\").css({transform:`translateX(calc(${(r?1:-1)*a}px))`,transition:`transform ${u\u002F1e3}s ease`})):(t(this).find(\".ultp-dl-svg-con\").css({transform:`translateX(calc(${100*(r?1:-1)}% ${r?\"+\":\"-\"} ${e}px))`,transition:`transform ${u\u002F1e3}s ease`}),\"layout6\"==n?t(this).find(\".ultp-dl-text\").css({transform:`translateX(calc(${100*(r?-1:1)}% ${r?\"-\":\"+\"} ${e}px))`,transition:`transform ${u\u002F1e3}s ease`}):\"layout7\"==n&&t(this).find(\".ultp-dl-text\").css({transform:`translateX(calc(${(r?-1:1)*a}px))`,transition:`transform ${u\u002F1e3}s ease`}))}!function(t,e,i){const s=new Date;s.setTime(s.getTime()+24*i*60*60*1e3);let o=\"expires=\"+s.toUTCString();document.cookie=t+\"=\"+e+\";\"+o+\";\"}(\"ultplocalDLMode\",s?\"ultpdark\":\"ultplight\",60),setTimeout((()=>{o.addClass(\"inactive\"),l.removeClass(\"inactive\"),s?(t(\".wp-block-ultimate-post-image .ultp-light-image-block\").addClass(\"inactive\"),t(\".wp-block-ultimate-post-image .ultp-dark-image-block\").removeClass(\"inactive\")):s||(t(\".wp-block-ultimate-post-image .ultp-dark-image-block\").addClass(\"inactive\"),t(\".wp-block-ultimate-post-image .ultp-light-image-block\").removeClass(\"inactive\")),t(\".ultp-dark-logo.wp-block-site-logo\").find(\"img\").attr(\"src\",s?d:c).attr(\"srcset\",s?d:p),t(\".ultp-dark-logo.wp-block-site-logo img\").css({content:\"initial\"}),t(`.ultp-dark-light-block-wrapper-content .ultp-${s?\"dark\":\"light\"}-con`).each((function(){t(this).closest(\".ultp-dl-after-before-con\").removeClass(\"inactive\")})),t(`.ultp-dark-light-block-wrapper-content .ultp-${s?\"light\":\"dark\"}-con`).each((function(){t(this).closest(\".ultp-dl-after-before-con\").addClass(\"inactive\")})),t(this).find(\".ultp-dl-svg-con\").removeAttr(\"style\"),t(this).find(\".ultp-dl-text\").removeAttr(\"style\"),function(){if(t(\"#ultp-preset-colors-style-inline-css\")&&t(\"#ultp-preset-colors-style-inline-css\")[0]){const e=t(\"#ultp-preset-colors-style-inline-css\")[0].sheet,i=e.cssRules[0].style.getPropertyValue(\"--postx_preset_Base_1_color\"),s=e.cssRules[0].style.getPropertyValue(\"--postx_preset_Base_2_color\"),o=e.cssRules[0].style.getPropertyValue(\"--postx_preset_Base_3_color\"),l=e.cssRules[0].style.getPropertyValue(\"--postx_preset_Contrast_1_color\"),n=e.cssRules[0].style.getPropertyValue(\"--postx_preset_Contrast_2_color\"),a=e.cssRules[0].style.getPropertyValue(\"--postx_preset_Contrast_3_color\");e.cssRules[0].style.setProperty(\"--postx_preset_Base_1_color\",l),e.cssRules[0].style.setProperty(\"--postx_preset_Base_2_color\",n),e.cssRules[0].style.setProperty(\"--postx_preset_Base_3_color\",a),e.cssRules[0].style.setProperty(\"--postx_preset_Contrast_1_color\",i),e.cssRules[0].style.setProperty(\"--postx_preset_Contrast_2_color\",s),e.cssRules[0].style.setProperty(\"--postx_preset_Contrast_3_color\",o)}}()}),u)})),e&&u()}(jQuery);\n\\ No newline at end of file\n+!function(t){\"use strict\";t.fn.UltpSlider=function(e){let i=t.extend({},t.fn.UltpSlider.defaults,e),o=t(this),s=!0,l=0;if(o.wrap(\"\u003Cdiv class='acmeticker-wrap'>\u003C\u002Fdiv>\"),o.parent().css({position:\"relative\"}),o.children().first().addClass(\"active\"),\"horizontal\"==i.type||\"vertical\"==i.type||\"typewriter\"==i.type){let e=\"\";\"typewriter\"==i.type&&(e=setInterval((function(){a()}),i.speed));let l=\"\";\"horizontal\"!=i.type&&\"vertical\"!=i.type||(l=setInterval((function(){a()}),i.speed)),t(i.controls.prev).on(\"click\",(function(){\"horizontal\"!=i.type&&\"vertical\"!=i.type||(clearInterval(l),n(\"prev\"),s&&(l=setInterval((function(){a()}),i.speed))),\"typewriter\"==i.type&&(clearInterval(e),n(\"prev\"),s&&(e=setInterval((function(){a()}),i.speed)))})),t(i.controls.next).on(\"click\",(function(){\"horizontal\"!=i.type&&\"vertical\"!=i.type||(clearInterval(l),n(\"next\"),s&&(l=setInterval((function(){a()}),i.speed))),\"typewriter\"==i.type&&(clearInterval(e),n(\"next\"),s&&(e=setInterval((function(){a()}),i.speed)))})),t(i.controls.toggle).on(\"click\",(function(){\"horizontal\"!=i.type&&\"vertical\"!=i.type||(s?(s=!1,clearInterval(l)):(s=!0,clearInterval(l),l=setInterval((function(){a()}),i.speed))),\"typewriter\"==i.type&&(s?(s=!1,clearInterval(e)):(s=!0,clearInterval(e),e=setInterval((function(){a()}),i.speed)))})),i.pauseOnHover&&(o.on(\"mouseenter\",(function(){\"typewriter\"===i.type&&clearInterval(e),\"horizontal\"!==i.type&&\"vertical\"!==i.type||clearInterval(l)})),o.on(\"mouseleave\",(function(){\"typewriter\"===i.type&&s&&(e=setInterval((function(){a()}),i.speed)),\"horizontal\"!==i.type&&\"vertical\"!==i.type||!s||(l=setInterval((function(){a()}),i.speed))})))}if(\"marquee\"==i.type){let e,n=i.speed,a=0,r=i.direction,d=o.outerWidth(),c=t(\".ultp-newsTicker-wrap\").outerWidth(),p=t(document).find(\"body\").hasClass(\"rtl\");\"right\"==r&&(e=c),\"left\"==r&&(e=o.outerWidth());let u=setInterval((function(){e\u003Ca&&\"left\"==r&&!p&&(a=-c),e\u003Ca&&\"right\"==r&&!p&&(a=-d),d\u003Ca&&\"right\"==r&&p&&(a=-c),c\u003Ca&&\"left\"==r&&p&&(a=-e),o.css(r,-a),a++}),n);t(i.controls.prev).on(\"click\",(function(){s?(-o.outerWidth()>a&&\"right\"==r&&!p&&(a=e),a\u003C-t(\".ultp-newsTicker-wrap\").outerWidth()&&\"left\"==r&&!p&&(a=e),-e>a&&\"right\"==r&&p&&(a=o.outerWidth()),-e>a&&\"left\"==r&&p&&(a=t(\".ultp-newsTicker-wrap\").outerWidth()),a-=250):(s=!0,u=setInterval((function(){e\u003Ca&&\"left\"==r&&!p&&(a=-c),-c>a&&\"left\"==r&&!p&&(a=e-100),e\u003Ca&&\"right\"==r&&!p&&(a=-d),d\u003Ca&&\"right\"==r&&p&&(a=-e),c\u003Ca&&\"left\"==r&&p&&(a=-e),o.css(r,-a),a++}),n))})),t(i.controls.prev).on(\"mousedown touchstart\",(function(e){l=setInterval((function(){p||\"right\"!=r?p&&\"left\"==r?(a\u003C-d&&(a=t(\".ultp-newsTicker-wrap\").outerWidth()-10),a-=30):p||\"left\"!=r?(a\u003C-t(\".ultp-newsTicker-wrap\").outerWidth()&&p&&\"right\"==r&&(a=d),a-=30):(a\u003C-t(\".ultp-newsTicker-wrap\").outerWidth()&&(a=d),a-=30):a>-d?a-=30:a=t(\".ultp-newsTicker-wrap\").outerWidth()-10}),100)})).bind(\"mouseup mouseleave touchend\",(function(){clearInterval(l)})),t(i.controls.next).on(\"click\",(function(){s?a+=250:(s=!0,u=setInterval((function(){e\u003Ca&&\"left\"==r&&!p&&(a=-c),e\u003Ca&&\"right\"==r&&!p&&(a=-d),c\u003Ca&&\"left\"==r&&p&&(a=-e),d\u003Ca&&\"right\"==r&&p&&(a=-e),o.css(r,-a),a++}),n))})),t(i.controls.next).on(\"mousedown touchstart\",(function(t){l=setInterval((function(){a+=80}),80)})).bind(\"mouseup mouseleave touchend\",(function(){clearInterval(l)})),t(i.controls.toggle).on(\"click\",(function(){s?(s=!1,clearInterval(u)):(s=!0,u=setInterval((function(){e\u003Ca&&\"left\"==r&&!p&&(a=-c),t(\".ultp-newsTicker-wrap\").outerWidth()\u003Ca&&\"left\"==r&&p&&(a=-(d+100)),e\u003Ca&&\"right\"==r&&!p&&(a=-d),d\u003Ca&&\"right\"==r&&p&&(a=-t(\".ultp-newsTicker-wrap\").outerWidth()),o.css(r,-a),a++}),n))})),i.pauseOnHover&&(o.on(\"mouseenter\",(function(){clearInterval(u)})),o.on(\"mouseleave\",(function(){s&&(u=setInterval((function(){e\u003Ca&&\"left\"===r&&!p&&(a=-t(\".ultp-newsTicker-wrap\").outerWidth()),t(\".ultp-newsTicker-wrap\").outerWidth()\u003Ca&&\"left\"===r&&p&&(a=-e),t(\".ultp-newsTicker-wrap\").outerWidth()\u003Ca&&\"right\"===r&&!p&&(a=-d),d\u003Ca&&\"right\"===r&&p&&(a=-e),o.css(r,-a),a++}),n))})))}function n(t){let e=o.find(\".active\").index();e\u003C0&&(e=0);let i=1;\"prev\"==t&&(o.children().eq(e).removeClass(\"active\"),o.children().eq(e-i).addClass(\"active\")),\"next\"==t&&(o.children().eq(e).removeClass(\"active\"),e==o.children().length-1&&(i=-(o.children().length-1)),o.children().eq(e+i).addClass(\"active\"))}function a(){let t=1,e=o.find(\".active\").index();e\u003C0&&(e=0),o.children().eq(e).removeClass(\"active\"),e==o.children().length-1&&(t=-(o.children().length-1)),o.children().eq(e+t).addClass(\"active\")}},t.fn.UltpSlider.defaults={type:\"horizontal\",autoplay:2e3,speed:50,direction:\"up\",pauseOnFocus:!0,pauseOnHover:!0,controls:{prev:\"\",next:\"\",toggle:\"\"}}}(jQuery),function(t){\"use strict\";let e=0!=t(\".wp-block-ultimate-post-gallery\").length;t(\".wp-block-ultimate-post-gallery\").each((function(){const e=t(this);!function(e){const i=e.data(\"lightbox\"),o=e.data(\"caption\"),s=e.find(\".ultp-gallery-item\"),l=e.data(\"indicators\"),n=e.find(\".ultp-gallery-lightbox\"),a=e.find(\".ultp-gallery-loadMore\"),r=e.find(\".ultp-gallery-lightbox__zoom-in\"),d=e.find(\".ultp-gallery-lightbox__zoom-out\"),c=e.find(\".ultp-gallery-lightbox__close\"),p=e.find(\".ultp-gallery-lightbox__control\"),u=e.find(\".ultp-gallery-lightbox__full-screen\"),h=e.find(\".ultp-gallery-lightbox__indicator-control\");let f=null,m=!0;t(document).on(\"click\",(function(e){const i=t(e.target),o=t(\".ultp-lightbox\");i.closest(\".ultp-gallery-lightbox__control, .ultp-lightbox__left-icon, .ultp-lightbox__right-icon, .ultp-lightbox__img-container, .ultp-lightbox-indicator__item-img\").length>0||m||(o.hide(),p.hide(),m=!0),o.is(\":visible\")&&(m=!1)})),c.on(\"click\",(function(){t(this).parent().parent(\".ultp-gallery-wrapper\").find(\".ultp-lightbox\").hide(),p.hide(),document.exitFullscreen?document.exitFullscreen().catch((t=>{console.error(\"Failed to exit fullscreen:\",t)})):document.webkitExitFullscreen?document.webkitExitFullscreen():document.msExitFullscreen&&document.msExitFullscreen(),f=null}));let g=1;r.on(\"click\",(function(){g+=.5;t(this).closest(\".ultp-gallery-wrapper\").find(\".ultp-lightbox__inside img\").css({transform:`scale(${g})`}),g>1?(t(\".ultp-lightbox__caption\").slideUp(300),t(\".ultp-lightbox-indicator\").slideUp(300)):t(\".ultp-lightbox__caption\").is(\":visible\")||t(\".ultp-lightbox__caption\").fadeIn(300)})),d.on(\"click\",(function(){g-=.5;t(this).closest(\".ultp-gallery-wrapper\").find(\".ultp-lightbox__inside img\").css({transform:`scale(${g})`}),t(\".ultp-lightbox__caption\").is(\":visible\")||1!=g||t(\".ultp-lightbox__caption\").fadeIn(300),t(\".ultp-lightbox-indicator\").is(\":visible\")||1!=g||t(\".ultp-lightbox-indicator\").fadeIn(300)})),h.off(\"click\").on(\"click\",(function(e){e.stopPropagation();t(this).closest(\".ultp-gallery-wrapper\").find(\".ultp-lightbox-indicator\").slideToggle(300)})),u.on(\"click\",(function(){const t=document.documentElement;document.fullscreenElement||document.webkitFullscreenElement||document.msFullscreenElement?document.exitFullscreen?document.exitFullscreen().catch((t=>{console.error(\"Failed to exit fullscreen:\",t)})):document.webkitExitFullscreen?document.webkitExitFullscreen():document.msExitFullscreen&&document.msExitFullscreen():t.webkitRequestFullscreen?t.webkitRequestFullscreen():t.msRequestFullscreen&&t.msRequestFullscreen()})),i&&n.each((function(){t(this).off().on(\"click\",(function(e){e.stopPropagation();const i=t(this);m=!1;const s=i.data(\"id\"),n=i.data(\"index\"),a=i.data(\"img\"),r=i.closest(\".ultp-gallery-item\").data(\"caption\"),d=i.parent().parent();b(i,s,n,a,r,d,o,l)}))})),t(document).on(\"click\",\".ultp-lightbox__right-icon, .ultp-lightbox__left-icon\",(function(){const e=t(this),i=e.hasClass(\"ultp-lightbox__right-icon\"),o=e.closest(\".ultp-lightbox\"),s=e.closest(\".ultp-gallery-container\"),l=o.find(\".ultp-lightbox-indicator\"),n=o.find(\".ultp-lightbox__img\"),a=o.find(\".ultp-lightbox__caption\"),r=s.children(),d=o.data(\"index\");null==f&&(f=d),f=i?(f+1)%r.length:(f-1+r.length)%r.length;const c=r.eq(f),p=c.find(\".ultp-gallery-media img\").attr(\"src\"),u=c.data(\"id\"),h=c.data(\"caption\");n.fadeOut(200,(function(){n.attr(\"src\",p).fadeIn(200)})),a.fadeOut(200,(function(){a.text(h).fadeIn(200)}));const m=l.children().eq(f);m.addClass(\"lightbox-active\").siblings().removeClass(\"lightbox-active\"),m.data(\"id\")!==u&&m.removeClass(\"lightbox-active\")})),t(document).on(\"click\",\".ultp-lightbox-indicator__item\",(function(){const e=t(this),i=e.find(\"img\").attr(\"src\"),o=e.closest(\".ultp-lightbox\").find(\".ultp-lightbox__img\");f=e.data(\"index\"),o.fadeOut(200,(function(){o.attr(\"src\",i).fadeIn(200)})),e.addClass(\"lightbox-active\").siblings().removeClass(\"lightbox-active\")})),i&&!(n.length>0)&&s.off().on(\"click\",(function(e){const i=t(e.target).closest(\"svg\").parent().is(\".ultp-gallery-action a\");if(!s.find(\".ultp-lightbox\").is(\":visible\")&&!i){const e=t(this);f=e.data(\"index\");const i=e.data(\"id\"),s=e.data(\"caption\"),n=e.data(\"index\"),a=e.find(\".ultp-gallery-media img\").attr(\"src\"),r=e.find(\".ultp-gallery-action-container\");b(e,i,n,a,s,r,o,l)}}));const v=a[0]?Number(getComputedStyle(a[0]).getPropertyValue(\"--ultp-gallery-count\").trim()):\"\";let w=v;a?.length>0&&s.each((function(e){v\u003Ce+1&&(t(this).find(\"img\").attr({width:t(this).find(\"img\").width(),height:t(this).find(\"img\").height()}),t(this).css({display:\"none\"}))}));s.length\u003C=w&&a.css({display:\"none\"});function b(e,i,o,l,n,a,r,d){p.css({display:\"flex\"}),t(\".ultp-lightbox\").remove();const c=s.map((function(e){const o=t(this).find(\"img\").attr(\"src\"),s=t(this).data(\"caption\");return i==t(this).data(\"id\")&&(f=e),console.log(o,\"imgSrc\"),`\u003Cdiv  data-index=${e} class=\"${i==t(this).data(\"id\")?\"ultp-lightbox-indicator__item lightbox-active\":\"ultp-lightbox-indicator__item\"}\" data-id=${t(this).data(\"id\")} data-caption=${s}>\u003Cimg class=\"ultp-lightbox-indicator__item-img\" src=\"${o}\" \u002F>\u003C\u002Fdiv>`})).get().join(\"\"),u=`\u003Cdiv class=\"ultp-lightbox\" data-id=${i} data-index=${o}>\\n                        \u003Cdiv class=\"ultp-lightbox__container\">\\n                            \u003Cdiv class=\"ultp-lightbox__inside\">\\n                                \u003Cdiv class=\"ultp-lightbox__left-icon\">\u003Csvg  fill=\"currentColor\"xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"0 0 49.16 37.25\">\u003Cpath  stroke-miterlimit=\"10\" d=\"M18.157 36.154 2.183 20.179l-.053-.053-1.423-1.423 17.45-17.449a2.05 2.05 0 0 1 2.9 2.9l-12.503 12.5h38.053a2.05 2.05 0 1 1 0 4.1H8.555l12.5 12.5a2.05 2.05 0 1 1-2.9 2.9Z\">\u003C\u002Fpath>\u003C\u002Fsvg>\u003C\u002Fdiv>\\n                                \u003Cdiv class=\"ultp-lightbox__img-container\">\\n                                    \u003Cimg class=\"ultp-lightbox__img\" src=\"${l}\" \u002F>\\n                                    ${r?`\u003Cspan class=\"ultp-lightbox__caption\">${n}\u003C\u002Fspan>`:\"\"}\\n                                \u003C\u002Fdiv>\\n                                \u003Cdiv class=\"ultp-lightbox__right-icon\">\u003Csvg fill=\"currentColor\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"0 0 49.16 37.25\">\u003Cpath  stroke-miterlimit=\"10\" d=\"M28.1 36.154a2.048 2.048 0 0 1 0-2.9l12.5-12.5H2.55a2.05 2.05 0 1 1 0-4.1H40.6l-12.5-12.5a2.05 2.05 0 1 1 2.9-2.9l17.45 17.448L31 36.154a2.047 2.047 0 0 1-2.9 0Z\">\u003C\u002Fpath>\u003C\u002Fsvg>\u003C\u002Fdiv>\\n                            \u003C\u002Fdiv>\\n                            ${d?`\u003Cdiv class=\"ultp-lightbox-indicator\">${c}\u003C\u002Fdiv>`:\"\"}\\n                        \u003C\u002Fdiv>\\n                    \u003C\u002Fdiv>`;a.append(u)}}(e),i(e)}));function i(e){const i=e;let o=i.find(\".ultp-gallery-loader\"),s=i.find(\".ultp-no-gallery-message\");const l=i.find(\".ultp-gallery-container\"),n=i.find(\".ultp-gallery-filter__item\"),a=i.find(\".ultp-gallery-loadMore\"),r=i.find(\".ultp-gallery-container.ultp-gallery-tiled\"),d=i.find(\".ultp-gallery-container.ultp-gallery-masonry\"),c=l[0]?Number(getComputedStyle(l[0]).getPropertyValue(\"--ultp-gallery-columns\").trim()):3,p=l[0]?Number(getComputedStyle(l[0]).getPropertyValue(\"--ultp-gallery-gap\").trim()):10,u=l.find(\".ultp-gallery-item\"),h=a[0]?Number(getComputedStyle(a[0]).getPropertyValue(\"--ultp-gallery-count\").trim()):0;let f=h;if(0===o.length&&(d?.length||r?.length)&&(l.css({height:\"250px\",overflow:\"hidden\"}),o=t('\u003Cdiv class=\"ultp-gallery-loader\" style=\"display:none;position:absolute;top:0;left:0;right:0;bottom:0;background:rgb(255 255 255 \u002F 92%);z-index:9; display: flex; align-items:center;justify-content:center;\">\\n                    \u003Cdiv class=\"spinner\" style=\"border: 4px solid #f3f3f3;border-top: 4px solid #037FFF;border-radius: 50%;width: 30px;height: 30px;animation: spin 0.8s linear infinite;\">\u003C\u002Fdiv>\\n                            \u003C\u002Fdiv>'),i.css(\"position\",\"relative\"),l.append(o)),!document.getElementById(\"ultp-spinner-style\")){const y='\u003Cstyle id=\"ultp-spinner-style\">\\n                    @keyframes spin {\\n                        0% { transform: rotate(0deg); }\\n                        100% { transform: rotate(360deg); }\\n                    }\\n                \u003C\u002Fstyle>';t(\"head\").append(y)}o.fadeIn(150),0===s.length&&(s=t('\u003Cdiv class=\"ultp-no-gallery-message\">No gallery item found\u003C\u002Fdiv>'),l.after(s));let m=function(){};function g(){if(0===r.length)return;const e=r.find(\".ultp-gallery-item:visible\");r.css(\"visibility\",\"hidden\"),e.each((function(){t(this).css({top:\"\",left:\"\",width:\"\",height:\"\",position:\"\"})})),requestAnimationFrame((()=>{m(e),r.css(\"visibility\",\"visible\")}))}function v(){if(0===d.length)return;const e=(d.width()-(c-1)*p)\u002Fc,i=d.find(\".ultp-gallery-item:visible\");let o=new Array(c).fill(0);i.each((function(){const i=t(this);i.css({width:e+\"px\",position:\"absolute\"});const s=o.indexOf(Math.min(...o)),l=o[s],n=s*(e+p);i.stop().animate({top:`${l}px`,left:`${n}px`},300),o[s]+=i.outerHeight(!0)+p})),d.css(\"height\",Math.max(...o)+\"px\")}function w(e,i){let o=0,l=0;return u.each((function(){const s=t(this),n=s.data(\"tag\")||\"\";\"All\"===e||n.includes(e)?(l++,o\u003Ci?(s.css({display:\"block\"}),o++):s.css({display:\"none\"})):s.css({display:\"none\"})})),s.toggle(0===l),{visibleCount:o,totalMatch:l}}function b(t){o.fadeIn(150),setTimeout((()=>{t(),o.fadeOut(150)}),400)}if(n.on(\"click\",(function(){const e=t(this),i=e.text();e.siblings().removeClass(\"active-gallery-filter\"),e.addClass(\"active-gallery-filter\"),f=h,b((()=>{const{visibleCount:t,totalMatch:e}=w(i,f);a.css({display:t\u003Ce?\"block\":\"none\"}),g(),v()}))})),a.on(\"click\",(function(e){e.preventDefault();const o=i.find(\".active-gallery-filter\").text()||\"All\";let l=0,n=0;u.each((function(){const e=t(this),i=e.data(\"tag\")||\"\";(\"All\"===o||i.includes(o))&&(n++,e.is(\":visible\")&&l++)}));const r=l%c;let d=0!==r?c-r:c;f=Math.min(l+d,n),b((()=>{let e=0;u.each((function(){const i=t(this),s=i.data(\"tag\")||\"\";\"All\"===o||s.includes(o)?(i.css({display:e\u003Cf?\"block\":\"none\"}),e++):i.css({display:\"none\"})})),f>=n&&a.css({display:\"none\"}),s.toggle(0===n),g(),v()}))})),r.length){const k=Number(getComputedStyle(l[0]).getPropertyValue(\"--ultp-gallery-height\").trim())||300;function x(t){const e=t[0];return(e.naturalWidth||e.width||1)\u002F(e.naturalHeight||e.height||1)}m=function(e){const i=r,o=i.width()||i.closest(\".ultp-tab-content\").width();let s=0;const l=[];let n=[],a=0;e.each((function(){const e=t(this),i=x(e.find(\"img\"));n.push({$item:e,ratio:i}),a+=i,n.length===c&&(l.push({cells:n,ratioSum:a}),n=[],a=0)})),n.length&&l.push({cells:n,ratioSum:a}),l.forEach((t=>{const e=p*(t.cells.length-1),i=o-e;let l=0;t.cells.forEach((({$item:e,ratio:o},n)=>{const a=i*(o\u002Ft.ratioSum);e.css({position:\"absolute\",top:s,left:l,width:a,height:k}),l+=a+p})),s+=k+p})),i.height(s-p)}}setTimeout((()=>{const t=i.find(\".ultp-gallery-filter__item.active-gallery-filter\").text()||\"All\",{visibleCount:e,totalMatch:l}=w(t,f);a.css({display:e\u003Cl?\"block\":\"none\"}),s.toggle(0===l),g(),v(),o.fadeOut(50)}),500)}0==t(\"body.postx-admin-page\").length&&e&&t(window).on(\"load resize\",(function(){t(\".wp-block-ultimate-post-gallery\").each((function(){i(t(this))}))}))}(jQuery),function(t){function e(){const e=t=>t.closest(\".wp-block-ultimate-post-tabs\");t(\".wp-block-ultimate-post-tabs\").each((function(){let i=t(this);const o=i.data(\"responsive\"),s=i.find(\".ultp-tabs-nav\").first(),l=i.find(\".ultp-tab-content\").first().children(\".wp-block-ultimate-post-tab-item\"),n=i.children().children(\".ultp-nav-right\").length>0||i.children().children(\".ultp-nav-left\").length>0;i.parent(\".wp-block-ultimate-post-tab-item\").length>0&&i.closest(\".ultp-tab-content\").css({overflow:\"hidden\"}),\"slider\"==o&&i.width()\u003C600&&i.find(\".ultp-tabs-nav\").css({flexWrap:\"nowrap\"}),i.width()\u003C600&&\"accordion\"==i.data(\"responsive\")&&!i.hasClass(\".ultp-tab-accordion-active\")&&(i.addClass(\"ultp-tab-accordion-active\"),i.find(\".ultp-tabs-nav-element\").each((function(e){t(this).data(\"order\")&&t(this).css({order:2*(e+1)-1})})),l.each((function(e){t(this).css({order:2*(e+1)})}))),i.hasClass(\"ultp-tab-accordion-active\")&&(s.css(\"display\",\"contents\").parent().css(\"display\",\"contents\"),l.addClass(\"ultp-tab-content\").parent().css(\"display\",\"contents\")),l.each((function(i){e(t(this)).data(\"activetab\")==t(this).data(\"tabindex\")&&t(this).addClass(\"active\")}));const a=i.find(\".ultp-tabs-nav-wrapper\"),r=i.find(\".ultp-tab-left-arrow\").first(),d=i.find(\".ultp-tab-right-arrow\").first(),c=\"autoplay\"==i.data(\"tabevent\")?\"click\":i.data(\"tabevent\");let p=\"slider\"==o||i.find(\".ultp-tab-wrapper\").hasClass(\"ultp-nav-left\")||i.find(\".ultp-tab-wrapper\").hasClass(\"ultp-nav-right\"),u=n?s.height():s.width(),h=u\u002Fs?.children().length,f=n?a.height():a.width(),m=0,g=h;function v(){0==m&&d.addClass(\"ultp-arrow-active\"),d.off(\"click\").on(\"click\",(function(e){e.stopPropagation();const i=n?t(this).closest(\".ultp-tabs-nav-wrapper\").height():t(this).closest(\".ultp-tabs-nav-wrapper\").width(),o=n?t(this).siblings().find(\".ultp-tabs-nav\").height():t(this).siblings().find(\".ultp-tabs-nav\").width(),s=o-i,l=o\u002Ft(this).siblings().find(\".ultp-tabs-nav\")?.children().length;s>m&&s-m>l&&(m+=l),s-m\u003Cl+1&&(m+=s-m,t(this).removeClass(\"ultp-arrow-active\")),m>0&&t(this).siblings(\".ultp-tab-left-arrow\").addClass(\"ultp-arrow-active\");let a=n?`translate(0px, -${m}px)`:`translate(-${m}px, 0px)`;t(this).siblings().find(\".ultp-tabs-nav\").css({transform:a})})),r.off(\"click\").on(\"click\",(function(e){const i=(n?t(this).siblings().find(\".ultp-tabs-nav\").height():t(this).siblings().find(\".ultp-tabs-nav\").width())\u002Ft(this).siblings().find(\".ultp-tabs-nav\")?.children().length;m>i?m-=i:m=0,m>0?t(this).siblings(\".ultp-tab-right-arrow\").addClass(\"ultp-arrow-active\"):t(this).removeClass(\"ultp-arrow-active\");let o=n?`translate(0px, -${m}px)`:`translate(-${m}px, 0px)`;t(this).siblings().find(\".ultp-tabs-nav\").css({transform:o})}))}function w(e,i,s){if(!(e.parent(\".wp-block-ultimate-post-tab-item\").length>0)||e.parent(\".wp-block-ultimate-post-tab-item\").hasClass(\"active\")){u=n?s.height():s.width(),h=u\u002Fs?.children().length,f=n?a.height():a.width();const e=s.find(\".ultp-tabs-nav-element\");if(g+=h,k*h\u003Cf&&(s.css({transform:\"translate(0px, 0px)\"}),\"slider\"==o&&(d.addClass(\"ultp-arrow-active\"),r.removeClass(\"ultp-arrow-active\"))),k*h>f){p&&(r.addClass(\"ultp-arrow-active\"),d.addClass(\"ultp-arrow-active\"));let t=n?`translate(0px, ${f-k*h}px)`:`translate(${f-k*h}px, 0px)`;s.css({transform:t})}const l=e.parent().children().length;e.each((function(e){b&&t(this).removeClass(\"tab-progressbar-active\"),e+1==k?(t(this).addClass(\"ultp-tab-active\"),b&&t(this).addClass(\"tab-progressbar-active\")):t(this).removeClass(\"ultp-tab-active\")})),i.each((function(e){t(this).each((function(){e+1==k?t(this).addClass(\"active\"):t(this).removeClass(\"active\")}))})),l==k&&(d.removeClass(\"ultp-arrow-active\"),k=0),k++}}t(\".ultp-tabs-nav-element\").off(c).on(c,(function(i){i.stopPropagation;const o=t(this);o.addClass(\"ultp-tab-active\").siblings().removeClass(\"ultp-tab-active\"),e(t(this)).find(\".wp-block-ultimate-post-tab-item\").each((function(){t(this).removeClass(\"active\"),t(this).data(\"tabindex\")==o.data(\"tabindex\")&&t(this).addClass(\"active\")})),u=n?s.height():s.width(),h=u\u002Fs?.children().length,f=n?a.height():a.width(),u>f&&p&&v()})),u>f&&p&&v();const b=i.data(\"progressbar\"),y=1e3*t(this).data(\"duration\");let k=e(t(this)).data(\"activetab\")-1||1;if(\"autoplay\"==t(this).data(\"tabevent\")){let t=setInterval((()=>w(i,l,s)),y);i.on(\"mouseleave\",(function(){t=setInterval((()=>w(i,l,s)),y)})),i.on(\"mouseenter\",(function(){clearInterval(t)}))}}))}e(),t(window).on(\"resize\",(function(){e()}))}(jQuery),function(t){t(\".wp-block-ultimate-post-advanced-search\")?.length&&function(){let e=1;t(document).on(\"click\",\".ultp-search-clear\",(function(){e=1;const i=t(this).data(\"blockid\");t(this).parents(\".ultp-search-inputwrap\").find(\".ultp-searchres-input\").val(\"\"),t(this).removeClass(\"active\"),t(`.ultp-block-${i}`).find(\".ultp-result-data\").html(\"\"),t(`.ultp-block-${i}`).find(\".ultp-search-noresult, .ultp-viewall-results, .ultp-result-loader\").removeClass(\"active\")})),t(document).on(\"click\",\".ultp-popupclose-icon\",(function(){t(this).parents(\".result-data\").removeClass(\"popup-active\")})),t(document).on(\"click\",\".ultp-searchpopup-icon\",(function(){const e=t(this).parents(\".ultp-search-frontend\"),i=e.data(\"blockid\");o(e,!t(`.result-data.ultp-block-${i}`).length),t(`.result-data.ultp-block-${i}`).toggleClass(\"popup-active\")})),t(\".ultp-searchres-input\").val().length>2&&t(\".ultp-searchres-input\").closest(\".ultp-search-inputwrap\").find(\".ultp-search-clear\").addClass(\"active\");t(document).on(\"input\",\".ultp-searchres-input\",(function(e){i(t(this),e.target.value)}));const i=(i,s,l=\"\",n=!0)=>{l=l||i.parents(\".ultp-search-inputwrap\").find(\".ultp-search-clear\").data(\"blockid\");const a=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${l}`).find(\".ultp-search-frontend\"),r=t(`.result-data.ultp-block-${l}`);o(a,!r.length),s.length>2?a.data(\"ajax\")&&(r.find(\".ultp-search-result\").addClass(\"ultp-search-show\"),r.find(\".ultp-result-loader\").addClass(\"active\"),r.addClass(\"popup-active\"),wp.apiFetch({path:\"\u002Fultp\u002Fultp_search_data\",method:\"POST\",data:{searchText:s,date:parseInt(a.data(\"date\")),image:parseInt(a.data(\"image\")),author:parseInt(a.data(\"author\")),excerpt:parseInt(a.data(\"excerpt\")),category:parseInt(a.data(\"catenable\")),excerptLimit:parseInt(a.data(\"excerptlimit\")),postPerPage:a.data(\"allresult\")?a.data(\"postno\"):10,exclude:\"string\"!=typeof a.data(\"searchposttype\")&&a.data(\"searchposttype\").length>0&&a.data(\"searchposttype\"),paged:e,wpnonce:ultp_data_frontend.security}}).then((e=>{if(e.post_data){n?(r.find(\".ultp-search-result\").addClass(\"ultp-search-show\"),r.find(\".ultp-result-data\").addClass(\"ultp-result-show\"),r.find(\".ultp-result-data\").html(e.post_data)):(r.find(\".ultp-search-result\").addClass(\"ultp-search-show\"),r.find(\".ultp-result-data\").addClass(\"ultp-result-show\"),r.find(\".ultp-result-data\").append(e.post_data).fadeIn(500,(function(){t(this).animate({scrollTop:t(this).prop(\"scrollHeight\")},400)}))),r.find(\".ultp-search-noresult, .ultp-result-loader\").removeClass(\"active\");const i=r.find(\".ultp-result-data .ultp-search-result__item\").length;r.find(\".ultp-viewall-results\").addClass(\"active\").find(\"span\").text(`(${e.post_count-i})`)}else r.find(\".ultp-result-data\").removeClass(\"ultp-result-show\"),r.find(\".ultp-result-data\").html(\"\"),r.find(\".ultp-search-noresult\").addClass(\"active\"),r.find(\".ultp-result-loader, .ultp-viewall-results\").removeClass(\"active\");if(a.data(\"allresult\")){const t=r.find(\".ultp-result-data .ultp-search-result__item\").length;e.post_count&&e.post_count>t?r.find(\".ultp-viewall-results\").addClass(\"active\").find(\"span\").text(`(${e.post_count-t})`):r.find(\".ultp-viewall-results\").removeClass(\"active\")}}))):(r.find(\".ultp-search-result\").removeClass(\"ultp-search-show\"),r.find(\".ultp-result-data\").removeClass(\"ultp-result-show\"),r.find(\".ultp-search-noresult\").removeClass(\"active\")),s.length\u003C3?(e=1,r.find(\".ultp-result-data\").html(\"\"),r.find(\".ultp-viewall-results\").removeClass(\"active\"),r.find(\".ultp-search-noresult\").removeClass(\"active\"),a.find(\".ultp-search-clear\").removeClass(\"active\"),t(`.result-data.ultp-block-${l}`).find(\".ultp-search-clear\").removeClass(\"active\")):(a.find(\".ultp-search-clear\").addClass(\"active\"),t(`.result-data.ultp-block-${l}`).find(\".ultp-search-clear\").addClass(\"active\"))};t(document).on(\"click\",\".ultp-viewall-results\",(function(o){e++;const s=t(this).closest(\".result-data\").data(\"blockid\");i(t(this),t(`.ultp-block-${s} .ultp-searchres-input`).val(),s,!1)})),t(\".wp-block-ultimate-post-advanced-search\").length>0&&t(document).on(\"click\",(function(e){t(e.target).closest(\".ultp-searchpopup-icon\").length||t(e.target).closest(\".ultp-searchres-input\").length||t(e.target).closest(\".result-data.popup-active\").length||t(\".result-data\").removeClass(\"popup-active\"),t(e.target).closest(\".ultp-search-frontend\").length||t(e.target).closest(\".result-data.popup-active\").length||t(\".result-data\").removeClass(\"popup-active\")}));t(document).on(\"keyup\",\".ultp-searchres-input\",(function(e){const i=t(this).closest(\".ultp-search-inputwrap\").find(\".ultp-search-clear\").data(\"blockid\"),o=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(\".ultp-search-frontend\").data(\"gosearch\");let s=\"_self\";if(t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(\".ultp-search-frontend\").data(\"enablenewtab\")&&(s=\"_blank\"),o&&\"Enter\"==e.key&&t(this).val().length>2){const e=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(\".ultp-search-frontend\");let o=\"string\"!=typeof e.data(\"searchposttype\")&&e.data(\"searchposttype\")?.length>0&&e?.data(\"searchposttype\");o=o.length?`&ultp_exclude=${JSON.stringify(o.map((t=>t.value)))}`:\"\",window.open(`${ultp_data_frontend.home_url}\u002F?s=${t(this).val()}${o}`,s)}})),t(document).on(\"click\",\".ultp-search-button\",(function(e){const i=t(this).closest(\".ultp-searchform-content\").find(\".ultp-search-clear\").data(\"blockid\"),o=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(\".ultp-search-frontend\").data(\"gosearch\");let s=\"_self\";if(t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(\".ultp-search-frontend\").data(\"enablenewtab\")&&(s=\"_blank\"),o){const e=t(`.wp-block-ultimate-post-advanced-search.ultp-block-${i}`).find(\".ultp-search-frontend\");let o=\"string\"!=typeof e.data(\"searchposttype\")&&e.data(\"searchposttype\")?.length>0&&e?.data(\"searchposttype\");o=o.length?`&ultp_exclude=${JSON.stringify(o.map((t=>t.value)))}`:\"\",window.open(`${ultp_data_frontend.home_url}\u002F?s=${t(this).closest(\".ultp-searchform-content\").find(\".ultp-searchres-input\").val()}${o}`,s)}else t(`.result-data.ultp-block-${i}`).addClass(\"popup-active\")})),t(document).on(\"click\",\".ultp-searchres-input\",(function(e){const i=t(this).closest(\".ultp-searchform-content\").find(\".ultp-search-clear\").data(\"blockid\");t(\".result-data\").removeClass(\"popup-active\"),t(`.result-data.ultp-block-${i}`).addClass(\"popup-active\")})),t(window).on(\"resize\",(function(){t(\".ultp-search-result\").length>0&&t(\".ultp-search-frontend\").each((function(e){o(t(e))}))}));const o=(e,i=!1)=>{const o=e.data(\"blockid\"),s=e.data(\"popuptype\"),l=e.data(\"popupposition\");if(i){const i=e.data(\"allresult\"),n=`\u003Cdiv class=\"ultp-search-result\" data-image=${e.data(\"image\")||!1} data-author=${e.data(\"author\")||!1} data-date=${e.data(\"date\")||!1} data-excerpt=${e.data(\"excerpt\")||!1} data-excerptlimit=${e.data(\"excerptlimit\")} data-allresult=${i||!1} data-catenable=${e.data(\"catenable\")||!1} data-postno=${e.data(\"postno\")||!1} data-gosearch=${e.data(\"gosearch\")||!1} data-popupposition=${l||!1}>\\n                    \u003Cdiv class=\"ultp-result-data\">\u003C\u002Fdiv>\\n                    \u003Cdiv class=\"ultp-search-result__item ultp-search-noresult\">${e.data(\"noresultext\")}\u003C\u002Fdiv>\\n                    \u003Cdiv class=\"ultp-search-result__item ultp-result-loader\">\u003C\u002Fdiv>\\n                    ${i?`\u003Cdiv class=\"ultp-viewall-results ultp-search-result__item\">${e.data(\"viewmoretext\")}\u003Cspan>\u003C\u002Fspan>\u003C\u002Fdiv>\u003Cdiv class=\"ultp-search-result__item ultp-viewmore-loader\">\u003C\u002Fdiv>`:\"\"}\\n                    \u003C\u002Fdiv>`;if(s){const i=t(`.ultp-block-${o}`).find(\".ultp-search-canvas\").detach();t(\"body\").append(`\u003Cdiv class=\"result-data ultp-block-${o} ultp-search-animation-${s}\" data-blockid=${o}>\u003Cdiv class=\"ultp-search-canvas\">${i.html()+(e.data(\"ajax\")?n:\"\")}\u003C\u002Fdiv>\u003C\u002Fdiv>`)}else t(\"body\").append(`\u003Cdiv class=\"result-data ultp-block-${o}\" data-blockid=${o}>${n}\u003C\u002Fdiv>`)}let n=\"\";if(!s){n=e.find(\".ultp-searchform-content\");const i=n.offset();return t(`body > .ultp-block-${o}`).css({width:`${n.width()}px`,top:`${i?.top+n.height()}px`,left:`${i?.left}px`})}if(\"popup\"==s){n=e.find(\".ultp-searchpopup-icon\");const i=n.offset(),s=\"right\"==l?i?.left>t(`body > .ultp-block-${o}`).width():t(document).width()-i?.left>t(`body > .ultp-block-${o}`).width();let a=\"\",r=\"\";return\"right\"==l?(a=s?t(document).width()-i?.left-n.outerWidth()+\"px\":\"unset\",r=s?\"auto\":i?.left+(\"right\"==l?10:0)+\"px\"):(a=s?\"unset\":t(document).width()-i?.left-n.outerWidth()+\"px\",r=s?i?.left+(\"right\"==l?10:0)+\"px\":\"auto\"),t(`body > .ultp-block-${o}`).css({top:`${i?.top+n.outerHeight()}px`,right:a,left:r})}}}()}(jQuery),function(t){function e(e){if(t(\".editor-styles-wrapper\")?.length)return;const i=t(\".wp-block-ultimate-post-menu-item.hasMegaMenuChild > .ultp-menu-item-wrapper > .ultp-menu-item-content\");i.length>0&&i.each((function(){if(t(this).hasClass(\"ultpMegaWindowWidth\")){const e=t(\"body\")?.width()||1200,i=t(\"body\")?.offset()?.left||0;t(this)?.offset();t(this).find(\" > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper\").css({maxWidth:`${e}px`,boxSizing:\"border-box\"});const o=t(this).siblings(\".ultp-menu-item-label-container\")?.offset()?.left||0;t(this).css({left:i-o+\"px\"})}else if(t(this).hasClass(\"ultpMegaMenuWidth\")){const e=t(this).closest(\".wp-block-ultimate-post-menu\")?.width()||800,i=t(this).closest(\".wp-block-ultimate-post-menu\")?.offset()?.left||0,o=t(this)?.offset()?.left||0;t(this).find(\" > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper\").css({maxWidth:`${e}px`,boxSizing:\"border-box\"}),t(this).css({left:i-o+\"px\"});const s=t(this).siblings(\".ultp-menu-item-label-container\")?.offset()?.left||0;t(this).css({left:i-s+\"px\"})}else t(this).find(\" > .wp-block-ultimate-post-mega-menu > .ultp-mega-menu-wrapper\").css({maxWidth:\"\",boxSizing:\"\"}),t(this).css({left:\"\"})}))}setTimeout((()=>{e(\"setTimeout\")}),10),e(\"normal\");const i=0==t(\"body.postx-admin-page\").length;i&&t(window).on(\"resize\",(function(){e()}));let o,s,l,n,a,r,d,c,p,u=\"\",h=[],f=[];function m(e,i=\"\"){if(\"close\"==i)t(l).find(\"> .ultp-mobile-view-container > .ultp-mobile-view-wrapper\").css({transform:\"translateX(-100%)\",visibility:\"hidden\",opacity:\"0\"}),setTimeout((()=>{t(l).hasClass(\"ultpMenu__Css\")&&(t(l).addClass(\"ultpMenuCss\"),t(l).removeClass(\"ultpMenu__Css\")),t(l).removeClass(\"ultp-mobile-menu\"),t(l).find(\"> .ultp-mobile-view-container\").removeClass(\"ultp-mv-active\"),t(l).find(\"> .ultp-mobile-view-container > .ultp-mobile-view-wrapper\").css({transform:\"\",visibility:\"\",opacity:\"\",\"transition-property\":\"\",\"transition-timing-function\":\"\",\"transition-duration\":\"\"}),o?.html(\"\"),u=\"\",h=[],o=\"\",s=\"\",l=\"\",n=\"\",a=\"\",c=0,p=\"\",f=[]}),c);else{const i=t(e.target);c=t(i).hasClass(\"ultp-mv-ham-icon\")?t(i).data(\"animationduration\"):i.closest(\".ultp-mv-ham-icon\").data(\"animationduration\"),c=c||100,p=t(i).hasClass(\"ultp-mv-ham-icon\")?t(i).data(\"headtext\"):i.closest(\".ultp-mv-ham-icon\").data(\"headtext\"),r=i.closest(\".wp-block-ultimate-post-menu\").find(\"> .ultp-mobile-view-container > .ultp-mv-icons > .ultp-mv-label-icon svg\").prop(\"outerHTML\"),d=i.closest(\".wp-block-ultimate-post-menu\").find(\"> .ultp-mobile-view-container > .ultp-mv-icons > .ultp-mv-label-icon-expand svg\").prop(\"outerHTML\"),l=i.closest(\".wp-block-ultimate-post-menu\");const o=t(l);t(l).hasClass(\"ultpMenuCss\")&&(t(l).removeClass(\"ultpMenuCss\"),t(l).addClass(\"ultpMenu__Css\")),u=\"ultp-block-\"+o.data(\"bid\"),o.addClass(\"ultp-mobile-menu\"),o.find(\"> .ultp-mobile-view-container\").addClass(\"ultp-mv-active\"),v(\"\",\"hamIcon\"),o.find(\"> .ultp-mobile-view-container > .ultp-mobile-view-wrapper\").css({\"transition-property\":\"opacity, visibility, transform\",\"transition-timing-function\":\"ease-in\",\"transition-duration\":c?c\u002F1e3+\"s\":\".25s\"})}}function g(t){const e=t?._replace||r;let i=t?._string;return i&&f.length&&f.forEach((t=>{t&&e&&(i=i.replace(t,e))})),i}function v(e,i){if(\"hamIcon\"==i){n=l.data(\"rcsstype\"),a=l.data(\"rstr\"),o=t(l).find(\"> .ultp-mobile-view-container .ultp-mobile-view-body\"),s=t(l).find(\"> .ultp-mobile-view-container .ultp-mv-back-label\");let e=t(l).find(\"> .ultp-menu-wrapper > .ultp-menu-content\").html();if(t(l).find(\".ultp-menu-item-dropdown\").toArray().forEach((e=>{t(e).html()&&f.push(t(e).html())})),e){let i=t(\"\u003Cdiv>\").html(e);i.find(\".wp-block-ultimate-post-menu\").addClass(\"ultp-mobile-menu\"),e=i.html(),e=g({type:\"hamicon\",_string:e}),o.html(\"custom\"==n?e.replaceAll(\"ultpMenuCss\",\"ultpMenu__Css\"):e),s.html(p)}}else if(\"next\"==i){const i=t(e.target).closest(\".wp-block-ultimate-post-menu-item\"),r=i.data(\"bid\");if(!h.includes(\"ultp-block-\"+r)){let e=\"\",d=\"\";if(i.hasClass(\"hasListMenuChild\")?(d=i.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-list-menu\").css(\"display\"),e=i.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-list-menu > .ultp-list-menu-wrapper > .ultp-list-menu-content\").html()):(d=i.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-mega-menu\").css(\"display\"),e=i.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\").html()),\"none\"==d)return;if(e){t(l).find(\".ultp-mv-back-label-con\").removeClass(\"ultpmenu-dnone\");let d=t(\"\u003Cdiv>\").html(e);d.find(\".wp-block-ultimate-post-menu\").addClass(\"ultp-mobile-menu\"),e=d.html(),h.push(u),u=\"ultp-block-\"+r,s.html(i.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-label-text\").html()),\"mv_dissolve\"==a?o.find(\"> *\").animate({opacity:.2},c,(function(){o.html(\"custom\"==n?e.replaceAll(\"ultpMenuCss\",\"ultpMenu__Css\"):e),o.find(\"> *\").css(\"opacity\",\".1\"),o.find(\"> *\").animate({opacity:1},c)})):(o.html(\"custom\"==n?e.replaceAll(\"ultpMenuCss\",\"ultpMenu__Css\"):e),o.find(\"> *\").css({opacity:\".1\",transform:\"translateX(100%)\",transition:`transform ${c\u002F1e3+\"s\"} ease`}),o.find(\"> *\").animate({opacity:.3},10,(function(){o.find(\"> *\").css({opacity:\"1\",transform:\"translateX(0px)\"})})))}}}else if(\"back\"==i){if(0==h.length)return;u=h.pop()||\"\";let e=\"\";if(0==h.length?(e=t(l).find(\"> .ultp-menu-wrapper > .ultp-menu-content\").html(),s.html(p),t(l).find(\".ultp-mv-back-label-con\").addClass(\"ultpmenu-dnone\")):t(\".\"+u).hasClass(\"wp-block-ultimate-post-menu-item\")&&(e=t(\".\"+u).hasClass(\"hasListMenuChild\")?t(l).find(\".\"+u).find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-list-menu > .ultp-list-menu-wrapper > .ultp-list-menu-content\").html():t(l).find(\".\"+u).find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\").html()),e){let i=t(\"\u003Cdiv>\").html(e);i.find(\".wp-block-ultimate-post-menu\").addClass(\"ultp-mobile-menu\"),e=i.html(),e=g({type:\"back\",_string:e}),s.html(t(l).find(\".\"+u).find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-label-text\").html()),\"mv_dissolve\"==a?(o.find(\"> *\").animate({opacity:.2},c,(function(){o.html(\"custom\"==n?e.replaceAll(\"ultpMenuCss\",\"ultpMenu__Css\"):e)})),o.find(\"> *\").animate({opacity:1},c)):(o.html(\"custom\"==n?e.replaceAll(\"ultpMenuCss\",\"ultpMenu__Css\"):e),o.find(\"> *\").css({opacity:\".1\",transform:\"translateX(-100%)\",transition:`transform ${c\u002F1e3+\"s\"} ease`}),o.find(\"> *\").animate({opacity:.3},10,(function(){o.find(\"> *\").css({opacity:\"1\",transform:\"translateX(0px)\"})})))}}}function w(e,i){const o=t(e.target).closest(\".wp-block-ultimate-post-menu-item\");let s,l,n=\"next\";if(o.hasClass(\"ultp-menu-res-css\")?n=\"back\":o.addClass(\"ultp-menu-res-css\"),\"next\"==n){o.addClass(\"ultp-hammenu-accordian-active\"),d&&o.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-label-container .ultp-menu-item-dropdown\").html(d),s=o.hasClass(\"hasListMenuChild\")?o.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content > .wp-block-ultimate-post-list-menu > .ultp-list-menu-wrapper > .ultp-list-menu-content\"):o.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\"),s.length||(s=o.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\")),l=s.outerHeight();const e=o.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\"),i=e.css(\"padding-top\"),n=e.css(\"padding-bottom\");o.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\").html(s.html()),o.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\").css({height:\"0px\",\"padding-top\":\"0\",\"padding-bottom\":\"0\"}),o.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\").animate({height:l+\"px\",\"padding-top\":i,\"padding-bottom\":n},c,(function(){t(this).css({height:\"\",\"padding-top\":\"\",\"padding-bottom\":\"\"})}))}else\"back\"==n&&(o.removeClass(\"ultp-hammenu-accordian-active\"),o.find(\".wp-block-ultimate-post-menu-item\").removeClass(\"ultp-hammenu-accordian-active\"),o.find(\"> .ultp-menu-item-wrapper > .ultp-menu-item-content\").animate({height:\"0\",paddingTop:\"0\",paddingBottom:\"0\"},c,(function(){t(this).css({height:\"\",paddingTop:\"\",paddingBottom:\"\"}),r&&o.find(\".ultp-menu-item-wrapper .ultp-menu-item-label-container .ultp-menu-item-dropdown\").each((function(){t(this).html()&&t(this).html(r)})),o.removeClass(\"ultp-menu-res-css\"),o.find(\".wp-block-ultimate-post-menu-item\").removeClass(\"ultp-menu-res-css\")})))}i&&(t(\".wp-block-ultimate-post-menu\").each((function(){const e=t(this);\"hasRootMenu\"!=e.data(\"hasrootmenu\")&&e.find(`.ultp-menu-item-wrapper[data-parentbid=\".ultp-block-${e?.data(\"bid\")}\"] > .ultp-menu-item-label-container a`).each((function(){const i=t(this),o=window.location.href;let s=!1;const l=i[0].href;if(o.endsWith(\"\u002F\")&&!l.endsWith(\"\u002F\")){const t=l+\"\u002F\";o.replace(\"https:\",\"http:\")==t.replace(\"https:\",\"http:\")&&(s=!0)}(o.replace(\"https:\",\"http:\")==l.replace(\"https:\",\"http:\")||s)&&i.closest(`.ultp-menu-item-wrapper[data-parentbid=\".ultp-block-${e?.data(\"bid\")}\"]`).addClass(\"ultp-current-link\")}))})),t(document).on(\"click\",'.wp-block-ultimate-post-menu[data-mv=\"enable\"] > .ultp-mv-ham-icon.ultp-active',(function(t){m(t,\"ham\")})),t(document).on(\"click\",\".ultp-mobile-view-container .ultp-mv-back, .ultp-mobile-view-container .ultp-mv-back-label-con\",(function(t){\"mv_dissolve\"==a||\"mv_slide\"==a?v(t,\"back\"):w(t,\"back\")})),t(document).on(\"click\",\".ultp-mobile-view-container .ultp-mv-close\",(function(t){m(t,\"close\")})),t(document).on(\"click\",\".ultp-mobile-view-container\",(function(e){t(e.target).hasClass(\"ultp-mobile-view-container\")&&m(e,\"close\")})),t(document).on(\"click\",\".ultp-mobile-view-container .ultp-menu-item-label-container\",(function(e){t(e.target).is(\".ultp-menu-item-label\")||t(e.target).parent().is(\".ultp-menu-item-label\")||t(e.target).is(\".ultp-menu-item-label-container\")&&0==t(e.target).siblings(\".ultp-menu-item-content\").find(\"> *\").length||(e.preventDefault(),\"mv_dissolve\"==a||\"mv_slide\"==a?v(e,\"next\"):w(e,\"next\"))})))}(jQuery),function(t){function e(){const e=t(\".ultp-video-modal.modal_active\");if(e.length>0){const i=e.find(\"iframe\"),o=e.find(\"video\");i.length&&i.each((function(){const e=t(this);e.attr(\"src\")&&(e.attr(\"src\",\"\"),setTimeout((()=>{e.remove()}),100))})),o.length&&o.each((function(){this.pause(),this.currentTime=0})),e.removeClass(\"modal_active\"),e.find(\".ultp-video-wrapper\").empty(),e.closest(\".ultp-block-item\").find(\".ultp-video-icon\").focus()}}t(document).on(\"click\",\".ultp-video-icon\",(function(){const e=t(this);let i=\"true\"===e.attr(\"enableautoplay\")||\"1\"===e.attr(\"enableautoplay\");const o=e.parents(\".ultp-block-item\"),s=e.closest(\".ultp-block-image\");let l,n=\"true\"===e.attr(\"enableVideoPopup\")||\"1\"===e.attr(\"enableVideoPopup\");if(n?(l=o.find(\".ultp-video-modal .ultp-video-wrapper\"),0===l.length&&(l=s.find(\"div.ultp-block-video-content .ultp-video-wrapper\"))):(l=s.find(\"div.ultp-block-video-content .ultp-video-wrapper\"),s.find(\"div.ultp-block-video-content\").show()),0===l.length)return void console.error(\"Video content wrapper not found\");const a={url:l.data(\"video-url\"),id:l.data(\"video-id\"),type:l.data(\"video-type\"),autoplay:l.data(\"autoplay\"),loop:l.data(\"loop\"),mute:l.data(\"mute\"),controls:l.data(\"controls\"),preload:l.data(\"preload\"),poster:l.data(\"poster\"),playsinline:l.data(\"playsinline\"),width:l.data(\"width\"),height:l.data(\"height\")};let r=a.id;if(!r&&a.url)switch(a.type){case\"youtube\":const t=\u002F(?:youtu\\.be\\\u002F|youtube\\.com\\\u002F(?:embed\\\u002F|v\\\u002F|watch\\?v=|watch\\?.+&v=))((\\w|-){11})\u002F,e=a.url.match(t);r=e?e[1]:null;break;case\"vimeo\":const i=\u002Fvimeo\\.com\\\u002F(?:channels\\\u002F(?:\\w+\\\u002F)?|groups\\\u002F([^\\\u002F]*)\\\u002Fvideos\\\u002F|album\\\u002F(\\d+)\\\u002Fvideo\\\u002F|video\\\u002F|)(\\d+)(?:$|\\\u002F|\\?)\u002F,o=a.url.match(i);r=o?o[o.length-1]:null;break;case\"local\":r=\"local\"}if(!r&&\"local\"!==a.type)return void console.error(`${a.type} video ID not found`);l.empty();let d=\"\";switch(a.type){case\"youtube\":const t=new URLSearchParams({autoplay:i?\"1\":\"0\",loop:a.loop?\"1\":\"0\",mute:a.mute||i?\"1\":\"0\",controls:a.controls?\"1\":\"0\",playsinline:a.playsinline?\"1\":\"0\",modestbranding:\"1\",rel:\"0\"});a.loop&&r&&t.append(\"playlist\",r),d=`\u003Ciframe \\n                    src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F${r}?${t.toString()}\" \\n                    width=\"${a.width||\"100%\"}\" \\n                    height=\"${a.height||\"315\"}\" \\n                    frameborder=\"0\" \\n                    allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" \\n                    allowfullscreen\\n                    loading=\"lazy\">\\n                \u003C\u002Fiframe>`;break;case\"vimeo\":d=`\u003Ciframe \\n                    src=\"https:\u002F\u002Fplayer.vimeo.com\u002Fvideo\u002F${r}?${new URLSearchParams({autoplay:i?\"1\":\"0\",loop:a.loop?\"1\":\"0\",muted:a.mute||i?\"1\":\"0\",controls:a.controls?\"1\":\"0\",playsinline:a.playsinline?\"1\":\"0\",dnt:\"1\"}).toString()}\" \\n                    width=\"${a.width||\"100%\"}\" \\n                    height=\"${a.height||\"315\"}\" \\n                    frameborder=\"0\" \\n                    allow=\"autoplay; fullscreen; picture-in-picture\" \\n                    allowfullscreen\\n                    loading=\"lazy\">\\n                \u003C\u002Fiframe>`;break;case\"local\":const e={mp4:\"mp4\",webm:\"webm\",ogg:\"ogg\",avi:\"mp4\",mov:\"mp4\"}[a.url.split(\".\").pop().toLowerCase().split(\"?\")[0]]||\"mp4\",o=[];i&&(o.push(\"autoplay\"),o.push(\"muted\")),a.loop&&o.push(\"loop\"),a.controls&&o.push(\"controls\"),a.playsinline&&o.push(\"playsinline\"),a.poster&&o.push(`poster=\"${a.poster}\"`),a.preload&&o.push(`preload=\"${a.preload}\"`),d=`\u003Cvideo ${o.join(\" \")} \\n                    width=\"${a.width||\"100%\"}\" \\n                    height=\"${a.height||\"auto\"}\" \\n                    class=\"ultp-video-html\">\\n                    \u003Csource src=\"${a.url}\" type=\"video\u002F${e}\">\\n                    \u003Cp>Your browser does not support the video tag. \\n                        \u003Ca href=\"${a.url}\" target=\"_blank\">Download the video\u003C\u002Fa>\\n                    \u003C\u002Fp>\\n                \u003C\u002Fvideo>`;break;default:return void console.error(`Unsupported video type: ${a.type}`)}if(!d)return void console.error(\"Failed to generate video embed\");if(l.html(d),n){const e=o.find(\".ultp-video-modal\");if(!(e.length>0))return void console.error(\"Video modal not found\");e.addClass(\"modal_active\"),e.find(\".ultp-video-modal__content\").show(),t(\".ultp-loader-container\").hide(),e.attr(\"tabindex\",\"-1\").focus()}else s.find(\"> a img\").hide(),l.parent().css({display:\"block\"}),e.hide();const c=l.find(\"video\");i&&c.length>0&&setTimeout((()=>{c[0].play().catch((t=>console.log(\"Autoplay prevented:\",t)))}),500);const p=l.find(\"iframe, video\");p.length&&p.on(\"load loadeddata canplay\",(function(){t(\".ultp-loader-container\").hide()}))})),t(document).on(\"click\",\".ultp-video-close, .ultp-video-modal\",(function(i){(t(this).hasClass(\"ultp-video-close\")||i.target===this)&&e()})),t(document).on(\"click\",\".ultp-video-modal__content\",(function(t){t.stopPropagation()})),t(document).on(\"keyup\",(function(t){\"Escape\"!==t.key&&27!==t.keyCode||e()}))}(jQuery),function(t){0==t(\"body.postx-admin-page\").length&&t(\".wp-block-ultimate-post-accordion\").length>0&&t(\".wp-block-ultimate-post-accordion\").each((function(){const e=t(this).data(\"active\"),i=t(this).data(\"autocollapse\");t(this).children().children(\".wp-block-ultimate-post-accordion-item\").each((function(o){const s=t(this);o==e?(t(this).addClass(\"active active-accordion\"),s.find(\".ultp-accordion-item__content\").first().css({display:\"block\"})):t(this).removeClass(\"active active-accordion\"),t(this).children(\".ultp-accordion-item\").children(\".ultp-accordion-item__navigation\").on(\"click\",(function(){const e=t(this).parent().parent(\".wp-block-ultimate-post-accordion-item\"),o=e.find(\".ultp-accordion-item__content\").first(),s=e.parent().parent(\".wp-block-ultimate-post-accordion\");o.is(\":visible\")?o.stop(!0,!0).slideUp(300,(function(){e.removeClass(\"active active-accordion\")})):(i&&s.find(\".ultp-accordion-item__content:visible\").first().stop(!0,!0).slideUp(300,(function(){e.siblings().removeClass(\"active active-accordion\"),e.addClass(\"active active-accordion\")})),e.addClass(\"active active-accordion\"),o.stop(!0,!0).slideDown(300))}))}))}))}(jQuery),function(t){t(document).ready((function(){!function(){function e(t,e){if(\"string\"==typeof t)try{return JSON.parse(t)}catch(t){return e}return\"object\"==typeof t&&null!==t?t:e}function i(e,i){if(!e)return\"\";const o=t(window).width();let s;return s=o\u003C600?i.sm||i.lg:o\u003C900&&i.md||i.lg,e.length>s?e.substring(0,s)+\"...\":e}function o(t,e){const i=[...t];switch(e){case\"title\":return i.sort(((t,e)=>t.title.localeCompare(e.title,void 0,{sensitivity:\"base\"})));case\"latest\":return i.sort(((t,e)=>new Date(e.publishedAt).getTime()-new Date(t.publishedAt).getTime()));case\"date\":return i.sort(((t,e)=>new Date(t.publishedAt).getTime()-new Date(e.publishedAt).getTime()));case\"popular\":return i.sort(((t,e)=>(e.viewCount||0)-(t.viewCount||0)));default:return t}}function s(t){if(!t)return\"\";try{const e=new URL(t);if(\"www.youtube.com\"===e.hostname){if(e.pathname.startsWith(\"\u002Fchannel\u002F\"))return e.pathname.split(\"\u002Fchannel\u002F\")[1];if(e.pathname.startsWith(\"\u002F@\"))return e.pathname.substring(2);if(e.searchParams.get(\"list\"))return e.searchParams.get(\"list\")}return t}catch(e){return t}}function l(e,i,o){t.get(`https:\u002F\u002Fwww.googleapis.com\u002Fyoutube\u002Fv3\u002Fsearch?part=snippet&q=${encodeURIComponent(e)}&type=channel&key=${i}`).done((function(t){t.items&&t.items.length>0?o(t.items[0].snippet.channelId):o(null)})).fail((function(){o(null)}))}function n(t,e){return`\\n\\t\\t\\t\\t\u003Cdiv class=\"ultp-ytg-video-wrapper\">\\n\\t\\t\\t\\t\\t\u003Ciframe \\n\\t\\t\\t\\t\\t\\tsrc=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F${t}?${[\"autoplay=\"+(e.autoplay?\"1\":\"0\"),\"loop=\"+(e.loop?\"1\":\"0\"),\"mute=\"+(e.mute?\"1\":\"0\"),\"controls=\"+(e.showPlayerControl?\"1\":\"0\"),\"modestbranding=\"+(e.hideYoutubeLogo?\"1\":\"0\"),e.loop?`playlist=${t}`:null].filter(Boolean).join(\"&\")}\"\\n\\t\\t\\t\\t\\t\\ttitle=\"YouTube Video\"\\n\\t\\t\\t\\t\\t\\tframeborder=\"0\"\\n\\t\\t\\t\\t\\t\\tallow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\\n\\t\\t\\t\\t\\t\\tallowfullscreen\\n\\t\\t\\t\\t\\t>\u003C\u002Fiframe>\\n\\t\\t\\t\\t\u003C\u002Fdiv>\\n\\t\\t\\t`}function a(t,e,o,s,l,n,a){let r='\u003Cdiv class=\"ultp-ytg-content\">';return t&&(r+=`\u003Cdiv class=\"ultp-ytg-title\">\u003Ca href=\"https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=${a}\" target=\"_blank\" rel=\"noopener noreferrer\">${i(e,o)}\u003C\u002Fa>\u003C\u002Fdiv>`),s&&(r+=`\u003Cdiv class=\"ultp-ytg-description\">${i(l,n)}\u003C\u002Fdiv>`),r+=\"\u003C\u002Fdiv>\",r}t(\".wp-block-ultimate-post-youtube-gallery\").each((function(){const r=t(this),d=r.find(\".ultp-block-wrapper\");let c=r.find(\".ultp-ytg-view-grid, .ultp-ytg-container\");const p=r.find(\".ultp-ytg-loadmore-btn\"),u={playlistIdOrUrl:r.data(\"playlist\")||\"\",apiKey:r.data(\"api-key\")||\"\",cacheDuration:parseInt(r.data(\"cache-duration\"))||0,sortBy:r.data(\"sort-by\")||\"date\",galleryLayout:r.data(\"gallery-layout\")||\"grid\",videosPerPage:e(r.data(\"videos-per-page\"),{lg:9,md:6,sm:3}),showVideoTitle:\"1\"==r.data(\"show-video-title\"),videoTitleLength:e(r.data(\"video-title-length\"),{lg:50,md:50,sm:50}),loadMoreEnable:\"1\"==r.data(\"load-more-enable\"),moreButtonLabel:r.data(\"more-button-label\")||\"More Videos\",autoplay:\"1\"==r.data(\"autoplay\"),loop:\"1\"==r.data(\"loop\"),mute:\"1\"==r.data(\"mute\"),showPlayerControl:\"1\"==r.data(\"show-player-control\"),hideYoutubeLogo:\"1\"==r.data(\"hide-youtube-logo\"),showDescription:\"1\"==r.data(\"show-description\"),videoDescriptionLength:e(r.data(\"video-description-length\"),{lg:100,md:100,sm:100}),imageHeightRatio:r.data(\"image-height-ratio\")||\"16-9\",galleryColumn:e(r.data(\"gallery-column\"),{lg:3,md:2,sm:1}),displayType:r.data(\"display-type\")||\"grid\",enableListView:\"1\"==r.data(\"enable-list-view\"),enableIconAnimation:\"1\"==r.data(\"enable-icon-animation\"),defaultYoutubeIcon:\"1\"==r.data(\"enable-youtube-icon\"),imgHeight:r.data(\"img-height\")};let h=s(u.playlistIdOrUrl);if(h.startsWith(\"@\")){l(h.substring(1),u.apiKey,(function(t){t?(h=t,f(h)):d.html('\u003Cp style=\"color:#888\">Invalid handle or API key.\u003C\u002Fp>')}))}else f(h);function f(e){if(e.startsWith(\"UC\")&&(e=\"UU\"+e.substring(2)),!e||!u.apiKey)return void d.html('\u003Cp style=\"color:#888\">Please provide both YouTube playlist ID\u002FURL and API key.\u003C\u002Fp>');let s=[],l=u.videosPerPage.lg||9,h=null,f=null;function m(){const e=t(window).width();l=e\u003C600?Math.max(l,u.videosPerPage.sm||3):e\u003C900?Math.max(l,u.videosPerPage.md||6):Math.max(l,u.videosPerPage.lg||9)}function g(t){if(!t.length)return void c.html(\"\u003Cp>No videos found in this playlist.\u003C\u002Fp>\");h||(h=t[0]);let e='\u003Cdiv class=\"ultp-ytg-main\">';const o=`\\n\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"ultp-ytg-video-wrapper\">\\n\\t\\t\\t\\t\\t\\t\\t\u003Ciframe \\n\\t\\t\\t\\t\\t\\t\\t\\tsrc=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F${h.videoId}?${[\"autoplay=\"+(u.autoplay?\"1\":\"0\"),\"loop=\"+(u.loop?\"1\":\"0\"),\"mute=\"+(u.mute?\"1\":\"0\"),\"controls=\"+(u.showPlayerControl?\"1\":\"0\"),\"modestbranding=\"+(u.hideYoutubeLogo?\"1\":\"0\"),u.loop?`playlist=${h.videoId}`:null].filter(Boolean).join(\"&\")}\"\\n\\t\\t\\t\\t\\t\\t\\t\\ttitle=\"YouTube Video\"\\n\\t\\t\\t\\t\\t\\t\\t\\tframeborder=\"0\"\\n\\t\\t\\t\\t\\t\\t\\t\\tallow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\\n\\t\\t\\t\\t\\t\\t\\t\\tallowfullscreen\\n\\t\\t\\t\\t\\t\\t\\t>\u003C\u002Fiframe>\\n\\t\\t\\t\\t\\t\\t\\t${a(u.showVideoTitle,h.title,u.videoTitleLength,u.showDescription,h.description,u.videoDescriptionLength,h.videoId)}\\n\\t\\t\\t\\t\\t\\t\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t`;e+=o,e+=\"\u003C\u002Fdiv>\",e+='\u003Cdiv class=\"ultp-ytg-playlist-sidebar\">',e+='\u003Cdiv class=\"ultp-ytg-playlist-items\">',t.forEach((function(t){const o=t.videoId===h.videoId;e+=`\\n\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"ultp-ytg-playlist-item ${o?\"active\":\"\"}\" data-video-id=\"${t.videoId}\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cimg src=\"${t.thumbnail}\" alt=\"${t.title}\" loading=\"lazy\" \u002F>\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"ultp-ytg-playlist-item-content\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"ultp-ytg-playlist-item-title\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t${i(t.title,u.videoTitleLength)}\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t`})),e+=\"\u003C\u002Fdiv>\u003C\u002Fdiv>\",c.html(e)}function v(e,i){if(!e.length)return void c.html(\"\u003Cp>No videos found in this playlist.\u003C\u002Fp>\");const o=e.slice(0,i);let s=\"\";o.forEach((function(e){const i=f===e.videoId;if(s+=`\u003Cdiv class=\"ultp-ytg-item${i?\" active\":\"\"}\">`,s+='\u003Cdiv class=\"ultp-ytg-video\">',i)s+=n(e.videoId,u);else{const i=t(\".ultp-ytg-play__icon\").html();s+=`\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cimg src=\"${e.thumbnail}\" alt=\"${e.title}\" loading=\"lazy\" data-video-id=\"${e.videoId}\" style=\"cursor:pointer;\" \u002F>\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"ultp-ytg-play__icon${u.enableIconAnimation?\" ytg-icon-animation\":\"\"}\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t${i}\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t`}s+=\"\u003C\u002Fdiv>\",s+='\u003Cdiv class=\"ultp-ytg-inside\">',s+=a(u.showVideoTitle,e.title,u.videoTitleLength,u.showDescription,e.description,u.videoDescriptionLength,e.videoId),s+=\"\u003C\u002Fdiv>\u003C\u002Fdiv>\"})),c.html(s),u.loadMoreEnable&&i\u003Ce.length?p.show():p.hide()}function w(t,e){\"playlist\"===u.galleryLayout?g(t):v(t,e)}const b=`ultp_youtube_gallery_${e}_${u.apiKey}_${u.sortBy}_${u.imgHeight}`,y=u.cacheDuration;let k=null;try{k=JSON.parse(localStorage.getItem(b))}catch(t){k=null}const x=Date.now();k&&k.data&&k.timestamp&&y>0&&x-k.timestamp\u003C1e3*y?(s=o(k.data,u.sortBy),w(s,l)):(\"playlist\"!==u.galleryLayout?c.html('\\n\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"ultp-ytg-loading gallery-postx gallery-active\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"skeleton-box\">\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"skeleton-box\">\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"skeleton-box\">\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"skeleton-box\">\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"skeleton-box\">\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"skeleton-box\">\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t'):c.html('\\n\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"ultp-ytg-loading ultp-ytg-playlist-loading\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\u003Cdiv class=\"ytg-loader\">\u003C\u002Fdiv>\\n\\t\\t\\t\\t\\t\\t\\t\u003C\u002Fdiv>'),t.get(\"https:\u002F\u002Fwww.googleapis.com\u002Fyoutube\u002Fv3\u002FplaylistItems\",{part:\"snippet\",maxResults:50,playlistId:e,key:u.apiKey}).done((function(e){setTimeout((function(){if(c.empty(),e.error)return void c.html(`\u003Cdiv class=\"ultp-ytg-error\">${e.error.message||\"Failed to fetch playlist.\"}\u003C\u002Fdiv>`);const i=(e.items||[]).filter((function(t){return\"Private video\"!==t.snippet.title&&\"Deleted video\"!==t.snippet.title})).map((function(t){return{videoId:t.snippet.resourceId.videoId,title:t.snippet.title,thumbnail:t.snippet.thumbnails&&t.snippet.thumbnails[u.imgHeight]&&t.snippet.thumbnails[u.imgHeight].url||t.snippet.thumbnails[u.imgHeight].url||t.snippet.thumbnails?.medium?.url||\"\",publishedAt:t.snippet.publishedAt||\"\",description:t.snippet.description||\"\",viewCount:0}}));if(\"popular\"===u.sortBy){const e=i.map((t=>t.videoId)).join(\",\");t.get(`https:\u002F\u002Fwww.googleapis.com\u002Fyoutube\u002Fv3\u002Fvideos?part=statistics&id=${e}&key=${u.apiKey}`).done((function(t){if(t.items){const e={};t.items.forEach((function(t){e[t.id]=t.statistics.viewCount})),i.forEach((function(t){t.viewCount=parseInt(e[t.videoId]||0)}))}if(s=o(i,u.sortBy),y>0)try{localStorage.setItem(b,JSON.stringify({data:i,timestamp:x}))}catch(t){console.warn(\"Failed to cache videos:\",t)}w(s,l)})).fail((function(){console.warn(\"Failed to fetch video statistics for popular sorting.\"),s=o(i,u.sortBy),w(s,l)}))}else{if(s=o(i,u.sortBy),y>0)try{localStorage.setItem(b,JSON.stringify({data:i,timestamp:x}))}catch(t){console.warn(\"Failed to cache videos:\",t)}w(s,l)}}),2e3)})).fail((function(){setTimeout((function(){c.empty(),c.html('\u003Cdiv class=\"ultp-ytg-error\">Failed to fetch videos. Please try again.\u003C\u002Fdiv>')}),3e3)}))),r.on(\"click\",\".ultp-ytg-playlist-item\",(function(){const e=t(this).data(\"video-id\");e&&(h=s.find((function(t){return t.videoId===e})),h&&g(s))})),r.on(\"click\",\".ultp-ytg-play__icon\",(function(){const e=t(this).siblings(\"img[data-video-id]\").data(\"video-id\");if(!e)return;const i=t(this).closest(\".ultp-ytg-item\");i.find(\".ultp-ytg-video\").html('\u003Cdiv class=\"ultp-ytg-loading\">\u003Cdiv class=\"ytg-loader\">\u003C\u002Fdiv>\u003C\u002Fdiv>'),i.addClass(\"active\").siblings(\".ultp-ytg-item\").removeClass(\"active\"),setTimeout((function(){f=e,v(s,l)}),1e3)})),r.on(\"click\",\".ultp-ytg-video img[data-video-id]\",(function(){const e=t(this).data(\"video-id\");e&&(f=e,v(s,l))})),p.on(\"click\",(function(){l+=u.videosPerPage.lg,v(s,l)})),t(window).on(\"resize\",(function(){s.length&&(m(),w(s,l))}))}}))}()}))}(jQuery),function(t){\"function\"==typeof define&&define.amd?define([\"jquery\"],t):t(jQuery)}((function(t){var e,i=t(window).width(),o=t(window).height(),s=[];t(window).on(\"resize\",(function(){clearTimeout(e),e=setTimeout((function(){t(window).width()===i&&t(window).height()===o||(t(s).each((function(){t(this).flexMenu({undo:!0}).flexMenu(this.options)})),i=t(window).width(),o=t(window).height())}),200)})),t.fn.flexMenu=function(e){var i,o=t.extend({threshold:2,cutoff:2,linkText:\"More\",linkTitle:\"View More\",linkTextAll:\"Menu\",linkTitleAll:\"Open\u002FClose Menu\",shouldApply:function(){return!0},showOnHover:!0,popupAbsolute:!0,popupClass:\"\",undo:!1},e);return this.options=o,(i=t.inArray(this,s))>=0?s.splice(i,1):s.push(this),this.each((function(){var e,i,s,l,n,a,r=t(this),d=r.find(\"> li\"),c=d.first(),p=d.last(),u=d.length,h=Math.floor(c.offset().top),f=Math.floor(c.outerHeight(!0)),m=!1;function g(t){return Math.ceil(t.offset().top)>=h+f}if(g(p)&&u>o.threshold&&!o.undo&&r.is(\":visible\")&&o.shouldApply()){var v=t('\u003Cul class=\"flexMenu-popup\" style=\"display:none;'+(o.popupAbsolute?\" position: absolute;\":\"\")+'\">\u003C\u002Ful>');for(v.addClass(o.popupClass),a=u;a>1;a--){if(i=g(e=r.find(\"> li:last-child\")),a-1\u003C=o.cutoff){t(r.children().get().reverse()).appendTo(v),m=!0;break}if(!i)break;e.appendTo(v)}m?r.append('\u003Cli class=\"flexMenu-viewMore flexMenu-allInPopup\">\u003Ca href=\"#\" title=\"'+o.linkTitleAll+'\">'+o.linkTextAll+\"\u003C\u002Fa>\u003C\u002Fli>\"):r.append('\u003Cli class=\"flexMenu-viewMore\">\u003Ca href=\"#\" title=\"'+o.linkTitle+'\">'+o.linkText+\"\u003C\u002Fa>\u003C\u002Fli>\"),g(s=r.find(\"> li.flexMenu-viewMore\"))&&r.find(\"> li:nth-last-child(2)\").appendTo(v),v.children().each((function(t,e){v.prepend(e)})),s.append(v),r.find(\"> li.flexMenu-viewMore > a\").on(\"click\",(function(e){var i;i=s,t(\"li.flexMenu-viewMore.active\").not(i).removeClass(\"active\").find(\"> ul\").hide(),v.toggle(),s.toggleClass(\"active\"),e.preventDefault()})),o.showOnHover&&\"undefined\"!=typeof Modernizr&&!Modernizr.touch&&s.hover((function(){v.show(),t(this).addClass(\"active\")}),(function(){v.hide(),t(this).removeClass(\"active\")}))}else if(o.undo&&r.find(\"ul.flexMenu-popup\")){for(l=(n=r.find(\"ul.flexMenu-popup\")).find(\"li\").length,a=1;a\u003C=l;a++)n.find(\"> li:first-child\").appendTo(r);n.remove(),r.find(\"> li.flexMenu-viewMore\").remove()}}))}})),function(t){\"use strict\";\"function\"==typeof define&&define.amd?define([\"jquery\"],t):\"undefined\"!=typeof exports?module.exports=t(require(\"jquery\")):t(jQuery)}((function(t){\"use strict\";var e,i=window.Slick||{};e=0,(i=function(i,o){var s,l=this;l.defaults={accessibility:!0,adaptiveHeight:!1,appendArrows:t(i),appendDots:t(i),arrows:!0,asNavFor:null,prevArrow:'\u003Cbutton class=\"slick-prev\" aria-label=\"Previous\" type=\"button\">Previous\u003C\u002Fbutton>',nextArrow:'\u003Cbutton class=\"slick-next\" aria-label=\"Next\" type=\"button\">Next\u003C\u002Fbutton>',autoplay:!1,autoplaySpeed:3e3,centerMode:!1,centerPadding:\"50px\",cssEase:\"ease\",customPaging:function(e,i){return t('\u003Cbutton type=\"button\" \u002F>').text(i+1)},dots:!1,dotsClass:\"slick-dots\",draggable:!0,easing:\"linear\",edgeFriction:.35,fade:!1,focusOnSelect:!1,focusOnChange:!1,infinite:!0,initialSlide:0,lazyLoad:\"ondemand\",mobileFirst:!1,pauseOnHover:!0,pauseOnFocus:!0,pauseOnDotsHover:!1,respondTo:\"window\",responsive:null,rows:1,rtl:!1,slide:\"\",slidesPerRow:1,slidesToShow:1,slidesToScroll:1,speed:500,swipe:!0,swipeToSlide:!1,touchMove:!0,touchThreshold:5,useCSS:!0,useTransform:!0,variableWidth:!1,vertical:!1,verticalSwiping:!1,waitForAnimate:!0,zIndex:1e3},l.initials={animating:!1,dragging:!1,autoPlayTimer:null,currentDirection:0,currentLeft:null,currentSlide:0,direction:1,$dots:null,listWidth:null,listHeight:null,loadIndex:0,$nextArrow:null,$prevArrow:null,scrolling:!1,slideCount:null,slideWidth:null,$slideTrack:null,$slides:null,sliding:!1,slideOffset:0,swipeLeft:null,swiping:!1,$list:null,touchObject:{},transformsEnabled:!1,unslicked:!1},t.extend(l,l.initials),l.activeBreakpoint=null,l.animType=null,l.animProp=null,l.breakpoints=[],l.breakpointSettings=[],l.cssTransitions=!1,l.focussed=!1,l.interrupted=!1,l.hidden=\"hidden\",l.paused=!0,l.positionProp=null,l.respondTo=null,l.rowCount=1,l.shouldClick=!0,l.$slider=t(i),l.$slidesCache=null,l.transformType=null,l.transitionType=null,l.visibilityChange=\"visibilitychange\",l.windowWidth=0,l.windowTimer=null,s=t(i).data(\"slick\")||{},l.options=t.extend({},l.defaults,o,s),l.currentSlide=l.options.initialSlide,l.originalSettings=l.options,void 0!==document.mozHidden?(l.hidden=\"mozHidden\",l.visibilityChange=\"mozvisibilitychange\"):void 0!==document.webkitHidden&&(l.hidden=\"webkitHidden\",l.visibilityChange=\"webkitvisibilitychange\"),l.autoPlay=t.proxy(l.autoPlay,l),l.autoPlayClear=t.proxy(l.autoPlayClear,l),l.autoPlayIterator=t.proxy(l.autoPlayIterator,l),l.changeSlide=t.proxy(l.changeSlide,l),l.clickHandler=t.proxy(l.clickHandler,l),l.selectHandler=t.proxy(l.selectHandler,l),l.setPosition=t.proxy(l.setPosition,l),l.swipeHandler=t.proxy(l.swipeHandler,l),l.dragHandler=t.proxy(l.dragHandler,l),l.keyHandler=t.proxy(l.keyHandler,l),l.instanceUid=e++,l.htmlExpr=\u002F^(?:\\s*(\u003C[\\w\\W]+>)[^>]*)$\u002F,l.registerBreakpoints(),l.init(!0)}).prototype.activateADA=function(){this.$slideTrack.find(\".slick-active\").attr({\"aria-hidden\":\"false\"}).find(\"a, input, button, select\").attr({tabindex:\"0\"})},i.prototype.addSlide=i.prototype.slickAdd=function(e,i,o){var s=this;if(\"boolean\"==typeof i)o=i,i=null;else if(i\u003C0||i>=s.slideCount)return!1;s.unload(),\"number\"==typeof i?0===i&&0===s.$slides.length?t(e).appendTo(s.$slideTrack):o?t(e).insertBefore(s.$slides.eq(i)):t(e).insertAfter(s.$slides.eq(i)):!0===o?t(e).prependTo(s.$slideTrack):t(e).appendTo(s.$slideTrack),s.$slides=s.$slideTrack.children(this.options.slide),s.$slideTrack.children(this.options.slide).detach(),s.$slideTrack.append(s.$slides),s.$slides.each((function(e,i){t(i).attr(\"data-slick-index\",e)})),s.$slidesCache=s.$slides,s.reinit()},i.prototype.animateHeight=function(){var t=this;if(1===t.options.slidesToShow&&!0===t.options.adaptiveHeight&&!1===t.options.vertical){var e=t.$slides.eq(t.currentSlide).outerHeight(!0);t.$list.animate({height:e},t.options.speed)}},i.prototype.animateSlide=function(e,i){var o={},s=this;s.animateHeight(),!0===s.options.rtl&&!1===s.options.vertical&&(e=-e),!1===s.transformsEnabled?!1===s.options.vertical?s.$slideTrack.animate({left:e},s.options.speed,s.options.easing,i):s.$slideTrack.animate({top:e},s.options.speed,s.options.easing,i):!1===s.cssTransitions?(!0===s.options.rtl&&(s.currentLeft=-s.currentLeft),t({animStart:s.currentLeft}).animate({animStart:e},{duration:s.options.speed,easing:s.options.easing,step:function(t){t=Math.ceil(t),!1===s.options.vertical?(o[s.animType]=\"translate(\"+t+\"px, 0px)\",s.$slideTrack.css(o)):(o[s.animType]=\"translate(0px,\"+t+\"px)\",s.$slideTrack.css(o))},complete:function(){i&&i.call()}})):(s.applyTransition(),e=Math.ceil(e),!1===s.options.vertical?o[s.animType]=\"translate3d(\"+e+\"px, 0px, 0px)\":o[s.animType]=\"translate3d(0px,\"+e+\"px, 0px)\",s.$slideTrack.css(o),i&&setTimeout((function(){s.disableTransition(),i.call()}),s.options.speed))},i.prototype.getNavTarget=function(){var e=this.options.asNavFor;return e&&null!==e&&(e=t(e).not(this.$slider)),e},i.prototype.asNavFor=function(e){var i=this.getNavTarget();null!==i&&\"object\"==typeof i&&i.each((function(){var i=t(this).slick(\"getSlick\");i.unslicked||i.slideHandler(e,!0)}))},i.prototype.applyTransition=function(t){var e=this,i={};!1===e.options.fade?i[e.transitionType]=e.transformType+\" \"+e.options.speed+\"ms \"+e.options.cssEase:i[e.transitionType]=\"opacity \"+e.options.speed+\"ms \"+e.options.cssEase,!1===e.options.fade?e.$slideTrack.css(i):e.$slides.eq(t).css(i)},i.prototype.autoPlay=function(){var t=this;t.autoPlayClear(),t.slideCount>t.options.slidesToShow&&(t.autoPlayTimer=setInterval(t.autoPlayIterator,t.options.autoplaySpeed))},i.prototype.autoPlayClear=function(){this.autoPlayTimer&&clearInterval(this.autoPlayTimer)},i.prototype.autoPlayIterator=function(){var t=this,e=t.currentSlide+t.options.slidesToScroll;t.paused||t.interrupted||t.focussed||(!1===t.options.infinite&&(1===t.direction&&t.currentSlide+1===t.slideCount-1?t.direction=0:0===t.direction&&(e=t.currentSlide-t.options.slidesToScroll,t.currentSlide-1==0&&(t.direction=1))),t.slideHandler(e))},i.prototype.buildArrows=function(){var e=this;!0===e.options.arrows&&(e.$prevArrow=t(e.options.prevArrow).addClass(\"slick-arrow\"),e.$nextArrow=t(e.options.nextArrow).addClass(\"slick-arrow\"),e.slideCount>e.options.slidesToShow?(e.$prevArrow.removeClass(\"slick-hidden\").removeAttr(\"aria-hidden tabindex\"),e.$nextArrow.removeClass(\"slick-hidden\").removeAttr(\"aria-hidden tabindex\"),e.htmlExpr.test(e.options.prevArrow)&&e.$prevArrow.prependTo(e.options.appendArrows),e.htmlExpr.test(e.options.nextArrow)&&e.$nextArrow.appendTo(e.options.appendArrows),!0!==e.options.infinite&&e.$prevArrow.addClass(\"slick-disabled\").attr(\"aria-disabled\",\"true\")):e.$prevArrow.add(e.$nextArrow).addClass(\"slick-hidden\").attr({\"aria-disabled\":\"true\",tabindex:\"-1\"}))},i.prototype.buildDots=function(){var e,i,o=this;if(!0===o.options.dots&&o.slideCount>o.options.slidesToShow){for(o.$slider.addClass(\"slick-dotted\"),i=t(\"\u003Cul \u002F>\").addClass(o.options.dotsClass),e=0;e\u003C=o.getDotCount();e+=1)i.append(t(\"\u003Cli \u002F>\").append(o.options.customPaging.call(this,o,e)));o.$dots=i.appendTo(o.options.appendDots),o.$dots.find(\"li\").first().addClass(\"slick-active\")}},i.prototype.buildOut=function(){var e=this;e.$slides=e.$slider.children(e.options.slide+\":not(.slick-cloned)\").addClass(\"slick-slide\"),e.slideCount=e.$slides.length,e.$slides.each((function(e,i){t(i).attr(\"data-slick-index\",e).data(\"originalStyling\",t(i).attr(\"style\")||\"\")})),e.$slider.addClass(\"slick-slider\"),e.$slideTrack=0===e.slideCount?t('\u003Cdiv class=\"slick-track\"\u002F>').appendTo(e.$slider):e.$slides.wrapAll('\u003Cdiv class=\"slick-track\"\u002F>').parent(),e.$list=e.$slideTrack.wrap('\u003Cdiv class=\"slick-list\"\u002F>').parent(),e.$slideTrack.css(\"opacity\",0),!0!==e.options.centerMode&&!0!==e.options.swipeToSlide||(e.options.slidesToScroll=1),t(\"img[data-lazy]\",e.$slider).not(\"[src]\").addClass(\"slick-loading\"),e.setupInfinite(),e.buildArrows(),e.buildDots(),e.updateDots(),e.setSlideClasses(\"number\"==typeof e.currentSlide?e.currentSlide:0),!0===e.options.draggable&&e.$list.addClass(\"draggable\")},i.prototype.buildRows=function(){var t,e,i,o,s,l,n,a=this;if(o=document.createDocumentFragment(),l=a.$slider.children(),a.options.rows>0){for(n=a.options.slidesPerRow*a.options.rows,s=Math.ceil(l.length\u002Fn),t=0;t\u003Cs;t++){var r=document.createElement(\"div\");for(e=0;e\u003Ca.options.rows;e++){var d=document.createElement(\"div\");for(i=0;i\u003Ca.options.slidesPerRow;i++){var c=t*n+(e*a.options.slidesPerRow+i);l.get(c)&&d.appendChild(l.get(c))}r.appendChild(d)}o.appendChild(r)}a.$slider.empty().append(o),a.$slider.children().children().children().css({width:100\u002Fa.options.slidesPerRow+\"%\",display:\"inline-block\"})}},i.prototype.checkResponsive=function(e,i){var o,s,l,n=this,a=!1,r=n.$slider.width(),d=window.innerWidth||t(window).width();if(\"window\"===n.respondTo?l=d:\"slider\"===n.respondTo?l=r:\"min\"===n.respondTo&&(l=Math.min(d,r)),n.options.responsive&&n.options.responsive.length&&null!==n.options.responsive){for(o in s=null,n.breakpoints)n.breakpoints.hasOwnProperty(o)&&(!1===n.originalSettings.mobileFirst?l\u003Cn.breakpoints[o]&&(s=n.breakpoints[o]):l>n.breakpoints[o]&&(s=n.breakpoints[o]));null!==s?null!==n.activeBreakpoint?(s!==n.activeBreakpoint||i)&&(n.activeBreakpoint=s,\"unslick\"===n.breakpointSettings[s]?n.unslick(s):(n.options=t.extend({},n.originalSettings,n.breakpointSettings[s]),!0===e&&(n.currentSlide=n.options.initialSlide),n.refresh(e)),a=s):(n.activeBreakpoint=s,\"unslick\"===n.breakpointSettings[s]?n.unslick(s):(n.options=t.extend({},n.originalSettings,n.breakpointSettings[s]),!0===e&&(n.currentSlide=n.options.initialSlide),n.refresh(e)),a=s):null!==n.activeBreakpoint&&(n.activeBreakpoint=null,n.options=n.originalSettings,!0===e&&(n.currentSlide=n.options.initialSlide),n.refresh(e),a=s),e||!1===a||n.$slider.trigger(\"breakpoint\",[n,a])}},i.prototype.changeSlide=function(e,i){var o,s,l=this,n=t(e.currentTarget);switch(n.is(\"a\")&&e.preventDefault(),n.is(\"li\")||(n=n.closest(\"li\")),o=l.slideCount%l.options.slidesToScroll!=0?0:(l.slideCount-l.currentSlide)%l.options.slidesToScroll,e.data.message){case\"previous\":s=0===o?l.options.slidesToScroll:l.options.slidesToShow-o,l.slideCount>l.options.slidesToShow&&l.slideHandler(l.currentSlide-s,!1,i);break;case\"next\":s=0===o?l.options.slidesToScroll:o,l.slideCount>l.options.slidesToShow&&l.slideHandler(l.currentSlide+s,!1,i);break;case\"index\":var a=0===e.data.index?0:e.data.index||n.index()*l.options.slidesToScroll;l.slideHandler(l.checkNavigable(a),!1,i),n.children().trigger(\"focus\");break;default:return}},i.prototype.checkNavigable=function(t){var e,i;if(i=0,t>(e=this.getNavigableIndexes())[e.length-1])t=e[e.length-1];else for(var o in e){if(t\u003Ce[o]){t=i;break}i=e[o]}return t},i.prototype.cleanUpEvents=function(){var e=this;e.options.dots&&null!==e.$dots&&(t(\"li\",e.$dots).off(\"click.slick\",e.changeSlide).off(\"mouseenter.slick\",t.proxy(e.interrupt,e,!0)).off(\"mouseleave.slick\",t.proxy(e.interrupt,e,!1)),!0===e.options.accessibility&&e.$dots.off(\"keydown.slick\",e.keyHandler)),e.$slider.off(\"focus.slick blur.slick\"),!0===e.options.arrows&&e.slideCount>e.options.slidesToShow&&(e.$prevArrow&&e.$prevArrow.off(\"click.slick\",e.changeSlide),e.$nextArrow&&e.$nextArrow.off(\"click.slick\",e.changeSlide),!0===e.options.accessibility&&(e.$prevArrow&&e.$prevArrow.off(\"keydown.slick\",e.keyHandler),e.$nextArrow&&e.$nextArrow.off(\"keydown.slick\",e.keyHandler))),e.$list.off(\"touchstart.slick mousedown.slick\",e.swipeHandler),e.$list.off(\"touchmove.slick mousemove.slick\",e.swipeHandler),e.$list.off(\"touchend.slick mouseup.slick\",e.swipeHandler),e.$list.off(\"touchcancel.slick mouseleave.slick\",e.swipeHandler),e.$list.off(\"click.slick\",e.clickHandler),t(document).off(e.visibilityChange,e.visibility),e.cleanUpSlideEvents(),!0===e.options.accessibility&&e.$list.off(\"keydown.slick\",e.keyHandler),!0===e.options.focusOnSelect&&t(e.$slideTrack).children().off(\"click.slick\",e.selectHandler),t(window).off(\"orientationchange.slick.slick-\"+e.instanceUid,e.orientationChange),t(window).off(\"resize.slick.slick-\"+e.instanceUid,e.resize),t(\"[draggable!=true]\",e.$slideTrack).off(\"dragstart\",e.preventDefault),t(window).off(\"load.slick.slick-\"+e.instanceUid,e.setPosition)},i.prototype.cleanUpSlideEvents=function(){var e=this;e.$list.off(\"mouseenter.slick\",t.proxy(e.interrupt,e,!0)),e.$list.off(\"mouseleave.slick\",t.proxy(e.interrupt,e,!1))},i.prototype.cleanUpRows=function(){var t,e=this;e.options.rows>0&&((t=e.$slides.children().children()).removeAttr(\"style\"),e.$slider.empty().append(t))},i.prototype.clickHandler=function(t){!1===this.shouldClick&&(t.stopImmediatePropagation(),t.stopPropagation(),t.preventDefault())},i.prototype.destroy=function(e){var i=this;i.autoPlayClear(),i.touchObject={},i.cleanUpEvents(),t(\".slick-cloned\",i.$slider).detach(),i.$dots&&i.$dots.remove(),i.$prevArrow&&i.$prevArrow.length&&(i.$prevArrow.removeClass(\"slick-disabled slick-arrow slick-hidden\").removeAttr(\"aria-hidden aria-disabled tabindex\").css(\"display\",\"\"),i.htmlExpr.test(i.options.prevArrow)&&i.$prevArrow.remove()),i.$nextArrow&&i.$nextArrow.length&&(i.$nextArrow.removeClass(\"slick-disabled slick-arrow slick-hidden\").removeAttr(\"aria-hidden aria-disabled tabindex\").css(\"display\",\"\"),i.htmlExpr.test(i.options.nextArrow)&&i.$nextArrow.remove()),i.$slides&&(i.$slides.removeClass(\"slick-slide slick-active slick-center slick-visible slick-current\").removeAttr(\"aria-hidden\").removeAttr(\"data-slick-index\").each((function(){t(this).attr(\"style\",t(this).data(\"originalStyling\"))})),i.$slideTrack.children(this.options.slide).detach(),i.$slideTrack.detach(),i.$list.detach(),i.$slider.append(i.$slides)),i.cleanUpRows(),i.$slider.removeClass(\"slick-slider\"),i.$slider.removeClass(\"slick-initialized\"),i.$slider.removeClass(\"slick-dotted\"),i.unslicked=!0,e||i.$slider.trigger(\"destroy\",[i])},i.prototype.disableTransition=function(t){var e=this,i={};i[e.transitionType]=\"\",!1===e.options.fade?e.$slideTrack.css(i):e.$slides.eq(t).css(i)},i.prototype.fadeSlide=function(t,e){var i=this;!1===i.cssTransitions?(i.$slides.eq(t).css({zIndex:i.options.zIndex}),i.$slides.eq(t).animate({opacity:1},i.options.speed,i.options.easing,e)):(i.applyTransition(t),i.$slides.eq(t).css({opacity:1,zIndex:i.options.zIndex}),e&&setTimeout((function(){i.disableTransition(t),e.call()}),i.options.speed))},i.prototype.fadeSlideOut=function(t){var e=this;!1===e.cssTransitions?e.$slides.eq(t).animate({opacity:0,zIndex:e.options.zIndex-2},e.options.speed,e.options.easing):(e.applyTransition(t),e.$slides.eq(t).css({opacity:0,zIndex:e.options.zIndex-2}))},i.prototype.filterSlides=i.prototype.slickFilter=function(t){var e=this;null!==t&&(e.$slidesCache=e.$slides,e.unload(),e.$slideTrack.children(this.options.slide).detach(),e.$slidesCache.filter(t).appendTo(e.$slideTrack),e.reinit())},i.prototype.focusHandler=function(){var e=this;e.$slider.off(\"focus.slick blur.slick\").on(\"focus.slick\",\"*\",(function(i){var o=t(this);setTimeout((function(){e.options.pauseOnFocus&&o.is(\":focus\")&&(e.focussed=!0,e.autoPlay())}),0)})).on(\"blur.slick\",\"*\",(function(i){t(this);e.options.pauseOnFocus&&(e.focussed=!1,e.autoPlay())}))},i.prototype.getCurrent=i.prototype.slickCurrentSlide=function(){return this.currentSlide},i.prototype.getDotCount=function(){var t=this,e=0,i=0,o=0;if(!0===t.options.infinite)if(t.slideCount\u003C=t.options.slidesToShow)++o;else for(;e\u003Ct.slideCount;)++o,e=i+t.options.slidesToScroll,i+=t.options.slidesToScroll\u003C=t.options.slidesToShow?t.options.slidesToScroll:t.options.slidesToShow;else if(!0===t.options.centerMode)o=t.slideCount;else if(t.options.asNavFor)for(;e\u003Ct.slideCount;)++o,e=i+t.options.slidesToScroll,i+=t.options.slidesToScroll\u003C=t.options.slidesToShow?t.options.slidesToScroll:t.options.slidesToShow;else o=1+Math.ceil((t.slideCount-t.options.slidesToShow)\u002Ft.options.slidesToScroll);return o-1},i.prototype.getLeft=function(t){var e,i,o,s,l=this,n=0;return l.slideOffset=0,i=l.$slides.first().outerHeight(!0),!0===l.options.infinite?(l.slideCount>l.options.slidesToShow&&(l.slideOffset=l.slideWidth*l.options.slidesToShow*-1,s=-1,!0===l.options.vertical&&!0===l.options.centerMode&&(2===l.options.slidesToShow?s=-1.5:1===l.options.slidesToShow&&(s=-2)),n=i*l.options.slidesToShow*s),l.slideCount%l.options.slidesToScroll!=0&&t+l.options.slidesToScroll>l.slideCount&&l.slideCount>l.options.slidesToShow&&(t>l.slideCount?(l.slideOffset=(l.options.slidesToShow-(t-l.slideCount))*l.slideWidth*-1,n=(l.options.slidesToShow-(t-l.slideCount))*i*-1):(l.slideOffset=l.slideCount%l.options.slidesToScroll*l.slideWidth*-1,n=l.slideCount%l.options.slidesToScroll*i*-1))):t+l.options.slidesToShow>l.slideCount&&(l.slideOffset=(t+l.options.slidesToShow-l.slideCount)*l.slideWidth,n=(t+l.options.slidesToShow-l.slideCount)*i),l.slideCount\u003C=l.options.slidesToShow&&(l.slideOffset=0,n=0),!0===l.options.centerMode&&l.slideCount\u003C=l.options.slidesToShow?l.slideOffset=l.slideWidth*Math.floor(l.options.slidesToShow)\u002F2-l.slideWidth*l.slideCount\u002F2:!0===l.options.centerMode&&!0===l.options.infinite?l.slideOffset+=l.slideWidth*Math.floor(l.options.slidesToShow\u002F2)-l.slideWidth:!0===l.options.centerMode&&(l.slideOffset=0,l.slideOffset+=l.slideWidth*Math.floor(l.options.slidesToShow\u002F2)),e=!1===l.options.vertical?t*l.slideWidth*-1+l.slideOffset:t*i*-1+n,!0===l.options.variableWidth&&(o=l.slideCount\u003C=l.options.slidesToShow||!1===l.options.infinite?l.$slideTrack.children(\".slick-slide\").eq(t):l.$slideTrack.children(\".slick-slide\").eq(t+l.options.slidesToShow),e=!0===l.options.rtl?o[0]?-1*(l.$slideTrack.width()-o[0].offsetLeft-o.width()):0:o[0]?-1*o[0].offsetLeft:0,!0===l.options.centerMode&&(o=l.slideCount\u003C=l.options.slidesToShow||!1===l.options.infinite?l.$slideTrack.children(\".slick-slide\").eq(t):l.$slideTrack.children(\".slick-slide\").eq(t+l.options.slidesToShow+1),e=!0===l.options.rtl?o[0]?-1*(l.$slideTrack.width()-o[0].offsetLeft-o.width()):0:o[0]?-1*o[0].offsetLeft:0,e+=(l.$list.width()-o.outerWidth())\u002F2)),e},i.prototype.getOption=i.prototype.slickGetOption=function(t){return this.options[t]},i.prototype.getNavigableIndexes=function(){var t,e=this,i=0,o=0,s=[];for(!1===e.options.infinite?t=e.slideCount:(i=-1*e.options.slidesToScroll,o=-1*e.options.slidesToScroll,t=2*e.slideCount);i\u003Ct;)s.push(i),i=o+e.options.slidesToScroll,o+=e.options.slidesToScroll\u003C=e.options.slidesToShow?e.options.slidesToScroll:e.options.slidesToShow;return s},i.prototype.getSlick=function(){return this},i.prototype.getSlideCount=function(){var e,i,o,s=this;return o=!0===s.options.centerMode?Math.floor(s.$list.width()\u002F2):0,i=-1*s.swipeLeft+o,!0===s.options.swipeToSlide?(s.$slideTrack.find(\".slick-slide\").each((function(o,l){var n,a;if(n=t(l).outerWidth(),a=l.offsetLeft,!0!==s.options.centerMode&&(a+=n\u002F2),i\u003Ca+n)return e=l,!1})),Math.abs(t(e).attr(\"data-slick-index\")-s.currentSlide)||1):s.options.slidesToScroll},i.prototype.goTo=i.prototype.slickGoTo=function(t,e){this.changeSlide({data:{message:\"index\",index:parseInt(t)}},e)},i.prototype.init=function(e){var i=this;t(i.$slider).hasClass(\"slick-initialized\")||(t(i.$slider).addClass(\"slick-initialized\"),i.buildRows(),i.buildOut(),i.setProps(),i.startLoad(),i.loadSlider(),i.initializeEvents(),i.updateArrows(),i.updateDots(),i.checkResponsive(!0),i.focusHandler()),e&&i.$slider.trigger(\"init\",[i]),!0===i.options.accessibility&&i.initADA(),i.options.autoplay&&(i.paused=!1,i.autoPlay())},i.prototype.initADA=function(){var e=this,i=Math.ceil(e.slideCount\u002Fe.options.slidesToShow),o=e.getNavigableIndexes().filter((function(t){return t>=0&&t\u003Ce.slideCount}));e.$slides.add(e.$slideTrack.find(\".slick-cloned\")).attr({\"aria-hidden\":\"true\",tabindex:\"-1\"}).find(\"a, input, button, select\").attr({tabindex:\"-1\"}),null!==e.$dots&&(e.$slides.not(e.$slideTrack.find(\".slick-cloned\")).each((function(i){var s=o.indexOf(i);if(t(this).attr({role:\"tabpanel\",id:\"slick-slide\"+e.instanceUid+i,tabindex:-1}),-1!==s){var l=\"slick-slide-control\"+e.instanceUid+s;t(\"#\"+l).length&&t(this).attr({\"aria-describedby\":l})}})),e.$dots.attr(\"role\",\"tablist\").find(\"li\").each((function(s){var l=o[s];t(this).attr({role:\"presentation\"}),t(this).find(\"button\").first().attr({role:\"tab\",id:\"slick-slide-control\"+e.instanceUid+s,\"aria-controls\":\"slick-slide\"+e.instanceUid+l,\"aria-label\":s+1+\" of \"+i,\"aria-selected\":null,tabindex:\"-1\"})})).eq(e.currentSlide).find(\"button\").attr({\"aria-selected\":\"true\",tabindex:\"0\"}).end());for(var s=e.currentSlide,l=s+e.options.slidesToShow;s\u003Cl;s++)e.options.focusOnChange?e.$slides.eq(s).attr({tabindex:\"0\"}):e.$slides.eq(s).removeAttr(\"tabindex\");e.activateADA()},i.prototype.initArrowEvents=function(){var t=this;!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&(t.$prevArrow.off(\"click.slick\").on(\"click.slick\",{message:\"previous\"},t.changeSlide),t.$nextArrow.off(\"click.slick\").on(\"click.slick\",{message:\"next\"},t.changeSlide),!0===t.options.accessibility&&(t.$prevArrow.on(\"keydown.slick\",t.keyHandler),t.$nextArrow.on(\"keydown.slick\",t.keyHandler)))},i.prototype.initDotEvents=function(){var e=this;!0===e.options.dots&&e.slideCount>e.options.slidesToShow&&(t(\"li\",e.$dots).on(\"click.slick\",{message:\"index\"},e.changeSlide),!0===e.options.accessibility&&e.$dots.on(\"keydown.slick\",e.keyHandler)),!0===e.options.dots&&!0===e.options.pauseOnDotsHover&&e.slideCount>e.options.slidesToShow&&t(\"li\",e.$dots).on(\"mouseenter.slick\",t.proxy(e.interrupt,e,!0)).on(\"mouseleave.slick\",t.proxy(e.interrupt,e,!1))},i.prototype.initSlideEvents=function(){var e=this;e.options.pauseOnHover&&(e.$list.on(\"mouseenter.slick\",t.proxy(e.interrupt,e,!0)),e.$list.on(\"mouseleave.slick\",t.proxy(e.interrupt,e,!1)))},i.prototype.initializeEvents=function(){var e=this;e.initArrowEvents(),e.initDotEvents(),e.initSlideEvents(),e.$list.on(\"touchstart.slick mousedown.slick\",{action:\"start\"},e.swipeHandler),e.$list.on(\"touchmove.slick mousemove.slick\",{action:\"move\"},e.swipeHandler),e.$list.on(\"touchend.slick mouseup.slick\",{action:\"end\"},e.swipeHandler),e.$list.on(\"touchcancel.slick mouseleave.slick\",{action:\"end\"},e.swipeHandler),e.$list.on(\"click.slick\",e.clickHandler),t(document).on(e.visibilityChange,t.proxy(e.visibility,e)),!0===e.options.accessibility&&e.$list.on(\"keydown.slick\",e.keyHandler),!0===e.options.focusOnSelect&&t(e.$slideTrack).children().on(\"click.slick\",e.selectHandler),t(window).on(\"orientationchange.slick.slick-\"+e.instanceUid,t.proxy(e.orientationChange,e)),t(window).on(\"resize.slick.slick-\"+e.instanceUid,t.proxy(e.resize,e)),t(\"[draggable!=true]\",e.$slideTrack).on(\"dragstart\",e.preventDefault),t(window).on(\"load.slick.slick-\"+e.instanceUid,e.setPosition),t(e.setPosition)},i.prototype.initUI=function(){var t=this;!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&(t.$prevArrow.show(),t.$nextArrow.show()),!0===t.options.dots&&t.slideCount>t.options.slidesToShow&&t.$dots.show()},i.prototype.keyHandler=function(t){var e=this;t.target.tagName.match(\"TEXTAREA|INPUT|SELECT\")||(37===t.keyCode&&!0===e.options.accessibility?e.changeSlide({data:{message:!0===e.options.rtl?\"next\":\"previous\"}}):39===t.keyCode&&!0===e.options.accessibility&&e.changeSlide({data:{message:!0===e.options.rtl?\"previous\":\"next\"}}))},i.prototype.lazyLoad=function(){var e,i,o,s=this;function l(e){t(\"img[data-lazy]\",e).each((function(){var e=t(this),i=t(this).attr(\"data-lazy\"),o=t(this).attr(\"data-srcset\"),l=t(this).attr(\"data-sizes\")||s.$slider.attr(\"data-sizes\"),n=document.createElement(\"img\");n.onload=function(){e.animate({opacity:0},100,(function(){o&&(e.attr(\"srcset\",o),l&&e.attr(\"sizes\",l)),e.attr(\"src\",i).animate({opacity:1},200,(function(){e.removeAttr(\"data-lazy data-srcset data-sizes\").removeClass(\"slick-loading\")})),s.$slider.trigger(\"lazyLoaded\",[s,e,i])}))},n.onerror=function(){e.removeAttr(\"data-lazy\").removeClass(\"slick-loading\").addClass(\"slick-lazyload-error\"),s.$slider.trigger(\"lazyLoadError\",[s,e,i])},n.src=i}))}if(!0===s.options.centerMode?!0===s.options.infinite?o=(i=s.currentSlide+(s.options.slidesToShow\u002F2+1))+s.options.slidesToShow+2:(i=Math.max(0,s.currentSlide-(s.options.slidesToShow\u002F2+1)),o=s.options.slidesToShow\u002F2+1+2+s.currentSlide):(i=s.options.infinite?s.options.slidesToShow+s.currentSlide:s.currentSlide,o=Math.ceil(i+s.options.slidesToShow),!0===s.options.fade&&(i>0&&i--,o\u003C=s.slideCount&&o++)),e=s.$slider.find(\".slick-slide\").slice(i,o),\"anticipated\"===s.options.lazyLoad)for(var n=i-1,a=o,r=s.$slider.find(\".slick-slide\"),d=0;d\u003Cs.options.slidesToScroll;d++)n\u003C0&&(n=s.slideCount-1),e=(e=e.add(r.eq(n))).add(r.eq(a)),n--,a++;l(e),s.slideCount\u003C=s.options.slidesToShow?l(s.$slider.find(\".slick-slide\")):s.currentSlide>=s.slideCount-s.options.slidesToShow?l(s.$slider.find(\".slick-cloned\").slice(0,s.options.slidesToShow)):0===s.currentSlide&&l(s.$slider.find(\".slick-cloned\").slice(-1*s.options.slidesToShow))},i.prototype.loadSlider=function(){var t=this;t.setPosition(),t.$slideTrack.css({opacity:1}),t.$slider.removeClass(\"slick-loading\"),t.initUI(),\"progressive\"===t.options.lazyLoad&&t.progressiveLazyLoad()},i.prototype.next=i.prototype.slickNext=function(){this.changeSlide({data:{message:\"next\"}})},i.prototype.orientationChange=function(){this.checkResponsive(),this.setPosition()},i.prototype.pause=i.prototype.slickPause=function(){this.autoPlayClear(),this.paused=!0},i.prototype.play=i.prototype.slickPlay=function(){var t=this;t.autoPlay(),t.options.autoplay=!0,t.paused=!1,t.focussed=!1,t.interrupted=!1},i.prototype.postSlide=function(e){var i=this;i.unslicked||(i.$slider.trigger(\"afterChange\",[i,e]),i.animating=!1,i.slideCount>i.options.slidesToShow&&i.setPosition(),i.swipeLeft=null,i.options.autoplay&&i.autoPlay(),!0===i.options.accessibility&&(i.initADA(),i.options.focusOnChange&&t(i.$slides.get(i.currentSlide)).attr(\"tabindex\",0).focus()))},i.prototype.prev=i.prototype.slickPrev=function(){this.changeSlide({data:{message:\"previous\"}})},i.prototype.preventDefault=function(t){t.preventDefault()},i.prototype.progressiveLazyLoad=function(e){e=e||1;var i,o,s,l,n,a=this,r=t(\"img[data-lazy]\",a.$slider);r.length?(i=r.first(),o=i.attr(\"data-lazy\"),s=i.attr(\"data-srcset\"),l=i.attr(\"data-sizes\")||a.$slider.attr(\"data-sizes\"),(n=document.createElement(\"img\")).onload=function(){s&&(i.attr(\"srcset\",s),l&&i.attr(\"sizes\",l)),i.attr(\"src\",o).removeAttr(\"data-lazy data-srcset data-sizes\").removeClass(\"slick-loading\"),!0===a.options.adaptiveHeight&&a.setPosition(),a.$slider.trigger(\"lazyLoaded\",[a,i,o]),a.progressiveLazyLoad()},n.onerror=function(){e\u003C3?setTimeout((function(){a.progressiveLazyLoad(e+1)}),500):(i.removeAttr(\"data-lazy\").removeClass(\"slick-loading\").addClass(\"slick-lazyload-error\"),a.$slider.trigger(\"lazyLoadError\",[a,i,o]),a.progressiveLazyLoad())},n.src=o):a.$slider.trigger(\"allImagesLoaded\",[a])},i.prototype.refresh=function(e){var i,o,s=this;o=s.slideCount-s.options.slidesToShow,!s.options.infinite&&s.currentSlide>o&&(s.currentSlide=o),s.slideCount\u003C=s.options.slidesToShow&&(s.currentSlide=0),i=s.currentSlide,s.destroy(!0),t.extend(s,s.initials,{currentSlide:i}),s.init(),e||s.changeSlide({data:{message:\"index\",index:i}},!1)},i.prototype.registerBreakpoints=function(){var e,i,o,s=this,l=s.options.responsive||null;if(\"array\"===t.type(l)&&l.length){for(e in s.respondTo=s.options.respondTo||\"window\",l)if(o=s.breakpoints.length-1,l.hasOwnProperty(e)){for(i=l[e].breakpoint;o>=0;)s.breakpoints[o]&&s.breakpoints[o]===i&&s.breakpoints.splice(o,1),o--;s.breakpoints.push(i),s.breakpointSettings[i]=l[e].settings}s.breakpoints.sort((function(t,e){return s.options.mobileFirst?t-e:e-t}))}},i.prototype.reinit=function(){var e=this;e.$slides=e.$slideTrack.children(e.options.slide).addClass(\"slick-slide\"),e.slideCount=e.$slides.length,e.currentSlide>=e.slideCount&&0!==e.currentSlide&&(e.currentSlide=e.currentSlide-e.options.slidesToScroll),e.slideCount\u003C=e.options.slidesToShow&&(e.currentSlide=0),e.registerBreakpoints(),e.setProps(),e.setupInfinite(),e.buildArrows(),e.updateArrows(),e.initArrowEvents(),e.buildDots(),e.updateDots(),e.initDotEvents(),e.cleanUpSlideEvents(),e.initSlideEvents(),e.checkResponsive(!1,!0),!0===e.options.focusOnSelect&&t(e.$slideTrack).children().on(\"click.slick\",e.selectHandler),e.setSlideClasses(\"number\"==typeof e.currentSlide?e.currentSlide:0),e.setPosition(),e.focusHandler(),e.paused=!e.options.autoplay,e.autoPlay(),e.$slider.trigger(\"reInit\",[e])},i.prototype.resize=function(){var e=this;t(window).width()!==e.windowWidth&&(clearTimeout(e.windowDelay),e.windowDelay=window.setTimeout((function(){e.windowWidth=t(window).width(),e.checkResponsive(),e.unslicked||e.setPosition()}),50))},i.prototype.removeSlide=i.prototype.slickRemove=function(t,e,i){var o=this;if(t=\"boolean\"==typeof t?!0===(e=t)?0:o.slideCount-1:!0===e?--t:t,o.slideCount\u003C1||t\u003C0||t>o.slideCount-1)return!1;o.unload(),!0===i?o.$slideTrack.children().remove():o.$slideTrack.children(this.options.slide).eq(t).remove(),o.$slides=o.$slideTrack.children(this.options.slide),o.$slideTrack.children(this.options.slide).detach(),o.$slideTrack.append(o.$slides),o.$slidesCache=o.$slides,o.reinit()},i.prototype.setCSS=function(t){var e,i,o=this,s={};!0===o.options.rtl&&(t=-t),e=\"left\"==o.positionProp?Math.ceil(t)+\"px\":\"0px\",i=\"top\"==o.positionProp?Math.ceil(t)+\"px\":\"0px\",s[o.positionProp]=t,!1===o.transformsEnabled?o.$slideTrack.css(s):(s={},!1===o.cssTransitions?(s[o.animType]=\"translate(\"+e+\", \"+i+\")\",o.$slideTrack.css(s)):(s[o.animType]=\"translate3d(\"+e+\", \"+i+\", 0px)\",o.$slideTrack.css(s)))},i.prototype.setDimensions=function(){var t=this;!1===t.options.vertical?!0===t.options.centerMode&&t.$list.css({padding:\"0px \"+t.options.centerPadding}):(t.$list.height(t.$slides.first().outerHeight(!0)*t.options.slidesToShow),!0===t.options.centerMode&&t.$list.css({padding:t.options.centerPadding+\" 0px\"})),t.listWidth=t.$list.width(),t.listHeight=t.$list.height(),!1===t.options.vertical&&!1===t.options.variableWidth?(t.slideWidth=Math.ceil(t.listWidth\u002Ft.options.slidesToShow),t.$slideTrack.width(Math.ceil(t.slideWidth*t.$slideTrack.children(\".slick-slide\").length))):!0===t.options.variableWidth?t.$slideTrack.width(5e3*t.slideCount):(t.slideWidth=Math.ceil(t.listWidth),t.$slideTrack.height(Math.ceil(t.$slides.first().outerHeight(!0)*t.$slideTrack.children(\".slick-slide\").length)));var e=t.$slides.first().outerWidth(!0)-t.$slides.first().width();!1===t.options.variableWidth&&t.$slideTrack.children(\".slick-slide\").width(t.slideWidth-e)},i.prototype.setFade=function(){var e,i=this;i.$slides.each((function(o,s){e=i.slideWidth*o*-1,!0===i.options.rtl?t(s).css({position:\"relative\",right:e,top:0,zIndex:i.options.zIndex-2,opacity:0}):t(s).css({position:\"relative\",left:e,top:0,zIndex:i.options.zIndex-2,opacity:0})})),i.$slides.eq(i.currentSlide).css({zIndex:i.options.zIndex-1,opacity:1})},i.prototype.setHeight=function(){var t=this;if(1===t.options.slidesToShow&&!0===t.options.adaptiveHeight&&!1===t.options.vertical){var e=t.$slides.eq(t.currentSlide).outerHeight(!0);t.$list.css(\"height\",e)}},i.prototype.setOption=i.prototype.slickSetOption=function(){var e,i,o,s,l,n=this,a=!1;if(\"object\"===t.type(arguments[0])?(o=arguments[0],a=arguments[1],l=\"multiple\"):\"string\"===t.type(arguments[0])&&(o=arguments[0],s=arguments[1],a=arguments[2],\"responsive\"===arguments[0]&&\"array\"===t.type(arguments[1])?l=\"responsive\":void 0!==arguments[1]&&(l=\"single\")),\"single\"===l)n.options[o]=s;else if(\"multiple\"===l)t.each(o,(function(t,e){n.options[t]=e}));else if(\"responsive\"===l)for(i in s)if(\"array\"!==t.type(n.options.responsive))n.options.responsive=[s[i]];else{for(e=n.options.responsive.length-1;e>=0;)n.options.responsive[e].breakpoint===s[i].breakpoint&&n.options.responsive.splice(e,1),e--;n.options.responsive.push(s[i])}a&&(n.unload(),n.reinit())},i.prototype.setPosition=function(){var t=this;t.setDimensions(),t.setHeight(),!1===t.options.fade?t.setCSS(t.getLeft(t.currentSlide)):t.setFade(),t.$slider.trigger(\"setPosition\",[t])},i.prototype.setProps=function(){var t=this,e=document.body.style;t.positionProp=!0===t.options.vertical?\"top\":\"left\",\"top\"===t.positionProp?t.$slider.addClass(\"slick-vertical\"):t.$slider.removeClass(\"slick-vertical\"),void 0===e.WebkitTransition&&void 0===e.MozTransition&&void 0===e.msTransition||!0===t.options.useCSS&&(t.cssTransitions=!0),t.options.fade&&(\"number\"==typeof t.options.zIndex?t.options.zIndex\u003C3&&(t.options.zIndex=3):t.options.zIndex=t.defaults.zIndex),void 0!==e.OTransform&&(t.animType=\"OTransform\",t.transformType=\"-o-transform\",t.transitionType=\"OTransition\",void 0===e.perspectiveProperty&&void 0===e.webkitPerspective&&(t.animType=!1)),void 0!==e.MozTransform&&(t.animType=\"MozTransform\",t.transformType=\"-moz-transform\",t.transitionType=\"MozTransition\",void 0===e.perspectiveProperty&&void 0===e.MozPerspective&&(t.animType=!1)),void 0!==e.webkitTransform&&(t.animType=\"webkitTransform\",t.transformType=\"-webkit-transform\",t.transitionType=\"webkitTransition\",void 0===e.perspectiveProperty&&void 0===e.webkitPerspective&&(t.animType=!1)),void 0!==e.msTransform&&(t.animType=\"msTransform\",t.transformType=\"-ms-transform\",t.transitionType=\"msTransition\",void 0===e.msTransform&&(t.animType=!1)),void 0!==e.transform&&!1!==t.animType&&(t.animType=\"transform\",t.transformType=\"transform\",t.transitionType=\"transition\"),t.transformsEnabled=t.options.useTransform&&null!==t.animType&&!1!==t.animType},i.prototype.setSlideClasses=function(t){var e,i,o,s,l=this;if(i=l.$slider.find(\".slick-slide\").removeClass(\"slick-active slick-center slick-current\").attr(\"aria-hidden\",\"true\"),l.$slides.eq(t).addClass(\"slick-current\"),!0===l.options.centerMode){var n=l.options.slidesToShow%2==0?1:0;e=Math.floor(l.options.slidesToShow\u002F2),!0===l.options.infinite&&(t>=e&&t\u003C=l.slideCount-1-e?l.$slides.slice(t-e+n,t+e+1).addClass(\"slick-active\").attr(\"aria-hidden\",\"false\"):(o=l.options.slidesToShow+t,i.slice(o-e+1+n,o+e+2).addClass(\"slick-active\").attr(\"aria-hidden\",\"false\")),0===t?i.eq(l.options.slidesToShow+l.slideCount+1).addClass(\"slick-center\"):t===l.slideCount-1&&i.eq(l.options.slidesToShow).addClass(\"slick-center\")),l.$slides.eq(t).addClass(\"slick-center\")}else t>=0&&t\u003C=l.slideCount-l.options.slidesToShow?l.$slides.slice(t,t+l.options.slidesToShow).addClass(\"slick-active\").attr(\"aria-hidden\",\"false\"):i.length\u003C=l.options.slidesToShow?i.addClass(\"slick-active\").attr(\"aria-hidden\",\"false\"):(s=l.slideCount%l.options.slidesToShow,o=!0===l.options.infinite?l.options.slidesToShow+t:t,l.options.slidesToShow==l.options.slidesToScroll&&l.slideCount-t\u003Cl.options.slidesToShow?i.slice(o-(l.options.slidesToShow-s),o+s).addClass(\"slick-active\").attr(\"aria-hidden\",\"false\"):i.slice(o,o+l.options.slidesToShow).addClass(\"slick-active\").attr(\"aria-hidden\",\"false\"));\"ondemand\"!==l.options.lazyLoad&&\"anticipated\"!==l.options.lazyLoad||l.lazyLoad()},i.prototype.setupInfinite=function(){var e,i,o,s=this;if(!0===s.options.fade&&(s.options.centerMode=!1),!0===s.options.infinite&&!1===s.options.fade&&(i=null,s.slideCount>s.options.slidesToShow)){for(o=!0===s.options.centerMode?s.options.slidesToShow+1:s.options.slidesToShow,e=s.slideCount;e>s.slideCount-o;e-=1)i=e-1,t(s.$slides[i]).clone(!0).attr(\"id\",\"\").attr(\"data-slick-index\",i-s.slideCount).prependTo(s.$slideTrack).addClass(\"slick-cloned\");for(e=0;e\u003Co+s.slideCount;e+=1)i=e,t(s.$slides[i]).clone(!0).attr(\"id\",\"\").attr(\"data-slick-index\",i+s.slideCount).appendTo(s.$slideTrack).addClass(\"slick-cloned\");s.$slideTrack.find(\".slick-cloned\").find(\"[id]\").each((function(){t(this).attr(\"id\",\"\")}))}},i.prototype.interrupt=function(t){t||this.autoPlay(),this.interrupted=t},i.prototype.selectHandler=function(e){var i=this,o=t(e.target).is(\".slick-slide\")?t(e.target):t(e.target).parents(\".slick-slide\"),s=parseInt(o.attr(\"data-slick-index\"));s||(s=0),i.slideCount\u003C=i.options.slidesToShow?i.slideHandler(s,!1,!0):i.slideHandler(s)},i.prototype.slideHandler=function(t,e,i){var o,s,l,n,a,r,d=this;if(e=e||!1,!(!0===d.animating&&!0===d.options.waitForAnimate||!0===d.options.fade&&d.currentSlide===t))if(!1===e&&d.asNavFor(t),o=t,a=d.getLeft(o),n=d.getLeft(d.currentSlide),d.currentLeft=null===d.swipeLeft?n:d.swipeLeft,!1===d.options.infinite&&!1===d.options.centerMode&&(t\u003C0||t>d.getDotCount()*d.options.slidesToScroll))!1===d.options.fade&&(o=d.currentSlide,!0!==i&&d.slideCount>d.options.slidesToShow?d.animateSlide(n,(function(){d.postSlide(o)})):d.postSlide(o));else if(!1===d.options.infinite&&!0===d.options.centerMode&&(t\u003C0||t>d.slideCount-d.options.slidesToScroll))!1===d.options.fade&&(o=d.currentSlide,!0!==i&&d.slideCount>d.options.slidesToShow?d.animateSlide(n,(function(){d.postSlide(o)})):d.postSlide(o));else{if(d.options.autoplay&&clearInterval(d.autoPlayTimer),s=o\u003C0?d.slideCount%d.options.slidesToScroll!=0?d.slideCount-d.slideCount%d.options.slidesToScroll:d.slideCount+o:o>=d.slideCount?d.slideCount%d.options.slidesToScroll!=0?0:o-d.slideCount:o,d.animating=!0,d.$slider.trigger(\"beforeChange\",[d,d.currentSlide,s]),l=d.currentSlide,d.currentSlide=s,d.setSlideClasses(d.currentSlide),d.options.asNavFor&&(r=(r=d.getNavTarget()).slick(\"getSlick\")).slideCount\u003C=r.options.slidesToShow&&r.setSlideClasses(d.currentSlide),d.updateDots(),d.updateArrows(),!0===d.options.fade)return!0!==i?(d.fadeSlideOut(l),d.fadeSlide(s,(function(){d.postSlide(s)}))):d.postSlide(s),void d.animateHeight();!0!==i&&d.slideCount>d.options.slidesToShow?d.animateSlide(a,(function(){d.postSlide(s)})):d.postSlide(s)}},i.prototype.startLoad=function(){var t=this;!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&(t.$prevArrow.hide(),t.$nextArrow.hide()),!0===t.options.dots&&t.slideCount>t.options.slidesToShow&&t.$dots.hide(),t.$slider.addClass(\"slick-loading\")},i.prototype.swipeDirection=function(){var t,e,i,o,s=this;return t=s.touchObject.startX-s.touchObject.curX,e=s.touchObject.startY-s.touchObject.curY,i=Math.atan2(e,t),(o=Math.round(180*i\u002FMath.PI))\u003C0&&(o=360-Math.abs(o)),o\u003C=45&&o>=0||o\u003C=360&&o>=315?!1===s.options.rtl?\"left\":\"right\":o>=135&&o\u003C=225?!1===s.options.rtl?\"right\":\"left\":!0===s.options.verticalSwiping?o>=35&&o\u003C=135?\"down\":\"up\":\"vertical\"},i.prototype.swipeEnd=function(t){var e,i,o=this;if(o.dragging=!1,o.swiping=!1,o.scrolling)return o.scrolling=!1,!1;if(o.interrupted=!1,o.shouldClick=!(o.touchObject.swipeLength>10),void 0===o.touchObject.curX)return!1;if(!0===o.touchObject.edgeHit&&o.$slider.trigger(\"edge\",[o,o.swipeDirection()]),o.touchObject.swipeLength>=o.touchObject.minSwipe){switch(i=o.swipeDirection()){case\"left\":case\"down\":e=o.options.swipeToSlide?o.checkNavigable(o.currentSlide+o.getSlideCount()):o.currentSlide+o.getSlideCount(),o.currentDirection=0;break;case\"right\":case\"up\":e=o.options.swipeToSlide?o.checkNavigable(o.currentSlide-o.getSlideCount()):o.currentSlide-o.getSlideCount(),o.currentDirection=1}\"vertical\"!=i&&(o.slideHandler(e),o.touchObject={},o.$slider.trigger(\"swipe\",[o,i]))}else o.touchObject.startX!==o.touchObject.curX&&(o.slideHandler(o.currentSlide),o.touchObject={})},i.prototype.swipeHandler=function(t){var e=this;if(!(!1===e.options.swipe||\"ontouchend\"in document&&!1===e.options.swipe||!1===e.options.draggable&&-1!==t.type.indexOf(\"mouse\")))switch(e.touchObject.fingerCount=t.originalEvent&&void 0!==t.originalEvent.touches?t.originalEvent.touches.length:1,e.touchObject.minSwipe=e.listWidth\u002Fe.options.touchThreshold,!0===e.options.verticalSwiping&&(e.touchObject.minSwipe=e.listHeight\u002Fe.options.touchThreshold),t.data.action){case\"start\":e.swipeStart(t);break;case\"move\":e.swipeMove(t);break;case\"end\":e.swipeEnd(t)}},i.prototype.swipeMove=function(t){var e,i,o,s,l,n,a=this;return l=void 0!==t.originalEvent?t.originalEvent.touches:null,!(!a.dragging||a.scrolling||l&&1!==l.length)&&(e=a.getLeft(a.currentSlide),a.touchObject.curX=void 0!==l?l[0].pageX:t.clientX,a.touchObject.curY=void 0!==l?l[0].pageY:t.clientY,a.touchObject.swipeLength=Math.round(Math.sqrt(Math.pow(a.touchObject.curX-a.touchObject.startX,2))),n=Math.round(Math.sqrt(Math.pow(a.touchObject.curY-a.touchObject.startY,2))),!a.options.verticalSwiping&&!a.swiping&&n>4?(a.scrolling=!0,!1):(!0===a.options.verticalSwiping&&(a.touchObject.swipeLength=n),i=a.swipeDirection(),void 0!==t.originalEvent&&a.touchObject.swipeLength>4&&(a.swiping=!0,t.preventDefault()),s=(!1===a.options.rtl?1:-1)*(a.touchObject.curX>a.touchObject.startX?1:-1),!0===a.options.verticalSwiping&&(s=a.touchObject.curY>a.touchObject.startY?1:-1),o=a.touchObject.swipeLength,a.touchObject.edgeHit=!1,!1===a.options.infinite&&(0===a.currentSlide&&\"right\"===i||a.currentSlide>=a.getDotCount()&&\"left\"===i)&&(o=a.touchObject.swipeLength*a.options.edgeFriction,a.touchObject.edgeHit=!0),!1===a.options.vertical?a.swipeLeft=e+o*s:a.swipeLeft=e+o*(a.$list.height()\u002Fa.listWidth)*s,!0===a.options.verticalSwiping&&(a.swipeLeft=e+o*s),!0!==a.options.fade&&!1!==a.options.touchMove&&(!0===a.animating?(a.swipeLeft=null,!1):void a.setCSS(a.swipeLeft))))},i.prototype.swipeStart=function(t){var e,i=this;if(i.interrupted=!0,1!==i.touchObject.fingerCount||i.slideCount\u003C=i.options.slidesToShow)return i.touchObject={},!1;void 0!==t.originalEvent&&void 0!==t.originalEvent.touches&&(e=t.originalEvent.touches[0]),i.touchObject.startX=i.touchObject.curX=void 0!==e?e.pageX:t.clientX,i.touchObject.startY=i.touchObject.curY=void 0!==e?e.pageY:t.clientY,i.dragging=!0},i.prototype.unfilterSlides=i.prototype.slickUnfilter=function(){var t=this;null!==t.$slidesCache&&(t.unload(),t.$slideTrack.children(this.options.slide).detach(),t.$slidesCache.appendTo(t.$slideTrack),t.reinit())},i.prototype.unload=function(){var e=this;t(\".slick-cloned\",e.$slider).remove(),e.$dots&&e.$dots.remove(),e.$prevArrow&&e.htmlExpr.test(e.options.prevArrow)&&e.$prevArrow.remove(),e.$nextArrow&&e.htmlExpr.test(e.options.nextArrow)&&e.$nextArrow.remove(),e.$slides.removeClass(\"slick-slide slick-active slick-visible slick-current\").attr(\"aria-hidden\",\"true\").css(\"width\",\"\")},i.prototype.unslick=function(t){var e=this;e.$slider.trigger(\"unslick\",[e,t]),e.destroy()},i.prototype.updateArrows=function(){var t=this;Math.floor(t.options.slidesToShow\u002F2),!0===t.options.arrows&&t.slideCount>t.options.slidesToShow&&!t.options.infinite&&(t.$prevArrow.removeClass(\"slick-disabled\").attr(\"aria-disabled\",\"false\"),t.$nextArrow.removeClass(\"slick-disabled\").attr(\"aria-disabled\",\"false\"),0===t.currentSlide?(t.$prevArrow.addClass(\"slick-disabled\").attr(\"aria-disabled\",\"true\"),t.$nextArrow.removeClass(\"slick-disabled\").attr(\"aria-disabled\",\"false\")):(t.currentSlide>=t.slideCount-t.options.slidesToShow&&!1===t.options.centerMode||t.currentSlide>=t.slideCount-1&&!0===t.options.centerMode)&&(t.$nextArrow.addClass(\"slick-disabled\").attr(\"aria-disabled\",\"true\"),t.$prevArrow.removeClass(\"slick-disabled\").attr(\"aria-disabled\",\"false\")))},i.prototype.updateDots=function(){var t=this;null!==t.$dots&&(t.$dots.find(\"li\").removeClass(\"slick-active\").end(),t.$dots.find(\"li\").eq(Math.floor(t.currentSlide\u002Ft.options.slidesToScroll)).addClass(\"slick-active\"))},i.prototype.visibility=function(){var t=this;t.options.autoplay&&(document[t.hidden]?t.interrupted=!0:t.interrupted=!1)},t.fn.slick=function(){var t,e,o=this,s=arguments[0],l=Array.prototype.slice.call(arguments,1),n=o.length;for(t=0;t\u003Cn;t++)if(\"object\"==typeof s||void 0===s?o[t].slick=new i(o[t],s):e=o[t].slick[s].apply(o[t].slick,l),void 0!==e)return e;return o}})),function(t){\"use strict\";const e=0==t(\"body.postx-admin-page\").length;async function i(){const e=sessionStorage.getItem(\"ultp_nonce\");if(e)return e;try{const e=await t.ajax({url:ultp_data_frontend.ajax,type:\"POST\",data:{action:\"ultp_get_nonce\"}});return e?.success&&e?.data?.nonce?(sessionStorage.setItem(\"ultp_nonce\",e.data.nonce),e.data.nonce):(console.log(\"Failed to fetching nonce\"),null)}catch(t){return console.log(\"Error occured.please try again\"+t.statusText+t.responseText),console.log(\"Nonce Not Generating Properly\"),null}}function o(){t(document).scrollTop()>1e3?(t(\".ultp-toc-backtotop\").addClass(\"tocshow\"),t(\".wp-block-ultimate-post-table-of-content\").addClass(\"ultp-toc-scroll\")):(t(\".ultp-toc-backtotop\").removeClass(\"tocshow\"),t(\".wp-block-ultimate-post-table-of-content\").removeClass(\"ultp-toc-scroll\"))}function s(t,e,i){e==i?t.find(\".ultp-next-page-numbers\").hide():t.find(\".ultp-next-page-numbers\").show(),e>1?t.find(\".ultp-prev-page-numbers\").show():t.find(\".ultp-prev-page-numbers\").hide(),e>3?t.find(\".ultp-first-dot\").show():t.find(\".ultp-first-dot\").hide(),e>2?t.find(\".ultp-first-pages\").show():t.find(\".ultp-first-pages\").hide(),i>e+2?t.find(\".ultp-last-dot\").show():t.find(\".ultp-last-dot\").hide(),i>e+1?t.find(\".ultp-last-pages\").show():t.find(\".ultp-last-pages\").hide()}function l(e,i,o){let s=i\u003C=2?[1,2,3]:o==i?[o-2,o-1,o]:[i-1,i,i+1],l=0;e.find(\".ultp-center-item\").each((function(){i==s[l]&&t(this).addClass(\"pagination-active\"),t(this).find(\"a\").blur(),t(this).attr(\"data-current\",s[l]).find(\"a\").text(s[l]),l++})),e.find(\".ultp-prev-page-numbers a\").blur(),e.find(\".ultp-next-page-numbers a\").blur()}function n(t,e){null!=e&&sessionStorage.setItem(t,e)}function a(){t(\".wp-block-ultimate-post-post-slider-1, .wp-block-ultimate-post-post-slider-2\").each((function(){const e=\"#\"+t(this).attr(\"id\");let i=t(e).find(\".ultp-block-items-wrap\");t(this).parent(\".ultp-shortcode\")&&(i=t(this).find(\".ultp-block-items-wrap\"));let o={arrows:!0,dots:!!i.data(\"dots\"),infinite:!0,speed:500,slidesToShow:i.data(\"slidelg\")||1,slidesToScroll:1,autoplay:!!i.data(\"autoplay\"),autoplaySpeed:i.data(\"slidespeed\")||3e3,cssEase:\"linear\",prevArrow:i.parent().find(\".ultp-slick-prev\").html(),nextArrow:i.parent().find(\".ultp-slick-next\").html()},s=\"slide2\"==i.data(\"layout\")||\"slide3\"==i.data(\"layout\")||\"slide5\"==i.data(\"layout\")||\"slide6\"==i.data(\"layout\")||\"slide8\"==i.data(\"layout\");i.data(\"layout\")?i.data(\"fade\")&&s?o.fade=!!i.data(\"fade\"):!i.data(\"fade\")&&s?(o.slidesToShow=i.data(\"slidelg\")||1,o.responsive=[{breakpoint:991,settings:{slidesToShow:i.data(\"slidesm\")||1,slidesToScroll:1}},{breakpoint:767,settings:{slidesToShow:i.data(\"slidexs\")||1,slidesToScroll:1}}]):(o.slidesToShow=i.data(\"slidelg\")||1,o.centerMode=!0,o.centerPadding=`${i.data(\"paddlg\")}px`||100,o.responsive=[{breakpoint:991,settings:{slidesToShow:i.data(\"slidesm\")||1,slidesToScroll:1,centerPadding:`${i.data(\"paddsm\")}px`||50}},{breakpoint:767,settings:{slidesToShow:i.data(\"slidexs\")||1,slidesToScroll:1,centerPadding:`${i.data(\"paddxs\")}px`||50}}]):i.data(\"slidelg\")\u003C2?o.fade=!!i.data(\"fade\"):o.responsive=[{breakpoint:1024,settings:{slidesToShow:i.data(\"slidesm\")||1,slidesToScroll:1}},{breakpoint:600,settings:{slidesToShow:i.data(\"slidexs\")||1,slidesToScroll:1}}],i.not(\".slick-initialized\").slick(o)}))}t(\".ultp-post-share-item a\").each((function(){t(this).on(\"click\",(function(){let e,i,o=t(this).attr(\"url\");e=window.screen.width\u002F2-410,i=window.screen.height\u002F2-300;let s=\"height=500,width=800,resizable=yes,left=\"+e+\",top=\"+i+\",screenX=\"+e+\",screenY=\"+i;window.open(o,\"sharer\",s);let l=t(this).parents(\".ultp-post-share-item-inner-block\").attr(\"postId\"),n=t(this).parents(\".ultp-post-share-item-inner-block\").attr(\"count\");return t.ajax({url:ultp_data_frontend.ajax,type:\"POST\",data:{action:\"ultp_share_count\",shareCount:n,postId:l,wpnonce:ultp_data_frontend.security},error:function(t){console.log(\"Error occured.please try again\"+t.statusText+t.responseText)}}),!1}))})),t(window).on(\"scroll\",(function(){t(window).scrollTop()+window.innerHeight>=t(\"footer\")?.offset()?.top?t(\".wp-block-ultimate-post-post_share .ultp-block-wrapper .ultp-disable-sticky-footer\").addClass(\"remove-sticky\"):t(\".wp-block-ultimate-post-post_share .ultp-block-wrapper .ultp-disable-sticky-footer\").removeClass(\"remove-sticky\")})),t(\".ultp-news-ticker\").each((function(){t(this).UltpSlider({type:t(this).data(\"type\"),direction:t(this).data(\"direction\"),speed:t(this).data(\"speed\"),pauseOnHover:1==t(this).data(\"hover\"),controls:{prev:t(this).closest(\".ultp-newsTicker-wrap\").find(\".ultp-news-ticker-prev\"),next:t(this).closest(\".ultp-newsTicker-wrap\").find(\".ultp-news-ticker-next\"),toggle:t(this).closest(\".ultp-newsTicker-wrap\").find(\".ultp-news-ticker-pause\")}})})),t(\".ultp-toc-backtotop\").on(\"click\",(function(e){e.preventDefault(),t(\"html, body\").animate({scrollTop:0},\"slow\")})),t(window).on(\"scroll\",(function(){o()})),o(),t(\".ultp-collapsible-open\").on(\"click\",(function(e){t(this).closest(\".ultp-collapsible-toggle\").removeClass(\"ultp-toggle-collapsed\"),t(this).parents(\".ultp-block-toc\").find(\".ultp-block-toc-body\").show()})),t(\".ultp-collapsible-hide\").on(\"click\",(function(e){t(this).closest(\".ultp-collapsible-toggle\").addClass(\"ultp-toggle-collapsed\"),t(this).parents(\".ultp-block-toc\").find(\".ultp-block-toc-body\").hide()})),t(\".ultp-toc-lists li a\").on(\"click\",(function(){t([document.documentElement,document.body]).animate({scrollTop:t(t(this).attr(\"href\")).offset().top-50},500)})),t(document).ready((function(){if(t(\".ultp-flex-menu\").length>0){const e=t(\"ul.ultp-flex-menu\").data(\"name\");t(\"ul.ultp-flex-menu\").flexMenu({linkText:e,linkTextAll:e,linkTitle:e})}})),t(document).on(\"click\",(function(e){0===t(e.target).closest(\".flexMenu-viewMore\").length&&(t(\".flexMenu-viewMore\").removeClass(\"active\"),t(\".flexMenu-viewMore\").children(\"ul.flexMenu-popup\").css(\"display\",\"none\"))})),t(document).on(\"click\",\".ultp-filter-navigation .flexMenu-popup .filter-item\",(function(e){t(\".flexMenu-viewMore\").removeClass(\"active\"),t(\".flexMenu-viewMore\").children(\"ul.flexMenu-popup\").css(\"display\",\"none\")})),t(\".ultp-post-grid-parent\").each((function(){const e=t(this).find(\".ultp-post-grid-block\"),i=t(this).find(\".ultp-pagination-block\"),o=e.find(\".pagination-block-html > div\");i.length\u003C1||o.length\u003C1||(i.attr(\"class\").split(\" \").forEach((t=>{o.addClass(t)})),i.html(o))})),t(document).off(\"click\",\".ultp-pagination-ajax-action li, .ultp-loadmore-action, .ultp-prev-action, .ultp-next-action\",(function(t){})),t(document).on(\"click\",\".ultp-prev-action, .ultp-next-action\",(function(e){e.preventDefault();let i=t(this).closest(\".ultp-next-prev-wrap\"),o=i.closest(\".ultp-block-wrapper\").find(\".ultp-block-items-wrap\"),s=parseInt(i.data(\"pagenum\")),l=parseInt(i.data(\"pages\")),a=i.closest(\".ultp-block-wrapper\");const r=i.parents(\".ultp-post-grid-parent\");if(o.length\u003C1){const e=i.data(\"for\");e&&(o=t(\".\"+e+\" .ultp-block-items-wrap\"))}if(i.is(\".ultp-disable-editor-click\"))return;if(t(this).hasClass(\"ultp-prev-action\")){if(t(this).hasClass(\"ultp-disable\"))return;s--,i.data(\"pagenum\",s),i.find(\".ultp-prev-action, .ultp-next-action\").removeClass(\"ultp-disable\"),1==s&&t(this).addClass(\"ultp-disable\")}if(t(this).hasClass(\"ultp-next-action\")){if(t(this).hasClass(\"ultp-disable\"))return;s++,i.data(\"pagenum\",s),i.find(\".ultp-prev-action, .ultp-next-action\").removeClass(\"ultp-disable\"),s==l&&t(this).addClass(\"ultp-disable\")}let d=0!=i.parents(\".ultp-shortcode\").length&&\"no\"==i.data(\"selfpostid\")?i.parents(\".ultp-shortcode\").data(\"postid\"):i.data(\"postid\");t(this).closest(\".ultp-builder-content\").length>0&&(d=t(this).closest(\".ultp-builder-content\").data(\"postid\"));let c=\"\",p=t(this).parents(\".widget_block:first\");if(p.length>0){let t=p.attr(\"id\").split(\"-\");c=t[t.length-1]}const u=sessionStorage.getItem(\"ultp_uniqueIds\"),f=JSON.stringify(o.find(\".ultp-current-unique-posts\").data(\"current-unique-posts\")),m=i.data(\"filter-value\")||\"\",g={};Array.isArray(m)&&m.length>0&&(g.filterShow=!0,g.checkFilter=!0,g.isAdv=!0,g.author=i.data(\"filter-author\")||\"\",g.order=i.data(\"filter-order\")||\"\",g.orderby=i.data(\"filter-orderby\")||\"\",g.adv_sort=i.data(\"filter-adv-sort\")||\"\"),t.ajax({url:ultp_data_frontend.ajax,type:\"POST\",data:{action:\"ultp_next_prev\",paged:s,blockId:i.data(\"blockid\"),postId:d,exclude:i.data(\"expost\"),blockName:i.data(\"blockname\"),builder:i.data(\"builder\"),filterValue:m,filterType:i.data(\"filter-type\")||\"\",widgetBlockId:c,ultpUniqueIds:u||[],ultpCurrentUniquePosts:f||[],...g,wpnonce:ultp_data_frontend.security},beforeSend:function(){a.length\u003C1&&r.length>0?r.find(\".ultp-block-wrapper\").addClass(\"ultp-loading-active\"):a.addClass(\"ultp-loading-active\")},success:function(e){e&&(o.html(e),n(\"ultp_uniqueIds\",JSON.stringify(o.find(\".ultp-current-unique-posts\").data(\"ultp-unique-ids\"))),t(window).scrollTop()>o.offset().top&&t([document.documentElement,document.body]).animate({scrollTop:o.offset().top-80},100))},complete:function(){a.length\u003C1&&r.length>0?r.find(\".ultp-block-wrapper\").removeClass(\"ultp-loading-active\"):a.removeClass(\"ultp-loading-active\"),h()},error:function(t){console.log(\"Error occured.please try again\"+t.statusText+t.responseText),i.closest(\".ultp-block-wrapper\").removeClass(\"ultp-loading-active\")}})})),t(document).on(\"click\",\".ultp-loadmore-action\",(function(e){if(t(this).is(\".ultp-disable-editor-click\"))return;e.preventDefault();let i=t(this),o=i.closest(\".ultp-block-wrapper\"),s=!1;if(o.length\u003C1){const e=i.data(\"for\");e&&(o=t(\".\"+e+\" .ultp-block-wrapper\"),s=o.length>0)}let l=parseInt(i.data(\"pagenum\")),a=parseInt(i.data(\"pages\"));if(i.hasClass(\"ultp-disable\"))return;l++,i.data(\"pagenum\",l),l==a?t(this).addClass(\"ultp-disable\"):t(this).removeClass(\"ultp-disable\");let r=0!=i.parents(\".ultp-shortcode\").length&&\"no\"==i.data(\"selfpostid\")?i.parents(\".ultp-shortcode\").data(\"postid\"):i.data(\"postid\");i.closest(\".ultp-builder-content\").length>0&&(r=i.closest(\".ultp-builder-content\").data(\"postid\"));let d=\"\",c=t(this).parents(\".widget_block:first\");if(c.length>0){let t=c.attr(\"id\").split(\"-\");d=t[t.length-1]}const p=sessionStorage.getItem(\"ultp_uniqueIds\"),u=JSON.stringify(o.find(\".ultp-current-unique-posts\").data(\"current-unique-posts\")),h=i.data(\"filter-value\")||\"\",f={};Array.isArray(h)&&h.length>0&&(f.filterShow=!0,f.checkFilter=!0,f.isAdv=!0,f.author=i.data(\"filter-author\")||\"\",f.order=i.data(\"filter-order\")||\"\",f.orderby=i.data(\"filter-orderby\")||\"\",f.adv_sort=i.data(\"filter-adv-sort\")||\"\"),t.ajax({url:ultp_data_frontend.ajax,type:\"POST\",data:{action:\"ultp_next_prev\",paged:l,blockId:i.data(\"blockid\"),postId:r,blockName:i.data(\"blockname\"),builder:i.data(\"builder\"),exclude:i.data(\"expost\"),filterValue:h,filterType:i.data(\"filter-type\")||\"\",widgetBlockId:d,ultpUniqueIds:p||[],ultpCurrentUniquePosts:u||[],...f,wpnonce:ultp_data_frontend.security},beforeSend:function(){o.addClass(\"ultp-loading-active\"),s&&i.find(\".ultp-spin\").css(\"display\",\"flex\")},success:function(e){if(e){o.find(\".ultp-block-row\").css(\"max-height\",\"unset\"),o.find(\".ultp-current-unique-posts\").remove();const s=o.find(\".ultp-loadmore-insert-before\");if(s.length)i.data(\"blockname\").includes(\"post-module\")&&t('\u003Cdiv style=\"clear:left;width:100%;padding-block:15px;\">\u003C\u002Fdiv>').insertBefore(s),t(e).insertBefore(s);else{const s=o.find(\".ultp-block-items-wrap\");i.data(\"blockname\").includes(\"post-module\")&&s.append(t('\u003Cdiv style=\"clear:left;width:100%;padding-block:15px;\">\u003C\u002Fdiv>')),s.append(e)}n(\"ultp_uniqueIds\",JSON.stringify(o.find(\".ultp-current-unique-posts\").data(\"ultp-unique-ids\")))}},complete:function(){o.removeClass(\"ultp-loading-active\"),s&&i.find(\".ultp-spin\").css(\"display\",\"none\")},error:function(t){console.log(\"Error occured.please try again\"+t.statusText+t.responseText),o.removeClass(\"ultp-loading-active\"),s&&i.find(\".ultp-spin\").css(\"display\",\"none\")}})})),t(document).on(\"click\",\".ultp-filter-wrap li a\",(async function(e){e.preventDefault();const o=await i();if(t(this).closest(\"li\").hasClass(\"filter-item\")){let e=t(this),i=e.closest(\".ultp-filter-wrap\"),s=e.closest(\".ultp-block-wrapper\");const l=e.parents(\".ultp-post-grid-parent\");if(i.find(\"a\").removeClass(\"filter-active\"),e.addClass(\"filter-active\"),i.is(\".ultp-disable-editor-click\"))return;let a=0!=i.parents(\".ultp-shortcode\").length&&\"no\"==i.data(\"selfpostid\")?i.parents(\".ultp-shortcode\").data(\"postid\"):i.data(\"postid\");e.closest(\".ultp-builder-content\").length>0&&(a=e.closest(\".ultp-builder-content\").data(\"postid\"));let r=\"\",d=t(this).parents(\".widget_block:first\");if(d.length>0){let t=d.attr(\"id\").split(\"-\");r=t[t.length-1]}const c=sessionStorage.getItem(\"ultp_uniqueIds\"),p=JSON.stringify(s.find(\".ultp-current-unique-posts\").data(\"current-unique-posts\"));i.data(\"blockid\")&&t.ajax({url:ultp_data_frontend.ajax,type:\"POST\",data:{action:\"ultp_filter\",taxtype:i.data(\"taxtype\"),taxonomy:e.data(\"taxonomy\"),blockId:i.data(\"blockid\"),postId:a,blockName:i.data(\"blockname\"),widgetBlockId:r,ultpUniqueIds:c||[],ultpCurrentUniquePosts:p||[],wpnonce:o},beforeSend:function(){s.addClass(\"ultp-loading-active\")},success:function(e){s.find(\".ultp-block-items-wrap\").html(e?.data?.filteredData?.blocks),\"loadMore\"==e?.data?.filteredData?.paginationType&&e?.data?.filteredData?.paginationShow?s.find(\".ultp-loadmore\").replaceWith(e?.data?.filteredData?.pagination):\"navigation\"==e?.data?.filteredData?.paginationType?s.find(\".ultp-next-prev-wrap\").replaceWith(e?.data?.filteredData?.pagination):\"pagination\"==e?.data?.filteredData?.paginationType&&s.find(\".ultp-pagination-wrap\").replaceWith(e?.data?.filteredData?.pagination),e?.data?.filteredData?.pagination&&l.length>0&&l.data(\"pagi\")?.map((i=>{let o=[];if(\"loadMore\"===e?.data?.filteredData?.paginationType?(o=t(\".ultp-loadmore.\"+i),o.length):o=t(\".\"+i+\"[data-for]\"),o.length>0){const i=t(e.data.filteredData.pagination);o.attr(\"class\").split(\" \").forEach((t=>i.addClass(t))),o.replaceWith(i)}}))},complete:function(){s.removeClass(\"ultp-loading-active\"),n(\"ultp_uniqueIds\",JSON.stringify(s.find(\".ultp-current-unique-posts\").data(\"ultp-unique-ids\"))),h()},error:function(t){console.log(\"Error occured.please try again\"+t.statusText+t.responseText),s.removeClass(\"ultp-loading-active\")}})}})),t(\".ultp-current-unique-posts\").length>0&&t(\".ultp-current-unique-posts\").each((function(){n(\"ultp_uniqueIds\",JSON.stringify(t(this).data(\"ultp-unique-ids\")))})),t(document).on(\"click\",\".ultp-pagination-ajax-action li\",(async function(e){e.preventDefault();const o=await i();let a=t(this),r=a.closest(\".ultp-pagination-ajax-action\"),d=a.closest(\".ultp-block-wrapper\");const c=r.attr(\"data-blockid\");if(d.length\u003C1){const e=r.data(\"for\");e&&(d=t(\".\"+e+\" .ultp-block-wrapper\"))}if(r.is(\".ultp-disable-editor-click\"))return;let p=1,u=r.attr(\"data-pages\");a.attr(\"data-current\")?(p=Number(a.attr(\"data-current\")),r.attr(\"data-paged\",p).find(\"li\").removeClass(\"pagination-active\"),l(r,p,u),s(r,p,u)):a.hasClass(\"ultp-prev-page-numbers\")?(p=Number(r.attr(\"data-paged\"))-1,r.attr(\"data-paged\",p).find(\"li\").removeClass(\"pagination-active\"),l(r,p,u),s(r,p,u)):a.hasClass(\"ultp-next-page-numbers\")&&(p=Number(r.attr(\"data-paged\"))+1,r.attr(\"data-paged\",p).find(\"li\").removeClass(\"pagination-active\"),l(r,p,u),s(r,p,u));let f=0!=r.parents(\".ultp-shortcode\").length&&\"no\"==r.data(\"selfpostid\")?r.parents(\".ultp-shortcode\").data(\"postid\"):r.data(\"postid\");a.closest(\".ultp-builder-content\").length>0&&(f=a.closest(\".ultp-builder-content\").data(\"postid\"));let m=\"\",g=t(this).parents(\".widget_block:first\");if(g.length>0){let t=g.attr(\"id\").split(\"-\");m=t[t.length-1]}const v=sessionStorage.getItem(\"ultp_uniqueIds\"),w=JSON.stringify(d.find(\".ultp-current-unique-posts\").data(\"current-unique-posts\")),b=r.data(\"filter-value\")||\"\",y={};Array.isArray(b)&&b.length>0&&(y.filterShow=!0,y.checkFilter=!0,y.isAdv=!0,y.author=r.data(\"filter-author\")||\"\",y.order=r.data(\"filter-order\")||\"\",y.orderby=r.data(\"filter-orderby\")||\"\",y.adv_sort=r.data(\"filter-adv-sort\")||\"\"),p&&(c&&function(t,e,i){const o=new URLSearchParams(window.location.search);o.set(`${t}_page`,e);const s=window.location.pathname+\"?\"+o.toString();window.history.replaceState({page:{[t]:i}},document.title,s)}(c,p,function(t){const e=new URLSearchParams(window.location.search).get(t+\"_page\");return e?+e:1}(c)),t.ajax({url:ultp_data_frontend.ajax,type:\"POST\",data:{exclude:r.data(\"expost\"),action:\"ultp_pagination\",paged:p,blockId:r.data(\"blockid\"),postId:f,blockName:r.data(\"blockname\"),builder:r.data(\"builder\"),widgetBlockId:m,ultpUniqueIds:v||[],ultpCurrentUniquePosts:w||[],filterType:r.data(\"filter-type\")||\"\",filterValue:b,...y,wpnonce:o},beforeSend:function(){d.addClass(\"ultp-loading-active\")},success:function(e){d.find(\".ultp-block-items-wrap\").html(e),n(\"ultp_uniqueIds\",JSON.stringify(d.find(\".ultp-current-unique-posts\").data(\"ultp-unique-ids\"))),t(window).scrollTop()>d.offset().top&&t([document.documentElement,document.body]).animate({scrollTop:d.offset().top-80},100)},complete:function(){d.removeClass(\"ultp-loading-active\"),h()},error:function(t){console.log(\"Error occured.please try again\"+t.statusText+t.responseText),d.removeClass(\"ultp-loading-active\")}}))})),t(window).on(\"elementor\u002Ffrontend\u002Finit\",(()=>{setTimeout((()=>{t(\".elementor-editor-active\").length>0&&a()}),2e3)})),t(\".bricks-builder-iframe\").length>0&&t(window.parent.document).find(\".bricks-panel-controls\").length>0&&setTimeout((()=>{a()}),2500),a(),t('span[role=\"button\"].ultp-loadmore-action').on(\"keydown\",(function(t){const e=void 0!==t.key?t.key:t.keyCode;(\"Enter\"===e||13===e||[\"Spacebar\",\" \"].indexOf(e)>=0||32===e)&&(t.preventDefault(),this.click())}));let r=!0;function d(t){switch(t){case\"categories\":return\"category\";case\"tag\":case\"tags\":return\"post_tag\";case\"authors\":return\"author\";case\"order_by\":return\"orderby\";default:return t}}t(window).on(\"scroll\",(function(){let e=t(this).scrollTop();t(\".wp-block-ultimate-post-post-image\").each((function(){let i=t(this).find(\".ultp-builder-video video , .ultp-builder-video iframe\");if(t(this).find(\".ultp-video-block\").hasClass(\"ultp-sticky-video\")){let o=t(this).find(\".ultp-image-wrapper\"),s=o.offset(),l=i.height(),n=i.offset(),a=e+(t(\"#wpadminbar\").height()||0),d=n.top+l;a>n.top&&a>d&&r&&(t(this).find(\".ultp-image-wrapper\").css(\"height\",o.height()),t(this).find(\".ultp-sticky-video\").addClass(\"ultp-sticky-active\")),a\u003Co.height()+s.top&&(t(this).find(\".ultp-sticky-video\").removeClass(\"ultp-sticky-active\"),t(this).find(\".ultp-image-wrapper\").css(\"height\",\"auto\")),t(\".ultp-sticky-close\").on(\"click\",(function(){t(this).find(\".ultp-image-wrapper\").css(\"height\",\"auto\"),t(\".ultp-sticky-video\").removeClass(\"ultp-sticky-active\"),r=!1}))}}))})),t(\".ultp-filter-block\").each((function(){const e=t(this),i=t(this).parents(\".ultp-post-grid-parent\"),o=i.find(\".ultp-block-wrapper\"),s=JSON.parse(i.attr(\"data-grids\")),l=i.attr(\"data-postid\"),a=t(this).find(\".ultp-filter-clear-template\"),r=t(this).find(\".ultp-filter-clear-button\"),c=\"ultp-block-\"+r.data(\"blockid\")+\"-first\";function p(){s.forEach((e=>{!function(e,i,o,s,l){const a=[],r={},c=e.data(\"pagi\");e.find(\".ultp-filter-select\").each((function(){const e=t(this).attr(\"data-type\"),i=t(this).attr(\"data-selected\"),o=t(this).find('.ultp-filter-select__dropdown-inner[data-id=\"'+i+'\"]').data(\"tax\");\"author\"!==d(e)?\"order\"!==d(e)?\"orderby\"!==d(e)?\"adv_sort\"!==d(e)?\"custom_tax\"!==d(e)?a.push({value:d(e)+\"###\"+i}):o&&a.push({value:o+\"###\"+i}):r.adv_sort=i:r.orderby=i:r.order=i:\"_all\"!==i&&(r.author=[{value:i}])})),e.find('.ultp-filter-button[data-is-active=\"true\"]').each((function(){const e=t(this).attr(\"data-type\"),i=t(this).attr(\"data-selected\"),o=t(this).attr(\"data-tax\");\"author\"!==d(e)?\"order\"!==d(e)?\"orderby\"!==d(e)?\"adv_sort\"!==d(e)?\"custom_tax\"!==d(e)?a.push({value:d(e)+\"###\"+i}):o&&a.push({value:o+\"###\"+i}):r.adv_sort=i:r.orderby=i:r.order=i:\"_all\"!==i&&(r.author=[{value:i}])})),r.taxonomy=a;const p=e.find(\".ultp-filter-search input\");p.length>0&&(r.search=p.val());const u=sessionStorage.getItem(\"ultp_uniqueIds\"),h=JSON.stringify(e.find(\".ultp-current-unique-posts\").data(\"current-unique-posts\"));let f=\"\",m=e.parents(\".widget_block:first\");if(m.length>0){let t=m.attr(\"id\").split(\"-\");f=t[t.length-1]}t(l).each((function(){const l=t(this);t.ajax({url:ultp_data_frontend.ajax,type:\"POST\",data:{action:\"ultp_adv_filter\",...r,blockId:i,blockName:o,postId:s,ultpUniqueIds:u||[],ultpCurrentUniquePosts:h||[],widgetBlockId:f,wpnonce:ultp_data_frontend.security},beforeSend:function(){l.addClass(\"ultp-loading-active\")},success:function(e){l.closest(\".wp-block-ultimate-post-post-grid-parent\")?.find(\".ultp-not-found-message\")?.remove(),\"\"===e?.data?.filteredData?.blocks&&e?.data?.filteredData?.notFound&&l.closest(\".wp-block-ultimate-post-post-grid-parent\").append('\u003Cdiv class=\"ultp-not-found-message\" role=\"alert\">'+e?.data?.filteredData?.notFound+\"\u003C\u002Fdiv>\"),l.find(\".ultp-block-items-wrap\").html(e?.data?.filteredData?.blocks),\"loadMore\"==e?.data?.filteredData?.paginationType&&e?.data?.filteredData?.paginationShow?l.find(\".ultp-loadmore\").replaceWith(e?.data?.filteredData?.pagination):\"navigation\"==e?.data?.filteredData?.paginationType?l.find(\".ultp-next-prev-wrap\").replaceWith(e?.data?.filteredData?.pagination):\"pagination\"==e?.data?.filteredData?.paginationType&&l.find(\".ultp-pagination-wrap\").replaceWith(e?.data?.filteredData?.pagination),e?.data?.filteredData?.pagination&&c?.map((i=>{let o=[];if(\"loadMore\"===e?.data?.filteredData?.paginationType?(o=t(\".ultp-loadmore.\"+i),o.length):o=t(\".\"+i+\"[data-for]\"),o.length>0){const i=t(e.data.filteredData.pagination);o.attr(\"class\").split(\" \").forEach((t=>i.addClass(t))),o.replaceWith(i)}}))},complete:function(){l.removeClass(\"ultp-loading-active\"),n(\"ultp_uniqueIds\",JSON.stringify(e.find(\".ultp-current-unique-posts\").data(\"ultp-unique-ids\")))},error:function(t){console.log(\"Error occured.please try again\"+t.statusText+t.responseText),l.removeClass(\"ultp-loading-active\")}})}))}(i,e.blockId,e.name,l,o)}))}let u;function h(t){clearTimeout(u),u=t?setTimeout(p,500):p()}e.find(\".ultp-filter-select\").each((function(){const i=t(this).find(\".ultp-filter-select-options\"),o=t(this).find(\".ultp-filter-select-field-selected\"),s=t(this).find(\".ultp-filter-select-field-icon\"),l=t(this),n=t(this).attr(\"data-type\"),d=t(this).find(\".ultp-filter-select-search\");function u(e){e?(t(\".ultp-filter-select .ultp-filter-select-options\").css(\"display\",\"none\"),t(\".ultp-filter-select .ultp-filter-select-field-icon\").removeClass(\"ultp-dropdown-icon-rotate\"),t(\".ultp-filter-select\").attr(\"aria-expanded\",!1),i.css(\"display\",\"block\"),s.addClass(\"ultp-dropdown-icon-rotate\")):(i.css(\"display\",\"none\"),s.removeClass(\"ultp-dropdown-icon-rotate\")),l.attr(\"aria-expanded\",e)}const h=i.find(\"li\").first();t(this).on(\"click\",(function(t){t.stopPropagation(),u(\"none\"===i.css(\"display\"))})),t(i).find(\"li\").each((function(){const i=t(this).attr(\"data-id\"),s=t(this).attr(\"data-blockId\"),d=t(this).text();t(this).on(\"click\",(function(){if(o.text(d),l.attr(\"data-selected\",i),\"_all\"===i)e.find(`.ultp-filter-clear[data-type=\"${n}\"]`).remove();else if(r.length>0){let t=!1,u=e.find(`.ultp-filter-clear[data-type=\"${n}\"]`);u.length\u003C1&&(t=!0,u=a.clone()),u.removeClass(\"ultp-filter-clear-template\"),u.addClass(\"ultp-filter-clear-selected-filter\"),u.find(\".ultp-selected-filter-text\").text(function(t,e){return`${t.replace(\"_\",\" \").replace(\u002F\\b\\w\u002Fg,(t=>t.toUpperCase()))}: ${e}`}(n,d)),r.hasClass(c)&&(r.removeClass(c),u.addClass(c)),u.find(\".ultp-selected-filter-icon\").on(\"click\",(function(){o.text(h.text()),l.attr(\"data-selected\",h.attr(\"data-id\")),u.hasClass(c)&&(u.next().hasClass(\"ultp-filter-clear-selected-filter\")?u.next().addClass(c):r.addClass(c)),u.remove(),p()})),u.attr(\"data-id\",i),u.attr(\"data-type\",n),u.attr(\"data-for\",s),u.css({display:\"block\"}),t&&u.insertBefore(r)}p(),u(!0)}))})),d.on(\"click\",(function(t){t.preventDefault(),t.stopPropagation()})),d.on(\"input\",(function(e){const o=String(e.target.value).toLowerCase();o.length>0?i.find(\"li\").each((function(){const e=t(this).text();t(this).css(\"display\",e.toLowerCase().includes(o)?\"list-item\":\"none\")})):i.find(\"li\").each((function(){t(this).css(\"display\",\"list-item\")}))})),t(document).on(\"click\",(function(t){l.is(t.target)||l.has(t.target).length||u(!1)}))})),e.find(\".ultp-filter-button\").each((function(){const i=this,o=t(this).data(\"type\");t(this).on(\"click\",(function(){const s=\"true\"===t(i).attr(\"data-is-active\");if(\"_all\"===t(this).data(\"selected\")){const t=e.find('.ultp-filter-button[data-selected]:not([data-selected=\"_all\"])');t.length>0&&(t.attr(\"data-is-active\",\"false\"),t.removeClass(\"ultp-filter-button-active\"))}else if([\"adv_sort\",\"order\",\"order_by\"].includes(o)&&!s){const t=e.find(`.ultp-filter-button[data-type=\"${o}\"]`);t.length>0&&(t.attr(\"data-is-active\",\"false\"),t.removeClass(\"ultp-filter-button-active\"))}else{const t=e.find('.ultp-filter-button[data-selected=\"_all\"]');t.length>0&&(t.attr(\"data-is-active\",\"false\"),t.removeClass(\"ultp-filter-button-active\"))}s?(t(i).attr(\"data-is-active\",\"false\"),t(i).removeClass(\"ultp-filter-button-active\")):(t(i).attr(\"data-is-active\",\"true\"),t(i).addClass(\"ultp-filter-button-active\"),([\"author\"].includes(o)||\"true\"!=t(this).parent().attr(\"data-multiselect\"))&&t(i).siblings().attr(\"data-is-active\",\"false\").removeClass(\"ultp-filter-button-active\")),p()}))})),r.on(\"click\",(function(){!function(){e.find(\".ultp-filter-select\").each((function(){const e=t(this).find(\".ultp-filter-select-options li\").first();t(this).attr(\"data-selected\",e.attr(\"data-id\")),t(this).find(\".ultp-filter-select-field-selected\").text(e.text())}));const i=e.find(\".ultp-filter-clear-selected-filter\");i.hasClass(c)&&r.addClass(c),i.remove(),e.find(\".ultp-filter-search input\").val(\"\"),e.find('.ultp-filter-button[data-is-active=\"true\"]').each((function(){t(this).removeClass(\"ultp-filter-button-active\"),t(this).attr(\"data-is-active\",\"false\")}))}(),p()})),i.find(\".ultp-filter-search input\").off(\"input\").on(\"input\",(function(){h(!0)})),i.find(\".ultp-filter-search input\").on(\"keydown\",(function(t){\"Enter\"===t.key&&h(!1)})),i.find(\".ultp-filter-search-icon\").on(\"click\",(function(){h(!1)}))}));const c=ultp_data_frontend?.dark_logo,p=t(\".ultp-dark-logo.wp-block-site-logo\").find(\"img\").attr(\"src\"),u=t(\".ultp-dark-logo.wp-block-site-logo\").find(\"img\").attr(\"srcset\")||\"\";function h(){t(\".ultp-video-modal .ultp-video-modal__content .ultp-video-wrapper > iframe\").each((function(){const e=t(this),i=e.attr(\"src\");i&&i.includes(\"dailymotion.com\u002Fplayer\")&&\"&\"==i[i.length-1]&&e.attr(\"src\",i.slice(0,i.length-1)+\"?autoplay=0\")}))}t(document).on(\"click\",\".ultp-dark-light-block-wrapper-content.ultp-frontend .ultp-dl-con\",(function(e){e.preventDefault();const i=t(this).closest(\".ultp-dark-light-block-wrapper-content\"),o=t(this).hasClass(\"ultp-light-con\"),s=t(this).closest(\".ultp-dl-after-before-con\"),l=i.find(`.ultp-${o?\"dark\":\"light\"}-con`).closest(\".ultp-dl-after-before-con\"),n=s.data(\"iconlay\"),a=s.data(\"iconsize\"),r=s.data(\"iconrev\");let d=0;if([\"layout5\",\"layout6\",\"layout7\"].includes(n)){d=\"layout7\"==n?500:400;const e=\"layout7\"==n?t(this).find(\".ultp-dl-text\").width():a\u002F2;o?(t(this).find(\".ultp-dl-svg-con\").css({transform:`translateX(calc(${100*(r?-1:1)}% ${r?\"-\":\"+\"} ${e}px))`,transition:`transform ${d\u002F1e3}s ease`}),\"layout6\"==n?t(this).find(\".ultp-dl-text\").css({transform:`translateX(calc(${100*(r?1:-1)}% ${r?\"+\":\"-\"} ${e}px))`,transition:`transform ${d\u002F1e3}s ease`}):\"layout7\"==n&&t(this).find(\".ultp-dl-text\").css({transform:`translateX(calc(${(r?1:-1)*a}px))`,transition:`transform ${d\u002F1e3}s ease`})):(t(this).find(\".ultp-dl-svg-con\").css({transform:`translateX(calc(${100*(r?1:-1)}% ${r?\"+\":\"-\"} ${e}px))`,transition:`transform ${d\u002F1e3}s ease`}),\"layout6\"==n?t(this).find(\".ultp-dl-text\").css({transform:`translateX(calc(${100*(r?-1:1)}% ${r?\"-\":\"+\"} ${e}px))`,transition:`transform ${d\u002F1e3}s ease`}):\"layout7\"==n&&t(this).find(\".ultp-dl-text\").css({transform:`translateX(calc(${(r?-1:1)*a}px))`,transition:`transform ${d\u002F1e3}s ease`}))}!function(t,e,i){const o=new Date;o.setTime(o.getTime()+24*i*60*60*1e3);let s=\"expires=\"+o.toUTCString();document.cookie=t+\"=\"+e+\";\"+s+\";\"}(\"ultplocalDLMode\",o?\"ultpdark\":\"ultplight\",60),setTimeout((()=>{s.addClass(\"inactive\"),l.removeClass(\"inactive\"),o?(t(\".wp-block-ultimate-post-image .ultp-light-image-block\").addClass(\"inactive\"),t(\".wp-block-ultimate-post-image .ultp-dark-image-block\").removeClass(\"inactive\")):o||(t(\".wp-block-ultimate-post-image .ultp-dark-image-block\").addClass(\"inactive\"),t(\".wp-block-ultimate-post-image .ultp-light-image-block\").removeClass(\"inactive\")),t(\".ultp-dark-logo.wp-block-site-logo\").find(\"img\").attr(\"src\",o?c:p).attr(\"srcset\",o?c:u),t(\".ultp-dark-logo.wp-block-site-logo img\").css({content:\"initial\"}),t(`.ultp-dark-light-block-wrapper-content .ultp-${o?\"dark\":\"light\"}-con`).each((function(){t(this).closest(\".ultp-dl-after-before-con\").removeClass(\"inactive\")})),t(`.ultp-dark-light-block-wrapper-content .ultp-${o?\"light\":\"dark\"}-con`).each((function(){t(this).closest(\".ultp-dl-after-before-con\").addClass(\"inactive\")})),t(this).find(\".ultp-dl-svg-con\").removeAttr(\"style\"),t(this).find(\".ultp-dl-text\").removeAttr(\"style\"),function(){if(t(\"#ultp-preset-colors-style-inline-css\")&&t(\"#ultp-preset-colors-style-inline-css\")[0]){const e=t(\"#ultp-preset-colors-style-inline-css\")[0].sheet,i=e.cssRules[0].style.getPropertyValue(\"--postx_preset_Base_1_color\"),o=e.cssRules[0].style.getPropertyValue(\"--postx_preset_Base_2_color\"),s=e.cssRules[0].style.getPropertyValue(\"--postx_preset_Base_3_color\"),l=e.cssRules[0].style.getPropertyValue(\"--postx_preset_Contrast_1_color\"),n=e.cssRules[0].style.getPropertyValue(\"--postx_preset_Contrast_2_color\"),a=e.cssRules[0].style.getPropertyValue(\"--postx_preset_Contrast_3_color\");e.cssRules[0].style.setProperty(\"--postx_preset_Base_1_color\",l),e.cssRules[0].style.setProperty(\"--postx_preset_Base_2_color\",n),e.cssRules[0].style.setProperty(\"--postx_preset_Base_3_color\",a),e.cssRules[0].style.setProperty(\"--postx_preset_Contrast_1_color\",i),e.cssRules[0].style.setProperty(\"--postx_preset_Contrast_2_color\",o),e.cssRules[0].style.setProperty(\"--postx_preset_Contrast_3_color\",s)}}()}),d)})),e&&h()}(jQuery);\n\\ No newline at end of file\ndiff -ru \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fassets\u002Fjs\u002Fultp-video-support.js \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fassets\u002Fjs\u002Fultp-video-support.js\n--- \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fassets\u002Fjs\u002Fultp-video-support.js\t2026-02-23 09:39:46.000000000 +0000\n+++ \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fassets\u002Fjs\u002Fultp-video-support.js\t2026-02-25 11:53:26.000000000 +0000\n@@ -1,94 +1,297 @@\n (function ($) {\n \t(\"use strict\");\n+\n \t$(document).on(\"click\", \".ultp-video-icon\", function () {\n \t\tconst vid = $(this);\n+\t\tlet isAutoPlay =\n+\t\t\tvid.attr(\"enableautoplay\") === \"true\" ||\n+\t\t\tvid.attr(\"enableautoplay\") === \"1\";\n+\n \t\tconst parent = vid.parents(\".ultp-block-item\");\n \t\tconst blockImage = vid.closest(\".ultp-block-image\");\n-\t\tconst videoContent = blockImage.find(\"div.ultp-block-video-content\");\n \n-\t\tlet isAutoPlay = parent.find(\".ultp-video-icon\").attr(\"enableAutoPlay\");\n-\t\tlet enablePopup = parent.find(\".ultp-video-icon\").attr(\"enableVideoPopup\");\n-\t\tlet videoIframe = parent.find(\"iframe\");\n+\t\t\u002F\u002F Get settings from video icon attributes\n+\t\tlet enablePopup =\n+\t\t\tvid.attr(\"enableVideoPopup\") === \"true\" ||\n+\t\t\tvid.attr(\"enableVideoPopup\") === \"1\";\n \n-\t\tconst hasIframe = videoContent.find(\"iframe\").length > 0;\n-\t\tconst hasVideo = videoContent.find(\"video\").length > 0;\n+\t\t\u002F\u002F Fix: Get video content based on popup mode\n+\t\tlet videoContent;\n+\t\tif (enablePopup) {\n+\t\t\t\u002F\u002F For popup, look for modal video content\n+\t\t\tvideoContent = parent.find(\".ultp-video-modal .ultp-video-wrapper\");\n+\t\t\tif (videoContent.length === 0) {\n+\t\t\t\t\u002F\u002F Fallback to blockImage if modal not found\n+\t\t\t\tvideoContent = blockImage.find(\n+\t\t\t\t\t\"div.ultp-block-video-content .ultp-video-wrapper\"\n+\t\t\t\t);\n+\t\t\t}\n+\t\t} else {\n+\t\t\t\u002F\u002F For inline, use blockImage video content\n+\t\t\tvideoContent = blockImage.find(\n+\t\t\t\t\"div.ultp-block-video-content .ultp-video-wrapper\"\n+\t\t\t);\n+\t\t\tblockImage.find(\"div.ultp-block-video-content\").show();\n+\t\t}\n \n-\t\t\u002F\u002F Inline video display without popup\n-\t\tif (!enablePopup && (hasIframe || hasVideo)) {\n-\t\t\tblockImage.find(\"> a img\").hide();\n-\t\t\tvideoContent.css({ display: \"block\" });\n-\t\t\tvid.hide();\n+\t\t\u002F\u002F Check if video content exists\n+\t\tif (videoContent.length === 0) {\n+\t\t\tconsole.error(\"Video content wrapper not found\");\n+\t\t\treturn;\n+\t\t}\n \n-\t\t\tif (hasIframe || hasVideo) {\n-\t\t\t\tvideoIframe =\n-\t\t\t\t\tvideoContent.find(\"iframe\").length > 0\n-\t\t\t\t\t\t? videoContent.find(\"iframe\")\n-\t\t\t\t\t\t: videoContent.find(\"video\");\n+\t\tconst videoData = {\n+\t\t\turl: videoContent.data(\"video-url\"),\n+\t\t\tid: videoContent.data(\"video-id\"),\n+\t\t\ttype: videoContent.data(\"video-type\"),\n+\t\t\tautoplay: videoContent.data(\"autoplay\"),\n+\t\t\tloop: videoContent.data(\"loop\"),\n+\t\t\tmute: videoContent.data(\"mute\"),\n+\t\t\tcontrols: videoContent.data(\"controls\"),\n+\t\t\tpreload: videoContent.data(\"preload\"),\n+\t\t\tposter: videoContent.data(\"poster\"),\n+\t\t\tplaysinline: videoContent.data(\"playsinline\"),\n+\t\t\twidth: videoContent.data(\"width\"),\n+\t\t\theight: videoContent.data(\"height\"),\n+\t\t};\n \n-\t\t\t\tif (hasVideo && isAutoPlay) {\n-\t\t\t\t\tvideoContent.find(\"video\").trigger(\"play\");\n-\t\t\t\t}\n+\t\t\u002F\u002F Extract video ID if not available\n+\t\tlet videoId = videoData.id;\n+\t\tif (!videoId && videoData.url) {\n+\t\t\tswitch (videoData.type) {\n+\t\t\t\tcase \"youtube\":\n+\t\t\t\t\tconst youtubeRegex =\n+\t\t\t\t\t\t\u002F(?:youtu\\.be\\\u002F|youtube\\.com\\\u002F(?:embed\\\u002F|v\\\u002F|watch\\?v=|watch\\?.+&v=))((\\w|-){11})\u002F;\n+\t\t\t\t\tconst youtubeMatch = videoData.url.match(youtubeRegex);\n+\t\t\t\t\tvideoId = youtubeMatch ? youtubeMatch[1] : null;\n+\t\t\t\t\tbreak;\n+\t\t\t\tcase \"vimeo\":\n+\t\t\t\t\tconst vimeoRegex =\n+\t\t\t\t\t\t\u002Fvimeo\\.com\\\u002F(?:channels\\\u002F(?:\\w+\\\u002F)?|groups\\\u002F([^\\\u002F]*)\\\u002Fvideos\\\u002F|album\\\u002F(\\d+)\\\u002Fvideo\\\u002F|video\\\u002F|)(\\d+)(?:$|\\\u002F|\\?)\u002F;\n+\t\t\t\t\tconst vimeoMatch = videoData.url.match(vimeoRegex);\n+\t\t\t\t\tvideoId = vimeoMatch ? vimeoMatch[vimeoMatch.length - 1] : null;\n+\t\t\t\t\tbreak;\n+\t\t\t\tcase \"local\":\n+\t\t\t\t\tvideoId = \"local\";\n+\t\t\t\t\tbreak;\n \t\t\t}\n \t\t}\n \n-\t\t\u002F\u002F Handle video modal and autoplay\n-\t\tif (videoIframe.length) {\n-\t\t\tparent.find(\".ultp-video-modal\").addClass(\"modal_active\");\n-\n-\t\t\tconst videoSrc = videoIframe.attr(\"src\");\n-\t\t\tif (videoSrc && isAutoPlay) {\n-\t\t\t\tif (videoSrc.includes(\"dailymotion.com\u002Fplayer\")) {\n-\t\t\t\t\tvideoIframe.attr(\n-\t\t\t\t\t\t\"src\",\n-\t\t\t\t\t\tvideoSrc.includes(\"?autoplay=0\")\n-\t\t\t\t\t\t\t? videoSrc.replace(\"?autoplay=0\", \"&?autoplay=1\")\n-\t\t\t\t\t\t\t: `${videoSrc}?autoplay=1`\n-\t\t\t\t\t);\n-\t\t\t\t} else {\n-\t\t\t\t\tvideoIframe.attr(\"src\", `${videoSrc}&autoplay=1`);\n+\t\t\u002F\u002F Return early if no video ID found and it's not a local video\n+\t\tif (!videoId && videoData.type !== \"local\") {\n+\t\t\tconsole.error(`${videoData.type} video ID not found`);\n+\t\t\treturn;\n+\t\t}\n+\n+\t\t\u002F\u002F Fix: Clear existing video content before adding new\n+\t\tvideoContent.empty();\n+\n+\t\t\u002F\u002F Generate iframe based on video type\n+\t\tlet embedHtml = \"\";\n+\n+\t\tswitch (videoData.type) {\n+\t\t\tcase \"youtube\":\n+\t\t\t\tconst youtubeParams = new URLSearchParams({\n+\t\t\t\t\tautoplay: isAutoPlay ? \"1\" : \"0\",\n+\t\t\t\t\tloop: videoData.loop ? \"1\" : \"0\",\n+\t\t\t\t\tmute: videoData.mute || isAutoPlay ? \"1\" : \"0\",\n+\t\t\t\t\tcontrols: videoData.controls ? \"1\" : \"0\",\n+\t\t\t\t\tplaysinline: videoData.playsinline ? \"1\" : \"0\",\n+\t\t\t\t\tmodestbranding: \"1\",\n+\t\t\t\t\trel: \"0\",\n+\t\t\t\t});\n+\n+\t\t\t\tif (videoData.loop && videoId) {\n+\t\t\t\t\tyoutubeParams.append(\"playlist\", videoId);\n \t\t\t\t}\n+\n+\t\t\t\tembedHtml = `\u003Ciframe \n+                    src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F${videoId}?${youtubeParams.toString()}\" \n+                    width=\"${videoData.width || \"100%\"}\" \n+                    height=\"${videoData.height || \"315\"}\" \n+                    frameborder=\"0\" \n+                    allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" \n+                    allowfullscreen\n+                    loading=\"lazy\">\n+                \u003C\u002Fiframe>`;\n+\t\t\t\tbreak;\n+\n+\t\t\tcase \"vimeo\":\n+\t\t\t\tconst vimeoParams = new URLSearchParams({\n+\t\t\t\t\tautoplay: isAutoPlay ? \"1\" : \"0\",\n+\t\t\t\t\tloop: videoData.loop ? \"1\" : \"0\",\n+\t\t\t\t\tmuted: videoData.mute || isAutoPlay ? \"1\" : \"0\",\n+\t\t\t\t\tcontrols: videoData.controls ? \"1\" : \"0\",\n+\t\t\t\t\tplaysinline: videoData.playsinline ? \"1\" : \"0\",\n+\t\t\t\t\tdnt: \"1\",\n+\t\t\t\t});\n+\n+\t\t\t\tembedHtml = `\u003Ciframe \n+                    src=\"https:\u002F\u002Fplayer.vimeo.com\u002Fvideo\u002F${videoId}?${vimeoParams.toString()}\" \n+                    width=\"${videoData.width || \"100%\"}\" \n+                    height=\"${videoData.height || \"315\"}\" \n+                    frameborder=\"0\" \n+                    allow=\"autoplay; fullscreen; picture-in-picture\" \n+                    allowfullscreen\n+                    loading=\"lazy\">\n+                \u003C\u002Fiframe>`;\n+\t\t\t\tbreak;\n+\n+\t\t\tcase \"local\":\n+\t\t\t\tconst videoFormat = videoData.url\n+\t\t\t\t\t.split(\".\")\n+\t\t\t\t\t.pop()\n+\t\t\t\t\t.toLowerCase()\n+\t\t\t\t\t.split(\"?\")[0];\n+\t\t\t\tconst formats = {\n+\t\t\t\t\tmp4: \"mp4\",\n+\t\t\t\t\twebm: \"webm\",\n+\t\t\t\t\togg: \"ogg\",\n+\t\t\t\t\tavi: \"mp4\",\n+\t\t\t\t\tmov: \"mp4\",\n+\t\t\t\t};\n+\t\t\t\tconst mimeType = formats[videoFormat] || \"mp4\";\n+\n+\t\t\t\tconst attributes = [];\n+\t\t\t\tif (isAutoPlay) {\n+\t\t\t\t\tattributes.push(\"autoplay\");\n+\t\t\t\t\tattributes.push(\"muted\");\n+\t\t\t\t}\n+\t\t\t\tif (videoData.loop) attributes.push(\"loop\");\n+\t\t\t\tif (videoData.controls) attributes.push(\"controls\");\n+\t\t\t\tif (videoData.playsinline) attributes.push(\"playsinline\");\n+\t\t\t\tif (videoData.poster) attributes.push(`poster=\"${videoData.poster}\"`);\n+\t\t\t\tif (videoData.preload)\n+\t\t\t\t\tattributes.push(`preload=\"${videoData.preload}\"`);\n+\n+\t\t\t\tembedHtml = `\u003Cvideo ${attributes.join(\" \")} \n+                    width=\"${videoData.width || \"100%\"}\" \n+                    height=\"${videoData.height || \"auto\"}\" \n+                    class=\"ultp-video-html\">\n+                    \u003Csource src=\"${videoData.url}\" type=\"video\u002F${mimeType}\">\n+                    \u003Cp>Your browser does not support the video tag. \n+                        \u003Ca href=\"${\n+\t\t\t\t\t\t\t\t\t\t\t\t\tvideoData.url\n+\t\t\t\t\t\t\t\t\t\t\t\t}\" target=\"_blank\">Download the video\u003C\u002Fa>\n+                    \u003C\u002Fp>\n+                \u003C\u002Fvideo>`;\n+\t\t\t\tbreak;\n+\n+\t\t\tdefault:\n+\t\t\t\tconsole.error(`Unsupported video type: ${videoData.type}`);\n+\t\t\t\treturn;\n+\t\t}\n+\n+\t\t\u002F\u002F Return early if no embed HTML generated\n+\t\tif (!embedHtml) {\n+\t\t\tconsole.error(\"Failed to generate video embed\");\n+\t\t\treturn;\n+\t\t}\n+\n+\t\t\u002F\u002F Append the generated embed HTML\n+\t\tvideoContent.html(embedHtml);\n+\n+\t\t\u002F\u002F Handle popup vs inline display\n+\t\tif (enablePopup) {\n+\t\t\t\u002F\u002F Fix: Show video in modal popup\n+\t\t\tconst modal = parent.find(\".ultp-video-modal\");\n+\t\t\tif (modal.length > 0) {\n+\t\t\t\tmodal.addClass(\"modal_active\");\n+\n+\t\t\t\t\u002F\u002F Fix: Show modal content and hide loader\n+\t\t\t\tmodal.find(\".ultp-video-modal__content\").show();\n+\t\t\t\t$(\".ultp-loader-container\").hide();\n+\n+\t\t\t\t\u002F\u002F Fix: Focus management for accessibility\n+\t\t\t\tmodal.attr(\"tabindex\", \"-1\").focus();\n+\t\t\t} else {\n+\t\t\t\tconsole.error(\"Video modal not found\");\n+\t\t\t\treturn;\n \t\t\t}\n+\t\t} else {\n+\t\t\t\u002F\u002F Inline video display without popup\n+\t\t\tblockImage.find(\"> a img\").hide();\n+\t\t\tvideoContent.parent().css({ display: \"block\" });\n+\t\t\tvid.hide();\n+\t\t}\n+\n+\t\t\u002F\u002F Auto-play handling for local videos\n+\t\tconst videoElement = videoContent.find(\"video\");\n+\t\tif (isAutoPlay && videoElement.length > 0) {\n+\t\t\tsetTimeout(() => {\n+\t\t\t\tvideoElement[0]\n+\t\t\t\t\t.play()\n+\t\t\t\t\t.catch((e) => console.log(\"Autoplay prevented:\", e));\n+\t\t\t}, 500);\n+\t\t}\n \n-\t\t\t\u002F\u002F Hide loader on video load\n-\t\t\tvideoIframe.on(\"load\", function () {\n+\t\t\u002F\u002F Hide loader when video loads\n+\t\tconst allVideoElements = videoContent.find(\"iframe, video\");\n+\t\tif (allVideoElements.length) {\n+\t\t\tallVideoElements.on(\"load loadeddata canplay\", function () {\n \t\t\t\t$(\".ultp-loader-container\").hide();\n \t\t\t});\n-\t\t} else {\n-\t\t\tparent.find(\".ultp-video-modal\").addClass(\"modal_active\");\n-\t\t\t$(\".ultp-video-modal.modal_active\").find(\"video\").trigger(\"play\");\n \t\t}\n \t});\n \n-\t\u002F\u002F Close On Click\n-\t$(document).on(\"click\", \".ultp-video-close\", function () {\n-\t\tcloseVideoModal();\n+\t\u002F\u002F Fix: Close modal on click (improved)\n+\t$(document).on(\"click\", \".ultp-video-close, .ultp-video-modal\", function (e) {\n+\t\t\u002F\u002F Only close if clicking the close button or modal backdrop\n+\t\tif ($(this).hasClass(\"ultp-video-close\") || e.target === this) {\n+\t\t\tcloseVideoModal();\n+\t\t}\n+\t});\n+\n+\t\u002F\u002F Prevent modal close when clicking modal content\n+\t$(document).on(\"click\", \".ultp-video-modal__content\", function (e) {\n+\t\te.stopPropagation();\n \t});\n-\t\u002F\u002F Escape for Close Modal\n+\n+\t\u002F\u002F Close modal on escape key\n \t$(document).on(\"keyup\", function (e) {\n-\t\tif (e.key == \"Escape\") {\n+\t\tif (e.key === \"Escape\" || e.keyCode === 27) {\n \t\t\tcloseVideoModal();\n \t\t}\n \t});\n+\n+\t\u002F\u002F Fix: Improved close modal function\n \tfunction closeVideoModal() {\n-\t\tif ($(\".ultp-video-modal.modal_active\").length > 0) {\n-\t\t\tlet videoIframe = $(\".ultp-video-modal.modal_active\").find(\"iframe\");\n+\t\tconst activeModal = $(\".ultp-video-modal.modal_active\");\n+\t\tif (activeModal.length > 0) {\n+\t\t\tconst videoIframe = activeModal.find(\"iframe\");\n+\t\t\tconst videoElement = activeModal.find(\"video\");\n+\n+\t\t\t\u002F\u002F Stop iframe videos\n \t\t\tif (videoIframe.length) {\n-\t\t\t\tconst videoSrc = videoIframe.attr(\"src\");\n-\t\t\t\tif (videoSrc) {\n-\t\t\t\t\tlet stopVideo = \"\";\n-\t\t\t\t\tif (videoSrc.includes(\"dailymotion.com\u002Fplayer\")) {\n-\t\t\t\t\t\tstopVideo = videoSrc.replaceAll(\"&?autoplay=1\", \"?autoplay=0\");\n-\t\t\t\t\t} else {\n-\t\t\t\t\t\tstopVideo = videoSrc.replaceAll(\"&autoplay=1\", \"\");\n-\t\t\t\t\t}\n-\t\t\t\t\tif (stopVideo) {\n-\t\t\t\t\t\tvideoIframe.attr(\"src\", stopVideo);\n+\t\t\t\tvideoIframe.each(function () {\n+\t\t\t\t\tconst iframe = $(this);\n+\t\t\t\t\tconst videoSrc = iframe.attr(\"src\");\n+\t\t\t\t\tif (videoSrc) {\n+\t\t\t\t\t\t\u002F\u002F Force stop by removing and re-adding src\n+\t\t\t\t\t\tiframe.attr(\"src\", \"\");\n+\t\t\t\t\t\tsetTimeout(() => {\n+\t\t\t\t\t\t\tiframe.remove();\n+\t\t\t\t\t\t}, 100);\n \t\t\t\t\t}\n-\t\t\t\t}\n-\t\t\t} else {\n-\t\t\t\t$(\".ultp-video-modal.modal_active\").find(\"video\").trigger(\"pause\");\n+\t\t\t\t});\n+\t\t\t}\n+\n+\t\t\t\u002F\u002F Stop HTML5 videos\n+\t\t\tif (videoElement.length) {\n+\t\t\t\tvideoElement.each(function () {\n+\t\t\t\t\tthis.pause();\n+\t\t\t\t\tthis.currentTime = 0;\n+\t\t\t\t});\n \t\t\t}\n-\t\t\t$(\".ultp-video-modal\").removeClass(\"modal_active\");\n+\n+\t\t\t\u002F\u002F Hide modal and clear content\n+\t\t\tactiveModal.removeClass(\"modal_active\");\n+\t\t\tactiveModal.find(\".ultp-video-wrapper\").empty();\n+\n+\t\t\t\u002F\u002F Return focus to the video icon\n+\t\t\tactiveModal.closest(\".ultp-block-item\").find(\".ultp-video-icon\").focus();\n \t\t}\n \t}\n+\n+\t\u002F\u002F ...existing code...\n })(jQuery);\ndiff -ru \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fclasses\u002FBlocks.php \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fclasses\u002FBlocks.php\n--- \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fclasses\u002FBlocks.php\t2026-02-23 09:39:46.000000000 +0000\n+++ \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fclasses\u002FBlocks.php\t2026-02-25 11:53:26.000000000 +0000\n@@ -38,6 +38,8 @@\n \n \t\tadd_action( 'wp_ajax_ultp_share_count', array( $this, 'ultp_share_count_callback' ) ); \u002F\u002F share Count save .\n \t\tadd_action( 'wp_ajax_nopriv_ultp_share_count', array( $this, 'ultp_share_count_callback' ) ); \u002F\u002F share Count save .\n+\t\tadd_action( 'wp_ajax_ultp_get_nonce', array( $this, 'ultp_get_nonce_callback' ) ); \u002F\u002F Nonce Generating Callback\n+\t\tadd_action( 'wp_ajax_nopriv_ultp_get_nonce', array( $this, 'ultp_get_nonce_callback' ) ); \u002F\u002F Nonce Generating Callback\n \t}\n \n \t\u002F**\n@@ -387,7 +389,7 @@\n \t\t$taxonomy = isset( $_POST['taxonomy'] ) ? ultimate_post()->ultp_rest_sanitize_params( $_POST['taxonomy'] ) : '[]';\n \n \t\t$author   = isset( $_POST['author'] ) ? ultimate_post()->ultp_rest_sanitize_params( $_POST['author'] ) : false;\n-\t\t$orderby  = isset( $_POST['orderby'] ) ? sanitize_text_field( $_POST['orderby'] ) : 'title'; \u002F\u002F default orderbyt title requested from support\n+\t\t$orderby  = isset( $_POST['orderby'] ) ? sanitize_text_field( $_POST['orderby'] ) : ''; \u002F\u002F default orderbyt title requested from support\n \t\t$order    = isset( $_POST['order'] ) ? sanitize_text_field( $_POST['order'] ) : 'DESC';\n \t\t$search   = isset( $_POST['search'] ) ? sanitize_text_field( $_POST['search'] ) : '';\n \t\t$adv_sort = isset( $_POST['adv_sort'] ) ? sanitize_text_field( $_POST['adv_sort'] ) : '';\n@@ -602,10 +604,12 @@\n \t\t\t\t\t\t\t$value['attrs']['queryTaxValue'] = wp_json_encode( $taxonomy );\n \t\t\t\t\t\t\t$value['attrs']['queryRelation'] = 'AND';\n \t\t\t\t\t\t\t$value['attrs']['queryAuthor']   = $adv_filter_data['author'];\n-\t\t\t\t\t\t\t$value['attrs']['queryOrderBy']  = $adv_filter_data['orderby'];\n \t\t\t\t\t\t\t$value['attrs']['queryOrder']    = $adv_filter_data['order'];\n \t\t\t\t\t\t\t$value['attrs']['querySearch']   = $adv_filter_data['search'];\n \t\t\t\t\t\t\t$value['attrs']['queryQuick']    = $adv_filter_data['adv_sort'];\n+\t\t\t\t\t\t\tif ( ! empty( $adv_filter_data['orderby'] ) ) {\n+\t\t\t\t\t\t\t\t$value['attrs']['queryOrderBy'] = $adv_filter_data['orderby'];\n+\t\t\t\t\t\t\t}\n \t\t\t\t\t\t} else {\n \t\t\t\t\t\t\t$value['attrs']['queryTaxValue'] = wp_json_encode( array( $taxonomy ) );\n \t\t\t\t\t\t}\n@@ -634,7 +638,7 @@\n \n \t\t\t\t\tif ( $filter_attributes['isAdv'] ) {\n \t\t\t\t\t\t$filter_attributes['queryAuthor']  = $adv_filter_data['author'];\n-\t\t\t\t\t\t$filter_attributes['queryOrderBy'] = $adv_filter_data['orderby'];\n+\t\t\t\t\t\t$filter_attributes['queryOrderBy'] = ! empty( $adv_filter_data['orderby'] ) ? $adv_filter_data['orderby'] : $value['attrs']['queryOrderBy'];\n \t\t\t\t\t\t$filter_attributes['queryOrder']   = $adv_filter_data['order'];\n \t\t\t\t\t\t$filter_attributes['querySearch']  = $adv_filter_data['search'];\n \t\t\t\t\t\t$filter_attributes['queryQuick']   = $adv_filter_data['adv_sort'];\n@@ -704,4 +708,20 @@\n \n \t\treturn $wraper_after;\n \t}\n+\n+\t\u002F**\n+\t * Nonce Generation Callback\n+\t *\n+\t * @since v.5.0.6\n+\t *\n+\t * @return STRING The AJAX response.\n+\t *\u002F\n+\tpublic function ultp_get_nonce_callback() {\n+\t\tnocache_headers();\n+\t\twp_send_json_success(\n+\t\t\tarray(\n+\t\t\t\t'nonce' => wp_create_nonce( 'ultp-nonce' ),\n+\t\t\t)\n+\t\t);\n+\t}\n }\ndiff -ru \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fclasses\u002FFunctions.php \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fclasses\u002FFunctions.php\n--- \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fclasses\u002FFunctions.php\t2026-02-23 09:39:46.000000000 +0000\n+++ \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fclasses\u002FFunctions.php\t2026-02-25 11:53:26.000000000 +0000\n@@ -674,10 +674,10 @@\n \t * @return ARRAY\n \t *\u002F\n \tpublic function get_query( $attr ) {\n-\t\t$builder   = isset( $attr['builder'] ) ? $attr['builder'] : '';\n-\t\t$post_type = isset( $attr['queryType'] ) ? $attr['queryType'] : 'post';\n-\t\t$get_post_type = isset($attr['queryPostType']) ? $attr['queryPostType'] : '';\n-\t\tif($post_type != 'archiveBuilder' && !empty($get_post_type)  && $post_type == 'customPostType') {\n+\t\t$builder       = isset( $attr['builder'] ) ? $attr['builder'] : '';\n+\t\t$post_type     = isset( $attr['queryType'] ) ? $attr['queryType'] : 'post';\n+\t\t$get_post_type = isset( $attr['queryPostType'] ) ? $attr['queryPostType'] : '';\n+\t\tif ( $post_type != 'archiveBuilder' && ! empty( $get_post_type ) && $post_type == 'customPostType' ) {\n \t\t\t$post_type = $get_post_type;\n \t\t}\n \n@@ -850,7 +850,7 @@\n \n \t\t$query_args = array(\n \t\t\t'posts_per_page' => $query_number,\n-\t\t\t'post_type'      => is_array( $post_type ) && ! empty( $post_type ) ? $post_type : ( 'archiveBuilder' == $post_type ? 'post' : ( is_string( $post_type ) ? is_array(json_decode( $post_type )) ? json_decode( $post_type ) : $post_type   : $post_type ) ),\n+\t\t\t'post_type'      => is_array( $post_type ) && ! empty( $post_type ) ? $post_type : ( 'archiveBuilder' == $post_type ? 'post' : ( is_string( $post_type ) ? is_array( json_decode( $post_type ) ) ? json_decode( $post_type ) : $post_type : $post_type ) ),\n \t\t\t'orderby'        => isset( $attr['queryOrderBy'] ) ? $attr['queryOrderBy'] : 'date',\n \t\t\t'order'          => isset( $attr['queryOrder'] ) ? $attr['queryOrder'] : 'desc',\n \t\t\t'paged'          => $paged,\n@@ -1317,8 +1317,8 @@\n \tpublic function get_svg_icon( $ultp_icons = '' ) {\n \t\t$svg = '';\n \t\tif ( $ultp_icons ) {\n-\t\t\t$icon = $this->svg_icon_compatibility($ultp_icons);\n-\t\t\t$svg = $this->get_path_file_contents( ULTP_PATH . 'assets\u002Fimg\u002Ficonpack\u002F' . $icon . '.svg' );\n+\t\t\t$icon = $this->svg_icon_compatibility( $ultp_icons );\n+\t\t\t$svg  = $this->get_path_file_contents( ULTP_PATH . 'assets\u002Fimg\u002Ficonpack\u002F' . $icon . '.svg' );\n \t\t}\n \t\treturn $svg;\n \t}\n@@ -1696,9 +1696,72 @@\n \t * @param ARRAY | string $size Size for oEmbed.\n \t * @return STRING | false Video embed HTML or false on failure.\n \t *\u002F\n-\tpublic function get_embeded_video( $url, $autoPlay, $loop, $mute, $playback, $preload, $poster, $inline, $size ) {\n+\tpublic function get_embeded_video( $url, $autoPlay, $loop, $mute, $playback, $preload, $poster, $inline, $size, $location = '' ) {\n \t\t$vidAutoPlay = $vidloop = $vidloop = $vidmute = $vidplayback = $vidPoster = $vidInline = '';\n \n+\t\t$video_type = '';\n+\t\t\u002F\u002F Determine video type\n+\t\t$video_type = 'local';\n+\t\tif ( strpos( $url, 'youtube.com' ) !== false || strpos( $url, 'youtu.be' ) !== false ) {\n+\t\t\t$video_type = 'youtube';\n+\t\t} elseif ( strpos( $url, 'vimeo.com' ) !== false ) {\n+\t\t\t$video_type = 'vimeo';\n+\t\t}\n+\n+\t\t\u002F\u002F Get poster URL\n+\t\t$poster_url = '';\n+\t\tif ( is_array( $poster ) && isset( $poster['url'] ) ) {\n+\t\t\t$poster_url = $poster['url'];\n+\t\t} elseif ( is_string( $poster ) ) {\n+\t\t\t$poster_url = $poster;\n+\t\t}\n+\n+\t\t\u002F\u002F Prepare size attributes\n+\t\t$width  = is_array( $size ) && isset( $size['width'] ) ? $size['width'] : 560;\n+\t\t$height = is_array( $size ) && isset( $size['height'] ) ? $size['height'] : 315;\n+\n+\t\t$video_id = '';\n+\n+\t\tif ( $url ) {\n+\t\t\t$regex = '\u002F(?:youtu\\.be\\\u002F|youtube\\.com\\\u002F(?:embed\\\u002F|v\\\u002F|watch\\?v=|watch\\?.+&v=))((\\w|-){11})\u002F';\n+\t\t\tif ( preg_match( $regex, $url, $matches ) ) {\n+\t\t\t\t$video_id = $matches[1];\n+\t\t\t}\n+\t\t}\n+\n+\t\t\u002F\u002F Create data attributes for lazy loading\n+\t\t$data_attrs = array(\n+\t\t\t'data-video-url'   => is_scalar( $url ) ? esc_attr( $url ) : '',\n+\t\t\t'data-video-type'  => is_scalar( $video_type ) ? esc_attr( $video_type ) : '',\n+\t\t\t'data-autoplay'    => ! empty( $autoPlay ) ? '1' : '0',\n+\t\t\t'data-loop'        => ! empty( $loop ) ? '1' : '0',\n+\t\t\t'data-mute'        => ! empty( $mute ) ? '1' : '0',\n+\t\t\t'data-controls'    => ! empty( $playback ) ? '1' : '0',\n+\t\t\t'data-preload'     => is_scalar( $preload ) ? esc_attr( $preload ) : '',\n+\t\t\t'data-poster'      => is_scalar( $poster_url ) ? esc_attr( $poster_url ) : '',\n+\t\t\t'data-playsinline' => ! empty( $inline ) ? '1' : '0',\n+\t\t\t'data-width'       => is_scalar( $width ) ? esc_attr( $width ) : '',\n+\t\t\t'data-height'      => is_scalar( $height ) ? esc_attr( $height ) : '',\n+\t\t\t'data-video-id'    => is_scalar( $video_id ) ? esc_attr( $video_id ) : '',\n+\t\t);\n+\n+\t\t$data_string = implode(\n+\t\t\t' ',\n+\t\t\tarray_map(\n+\t\t\t\tfunction ( $key, $value ) {\n+\t\t\t\t\treturn $key . '=\"' . $value . '\"';\n+\t\t\t\t},\n+\t\t\t\tarray_keys( $data_attrs ),\n+\t\t\t\t$data_attrs\n+\t\t\t)\n+\t\t);\n+\n+\t\t$html = '\u003Cdiv class=\"ultp-video-wrapper ultp-embaded-video\"' . $data_string . '>\u003C\u002Fdiv>';\n+\n+\t\tif ( $location == '' ) {\n+\t\t\treturn $html;\n+\t\t}\n+\n \t\tif ( $autoPlay ) {\n \t\t\t$vidAutoPlay = 'autoplay';\n \t\t}\n@@ -2708,230 +2771,230 @@\n \t\t\u002F\u002F Get icon aliases mapping\n \t\t$icon_aliases = array(\n \t\t\t\u002F\u002F Arrow aliases\n-\t\t\t'angle_bottom_left_line' => 'arrow_down_bottom_left_solid',\n-\t\t\t'angle_bottom_right_line' => 'arrow_down_bottom_right_solid',\n-\t\t\t'angle_top_left_line' => 'arrow_up_top_left_solid',\n-\t\t\t'angle_top_right_line' => 'arrow_up_top_right_solid',\n-\t\t\t'rightFillAngle' => 'right_triangle_angle_play_arrow_forward_solid',\n-\t\t\t'leftAngle2' => 'arrow_left_previous_backward_chevron_line',\n-\t\t\t'rightAngle2' => 'arrow_right_next_forward_chevron_line',\n-\t\t\t'collapse_bottom_line' => 'arrow_down_dropdown_maximize_chevron_line',\n-\t\t\t'arrowUp2' => 'arrow_up_dropdown_minimize_chevron_line',\n-\t\t\t'longArrowUp2' => 'long_arrow_up_top_increase_solid',\n-\t\t\t\n+\t\t\t'angle_bottom_left_line'   => 'arrow_down_bottom_left_solid',\n+\t\t\t'angle_bottom_right_line'  => 'arrow_down_bottom_right_solid',\n+\t\t\t'angle_top_left_line'      => 'arrow_up_top_left_solid',\n+\t\t\t'angle_top_right_line'     => 'arrow_up_top_right_solid',\n+\t\t\t'rightFillAngle'           => 'right_triangle_angle_play_arrow_forward_solid',\n+\t\t\t'leftAngle2'               => 'arrow_left_previous_backward_chevron_line',\n+\t\t\t'rightAngle2'              => 'arrow_right_next_forward_chevron_line',\n+\t\t\t'collapse_bottom_line'     => 'arrow_down_dropdown_maximize_chevron_line',\n+\t\t\t'arrowUp2'                 => 'arrow_up_dropdown_minimize_chevron_line',\n+\t\t\t'longArrowUp2'             => 'long_arrow_up_top_increase_solid',\n+\n \t\t\t\u002F\u002F Circle arrow aliases\n-\t\t\t'arrow_left_circle_line' => 'arrow_left_backward_circle_line',\n+\t\t\t'arrow_left_circle_line'   => 'arrow_left_backward_circle_line',\n \t\t\t'arrow_bottom_circle_line' => 'arrow_down_bottom_downward_circle_line',\n-\t\t\t'arrow_right_circle_line' => 'arrow_right_forward_circle_line',\n-\t\t\t'arrow_top_circle_line' => 'arrow_up_top_upward_circle_line',\n-\t\t\t\n+\t\t\t'arrow_right_circle_line'  => 'arrow_right_forward_circle_line',\n+\t\t\t'arrow_top_circle_line'    => 'arrow_up_top_upward_circle_line',\n+\n \t\t\t\u002F\u002F Close\u002FCross aliases\n-\t\t\t'close_circle_line' => 'cross_close_x_minimize_circle_line',\n-\t\t\t'close_line' => 'cross_x_close_minimize_line',\n-\t\t\t\n+\t\t\t'close_circle_line'        => 'cross_close_x_minimize_circle_line',\n+\t\t\t'close_line'               => 'cross_x_close_minimize_line',\n+\n \t\t\t\u002F\u002F Direction aliases\n-\t\t\t'arrow_down_line' => 'arrow_down_bottom_downward_line',\n-\t\t\t'leftArrowLg' => 'arrow_left_backward_line',\n-\t\t\t'rightArrowLg' => 'arrow_left_forward_line',\n-\t\t\t'arrow_up_line' => 'long_arrow_up_top_increase_line',\n-\t\t\t\n+\t\t\t'arrow_down_line'          => 'arrow_down_bottom_downward_line',\n+\t\t\t'leftArrowLg'              => 'arrow_left_backward_line',\n+\t\t\t'rightArrowLg'             => 'arrow_left_forward_line',\n+\t\t\t'arrow_up_line'            => 'long_arrow_up_top_increase_line',\n+\n \t\t\t\u002F\u002F Solid direction aliases\n-\t\t\t'down_solid' => 'arrow_down_bottom_downward_circle_solid',\n-\t\t\t'right_solid' => 'arrow_right_forward_circle_solid',\n-\t\t\t'left_solid' => 'arrow_left_backward_circle_solid',\n-\t\t\t'up_solid' => 'arrow_up_top_upward_circle_solid',\n-\t\t\t\n+\t\t\t'down_solid'               => 'arrow_down_bottom_downward_circle_solid',\n+\t\t\t'right_solid'              => 'arrow_right_forward_circle_solid',\n+\t\t\t'left_solid'               => 'arrow_left_backward_circle_solid',\n+\t\t\t'up_solid'                 => 'arrow_up_top_upward_circle_solid',\n+\n \t\t\t\u002F\u002F Move aliases\n-\t\t\t'bottom_right_line' => 'arrow_move_up_right_line',\n-\t\t\t'bottom_left_line' => 'arrow_move_up_left_line',\n-\t\t\t'top_left_angle_line' => 'arrow_move_down_left_line',\n-\t\t\t'top_right_line' => 'arrow_move_down_right_line',\n-\t\t\t\n+\t\t\t'bottom_right_line'        => 'arrow_move_up_right_line',\n+\t\t\t'bottom_left_line'         => 'arrow_move_up_left_line',\n+\t\t\t'top_left_angle_line'      => 'arrow_move_down_left_line',\n+\t\t\t'top_right_line'           => 'arrow_move_down_right_line',\n+\n \t\t\t\u002F\u002F Utility aliases\n-\t\t\t'at_line' => 'at_a_mail_line',\n-\t\t\t'refresh' => 'refresh_reset_cycle_loop_infinity_line',\n-\t\t\t'cart_line' => 'shopping_cart_line',\n-\t\t\t'cart_solid' => 'add_plus_shopping_cart_solid',\n-\t\t\t'cog_line' => 'settings_tool_function_line',\n-\t\t\t'cog_solid' => 'settings_tool_function_solid',\n-\t\t\t'clock' => 'clock_reading_time_1_line',\n-\t\t\t'book' => 'book_line',\n-\t\t\t'download_line' => 'download_1_line',\n-\t\t\t'download_solid' => 'download_1_solid',\n-\t\t\t'downlod_bottom_solid' => 'download_1_solid',\n-\t\t\t\n+\t\t\t'at_line'                  => 'at_a_mail_line',\n+\t\t\t'refresh'                  => 'refresh_reset_cycle_loop_infinity_line',\n+\t\t\t'cart_line'                => 'shopping_cart_line',\n+\t\t\t'cart_solid'               => 'add_plus_shopping_cart_solid',\n+\t\t\t'cog_line'                 => 'settings_tool_function_line',\n+\t\t\t'cog_solid'                => 'settings_tool_function_solid',\n+\t\t\t'clock'                    => 'clock_reading_time_1_line',\n+\t\t\t'book'                     => 'book_line',\n+\t\t\t'download_line'            => 'download_1_line',\n+\t\t\t'download_solid'           => 'download_1_solid',\n+\t\t\t'downlod_bottom_solid'     => 'download_1_solid',\n+\n \t\t\t\u002F\u002F Visibility aliases\n-\t\t\t'eye' => 'view_count_show_visible_eye_open_2_line',\n-\t\t\t'hidden_line' => 'hidden_hide_invisible_line',\n-\t\t\t\n+\t\t\t'eye'                      => 'view_count_show_visible_eye_open_2_line',\n+\t\t\t'hidden_line'              => 'hidden_hide_invisible_line',\n+\n \t\t\t\u002F\u002F Location aliases\n-\t\t\t'home_line' => 'home_house_line',\n-\t\t\t'home_solid' => 'home_house_solid',\n-\t\t\t'location_line' => 'location_gps_map_line',\n-\t\t\t'location_solid' => 'location_gps_map_solid',\n-\t\t\t\n+\t\t\t'home_line'                => 'home_house_line',\n+\t\t\t'home_solid'               => 'home_house_solid',\n+\t\t\t'location_line'            => 'location_gps_map_line',\n+\t\t\t'location_solid'           => 'location_gps_map_solid',\n+\n \t\t\t\u002F\u002F Emotion aliases\n-\t\t\t'love_line' => 'heart_love_wishlist_favourite_line',\n-\t\t\t'love_solid' => 'heart_love_wishlist_favourite_solid',\n-\t\t\t\n+\t\t\t'love_line'                => 'heart_love_wishlist_favourite_line',\n+\t\t\t'love_solid'               => 'heart_love_wishlist_favourite_solid',\n+\n \t\t\t\u002F\u002F Media aliases\n-\t\t\t'play_line' => 'play_media_video_circle_line',\n-\t\t\t'videoplay' => 'right_triangle_angle_play_arrow_forward_solid',\n-\t\t\t'left_angle_solid' => 'left_triangle_angle_arrow_backward_solid',\n-\t\t\t\n+\t\t\t'play_line'                => 'play_media_video_circle_line',\n+\t\t\t'videoplay'                => 'right_triangle_angle_play_arrow_forward_solid',\n+\t\t\t'left_angle_solid'         => 'left_triangle_angle_arrow_backward_solid',\n+\n \t\t\t\u002F\u002F Shape aliases\n-\t\t\t'caretArrow' => 'caret_up_top_triangle_angle_arrow_upward_solid',\n-\t\t\t'rectangle_solid' => 'square_rounded_solid',\n-\t\t\t'triangle_solid' => 'triangle_shape_solid',\n-\t\t\t\n+\t\t\t'caretArrow'               => 'caret_up_top_triangle_angle_arrow_upward_solid',\n+\t\t\t'rectangle_solid'          => 'square_rounded_solid',\n+\t\t\t'triangle_solid'           => 'triangle_shape_solid',\n+\n \t\t\t\u002F\u002F Status aliases\n-\t\t\t'restriction_line' => 'restriction_no_stop_line',\n-\t\t\t'right_circle_line' => 'correct_save_check_circle_line',\n-\t\t\t'save_line' => 'correct_save_check_line',\n-\t\t\t'search_line' => 'search_magnify_line',\n-\t\t\t'search_solid' => 'search_magnify_solid',\n-\t\t\t\n+\t\t\t'restriction_line'         => 'restriction_no_stop_line',\n+\t\t\t'right_circle_line'        => 'correct_save_check_circle_line',\n+\t\t\t'save_line'                => 'correct_save_check_line',\n+\t\t\t'search_line'              => 'search_magnify_line',\n+\t\t\t'search_solid'             => 'search_magnify_solid',\n+\n \t\t\t\u002F\u002F Warning aliases\n-\t\t\t'notice_circle_solid' => 'warning_circle_solid',\n-\t\t\t'notice_solid' => 'warning_triangle_solid',\n-\t\t\t'warning_circle_line' => 'warning_circle_line',\n-\t\t\t'warning_triangle_line' => 'warning_triangle_line',\n-\t\t\t\n+\t\t\t'notice_circle_solid'      => 'warning_circle_solid',\n+\t\t\t'notice_solid'             => 'warning_triangle_solid',\n+\t\t\t'warning_circle_line'      => 'warning_circle_line',\n+\t\t\t'warning_triangle_line'    => 'warning_triangle_line',\n+\n \t\t\t\u002F\u002F Category aliases\n-\t\t\t'cat1' => 'category_file_documents_1_solid',\n-\t\t\t'cat2' => 'category_book_line',\n-\t\t\t'cat3' => 'category_file_documents_2_line',\n-\t\t\t'cat4' => 'category_file_documents_3_line',\n-\t\t\t'cat5' => 'category_file_documents_3_solid',\n-\t\t\t'cat6' => 'category_file_documents_4_line',\n-\t\t\t'cat7' => 'category_book_line',\n-\t\t\t\n+\t\t\t'cat1'                     => 'category_file_documents_1_solid',\n+\t\t\t'cat2'                     => 'category_book_line',\n+\t\t\t'cat3'                     => 'category_file_documents_2_line',\n+\t\t\t'cat4'                     => 'category_file_documents_3_line',\n+\t\t\t'cat5'                     => 'category_file_documents_3_solid',\n+\t\t\t'cat6'                     => 'category_file_documents_4_line',\n+\t\t\t'cat7'                     => 'category_book_line',\n+\n \t\t\t\u002F\u002F Comment aliases\n-\t\t\t'commentCount1' => 'messege_comment_1_line',\n-\t\t\t'commentCount2' => 'messege_comment_3_solid',\n-\t\t\t'commentCount3' => 'messege_comment_3_line',\n-\t\t\t'commentCount4' => 'messege_comment_6_line',\n-\t\t\t'commentCount5' => 'messege_comment_7_line',\n-\t\t\t'commentCount6' => 'messege_comment_8_line',\n-\t\t\t'comment' => 'messege_comment_4_line',\n-\t\t\t\n+\t\t\t'commentCount1'            => 'messege_comment_1_line',\n+\t\t\t'commentCount2'            => 'messege_comment_3_solid',\n+\t\t\t'commentCount3'            => 'messege_comment_3_line',\n+\t\t\t'commentCount4'            => 'messege_comment_6_line',\n+\t\t\t'commentCount5'            => 'messege_comment_7_line',\n+\t\t\t'commentCount6'            => 'messege_comment_8_line',\n+\t\t\t'comment'                  => 'messege_comment_4_line',\n+\n \t\t\t\u002F\u002F Date aliases\n-\t\t\t'date1' => 'calendar_date_4_line',\n-\t\t\t'date2' => 'calendar_date_1_solid',\n-\t\t\t'date3' => 'calendar_date_2_line',\n-\t\t\t'date4' => 'calendar_date_4_solid',\n-\t\t\t'date5' => 'calendar_date_3_line',\n-\t\t\t'calendar' => 'calendar_date_3_line',\n-\t\t\t\n+\t\t\t'date1'                    => 'calendar_date_4_line',\n+\t\t\t'date2'                    => 'calendar_date_1_solid',\n+\t\t\t'date3'                    => 'calendar_date_2_line',\n+\t\t\t'date4'                    => 'calendar_date_4_solid',\n+\t\t\t'date5'                    => 'calendar_date_3_line',\n+\t\t\t'calendar'                 => 'calendar_date_3_line',\n+\n \t\t\t\u002F\u002F Reading time aliases\n-\t\t\t'readingTime1' => 'clock_reading_time_3_line',\n-\t\t\t'readingTime2' => 'clock_reading_time_2_line',\n-\t\t\t'readingTime3' => 'book_reading_time_line',\n-\t\t\t'readingTime4' => 'clock_reading_time_1_line',\n-\t\t\t'readingTime5' => 'hourglass_timer_time_line',\n-\t\t\t\n+\t\t\t'readingTime1'             => 'clock_reading_time_3_line',\n+\t\t\t'readingTime2'             => 'clock_reading_time_2_line',\n+\t\t\t'readingTime3'             => 'book_reading_time_line',\n+\t\t\t'readingTime4'             => 'clock_reading_time_1_line',\n+\t\t\t'readingTime5'             => 'hourglass_timer_time_line',\n+\n \t\t\t\u002F\u002F Tag aliases\n-\t\t\t'tag1' => 'tag_bookmark_save_favourite_mark_discount_sale_line',\n-\t\t\t'tag2' => 'price_tag_label_category_sale_discount_solid',\n-\t\t\t'tag3' => 'price_tag_label_category_sale_discount_line',\n-\t\t\t'tag4' => 'price_tag_offer_sale_coupon_solid',\n-\t\t\t'tag5' => 'price_tag_label_category_sale_discount_line',\n-\t\t\t'tag6' => 'growth_increase_up_solid',\n-\t\t\t\n+\t\t\t'tag1'                     => 'tag_bookmark_save_favourite_mark_discount_sale_line',\n+\t\t\t'tag2'                     => 'price_tag_label_category_sale_discount_solid',\n+\t\t\t'tag3'                     => 'price_tag_label_category_sale_discount_line',\n+\t\t\t'tag4'                     => 'price_tag_offer_sale_coupon_solid',\n+\t\t\t'tag5'                     => 'price_tag_label_category_sale_discount_line',\n+\t\t\t'tag6'                     => 'growth_increase_up_solid',\n+\n \t\t\t\u002F\u002F View count aliases\n-\t\t\t'viewCount1' => 'view_count_show_visible_eye_open_1_line',\n-\t\t\t'viewCount2' => 'view_count_show_visible_eye_open_2_line',\n-\t\t\t'viewCount3' => 'view_count_show_visible_eye_open_3_line',\n-\t\t\t'viewCount4' => 'view_count_show_visible_eye_open_4_solid',\n-\t\t\t'viewCount5' => 'view_count_show_visible_eye_open_5_solid',\n-\t\t\t'viewCount6' => 'view_count_show_visible_eye_open_5_solid',\n-\t\t\t\n+\t\t\t'viewCount1'               => 'view_count_show_visible_eye_open_1_line',\n+\t\t\t'viewCount2'               => 'view_count_show_visible_eye_open_2_line',\n+\t\t\t'viewCount3'               => 'view_count_show_visible_eye_open_3_line',\n+\t\t\t'viewCount4'               => 'view_count_show_visible_eye_open_4_solid',\n+\t\t\t'viewCount5'               => 'view_count_show_visible_eye_open_5_solid',\n+\t\t\t'viewCount6'               => 'view_count_show_visible_eye_open_5_solid',\n+\n \t\t\t\u002F\u002F Author aliases\n-\t\t\t'author1' => 'author_user_human_1_line',\n-\t\t\t'author2' => 'author_user_human_4_line',\n-\t\t\t'author3' => 'author_user_human_4_solid',\n-\t\t\t'author4' => 'author_user_human_4_line',\n-\t\t\t'author5' => 'author_user_human_3_solid',\n-\t\t\t'author6' => 'author_user_human_6_line',\n-\t\t\t'user' => 'author_user_human_3_line',\n-\t\t\t\n+\t\t\t'author1'                  => 'author_user_human_1_line',\n+\t\t\t'author2'                  => 'author_user_human_4_line',\n+\t\t\t'author3'                  => 'author_user_human_4_solid',\n+\t\t\t'author4'                  => 'author_user_human_4_line',\n+\t\t\t'author5'                  => 'author_user_human_3_solid',\n+\t\t\t'author6'                  => 'author_user_human_6_line',\n+\t\t\t'user'                     => 'author_user_human_3_line',\n+\n \t\t\t\u002F\u002F Device aliases\n-\t\t\t'desktop' => 'desktop_monitor_computer_line',\n-\t\t\t'laptop' => 'laptop_computer_line',\n-\t\t\t'tablet' => 'tablet_ipad_pad_line',\n-\t\t\t'mobile' => 'mobile_smartphone_phone_line',\n-\t\t\t\n+\t\t\t'desktop'                  => 'desktop_monitor_computer_line',\n+\t\t\t'laptop'                   => 'laptop_computer_line',\n+\t\t\t'tablet'                   => 'tablet_ipad_pad_line',\n+\t\t\t'mobile'                   => 'mobile_smartphone_phone_line',\n+\n \t\t\t\u002F\u002F Emoji aliases\n-\t\t\t'angry_line' => 'angry_emoji_line',\n-\t\t\t'angry_solid' => 'angry_emoji_solid',\n-\t\t\t'confused_line' => 'confused_emoji_line',\n-\t\t\t'confused_solid' => 'confused_emoji_solid',\n-\t\t\t'happy_line' => 'happy_emoji_line',\n-\t\t\t'happy_solid' => 'happy_emoji_solid',\n-\t\t\t'smile_line' => 'smile_emoji_line',\n-\t\t\t'smile_solid' => 'smile_emoji_solid',\n-\t\t\t\n+\t\t\t'angry_line'               => 'angry_emoji_line',\n+\t\t\t'angry_solid'              => 'angry_emoji_solid',\n+\t\t\t'confused_line'            => 'confused_emoji_line',\n+\t\t\t'confused_solid'           => 'confused_emoji_solid',\n+\t\t\t'happy_line'               => 'happy_emoji_line',\n+\t\t\t'happy_solid'              => 'happy_emoji_solid',\n+\t\t\t'smile_line'               => 'smile_emoji_line',\n+\t\t\t'smile_solid'              => 'smile_emoji_solid',\n+\n \t\t\t\u002F\u002F Social aliases\n-\t\t\t'share_line' => 'social_community_line',\n-\t\t\t'share' => 'share_social_solid',\n-\t\t\t'apple_solid' => 'apple_logo_icon_solid',\n-\t\t\t'android_solid' => 'android_logo_icon_solid',\n-\t\t\t'google_solid' => 'google_logo_icon_solid',\n-\t\t\t'messenger' => 'messenger_logo_icon_solid',\n-\t\t\t'microsoft_solid' => 'microsoft_logo_icon_solid',\n-\t\t\t'mail' => 'mail_email_messege_solid',\n-\t\t\t'facebook' => 'facebook_logo_icon_solid',\n-\t\t\t'twitter' => 'twitter_x_logo_icon_line',\n-\t\t\t'link' => 'link_chains_line',\n-\t\t\t\n+\t\t\t'share_line'               => 'social_community_line',\n+\t\t\t'share'                    => 'share_social_solid',\n+\t\t\t'apple_solid'              => 'apple_logo_icon_solid',\n+\t\t\t'android_solid'            => 'android_logo_icon_solid',\n+\t\t\t'google_solid'             => 'google_logo_icon_solid',\n+\t\t\t'messenger'                => 'messenger_logo_icon_solid',\n+\t\t\t'microsoft_solid'          => 'microsoft_logo_icon_solid',\n+\t\t\t'mail'                     => 'mail_email_messege_solid',\n+\t\t\t'facebook'                 => 'facebook_logo_icon_solid',\n+\t\t\t'twitter'                  => 'twitter_x_logo_icon_line',\n+\t\t\t'link'                     => 'link_chains_line',\n+\n \t\t\t\u002F\u002F Misc aliases\n-\t\t\t'media_document' => 'media_document',\n-\t\t\t'arrowDown2' => 'arrow_down_dropdown_maximize_chevron_line',\n-\t\t\t'setting' => 'settings_tool_function_solid',\n-\t\t\t'upload_solid' => 'upload_1_solid',\n+\t\t\t'media_document'           => 'media_document',\n+\t\t\t'arrowDown2'               => 'arrow_down_dropdown_maximize_chevron_line',\n+\t\t\t'setting'                  => 'settings_tool_function_solid',\n+\t\t\t'upload_solid'             => 'upload_1_solid',\n \n \t\t\t\u002F\u002F Empty aliases for missing icons (return empty string)\n-\t\t\t'correct_solid' => 'correct_save_check_circle_line',\n-\t\t\t'dot_solid' => 'dot_circle_solid',\n-\t\t\t'right_circle_solid' => 'correct_save_check_circle_solid',\n-\t\t\t'full_screen' => 'full_screen_corners_out_solid',\n-\t\t\t'zoom_in' => 'zoom_in_magnifying_glass_plus_line',\n-\t\t\t'zoom_out' => 'zoom_out_magnifying_glass_minus_line',\n-\t\t\t'gallery_indicator' => 'gallery_indicator_image_solid',\n-\t\t\t'ascending' => 'sort_ascending_order_solid',\n-\t\t\t'descending' => 'sort_descending_order_line',\n-\t\t\t'unlink' => 'unlink_link_break_line',\n-\t\t\t'rocket' => 'rocket_fly_boost_launch_pro_line',\n-\t\t\t'unlock' => 'unlocked_open_security_solid',\n-\t\t\t'connect' => 'plugin_connect_socket_integration_solid',\n-\t\t\t'leftAngle' => 'arrow_left_previous_backward_chevron_line',\n-\t\t\t'rightAngle' => 'right_triangle_angle_play_arrow_forward_line',\n-\t\t\t'plus2' => '',\n-\t\t\t'hamicon_1' => 'left_align_1_line',\n+\t\t\t'correct_solid'            => 'correct_save_check_circle_line',\n+\t\t\t'dot_solid'                => 'dot_circle_solid',\n+\t\t\t'right_circle_solid'       => 'correct_save_check_circle_solid',\n+\t\t\t'full_screen'              => 'full_screen_corners_out_solid',\n+\t\t\t'zoom_in'                  => 'zoom_in_magnifying_glass_plus_line',\n+\t\t\t'zoom_out'                 => 'zoom_out_magnifying_glass_minus_line',\n+\t\t\t'gallery_indicator'        => 'gallery_indicator_image_solid',\n+\t\t\t'ascending'                => 'sort_ascending_order_solid',\n+\t\t\t'descending'               => 'sort_descending_order_line',\n+\t\t\t'unlink'                   => 'unlink_link_break_line',\n+\t\t\t'rocket'                   => 'rocket_fly_boost_launch_pro_line',\n+\t\t\t'unlock'                   => 'unlocked_open_security_solid',\n+\t\t\t'connect'                  => 'plugin_connect_socket_integration_solid',\n+\t\t\t'leftAngle'                => 'arrow_left_previous_backward_chevron_line',\n+\t\t\t'rightAngle'               => 'right_triangle_angle_play_arrow_forward_line',\n+\t\t\t'plus2'                    => '',\n+\t\t\t'hamicon_1'                => 'left_align_1_line',\n \t\t\t\u002F\u002F extra in assets\\img\\iconpack folder\n-\t\t\t'hamicon_2' => 'hemicon_2_line',\n-\t\t\t'hamicon_3' => 'hemicon_3_line',\n-\t\t\t'hamicon_4' => 'hamicon_5_line',\n-\t\t\t'hamicon_5' => 'hamicon_4_sloid',\n-\t\t\t'hamicon_6' => 'hamicon_6_line',\n-\t\t\t'instagram_solid' => 'instagram_logo_icon_solid',\n-\t\t\t'linkedin' => 'linkedin_logo_icon_solid',\n-\t\t\t'pause_solid' => 'pause_solid',\n-\t\t\t'pinterest' => 'pinterest_logo_icon_solid',\n-\t\t\t'reddit' => 'reddit_logo_icon_solid',\n-\t\t\t'skype' => 'skype_logo_icon_solid',\n-\t\t\t'tiktok_lite_solid' => 'tiktok_logo_icon_line',\n-\t\t\t'tiktok_solid' => 'tiktok_logo_icon_circle_solid',\n-\t\t\t'whatsapp' => 'whatsapp_logo_icon_solid',\n-\t\t\t'wordpress_lite_solid' => 'wordpress_logo_icon_solid',\n-\t\t\t'wordpress_solid' => 'wordpress_logo_icon_2_solid',\n-\t\t\t'wrong_solid' => 'cross_close_x_minimize_circle_solid',\n-\t\t\t'youtube_solid' => 'youtube_logo_icon_solid',\n-\t\t\t'five_star_line' => 'star_rating_line',\n-\t\t\t'rightAngleBold' => 'arrow_right_next_forward_chevron_line',\n-\t\t\t'leftAngleBold' => 'arrow_left_previous_backward_chevron_line',\n-\t\t\t'plus' => 'plus',\n-\t\t\t'reset_left_line' => 'refresh_reset_cycle_loop_infinity_line',\n+\t\t\t'hamicon_2'                => 'hemicon_2_line',\n+\t\t\t'hamicon_3'                => 'hemicon_3_line',\n+\t\t\t'hamicon_4'                => 'hamicon_5_line',\n+\t\t\t'hamicon_5'                => 'hamicon_4_sloid',\n+\t\t\t'hamicon_6'                => 'hamicon_6_line',\n+\t\t\t'instagram_solid'          => 'instagram_logo_icon_solid',\n+\t\t\t'linkedin'                 => 'linkedin_logo_icon_solid',\n+\t\t\t'pause_solid'              => 'pause_solid',\n+\t\t\t'pinterest'                => 'pinterest_logo_icon_solid',\n+\t\t\t'reddit'                   => 'reddit_logo_icon_solid',\n+\t\t\t'skype'                    => 'skype_logo_icon_solid',\n+\t\t\t'tiktok_lite_solid'        => 'tiktok_logo_icon_line',\n+\t\t\t'tiktok_solid'             => 'tiktok_logo_icon_circle_solid',\n+\t\t\t'whatsapp'                 => 'whatsapp_logo_icon_solid',\n+\t\t\t'wordpress_lite_solid'     => 'wordpress_logo_icon_solid',\n+\t\t\t'wordpress_solid'          => 'wordpress_logo_icon_2_solid',\n+\t\t\t'wrong_solid'              => 'cross_close_x_minimize_circle_solid',\n+\t\t\t'youtube_solid'            => 'youtube_logo_icon_solid',\n+\t\t\t'five_star_line'           => 'star_rating_line',\n+\t\t\t'rightAngleBold'           => 'arrow_right_next_forward_chevron_line',\n+\t\t\t'leftAngleBold'            => 'arrow_left_previous_backward_chevron_line',\n+\t\t\t'plus'                     => 'plus',\n+\t\t\t'reset_left_line'          => 'refresh_reset_cycle_loop_infinity_line',\n \t\t);\n \t\t\u002F\u002F Return resolved alias or false if not found\n \t\treturn isset( $icon_aliases[ $icon_name ] ) ? $icon_aliases[ $icon_name ] : $icon_name;\ndiff -ru \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fclasses\u002FImporter.php \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fclasses\u002FImporter.php\n--- \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fclasses\u002FImporter.php\t2026-02-23 09:39:46.000000000 +0000\n+++ \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fclasses\u002FImporter.php\t2026-02-25 11:53:26.000000000 +0000\n@@ -203,7 +203,7 @@\n \t\t\t);\n \t\t}\n \n-\t\t$response = wp_remote_get(\n+\t\t$response = wp_safe_remote_post(\n \t\t\t$api_endpoint . '\u002Fwp-json\u002Fimporter\u002Fsite_all_posts',\n \t\t\tarray(\n \t\t\t\t'method'  => 'POST',\n@@ -277,7 +277,7 @@\n \t\t\t}\n \t\t}\n \n-\t\t$response = wp_remote_get(\n+\t\t$response = wp_safe_remote_post(\n \t\t\t$api_endpoint . '\u002Fwp-json\u002Fimporter\u002Fsingle',\n \t\t\tarray(\n \t\t\t\t'method'  => 'POST',\n@@ -760,7 +760,7 @@\n \t\t\t\t'license'  => Xpo::get_lc_key(),\n \t\t\t\t'ultp_ver' => ULTP_VER,\n \t\t\t);\n-\t\t\t$response      = wp_remote_get(\n+\t\t\t$response      = wp_safe_remote_post(\n \t\t\t\t$api_endpoint . '\u002Fwp-json\u002Fimporter\u002Fsingle',\n \t\t\t\tarray(\n \t\t\t\t\t'method'  => 'POST',\ndiff -ru \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fincludes\u002Fdurbin\u002Fclass-xpo.php \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fincludes\u002Fdurbin\u002Fclass-xpo.php\n--- \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fincludes\u002Fdurbin\u002Fclass-xpo.php\t2026-02-23 09:39:46.000000000 +0000\n+++ \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fincludes\u002Fdurbin\u002Fclass-xpo.php\t2026-02-25 11:53:26.000000000 +0000\n@@ -372,7 +372,7 @@\n \t *\u002F\n \tpublic static function install_and_active_plugin( $name ) {\n \t\t$to_r        = array( 'done' => true );\n-\t\t$plugin_slug = $name;\n+\t\t$plugin_slug = '';\n \t\tswitch ( $name ) {\n \t\t\tcase 'post_x':\n \t\t\t\t$plugin_slug = 'ultimate-post';\ndiff -ru \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Freadme.txt \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Freadme.txt\n--- \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Freadme.txt\t2026-02-23 09:39:46.000000000 +0000\n+++ \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Freadme.txt\t2026-02-25 11:53:26.000000000 +0000\n@@ -4,7 +4,7 @@\n Requires at least: 5.0\n Tested up to: 6.9\n Requires PHP: 5.6\n-Stable tag: 5.0.8\n+Stable tag: 5.0.9\n License: GPLv3\n License URI: http:\u002F\u002Fwww.gnu.org\u002Flicenses\u002Fgpl-3.0.html\n \n@@ -268,6 +268,12 @@\n 11. With the help of the Elementor and Saved Template addons, you can use any of the post blocks of PostX to any pages while editing with Elementor builder.\n \n == Changelog ==\n+= 5.0.9 – 25 February 2026 =\n+* New: Post Block inline video optimized\n+* Fix: SSRF vulnerability in Starter pack importer\n+* Fix: Pagination nonce conflict with cache plugins\n+* Fix: Advanced Filter orderby conflict with pagination\n+\n = 5.0.8 – 23 February 2026 =\n * Fix: Menu Item icon broken issue\n * Fix: Compatibility issue with older PHP versions\ndiff -ru \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fultimate-post.php \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fultimate-post.php\n--- \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.8\u002Fultimate-post.php\t2026-02-23 09:39:46.000000000 +0000\n+++ \u002Fhome\u002Fdeploy\u002Fwp-safety.org\u002Fdata\u002Fplugin-versions\u002Fultimate-post\u002F5.0.9\u002Fultimate-post.php\t2026-02-25 11:53:26.000000000 +0000\n@@ -3,7 +3,7 @@\n \u002F**\n  * Plugin Name: PostX\n  * Description: \u003Ca href=\"https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-plugin&utm_medium=details&utm_campaign=postx-dashboard\">PostX\u003C\u002Fa> is the #1 Gutenberg Blocks plugin with 38+ free blocks that includes post gird, post list, post slider, carousel, news ticker, etc. Advanced capabilities like dynamic site building and design variations make it the best choice for creating News Magazine sites, and any kind of blog such as Personal Blogs, Travel Blogs, Fashion Blogs, Food Reviews, Recipe Blogs, etc.\n- * Version:     5.0.8\n+ * Version:     5.0.9\n  * Author:      Post Grid Team by WPXPO\n  * Author URI:  https:\u002F\u002Fwww.wpxpo.com\u002Fpostx\u002F?utm_source=db-postx-plugin&utm_medium=details&utm_campaign=postx-dashboard\n  * Text Domain: ultimate-post\n@@ -14,7 +14,7 @@\n defined( 'ABSPATH' ) || exit;\n \n \u002F\u002F Define\n-define( 'ULTP_VER', '5.0.8' );\n+define( 'ULTP_VER', '5.0.9' );\n define( 'ULTP_URL', plugin_dir_url( __FILE__ ) );\n define( 'ULTP_BASE', plugin_basename( __FILE__ ) );\n define( 'ULTP_PATH', plugin_dir_path( __FILE__ ) );\n","To exploit this vulnerability, an attacker with Administrator-level privileges must first authenticate to the WordPress site. Next, they obtain a valid REST API nonce, typically found in the 'wpApiSettings' JavaScript object on administrative pages. The attacker then sends a POST request to the \u002Fwp-json\u002Fultp\u002Fv3\u002Fstarter_import_content\u002F or \u002Fwp-json\u002Fultp\u002Fv3\u002Fstarter_dummy_post\u002F endpoint. The request must include the 'X-WP-Nonce' header and a JSON-encoded body containing a 'url' parameter (e.g., {\"url\": \"http:\u002F\u002F169.254.169.254\u002Flatest\u002Fmeta-data\u002F\"}). The server will subsequently fetch the content of the provided URL and potentially reflect its contents in the API response or create a post containing the retrieved data.","gemini-3-flash-preview","2026-04-18 06:46:22","2026-04-18 06:46:49",{"type":41,"vulnerable_version":42,"fixed_version":11,"vulnerable_browse":43,"vulnerable_zip":44,"fixed_browse":45,"fixed_zip":46,"all_tags":47},"plugin","5.0.8","https:\u002F\u002Fplugins.trac.wordpress.org\u002Fbrowser\u002Fultimate-post\u002Ftags\u002F5.0.8","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fultimate-post.5.0.8.zip","https:\u002F\u002Fplugins.trac.wordpress.org\u002Fbrowser\u002Fultimate-post\u002Ftags\u002F5.0.9","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fultimate-post.5.0.9.zip","https:\u002F\u002Fplugins.trac.wordpress.org\u002Fbrowser\u002Fultimate-post\u002Ftags"]