From 6b556dbb6a807669d1a1207f016a3a88a3a5a002 Mon Sep 17 00:00:00 2001 From: vamera Date: Mon, 16 Jun 2025 11:57:51 +0200 Subject: [PATCH 1/3] Updated Redoc version, implemented redoc theme and adjusted our custom style for the API reference pages --- .../_themes/wazuh_doc_theme_v3/api-redoc.html | 2 +- .../wazuh_doc_theme_v3/cloud-api-redoc.html | 2 +- .../wazuh_doc_theme_v3/redoc-master.html | 142 +- .../src/scss/pages/api-reference.scss | 1410 ++++++------ .../static/css/min/api-reference.min.css | 2 +- .../static/js/redoc.standalone.js | 1967 +++++++++++++++-- source/conf.py | 22 +- 7 files changed, 2696 insertions(+), 851 deletions(-) diff --git a/source/_themes/wazuh_doc_theme_v3/api-redoc.html b/source/_themes/wazuh_doc_theme_v3/api-redoc.html index 5a5eec9d6a..980c2a6b63 100644 --- a/source/_themes/wazuh_doc_theme_v3/api-redoc.html +++ b/source/_themes/wazuh_doc_theme_v3/api-redoc.html @@ -5,5 +5,5 @@ {% endblock %} {%- block redoc %} - + {% endblock redoc %} diff --git a/source/_themes/wazuh_doc_theme_v3/cloud-api-redoc.html b/source/_themes/wazuh_doc_theme_v3/cloud-api-redoc.html index a2beef52cf..c4c4209cf2 100644 --- a/source/_themes/wazuh_doc_theme_v3/cloud-api-redoc.html +++ b/source/_themes/wazuh_doc_theme_v3/cloud-api-redoc.html @@ -5,5 +5,5 @@ {% endblock %} {%- block redoc %} - + {% endblock redoc %} \ No newline at end of file diff --git a/source/_themes/wazuh_doc_theme_v3/redoc-master.html b/source/_themes/wazuh_doc_theme_v3/redoc-master.html index 3cff87816d..410c579a8b 100644 --- a/source/_themes/wazuh_doc_theme_v3/redoc-master.html +++ b/source/_themes/wazuh_doc_theme_v3/redoc-master.html @@ -1,5 +1,143 @@ {%- extends "!wazuh_doc_theme_v3/template-parts/body.html" -%} +{% set redoc_theme = '{ + "codeBlock": { + "backgroundColor": "#25252c" + }, + "colors": { + "error": { + "main": "#bd271e" + }, + "primary": { + "main": "#3585f9" + }, + "http": { + "delete": "#f86b63", + "get": "#207d82", + "post": "#6ca2f0", + "put": "#b677dc" + }, + "responses": { + "error": { + "backgroundColor": "rgba(248,107,99,.2)", + "color": "#bd271e", + "tabTextColor": "#ffffff" + }, + "success": { + "backgroundColor": "rgba(32,125,130,.2)", + "color": "#207d82", + "tabTextColor": "#ffffff" + } + }, + "success": { + "main": "#207d82" + }, + "text": { + "primary": "#000000", + "secondary": "#757575" + }, + "tonalOffset": 0 + }, + "fab": { + "backgroundColor": "transparent", + "color": "#256bd1" + }, + "rightPanel": { + "backgroundColor": "#2a2d34", + "textColor": "#ffffff" + }, + "schema": { + "caretColor": "#256bd1", + "labelsTextSize": "14px", + "linesColor": "#3585f9", + "nestedBackground": "#f7f7f7", + "nestingSpacing": "1em", + "requireLabelColor": "#f86b63", + "typeNameColor": "#8c8c8c", + "typeTitleColor": "#545f73" + }, + "sidebar": { + "activeBgColor": "#3585f9", + "activeTextColor": "#ffffff", + "backgroundColor": "#ebf2fb", + "fontSize": "16px", + "level1Items": { + "textTransform": "uppercase" + }, + "spacing": { + "unit": "6", + "paddingVertical": "36px" + }, + "textColor": "#292929", + "width": "294px" + }, + "spacing": { + "unit": 5, + "sectionHorizontal": 40, + "sectionVertical": 40 + }, + "typography": { + "code": { + "backgroundColor": "#e2eefe", + "color": "#7c3db2", + "fontFamily": "Fira Mono, monospace", + "fontSize": "14px", + "fontWeight": "400", + "lineHeight": "32px" + }, + "fontFamily": "Manrope, sans-serif", + "fontSize": "16px", + "fontWeightBold": "600", + "fontWeightLight": "400", + "fontWeightRegular": "400", + "lineHeight": "32px", + "smoothing": "antialiased", + "optimizeSpeed": "true", + "headings": { + "fontFamily": "Manrope, sans-serif", + "fontWeight": "600", + "lineHeight": "1.44em" + }, + "links": { + "color": "#256bd1", + "visited": "#256bd1", + "hover": "#3585f9", + "textDecoration": "none", + "hoverTextDecoration": "none" + }, + "rightPanelHeading": { + "transform": "uppercase" + } + } +}' +%} + +{# + + "sidebar" + "groupItems" # Group headings + "activeBackgroundColor": # COMPUTED: theme.sidebar.backgroundColor + "activeTextColor": # COMPUTED: theme.sidebar.activeTextColor + "textTransform": "uppercase" + "level1Items" # Level 1 items like tags or section 1st level items + "activeBackgroundColor": # COMPUTED: theme.sidebar.backgroundColor + "activeTextColor": # COMPUTED: theme.sidebar.activeTextColor + "textTransform": "none" + "arrow" # sidebar arrow + "size": "1.5em" + "color": # COMPUTED: theme.sidebar.textColor + "rightPanel" + "backgroundColor": "#263238" + "width": "40%" + "textColor": "#ffffff" + "servers" + "overlay" + "backgroundColor": "#fafafa" + "textColor": "#263238" + "url" + "backgroundColor": "#fff" +#} + {%- block htmltitle -%} API reference{{ titlesuffix }} {% endblock htmltitle -%} @@ -16,10 +154,10 @@ + {% endblock %} {%- block header %} -
{%- block latest %} {% include "template-parts/no-latest-notice.html" %} @@ -35,7 +173,7 @@ {% include "template-parts/version-selector.html" %}
{% endif %} - + {% endblock header -%} {% block sidebar1 -%}{% endblock sidebar1 -%} diff --git a/source/_themes/wazuh_doc_theme_v3/src/scss/pages/api-reference.scss b/source/_themes/wazuh_doc_theme_v3/src/scss/pages/api-reference.scss index 3f198f33bd..dca0b66e1c 100644 --- a/source/_themes/wazuh_doc_theme_v3/src/scss/pages/api-reference.scss +++ b/source/_themes/wazuh_doc_theme_v3/src/scss/pages/api-reference.scss @@ -61,7 +61,7 @@ body { @include media-min (xl) { padding-top: #{$redoc-header-height + 50px}; } - redoc[spec-url] .beRszf .menu-content { + redoc[spec-url] .menu-content { @media screen and (min-width: 50rem) and (max-width: 75rem){ top: #{$redoc-header-height + $header-height-xl} !important; } @@ -101,7 +101,6 @@ body { } } - main { padding: 0; strong { @@ -140,6 +139,9 @@ header { padding: 5px 10px; border: 2px solid; } + @media screen and (min-width: 50.01rem) { + border-color: $light-color-accent; + } @include media-only (lg, xl) { width: 263px; } @@ -313,72 +315,38 @@ header { /* Redoc Element styles ----------------------------------------------------- */ -redoc[spec-url] .beRszf { +redoc[spec-url] .redoc-wrap { font-family: Manrope, sans-serif; font-size: 16px; font-weight: 500; line-height: 32px; letter-spacing: .03em; - // Responosive tables - .eCjbJc { - display: block; - overflow-x: auto; - } - // Right column dark background only - .cObJOV { + & > div:last-of-type { top: calc(-60px - #{$redoc-header-height}); width: calc((100% - #{$left-redoc-sidebar-width}) * .4); - background-color: $dark-color-base-space; } - // API menu toggle - .sc-bMVAic.llQIcF { - top: 6px; - right: 15px; - width: 45px; - height: 45px; - padding: .4rem; - background: transparent; - background-color: transparent; - border-radius: 4px; - box-shadow: none; + // Responsive tables + .table.table-striped { + display: block; + overflow-x: auto; } - // Tag sections: - .cncswi { - padding: 10px 0 0; - - // Tag sections head: - .TPAYK { - padding-top: 0; - padding-bottom: 0; + table { + width: 100%; + overflow-x: auto; + .property-name { + font-family: Manrope,sans-serif; + font-size: 16px; + font-weight: 500; + line-height: 32px; + display: inline-block; + padding: 0 10px 10px 0; } } - // Original "Powered by ReDoc" link - .bmRLPL { - display: none; - } - - // Simple table style - .dCnGCn table th { - font-weight: 500; - } - .dCnGCn table th, - .dCnGCn table td { - padding: 6px 20px; - border: 2px solid; - } - - // Font inside the tables - .xNubs { - font-family: Manrope, sans-serif; - font-size: 1rem; - line-height: 32px; - } - // Advanced table style .table { // Bordered table style @@ -394,27 +362,15 @@ redoc[spec-url] .beRszf { } } - // AUTHORIZATIONS - .sc-epnACN { - padding-right: 10px; - .XrbXS { - font-size: 16px !important; - } - } - // QUERY PARAMETERS and REQUEST BODY SCHEMA - .sc-gqjmRU.LiUBH { - width: 100%; - font-size: 16px !important; - > .sc-hSdWYo.hoUoen { - font-size: 16px !important; + h5 { + span { + font-size: 16px; } } // Code blocks - code, - .sc-cHGsZl.sc-jbKcbu, - .sc-cHGsZl.sc-jqCOkK { + code { font-family: "Fira Mono", monospace; font-size: 14px; line-height: 32px; @@ -422,9 +378,7 @@ redoc[spec-url] .beRszf { } pre code { background-color: $dark-color-code-block-background; - } - .gbsZqp { - color: #fff; + border: none; } .token { color: $dark-color-main-text; @@ -465,109 +419,34 @@ redoc[spec-url] .beRszf { } } - // Responses (central column): 200, 400, etc - .sc-ibxdXY { - &.gxJjxJ, - &.dUFXgZ { - strong { - margin-right: 10px; - font-weight: 600; - } - } - } - - // Content blocks - .sc-jWBwVP.sc-iRbamj.dCnGCn { - line-height: 32px; - pre { - background-color: $dark-color-code-block-background; - } - p { - line-height: 32px; - } - } - - // Inline code value - .bMfIUD { - border: 1px solid; - } - .xNubs code { - border: none; - } - .beUper { - border: none; - } - - // Properties and property required - .sc-chPdSV.eAybih { - font-family: Manrope, sans-serif; - font-size: 16px; - line-height: 32px; - .sc-ksYbfQ.sc-hmzhuo.bGITIP { - font-size: 14px; - text-transform: capitalize; - } - } - // Fix error of the connecting line on sigle properties - tr.last:first-of-type > .eAybih, - tr.last:first-of-type > .jMEzIu { + tr.last:first-of-type > [kind="field"] { background-image: none; } - // Expandable property - .sc-kjoXOD.jMEzIu, - .sc-kjoXOD.QefOL { - button { - font-family: Manrope, sans-serif; - font-size: 16px; - line-height: 32px; - } - } - - // Array of - .sc-TOsTZ.fKyGWc { - font-size: 15px; - } - - // Array () [] - .sc-hMqMXs.dDdNtD, - .sc-kEYyzF.cMefLx { - font-family: Manrope, sans-serif; - font-size: 15px; - } - - // Types - .sc-kgAjT.hqYVjx { - font-size: 15px; - } - - // Default - .sc-cHGsZl.lpeYvY { - font-size: 15px; - } - - // One of... - .sc-jKJlTe.eZZMfQ { - font-family: Manrope, sans-serif; - font-size: 16px; - } - .sc-eNQAEJ { + // One of... - TODO + .sc-hzhJZQ { font-size: 15px; border-radius: 3px; } - // Parameters values and descriptions - .kGwPhO { - // width: 100%; - font-size: 16px; - } - .edBCth { - font-size: 14px; + // Code block area container + .react-tabs__tab-panel { + div { + margin-top: 0; + } + + // Code block content + .redoc-json { + overflow-x: auto; + a { + text-decoration: none !important; + } + } } // Samples tabs (in dark background part) - .dOwpAS { + [data-rttabs] { .react-tabs__tab-list { [role="tab"] { width: 5em; @@ -595,45 +474,20 @@ redoc[spec-url] .beRszf { } } } - } - - // Samples endpoint boxes (in dark background part) - .gLTsd { - background-color: $dark-color-code-block-background; - - // Endpoint string - .sc-hwwEjo { - font-family: Manrope, sans-serif; - letter-spacing: .03em; - } - } - - // Content type boxes (in dark background part) - .sc-eqIVtm.ecxnvs { - display: none; - } - - // Code block area container - .sc-gisBJw.gwfZGU { - margin-top: 0; - - // Code block content - .jCgylq { - a { - text-decoration: none !important; + .react-tabs__tab-panel { + .token { + &.punctuation { + opacity: 0.7; + } + &.number { + color: $dark-color-code-function; + } } } } - // Code block buttons - .gsaTRZ > button { - font-family: Manrope, sans-serif; - font-size: 16px; - border-radius: 3px; - } - // API specs download button - a.sc-hEsumM.jrowNk { + a[download] { padding: 0 34px; text-decoration: none; user-select: none; @@ -651,7 +505,17 @@ redoc[spec-url] .beRszf { @media screen and (max-width: 50rem){ width: 100%; } - label[role="menuitem"] { + // Toggle mobile menu + & + div { + top: 6px; + right: 15px; + width: 45px; + height: 45px; + padding: .4rem; + border-radius: 4px; + box-shadow: none; + } + label { padding-right: 26px; padding-left: 26px; font-family: Manrope, sans-serif; @@ -663,38 +527,45 @@ redoc[spec-url] .beRszf { &.-depth1 { text-transform: uppercase; } - &.active .hRqESd, - &.iTiWpH .hRqESd { - transform: rotateZ(-180deg); - } &.-depth2 { padding-left: 36px; } } - } - - // Search box - .cziLoD { - padding: 30px 0 5px; - input { - padding-bottom: 0; - padding-left: 28px; - font-family: Manrope, sans-serif; - font-size: 16px; - font-weight: 500; - background-repeat: no-repeat; - background-position: left center; - background-size: 25px 25px; - border-bottom: 2px solid; + // Original "Powered by ReDoc" link + [role="menu"] { + & + div a { + display: none; + } } - svg { - display: none; + + // Search box + [role="search"], + & >div:first-of-type { + padding: 30px 0 5px; + input { + padding-bottom: 0; + padding-left: 28px; + font-family: Manrope, sans-serif; + font-size: 16px; + font-weight: 500; + background-repeat: no-repeat; + background-position: left center; + background-size: 25px 25px; + border-bottom: 2px solid; + } + svg { + display: none; + } + } + [role="search"] { + .scrollbar-container { + border-bottom: 1px solid $light-color-border-deeper; + } + [data-role="search:results"] { + background-color: transparent; + padding: 0 15px; + } } - } - .kwnyAC { - background: transparent; - width: calc(100% - 40px); - margin: 0 auto; } // Central and right content columns @@ -704,6 +575,287 @@ redoc[spec-url] .beRszf { @media screen and (max-width: 50rem){ margin-left: 0; } + + h2 { + margin-top: calc(1.2rem + 10px); + margin-bottom: 1rem; + } + + [id="section/Authentication"] { + & > div:first-of-type > div:first-of-type { + padding-top: 0; + padding-bottom: 0; + } + // Simple table style + table { + th { + font-weight: 500; + } + th, + td { + padding: 6px 20px; + border: 2px solid; + } + } + & > [id^="section/"] { + & > div > div { + padding-top: 0; + padding-bottom: 0; + & > div:last-of-type { + margin-bottom: 1.5em; + margin-top: 1.5em; + padding-bottom: 0; + border: 2px solid; + display: table; + & > div { + margin: 0; + display: table-row; + &:first-child { + display: inline-block; + border-bottom: 2px solid; + width: 100%; + } + div, + b { + margin: 0; + font-weight: 400; + } + b { + display: inline-block; + padding: 6px 20px; + box-sizing: content-box; + width: 100%; + @media screen and (min-width: 50rem){ + border-right: 2px solid; + width: 256px; + } + @media screen and (max-width: 50rem){ + padding: 10px; + font-weight: 500; + } + & + span { + margin-right: 20px; + margin-left: 20px; + @media screen and (max-width: 50rem){ + margin-right: 10px; + margin-left: 10px; + } + } + } + & > div { + display: block; + border-bottom: 2px solid; + &:last-of-type { + border-bottom: none; + } + & > :last-child { + margin-right: 20px; + margin-left: 20px; + @media screen and (max-width: 50rem){ + margin-right: 10px; + margin-left: 10px; + } + } + div, + span { + font-weight: 400; + display: table-cell; + min-width: 92px; + padding: 6px 20px; + box-sizing: content-box; + @media screen and (max-width: 50rem){ + padding: 10px; + } + } + } + } + } + } + } + } + [id="section/Authentication/basicAuth"] { + & > div>div>div:last-of-type>div>div:first-of-type { + border-bottom: none; + } + } + + // Tags + [id^="tag/"] { + & > div { + // Right column (and middle in some parts) + & > div:last-of-type { + color: $dark-color-main-text; + code { + color: $dark-color-main-text; + } + .token, + .token.punctuation { + // opacity: 1; + background-color: $dark-color-code-block-background; + } + button { + border-radius: 3px; + span { + font-family: Manrope, sans-serif; + font-size: 16px; + letter-spacing: .03em; + &[type] { + color: $light-color-code-default; + } + } + } + [role="tablist"] { + font-family: Manrope, sans-serif; + font-size: 16px; + letter-spacing: .03em; + color: $light-color-code-default; + } + + h3 { + font-size: 16px; + font-weight: 500; + color: $dark-color-main-text; + text-transform: uppercase; + } + + .http-verb { + font-family: Manrope, sans-serif; + font-size: 16px; + color: #000; + &.get { + background-color: $dark-color-success; + } + &.post { + background-color: $dark-color-primary-lighter; + } + &.put { + background-color: $dark-color-code-variable; + } + &.delete { + background-color: $dark-color-danger; + } + } + + .react-tabs__tab-panel > div{ + padding-top: 10px; + margin-top: 10px; + & > div { + margin-top: 0; + &:first-of-type { + display: none; + } + // Copy/expande buttons + & > div { + &:hover, + &:focus { + & > div:first-of-type { + opacity: 1; + } + } + & > div:first-of-type { + opacity: 0.4; + } + } + } + } + + .react-tabs__tab-list { + [role="tab"] { + width: 5em; + padding: 3px 10px; + margin-top: 7px; + font-size: 1rem; + font-weight: 500; + border-radius: 3px; + + & > [role="tab"].react-tabs__tab--selected { + font-weight: 500; + } + &.tab-success::before, + &.tab-error::before, + &.tab-redirect::before, + &.tab-info::before { + position: relative; + top: -2px; + display: inline-block; + width: 5px; + height: 5px; + margin-right: .5em; + content: ""; + border-radius: 50%; + } + } + } + } + // Middle column + & > div:first-of-type { + &:not(.redoc-markdown) { + padding: 0 40px; + } + & > div { + // Responses + &:last-of-type { + margin-bottom: 40px; + // Individual response + & > div { + & > button { + display: flex; + flex-direction: row; + justify-content: flex-start; + align-items: center; + strong { + margin-right: 10px; + } + p { + margin-top: 0; + } + } + } + } + & > h5 { + display: block; + width: 100%; + margin-right: 0; + span { + font-size: 16px; + } + } + } + } + } + } + + // AUTHORIZATIONS + // Section: + > [data-section-id] { + h5 { + font-size: 16px !important; + display: inline-block; + } + & > [data-section-id] > div > h5 { + display: block; + width: 100%; + margin-top: 30px; + } + & > div > div > div > div { + &[aria-hidden] { + background: $dark-color-code-block-background; + p { + color: $dark-color-main-text; + } + } + } + &::after { + content: none; + } + } + + // Tag sections + [data-section-id], + & > div:first-of-type { + padding: 10px 0 0; + } + h1, h2, h3, @@ -712,7 +864,7 @@ redoc[spec-url] .beRszf { font-family: Manrope, sans-serif; font-weight: 600; letter-spacing: .03em; - .sc-VigVT.jrPOYQ { + a { position: absolute; top: .3em; right: -24px; @@ -720,10 +872,20 @@ redoc[spec-url] .beRszf { } // Main h1 heading - .sc-htoDjs.sc-tilXH.givSXQ { - font-size: 34px; - line-height: 46.44px; + .api-info { + // Tag sections head: + padding-top: 0; + padding-bottom: 0; + [data-role="redoc-description"] { + margin-top: 2em; + } + + h1 { + font-size: 34px; + line-height: 46.44px; + } } + h1 { font-size: 28px; line-height: 40px; @@ -733,56 +895,6 @@ redoc[spec-url] .beRszf { font-size: 22px; line-height: 36px; } - - // Central column - .TPAYK { - // License - .sc-kafWEX.egTZxS { - margin-bottom: 1rem; - } - - } - - // Right column (always dark) - .celZWI { - color: $dark-color-main-text; - background-color: $dark-color-base-space; - - h3 { - font-size: 16px; - font-weight: 500; - color: $dark-color-main-text; - text-transform: uppercase; - } - - .http-verb { - font-family: Manrope, sans-serif; - font-size: 16px; - color: #000; - &.get { - background-color: $dark-color-success; - } - &.post { - background-color: $dark-color-primary-lighter; - } - &.put { - background-color: $dark-color-code-variable; - } - &.delete { - background-color: $dark-color-danger; - } - } - - .react-tabs__tab-panel > div{ - padding-top: 10px; - margin-top: 10px; - } - } - } - - // Remove the horizontal line between sections - .ddXLZs:not(:last-of-type)::after { - content: none; } } @@ -832,7 +944,7 @@ redoc[spec-url] .beRszf { border-bottom-color: $light-color-global-toc-highlight; } } - redoc[spec-url] .beRszf { + redoc[spec-url] .redoc-wrap { color: $light-color-main-text; // Generic links @@ -846,25 +958,85 @@ redoc[spec-url] .beRszf { p { color: $light-color-main-text; } - .jCgylq { - // Code blocks tokens - .token { - &.boolean { - color: $dark-color-danger; - } - &.number { - color: $light-color-primary-lighter; - } + // Code blocks tokens + .token { + &.boolean { + color: $dark-color-danger; } } - // Simple table style - .dCnGCn table th, - .dCnGCn table td { - border-color: $light-color-table-border; + [id="section/Authentication"] { + & > [id^="section/"] { + & > div > div { + & > div:last-of-type { + border-color: $light-color-table-border; + & > div { + &:first-child { + border-color: $light-color-table-border; + } + &:last-child { + & > div:nth-child(odd) { + background-color: $light-color-sidebar-space; + } + } + b { + @media screen and (min-width: 50rem){ + border-right-color: $light-color-table-border; + } + } + & > div { + border-bottom-color: $light-color-table-border; + } + } + } + } + } } - .dCnGCn table tr:nth-child(2n) { - background-color: $light-color-sidebar-space; + + table { + .property-name { + color: $light-color-main-text; + & + svg { + polygon { + fill: $light-color-primary; + } + } + } + tr { + &.expanded { + svg polygon { + fill: $light-color-primary; + } + } + } + td[kind="field"] { + :first-child { + &::before, + &::after { + background-color: $dark-color-primary-lighter; + } + } + // Expandable property + button { + color: $light-color-main-text; + } + } + + // Nested expandable properties + & > tbody > tr { + & > [colspan="2"] { + & > div, + & > div [colspan="2"] [colspan="2"] > div, + & > div [colspan="2"] [colspan="2"] [colspan="2"] [colspan="2"] > div { + background: $light-color-admonition-background; + } + & > div [colspan="2"] > div, + & > div [colspan="2"] [colspan="2"] [colspan="2"] > div, + & > div [colspan="2"] [colspan="2"] [colspan="2"] [colspan="2"] [colspan="2"] > div { + background-color: $light-color-base-space; + } + } + } } // Advanced table style @@ -893,209 +1065,114 @@ redoc[spec-url] .beRszf { } // AUTHORIZATIONS - .sc-epnACN { - color: $light-color-redoc-type; - } - .XrbXS { + h5 { color: $light-color-redoc-type; border-bottom-color: $light-color-redoc-type-border !important; - } - - // QUERY PARAMETERS and REQUEST BODY SCHEMA - .sc-gqjmRU.LiUBH { - color: $light-color-redoc-type !important; - border-bottom-color: $light-color-redoc-type-border !important; - > .sc-hSdWYo.hoUoen { + & + svg { + fill: $light-color-primary-lighter; + } + span { color: $light-color-main-text; } } // Properties - .sc-chPdSV.eAybih { - color: $light-color-main-text; - - // Porperty required - .sc-ksYbfQ.sc-hmzhuo.bGITIP { - color: $light-color-danger-dark; - } - } - - // Expandable property - .sc-kjoXOD.jMEzIu, - .sc-kjoXOD.QefOL { - button { - color: $light-color-main-text; - svg polygon { - fill: $light-color-primary; - } - } - } - .jMEzIu { + [kind="field"] { border-left-color: $light-color-primary-lighter; - } - - // Nested expandable properties - .eCjbJc .sc-kpOJdX, - .eCjbJc .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX, - .eCjbJc .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX { - background: $light-color-admonition-background; - } - .eCjbJc .sc-kpOJdX .sc-kpOJdX, - .eCjbJc .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX, - .eCjbJc .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX { - background-color: $light-color-base-space; + color: $light-color-main-text; } // API menu toggle - .imibLw { + svg { color: $light-color-primary-lighter; } // Properties connecting line - tr:first-of-type > .eAybih, - tr:first-of-type > .jMEzIu { - background-image: linear-gradient(transparent 0%, transparent 28px, $light-color-primary-lighter 28px, $light-color-primary-lighter 100%); - } - .eAybih, - .gtEarq { - border-left-color: $light-color-primary-lighter; - } - tr.last + tr > .gtEarq { - border-left-color: transparent; - } - tr.last { - & > .eAybih, - & > .jMEzIu { - background-image: linear-gradient($light-color-primary-lighter 0%, $light-color-primary-lighter 29px, transparent 29px, transparent 100%); + table:not(.table) { + & > tbody { + & > tr { + &:first-of-type > td:first-of-type { + background-image: linear-gradient(transparent 0%, transparent 28px, $light-color-primary-lighter 28px, $light-color-primary-lighter 100%); + } + & > td:first-of-type { + border-left-color: $light-color-primary-lighter; + } + } } - &:first-of-type > .eAybih, - &:first-of-type > .jMEzIu { - background-image: none; + td:first-of-type { + & > span { + &::before, + &::after { + background-color: $light-color-primary-lighter; + } + } + } + tr.last + tr > td:first-of-type { + border-left-color: transparent; + } + tr.last { + & > td:first-of-type { + background-image: linear-gradient($light-color-primary-lighter 0%, $light-color-primary-lighter 29px, transparent 29px, transparent 100%); + } + &:first-of-type > td:first-of-type { + background-image: none; + } } - } - .bcLONg::before, - .bcLONg::after { - background-color: $light-color-primary-lighter; - } - - // Array of - .sc-TOsTZ.fKyGWc { - color: $light-color-redoc-type; - } - - // Array () [] - .sc-hMqMXs.dDdNtD, - .sc-kEYyzF.cMefLx { - color: $light-color-main-text; - } - - // Types - .sc-kgAjT.hqYVjx { - color: $light-color-redoc-type; - } - - // Default - .sc-cHGsZl.lpeYvY { - color: $light-color-main-text; } - // One of... - .sc-jKJlTe.eZZMfQ { + // One of... TODO + .sc-fUnMCh.kaVHuF { color: $light-color-main-text; } - .sc-eNQAEJ { + .sc-hzhJZQ { border-color: $light-color-primary-lighter; - &.jdXjUh { + &.fCWfjy { color: $light-color-main-text; background-color: $light-color-base-space; } - &.gYsnwL { + &.fpPbRN { color: $light-color-base-space; background-color: $light-color-primary-lighter; } } - // Parameters values and descriptions - .kGwPhO { - border-bottom-color: $light-color-redoc-type-border; - } - .edBCth { - color: $light-color-shaded-text; - } - - // Value restrictions - .beUper { - color: $light-color-primary-alt; - background-color: $light-color-highlight-background; - } - - // Responses (central column): 200, 400, etc - .sc-ibxdXY { - &.gxJjxJ { - background-color: rgba($light-color-success-dark, .2); - strong { - color: $light-color-success-dark; - } - svg polygon { - fill: $light-color-success-dark; - } + // Samples tabs (in dark background part) + .react-tabs__tab-list { + & > [role="tab"].react-tabs__tab--selected { + color: $light-color-main-text; + background-color: $light-color-base-space; } - &.dUFXgZ { - background-color: rgba($light-color-danger-dark, .2); - strong { - color: $light-color-danger-dark; + [role="tab"] { + color: $dark-color-main-text; + background-color: $dark-color-code-block-background; + &.tab-success::before { + background-color: $light-color-success-dark; + box-shadow: 0 0 3px 0 $dark-color-success-dark; } - svg polygon { - fill: $light-color-danger-dark; + &.tab-error::before { + background-color: $dark-color-danger; + box-shadow: 0 0 3px 0 $dark-color-danger; } - } - } - - // Inline code value - .bMfIUD { - color: $light-color-main-text-extra; - border-color: $light-color-redoc-type-border; - } - - // Samples tabs (in dark background part) - .dOwpAS { - .react-tabs__tab-list { - & > [role="tab"].react-tabs__tab--selected { - color: $light-color-main-text; - background-color: $light-color-base-space; + &.tab-redirect::before { + background-color: $dark-color-warning; + box-shadow: 0 0 3px 0 $dark-color-warning; } - [role="tab"] { - color: $dark-color-main-text; - background-color: $dark-color-code-block-background; - &.tab-success::before { - background-color: $light-color-success-dark; - box-shadow: 0 0 3px 0 $dark-color-success-dark; - } - &.tab-error::before { - background-color: $dark-color-danger; - box-shadow: 0 0 3px 0 $dark-color-danger; - } - &.tab-redirect::before { - background-color: $dark-color-warning; - box-shadow: 0 0 3px 0 $dark-color-warning; - } - &.tab-info::before { - background-color: $dark-color-primary; - box-shadow: 0 0 3px 0 $dark-color-primary; - } + &.tab-info::before { + background-color: $dark-color-primary; + box-shadow: 0 0 3px 0 $dark-color-primary; } } + } - // Samples tab content - & > .react-tabs__tab-panel { - background-color: $dark-color-code-block-background; - } + // Samples tab content + [data-tabs] > .react-tabs__tab-panel { + background-color: $dark-color-code-block-background; } // Code block area container - .sc-gisBJw.gwfZGU { + .react-tabs__tab-panel { // Code block content - .jCgylq { + .redoc-json { background-color: $dark-color-code-block-background; code { background-color: $dark-color-code-block-background; @@ -1114,7 +1191,7 @@ redoc[spec-url] .beRszf { } // Download button - a.sc-hEsumM.jrowNk { + a[download] { color: $light-color-main-text; border-color: $light-color-primary-lighter; &:hover, @@ -1129,27 +1206,16 @@ redoc[spec-url] .beRszf { .menu-content { background-color: $light-color-sidebar-space; - // Menu items text - .hxqNKs, - .iTiWpH { + // Menu items + label[role="menuitem"], + [role="menuitem"] > label { color: $light-color-main-text; - } - label[role="menuitem"] { + background-color: $light-color-sidebar-space; &:hover { color: $light-color-primary; background-color: $light-color-sidebar-space; } - // Menu items text - .hxqNKs, - .iTiWpH, - .dttBLN, - &.idRuNa { - color: $light-color-main-text; - &:hover { - color: $light-color-primary; - } - } svg polygon { fill: $light-color-primary; } @@ -1161,17 +1227,10 @@ redoc[spec-url] .beRszf { } } } - .kwnyAC { - label[role="menuitem"] { - &:hover { - background: transparent - } - } - } } // Search box - .cziLoD { + [role="search"] { input { color: rgba($light-color-main-text, .8); background-image: url("#{$ico-path}svg-icons.svg#search-lt"); @@ -1181,11 +1240,6 @@ redoc[spec-url] .beRszf { color: $light-color-focus-shade; } } - .kwnyAC { - & > li { - background: rgba(255,255,255,.55); - } - } // Central and right content columns .api-content { @@ -1195,16 +1249,7 @@ redoc[spec-url] .beRszf { h4 { color: $light-color-main-text-extra; } - .celZWI { - h1, - h2, - h3, - h4 { - color: $dark-color-main-text; - } - } } - } #version-selector { .dropdown-btn { @@ -1224,6 +1269,7 @@ redoc[spec-url] .beRszf { .dark-theme body { color: $dark-color-main-text; + background-color: $dark-color-redoc-base-space; & > div:not(.loading):first-of-type { @include media-min (xl) { background: linear-gradient(90deg,$dark-color-sidebar-space 50%, $dark-color-index-toc-background 50%) @@ -1248,7 +1294,6 @@ redoc[spec-url] .beRszf { } } } - background-color: $dark-color-redoc-base-space; header { background: $dark-color-redoc-base-space; @media screen and (max-width: 50rem){ @@ -1264,9 +1309,20 @@ redoc[spec-url] .beRszf { border-bottom-color: $dark-color-global-toc-highlight; } } - redoc[spec-url] .beRszf { + redoc[spec-url] .redoc-wrap { color: $dark-color-main-text; + h1, + h2, + h3, + h4, + h5, + h6 { + a:before { + filter: invert(1); + } + } + // Generic links a { color: $dark-color-primary; @@ -1278,27 +1334,114 @@ redoc[spec-url] .beRszf { p { color: $dark-color-main-text; } - .jCgylq { - // Code blocks tokens - .token { - &.boolean { - color: $dark-color-danger; - } - &.number { - color: $light-color-primary-lighter; + // Code blocks tokens + .token { + &.boolean { + color: $dark-color-danger; + } + } + + // Very specific style + [id^="tag/"] [id^="operation/"] > div:first-child > div > div:last-child, // Wazuh Server API + [id^="tag/"] > div > div:first-child > div > div:last-child // Wazuh Cloud API + { + background: transparent; + } + + [id="section/Authentication"] { + & > [id^="section/"] { + & > div > div { + & > div:last-of-type { + border-color: $light-color-table-border; + & > div { + background-color: $dark-color-redoc-table-background; + &:first-child { + border-color: $light-color-table-border; + } + &:last-child { + & > div:nth-child(odd) { + background-color: $dark-color-highlight-background; + } + } + b { + @media screen and (min-width: 50rem){ + border-right-color: $light-color-table-border; + } + } + & > div { + border-bottom-color: $light-color-table-border; + } + } + } } } } - // Simple table style - .dCnGCn table th, - .dCnGCn table td { - border-color: $light-color-table-border; + .api-content [id^="tag/"]>div>div:first-of-type>div:last-of-type { + button:not([aria-label]) { + & > svg { + filter: brightness(3) saturate(0.95); + & + strong { + filter: brightness(3) saturate(0.95); + } + } + } } - .dCnGCn table tr { - background-color: $dark-color-redoc-table-background; - &:nth-child(2n) { - background-color: $dark-color-highlight-background; + + table { + .property-name { + color: $dark-color-main-text; + & + svg { + polygon { + fill: $light-color-primary-lighter; + } + } + } + // Nested expandable properties + & > tbody > tr { + & > [colspan="2"] { + & > div, + & > div [colspan="2"] [colspan="2"] > div, + & > div [colspan="2"] [colspan="2"] [colspan="2"] [colspan="2"] > div { + background: $dark-color-sidebar-space; + } + & > div [colspan="2"] > div, + & > div [colspan="2"] [colspan="2"] [colspan="2"] > div, + & > div [colspan="2"] [colspan="2"] [colspan="2"] [colspan="2"] [colspan="2"] > div { + background-color: $dark-color-redoc-base-space; + } + } + } + tr { + &.expanded { + svg { + polygon { + fill: $light-color-primary-lighter; + } + } + } + } + td { + div { + & > span { + color: #b4b4b4; + } + } + } + td[kind="field"] { + :first-child { + &::before, + &::after { + background-color: $dark-color-primary-lighter; + } + } + // Expandable property + button { + color: $dark-color-main-text; + svg polygon { + fill: $dark-color-primary; + } + } } } @@ -1331,174 +1474,89 @@ redoc[spec-url] .beRszf { } // AUTHORIZATIONS - .sc-epnACN { - color: $light-color-redoc-type-border; - } - .XrbXS { + h5 { color: $light-color-redoc-type-border; border-bottom-color: $light-color-redoc-type-border !important; - } - - // QUERY PARAMETERS and REQUEST BODY SCHEMA - .sc-gqjmRU.LiUBH { - color: $light-color-redoc-type-border !important; - border-bottom-color: $light-color-redoc-type-border !important; - > .sc-hSdWYo.hoUoen { + & + svg { + fill: $dark-color-primary-lighter; + } + span { color: $dark-color-main-text; } } // Properties - .sc-chPdSV.eAybih { + [kind="field"] { color: $dark-color-main-text; - - // Porperty required - .sc-ksYbfQ.sc-hmzhuo.bGITIP { - color: $dark-color-danger; - } } - tr.last:first-of-type > .eAybih, - tr.last:first-of-type > .jMEzIu { + tr.last:first-of-type > [kind="field"] { background-image: none; } // Expandable property - .sc-kjoXOD.jMEzIu, - .sc-kjoXOD.QefOL { - button { - color: $dark-color-main-text; - svg polygon { - fill: $dark-color-primary; - } - } - } - .jMEzIu { + [kind="field"] { border-left-color: $light-color-primary-lighter; } - // Nested expandable properties - .eCjbJc .sc-kpOJdX, - .eCjbJc .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX, - .eCjbJc .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX { - background: $dark-color-sidebar-space; - } - .eCjbJc .sc-kpOJdX .sc-kpOJdX, - .eCjbJc .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX, - .eCjbJc .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX { - background-color: $dark-color-redoc-base-space; - } - // API menu toggle - .imibLw { + svg { color: $dark-color-primary-lighter; } // Properties connecting line - tr:first-of-type > .eAybih, - tr:first-of-type > .jMEzIu { - background-image: linear-gradient(transparent 0%, transparent 28px, $dark-color-primary-lighter 28px, $dark-color-primary-lighter 100%); - } - .eAybih, - .gtEarq { - border-left-color: $dark-color-primary-lighter; - } - tr.last + tr > .gtEarq { - border-left-color: transparent; - } - tr.last { - & > .eAybih, - & > .jMEzIu { - background-image: linear-gradient($dark-color-primary-lighter 0%, $dark-color-primary-lighter 29px, transparent 29px, transparent 100%); - } - &:first-of-type > .eAybih, - &:first-of-type > .jMEzIu { - background-image: none; + table:not(.table) { + & > tbody { + & > tr { + &:first-of-type > td:first-of-type { + background-image: linear-gradient(transparent 0%, transparent 28px, $dark-color-primary-lighter 28px, $dark-color-primary-lighter 100%); + } + & > td:first-of-type { + border-left-color: $dark-color-primary-lighter; + } + } + td:first-of-type { + & > span { + &::before, + &::after { + background-color: $dark-color-primary-lighter; + } + } + } + tr.last + tr > td:first-of-type { + border-left-color: transparent; + } + tr.last { + & > td:first-of-type, + & > [kind="field"] { + background-image: linear-gradient($dark-color-primary-lighter 0%, $dark-color-primary-lighter 29px, transparent 29px, transparent 100%); + } + &:first-of-type > td:first-of-type { + background-image: none; + } + } } } - .bcLONg::before, - .bcLONg::after { - background-color: $dark-color-primary-lighter; - } - - // Array of - .sc-TOsTZ.fKyGWc { - color: $light-color-border-details; - } - - // Array () [] - .sc-hMqMXs.dDdNtD, - .sc-kEYyzF.cMefLx { - color: $dark-color-main-text; - } - - // Types - .sc-kgAjT.hqYVjx { - color: $light-color-redoc-type-border; - } - - // Default - .sc-cHGsZl.lpeYvY { - color: $dark-color-main-text; - } // One of... - .sc-jKJlTe.eZZMfQ { + // Important: this redoc classes may change from version to version + .sc-fUnMCh.kaVHuF { color: $dark-color-main-text; } - .sc-eNQAEJ { - &.jdXjUh { + .sc-hzhJZQ { + &.fCWfjy { color: $light-color-main-text; background-color: $light-color-base-space; border-color: $light-color-base-space; } - &.gYsnwL { + &.fpPbRN { color: $light-color-main-text; background-color: $dark-color-primary-lighter; border-color: $dark-color-primary-lighter; } } - - // Parameters values and descriptions - .edBCth { - color: $light-color-input-placeholder; - } - // Value restrictions - .beUper { - color: $dark-color-primary; - background-color: $dark-color-redoc-base-space; - } - - // Responses (central column): 200, 400, etc - .sc-ibxdXY { - &.gxJjxJ { - background-color: rgba($dark-color-success-dark, .2); - strong { - color: $dark-color-success-dark; - } - svg polygon { - fill: $dark-color-success-dark; - } - } - &.dUFXgZ { - background-color: rgba($dark-color-danger-dark, .2); - strong { - color: $dark-color-danger-dark; - } - svg polygon { - fill: $dark-color-danger-dark; - } - } - } - - // Inline code value - .bMfIUD { - color: $dark-color-main-text; - background-color: $dark-color-redoc-table-heading; - border-color: $dark-color-redoc-table-heading; - } // Samples tabs (in dark background part) - .dOwpAS { + [data-rttabs] { .react-tabs__tab-list { & > [role="tab"].react-tabs__tab--selected { color: $light-color-main-text; @@ -1533,9 +1591,9 @@ redoc[spec-url] .beRszf { } // Code block area container - .sc-gisBJw.gwfZGU { + .react-tabs__tab-panel { // Code block content - .jCgylq { + .redoc-json { background-color: $dark-color-code-block-background; code { background-color: $dark-color-code-block-background; @@ -1554,7 +1612,7 @@ redoc[spec-url] .beRszf { } // Download button - a.sc-hEsumM.jrowNk { + a[download] { color: $dark-color-main-text; border-color: $dark-color-primary; &:hover, @@ -1569,30 +1627,18 @@ redoc[spec-url] .beRszf { .menu-content { background-color: $dark-color-sidebar-space; - // Menu items text - .hxqNKs, - .iTiWpH { + // Menu items + label[role="menuitem"], + [role="menuitem"] > label { color: $dark-color-main-text; - } - label[role="menuitem"] { + background-color: $dark-color-sidebar-space; &:hover { - color: $dark-color-primary-lighter; + // color: $dark-color-primary-lighter; + color: $dark-color-primary; background-color: $dark-color-sidebar-space; + // background: transparent } - // Menu items text - .hxqNKs, - .iTiWpH, - .dttBLN, - &.idRuNa { - color: $dark-color-main-text; - &:hover { - color: $dark-color-primary; - } - } - - // color: $light-color-base-space; - svg polygon { fill: $dark-color-primary; } @@ -1603,19 +1649,11 @@ redoc[spec-url] .beRszf { fill: $light-color-base-space; } } - - } - .kwnyAC { - label[role="menuitem"] { - &:hover { - background: transparent - } - } } } // Search box - .cziLoD { + [role="search"] { input { color: rgba($dark-color-main-text, .8); background-image: url("#{$ico-path}svg-icons.svg#search-dt"); @@ -1624,10 +1662,8 @@ redoc[spec-url] .beRszf { ::placeholder { color: $dark-color-focus-shade; } - } - .kwnyAC { - & > li { - background: rgba(0,0,0,.1); + [data-role="search:results"] { + color: $dark-color-main-text; } } @@ -1640,26 +1676,6 @@ redoc[spec-url] .beRszf { color: $dark-color-main-text; } } - .celZWI { - h1, - h2, - h3, - h4 { - color: $dark-color-main-text; - } - // Endpoint dropdown - .hvYMHo, - .fKwhsn { - background-color: $dark-color-highlight-background; - .hmRbVC { - color: $dark-color-main-text; - background-color: $dark-color-code-block-background; - & > span { - color: $dark-color-main-text; - } - } - } - } } #version-selector { .dropdown-btn { diff --git a/source/_themes/wazuh_doc_theme_v3/static/css/min/api-reference.min.css b/source/_themes/wazuh_doc_theme_v3/static/css/min/api-reference.min.css index c66630873d..4191fb611b 100644 --- a/source/_themes/wazuh_doc_theme_v3/static/css/min/api-reference.min.css +++ b/source/_themes/wazuh_doc_theme_v3/static/css/min/api-reference.min.css @@ -1,2 +1,2 @@ -body{position:relative;margin-top:calc(80px + 54px);font-family:Manrope,sans-serif;font-size:16px;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-assets{position:relative}.icon-assets svg{position:absolute;left:-9999px;overflow:hidden;width:0;height:0}.inner-body{position:relative;width:100%}@media (min-width:1600px){.inner-body{max-width:1600px;margin-left:auto;margin-right:auto}}@media (min-width:1200px){.inner-body{display:flex;flex-direction:row}}@media (min-width:1200px) and (max-width:1299px){.inner-body{max-width:1180px;margin-left:auto;margin-right:auto}}@media (min-width:1300px) and (max-width:1399px){.inner-body{max-width:1250px;margin-left:auto;margin-right:auto}}@media (min-width:1400px) and (max-width:1599px){.inner-body{max-width:1530px;margin-left:auto;margin-right:auto}}@media (min-width:1780px){.inner-body{max-width:1780px;margin-left:auto;margin-right:auto}}.rubric.h1,h1{display:block;width:-moz-fit-content;width:fit-content;margin-top:1.2rem;margin-bottom:1rem;font-size:30px;font-weight:500;letter-spacing:.01em;line-height:1.5em}@media (max-width:1199px){.rubric.h1,h1{font-size:24px}}.rubric.h2,h2{display:block;width:-moz-fit-content;width:fit-content;margin-top:1.2rem;margin-bottom:1rem;font-size:28px;font-weight:600;letter-spacing:.03em}@media (max-width:1199px){.rubric.h2,h2{font-size:23px}}.rubric.h3,h3{display:block;width:-moz-fit-content;width:fit-content;margin-top:1.2rem;margin-bottom:1rem;font-size:22px;font-weight:600;letter-spacing:.03em}@media (max-width:1199px){.rubric.h3,h3{font-size:18px}}.rubric.h4,h4{display:block;width:-moz-fit-content;width:fit-content;margin-top:1.2rem;margin-bottom:1rem;font-size:18px;font-weight:600;letter-spacing:.03em}@media (max-width:1199px){.rubric.h4,h4{font-size:17px}}.rubric.h5,h5{display:block;width:-moz-fit-content;width:fit-content;margin-top:1.2rem;margin-bottom:1rem;font-size:16px;font-weight:600;letter-spacing:.03em}.rubric.h6,h6{display:block;width:-moz-fit-content;width:fit-content;margin-top:1.2rem;margin-bottom:1rem;font-size:16px;font-weight:600;letter-spacing:.03em}main{min-height:calc(100vh - 80px);padding-right:15px;padding-left:15px}@media (max-width:767px){main{min-height:auto}}@media (min-width:1200px){main{min-height:calc(100vh - 80px - 70px);padding-left:30px}}@media (min-width:576px){main>section{padding-left:28px;padding-right:28px}}main img{max-width:100%;margin-top:1rem;margin-bottom:1rem}main p{margin-top:1rem;margin-bottom:1rem;font-family:Manrope,sans-serif;font-style:normal;line-height:32px;letter-spacing:.03em}main table{margin-top:1rem;margin-bottom:1rem}main table td,main table th{vertical-align:middle}.sidebar{flex-shrink:0;position:sticky}.sidebar .sidebar-container{top:0;overflow-y:auto}a{text-decoration:none}a:active{font-weight:600}th .line,th p{margin:0;font-weight:inherit;font-weight:500}cite{font-style:italic}cite:after{content:"";padding-right:3px}@media (min-width:576px){.container{max-width:90%}}@media (min-width:768px){.container{max-width:90%}}@media (min-width:992px){.container{max-width:97%}}@media (min-width:1200px){.container{max-width:1180px}}@media (min-width:1300px){.container{max-width:1250px}}@media (min-width:1600px){.container{max-width:1400px}}.wzh-remark{background-image:linear-gradient(90deg,transparent -1.54%,rgba(13,99,237,.5) 98.88%);display:inline;background-size:100% 5px;background-position:100% 90%;background-repeat:no-repeat;line-height:1.5em;padding-block-end:0.25em}body{color:#292929;background-color:#fff}.light-theme body{color:#292929;background-color:#fff}.light-theme body.document,.light-theme body.not_found,.light-theme body.search{background:linear-gradient(90deg,#f7f7f7 50%,#fff 50%)}.light-theme body #central-column{background-color:#fff}.light-theme body a{color:#256bd1}.light-theme body a:focus,.light-theme body a:hover{color:#3585f9}.light-theme body a:active{color:#256bd1}@media (prefers-color-scheme:dark){body{color:#fff;background-color:#2a2d34}}.dark-theme body{color:#fff;background-color:#2a2d34}.dark-theme body.document,.dark-theme body.not_found,.dark-theme body.search{background:linear-gradient(90deg,#343741 50%,#2a2d34 50%)}.dark-theme body #central-column{background-color:#2a2d34}.dark-theme body a{color:#499cfe}.dark-theme body a:focus,.dark-theme body a:hover{color:#6ca2f0}.dark-theme body a:active{color:#499cfe}.section.accordion-parent{display:inline-block;width:100%;margin-top:0;margin-bottom:0}.accordion-title{display:flex;align-items:center;width:100%;height:1.5em;border-bottom:2px solid}@media (max-width:1199px){.accordion-title{display:inline-block;height:auto}}.accordion-title::before{display:inline-block;width:20px;height:20px;margin-right:10px;content:"";background-repeat:no-repeat;background-position:center;background-size:20px 20px;transition:transform .2s}@media (max-width:1199px){.accordion-title::before{width:14px;height:14px}}.accordion-title.collapsed::before{transition:transform .2s;transform:rotateZ(-90deg)}.light-theme .accordion-title{border-bottom-color:#b7c6d7}.light-theme .accordion-title::before{background-image:url("../../images/icons/svg-icons.svg#chevron-blue-lt")}.dark-theme .accordion-title{border-bottom-color:#e1e1e5}.dark-theme .accordion-title::before{background-image:url("../../images/icons/svg-icons.svg#chevron-blue-dt")}#central-column .admonition{padding:0 20px 1px;margin-top:1rem;margin-bottom:1rem;border-left:5px solid}#central-column .admonition:not(.long){padding-top:15px;padding-bottom:15px}#central-column .admonition:not(.long) p{display:inline;padding-bottom:1rem;margin-bottom:0}#central-column .admonition.long .admonition-title::after{position:absolute;top:18px;left:0;display:inline-block;width:1.5rem;height:1.5rem;vertical-align:middle;content:""}#central-column .admonition.long.attention .admonition-title,#central-column .admonition.long.caution .admonition-title,#central-column .admonition.long.danger .admonition-title,#central-column .admonition.long.error .admonition-title,#central-column .admonition.long.hint .admonition-title,#central-column .admonition.long.important .admonition-title,#central-column .admonition.long.note .admonition-title,#central-column .admonition.long.tip .admonition-title,#central-column .admonition.long.warning .admonition-title{padding-left:38px}#central-column .admonition .admonition-title{position:relative;padding:16px 5px 16px 0;margin-bottom:0;font-size:18px;font-weight:600;line-height:28px}.light-theme #central-column .admonition{color:#292929;background-color:rgba(84,95,115,.05);border-color:#545f73}.light-theme #central-column .admonition .admonition-title{color:#545f73}.light-theme #central-column .admonition.note{border-color:#3585f9;background-color:rgba(53,133,249,.05)}.light-theme #central-column .admonition.note .admonition-title{color:#256bd1}.light-theme #central-column .admonition.note .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-check-lt")}.light-theme #central-column .admonition.warning{border-color:#ff7a2f;background-color:rgba(255,122,47,.05)}.light-theme #central-column .admonition.warning .admonition-title{color:#b35621}.light-theme #central-column .admonition.warning .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-exclamation-orange")}.light-theme #central-column .admonition.attention{border-color:#3585f9;background-color:rgba(53,133,249,.05)}.light-theme #central-column .admonition.attention .admonition-title{color:#256bd1}.light-theme #central-column .admonition.attention .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-bell-lt")}.light-theme #central-column .admonition.caution{border-color:#ff7a2f;background-color:rgba(255,122,47,.05)}.light-theme #central-column .admonition.caution .admonition-title{color:#b35621}.light-theme #central-column .admonition.caution .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-exclamation-orange")}.light-theme #central-column .admonition.danger{border-color:#bd271e;background-color:rgba(189,39,30,.05)}.light-theme #central-column .admonition.danger .admonition-title{color:#bd271e}.light-theme #central-column .admonition.danger .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-exclamation-red-lt")}.light-theme #central-column .admonition.error{border-color:#bd271e;background-color:rgba(189,39,30,.05)}.light-theme #central-column .admonition.error .admonition-title{color:#bd271e}.light-theme #central-column .admonition.error .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-x-lt")}.light-theme #central-column .admonition.hint{border-color:#207d82;background-color:rgba(32,125,130,.05)}.light-theme #central-column .admonition.hint .admonition-title{color:#207d82}.light-theme #central-column .admonition.hint .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-bulb")}.light-theme #central-column .admonition.important{border-color:#3585f9;background-color:rgba(53,133,249,.05)}.light-theme #central-column .admonition.important .admonition-title{color:#256bd1}.light-theme #central-column .admonition.important .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-exclamation-blue-lt")}.light-theme #central-column .admonition.tip{border-color:#207d82;background-color:rgba(32,125,130,.05)}.light-theme #central-column .admonition.tip .admonition-title{color:#207d82}.light-theme #central-column .admonition.tip .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-bulb")}.dark-theme #central-column .admonition{color:#fff;background-color:rgba(146,152,171,.1);border-color:#9298ab}.dark-theme #central-column .admonition .admonition-title{color:#9298ab}.dark-theme #central-column .admonition.note{border-color:#499cfe;background-color:rgba(73,156,254,.1)}.dark-theme #central-column .admonition.note .admonition-title{color:#499cfe}.dark-theme #central-column .admonition.note .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-check-dt")}.dark-theme #central-column .admonition.warning{border-color:#ff7a2f;background-color:rgba(255,122,47,.1)}.dark-theme #central-column .admonition.warning .admonition-title{color:#ff7a2f}.dark-theme #central-column .admonition.warning .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-exclamation-orange")}.dark-theme #central-column .admonition.attention{border-color:#499cfe;background-color:rgba(73,156,254,.1)}.dark-theme #central-column .admonition.attention .admonition-title{color:#499cfe}.dark-theme #central-column .admonition.attention .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-bell-dt")}.dark-theme #central-column .admonition.caution{border-color:#ff7a2f;background-color:rgba(255,122,47,.1)}.dark-theme #central-column .admonition.caution .admonition-title{color:#ff7a2f}.dark-theme #central-column .admonition.caution .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-exclamation-orange")}.dark-theme #central-column .admonition.danger{border-color:#f86b63;background-color:rgba(248,107,99,.1)}.dark-theme #central-column .admonition.danger .admonition-title{color:#f86b63}.dark-theme #central-column .admonition.danger .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-exclamation-red-dt")}.dark-theme #central-column .admonition.error{border-color:#f86b63;background-color:rgba(248,107,99,.1)}.dark-theme #central-column .admonition.error .admonition-title{color:#f86b63}.dark-theme #central-column .admonition.error .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-x-dt")}.dark-theme #central-column .admonition.hint{border-color:#207d82;background-color:rgba(32,125,130,.1)}.dark-theme #central-column .admonition.hint .admonition-title{color:#207d82}.dark-theme #central-column .admonition.hint .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-bulb")}.dark-theme #central-column .admonition.important{border-color:#499cfe;background-color:rgba(73,156,254,.1)}.dark-theme #central-column .admonition.important .admonition-title{color:#499cfe}.dark-theme #central-column .admonition.important .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-exclamation-blue-dt")}.dark-theme #central-column .admonition.tip{border-color:#207d82;background-color:rgba(32,125,130,.1)}.dark-theme #central-column .admonition.tip .admonition-title{color:#207d82}.dark-theme #central-column .admonition.tip .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-bulb")}main .versionmodified{position:relative;display:inline-block;padding-left:38px;font-weight:600}main .versionmodified::before{position:absolute;top:3px;left:0;display:block;width:24px;height:24px;content:""}main .versionmodified.changed::before{background:url("../../images/icons/svg-icons.svg#circle-exclamation-orange")}main .versionmodified.deprecated::before{background:url("../../images/icons/svg-icons.svg#circle-exclamation-orange")}.light-theme .versionmodified.added::before{background:url("../../images/icons/svg-icons.svg#circle-exclamation-blue-lt")}.dark-theme .versionmodified.added::before{background:url("../../images/icons/svg-icons.svg#circle-exclamation-blue-dt")}#central-column .step-card{padding:30px;border-radius:10px}@media (max-width:575px){#central-column .step-card{padding:10px}}#central-column .step-card .rubric.h1,#central-column .step-card .rubric.h2,#central-column .step-card .rubric.h3,#central-column .step-card .rubric.h4,#central-column .step-card .rubric.h5,#central-column .step-card .rubric.h6,#central-column .step-card h1,#central-column .step-card h2,#central-column .step-card h3,#central-column .step-card h4,#central-column .step-card h5,#central-column .step-card h6{display:inline-block;width:100%;padding-bottom:5px;margin-top:0;border-bottom:1px solid}#central-column .step-card.section{margin-top:0}#central-column .step-card.section::before{content:none}#central-column .step-card .section.accordion-parent{margin-top:1rem}.light-theme #central-column .step-card{background-color:#fafcff}.light-theme #central-column .step-card .rubric.h1,.light-theme #central-column .step-card .rubric.h2,.light-theme #central-column .step-card .rubric.h3,.light-theme #central-column .step-card .rubric.h4,.light-theme #central-column .step-card .rubric.h5,.light-theme #central-column .step-card .rubric.h6,.light-theme #central-column .step-card h1,.light-theme #central-column .step-card h2,.light-theme #central-column .step-card h3,.light-theme #central-column .step-card h4,.light-theme #central-column .step-card h5,.light-theme #central-column .step-card h6{color:#256bd1;border-color:#b7c6d7}.dark-theme #central-column .step-card{background-color:#1d2025}.dark-theme #central-column .step-card .rubric.h1,.dark-theme #central-column .step-card .rubric.h2,.dark-theme #central-column .step-card .rubric.h3,.dark-theme #central-column .step-card .rubric.h4,.dark-theme #central-column .step-card .rubric.h5,.dark-theme #central-column .step-card .rubric.h6,.dark-theme #central-column .step-card h1,.dark-theme #central-column .step-card h2,.dark-theme #central-column .step-card h3,.dark-theme #central-column .step-card h4,.dark-theme #central-column .step-card h5,.dark-theme #central-column .step-card h6{color:#499cfe}@media (min-width:1200px){.inner-body:not(.not-top) .breadcrumb-wrapper{top:calc(80px + 54px)}}.not-top .breadcrumb-wrapper{position:fixed}@media (min-width:1200px) and (max-width:1299px){.not-top .breadcrumb-wrapper{max-width:calc(1180px - 465px)}}@media (min-width:1300px) and (max-width:1399px){.not-top .breadcrumb-wrapper{max-width:calc(1250px - 510px)}}@media (min-width:1400px) and (max-width:1599px){.not-top .breadcrumb-wrapper{width:calc(100% - 510px);max-width:calc(1530px - 510px)}}@media (min-width:1600px) and (max-width:1779px){.not-top .breadcrumb-wrapper{max-width:calc(1600px - 510px)}}@media (min-width:1780px){.not-top .breadcrumb-wrapper{max-width:calc(1780px - 560px)}}.breadcrumb-wrapper{order:1;top:80px;z-index:99;display:flex;flex-direction:row;width:100%;min-height:80px;padding:5px 15px 15px 30px}@media (max-width:575px){.breadcrumb-wrapper{position:static;overflow:auto}}@media (max-width:1199px){.breadcrumb-wrapper{top:calc(80px + 54px);align-items:center;padding-left:15px;padding-bottom:5px;position:fixed}}@media (min-width:1200px){.breadcrumb-wrapper{align-items:flex-end;max-height:120px;max-width:100%}}#breadcrumbs{display:block;width:100%;padding:0;margin:0;list-style:none}@media (max-width:575px){#breadcrumbs{display:block}}@media (max-width:575px){#breadcrumbs{font-size:14px}}@media (min-width:1200px) and (max-width:1299px){#breadcrumbs{font-size:14px}}#breadcrumbs li{display:inline}#breadcrumbs .home-icon,.breadcrumbs .home-icon{position:relative;bottom:4px}#breadcrumbs a:focus:first-of-type,#breadcrumbs a:hover:first-of-type,.breadcrumbs a:focus:first-of-type,.breadcrumbs a:hover:first-of-type{text-decoration:none}.breadcrumb-separator::after{display:inline-block;margin:0 7px;font-size:1.1rem;content:"/"}.light-theme .breadcrumb-wrapper{background-color:#fff}.light-theme #breadcrumbs,.light-theme .breadcrumbs{color:#292929;background-color:#fff}.light-theme #breadcrumbs .home-icon,.light-theme .breadcrumbs .home-icon{fill:#3585f9}.light-theme #breadcrumbs a:focus .home-icon,.light-theme #breadcrumbs a:hover .home-icon,.light-theme .breadcrumbs a:focus .home-icon,.light-theme .breadcrumbs a:hover .home-icon{fill:#6ca2f0}.light-theme .breadcrumb-separator::after{color:#292929}.dark-theme .breadcrumb-wrapper{background-color:#2a2d34}.dark-theme #breadcrumbs,.dark-theme .breadcrumbs{color:#fff;background-color:#2a2d34}.dark-theme #breadcrumbs .home-icon,.dark-theme .breadcrumbs .home-icon{fill:#3585f9}.dark-theme #breadcrumbs a:focus .home-icon,.dark-theme #breadcrumbs a:hover .home-icon,.dark-theme .breadcrumbs a:focus .home-icon,.dark-theme .breadcrumbs a:hover .home-icon{fill:#6ca2f0}.dark-theme .breadcrumb-separator::after{color:#fff}main code,main kbd,main pre,main samp{font-family:"Fira Mono",monospace}.literal-block-wrapper.docutils.container{max-width:100%;padding-right:0;padding-left:0}.literal-block-wrapper.docutils.container .code-block-caption{display:flex;align-items:center;justify-content:space-between;height:48px;padding:5px 10px;margin-top:1rem;border-radius:10px 10px 0 0}.literal-block-wrapper.docutils.container .code-block-caption:hover .headerlink::after{opacity:1;transition:opacity ease-in .1s}.literal-block-wrapper.docutils.container tbody tr td{padding:0;border:none}.literal-block-wrapper.docutils.container [class*=highlight-]{margin-top:0}[class*=highlight-]{position:relative;max-width:100%;margin-top:1rem;margin-bottom:1rem;overflow-y:hidden;border:1px solid;transition:max-height .2s}[class*=highlight-].output{max-height:100vh;border-radius:10px}[class*=highlight-].output .output-title{display:flex;align-items:center;width:100%;height:40px;font-weight:600;cursor:pointer;border-radius:10px 10px 0 0}[class*=highlight-].output .output-title::before{width:40px;height:40px;content:"";background-repeat:no-repeat;background-position:center;background-size:18px 18px;transition:transform .1s}[class*=highlight-].output.collapsed{max-height:40px;transition:max-height .2s}[class*=highlight-].output.collapsed .output-title{border-radius:10px;transition:border-radius 50ms .2s}[class*=highlight-].output.collapsed .output-title::before{transition:transform .1s;transform:rotateZ(-90deg)}[class*=highlight-].output.expanded{max-height:unset}[class*=highlight-]:hover .copy-to-clipboard{opacity:1}[class*=highlight-] .copy-to-clipboard{position:absolute;top:7px;right:7px;z-index:10;padding:8px;min-width:28.25px;height:30px;display:flex;cursor:pointer;border:0;border-radius:10px;opacity:0;transition:all .2s ease}[class*=highlight-] .copy-to-clipboard:focus{opacity:1}[class*=highlight-] .copy-to-clipboard.copied{opacity:1}[class*=highlight-] .copy-to-clipboard span{display:none;font-family:Manrope,sans-serif;font-size:.9rem;line-height:1}[class*=highlight-] .copy-to-clipboard svg{width:12.25px;height:14px}[class*=highlight-] .gp,[class*=highlight-] .no-select{-webkit-user-select:none;-moz-user-select:none;user-select:none}[class*=highlight-] td.code pre{z-index:6;padding:0 20px;overflow:visible}[class*=highlight-] .linenos{display:inline-block;height:24px;text-align:right;padding-right:20px;margin-right:20px;width:40px;background-color:transparent;-webkit-user-select:none;-moz-user-select:none;user-select:none;border-right:1px solid}[class*=highlight-] .highlight{position:relative;z-index:0;display:flex;padding:0;overflow-x:auto;font-family:"Fira Mono",monospace;line-height:24px}[class*=highlight-] .highlight pre{position:unset;padding:0 20px 20px;margin:0;line-height:24px}[class*=highlight-] .highlight>pre{padding-top:20px}[class*=highlight-] .highlight .hll{display:block;background-color:transparent}[class*=highlight-] .highlight .hll::before{position:absolute;right:0;left:-50px;z-index:-1;display:block;height:24px;content:""}[class*=highlight-] .highlight .hll>span{position:relative;z-index:25}[class*=highlight-] .highlight .k,[class*=highlight-] .highlight .kn{font-weight:500}[class*=highlight-] .highlight .gp,[class*=highlight-] .highlight .nc,[class*=highlight-] .highlight .ni,[class*=highlight-] .highlight .nn,[class*=highlight-] .highlight .nt,[class*=highlight-] .highlight .ow,[class*=highlight-] .highlight .se{font-weight:400}.light-theme .literal-block-wrapper.docutils.container .code-block-caption{background-color:#fafcff}.light-theme .literal-block-wrapper.docutils.container .code-block-caption .headerlink::after{color:#545f73}.light-theme .admonition [class*=highlight-]{border-color:#b7c6d7}.light-theme [class*=highlight-]{border-color:#e2eefe}.light-theme [class*=highlight-].output{background-color:#f4f6fa}.light-theme [class*=highlight-].output .output-title{background-color:#fafcff}.light-theme [class*=highlight-].output .output-title::before{background-image:url("../../images/icons/svg-icons.svg#chevron-blue-lt")}.light-theme [class*=highlight-] .linenos{background-color:transparent;border-right-color:#dce8f8}.light-theme [class*=highlight-] .copy-to-clipboard{color:#292929;background-color:#f7f7f7}.light-theme [class*=highlight-] .copy-to-clipboard svg{fill:#292929}.light-theme [class*=highlight-] .copy-to-clipboard:hover{color:#fff;background-color:#3585f9}.light-theme [class*=highlight-] .copy-to-clipboard:hover svg{fill:#fff}.light-theme [class*=highlight-] .copy-to-clipboard.copied{color:#fff;background-color:#256bd1}.light-theme [class*=highlight-] .copy-to-clipboard.copied svg{fill:#fff}.light-theme [class*=highlight-] .linenodiv{border-right-color:#dce8f8}.light-theme [class*=highlight-] .linenodiv pre{color:#545f73}.light-theme [class*=highlight-] .highlight{color:#000;background-color:#f4f6fa}.light-theme [class*=highlight-] .highlight .hll::before{background-color:#e2eefe}.light-theme [class*=highlight-] .highlight .gp,.light-theme [class*=highlight-] .highlight .no-select{color:rgba(0,0,0,.54)}.light-theme [class*=highlight-] .highlight .mo,.light-theme [class*=highlight-] .highlight .nc,.light-theme [class*=highlight-] .highlight .ni,.light-theme [class*=highlight-] .highlight .nn,.light-theme [class*=highlight-] .highlight .ow{color:#000}.light-theme [class*=highlight-] .highlight .k,.light-theme [class*=highlight-] .highlight .kn{color:#000}.light-theme [class*=highlight-] .highlight .c,.light-theme [class*=highlight-] .highlight .c1,.light-theme [class*=highlight-] .highlight .ch,.light-theme [class*=highlight-] .highlight .cm,.light-theme [class*=highlight-] .highlight .cp,.light-theme [class*=highlight-] .highlight .go,.light-theme [class*=highlight-] .highlight .sd{color:#80700a}.light-theme [class*=highlight-] .highlight .m,.light-theme [class*=highlight-] .highlight .mi{color:#0e4a9f}.light-theme [class*=highlight-] .highlight .heredoc,.light-theme [class*=highlight-] .highlight .heredoc span,.light-theme [class*=highlight-] .highlight .s,.light-theme [class*=highlight-] .highlight .s1,.light-theme [class*=highlight-] .highlight .s2,.light-theme [class*=highlight-] .highlight .sb,.light-theme [class*=highlight-] .highlight .se,.light-theme [class*=highlight-] .highlight .sh,.light-theme [class*=highlight-] .highlight .si{color:#bd3d9c}.light-theme [class*=highlight-] .highlight .bp,.light-theme [class*=highlight-] .highlight .n,.light-theme [class*=highlight-] .highlight .nb,.light-theme [class*=highlight-] .highlight .nf,.light-theme [class*=highlight-] .highlight .vm{color:#256bd1}.light-theme [class*=highlight-] .highlight .na,.light-theme [class*=highlight-] .highlight .no,.light-theme [class*=highlight-] .highlight .nt,.light-theme [class*=highlight-] .highlight .nv{color:#7c3db2}.light-theme .highlight-console .highlight pre .nb{color:#000}.dark-theme .literal-block-wrapper.docutils.container .code-block-caption{background-color:#343741}.dark-theme .literal-block-wrapper.docutils.container .code-block-caption .headerlink::after{color:#9298ab}.dark-theme .admonition [class*=highlight-]{border-color:#25252c}.dark-theme [class*=highlight-]{border-color:transparent}.dark-theme [class*=highlight-].output{background-color:#25252c}.dark-theme [class*=highlight-].output .output-title{color:#fff;background-color:#191919}.dark-theme [class*=highlight-].output .output-title::before{background-image:url("../../images/icons/svg-icons.svg#chevron-blue-dt")}.dark-theme [class*=highlight-] .linenos{background-color:transparent;border-right-color:#b7c6d7}.dark-theme [class*=highlight-] .copy-to-clipboard{color:#fff;background-color:#343741}.dark-theme [class*=highlight-] .copy-to-clipboard svg{fill:#fff}.dark-theme [class*=highlight-] .copy-to-clipboard:hover{color:#2a2d34;background-color:#6ca2f0}.dark-theme [class*=highlight-] .copy-to-clipboard:hover svg{fill:#2a2d34}.dark-theme [class*=highlight-] .copy-to-clipboard.copied{color:#2a2d34;background-color:#499cfe}.dark-theme [class*=highlight-] .copy-to-clipboard.copied svg{fill:#2a2d34}.dark-theme [class*=highlight-] .linenodiv{border-right-color:#b7c6d7}.dark-theme [class*=highlight-] .linenodiv pre{color:#9298ab}.dark-theme [class*=highlight-] .highlight{background-color:#25252c}.dark-theme [class*=highlight-] .highlight pre{color:#fff}.dark-theme [class*=highlight-] .highlight .hll::before{background-color:#191919}.dark-theme [class*=highlight-] .highlight .gp,.dark-theme [class*=highlight-] .highlight .no-select{color:rgba(255,255,255,.54)}.dark-theme [class*=highlight-] .highlight .mo,.dark-theme [class*=highlight-] .highlight .nc,.dark-theme [class*=highlight-] .highlight .ni,.dark-theme [class*=highlight-] .highlight .nn,.dark-theme [class*=highlight-] .highlight .ow{color:#fff}.dark-theme [class*=highlight-] .highlight .k,.dark-theme [class*=highlight-] .highlight .kn{color:#fff}.dark-theme [class*=highlight-] .highlight .c,.dark-theme [class*=highlight-] .highlight .c1,.dark-theme [class*=highlight-] .highlight .ch,.dark-theme [class*=highlight-] .highlight .cm,.dark-theme [class*=highlight-] .highlight .cp,.dark-theme [class*=highlight-] .highlight .go,.dark-theme [class*=highlight-] .highlight .sd{color:#ffe853}.dark-theme [class*=highlight-] .highlight .m,.dark-theme [class*=highlight-] .highlight .mi{color:#6ca2f0}.dark-theme [class*=highlight-] .highlight .heredoc,.dark-theme [class*=highlight-] .highlight .heredoc span,.dark-theme [class*=highlight-] .highlight .s,.dark-theme [class*=highlight-] .highlight .s1,.dark-theme [class*=highlight-] .highlight .s2,.dark-theme [class*=highlight-] .highlight .sb,.dark-theme [class*=highlight-] .highlight .se,.dark-theme [class*=highlight-] .highlight .sh,.dark-theme [class*=highlight-] .highlight .si{color:#f6b7f6}.dark-theme [class*=highlight-] .highlight .bp,.dark-theme [class*=highlight-] .highlight .n,.dark-theme [class*=highlight-] .highlight .nb,.dark-theme [class*=highlight-] .highlight .nf,.dark-theme [class*=highlight-] .highlight .vm{color:#499cfe}.dark-theme [class*=highlight-] .highlight .na,.dark-theme [class*=highlight-] .highlight .no,.dark-theme [class*=highlight-] .highlight .nt,.dark-theme [class*=highlight-] .highlight .nv{color:#b677dc}.dark-theme .highlight-console .highlight pre .nb{color:#fff}.sphinx-tabs{margin-top:1.5rem;margin-bottom:1.5rem;padding:0;font-family:Manrope,sans-serif;position:relative;z-index:0}.sphinx-tabs.docutils.container{max-width:100%}.sphinx-tabs [role=tablist]{flex-wrap:wrap-reverse;padding:0;border:none}.sphinx-tabs [role=tablist] [role=tab]{position:relative;z-index:0;font-family:Manrope,sans-serif;padding:23px calc(23px + .15%);font-weight:500;border:1px solid;border-radius:10px 10px 0 0!important}@media (max-width:575px){.sphinx-tabs [role=tablist] [role=tab]{padding:12px calc(12px + .15%)}}.sphinx-tabs [role=tablist] [role=tab][aria-selected=true]{padding:23px;font-weight:600;pointer-events:none;position:relative;z-index:20;bottom:-1px}@media (max-width:575px){.sphinx-tabs [role=tablist] [role=tab][aria-selected=true]{padding:12px}}.sphinx-tabs .sphinx-tabs-panel{padding:.5em 1em;border:1px solid;margin:0;border-radius:0 0 10px 10px;position:relative;z-index:10}.light-theme .sphinx-tabs [role=tablist] [role=tab]{color:#292929;background-color:#f7f7f7;border-color:#f7f7f7}.light-theme .sphinx-tabs [role=tablist] [role=tab][aria-selected=true]{color:#256bd1;background-color:#fff;border-color:#256bd1 #256bd1 #fff #256bd1}.light-theme .sphinx-tabs [role=tablist] [role=tab][aria-selected=true]:hover{background-color:#fff;border-bottom-color:#fff}.light-theme .sphinx-tabs [role=tablist] [role=tab]:hover{color:#256bd1;background-color:#f7f7f7;border-color:#256bd1 #256bd1 #fff #256bd1}.light-theme .sphinx-tabs .sphinx-tabs-panel{border-color:#256bd1;color:#292929;background-color:#fff}.dark-theme .sphinx-tabs [role=tablist] [role=tab]{color:#fff;background-color:#242424;border-color:#242424}.dark-theme .sphinx-tabs [role=tablist] [role=tab][aria-selected=true]{color:#499cfe;background-color:#14161a;border-color:#499cfe #499cfe #14161a #499cfe}.dark-theme .sphinx-tabs [role=tablist] [role=tab][aria-selected=true]:hover{background-color:#14161a;border-bottom-color:#14161a}.dark-theme .sphinx-tabs [role=tablist] [role=tab]:hover{color:#499cfe;background-color:#242424;border-color:#499cfe #499cfe #14161a #499cfe}.dark-theme .sphinx-tabs .sphinx-tabs-panel{border-color:#499cfe;color:#fff;background-color:#14161a}#wazuh-light-box-overlay{z-index:2000}#wazuh-light-box{z-index:2100}#wazuh-light-box .wazuh-light-box-slides-container{padding:60px;margin:60px}#wazuh-light-box .wlb-image{max-height:calc(100vh - 8rem - 40px);border:10px solid #f0f2f6}.wazuh-image-wrapper{display:inline}.link-boxes-group{display:flex;flex-wrap:wrap;justify-content:space-between;margin:2rem auto}@media (max-width:767px){.link-boxes-group.limited-width{flex-direction:column}}@media (max-width:767px){.link-boxes-group[data-step]{position:relative;padding-left:60px}}.link-boxes-group[data-step] .link-boxes-item .link-boxes-link{padding-top:15px;padding-bottom:15px}.link-boxes-group[data-step] .link-boxes-item .link-boxes-link img{max-width:unset}@media (min-width:1200px) and (max-width:1299px){.link-boxes-group[data-step] .link-boxes-item .link-boxes-link img{max-height:50px}}.link-boxes-group .steps-line{position:relative;display:flex;flex-direction:row;width:100%;height:48px;margin-bottom:32px;justify-content:space-around;align-items:center;z-index:1}@media (max-width:767px){.link-boxes-group .steps-line{position:absolute;top:0;left:0;bottom:0;width:48px;height:calc(100% - 15px);margin-bottom:0;flex-direction:column}}.link-boxes-group .steps-line::before{position:absolute;top:24px;left:0;right:0;content:"";width:100%;height:3px;background-color:#c5c5c5;display:block;z-index:2}@media (max-width:767px){.link-boxes-group .steps-line::before{top:0;bottom:0;left:24px;width:3px;height:100%}}.link-boxes-group .steps-line .steps-number{font-size:18px;display:flex;width:39px;height:39px;border:2px solid;border-radius:25px;z-index:4;justify-content:center;align-items:center;position:relative;overflow:hidden}.link-boxes-group .steps-line .steps-number.past-step:before{content:"";width:23px;height:23px;display:block;background:#fff;position:absolute;top:6px;left:6px;border:7px solid transparent;border-radius:50%}.link-boxes-group .steps-line .steps-number.past-step:after{content:"";display:block;width:35px;height:35px;background-position:center;background-size:cover;position:absolute;top:0;bottom:0;right:0;left:0}.link-boxes-group .steps-line .steps-number.current-step{font-size:22px;width:48px;height:48px}.link-boxes-group.layout-2 .link-boxes-item,.link-boxes-group.layout-2x2 .link-boxes-item{width:calc((100% - 15px)/ 2)}@media (max-width:767px){.link-boxes-group.layout-2 .link-boxes-item,.link-boxes-group.layout-2x2 .link-boxes-item{width:calc((100% - 15px)/ 2)}}@media (max-width:575px){.link-boxes-group.layout-2 .link-boxes-item,.link-boxes-group.layout-2x2 .link-boxes-item{width:100%}}.link-boxes-group.layout-3 .link-boxes-item{width:calc((100% - 30px)/ 3)}@media (max-width:767px){.link-boxes-group.layout-3 .link-boxes-item{width:100%}}.link-boxes-group.layout-3 .link-boxes-item .link-boxes-link p:not(.link-boxes-label){min-width:135px;flex-basis:0;text-align:center}.link-boxes-group.layout-3.limited-width .link-boxes-item{max-width:320px}.link-boxes-group.layout-4 .link-boxes-item{width:calc((100% - 45px)/ 4)}@media (max-width:767px){.link-boxes-group.layout-4 .link-boxes-item{width:calc((100% - 15px)/ 2)}}@media (max-width:575px){.link-boxes-group.layout-4 .link-boxes-item{width:100%}}.link-boxes-group.layout-4 .link-boxes-item .link-boxes-link p:not(.link-boxes-label){min-width:135px;flex-basis:0;text-align:center}.link-boxes-group.layout-5 .link-boxes-item{width:calc((100% - 60px)/ 5)}@media (max-width:767px){.link-boxes-group.layout-5 .link-boxes-item{width:calc((100% - 15px)/ 2)}}@media (max-width:575px){.link-boxes-group.layout-5 .link-boxes-item{width:100%}}.link-boxes-group.layout-5 .link-boxes-item .link-boxes-link p:not(.link-boxes-label){min-width:135px;flex-basis:0;text-align:center}.link-boxes-group.layout-6 .link-boxes-item{width:calc((100% - 75px)/ 6)}@media (max-width:767px){.link-boxes-group.layout-6 .link-boxes-item{width:calc((100% - 15px)/ 2)}}@media (min-width:768px) and (max-width:991px){.link-boxes-group.layout-6 .link-boxes-item{width:calc((100% - 30px)/ 3)}}.link-boxes-group.layout-6 .link-boxes-item .link-boxes-link p:not(.link-boxes-label){min-width:135px;flex-basis:0;text-align:center}.link-boxes-group .link-boxes-item{padding-bottom:15px;display:flex;justify-content:center;align-items:center;margin:0 auto}.link-boxes-group .link-boxes-item:last-child{padding-right:0}.link-boxes-group .link-boxes-item.current-step{cursor:default}.link-boxes-group .link-boxes-item.current-step .link-boxes-label{display:none}.link-boxes-group .link-boxes-item img{border:none}@media (min-width:768px){.link-boxes-group .link-boxes-item .link-boxes-link{min-height:90px}}.link-boxes-group .link-boxes-item .link-boxes-link img{display:inline-block;margin:10px 6px}@media (min-width:1200px) and (max-width:1299px){.link-boxes-group .link-boxes-item .link-boxes-link img{margin:0}}.link-boxes-group .link-boxes-item .doc,.link-boxes-group .link-boxes-item .link-boxes-link{background-color:#fff;position:relative;box-sizing:border-box;min-width:60px;padding:10px;overflow:hidden;color:#292929;box-shadow:3px 3px 7px rgba(0,0,0,.1);border-radius:10px;display:flex;align-items:center;justify-content:center;width:100%;height:100%}.link-boxes-group .link-boxes-item .doc.vertical-content,.link-boxes-group .link-boxes-item .link-boxes-link.vertical-content{flex-direction:column}.link-boxes-group .link-boxes-item .doc.vertical-content img,.link-boxes-group .link-boxes-item .link-boxes-link.vertical-content img{margin-top:0;margin-bottom:0}.link-boxes-group .link-boxes-item .doc:hover .link-boxes-label,.link-boxes-group .link-boxes-item .link-boxes-link:hover .link-boxes-label{opacity:1}.link-boxes-group .link-boxes-item .doc p,.link-boxes-group .link-boxes-item .link-boxes-link p{padding:7px;margin-top:0;margin-bottom:0;line-height:26px}.link-boxes-group .link-boxes-item .link-boxes-label{position:absolute;top:0;bottom:0;display:flex;align-items:center;justify-content:center;width:100%;margin:0;font-size:18px;font-weight:500;line-height:25px;color:#fff;text-align:center;letter-spacing:0;opacity:0;padding:15px}.light-theme .link-boxes-group.layout-2[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 -25%,#c5c5c5 -25%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-2[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#3585f9 -25%,#c5c5c5 -25%)}}.light-theme .link-boxes-group.layout-2[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 25%,#c5c5c5 25%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-2[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#3585f9 25%,#c5c5c5 25%)}}.light-theme .link-boxes-group.layout-2[data-step="2"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-2[data-step="3"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-2[data-step="4"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-2[data-step="5"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-2[data-step="6"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-3[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 -16.6666666667%,#c5c5c5 -16.6666666667%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-3[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#3585f9 -16.6666666667%,#c5c5c5 -16.6666666667%)}}.light-theme .link-boxes-group.layout-3[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 16.6666666667%,#c5c5c5 16.6666666667%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-3[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#3585f9 16.6666666667%,#c5c5c5 16.6666666667%)}}.light-theme .link-boxes-group.layout-3[data-step="2"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 50%,#c5c5c5 50%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-3[data-step="2"] .steps-line::before{background:linear-gradient(180deg,#3585f9 50%,#c5c5c5 50%)}}.light-theme .link-boxes-group.layout-3[data-step="3"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-3[data-step="4"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-3[data-step="5"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-3[data-step="6"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-4[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 -12.5%,#c5c5c5 -12.5%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-4[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#3585f9 -12.5%,#c5c5c5 -12.5%)}}.light-theme .link-boxes-group.layout-4[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 12.5%,#c5c5c5 12.5%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-4[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#3585f9 12.5%,#c5c5c5 12.5%)}}.light-theme .link-boxes-group.layout-4[data-step="2"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 37.5%,#c5c5c5 37.5%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-4[data-step="2"] .steps-line::before{background:linear-gradient(180deg,#3585f9 37.5%,#c5c5c5 37.5%)}}.light-theme .link-boxes-group.layout-4[data-step="3"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 62.5%,#c5c5c5 62.5%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-4[data-step="3"] .steps-line::before{background:linear-gradient(180deg,#3585f9 62.5%,#c5c5c5 62.5%)}}.light-theme .link-boxes-group.layout-4[data-step="4"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-4[data-step="5"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-4[data-step="6"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-5[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 -10%,#c5c5c5 -10%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-5[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#3585f9 -10%,#c5c5c5 -10%)}}.light-theme .link-boxes-group.layout-5[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 10%,#c5c5c5 10%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-5[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#3585f9 10%,#c5c5c5 10%)}}.light-theme .link-boxes-group.layout-5[data-step="2"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 30%,#c5c5c5 30%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-5[data-step="2"] .steps-line::before{background:linear-gradient(180deg,#3585f9 30%,#c5c5c5 30%)}}.light-theme .link-boxes-group.layout-5[data-step="3"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 50%,#c5c5c5 50%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-5[data-step="3"] .steps-line::before{background:linear-gradient(180deg,#3585f9 50%,#c5c5c5 50%)}}.light-theme .link-boxes-group.layout-5[data-step="4"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 70%,#c5c5c5 70%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-5[data-step="4"] .steps-line::before{background:linear-gradient(180deg,#3585f9 70%,#c5c5c5 70%)}}.light-theme .link-boxes-group.layout-5[data-step="5"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-5[data-step="6"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-6[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 -8.3333333333%,#c5c5c5 -8.3333333333%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-6[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#3585f9 -8.3333333333%,#c5c5c5 -8.3333333333%)}}.light-theme .link-boxes-group.layout-6[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 8.3333333333%,#c5c5c5 8.3333333333%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-6[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#3585f9 8.3333333333%,#c5c5c5 8.3333333333%)}}.light-theme .link-boxes-group.layout-6[data-step="2"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 25%,#c5c5c5 25%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-6[data-step="2"] .steps-line::before{background:linear-gradient(180deg,#3585f9 25%,#c5c5c5 25%)}}.light-theme .link-boxes-group.layout-6[data-step="3"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 41.6666666667%,#c5c5c5 41.6666666667%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-6[data-step="3"] .steps-line::before{background:linear-gradient(180deg,#3585f9 41.6666666667%,#c5c5c5 41.6666666667%)}}.light-theme .link-boxes-group.layout-6[data-step="4"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 58.3333333333%,#c5c5c5 58.3333333333%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-6[data-step="4"] .steps-line::before{background:linear-gradient(180deg,#3585f9 58.3333333333%,#c5c5c5 58.3333333333%)}}.light-theme .link-boxes-group.layout-6[data-step="5"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 75%,#c5c5c5 75%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-6[data-step="5"] .steps-line::before{background:linear-gradient(180deg,#3585f9 75%,#c5c5c5 75%)}}.light-theme .link-boxes-group.layout-6[data-step="6"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group .steps-line .steps-number.past-step{box-shadow:0 0 0 5px #3585f9 inset,3px 3px 7px rgba(0,0,0,.1);border-color:#3585f9;background-color:#3585f9;color:#fff}.light-theme .link-boxes-group .steps-line .steps-number.past-step:after{background:url("../../images/icons/svg-icons.svg#circle-check-lt")}.light-theme .link-boxes-group .steps-line .steps-number.current-step{border-color:#3585f9;background-color:#fff;color:#3585f9}.light-theme .link-boxes-group .steps-line .steps-number.future-step{background-color:#c5c5c5;border-color:#c5c5c5;color:#fff}.light-theme .link-boxes-group .link-boxes-item.current-step .link-boxes-link,.light-theme .link-boxes-group .link-boxes-item.past-step .link-boxes-link{box-shadow:0 0 0 10px #3585f9 inset,3px 3px 7px rgba(0,0,0,.1);background-color:#3585f9}.light-theme .link-boxes-group .link-boxes-item.current-step .link-boxes-link .link-boxes-label,.light-theme .link-boxes-group .link-boxes-item.current-step .link-boxes-link img,.light-theme .link-boxes-group .link-boxes-item.past-step .link-boxes-link .link-boxes-label,.light-theme .link-boxes-group .link-boxes-item.past-step .link-boxes-link img{background-color:#3585f9}.light-theme .link-boxes-group .link-boxes-item a.link-boxes-link:hover{box-shadow:0 0 0 10px #256bd1 inset,3px 3px 7px rgba(0,0,0,.1)}.light-theme .link-boxes-group .link-boxes-item a.link-boxes-link:hover .link-boxes-label{background-color:#256bd1}.dark-theme .link-boxes-group.layout-2[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 -25%,#c5c5c5 -25%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-2[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 -25%,#c5c5c5 -25%)}}.dark-theme .link-boxes-group.layout-2[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 25%,#c5c5c5 25%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-2[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 25%,#c5c5c5 25%)}}.dark-theme .link-boxes-group.layout-2[data-step="2"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-2[data-step="3"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-2[data-step="4"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-2[data-step="5"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-2[data-step="6"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-3[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 -16.6666666667%,#c5c5c5 -16.6666666667%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-3[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 -16.6666666667%,#c5c5c5 -16.6666666667%)}}.dark-theme .link-boxes-group.layout-3[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 16.6666666667%,#c5c5c5 16.6666666667%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-3[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 16.6666666667%,#c5c5c5 16.6666666667%)}}.dark-theme .link-boxes-group.layout-3[data-step="2"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 50%,#c5c5c5 50%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-3[data-step="2"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 50%,#c5c5c5 50%)}}.dark-theme .link-boxes-group.layout-3[data-step="3"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-3[data-step="4"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-3[data-step="5"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-3[data-step="6"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-4[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 -12.5%,#c5c5c5 -12.5%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-4[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 -12.5%,#c5c5c5 -12.5%)}}.dark-theme .link-boxes-group.layout-4[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 12.5%,#c5c5c5 12.5%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-4[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 12.5%,#c5c5c5 12.5%)}}.dark-theme .link-boxes-group.layout-4[data-step="2"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 37.5%,#c5c5c5 37.5%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-4[data-step="2"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 37.5%,#c5c5c5 37.5%)}}.dark-theme .link-boxes-group.layout-4[data-step="3"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 62.5%,#c5c5c5 62.5%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-4[data-step="3"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 62.5%,#c5c5c5 62.5%)}}.dark-theme .link-boxes-group.layout-4[data-step="4"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-4[data-step="5"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-4[data-step="6"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-5[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 -10%,#c5c5c5 -10%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-5[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 -10%,#c5c5c5 -10%)}}.dark-theme .link-boxes-group.layout-5[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 10%,#c5c5c5 10%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-5[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 10%,#c5c5c5 10%)}}.dark-theme .link-boxes-group.layout-5[data-step="2"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 30%,#c5c5c5 30%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-5[data-step="2"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 30%,#c5c5c5 30%)}}.dark-theme .link-boxes-group.layout-5[data-step="3"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 50%,#c5c5c5 50%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-5[data-step="3"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 50%,#c5c5c5 50%)}}.dark-theme .link-boxes-group.layout-5[data-step="4"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 70%,#c5c5c5 70%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-5[data-step="4"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 70%,#c5c5c5 70%)}}.dark-theme .link-boxes-group.layout-5[data-step="5"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-5[data-step="6"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-6[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 -8.3333333333%,#c5c5c5 -8.3333333333%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-6[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 -8.3333333333%,#c5c5c5 -8.3333333333%)}}.dark-theme .link-boxes-group.layout-6[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 8.3333333333%,#c5c5c5 8.3333333333%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-6[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 8.3333333333%,#c5c5c5 8.3333333333%)}}.dark-theme .link-boxes-group.layout-6[data-step="2"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 25%,#c5c5c5 25%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-6[data-step="2"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 25%,#c5c5c5 25%)}}.dark-theme .link-boxes-group.layout-6[data-step="3"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 41.6666666667%,#c5c5c5 41.6666666667%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-6[data-step="3"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 41.6666666667%,#c5c5c5 41.6666666667%)}}.dark-theme .link-boxes-group.layout-6[data-step="4"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 58.3333333333%,#c5c5c5 58.3333333333%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-6[data-step="4"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 58.3333333333%,#c5c5c5 58.3333333333%)}}.dark-theme .link-boxes-group.layout-6[data-step="5"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 75%,#c5c5c5 75%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-6[data-step="5"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 75%,#c5c5c5 75%)}}.dark-theme .link-boxes-group.layout-6[data-step="6"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group .steps-line .steps-number.past-step{box-shadow:0 0 0 5px #6ca2f0 inset;border-color:#6ca2f0;background:#6ca2f0;color:#fff}.dark-theme .link-boxes-group .steps-line .steps-number.past-step:after{background:url("../../images/icons/svg-icons.svg#circle-check-dt")}.dark-theme .link-boxes-group .steps-line .steps-number.current-step{border-color:#6ca2f0;background-color:#fff;color:#6ca2f0}.dark-theme .link-boxes-group .steps-line .steps-number.future-step{background-color:#c5c5c5;border-color:#c5c5c5;color:#fff}.dark-theme .link-boxes-group .link-boxes-item.current-step .link-boxes-link,.dark-theme .link-boxes-group .link-boxes-item.past-step .link-boxes-link{box-shadow:0 0 0 10px #6ca2f0 inset;background-color:#6ca2f0}.dark-theme .link-boxes-group .link-boxes-item.current-step .link-boxes-link .link-boxes-label,.dark-theme .link-boxes-group .link-boxes-item.current-step .link-boxes-link img,.dark-theme .link-boxes-group .link-boxes-item.past-step .link-boxes-link .link-boxes-label,.dark-theme .link-boxes-group .link-boxes-item.past-step .link-boxes-link img{background-color:#6ca2f0}.dark-theme .link-boxes-group .link-boxes-item a.link-boxes-link:hover{box-shadow:0 0 0 10px #499cfe inset}.dark-theme .link-boxes-group .link-boxes-item a.link-boxes-link:hover .link-boxes-label{background-color:#499cfe}.navigation-buttons{display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding-top:20px;padding-bottom:15px;margin-top:2.5rem;border-top:1px solid}.navigation-buttons a{display:inline-flex;flex-direction:row;align-items:center;font-size:14px;font-weight:500}.navigation-buttons a:hover{text-decoration:none}.navigation-buttons a:first-of-type{padding-right:15px}.navigation-buttons a:last-of-type{padding-left:15px}.navigation-buttons .chevron{flex-shrink:0;width:25px;height:25px;background-position:center;background-size:22px 22px}.navigation-buttons .chevron.left{margin-right:5px;transform:rotate(90deg)}.navigation-buttons .chevron.right{margin-left:5px;transform:rotate(-90deg)}.index .navigation-buttons a:last-of-type{margin-left:auto}.light-theme .navigation-buttons{border-top-color:#c1ccd9}.light-theme .navigation-buttons a:hover{color:#3585f9}.light-theme .navigation-buttons a:hover .chevron{background-image:url("../../images/icons/svg-icons.svg#chevron-blue-light-lt")}.light-theme .navigation-buttons .chevron{background-image:url("../../images/icons/svg-icons.svg#chevron-blue-lt")}.dark-theme .navigation-buttons{border-top-color:#fff}.dark-theme .navigation-buttons a:hover{color:#6ca2f0}.dark-theme .navigation-buttons a:hover .chevron{background-image:url("../../images/icons/svg-icons.svg#chevron-blue-light-dt")}.dark-theme .navigation-buttons .chevron{background-image:url("../../images/icons/svg-icons.svg#chevron-blue-dt")}.pre-v3.api-reference #central-column{padding-top:calc(80px + 60px)}.pre-v3 #central-column dl dd{padding-left:0}.pre-v3 #central-column blockquote{padding-left:1.7rem}.pre-v3 #central-column blockquote blockquote{margin-bottom:0;padding-left:0}.pre-v3 #central-column blockquote dl,.pre-v3 #central-column blockquote ul{padding-left:0}.pre-v3 #central-column ol blockquote{padding-left:0}.pre-v3 #central-column ol ol,.pre-v3 #central-column ol ul,.pre-v3 #central-column ul ol,.pre-v3 #central-column ul ul{padding-left:1.1rem}.pre-v3 #central-column ol+blockquote{padding-left:2.5rem}.pre-v3 #central-column ol ol{list-style-type:lower-alpha}.pre-v3 #central-column .admonition.attention:not(.long),.pre-v3 #central-column .admonition.caution:not(.long),.pre-v3 #central-column .admonition.danger:not(.long),.pre-v3 #central-column .admonition.error:not(.long),.pre-v3 #central-column .admonition.hint:not(.long),.pre-v3 #central-column .admonition.important:not(.long),.pre-v3 #central-column .admonition.note:not(.long),.pre-v3 #central-column .admonition.tip:not(.long),.pre-v3 #central-column .admonition.warning:not(.long){padding-top:0;padding-bottom:0}.pre-v3 #central-column .admonition.attention:not(.long) p,.pre-v3 #central-column .admonition.caution:not(.long) p,.pre-v3 #central-column .admonition.danger:not(.long) p,.pre-v3 #central-column .admonition.error:not(.long) p,.pre-v3 #central-column .admonition.hint:not(.long) p,.pre-v3 #central-column .admonition.important:not(.long) p,.pre-v3 #central-column .admonition.note:not(.long) p,.pre-v3 #central-column .admonition.tip:not(.long) p,.pre-v3 #central-column .admonition.warning:not(.long) p{display:block}.pre-v3 #central-column .admonition.attention:not(.long) .admonition-title,.pre-v3 #central-column .admonition.caution:not(.long) .admonition-title,.pre-v3 #central-column .admonition.danger:not(.long) .admonition-title,.pre-v3 #central-column .admonition.error:not(.long) .admonition-title,.pre-v3 #central-column .admonition.hint:not(.long) .admonition-title,.pre-v3 #central-column .admonition.important:not(.long) .admonition-title,.pre-v3 #central-column .admonition.note:not(.long) .admonition-title,.pre-v3 #central-column .admonition.tip:not(.long) .admonition-title,.pre-v3 #central-column .admonition.warning:not(.long) .admonition-title{padding-left:38px}.pre-v3 #central-column .admonition.attention:not(.long) .admonition-title::after,.pre-v3 #central-column .admonition.caution:not(.long) .admonition-title::after,.pre-v3 #central-column .admonition.danger:not(.long) .admonition-title::after,.pre-v3 #central-column .admonition.error:not(.long) .admonition-title::after,.pre-v3 #central-column .admonition.hint:not(.long) .admonition-title::after,.pre-v3 #central-column .admonition.important:not(.long) .admonition-title::after,.pre-v3 #central-column .admonition.note:not(.long) .admonition-title::after,.pre-v3 #central-column .admonition.tip:not(.long) .admonition-title::after,.pre-v3 #central-column .admonition.warning:not(.long) .admonition-title::after{position:absolute;top:18px;left:0;display:inline-block;width:1.5rem;height:1.5rem;vertical-align:middle;content:""}.pre-v3 #central-column .admonition.attention>blockquote,.pre-v3 #central-column .admonition.caution>blockquote,.pre-v3 #central-column .admonition.danger>blockquote,.pre-v3 #central-column .admonition.error>blockquote,.pre-v3 #central-column .admonition.hint>blockquote,.pre-v3 #central-column .admonition.important>blockquote,.pre-v3 #central-column .admonition.note>blockquote,.pre-v3 #central-column .admonition.tip>blockquote,.pre-v3 #central-column .admonition.warning>blockquote{margin:0;padding-left:0}.pre-v3 #central-column .deployment-types{position:relative;display:grid;grid-template-columns:1fr;grid-gap:3rem;margin:2rem auto}@media (min-width:576px){.pre-v3 #central-column .deployment-types{width:80%;grid-template-columns:35% 65%}}@media (min-width:576px){.pre-v3 #central-column .deployment-types #distributed .detailed{height:27rem!important}}.pre-v3 #central-column .deployment-types .item-deployment{border:1px solid #256bd1;border-radius:10px;padding:1rem;position:relative}.pre-v3 #central-column .deployment-types .item-deployment h3{text-align:center;width:100%;padding:.5rem}.pre-v3 #central-column .deployment-types .item-deployment .detailed{position:absolute;z-index:99;width:100%!important;opacity:0;border:none;max-width:100%;top:4em;left:0}.pre-v3 #central-column .agent-os{display:grid;grid-template-columns:repeat(3,1fr);margin:2rem auto;grid-gap:1rem}@media (min-width:992px){.pre-v3 #central-column .agent-os{grid-template-columns:repeat(6,1fr)}}.pre-v3 #central-column .agent-os .item-agent{display:flex;justify-content:center;align-items:center}.pre-v3 #central-column .agent-os .item-agent a{box-shadow:3px 3px 7px 0 rgba(0,0,0,.1);background-color:#fff;border-radius:10px;overflow:hidden;padding:10px;position:relative;min-width:70px;max-width:150px;height:100%;width:100%}.pre-v3 #central-column .agent-os .item-agent a p{color:#fff;font-weight:700;text-align:center;margin:0;position:absolute;left:0;right:0;top:0;bottom:0;display:flex;justify-content:center;align-items:center;width:100%;opacity:0}.pre-v3 #central-column .agent-os .item-agent a img{margin:0 auto;max-width:100%;border:none;padding:0}.pre-v3 #central-column .agent-os .item-agent a:hover p{opacity:1}.pre-v3 #central-column .agent-os .item-agent a:hover img{opacity:0}.pre-v3 #wazuh-light-box .wlb-image-wrapper img,.pre-v3 [role=main] img{background:#fff;padding:.5rem}.pre-v3 .wazuh-image-wrapper{max-width:860px}.pre-v3 .wazuh-image{width:auto!important}.light-theme .pre-v3 #central-column .deployment-types .item-deployment{border:1px solid #256bd1}.light-theme .pre-v3 #central-column .agent-os .item-agent a:hover{box-shadow:0 0 0 10px #256bd1 inset,3px 3px 7px 0 rgba(0,0,0,.1);background-color:#256bd1}.dark-theme .pre-v3 #central-column .deployment-types .item-deployment{border:1px solid #499cfe}.dark-theme .pre-v3 #central-column .agent-os .item-agent a:hover{box-shadow:0 0 0 10px #499cfe inset;background-color:#499cfe}@media (min-width:1200px){.document .not-top #central-column,.index .not-top #central-column,.not_found .not-top #central-column,.search .not-top #central-column{padding-top:80px}}@media (max-width:1199px){.document #central-column,.index #central-column,.not_found #central-column,.search #central-column{padding-top:75px}}@media (min-width:1200px){.document #central-column,.index #central-column,.not_found #central-column,.search #central-column{position:relative}.document #central-column::after,.index #central-column::after,.not_found #central-column::after,.search #central-column::after{content:"";position:absolute;width:2px;border-radius:0 0 15px 15px;background-color:rgba(227,227,227,.5);top:0;right:0;bottom:95px}}@media (max-width:575px){#central-column{padding-top:0}}#central-column .container[class*=align-]{display:block;max-width:100%;padding:0}#central-column .container.align-left{text-align:left}#central-column .container.align-center{text-align:center}#central-column .container.align-right{text-align:right}#central-column .container.spaced>*{display:inline-block;margin:5px}#central-column .align-center{display:table;margin-right:auto;margin-left:auto}#central-column .align-left{display:table;margin-right:auto}#central-column .align-right{display:table;margin-left:auto}#central-column .table-responsive{display:block;max-width:100%}#central-column .table-responsive.align-center,#central-column .table-responsive.align-left,#central-column .table-responsive.align-right{display:block}#central-column .topic-title{font-weight:600;font-size:20px;margin-top:2em;margin-bottom:.5em}#central-column dl dt{padding:.2rem .5rem .2rem 0}#central-column dl dd{padding:.5rem .5rem .2rem 40px;margin-bottom:.2rem}#central-column dl.footnote dt{width:2em;padding:0;font-weight:400}#central-column dl.footnote dt::after{content:"."}#central-column dl.footnote dd{width:calc(100% - 2em);padding:0 0 0 6px}@media (min-width:1200px){[role=main]{min-height:calc(100vh - 80px - 80px - 70px)}}[role=main] .headerlink{display:inline-flex;line-height:1;text-decoration:none;word-break:keep-all;white-space:nowrap;width:24px;overflow:hidden;align-items:center;justify-content:flex-end;-webkit-user-select:none;-moz-user-select:none;user-select:none}[role=main] .headerlink::after{display:inline-block;width:15px;height:15px;min-width:15px;min-height:15px;background-size:15px 15px;text-align:right;vertical-align:middle;content:"";opacity:0;transition:opacity ease-in .1s;margin-left:20px}[role=main] caption:hover .headerlink::after,[role=main] h1:hover .headerlink::after,[role=main] h2:hover .headerlink::after,[role=main] h3:hover .headerlink::after,[role=main] h4:hover .headerlink::after,[role=main] h5:hover .headerlink::after,[role=main] h6:hover .headerlink::after{opacity:.8;transition:opacity ease-in .1s}[role=main] code.literal{padding:5px 7px 3px;line-height:1rem}@media (max-width:767px){[role=main] code.literal span.pre{word-break:break-word}}[role=main] .toctree-wrapper{padding-top:1rem}[role=main] .toctree-wrapper ul{padding-left:28px}@media (max-width:575px){[role=main] .toctree-wrapper ul{padding-left:20px}}[role=main] .toctree-wrapper ul li a{display:inline-block;padding-top:.2rem;padding-bottom:.6rem;line-height:32px}[role=main] .toctree-wrapper .caption .caption-text{font-weight:500;font-size:20px}[role=main] .align-cells-top td,[role=main] .align-cells-top th{vertical-align:top!important}[role=main] .align-cells-middle td,[role=main] .align-cells-middle th{vertical-align:middle!important}[role=main] .align-cells-bottom td,[role=main] .align-cells-bottom th{vertical-align:bottom!important}[role=main] .align-data-top td{vertical-align:top!important}[role=main] .align-data-middle td{vertical-align:middle!important}[role=main] .align-data-bottom td{vertical-align:bottom!important}[role=main] .align-header-top th{vertical-align:top!important}[role=main] .align-header-middle th{vertical-align:middle!important}[role=main] .align-header-bottom th{vertical-align:bottom!important}[role=main] .docutils:not(.list-rows) thead{position:relative;z-index:10}[role=main] .docutils:not(.list-rows) th{padding:8px 15px;font-size:18px;font-weight:600}[role=main] .docutils:not(.list-rows) .stub:not(.head){font-size:16px}[role=main] .docutils:not(.list-rows) tbody{position:relative}[role=main] .docutils:not(.list-rows) tbody th{padding:8px 15px}[role=main] .docutils:not(.list-rows) tbody td{padding:8px 15px}[role=main] .docutils:not(.list-rows) tbody p,[role=main] .docutils:not(.list-rows) tbody ul{margin-top:1rem;margin-bottom:1rem}[role=main] table.docutils:not(.list-rows){max-width:100%;overflow-x:auto;border-spacing:0;border-collapse:separate;border:1px solid}[role=main] table.docutils:not(.list-rows) .table-responsive{display:block;width:100%;overflow-x:auto}[role=main] table.docutils:not(.list-rows) tbody td,[role=main] table.docutils:not(.list-rows) tbody th{border:1px solid #dce8f8}[role=main] table.docutils:not(.list-rows) th>div,[role=main] table.docutils:not(.list-rows) th>p{white-space:nowrap}[role=main] table.docutils:not(.list-rows) p,[role=main] table.docutils:not(.list-rows) ul{margin-top:.3rem;margin-bottom:.3rem}[role=main] table.docutils:not(.list-rows).release-notes{border-spacing:0 2rem;border:none;border-radius:unset}[role=main] table.docutils:not(.list-rows).release-notes::after{content:none}[role=main] table.docutils:not(.list-rows).release-notes tr>td:first-child,[role=main] table.docutils:not(.list-rows).release-notes tr>th:first-child{padding-left:0;border-right:1px solid}[role=main] table.docutils:not(.list-rows).release-notes td,[role=main] table.docutils:not(.list-rows).release-notes th{vertical-align:baseline;border:none}[role=main] table.docutils:not(.list-rows).release-notes p,[role=main] table.docutils:not(.list-rows).release-notes ul{margin-top:1rem;margin-bottom:1rem}[role=main] table.docutils:not(.list-rows):not(.colwidths-given) col{width:auto!important}[role=main] table.hlist{display:block;margin-top:1rem;margin-bottom:1rem;overflow-x:auto}[role=main] table.hlist>tbody>tr>td{vertical-align:top}[role=main] table.hlist>tbody>tr>td>ul{padding:0 15px 0 0;margin:0;list-style:none}[role=main] table.hlist>tbody>tr>td>ul>li>ul{list-style:disc}[role=main] table.hlist>tbody>tr>td>ul>li>ul>li>ul{list-style:circle}[role=main] table.hlist>tbody>tr>td>ul>li>ul>li>ul>li>ul{list-style:square}[role=main] table.hlist>tbody>tr>td:last-child>ul{padding:0}[role=main] .table-wrapper{display:inline-block;max-width:100%;height:-moz-fit-content;height:fit-content;margin-top:1rem;margin-bottom:1rem;overflow:hidden;border:1px solid transparent;border-radius:10px}[role=main] .table-wrapper.w-header{background-repeat:no-repeat;background-size:100%}[role=main] .table-wrapper>caption{display:block;border:none}[role=main] .footnote-reference{font-size:.7em;text-decoration:underline;vertical-align:super}[role=main] .footnote.brackets{position:relative;display:flex;flex-flow:row wrap;padding-top:50px;line-height:32px;border-top:1px solid}[role=main] .footnote.brackets::before{position:absolute;top:10px;font-size:20px;font-weight:600;content:"Footnotes"}[role=main] .footnote.brackets .label{display:inline-block;margin-top:.5rem;margin-bottom:.5rem;margin-right:10px}[role=main] .footnote.brackets p{margin-top:.5rem;margin-bottom:.5rem}.document #central-column{display:flex;flex-direction:column}.document [role=main]{order:3}.document [role=main] h1{background-color:#3585f9;background-image:url("../../images/waves.png");background-size:cover;background-repeat:no-repeat;background-position:bottom;color:#fff;display:flex;padding:28px;border-radius:26px;min-height:100px;width:100%;align-items:center;flex-direction:row;margin-bottom:30px}@media (min-width:576px){.document [role=main] h1{margin-left:-28px;margin-right:-28px;width:calc(100% + 56px)}}.light-theme [role=main] .headerlink::after{color:#545f73;background-image:url("../../images/icons/link.svg#link-lt")}.light-theme [role=main] h1 .headerlink::after{color:#545f73;background-image:url("../../images/icons/link.svg#link-white")}.light-theme [role=main] code{color:#7c3db2;background-color:#e2eefe}.light-theme [role=main] caption,.light-theme [role=main] td,.light-theme [role=main] th{background-color:#fff}.light-theme [role=main] .docutils:not(.list-rows) thead{background-color:#256bd1}.light-theme [role=main] .docutils:not(.list-rows) thead th{background-color:#256bd1}.light-theme [role=main] .docutils:not(.list-rows) th{color:#fff;border-color:#256bd1}.light-theme [role=main] .docutils:not(.list-rows) .stub:not(.head){color:#292929}.light-theme [role=main] .docutils:not(.list-rows) tbody th{background-color:#fff;border-color:#dce8f8}.light-theme [role=main] .docutils:not(.list-rows) tbody td{border-color:#dce8f8}.light-theme [role=main] .docutils:not(.list-rows):not(.release-notes) tbody tr:nth-child(2n) td,.light-theme [role=main] .docutils:not(.list-rows):not(.release-notes) tbody tr:nth-child(2n) th{background-color:#f8fafd}.light-theme [role=main] table.docutils:not(.list-rows){border-color:#dce8f8}.light-theme [role=main] table.docutils:not(.list-rows).release-notes tr>td:first-child,.light-theme [role=main] table.docutils:not(.list-rows).release-notes tr>th:first-child{border-color:#dce8f8}.light-theme [role=main] .footnote.brackets{border-color:rgba(0,0,0,.1)}.light-theme [role=main] .toctree-wrapper .caption-text{color:#292929}.dark-theme [role=main] .headerlink::after{color:#9298ab;background-image:url("../../images/icons/link.svg#link-dt")}.dark-theme [role=main] h1 .headerlink::after{color:#545f73;background-image:url("../../images/icons/link.svg#link-white")}.dark-theme [role=main] code{color:#ebd0fc;background-color:#242424}.dark-theme [role=main] caption,.dark-theme [role=main] td,.dark-theme [role=main] th{background-color:#2a2d34}.dark-theme [role=main] .docutils:not(.list-rows) thead{background-color:#499cfe}.dark-theme [role=main] .docutils:not(.list-rows) thead th{background-color:#499cfe}.dark-theme [role=main] .docutils:not(.list-rows) th{color:#2a2d34;border-color:#499cfe}.dark-theme [role=main] .docutils:not(.list-rows) .stub:not(.head){color:#fff}.dark-theme [role=main] .docutils:not(.list-rows) tbody th{background-color:#2a2d34;border-color:#b7c6d7}.dark-theme [role=main] .docutils:not(.list-rows) tbody td{border-color:#b7c6d7}.dark-theme [role=main] .docutils:not(.list-rows):not(.release-notes) tbody tr:nth-child(2n) td,.dark-theme [role=main] .docutils:not(.list-rows):not(.release-notes) tbody tr:nth-child(2n) th{background-color:#28282a}.dark-theme [role=main] .docutils:not(.list-rows):not(.release-notes) tbody tr:nth-child(odd) td,.dark-theme [role=main] .docutils:not(.list-rows):not(.release-notes) tbody tr:nth-child(odd) th{background-color:#35333b}.dark-theme [role=main] table.docutils:not(.list-rows){border-color:#b7c6d7}.dark-theme [role=main] table.docutils:not(.list-rows).release-notes tr>td:first-child,.dark-theme [role=main] table.docutils:not(.list-rows).release-notes tr>th:first-child{border-color:#b7c6d7}.dark-theme [role=main] .footnote.brackets{border-color:rgba(255,255,255,.1)}.dark-theme [role=main] .toctree-wrapper .caption-text{color:#fff}.navbar-brand{position:relative;display:flex;align-content:flex-end;padding-bottom:2px}.navbar-brand img{width:auto;height:28px}@media (max-width:575px){.navbar-brand img{height:24px}}.light-theme .logo-link.docs{color:#292929}.light-theme .logo-light{display:inline-block}.light-theme .logo-dark{display:none}.dark-theme header svg{fill:#fff}.dark-theme .logo-link.docs{color:#fff}.dark-theme .logo-light{display:none}.dark-theme .logo-dark{display:inline-block}header .tooltip{pointer-events:none;font-family:Manrope,sans-serif}@media (min-width:1200px){#version-selector{margin-left:10px}}#version-selector.show .dropdown-toggle::after{transform:rotate(180deg)}#version-selector .dropdown-btn{box-sizing:border-box;display:flex;align-items:center;justify-content:space-between;width:calc((320px + 32px)/ 2);height:40px;border:2px solid;border-radius:10px;transition:color 0s}@media (max-width:575px){#version-selector .dropdown-btn{font-size:14px}}@media (max-width:1199px){#version-selector .dropdown-btn{width:auto;padding:0 5px;border:none}}@media (min-width:1200px) and (max-width:1299px){#version-selector .dropdown-btn{width:263px}}@media (min-width:1300px) and (max-width:1599px){#version-selector .dropdown-btn{width:253px}}@media (min-width:1600px){#version-selector .dropdown-btn{width:268px}}#version-selector .dropdown-btn:focus{box-shadow:none}@media (max-width:1199px){#version-selector .dropdown-btn span{padding-right:5px}}#version-selector .dropdown-menu{top:52px;box-sizing:border-box;width:100%;border:2px solid;border-radius:10px}@media (max-width:575px){#version-selector .dropdown-menu{font-size:14px}}@media (min-width:1200px){#version-selector .dropdown-menu{max-height:60vh;overflow-y:auto}}@media (max-width:1199px){#version-selector .dropdown-menu{left:-5px!important;min-width:185px;max-height:calc(100vh - 70px - 56px);padding:10px 0;overflow-y:auto;border:none}}#version-selector .dropdown-menu>li>a{display:inline-block;width:100%;padding:.4rem .75rem;text-decoration:none}#version-selector .dropdown-menu>li>a:focus,#version-selector .dropdown-menu>li>a:hover{font-weight:500}#version-selector .dropdown-menu>li>a.disabled{font-weight:500}#version-selector .dropdown-menu>li>a.disabled:focus,#version-selector .dropdown-menu>li>a.disabled:hover{font-weight:500}.light-theme header .tooltip .arrow::before{border-left-color:#e2eefe}.light-theme header .tooltip .tooltip-inner{color:#292929;background-color:#e2eefe}.light-theme #version-selector .dropdown-btn{color:#292929;border-color:#fedd0b}@media (min-width:1200px){.light-theme #version-selector .dropdown-btn{background-color:#fff}}.light-theme #version-selector .dropdown-btn[aria-expanded=false]:focus{box-shadow:inset 0 0 2px 2px rgba(101,124,151,.2)}.light-theme #version-selector .dropdown-menu{background-color:#f7f7f7}@media (min-width:1200px){.light-theme #version-selector .dropdown-menu{background-color:#fff;border-color:#fedd0b}}.light-theme #version-selector .dropdown-menu>li>a{color:#292929}.light-theme #version-selector .dropdown-menu>li>a:focus,.light-theme #version-selector .dropdown-menu>li>a:hover{background-color:#e2eefe}.light-theme #version-selector .dropdown-menu>li>a.disabled{color:#b7c6d7}.dark-theme header .tooltip .arrow::before{border-left-color:#242424}.dark-theme header .tooltip .tooltip-inner{color:#fff;background-color:#242424}.dark-theme #version-selector .dropdown-btn{color:#fff;background-color:#343741}@media (min-width:1200px){.dark-theme #version-selector .dropdown-btn{background-color:#2a2d34;border-color:#ffe853}}.dark-theme #version-selector .dropdown-btn[aria-expanded=false]:focus{box-shadow:inset 0 0 2px 2px rgba(152,162,179,.5)}.dark-theme #version-selector .dropdown-menu{background-color:#343741}@media (min-width:1200px){.dark-theme #version-selector .dropdown-menu{background-color:#2a2d34;border-color:#ffe853}}.dark-theme #version-selector .dropdown-menu>li>a{color:#fff}.dark-theme #version-selector .dropdown-menu>li>a:focus,.dark-theme #version-selector .dropdown-menu>li>a:hover{background-color:#242424}.dark-theme #version-selector .dropdown-menu>li>a.disabled{color:#a6b5c8}#light-dark-switch{display:flex;flex-direction:row}@media (min-width:1200px){#light-dark-switch{padding-bottom:8px}}#light-dark-switch+.edit-repo{border-top:1px solid #c1ccd9}#light-dark-switch>span:first-child{margin-left:4px}@media (max-width:575px){#light-dark-switch .text{display:none}}#light-dark-switch .switch-icon{display:inline-block;width:20px;height:20px;margin-right:5px;margin-left:5px;background-position:center;background-size:contain}#mode-switch{position:relative;top:1px;box-sizing:content-box;display:flex;flex-direction:row;width:26px;height:16px;padding:0;margin:0 5px;border:1px solid;border-radius:25px}#mode-switch.dark{justify-content:flex-end}#mode-switch.dark span{top:0;left:calc(100% - 16px)}#mode-switch span{position:absolute;top:0;left:0;display:inline-block;width:16px;height:16px;content:"";background-color:#fff;border-radius:50%;transition:left ease-in 75ms}.light-theme #light-dark-switch{color:#292929}.light-theme #light-dark-switch .switch-icon.icon-sun{background:url("../../images/icons/svg-icons.svg#sun-lt")}.light-theme #light-dark-switch .switch-icon.icon-moon{background:url("../../images/icons/svg-icons.svg#moon-lt")}.light-theme #mode-switch{background-color:#256bd1;border-color:#256bd1}.dark-theme #light-dark-switch{color:#fff}.dark-theme #light-dark-switch .switch-icon.icon-sun{background:url("../../images/icons/svg-icons.svg#sun-dt")}.dark-theme #light-dark-switch .switch-icon.icon-moon{background:url("../../images/icons/svg-icons.svg#moon-dt")}.dark-theme #mode-switch{background-color:#499cfe;border-color:#499cfe}#btn-scroll-wrapper{pointer-events:none;position:fixed;left:0;right:0;bottom:0;height:118px;z-index:10000}#btn-scroll-wrapper .container{display:flex;height:100%;align-items:center;justify-content:flex-end}#btn-scroll-wrapper #btn-scroll{pointer-events:auto;position:relative;background-color:#fedd0b;border-radius:100%;height:40px;width:40px;align-items:center;justify-content:center;box-shadow:3px 3px 12px -2px rgba(31,31,31,.5);-webkit-box-shadow:3px 3px 12px -2px rgba(31,31,31,.5);-moz-box-shadow:3px 3px 12px -2px rgba(31,31,31,.5)}#btn-scroll-wrapper #btn-scroll:not(.init-hidden){display:flex}@media (min-width:1600px){#btn-scroll-wrapper #btn-scroll{right:-50px}}#btn-scroll-wrapper #btn-scroll:focus,#btn-scroll-wrapper #btn-scroll:hover{text-decoration:none}#btn-scroll-wrapper #btn-scroll i{color:#fedd0b;font-size:40px}#btn-scroll-wrapper #btn-scroll svg{fill:black;transform:rotate(180deg) scale(1,.8);stroke-width:10px;stroke:black}@media (max-width:991px){#btn-scroll-wrapper #btn-scroll svg{transform:rotate(180deg) scale(.7,.6)}}:root{scroll-behavior:unset}.loading footer,.loading header{display:none}#central-column{padding-top:60px}body{position:relative;margin-top:0;font-family:Manrope,sans-serif;font-size:16px;font-weight:400;line-height:32px}body>div:first-of-type{padding-top:110px}@media screen and (max-width:576px){body.no-latest-docs>div:first-of-type{padding-top:253px}}@media screen and (min-width:576px) and (max-width:50rem){body.no-latest-docs>div:first-of-type{padding-top:220px}}@media screen and (min-width:50rem) and (max-width:75rem){body.no-latest-docs>div:first-of-type{padding-top:187px}}@media (min-width:1200px){body.no-latest-docs>div:first-of-type{padding-top:160px}}@media screen and (min-width:50rem) and (max-width:75rem){body.no-latest-docs>div:first-of-type redoc[spec-url] .beRszf .menu-content{top:190px!important}}@media (min-width:1200px){body.no-latest-docs>div:first-of-type redoc[spec-url] .beRszf .menu-content{top:160px!important}}@media screen and (max-width:75rem){body.no-latest-docs header{padding-top:80px;width:100%;height:190px}}@media screen and (max-width:50rem){body.no-latest-docs header{padding-top:0;height:110px}}@media (min-width:1200px){body.no-latest-docs header{padding-top:50px;height:160px}}@media (min-width:1600px){body.no-latest-docs header .no-latest-notice-wrapper{display:flex;align-items:center}}.inner-body{display:block}@media (min-width:1200px){.inner-body{max-width:100%}}main{padding:0}main strong{font-weight:600}#light-dark-switch{padding:0}#central-column{margin-left:auto;margin-right:auto}header{position:fixed;top:0;z-index:100;display:flex;flex-direction:row;width:calc(294px + (100% - 294px) * .6);height:110px}@media screen and (max-width:75rem){header{padding-top:0;width:100%;height:110px}}@media screen and (max-width:50rem){header{padding-top:0;flex-direction:column;width:100%;height:110px}}@media screen and (min-width:50.01rem) and (max-width:75rem){header #version-selector .dropdown-btn{padding:5px 10px;border:2px solid}}@media (min-width:992px) and (max-width:1199px){header #version-selector .dropdown-btn{width:263px}}@media screen and (min-width:50.01rem) and (max-width:75rem){header #version-selector .dropdown-menu{left:0!important;border:2px solid}}header .header-left{position:relative;z-index:20;width:294px;padding:7px 40px;pointer-events:all;display:flex;flex-shrink:0;justify-content:center;flex-direction:column}@media screen and (min-width:50rem){header .header-left{padding:10px 15px}}@media screen and (max-width:50rem){header .header-left{width:100%;height:55px;padding:10px 40px}}header .header-left .navbar-brand{justify-content:flex-start}@media screen and (min-width:50rem){header .header-left .navbar-brand{align-items:center;height:50px}}header .header-left #light-dark-switch{align-items:center;padding-top:0;border-top:2px solid}@media screen and (min-width:50rem){header .header-left #light-dark-switch{height:50px}}@media screen and (max-width:50rem){header .header-left #light-dark-switch{position:absolute;right:26px;bottom:-55px;height:55px;border:none}}header .header-right{display:flex;align-items:flex-end;justify-content:flex-end;width:calc(100% - 294px - 80px);padding-bottom:15px;margin-right:40px;margin-left:40px;border-bottom:1px solid}@media screen and (max-width:50rem){header .header-right{position:absolute;bottom:0;z-index:20;align-items:center;justify-content:flex-start;width:auto;height:55px;padding:0 0 0 22px;margin:0;border:none}}#footer-redoc .powered-by-badge{position:absolute;right:0;bottom:15px;z-index:50;height:40px;padding:0 40px;font-size:.8rem;color:#545f73;text-align:right}#footer-redoc .powered-by-badge a{color:#545f73;text-decoration:none}.no-latest-notice-wrapper{position:fixed;top:0;right:0;left:0;z-index:10;padding-right:0;padding-left:0;margin:0}@media screen and (max-width:50rem){.no-latest-notice-wrapper{top:110px}}.no-latest-notice-wrapper .no-latest-notice{padding:3px 40px 5px;display:inline-flex;width:100%;min-height:80px}@media screen and (max-width:50rem){.no-latest-notice-wrapper .no-latest-notice{display:inline-block;padding:0 20px 5px;line-height:26px}}@media (min-width:1200px){.no-latest-notice-wrapper .no-latest-notice{min-height:50px;height:50px;justify-content:center;align-items:center}}.no-latest-notice-wrapper .no-latest-notice .no-latest-title{position:relative;display:inline;padding:0 20px 0 38px;font-weight:600;line-height:32px}@media screen and (max-width:50rem){.no-latest-notice-wrapper .no-latest-notice .no-latest-title{display:inline-block;padding:4px 10px 4px 38px}}.no-latest-notice-wrapper .no-latest-notice .no-latest-title::after{position:absolute;top:3px;left:0;display:inline-block;width:1.5rem;height:1.5rem;vertical-align:middle;content:"";background:url("../../images/icons/svg-icons.svg#circle-exclamation-orange")}.no-latest-notice-wrapper .no-latest-notice .no-latest-text-wrapper{display:inline;padding:0 .5em 0 0}@media screen and (max-width:50rem){.no-latest-notice-wrapper .no-latest-notice .no-latest-text-wrapper{display:inline-block}}.dark-theme [role=main] caption,.dark-theme [role=main] td,.dark-theme [role=main] th,.light-theme [role=main] caption,.light-theme [role=main] td,.light-theme [role=main] th{background-color:transparent}redoc[spec-url] .beRszf{font-family:Manrope,sans-serif;font-size:16px;font-weight:500;line-height:32px;letter-spacing:.03em}redoc[spec-url] .beRszf .eCjbJc{display:block;overflow-x:auto}redoc[spec-url] .beRszf .cObJOV{top:calc(-60px - 110px);width:calc((100% - 294px) * .4);background-color:#2a2d34}redoc[spec-url] .beRszf .sc-bMVAic.llQIcF{top:6px;right:15px;width:45px;height:45px;padding:.4rem;background:0 0;background-color:transparent;border-radius:4px;box-shadow:none}redoc[spec-url] .beRszf .cncswi{padding:10px 0 0}redoc[spec-url] .beRszf .cncswi .TPAYK{padding-top:0;padding-bottom:0}redoc[spec-url] .beRszf .bmRLPL{display:none}redoc[spec-url] .beRszf .dCnGCn table th{font-weight:500}redoc[spec-url] .beRszf .dCnGCn table td,redoc[spec-url] .beRszf .dCnGCn table th{padding:6px 20px;border:2px solid}redoc[spec-url] .beRszf .xNubs{font-family:Manrope,sans-serif;font-size:1rem;line-height:32px}redoc[spec-url] .beRszf .table.table-bordered{border:none}redoc[spec-url] .beRszf .table.table-bordered th{font-weight:500;border:2px solid}redoc[spec-url] .beRszf .table.table-bordered td{border:2px solid}redoc[spec-url] .beRszf .sc-epnACN{padding-right:10px}redoc[spec-url] .beRszf .sc-epnACN .XrbXS{font-size:16px!important}redoc[spec-url] .beRszf .sc-gqjmRU.LiUBH{width:100%;font-size:16px!important}redoc[spec-url] .beRszf .sc-gqjmRU.LiUBH>.sc-hSdWYo.hoUoen{font-size:16px!important}redoc[spec-url] .beRszf .sc-cHGsZl.sc-jbKcbu,redoc[spec-url] .beRszf .sc-cHGsZl.sc-jqCOkK,redoc[spec-url] .beRszf code{font-family:"Fira Mono",monospace;font-size:14px;line-height:32px;letter-spacing:.03em}redoc[spec-url] .beRszf pre code{background-color:#25252c}redoc[spec-url] .beRszf .gbsZqp{color:#fff}redoc[spec-url] .beRszf .token{color:#fff;font-family:"Fira mono",monospace;font-size:14px}redoc[spec-url] .beRszf .token.constant,redoc[spec-url] .beRszf .token.number,redoc[spec-url] .beRszf .token.property,redoc[spec-url] .beRszf .token.property.string,redoc[spec-url] .beRszf .token.symbol,redoc[spec-url] .beRszf .token.tag{color:#6ca2f0}redoc[spec-url] .beRszf .token.cdata,redoc[spec-url] .beRszf .token.comment,redoc[spec-url] .beRszf .token.doctype,redoc[spec-url] .beRszf .token.prolog{color:#ffe853}redoc[spec-url] .beRszf .token.atrule,redoc[spec-url] .beRszf .token.attr-value,redoc[spec-url] .beRszf .token.keyword{color:#b677dc}redoc[spec-url] .beRszf .token.attr-name,redoc[spec-url] .beRszf .token.builtin,redoc[spec-url] .beRszf .token.char,redoc[spec-url] .beRszf .token.inserted,redoc[spec-url] .beRszf .token.selector,redoc[spec-url] .beRszf .token.string{color:#f6b7f6}redoc[spec-url] .beRszf .token.entity,redoc[spec-url] .beRszf .token.operator,redoc[spec-url] .beRszf .token.url,redoc[spec-url] .beRszf .token.variable{color:#fff}redoc[spec-url] .beRszf .sc-ibxdXY.dUFXgZ strong,redoc[spec-url] .beRszf .sc-ibxdXY.gxJjxJ strong{margin-right:10px;font-weight:600}redoc[spec-url] .beRszf .sc-jWBwVP.sc-iRbamj.dCnGCn{line-height:32px}redoc[spec-url] .beRszf .sc-jWBwVP.sc-iRbamj.dCnGCn pre{background-color:#25252c}redoc[spec-url] .beRszf .sc-jWBwVP.sc-iRbamj.dCnGCn p{line-height:32px}redoc[spec-url] .beRszf .bMfIUD{border:1px solid}redoc[spec-url] .beRszf .xNubs code{border:none}redoc[spec-url] .beRszf .beUper{border:none}redoc[spec-url] .beRszf .sc-chPdSV.eAybih{font-family:Manrope,sans-serif;font-size:16px;line-height:32px}redoc[spec-url] .beRszf .sc-chPdSV.eAybih .sc-ksYbfQ.sc-hmzhuo.bGITIP{font-size:14px;text-transform:capitalize}redoc[spec-url] .beRszf tr.last:first-of-type>.eAybih,redoc[spec-url] .beRszf tr.last:first-of-type>.jMEzIu{background-image:none}redoc[spec-url] .beRszf .sc-kjoXOD.QefOL button,redoc[spec-url] .beRszf .sc-kjoXOD.jMEzIu button{font-family:Manrope,sans-serif;font-size:16px;line-height:32px}redoc[spec-url] .beRszf .sc-TOsTZ.fKyGWc{font-size:15px}redoc[spec-url] .beRszf .sc-hMqMXs.dDdNtD,redoc[spec-url] .beRszf .sc-kEYyzF.cMefLx{font-family:Manrope,sans-serif;font-size:15px}redoc[spec-url] .beRszf .sc-kgAjT.hqYVjx{font-size:15px}redoc[spec-url] .beRszf .sc-cHGsZl.lpeYvY{font-size:15px}redoc[spec-url] .beRszf .sc-jKJlTe.eZZMfQ{font-family:Manrope,sans-serif;font-size:16px}redoc[spec-url] .beRszf .sc-eNQAEJ{font-size:15px;border-radius:3px}redoc[spec-url] .beRszf .kGwPhO{font-size:16px}redoc[spec-url] .beRszf .edBCth{font-size:14px}redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list [role=tab]{width:5em;padding:3px 10px;margin-top:7px;font-size:1rem;font-weight:500;border-radius:3px}redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list [role=tab]>[role=tab].react-tabs__tab--selected{font-weight:500}redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list [role=tab].tab-error::before,redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list [role=tab].tab-info::before,redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list [role=tab].tab-redirect::before,redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list [role=tab].tab-success::before{position:relative;top:-2px;display:inline-block;width:5px;height:5px;margin-right:.5em;content:"";border-radius:50%}redoc[spec-url] .beRszf .gLTsd{background-color:#25252c}redoc[spec-url] .beRszf .gLTsd .sc-hwwEjo{font-family:Manrope,sans-serif;letter-spacing:.03em}redoc[spec-url] .beRszf .sc-eqIVtm.ecxnvs{display:none}redoc[spec-url] .beRszf .sc-gisBJw.gwfZGU{margin-top:0}redoc[spec-url] .beRszf .sc-gisBJw.gwfZGU .jCgylq a{text-decoration:none!important}redoc[spec-url] .beRszf .gsaTRZ>button{font-family:Manrope,sans-serif;font-size:16px;border-radius:3px}redoc[spec-url] .beRszf a.sc-hEsumM.jrowNk{padding:0 34px;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:2px solid;border-radius:8px}redoc[spec-url] .beRszf .menu-content{position:fixed;top:110px!important;width:294px;height:calc(100vh - 110px)!important;z-index:100}@media screen and (max-width:50rem){redoc[spec-url] .beRszf .menu-content{width:100%}}redoc[spec-url] .beRszf .menu-content label[role=menuitem]{padding-right:26px;padding-left:26px;font-family:Manrope,sans-serif;font-size:16px;font-weight:500}redoc[spec-url] .beRszf .menu-content label[role=menuitem]>span.operation-type{display:none}redoc[spec-url] .beRszf .menu-content label[role=menuitem].-depth1{text-transform:uppercase}redoc[spec-url] .beRszf .menu-content label[role=menuitem].active .hRqESd,redoc[spec-url] .beRszf .menu-content label[role=menuitem].iTiWpH .hRqESd{transform:rotateZ(-180deg)}redoc[spec-url] .beRszf .menu-content label[role=menuitem].-depth2{padding-left:36px}redoc[spec-url] .beRszf .cziLoD{padding:30px 0 5px}redoc[spec-url] .beRszf .cziLoD input{padding-bottom:0;padding-left:28px;font-family:Manrope,sans-serif;font-size:16px;font-weight:500;background-repeat:no-repeat;background-position:left center;background-size:25px 25px;border-bottom:2px solid}redoc[spec-url] .beRszf .cziLoD svg{display:none}redoc[spec-url] .beRszf .kwnyAC{background:0 0;width:calc(100% - 40px);margin:0 auto}redoc[spec-url] .beRszf .api-content{scroll-margin-top:110px;margin-left:294px}@media screen and (max-width:50rem){redoc[spec-url] .beRszf .api-content{margin-left:0}}redoc[spec-url] .beRszf .api-content h1,redoc[spec-url] .beRszf .api-content h2,redoc[spec-url] .beRszf .api-content h3,redoc[spec-url] .beRszf .api-content h4{position:relative;font-family:Manrope,sans-serif;font-weight:600;letter-spacing:.03em}redoc[spec-url] .beRszf .api-content h1 .sc-VigVT.jrPOYQ,redoc[spec-url] .beRszf .api-content h2 .sc-VigVT.jrPOYQ,redoc[spec-url] .beRszf .api-content h3 .sc-VigVT.jrPOYQ,redoc[spec-url] .beRszf .api-content h4 .sc-VigVT.jrPOYQ{position:absolute;top:.3em;right:-24px}redoc[spec-url] .beRszf .api-content .sc-htoDjs.sc-tilXH.givSXQ{font-size:34px;line-height:46.44px}redoc[spec-url] .beRszf .api-content h1{font-size:28px;line-height:40px}redoc[spec-url] .beRszf .api-content h2,redoc[spec-url] .beRszf .api-content h3{font-size:22px;line-height:36px}redoc[spec-url] .beRszf .api-content .TPAYK .sc-kafWEX.egTZxS{margin-bottom:1rem}redoc[spec-url] .beRszf .api-content .celZWI{color:#fff;background-color:#2a2d34}redoc[spec-url] .beRszf .api-content .celZWI h3{font-size:16px;font-weight:500;color:#fff;text-transform:uppercase}redoc[spec-url] .beRszf .api-content .celZWI .http-verb{font-family:Manrope,sans-serif;font-size:16px;color:#000}redoc[spec-url] .beRszf .api-content .celZWI .http-verb.get{background-color:#207d82}redoc[spec-url] .beRszf .api-content .celZWI .http-verb.post{background-color:#6ca2f0}redoc[spec-url] .beRszf .api-content .celZWI .http-verb.put{background-color:#b677dc}redoc[spec-url] .beRszf .api-content .celZWI .http-verb.delete{background-color:#f86b63}redoc[spec-url] .beRszf .api-content .celZWI .react-tabs__tab-panel>div{padding-top:10px;margin-top:10px}redoc[spec-url] .beRszf .ddXLZs:not(:last-of-type)::after{content:none}.light-theme body{color:#292929}@media (min-width:1200px){.light-theme body>div:not(.loading):first-of-type{background:linear-gradient(90deg,#f7f7f7 50%,#2a2d34 50%)}}.light-theme body .no-latest-notice-wrapper{background-color:#fff}.light-theme body .no-latest-notice-wrapper .no-latest-notice{background-color:rgba(255,122,47,.1)}.light-theme body .no-latest-notice-wrapper .no-latest-notice .no-latest-title{color:#b35621}.light-theme body .loading redoc div{color:#256bd1!important}.light-theme body .loading redoc div *{fill:#256bd1!important}.light-theme body header{background:#fff}@media screen and (max-width:50rem){.light-theme body header{background-color:#f9fcff}}.light-theme body header .header-left{background-color:#f7f7f7}.light-theme body header .header-left #light-dark-switch{border-top-color:#b7c6d7}.light-theme body header .header-right{border-bottom-color:#3585f9}.light-theme body redoc[spec-url] .beRszf{color:#292929}.light-theme body redoc[spec-url] .beRszf a{color:#256bd1}.light-theme body redoc[spec-url] .beRszf a:focus,.light-theme body redoc[spec-url] .beRszf a:hover{color:#3585f9}.light-theme body redoc[spec-url] .beRszf p{color:#292929}.light-theme body redoc[spec-url] .beRszf .jCgylq .token.boolean{color:#f86b63}.light-theme body redoc[spec-url] .beRszf .jCgylq .token.number{color:#3585f9}.light-theme body redoc[spec-url] .beRszf .dCnGCn table td,.light-theme body redoc[spec-url] .beRszf .dCnGCn table th{border-color:#dce8f8}.light-theme body redoc[spec-url] .beRszf .dCnGCn table tr:nth-child(2n){background-color:#f7f7f7}.light-theme body redoc[spec-url] .beRszf .table.table-bordered th{color:#fff;background-color:#256bd1;border-color:#256bd1}.light-theme body redoc[spec-url] .beRszf .table.table-bordered td{border-color:#dce8f8}.light-theme body redoc[spec-url] .beRszf .table.table-striped tbody tr:nth-of-type(odd){background-color:#fff}.light-theme body redoc[spec-url] .beRszf .table.table-striped tbody tr:nth-of-type(2n){background-color:#f7f7f7}.light-theme body redoc[spec-url] .beRszf .sc-epnACN{color:#757575}.light-theme body redoc[spec-url] .beRszf .XrbXS{color:#757575;border-bottom-color:#b4b4b4!important}.light-theme body redoc[spec-url] .beRszf .sc-gqjmRU.LiUBH{color:#757575!important;border-bottom-color:#b4b4b4!important}.light-theme body redoc[spec-url] .beRszf .sc-gqjmRU.LiUBH>.sc-hSdWYo.hoUoen{color:#292929}.light-theme body redoc[spec-url] .beRszf .sc-chPdSV.eAybih{color:#292929}.light-theme body redoc[spec-url] .beRszf .sc-chPdSV.eAybih .sc-ksYbfQ.sc-hmzhuo.bGITIP{color:#bd271e}.light-theme body redoc[spec-url] .beRszf .sc-kjoXOD.QefOL button,.light-theme body redoc[spec-url] .beRszf .sc-kjoXOD.jMEzIu button{color:#292929}.light-theme body redoc[spec-url] .beRszf .sc-kjoXOD.QefOL button svg polygon,.light-theme body redoc[spec-url] .beRszf .sc-kjoXOD.jMEzIu button svg polygon{fill:#256bd1}.light-theme body redoc[spec-url] .beRszf .jMEzIu{border-left-color:#3585f9}.light-theme body redoc[spec-url] .beRszf .eCjbJc .sc-kpOJdX,.light-theme body redoc[spec-url] .beRszf .eCjbJc .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX,.light-theme body redoc[spec-url] .beRszf .eCjbJc .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX{background:#f9fcff}.light-theme body redoc[spec-url] .beRszf .eCjbJc .sc-kpOJdX .sc-kpOJdX,.light-theme body redoc[spec-url] .beRszf .eCjbJc .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX,.light-theme body redoc[spec-url] .beRszf .eCjbJc .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX{background-color:#fff}.light-theme body redoc[spec-url] .beRszf .imibLw{color:#3585f9}.light-theme body redoc[spec-url] .beRszf tr:first-of-type>.eAybih,.light-theme body redoc[spec-url] .beRszf tr:first-of-type>.jMEzIu{background-image:linear-gradient(transparent 0,transparent 28px,#3585f9 28px,#3585f9 100%)}.light-theme body redoc[spec-url] .beRszf .eAybih,.light-theme body redoc[spec-url] .beRszf .gtEarq{border-left-color:#3585f9}.light-theme body redoc[spec-url] .beRszf tr.last+tr>.gtEarq{border-left-color:transparent}.light-theme body redoc[spec-url] .beRszf tr.last>.eAybih,.light-theme body redoc[spec-url] .beRszf tr.last>.jMEzIu{background-image:linear-gradient(#3585f9 0,#3585f9 29px,transparent 29px,transparent 100%)}.light-theme body redoc[spec-url] .beRszf tr.last:first-of-type>.eAybih,.light-theme body redoc[spec-url] .beRszf tr.last:first-of-type>.jMEzIu{background-image:none}.light-theme body redoc[spec-url] .beRszf .bcLONg::after,.light-theme body redoc[spec-url] .beRszf .bcLONg::before{background-color:#3585f9}.light-theme body redoc[spec-url] .beRszf .sc-TOsTZ.fKyGWc{color:#757575}.light-theme body redoc[spec-url] .beRszf .sc-hMqMXs.dDdNtD,.light-theme body redoc[spec-url] .beRszf .sc-kEYyzF.cMefLx{color:#292929}.light-theme body redoc[spec-url] .beRszf .sc-kgAjT.hqYVjx{color:#757575}.light-theme body redoc[spec-url] .beRszf .sc-cHGsZl.lpeYvY{color:#292929}.light-theme body redoc[spec-url] .beRszf .sc-jKJlTe.eZZMfQ{color:#292929}.light-theme body redoc[spec-url] .beRszf .sc-eNQAEJ{border-color:#3585f9}.light-theme body redoc[spec-url] .beRszf .sc-eNQAEJ.jdXjUh{color:#292929;background-color:#fff}.light-theme body redoc[spec-url] .beRszf .sc-eNQAEJ.gYsnwL{color:#fff;background-color:#3585f9}.light-theme body redoc[spec-url] .beRszf .kGwPhO{border-bottom-color:#b4b4b4}.light-theme body redoc[spec-url] .beRszf .edBCth{color:#545f73}.light-theme body redoc[spec-url] .beRszf .beUper{color:#1561d0;background-color:#e2eefe}.light-theme body redoc[spec-url] .beRszf .sc-ibxdXY.gxJjxJ{background-color:rgba(32,125,130,.2)}.light-theme body redoc[spec-url] .beRszf .sc-ibxdXY.gxJjxJ strong{color:#207d82}.light-theme body redoc[spec-url] .beRszf .sc-ibxdXY.gxJjxJ svg polygon{fill:#207d82}.light-theme body redoc[spec-url] .beRszf .sc-ibxdXY.dUFXgZ{background-color:rgba(189,39,30,.2)}.light-theme body redoc[spec-url] .beRszf .sc-ibxdXY.dUFXgZ strong{color:#bd271e}.light-theme body redoc[spec-url] .beRszf .sc-ibxdXY.dUFXgZ svg polygon{fill:#bd271e}.light-theme body redoc[spec-url] .beRszf .bMfIUD{color:#000;border-color:#b4b4b4}.light-theme body redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list>[role=tab].react-tabs__tab--selected{color:#292929;background-color:#fff}.light-theme body redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list [role=tab]{color:#fff;background-color:#25252c}.light-theme body redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list [role=tab].tab-success::before{background-color:#207d82;box-shadow:0 0 3px 0 #207d82}.light-theme body redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list [role=tab].tab-error::before{background-color:#f86b63;box-shadow:0 0 3px 0 #f86b63}.light-theme body redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list [role=tab].tab-redirect::before{background-color:#ff7a2f;box-shadow:0 0 3px 0 #ff7a2f}.light-theme body redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list [role=tab].tab-info::before{background-color:#499cfe;box-shadow:0 0 3px 0 #499cfe}.light-theme body redoc[spec-url] .beRszf .dOwpAS>.react-tabs__tab-panel{background-color:#25252c}.light-theme body redoc[spec-url] .beRszf .sc-gisBJw.gwfZGU .jCgylq{background-color:#25252c}.light-theme body redoc[spec-url] .beRszf .sc-gisBJw.gwfZGU .jCgylq code{background-color:#25252c}.light-theme body redoc[spec-url] .beRszf .sc-gisBJw.gwfZGU .jCgylq a{color:#499cfe}.light-theme body redoc[spec-url] .beRszf .sc-gisBJw.gwfZGU .jCgylq a:focus,.light-theme body redoc[spec-url] .beRszf .sc-gisBJw.gwfZGU .jCgylq a:hover{color:#6ca2f0}.light-theme body redoc[spec-url] .beRszf .sc-gisBJw.gwfZGU .jCgylq .hoverable{color:#fff}.light-theme body redoc[spec-url] .beRszf a.sc-hEsumM.jrowNk{color:#292929;border-color:#3585f9}.light-theme body redoc[spec-url] .beRszf a.sc-hEsumM.jrowNk:focus,.light-theme body redoc[spec-url] .beRszf a.sc-hEsumM.jrowNk:hover{color:#fff;background-color:#256bd1;border-color:#256bd1}.light-theme body redoc[spec-url] .beRszf .menu-content{background-color:#f7f7f7}.light-theme body redoc[spec-url] .beRszf .menu-content .hxqNKs,.light-theme body redoc[spec-url] .beRszf .menu-content .iTiWpH{color:#292929}.light-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem]:hover{color:#256bd1;background-color:#f7f7f7}.light-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem] .dttBLN,.light-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem] .hxqNKs,.light-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem] .iTiWpH,.light-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem].idRuNa{color:#292929}.light-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem] .dttBLN:hover,.light-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem] .hxqNKs:hover,.light-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem] .iTiWpH:hover,.light-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem].idRuNa:hover{color:#256bd1}.light-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem] svg polygon{fill:#256bd1}.light-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem].active{background-color:#3585f9;color:#fff}.light-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem].active svg polygon{fill:#fff}.light-theme body redoc[spec-url] .beRszf .menu-content .kwnyAC label[role=menuitem]:hover{background:0 0}.light-theme body redoc[spec-url] .beRszf .cziLoD input{color:rgba(41,41,41,.8);background-image:url("../../images/icons/svg-icons.svg#search-lt");border-bottom-color:#b7c6d7}.light-theme body redoc[spec-url] .beRszf .cziLoD ::-moz-placeholder{color:#657c97}.light-theme body redoc[spec-url] .beRszf .cziLoD ::placeholder{color:#657c97}.light-theme body redoc[spec-url] .beRszf .kwnyAC>li{background:rgba(255,255,255,.55)}.light-theme body redoc[spec-url] .beRszf .api-content h1,.light-theme body redoc[spec-url] .beRszf .api-content h2,.light-theme body redoc[spec-url] .beRszf .api-content h3,.light-theme body redoc[spec-url] .beRszf .api-content h4{color:#000}.light-theme body redoc[spec-url] .beRszf .api-content .celZWI h1,.light-theme body redoc[spec-url] .beRszf .api-content .celZWI h2,.light-theme body redoc[spec-url] .beRszf .api-content .celZWI h3,.light-theme body redoc[spec-url] .beRszf .api-content .celZWI h4{color:#fff}@media screen and (min-width:50.01rem) and (max-width:75rem){.light-theme body #version-selector .dropdown-btn{border-color:#fedd0b}}@media screen and (min-width:50.01rem) and (max-width:75rem){.light-theme body #version-selector .dropdown-menu{border-color:#fedd0b}}.dark-theme body{color:#fff;background-color:#2a2d34}@media (min-width:1200px){.dark-theme body>div:not(.loading):first-of-type{background:linear-gradient(90deg,#343741 50%,#2a2d34 50%)}}.dark-theme body .no-latest-notice-wrapper{background-color:#2a2d34}.dark-theme body .no-latest-notice-wrapper .no-latest-notice{background-color:rgba(255,122,47,.1)}.dark-theme body .no-latest-notice-wrapper .no-latest-notice .no-latest-title{color:#ff7a2f}.dark-theme body .loading redoc div{color:#499cfe!important}.dark-theme body .loading redoc div *{fill:#499cfe!important}.dark-theme body header{background:#2a2d34}@media screen and (max-width:50rem){.dark-theme body header{background-color:#343741}}.dark-theme body header .header-left{background-color:#343741}.dark-theme body header .header-left #light-dark-switch{border-top-color:#b7c6d7}.dark-theme body header .header-right{border-bottom-color:#dcebff}.dark-theme body redoc[spec-url] .beRszf{color:#fff}.dark-theme body redoc[spec-url] .beRszf a{color:#499cfe}.dark-theme body redoc[spec-url] .beRszf a:focus,.dark-theme body redoc[spec-url] .beRszf a:hover{color:#6ca2f0}.dark-theme body redoc[spec-url] .beRszf p{color:#fff}.dark-theme body redoc[spec-url] .beRszf .jCgylq .token.boolean{color:#f86b63}.dark-theme body redoc[spec-url] .beRszf .jCgylq .token.number{color:#3585f9}.dark-theme body redoc[spec-url] .beRszf .dCnGCn table td,.dark-theme body redoc[spec-url] .beRszf .dCnGCn table th{border-color:#dce8f8}.dark-theme body redoc[spec-url] .beRszf .dCnGCn table tr{background-color:#2a2d34}.dark-theme body redoc[spec-url] .beRszf .dCnGCn table tr:nth-child(2n){background-color:#242424}.dark-theme body redoc[spec-url] .beRszf .table td,.dark-theme body redoc[spec-url] .beRszf .table th{color:#fff}.dark-theme body redoc[spec-url] .beRszf .table.table-bordered th{background-color:#292929;border-color:#dce8f8}.dark-theme body redoc[spec-url] .beRszf .table.table-bordered td{border-color:#dce8f8}.dark-theme body redoc[spec-url] .beRszf .table.table-striped tbody tr:nth-of-type(odd){background-color:#2a2d34}.dark-theme body redoc[spec-url] .beRszf .table.table-striped tbody tr:nth-of-type(2n){background-color:#242424}.dark-theme body redoc[spec-url] .beRszf .sc-epnACN{color:#b4b4b4}.dark-theme body redoc[spec-url] .beRszf .XrbXS{color:#b4b4b4;border-bottom-color:#b4b4b4!important}.dark-theme body redoc[spec-url] .beRszf .sc-gqjmRU.LiUBH{color:#b4b4b4!important;border-bottom-color:#b4b4b4!important}.dark-theme body redoc[spec-url] .beRszf .sc-gqjmRU.LiUBH>.sc-hSdWYo.hoUoen{color:#fff}.dark-theme body redoc[spec-url] .beRszf .sc-chPdSV.eAybih{color:#fff}.dark-theme body redoc[spec-url] .beRszf .sc-chPdSV.eAybih .sc-ksYbfQ.sc-hmzhuo.bGITIP{color:#f86b63}.dark-theme body redoc[spec-url] .beRszf tr.last:first-of-type>.eAybih,.dark-theme body redoc[spec-url] .beRszf tr.last:first-of-type>.jMEzIu{background-image:none}.dark-theme body redoc[spec-url] .beRszf .sc-kjoXOD.QefOL button,.dark-theme body redoc[spec-url] .beRszf .sc-kjoXOD.jMEzIu button{color:#fff}.dark-theme body redoc[spec-url] .beRszf .sc-kjoXOD.QefOL button svg polygon,.dark-theme body redoc[spec-url] .beRszf .sc-kjoXOD.jMEzIu button svg polygon{fill:#499cfe}.dark-theme body redoc[spec-url] .beRszf .jMEzIu{border-left-color:#3585f9}.dark-theme body redoc[spec-url] .beRszf .eCjbJc .sc-kpOJdX,.dark-theme body redoc[spec-url] .beRszf .eCjbJc .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX,.dark-theme body redoc[spec-url] .beRszf .eCjbJc .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX{background:#343741}.dark-theme body redoc[spec-url] .beRszf .eCjbJc .sc-kpOJdX .sc-kpOJdX,.dark-theme body redoc[spec-url] .beRszf .eCjbJc .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX,.dark-theme body redoc[spec-url] .beRszf .eCjbJc .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX .sc-kpOJdX{background-color:#2a2d34}.dark-theme body redoc[spec-url] .beRszf .imibLw{color:#6ca2f0}.dark-theme body redoc[spec-url] .beRszf tr:first-of-type>.eAybih,.dark-theme body redoc[spec-url] .beRszf tr:first-of-type>.jMEzIu{background-image:linear-gradient(transparent 0,transparent 28px,#6ca2f0 28px,#6ca2f0 100%)}.dark-theme body redoc[spec-url] .beRszf .eAybih,.dark-theme body redoc[spec-url] .beRszf .gtEarq{border-left-color:#6ca2f0}.dark-theme body redoc[spec-url] .beRszf tr.last+tr>.gtEarq{border-left-color:transparent}.dark-theme body redoc[spec-url] .beRszf tr.last>.eAybih,.dark-theme body redoc[spec-url] .beRszf tr.last>.jMEzIu{background-image:linear-gradient(#6ca2f0 0,#6ca2f0 29px,transparent 29px,transparent 100%)}.dark-theme body redoc[spec-url] .beRszf tr.last:first-of-type>.eAybih,.dark-theme body redoc[spec-url] .beRszf tr.last:first-of-type>.jMEzIu{background-image:none}.dark-theme body redoc[spec-url] .beRszf .bcLONg::after,.dark-theme body redoc[spec-url] .beRszf .bcLONg::before{background-color:#6ca2f0}.dark-theme body redoc[spec-url] .beRszf .sc-TOsTZ.fKyGWc{color:#c1ccd9}.dark-theme body redoc[spec-url] .beRszf .sc-hMqMXs.dDdNtD,.dark-theme body redoc[spec-url] .beRszf .sc-kEYyzF.cMefLx{color:#fff}.dark-theme body redoc[spec-url] .beRszf .sc-kgAjT.hqYVjx{color:#b4b4b4}.dark-theme body redoc[spec-url] .beRszf .sc-cHGsZl.lpeYvY{color:#fff}.dark-theme body redoc[spec-url] .beRszf .sc-jKJlTe.eZZMfQ{color:#fff}.dark-theme body redoc[spec-url] .beRszf .sc-eNQAEJ.jdXjUh{color:#292929;background-color:#fff;border-color:#fff}.dark-theme body redoc[spec-url] .beRszf .sc-eNQAEJ.gYsnwL{color:#292929;background-color:#6ca2f0;border-color:#6ca2f0}.dark-theme body redoc[spec-url] .beRszf .edBCth{color:#a6b5c8}.dark-theme body redoc[spec-url] .beRszf .beUper{color:#499cfe;background-color:#2a2d34}.dark-theme body redoc[spec-url] .beRszf .sc-ibxdXY.gxJjxJ{background-color:rgba(32,125,130,.2)}.dark-theme body redoc[spec-url] .beRszf .sc-ibxdXY.gxJjxJ strong{color:#207d82}.dark-theme body redoc[spec-url] .beRszf .sc-ibxdXY.gxJjxJ svg polygon{fill:#207d82}.dark-theme body redoc[spec-url] .beRszf .sc-ibxdXY.dUFXgZ{background-color:rgba(248,107,99,.2)}.dark-theme body redoc[spec-url] .beRszf .sc-ibxdXY.dUFXgZ strong{color:#f86b63}.dark-theme body redoc[spec-url] .beRszf .sc-ibxdXY.dUFXgZ svg polygon{fill:#f86b63}.dark-theme body redoc[spec-url] .beRszf .bMfIUD{color:#fff;background-color:#292929;border-color:#292929}.dark-theme body redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list>[role=tab].react-tabs__tab--selected{color:#292929;background-color:#fff}.dark-theme body redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list [role=tab]{color:#fff;background-color:#25252c}.dark-theme body redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list [role=tab].tab-success::before{background-color:#207d82;box-shadow:0 0 3px 0 #207d82}.dark-theme body redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list [role=tab].tab-error::before{background-color:#f86b63;box-shadow:0 0 3px 0 #f86b63}.dark-theme body redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list [role=tab].tab-redirect::before{background-color:#ff7a2f;box-shadow:0 0 3px 0 #ff7a2f}.dark-theme body redoc[spec-url] .beRszf .dOwpAS .react-tabs__tab-list [role=tab].tab-info::before{background-color:#499cfe;box-shadow:0 0 3px 0 #499cfe}.dark-theme body redoc[spec-url] .beRszf .dOwpAS>.react-tabs__tab-panel{background-color:#25252c}.dark-theme body redoc[spec-url] .beRszf .sc-gisBJw.gwfZGU .jCgylq{background-color:#25252c}.dark-theme body redoc[spec-url] .beRszf .sc-gisBJw.gwfZGU .jCgylq code{background-color:#25252c}.dark-theme body redoc[spec-url] .beRszf .sc-gisBJw.gwfZGU .jCgylq a{color:#499cfe}.dark-theme body redoc[spec-url] .beRszf .sc-gisBJw.gwfZGU .jCgylq a:focus,.dark-theme body redoc[spec-url] .beRszf .sc-gisBJw.gwfZGU .jCgylq a:hover{color:#6ca2f0}.dark-theme body redoc[spec-url] .beRszf .sc-gisBJw.gwfZGU .jCgylq .hoverable{color:#fff}.dark-theme body redoc[spec-url] .beRszf a.sc-hEsumM.jrowNk{color:#fff;border-color:#499cfe}.dark-theme body redoc[spec-url] .beRszf a.sc-hEsumM.jrowNk:focus,.dark-theme body redoc[spec-url] .beRszf a.sc-hEsumM.jrowNk:hover{color:#292929;background-color:#6ca2f0;border-color:#6ca2f0}.dark-theme body redoc[spec-url] .beRszf .menu-content{background-color:#343741}.dark-theme body redoc[spec-url] .beRszf .menu-content .hxqNKs,.dark-theme body redoc[spec-url] .beRszf .menu-content .iTiWpH{color:#fff}.dark-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem]:hover{color:#6ca2f0;background-color:#343741}.dark-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem] .dttBLN,.dark-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem] .hxqNKs,.dark-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem] .iTiWpH,.dark-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem].idRuNa{color:#fff}.dark-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem] .dttBLN:hover,.dark-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem] .hxqNKs:hover,.dark-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem] .iTiWpH:hover,.dark-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem].idRuNa:hover{color:#499cfe}.dark-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem] svg polygon{fill:#499cfe}.dark-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem].active{background-color:#3585f9;color:#fff}.dark-theme body redoc[spec-url] .beRszf .menu-content label[role=menuitem].active svg polygon{fill:#fff}.dark-theme body redoc[spec-url] .beRszf .menu-content .kwnyAC label[role=menuitem]:hover{background:0 0}.dark-theme body redoc[spec-url] .beRszf .cziLoD input{color:rgba(255,255,255,.8);background-image:url("../../images/icons/svg-icons.svg#search-dt");border-bottom-color:#b7c6d7}.dark-theme body redoc[spec-url] .beRszf .cziLoD ::-moz-placeholder{color:#98a2b3}.dark-theme body redoc[spec-url] .beRszf .cziLoD ::placeholder{color:#98a2b3}.dark-theme body redoc[spec-url] .beRszf .kwnyAC>li{background:rgba(0,0,0,.1)}.dark-theme body redoc[spec-url] .beRszf .api-content h1,.dark-theme body redoc[spec-url] .beRszf .api-content h2,.dark-theme body redoc[spec-url] .beRszf .api-content h3,.dark-theme body redoc[spec-url] .beRszf .api-content h4{color:#fff}.dark-theme body redoc[spec-url] .beRszf .celZWI h1,.dark-theme body redoc[spec-url] .beRszf .celZWI h2,.dark-theme body redoc[spec-url] .beRszf .celZWI h3,.dark-theme body redoc[spec-url] .beRszf .celZWI h4{color:#fff}.dark-theme body redoc[spec-url] .beRszf .celZWI .fKwhsn,.dark-theme body redoc[spec-url] .beRszf .celZWI .hvYMHo{background-color:#242424}.dark-theme body redoc[spec-url] .beRszf .celZWI .fKwhsn .hmRbVC,.dark-theme body redoc[spec-url] .beRszf .celZWI .hvYMHo .hmRbVC{color:#fff;background-color:#25252c}.dark-theme body redoc[spec-url] .beRszf .celZWI .fKwhsn .hmRbVC>span,.dark-theme body redoc[spec-url] .beRszf .celZWI .hvYMHo .hmRbVC>span{color:#fff}@media screen and (min-width:50.01rem) and (max-width:75rem){.dark-theme body #version-selector .dropdown-btn{border-color:#ffe853}}@media screen and (min-width:50.01rem) and (max-width:75rem){.dark-theme body #version-selector .dropdown-menu{border-color:#ffe853}} +body{position:relative;margin-top:calc(80px + 54px);font-family:Manrope,sans-serif;font-size:16px;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-assets{position:relative}.icon-assets svg{position:absolute;left:-9999px;overflow:hidden;width:0;height:0}.inner-body{position:relative;width:100%}@media (min-width:1600px){.inner-body{max-width:1600px;margin-left:auto;margin-right:auto}}@media (min-width:1200px){.inner-body{display:flex;flex-direction:row}}@media (min-width:1200px) and (max-width:1299px){.inner-body{max-width:1180px;margin-left:auto;margin-right:auto}}@media (min-width:1300px) and (max-width:1399px){.inner-body{max-width:1250px;margin-left:auto;margin-right:auto}}@media (min-width:1400px) and (max-width:1599px){.inner-body{max-width:1530px;margin-left:auto;margin-right:auto}}@media (min-width:1780px){.inner-body{max-width:1780px;margin-left:auto;margin-right:auto}}.rubric.h1,h1{display:block;width:-moz-fit-content;width:fit-content;margin-top:1.2rem;margin-bottom:1rem;font-size:30px;font-weight:500;letter-spacing:.01em;line-height:1.5em}@media (max-width:1199px){.rubric.h1,h1{font-size:24px}}.rubric.h2,h2{display:block;width:-moz-fit-content;width:fit-content;margin-top:1.2rem;margin-bottom:1rem;font-size:28px;font-weight:600;letter-spacing:.03em}@media (max-width:1199px){.rubric.h2,h2{font-size:23px}}.rubric.h3,h3{display:block;width:-moz-fit-content;width:fit-content;margin-top:1.2rem;margin-bottom:1rem;font-size:22px;font-weight:600;letter-spacing:.03em}@media (max-width:1199px){.rubric.h3,h3{font-size:18px}}.rubric.h4,h4{display:block;width:-moz-fit-content;width:fit-content;margin-top:1.2rem;margin-bottom:1rem;font-size:18px;font-weight:600;letter-spacing:.03em}@media (max-width:1199px){.rubric.h4,h4{font-size:17px}}.rubric.h5,h5{display:block;width:-moz-fit-content;width:fit-content;margin-top:1.2rem;margin-bottom:1rem;font-size:16px;font-weight:600;letter-spacing:.03em}.rubric.h6,h6{display:block;width:-moz-fit-content;width:fit-content;margin-top:1.2rem;margin-bottom:1rem;font-size:16px;font-weight:600;letter-spacing:.03em}main{min-height:calc(100vh - 80px);padding-right:15px;padding-left:15px}@media (max-width:767px){main{min-height:auto}}@media (min-width:1200px){main{min-height:calc(100vh - 80px - 70px);padding-left:30px}}@media (min-width:576px){main>section{padding-left:28px;padding-right:28px}}main img{max-width:100%;margin-top:1rem;margin-bottom:1rem}main p{margin-top:1rem;margin-bottom:1rem;font-family:Manrope,sans-serif;font-style:normal;line-height:32px;letter-spacing:.03em}main table{margin-top:1rem;margin-bottom:1rem}main table td,main table th{vertical-align:middle}.sidebar{flex-shrink:0;position:sticky}.sidebar .sidebar-container{top:0;overflow-y:auto}a{text-decoration:none}a:active{font-weight:600}th .line,th p{margin:0;font-weight:inherit;font-weight:500}cite{font-style:italic}cite:after{content:"";padding-right:3px}@media (min-width:576px){.container{max-width:90%}}@media (min-width:768px){.container{max-width:90%}}@media (min-width:992px){.container{max-width:97%}}@media (min-width:1200px){.container{max-width:1180px}}@media (min-width:1300px){.container{max-width:1250px}}@media (min-width:1600px){.container{max-width:1400px}}.wzh-remark{background-image:linear-gradient(90deg,transparent -1.54%,rgba(13,99,237,.5) 98.88%);display:inline;background-size:100% 5px;background-position:100% 90%;background-repeat:no-repeat;line-height:1.5em;padding-block-end:0.25em}body{color:#292929;background-color:#fff}.light-theme body{color:#292929;background-color:#fff}.light-theme body.document,.light-theme body.not_found,.light-theme body.search{background:linear-gradient(90deg,#f7f7f7 50%,#fff 50%)}.light-theme body #central-column{background-color:#fff}.light-theme body a{color:#256bd1}.light-theme body a:focus,.light-theme body a:hover{color:#3585f9}.light-theme body a:active{color:#256bd1}@media (prefers-color-scheme:dark){body{color:#fff;background-color:#2a2d34}}.dark-theme body{color:#fff;background-color:#2a2d34}.dark-theme body.document,.dark-theme body.not_found,.dark-theme body.search{background:linear-gradient(90deg,#343741 50%,#2a2d34 50%)}.dark-theme body #central-column{background-color:#2a2d34}.dark-theme body a{color:#499cfe}.dark-theme body a:focus,.dark-theme body a:hover{color:#6ca2f0}.dark-theme body a:active{color:#499cfe}.section.accordion-parent{display:inline-block;width:100%;margin-top:0;margin-bottom:0}.accordion-title{display:flex;align-items:center;width:100%;height:1.5em;border-bottom:2px solid}@media (max-width:1199px){.accordion-title{display:inline-block;height:auto}}.accordion-title::before{display:inline-block;width:20px;height:20px;margin-right:10px;content:"";background-repeat:no-repeat;background-position:center;background-size:20px 20px;transition:transform .2s}@media (max-width:1199px){.accordion-title::before{width:14px;height:14px}}.accordion-title.collapsed::before{transition:transform .2s;transform:rotateZ(-90deg)}.light-theme .accordion-title{border-bottom-color:#b7c6d7}.light-theme .accordion-title::before{background-image:url("../../images/icons/svg-icons.svg#chevron-blue-lt")}.dark-theme .accordion-title{border-bottom-color:#e1e1e5}.dark-theme .accordion-title::before{background-image:url("../../images/icons/svg-icons.svg#chevron-blue-dt")}#central-column .admonition{padding:0 20px 1px;margin-top:1rem;margin-bottom:1rem;border-left:5px solid}#central-column .admonition:not(.long){padding-top:15px;padding-bottom:15px}#central-column .admonition:not(.long) p{display:inline;padding-bottom:1rem;margin-bottom:0}#central-column .admonition.long .admonition-title::after{position:absolute;top:18px;left:0;display:inline-block;width:1.5rem;height:1.5rem;vertical-align:middle;content:""}#central-column .admonition.long.attention .admonition-title,#central-column .admonition.long.caution .admonition-title,#central-column .admonition.long.danger .admonition-title,#central-column .admonition.long.error .admonition-title,#central-column .admonition.long.hint .admonition-title,#central-column .admonition.long.important .admonition-title,#central-column .admonition.long.note .admonition-title,#central-column .admonition.long.tip .admonition-title,#central-column .admonition.long.warning .admonition-title{padding-left:38px}#central-column .admonition .admonition-title{position:relative;padding:16px 5px 16px 0;margin-bottom:0;font-size:18px;font-weight:600;line-height:28px}.light-theme #central-column .admonition{color:#292929;background-color:rgba(84,95,115,.05);border-color:#545f73}.light-theme #central-column .admonition .admonition-title{color:#545f73}.light-theme #central-column .admonition.note{border-color:#3585f9;background-color:rgba(53,133,249,.05)}.light-theme #central-column .admonition.note .admonition-title{color:#256bd1}.light-theme #central-column .admonition.note .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-check-lt")}.light-theme #central-column .admonition.warning{border-color:#ff7a2f;background-color:rgba(255,122,47,.05)}.light-theme #central-column .admonition.warning .admonition-title{color:#b35621}.light-theme #central-column .admonition.warning .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-exclamation-orange")}.light-theme #central-column .admonition.attention{border-color:#3585f9;background-color:rgba(53,133,249,.05)}.light-theme #central-column .admonition.attention .admonition-title{color:#256bd1}.light-theme #central-column .admonition.attention .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-bell-lt")}.light-theme #central-column .admonition.caution{border-color:#ff7a2f;background-color:rgba(255,122,47,.05)}.light-theme #central-column .admonition.caution .admonition-title{color:#b35621}.light-theme #central-column .admonition.caution .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-exclamation-orange")}.light-theme #central-column .admonition.danger{border-color:#bd271e;background-color:rgba(189,39,30,.05)}.light-theme #central-column .admonition.danger .admonition-title{color:#bd271e}.light-theme #central-column .admonition.danger .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-exclamation-red-lt")}.light-theme #central-column .admonition.error{border-color:#bd271e;background-color:rgba(189,39,30,.05)}.light-theme #central-column .admonition.error .admonition-title{color:#bd271e}.light-theme #central-column .admonition.error .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-x-lt")}.light-theme #central-column .admonition.hint{border-color:#207d82;background-color:rgba(32,125,130,.05)}.light-theme #central-column .admonition.hint .admonition-title{color:#207d82}.light-theme #central-column .admonition.hint .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-bulb")}.light-theme #central-column .admonition.important{border-color:#3585f9;background-color:rgba(53,133,249,.05)}.light-theme #central-column .admonition.important .admonition-title{color:#256bd1}.light-theme #central-column .admonition.important .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-exclamation-blue-lt")}.light-theme #central-column .admonition.tip{border-color:#207d82;background-color:rgba(32,125,130,.05)}.light-theme #central-column .admonition.tip .admonition-title{color:#207d82}.light-theme #central-column .admonition.tip .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-bulb")}.dark-theme #central-column .admonition{color:#fff;background-color:rgba(146,152,171,.1);border-color:#9298ab}.dark-theme #central-column .admonition .admonition-title{color:#9298ab}.dark-theme #central-column .admonition.note{border-color:#499cfe;background-color:rgba(73,156,254,.1)}.dark-theme #central-column .admonition.note .admonition-title{color:#499cfe}.dark-theme #central-column .admonition.note .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-check-dt")}.dark-theme #central-column .admonition.warning{border-color:#ff7a2f;background-color:rgba(255,122,47,.1)}.dark-theme #central-column .admonition.warning .admonition-title{color:#ff7a2f}.dark-theme #central-column .admonition.warning .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-exclamation-orange")}.dark-theme #central-column .admonition.attention{border-color:#499cfe;background-color:rgba(73,156,254,.1)}.dark-theme #central-column .admonition.attention .admonition-title{color:#499cfe}.dark-theme #central-column .admonition.attention .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-bell-dt")}.dark-theme #central-column .admonition.caution{border-color:#ff7a2f;background-color:rgba(255,122,47,.1)}.dark-theme #central-column .admonition.caution .admonition-title{color:#ff7a2f}.dark-theme #central-column .admonition.caution .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-exclamation-orange")}.dark-theme #central-column .admonition.danger{border-color:#f86b63;background-color:rgba(248,107,99,.1)}.dark-theme #central-column .admonition.danger .admonition-title{color:#f86b63}.dark-theme #central-column .admonition.danger .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-exclamation-red-dt")}.dark-theme #central-column .admonition.error{border-color:#f86b63;background-color:rgba(248,107,99,.1)}.dark-theme #central-column .admonition.error .admonition-title{color:#f86b63}.dark-theme #central-column .admonition.error .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-x-dt")}.dark-theme #central-column .admonition.hint{border-color:#207d82;background-color:rgba(32,125,130,.1)}.dark-theme #central-column .admonition.hint .admonition-title{color:#207d82}.dark-theme #central-column .admonition.hint .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-bulb")}.dark-theme #central-column .admonition.important{border-color:#499cfe;background-color:rgba(73,156,254,.1)}.dark-theme #central-column .admonition.important .admonition-title{color:#499cfe}.dark-theme #central-column .admonition.important .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-exclamation-blue-dt")}.dark-theme #central-column .admonition.tip{border-color:#207d82;background-color:rgba(32,125,130,.1)}.dark-theme #central-column .admonition.tip .admonition-title{color:#207d82}.dark-theme #central-column .admonition.tip .admonition-title::after{background:url("../../images/icons/svg-icons.svg#circle-bulb")}main .versionmodified{position:relative;display:inline-block;padding-left:38px;font-weight:600}main .versionmodified::before{position:absolute;top:3px;left:0;display:block;width:24px;height:24px;content:""}main .versionmodified.changed::before{background:url("../../images/icons/svg-icons.svg#circle-exclamation-orange")}main .versionmodified.deprecated::before{background:url("../../images/icons/svg-icons.svg#circle-exclamation-orange")}.light-theme .versionmodified.added::before{background:url("../../images/icons/svg-icons.svg#circle-exclamation-blue-lt")}.dark-theme .versionmodified.added::before{background:url("../../images/icons/svg-icons.svg#circle-exclamation-blue-dt")}#central-column .step-card{padding:30px;border-radius:10px}@media (max-width:575px){#central-column .step-card{padding:10px}}#central-column .step-card .rubric.h1,#central-column .step-card .rubric.h2,#central-column .step-card .rubric.h3,#central-column .step-card .rubric.h4,#central-column .step-card .rubric.h5,#central-column .step-card .rubric.h6,#central-column .step-card h1,#central-column .step-card h2,#central-column .step-card h3,#central-column .step-card h4,#central-column .step-card h5,#central-column .step-card h6{display:inline-block;width:100%;padding-bottom:5px;margin-top:0;border-bottom:1px solid}#central-column .step-card.section{margin-top:0}#central-column .step-card.section::before{content:none}#central-column .step-card .section.accordion-parent{margin-top:1rem}.light-theme #central-column .step-card{background-color:#fafcff}.light-theme #central-column .step-card .rubric.h1,.light-theme #central-column .step-card .rubric.h2,.light-theme #central-column .step-card .rubric.h3,.light-theme #central-column .step-card .rubric.h4,.light-theme #central-column .step-card .rubric.h5,.light-theme #central-column .step-card .rubric.h6,.light-theme #central-column .step-card h1,.light-theme #central-column .step-card h2,.light-theme #central-column .step-card h3,.light-theme #central-column .step-card h4,.light-theme #central-column .step-card h5,.light-theme #central-column .step-card h6{color:#256bd1;border-color:#b7c6d7}.dark-theme #central-column .step-card{background-color:#1d2025}.dark-theme #central-column .step-card .rubric.h1,.dark-theme #central-column .step-card .rubric.h2,.dark-theme #central-column .step-card .rubric.h3,.dark-theme #central-column .step-card .rubric.h4,.dark-theme #central-column .step-card .rubric.h5,.dark-theme #central-column .step-card .rubric.h6,.dark-theme #central-column .step-card h1,.dark-theme #central-column .step-card h2,.dark-theme #central-column .step-card h3,.dark-theme #central-column .step-card h4,.dark-theme #central-column .step-card h5,.dark-theme #central-column .step-card h6{color:#499cfe}@media (min-width:1200px){.inner-body:not(.not-top) .breadcrumb-wrapper{top:calc(80px + 54px)}}.not-top .breadcrumb-wrapper{position:fixed}@media (min-width:1200px) and (max-width:1299px){.not-top .breadcrumb-wrapper{max-width:calc(1180px - 465px)}}@media (min-width:1300px) and (max-width:1399px){.not-top .breadcrumb-wrapper{max-width:calc(1250px - 510px)}}@media (min-width:1400px) and (max-width:1599px){.not-top .breadcrumb-wrapper{width:calc(100% - 510px);max-width:calc(1530px - 510px)}}@media (min-width:1600px) and (max-width:1779px){.not-top .breadcrumb-wrapper{max-width:calc(1600px - 510px)}}@media (min-width:1780px){.not-top .breadcrumb-wrapper{max-width:calc(1780px - 560px)}}.breadcrumb-wrapper{order:1;top:80px;z-index:99;display:flex;flex-direction:row;width:100%;min-height:80px;padding:5px 15px 15px 30px}@media (max-width:575px){.breadcrumb-wrapper{position:static;overflow:auto}}@media (max-width:1199px){.breadcrumb-wrapper{top:calc(80px + 54px);align-items:center;padding-left:15px;padding-bottom:5px;position:fixed}}@media (min-width:1200px){.breadcrumb-wrapper{align-items:flex-end;max-height:120px;max-width:100%}}#breadcrumbs{display:block;width:100%;padding:0;margin:0;list-style:none}@media (max-width:575px){#breadcrumbs{display:block}}@media (max-width:575px){#breadcrumbs{font-size:14px}}@media (min-width:1200px) and (max-width:1299px){#breadcrumbs{font-size:14px}}#breadcrumbs li{display:inline}#breadcrumbs .home-icon,.breadcrumbs .home-icon{position:relative;bottom:4px}#breadcrumbs a:focus:first-of-type,#breadcrumbs a:hover:first-of-type,.breadcrumbs a:focus:first-of-type,.breadcrumbs a:hover:first-of-type{text-decoration:none}.breadcrumb-separator::after{display:inline-block;margin:0 7px;font-size:1.1rem;content:"/"}.light-theme .breadcrumb-wrapper{background-color:#fff}.light-theme #breadcrumbs,.light-theme .breadcrumbs{color:#292929;background-color:#fff}.light-theme #breadcrumbs .home-icon,.light-theme .breadcrumbs .home-icon{fill:#3585f9}.light-theme #breadcrumbs a:focus .home-icon,.light-theme #breadcrumbs a:hover .home-icon,.light-theme .breadcrumbs a:focus .home-icon,.light-theme .breadcrumbs a:hover .home-icon{fill:#6ca2f0}.light-theme .breadcrumb-separator::after{color:#292929}.dark-theme .breadcrumb-wrapper{background-color:#2a2d34}.dark-theme #breadcrumbs,.dark-theme .breadcrumbs{color:#fff;background-color:#2a2d34}.dark-theme #breadcrumbs .home-icon,.dark-theme .breadcrumbs .home-icon{fill:#3585f9}.dark-theme #breadcrumbs a:focus .home-icon,.dark-theme #breadcrumbs a:hover .home-icon,.dark-theme .breadcrumbs a:focus .home-icon,.dark-theme .breadcrumbs a:hover .home-icon{fill:#6ca2f0}.dark-theme .breadcrumb-separator::after{color:#fff}main code,main kbd,main pre,main samp{font-family:"Fira Mono",monospace}.literal-block-wrapper.docutils.container{max-width:100%;padding-right:0;padding-left:0}.literal-block-wrapper.docutils.container .code-block-caption{display:flex;align-items:center;justify-content:space-between;height:48px;padding:5px 10px;margin-top:1rem;border-radius:10px 10px 0 0}.literal-block-wrapper.docutils.container .code-block-caption:hover .headerlink::after{opacity:1;transition:opacity ease-in .1s}.literal-block-wrapper.docutils.container tbody tr td{padding:0;border:none}.literal-block-wrapper.docutils.container [class*=highlight-]{margin-top:0}[class*=highlight-]{position:relative;max-width:100%;margin-top:1rem;margin-bottom:1rem;overflow-y:hidden;border:1px solid;transition:max-height .2s}[class*=highlight-].output{max-height:100vh;border-radius:10px}[class*=highlight-].output .output-title{display:flex;align-items:center;width:100%;height:40px;font-weight:600;cursor:pointer;border-radius:10px 10px 0 0}[class*=highlight-].output .output-title::before{width:40px;height:40px;content:"";background-repeat:no-repeat;background-position:center;background-size:18px 18px;transition:transform .1s}[class*=highlight-].output.collapsed{max-height:40px;transition:max-height .2s}[class*=highlight-].output.collapsed .output-title{border-radius:10px;transition:border-radius 50ms .2s}[class*=highlight-].output.collapsed .output-title::before{transition:transform .1s;transform:rotateZ(-90deg)}[class*=highlight-].output.expanded{max-height:unset}[class*=highlight-]:hover .copy-to-clipboard{opacity:1}[class*=highlight-] .copy-to-clipboard{position:absolute;top:7px;right:7px;z-index:10;padding:8px;min-width:28.25px;height:30px;display:flex;cursor:pointer;border:0;border-radius:10px;opacity:0;transition:all .2s ease}[class*=highlight-] .copy-to-clipboard:focus{opacity:1}[class*=highlight-] .copy-to-clipboard.copied{opacity:1}[class*=highlight-] .copy-to-clipboard span{display:none;font-family:Manrope,sans-serif;font-size:.9rem;line-height:1}[class*=highlight-] .copy-to-clipboard svg{width:12.25px;height:14px}[class*=highlight-] .gp,[class*=highlight-] .no-select{-webkit-user-select:none;-moz-user-select:none;user-select:none}[class*=highlight-] td.code pre{z-index:6;padding:0 20px;overflow:visible}[class*=highlight-] .linenos{display:inline-block;height:24px;text-align:right;padding-right:20px;margin-right:20px;width:40px;background-color:transparent;-webkit-user-select:none;-moz-user-select:none;user-select:none;border-right:1px solid}[class*=highlight-] .highlight{position:relative;z-index:0;display:flex;padding:0;overflow-x:auto;font-family:"Fira Mono",monospace;line-height:24px}[class*=highlight-] .highlight pre{position:unset;padding:0 20px 20px;margin:0;line-height:24px}[class*=highlight-] .highlight>pre{padding-top:20px}[class*=highlight-] .highlight .hll{display:block;background-color:transparent}[class*=highlight-] .highlight .hll::before{position:absolute;right:0;left:-50px;z-index:-1;display:block;height:24px;content:""}[class*=highlight-] .highlight .hll>span{position:relative;z-index:25}[class*=highlight-] .highlight .k,[class*=highlight-] .highlight .kn{font-weight:500}[class*=highlight-] .highlight .gp,[class*=highlight-] .highlight .nc,[class*=highlight-] .highlight .ni,[class*=highlight-] .highlight .nn,[class*=highlight-] .highlight .nt,[class*=highlight-] .highlight .ow,[class*=highlight-] .highlight .se{font-weight:400}.light-theme .literal-block-wrapper.docutils.container .code-block-caption{background-color:#fafcff}.light-theme .literal-block-wrapper.docutils.container .code-block-caption .headerlink::after{color:#545f73}.light-theme .admonition [class*=highlight-]{border-color:#b7c6d7}.light-theme [class*=highlight-]{border-color:#e2eefe}.light-theme [class*=highlight-].output{background-color:#f4f6fa}.light-theme [class*=highlight-].output .output-title{background-color:#fafcff}.light-theme [class*=highlight-].output .output-title::before{background-image:url("../../images/icons/svg-icons.svg#chevron-blue-lt")}.light-theme [class*=highlight-] .linenos{background-color:transparent;border-right-color:#dce8f8}.light-theme [class*=highlight-] .copy-to-clipboard{color:#292929;background-color:#f7f7f7}.light-theme [class*=highlight-] .copy-to-clipboard svg{fill:#292929}.light-theme [class*=highlight-] .copy-to-clipboard:hover{color:#fff;background-color:#3585f9}.light-theme [class*=highlight-] .copy-to-clipboard:hover svg{fill:#fff}.light-theme [class*=highlight-] .copy-to-clipboard.copied{color:#fff;background-color:#256bd1}.light-theme [class*=highlight-] .copy-to-clipboard.copied svg{fill:#fff}.light-theme [class*=highlight-] .linenodiv{border-right-color:#dce8f8}.light-theme [class*=highlight-] .linenodiv pre{color:#545f73}.light-theme [class*=highlight-] .highlight{color:#000;background-color:#f4f6fa}.light-theme [class*=highlight-] .highlight .hll::before{background-color:#e2eefe}.light-theme [class*=highlight-] .highlight .gp,.light-theme [class*=highlight-] .highlight .no-select{color:rgba(0,0,0,.54)}.light-theme [class*=highlight-] .highlight .mo,.light-theme [class*=highlight-] .highlight .nc,.light-theme [class*=highlight-] .highlight .ni,.light-theme [class*=highlight-] .highlight .nn,.light-theme [class*=highlight-] .highlight .ow{color:#000}.light-theme [class*=highlight-] .highlight .k,.light-theme [class*=highlight-] .highlight .kn{color:#000}.light-theme [class*=highlight-] .highlight .c,.light-theme [class*=highlight-] .highlight .c1,.light-theme [class*=highlight-] .highlight .ch,.light-theme [class*=highlight-] .highlight .cm,.light-theme [class*=highlight-] .highlight .cp,.light-theme [class*=highlight-] .highlight .go,.light-theme [class*=highlight-] .highlight .sd{color:#80700a}.light-theme [class*=highlight-] .highlight .m,.light-theme [class*=highlight-] .highlight .mi{color:#0e4a9f}.light-theme [class*=highlight-] .highlight .heredoc,.light-theme [class*=highlight-] .highlight .heredoc span,.light-theme [class*=highlight-] .highlight .s,.light-theme [class*=highlight-] .highlight .s1,.light-theme [class*=highlight-] .highlight .s2,.light-theme [class*=highlight-] .highlight .sb,.light-theme [class*=highlight-] .highlight .se,.light-theme [class*=highlight-] .highlight .sh,.light-theme [class*=highlight-] .highlight .si{color:#bd3d9c}.light-theme [class*=highlight-] .highlight .bp,.light-theme [class*=highlight-] .highlight .n,.light-theme [class*=highlight-] .highlight .nb,.light-theme [class*=highlight-] .highlight .nf,.light-theme [class*=highlight-] .highlight .vm{color:#256bd1}.light-theme [class*=highlight-] .highlight .na,.light-theme [class*=highlight-] .highlight .no,.light-theme [class*=highlight-] .highlight .nt,.light-theme [class*=highlight-] .highlight .nv{color:#7c3db2}.light-theme .highlight-console .highlight pre .nb{color:#000}.dark-theme .literal-block-wrapper.docutils.container .code-block-caption{background-color:#343741}.dark-theme .literal-block-wrapper.docutils.container .code-block-caption .headerlink::after{color:#9298ab}.dark-theme .admonition [class*=highlight-]{border-color:#25252c}.dark-theme [class*=highlight-]{border-color:transparent}.dark-theme [class*=highlight-].output{background-color:#25252c}.dark-theme [class*=highlight-].output .output-title{color:#fff;background-color:#191919}.dark-theme [class*=highlight-].output .output-title::before{background-image:url("../../images/icons/svg-icons.svg#chevron-blue-dt")}.dark-theme [class*=highlight-] .linenos{background-color:transparent;border-right-color:#b7c6d7}.dark-theme [class*=highlight-] .copy-to-clipboard{color:#fff;background-color:#343741}.dark-theme [class*=highlight-] .copy-to-clipboard svg{fill:#fff}.dark-theme [class*=highlight-] .copy-to-clipboard:hover{color:#2a2d34;background-color:#6ca2f0}.dark-theme [class*=highlight-] .copy-to-clipboard:hover svg{fill:#2a2d34}.dark-theme [class*=highlight-] .copy-to-clipboard.copied{color:#2a2d34;background-color:#499cfe}.dark-theme [class*=highlight-] .copy-to-clipboard.copied svg{fill:#2a2d34}.dark-theme [class*=highlight-] .linenodiv{border-right-color:#b7c6d7}.dark-theme [class*=highlight-] .linenodiv pre{color:#9298ab}.dark-theme [class*=highlight-] .highlight{background-color:#25252c}.dark-theme [class*=highlight-] .highlight pre{color:#fff}.dark-theme [class*=highlight-] .highlight .hll::before{background-color:#191919}.dark-theme [class*=highlight-] .highlight .gp,.dark-theme [class*=highlight-] .highlight .no-select{color:rgba(255,255,255,.54)}.dark-theme [class*=highlight-] .highlight .mo,.dark-theme [class*=highlight-] .highlight .nc,.dark-theme [class*=highlight-] .highlight .ni,.dark-theme [class*=highlight-] .highlight .nn,.dark-theme [class*=highlight-] .highlight .ow{color:#fff}.dark-theme [class*=highlight-] .highlight .k,.dark-theme [class*=highlight-] .highlight .kn{color:#fff}.dark-theme [class*=highlight-] .highlight .c,.dark-theme [class*=highlight-] .highlight .c1,.dark-theme [class*=highlight-] .highlight .ch,.dark-theme [class*=highlight-] .highlight .cm,.dark-theme [class*=highlight-] .highlight .cp,.dark-theme [class*=highlight-] .highlight .go,.dark-theme [class*=highlight-] .highlight .sd{color:#ffe853}.dark-theme [class*=highlight-] .highlight .m,.dark-theme [class*=highlight-] .highlight .mi{color:#6ca2f0}.dark-theme [class*=highlight-] .highlight .heredoc,.dark-theme [class*=highlight-] .highlight .heredoc span,.dark-theme [class*=highlight-] .highlight .s,.dark-theme [class*=highlight-] .highlight .s1,.dark-theme [class*=highlight-] .highlight .s2,.dark-theme [class*=highlight-] .highlight .sb,.dark-theme [class*=highlight-] .highlight .se,.dark-theme [class*=highlight-] .highlight .sh,.dark-theme [class*=highlight-] .highlight .si{color:#f6b7f6}.dark-theme [class*=highlight-] .highlight .bp,.dark-theme [class*=highlight-] .highlight .n,.dark-theme [class*=highlight-] .highlight .nb,.dark-theme [class*=highlight-] .highlight .nf,.dark-theme [class*=highlight-] .highlight .vm{color:#499cfe}.dark-theme [class*=highlight-] .highlight .na,.dark-theme [class*=highlight-] .highlight .no,.dark-theme [class*=highlight-] .highlight .nt,.dark-theme [class*=highlight-] .highlight .nv{color:#b677dc}.dark-theme .highlight-console .highlight pre .nb{color:#fff}.sphinx-tabs{margin-top:1.5rem;margin-bottom:1.5rem;padding:0;font-family:Manrope,sans-serif;position:relative;z-index:0}.sphinx-tabs.docutils.container{max-width:100%}.sphinx-tabs [role=tablist]{flex-wrap:wrap-reverse;padding:0;border:none}.sphinx-tabs [role=tablist] [role=tab]{position:relative;z-index:0;font-family:Manrope,sans-serif;padding:23px calc(23px + .15%);font-weight:500;border:1px solid;border-radius:10px 10px 0 0!important}@media (max-width:575px){.sphinx-tabs [role=tablist] [role=tab]{padding:12px calc(12px + .15%)}}.sphinx-tabs [role=tablist] [role=tab][aria-selected=true]{padding:23px;font-weight:600;pointer-events:none;position:relative;z-index:20;bottom:-1px}@media (max-width:575px){.sphinx-tabs [role=tablist] [role=tab][aria-selected=true]{padding:12px}}.sphinx-tabs .sphinx-tabs-panel{padding:.5em 1em;border:1px solid;margin:0;border-radius:0 0 10px 10px;position:relative;z-index:10}.light-theme .sphinx-tabs [role=tablist] [role=tab]{color:#292929;background-color:#f7f7f7;border-color:#f7f7f7}.light-theme .sphinx-tabs [role=tablist] [role=tab][aria-selected=true]{color:#256bd1;background-color:#fff;border-color:#256bd1 #256bd1 #fff #256bd1}.light-theme .sphinx-tabs [role=tablist] [role=tab][aria-selected=true]:hover{background-color:#fff;border-bottom-color:#fff}.light-theme .sphinx-tabs [role=tablist] [role=tab]:hover{color:#256bd1;background-color:#f7f7f7;border-color:#256bd1 #256bd1 #fff #256bd1}.light-theme .sphinx-tabs .sphinx-tabs-panel{border-color:#256bd1;color:#292929;background-color:#fff}.dark-theme .sphinx-tabs [role=tablist] [role=tab]{color:#fff;background-color:#242424;border-color:#242424}.dark-theme .sphinx-tabs [role=tablist] [role=tab][aria-selected=true]{color:#499cfe;background-color:#14161a;border-color:#499cfe #499cfe #14161a #499cfe}.dark-theme .sphinx-tabs [role=tablist] [role=tab][aria-selected=true]:hover{background-color:#14161a;border-bottom-color:#14161a}.dark-theme .sphinx-tabs [role=tablist] [role=tab]:hover{color:#499cfe;background-color:#242424;border-color:#499cfe #499cfe #14161a #499cfe}.dark-theme .sphinx-tabs .sphinx-tabs-panel{border-color:#499cfe;color:#fff;background-color:#14161a}#wazuh-light-box-overlay{z-index:2000}#wazuh-light-box{z-index:2100}#wazuh-light-box .wazuh-light-box-slides-container{padding:60px;margin:60px}#wazuh-light-box .wlb-image{max-height:calc(100vh - 8rem - 40px);border:10px solid #f0f2f6}.wazuh-image-wrapper{display:inline}.link-boxes-group{display:flex;flex-wrap:wrap;justify-content:space-between;margin:2rem auto}@media (max-width:767px){.link-boxes-group.limited-width{flex-direction:column}}@media (max-width:767px){.link-boxes-group[data-step]{position:relative;padding-left:60px}}.link-boxes-group[data-step] .link-boxes-item .link-boxes-link{padding-top:15px;padding-bottom:15px}.link-boxes-group[data-step] .link-boxes-item .link-boxes-link img{max-width:unset}@media (min-width:1200px) and (max-width:1299px){.link-boxes-group[data-step] .link-boxes-item .link-boxes-link img{max-height:50px}}.link-boxes-group .steps-line{position:relative;display:flex;flex-direction:row;width:100%;height:48px;margin-bottom:32px;justify-content:space-around;align-items:center;z-index:1}@media (max-width:767px){.link-boxes-group .steps-line{position:absolute;top:0;left:0;bottom:0;width:48px;height:calc(100% - 15px);margin-bottom:0;flex-direction:column}}.link-boxes-group .steps-line::before{position:absolute;top:24px;left:0;right:0;content:"";width:100%;height:3px;background-color:#c5c5c5;display:block;z-index:2}@media (max-width:767px){.link-boxes-group .steps-line::before{top:0;bottom:0;left:24px;width:3px;height:100%}}.link-boxes-group .steps-line .steps-number{font-size:18px;display:flex;width:39px;height:39px;border:2px solid;border-radius:25px;z-index:4;justify-content:center;align-items:center;position:relative;overflow:hidden}.link-boxes-group .steps-line .steps-number.past-step:before{content:"";width:23px;height:23px;display:block;background:#fff;position:absolute;top:6px;left:6px;border:7px solid transparent;border-radius:50%}.link-boxes-group .steps-line .steps-number.past-step:after{content:"";display:block;width:35px;height:35px;background-position:center;background-size:cover;position:absolute;top:0;bottom:0;right:0;left:0}.link-boxes-group .steps-line .steps-number.current-step{font-size:22px;width:48px;height:48px}.link-boxes-group.layout-2 .link-boxes-item,.link-boxes-group.layout-2x2 .link-boxes-item{width:calc((100% - 15px)/ 2)}@media (max-width:767px){.link-boxes-group.layout-2 .link-boxes-item,.link-boxes-group.layout-2x2 .link-boxes-item{width:calc((100% - 15px)/ 2)}}@media (max-width:575px){.link-boxes-group.layout-2 .link-boxes-item,.link-boxes-group.layout-2x2 .link-boxes-item{width:100%}}.link-boxes-group.layout-3 .link-boxes-item{width:calc((100% - 30px)/ 3)}@media (max-width:767px){.link-boxes-group.layout-3 .link-boxes-item{width:100%}}.link-boxes-group.layout-3 .link-boxes-item .link-boxes-link p:not(.link-boxes-label){min-width:135px;flex-basis:0;text-align:center}.link-boxes-group.layout-3.limited-width .link-boxes-item{max-width:320px}.link-boxes-group.layout-4 .link-boxes-item{width:calc((100% - 45px)/ 4)}@media (max-width:767px){.link-boxes-group.layout-4 .link-boxes-item{width:calc((100% - 15px)/ 2)}}@media (max-width:575px){.link-boxes-group.layout-4 .link-boxes-item{width:100%}}.link-boxes-group.layout-4 .link-boxes-item .link-boxes-link p:not(.link-boxes-label){min-width:135px;flex-basis:0;text-align:center}.link-boxes-group.layout-5 .link-boxes-item{width:calc((100% - 60px)/ 5)}@media (max-width:767px){.link-boxes-group.layout-5 .link-boxes-item{width:calc((100% - 15px)/ 2)}}@media (max-width:575px){.link-boxes-group.layout-5 .link-boxes-item{width:100%}}.link-boxes-group.layout-5 .link-boxes-item .link-boxes-link p:not(.link-boxes-label){min-width:135px;flex-basis:0;text-align:center}.link-boxes-group.layout-6 .link-boxes-item{width:calc((100% - 75px)/ 6)}@media (max-width:767px){.link-boxes-group.layout-6 .link-boxes-item{width:calc((100% - 15px)/ 2)}}@media (min-width:768px) and (max-width:991px){.link-boxes-group.layout-6 .link-boxes-item{width:calc((100% - 30px)/ 3)}}.link-boxes-group.layout-6 .link-boxes-item .link-boxes-link p:not(.link-boxes-label){min-width:135px;flex-basis:0;text-align:center}.link-boxes-group .link-boxes-item{padding-bottom:15px;display:flex;justify-content:center;align-items:center;margin:0 auto}.link-boxes-group .link-boxes-item:last-child{padding-right:0}.link-boxes-group .link-boxes-item.current-step{cursor:default}.link-boxes-group .link-boxes-item.current-step .link-boxes-label{display:none}.link-boxes-group .link-boxes-item img{border:none}@media (min-width:768px){.link-boxes-group .link-boxes-item .link-boxes-link{min-height:90px}}.link-boxes-group .link-boxes-item .link-boxes-link img{display:inline-block;margin:10px 6px}@media (min-width:1200px) and (max-width:1299px){.link-boxes-group .link-boxes-item .link-boxes-link img{margin:0}}.link-boxes-group .link-boxes-item .doc,.link-boxes-group .link-boxes-item .link-boxes-link{background-color:#fff;position:relative;box-sizing:border-box;min-width:60px;padding:10px;overflow:hidden;color:#292929;box-shadow:3px 3px 7px rgba(0,0,0,.1);border-radius:10px;display:flex;align-items:center;justify-content:center;width:100%;height:100%}.link-boxes-group .link-boxes-item .doc.vertical-content,.link-boxes-group .link-boxes-item .link-boxes-link.vertical-content{flex-direction:column}.link-boxes-group .link-boxes-item .doc.vertical-content img,.link-boxes-group .link-boxes-item .link-boxes-link.vertical-content img{margin-top:0;margin-bottom:0}.link-boxes-group .link-boxes-item .doc:hover .link-boxes-label,.link-boxes-group .link-boxes-item .link-boxes-link:hover .link-boxes-label{opacity:1}.link-boxes-group .link-boxes-item .doc p,.link-boxes-group .link-boxes-item .link-boxes-link p{padding:7px;margin-top:0;margin-bottom:0;line-height:26px}.link-boxes-group .link-boxes-item .link-boxes-label{position:absolute;top:0;bottom:0;display:flex;align-items:center;justify-content:center;width:100%;margin:0;font-size:18px;font-weight:500;line-height:25px;color:#fff;text-align:center;letter-spacing:0;opacity:0;padding:15px}.light-theme .link-boxes-group.layout-2[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 -25%,#c5c5c5 -25%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-2[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#3585f9 -25%,#c5c5c5 -25%)}}.light-theme .link-boxes-group.layout-2[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 25%,#c5c5c5 25%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-2[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#3585f9 25%,#c5c5c5 25%)}}.light-theme .link-boxes-group.layout-2[data-step="2"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-2[data-step="3"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-2[data-step="4"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-2[data-step="5"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-2[data-step="6"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-3[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 -16.6666666667%,#c5c5c5 -16.6666666667%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-3[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#3585f9 -16.6666666667%,#c5c5c5 -16.6666666667%)}}.light-theme .link-boxes-group.layout-3[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 16.6666666667%,#c5c5c5 16.6666666667%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-3[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#3585f9 16.6666666667%,#c5c5c5 16.6666666667%)}}.light-theme .link-boxes-group.layout-3[data-step="2"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 50%,#c5c5c5 50%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-3[data-step="2"] .steps-line::before{background:linear-gradient(180deg,#3585f9 50%,#c5c5c5 50%)}}.light-theme .link-boxes-group.layout-3[data-step="3"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-3[data-step="4"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-3[data-step="5"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-3[data-step="6"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-4[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 -12.5%,#c5c5c5 -12.5%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-4[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#3585f9 -12.5%,#c5c5c5 -12.5%)}}.light-theme .link-boxes-group.layout-4[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 12.5%,#c5c5c5 12.5%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-4[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#3585f9 12.5%,#c5c5c5 12.5%)}}.light-theme .link-boxes-group.layout-4[data-step="2"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 37.5%,#c5c5c5 37.5%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-4[data-step="2"] .steps-line::before{background:linear-gradient(180deg,#3585f9 37.5%,#c5c5c5 37.5%)}}.light-theme .link-boxes-group.layout-4[data-step="3"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 62.5%,#c5c5c5 62.5%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-4[data-step="3"] .steps-line::before{background:linear-gradient(180deg,#3585f9 62.5%,#c5c5c5 62.5%)}}.light-theme .link-boxes-group.layout-4[data-step="4"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-4[data-step="5"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-4[data-step="6"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-5[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 -10%,#c5c5c5 -10%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-5[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#3585f9 -10%,#c5c5c5 -10%)}}.light-theme .link-boxes-group.layout-5[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 10%,#c5c5c5 10%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-5[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#3585f9 10%,#c5c5c5 10%)}}.light-theme .link-boxes-group.layout-5[data-step="2"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 30%,#c5c5c5 30%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-5[data-step="2"] .steps-line::before{background:linear-gradient(180deg,#3585f9 30%,#c5c5c5 30%)}}.light-theme .link-boxes-group.layout-5[data-step="3"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 50%,#c5c5c5 50%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-5[data-step="3"] .steps-line::before{background:linear-gradient(180deg,#3585f9 50%,#c5c5c5 50%)}}.light-theme .link-boxes-group.layout-5[data-step="4"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 70%,#c5c5c5 70%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-5[data-step="4"] .steps-line::before{background:linear-gradient(180deg,#3585f9 70%,#c5c5c5 70%)}}.light-theme .link-boxes-group.layout-5[data-step="5"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-5[data-step="6"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group.layout-6[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 -8.3333333333%,#c5c5c5 -8.3333333333%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-6[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#3585f9 -8.3333333333%,#c5c5c5 -8.3333333333%)}}.light-theme .link-boxes-group.layout-6[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 8.3333333333%,#c5c5c5 8.3333333333%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-6[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#3585f9 8.3333333333%,#c5c5c5 8.3333333333%)}}.light-theme .link-boxes-group.layout-6[data-step="2"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 25%,#c5c5c5 25%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-6[data-step="2"] .steps-line::before{background:linear-gradient(180deg,#3585f9 25%,#c5c5c5 25%)}}.light-theme .link-boxes-group.layout-6[data-step="3"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 41.6666666667%,#c5c5c5 41.6666666667%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-6[data-step="3"] .steps-line::before{background:linear-gradient(180deg,#3585f9 41.6666666667%,#c5c5c5 41.6666666667%)}}.light-theme .link-boxes-group.layout-6[data-step="4"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 58.3333333333%,#c5c5c5 58.3333333333%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-6[data-step="4"] .steps-line::before{background:linear-gradient(180deg,#3585f9 58.3333333333%,#c5c5c5 58.3333333333%)}}.light-theme .link-boxes-group.layout-6[data-step="5"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#3585f9 75%,#c5c5c5 75%)}@media (max-width:767px){.light-theme .link-boxes-group.layout-6[data-step="5"] .steps-line::before{background:linear-gradient(180deg,#3585f9 75%,#c5c5c5 75%)}}.light-theme .link-boxes-group.layout-6[data-step="6"] .steps-line::before{background:#3585f9}.light-theme .link-boxes-group .steps-line .steps-number.past-step{box-shadow:0 0 0 5px #3585f9 inset,3px 3px 7px rgba(0,0,0,.1);border-color:#3585f9;background-color:#3585f9;color:#fff}.light-theme .link-boxes-group .steps-line .steps-number.past-step:after{background:url("../../images/icons/svg-icons.svg#circle-check-lt")}.light-theme .link-boxes-group .steps-line .steps-number.current-step{border-color:#3585f9;background-color:#fff;color:#3585f9}.light-theme .link-boxes-group .steps-line .steps-number.future-step{background-color:#c5c5c5;border-color:#c5c5c5;color:#fff}.light-theme .link-boxes-group .link-boxes-item.current-step .link-boxes-link,.light-theme .link-boxes-group .link-boxes-item.past-step .link-boxes-link{box-shadow:0 0 0 10px #3585f9 inset,3px 3px 7px rgba(0,0,0,.1);background-color:#3585f9}.light-theme .link-boxes-group .link-boxes-item.current-step .link-boxes-link .link-boxes-label,.light-theme .link-boxes-group .link-boxes-item.current-step .link-boxes-link img,.light-theme .link-boxes-group .link-boxes-item.past-step .link-boxes-link .link-boxes-label,.light-theme .link-boxes-group .link-boxes-item.past-step .link-boxes-link img{background-color:#3585f9}.light-theme .link-boxes-group .link-boxes-item a.link-boxes-link:hover{box-shadow:0 0 0 10px #256bd1 inset,3px 3px 7px rgba(0,0,0,.1)}.light-theme .link-boxes-group .link-boxes-item a.link-boxes-link:hover .link-boxes-label{background-color:#256bd1}.dark-theme .link-boxes-group.layout-2[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 -25%,#c5c5c5 -25%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-2[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 -25%,#c5c5c5 -25%)}}.dark-theme .link-boxes-group.layout-2[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 25%,#c5c5c5 25%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-2[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 25%,#c5c5c5 25%)}}.dark-theme .link-boxes-group.layout-2[data-step="2"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-2[data-step="3"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-2[data-step="4"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-2[data-step="5"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-2[data-step="6"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-3[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 -16.6666666667%,#c5c5c5 -16.6666666667%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-3[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 -16.6666666667%,#c5c5c5 -16.6666666667%)}}.dark-theme .link-boxes-group.layout-3[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 16.6666666667%,#c5c5c5 16.6666666667%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-3[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 16.6666666667%,#c5c5c5 16.6666666667%)}}.dark-theme .link-boxes-group.layout-3[data-step="2"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 50%,#c5c5c5 50%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-3[data-step="2"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 50%,#c5c5c5 50%)}}.dark-theme .link-boxes-group.layout-3[data-step="3"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-3[data-step="4"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-3[data-step="5"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-3[data-step="6"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-4[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 -12.5%,#c5c5c5 -12.5%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-4[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 -12.5%,#c5c5c5 -12.5%)}}.dark-theme .link-boxes-group.layout-4[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 12.5%,#c5c5c5 12.5%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-4[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 12.5%,#c5c5c5 12.5%)}}.dark-theme .link-boxes-group.layout-4[data-step="2"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 37.5%,#c5c5c5 37.5%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-4[data-step="2"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 37.5%,#c5c5c5 37.5%)}}.dark-theme .link-boxes-group.layout-4[data-step="3"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 62.5%,#c5c5c5 62.5%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-4[data-step="3"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 62.5%,#c5c5c5 62.5%)}}.dark-theme .link-boxes-group.layout-4[data-step="4"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-4[data-step="5"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-4[data-step="6"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-5[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 -10%,#c5c5c5 -10%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-5[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 -10%,#c5c5c5 -10%)}}.dark-theme .link-boxes-group.layout-5[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 10%,#c5c5c5 10%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-5[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 10%,#c5c5c5 10%)}}.dark-theme .link-boxes-group.layout-5[data-step="2"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 30%,#c5c5c5 30%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-5[data-step="2"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 30%,#c5c5c5 30%)}}.dark-theme .link-boxes-group.layout-5[data-step="3"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 50%,#c5c5c5 50%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-5[data-step="3"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 50%,#c5c5c5 50%)}}.dark-theme .link-boxes-group.layout-5[data-step="4"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 70%,#c5c5c5 70%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-5[data-step="4"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 70%,#c5c5c5 70%)}}.dark-theme .link-boxes-group.layout-5[data-step="5"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-5[data-step="6"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group.layout-6[data-step="0"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 -8.3333333333%,#c5c5c5 -8.3333333333%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-6[data-step="0"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 -8.3333333333%,#c5c5c5 -8.3333333333%)}}.dark-theme .link-boxes-group.layout-6[data-step="1"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 8.3333333333%,#c5c5c5 8.3333333333%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-6[data-step="1"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 8.3333333333%,#c5c5c5 8.3333333333%)}}.dark-theme .link-boxes-group.layout-6[data-step="2"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 25%,#c5c5c5 25%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-6[data-step="2"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 25%,#c5c5c5 25%)}}.dark-theme .link-boxes-group.layout-6[data-step="3"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 41.6666666667%,#c5c5c5 41.6666666667%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-6[data-step="3"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 41.6666666667%,#c5c5c5 41.6666666667%)}}.dark-theme .link-boxes-group.layout-6[data-step="4"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 58.3333333333%,#c5c5c5 58.3333333333%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-6[data-step="4"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 58.3333333333%,#c5c5c5 58.3333333333%)}}.dark-theme .link-boxes-group.layout-6[data-step="5"] .steps-line::before{background:#c5c5c5;background:linear-gradient(90deg,#6ca2f0 75%,#c5c5c5 75%)}@media (max-width:767px){.dark-theme .link-boxes-group.layout-6[data-step="5"] .steps-line::before{background:linear-gradient(180deg,#6ca2f0 75%,#c5c5c5 75%)}}.dark-theme .link-boxes-group.layout-6[data-step="6"] .steps-line::before{background:#6ca2f0}.dark-theme .link-boxes-group .steps-line .steps-number.past-step{box-shadow:0 0 0 5px #6ca2f0 inset;border-color:#6ca2f0;background:#6ca2f0;color:#fff}.dark-theme .link-boxes-group .steps-line .steps-number.past-step:after{background:url("../../images/icons/svg-icons.svg#circle-check-dt")}.dark-theme .link-boxes-group .steps-line .steps-number.current-step{border-color:#6ca2f0;background-color:#fff;color:#6ca2f0}.dark-theme .link-boxes-group .steps-line .steps-number.future-step{background-color:#c5c5c5;border-color:#c5c5c5;color:#fff}.dark-theme .link-boxes-group .link-boxes-item.current-step .link-boxes-link,.dark-theme .link-boxes-group .link-boxes-item.past-step .link-boxes-link{box-shadow:0 0 0 10px #6ca2f0 inset;background-color:#6ca2f0}.dark-theme .link-boxes-group .link-boxes-item.current-step .link-boxes-link .link-boxes-label,.dark-theme .link-boxes-group .link-boxes-item.current-step .link-boxes-link img,.dark-theme .link-boxes-group .link-boxes-item.past-step .link-boxes-link .link-boxes-label,.dark-theme .link-boxes-group .link-boxes-item.past-step .link-boxes-link img{background-color:#6ca2f0}.dark-theme .link-boxes-group .link-boxes-item a.link-boxes-link:hover{box-shadow:0 0 0 10px #499cfe inset}.dark-theme .link-boxes-group .link-boxes-item a.link-boxes-link:hover .link-boxes-label{background-color:#499cfe}.navigation-buttons{display:flex;flex-direction:row;align-items:center;justify-content:space-between;padding-top:20px;padding-bottom:15px;margin-top:2.5rem;border-top:1px solid}.navigation-buttons a{display:inline-flex;flex-direction:row;align-items:center;font-size:14px;font-weight:500}.navigation-buttons a:hover{text-decoration:none}.navigation-buttons a:first-of-type{padding-right:15px}.navigation-buttons a:last-of-type{padding-left:15px}.navigation-buttons .chevron{flex-shrink:0;width:25px;height:25px;background-position:center;background-size:22px 22px}.navigation-buttons .chevron.left{margin-right:5px;transform:rotate(90deg)}.navigation-buttons .chevron.right{margin-left:5px;transform:rotate(-90deg)}.index .navigation-buttons a:last-of-type{margin-left:auto}.light-theme .navigation-buttons{border-top-color:#c1ccd9}.light-theme .navigation-buttons a:hover{color:#3585f9}.light-theme .navigation-buttons a:hover .chevron{background-image:url("../../images/icons/svg-icons.svg#chevron-blue-light-lt")}.light-theme .navigation-buttons .chevron{background-image:url("../../images/icons/svg-icons.svg#chevron-blue-lt")}.dark-theme .navigation-buttons{border-top-color:#fff}.dark-theme .navigation-buttons a:hover{color:#6ca2f0}.dark-theme .navigation-buttons a:hover .chevron{background-image:url("../../images/icons/svg-icons.svg#chevron-blue-light-dt")}.dark-theme .navigation-buttons .chevron{background-image:url("../../images/icons/svg-icons.svg#chevron-blue-dt")}.pre-v3.api-reference #central-column{padding-top:calc(80px + 60px)}.pre-v3 #central-column dl dd{padding-left:0}.pre-v3 #central-column blockquote{padding-left:1.7rem}.pre-v3 #central-column blockquote blockquote{margin-bottom:0;padding-left:0}.pre-v3 #central-column blockquote dl,.pre-v3 #central-column blockquote ul{padding-left:0}.pre-v3 #central-column ol blockquote{padding-left:0}.pre-v3 #central-column ol ol,.pre-v3 #central-column ol ul,.pre-v3 #central-column ul ol,.pre-v3 #central-column ul ul{padding-left:1.1rem}.pre-v3 #central-column ol+blockquote{padding-left:2.5rem}.pre-v3 #central-column ol ol{list-style-type:lower-alpha}.pre-v3 #central-column .admonition.attention:not(.long),.pre-v3 #central-column .admonition.caution:not(.long),.pre-v3 #central-column .admonition.danger:not(.long),.pre-v3 #central-column .admonition.error:not(.long),.pre-v3 #central-column .admonition.hint:not(.long),.pre-v3 #central-column .admonition.important:not(.long),.pre-v3 #central-column .admonition.note:not(.long),.pre-v3 #central-column .admonition.tip:not(.long),.pre-v3 #central-column .admonition.warning:not(.long){padding-top:0;padding-bottom:0}.pre-v3 #central-column .admonition.attention:not(.long) p,.pre-v3 #central-column .admonition.caution:not(.long) p,.pre-v3 #central-column .admonition.danger:not(.long) p,.pre-v3 #central-column .admonition.error:not(.long) p,.pre-v3 #central-column .admonition.hint:not(.long) p,.pre-v3 #central-column .admonition.important:not(.long) p,.pre-v3 #central-column .admonition.note:not(.long) p,.pre-v3 #central-column .admonition.tip:not(.long) p,.pre-v3 #central-column .admonition.warning:not(.long) p{display:block}.pre-v3 #central-column .admonition.attention:not(.long) .admonition-title,.pre-v3 #central-column .admonition.caution:not(.long) .admonition-title,.pre-v3 #central-column .admonition.danger:not(.long) .admonition-title,.pre-v3 #central-column .admonition.error:not(.long) .admonition-title,.pre-v3 #central-column .admonition.hint:not(.long) .admonition-title,.pre-v3 #central-column .admonition.important:not(.long) .admonition-title,.pre-v3 #central-column .admonition.note:not(.long) .admonition-title,.pre-v3 #central-column .admonition.tip:not(.long) .admonition-title,.pre-v3 #central-column .admonition.warning:not(.long) .admonition-title{padding-left:38px}.pre-v3 #central-column .admonition.attention:not(.long) .admonition-title::after,.pre-v3 #central-column .admonition.caution:not(.long) .admonition-title::after,.pre-v3 #central-column .admonition.danger:not(.long) .admonition-title::after,.pre-v3 #central-column .admonition.error:not(.long) .admonition-title::after,.pre-v3 #central-column .admonition.hint:not(.long) .admonition-title::after,.pre-v3 #central-column .admonition.important:not(.long) .admonition-title::after,.pre-v3 #central-column .admonition.note:not(.long) .admonition-title::after,.pre-v3 #central-column .admonition.tip:not(.long) .admonition-title::after,.pre-v3 #central-column .admonition.warning:not(.long) .admonition-title::after{position:absolute;top:18px;left:0;display:inline-block;width:1.5rem;height:1.5rem;vertical-align:middle;content:""}.pre-v3 #central-column .admonition.attention>blockquote,.pre-v3 #central-column .admonition.caution>blockquote,.pre-v3 #central-column .admonition.danger>blockquote,.pre-v3 #central-column .admonition.error>blockquote,.pre-v3 #central-column .admonition.hint>blockquote,.pre-v3 #central-column .admonition.important>blockquote,.pre-v3 #central-column .admonition.note>blockquote,.pre-v3 #central-column .admonition.tip>blockquote,.pre-v3 #central-column .admonition.warning>blockquote{margin:0;padding-left:0}.pre-v3 #central-column .deployment-types{position:relative;display:grid;grid-template-columns:1fr;grid-gap:3rem;margin:2rem auto}@media (min-width:576px){.pre-v3 #central-column .deployment-types{width:80%;grid-template-columns:35% 65%}}@media (min-width:576px){.pre-v3 #central-column .deployment-types #distributed .detailed{height:27rem!important}}.pre-v3 #central-column .deployment-types .item-deployment{border:1px solid #256bd1;border-radius:10px;padding:1rem;position:relative}.pre-v3 #central-column .deployment-types .item-deployment h3{text-align:center;width:100%;padding:.5rem}.pre-v3 #central-column .deployment-types .item-deployment .detailed{position:absolute;z-index:99;width:100%!important;opacity:0;border:none;max-width:100%;top:4em;left:0}.pre-v3 #central-column .agent-os{display:grid;grid-template-columns:repeat(3,1fr);margin:2rem auto;grid-gap:1rem}@media (min-width:992px){.pre-v3 #central-column .agent-os{grid-template-columns:repeat(6,1fr)}}.pre-v3 #central-column .agent-os .item-agent{display:flex;justify-content:center;align-items:center}.pre-v3 #central-column .agent-os .item-agent a{box-shadow:3px 3px 7px 0 rgba(0,0,0,.1);background-color:#fff;border-radius:10px;overflow:hidden;padding:10px;position:relative;min-width:70px;max-width:150px;height:100%;width:100%}.pre-v3 #central-column .agent-os .item-agent a p{color:#fff;font-weight:700;text-align:center;margin:0;position:absolute;left:0;right:0;top:0;bottom:0;display:flex;justify-content:center;align-items:center;width:100%;opacity:0}.pre-v3 #central-column .agent-os .item-agent a img{margin:0 auto;max-width:100%;border:none;padding:0}.pre-v3 #central-column .agent-os .item-agent a:hover p{opacity:1}.pre-v3 #central-column .agent-os .item-agent a:hover img{opacity:0}.pre-v3 #wazuh-light-box .wlb-image-wrapper img,.pre-v3 [role=main] img{background:#fff;padding:.5rem}.pre-v3 .wazuh-image-wrapper{max-width:860px}.pre-v3 .wazuh-image{width:auto!important}.light-theme .pre-v3 #central-column .deployment-types .item-deployment{border:1px solid #256bd1}.light-theme .pre-v3 #central-column .agent-os .item-agent a:hover{box-shadow:0 0 0 10px #256bd1 inset,3px 3px 7px 0 rgba(0,0,0,.1);background-color:#256bd1}.dark-theme .pre-v3 #central-column .deployment-types .item-deployment{border:1px solid #499cfe}.dark-theme .pre-v3 #central-column .agent-os .item-agent a:hover{box-shadow:0 0 0 10px #499cfe inset;background-color:#499cfe}@media (min-width:1200px){.document .not-top #central-column,.index .not-top #central-column,.not_found .not-top #central-column,.search .not-top #central-column{padding-top:80px}}@media (max-width:1199px){.document #central-column,.index #central-column,.not_found #central-column,.search #central-column{padding-top:75px}}@media (min-width:1200px){.document #central-column,.index #central-column,.not_found #central-column,.search #central-column{position:relative}.document #central-column::after,.index #central-column::after,.not_found #central-column::after,.search #central-column::after{content:"";position:absolute;width:2px;border-radius:0 0 15px 15px;background-color:rgba(227,227,227,.5);top:0;right:0;bottom:95px}}@media (max-width:575px){#central-column{padding-top:0}}#central-column .container[class*=align-]{display:block;max-width:100%;padding:0}#central-column .container.align-left{text-align:left}#central-column .container.align-center{text-align:center}#central-column .container.align-right{text-align:right}#central-column .container.spaced>*{display:inline-block;margin:5px}#central-column .align-center{display:table;margin-right:auto;margin-left:auto}#central-column .align-left{display:table;margin-right:auto}#central-column .align-right{display:table;margin-left:auto}#central-column .table-responsive{display:block;max-width:100%}#central-column .table-responsive.align-center,#central-column .table-responsive.align-left,#central-column .table-responsive.align-right{display:block}#central-column .topic-title{font-weight:600;font-size:20px;margin-top:2em;margin-bottom:.5em}#central-column dl dt{padding:.2rem .5rem .2rem 0}#central-column dl dd{padding:.5rem .5rem .2rem 40px;margin-bottom:.2rem}#central-column dl.footnote dt{width:2em;padding:0;font-weight:400}#central-column dl.footnote dt::after{content:"."}#central-column dl.footnote dd{width:calc(100% - 2em);padding:0 0 0 6px}@media (min-width:1200px){[role=main]{min-height:calc(100vh - 80px - 80px - 70px)}}[role=main] .headerlink{display:inline-flex;line-height:1;text-decoration:none;word-break:keep-all;white-space:nowrap;width:24px;overflow:hidden;align-items:center;justify-content:flex-end;-webkit-user-select:none;-moz-user-select:none;user-select:none}[role=main] .headerlink::after{display:inline-block;width:15px;height:15px;min-width:15px;min-height:15px;background-size:15px 15px;text-align:right;vertical-align:middle;content:"";opacity:0;transition:opacity ease-in .1s;margin-left:20px}[role=main] caption:hover .headerlink::after,[role=main] h1:hover .headerlink::after,[role=main] h2:hover .headerlink::after,[role=main] h3:hover .headerlink::after,[role=main] h4:hover .headerlink::after,[role=main] h5:hover .headerlink::after,[role=main] h6:hover .headerlink::after{opacity:.8;transition:opacity ease-in .1s}[role=main] code.literal{padding:5px 7px 3px;line-height:1rem}@media (max-width:767px){[role=main] code.literal span.pre{word-break:break-word}}[role=main] .toctree-wrapper{padding-top:1rem}[role=main] .toctree-wrapper ul{padding-left:28px}@media (max-width:575px){[role=main] .toctree-wrapper ul{padding-left:20px}}[role=main] .toctree-wrapper ul li a{display:inline-block;padding-top:.2rem;padding-bottom:.6rem;line-height:32px}[role=main] .toctree-wrapper .caption .caption-text{font-weight:500;font-size:20px}[role=main] .align-cells-top td,[role=main] .align-cells-top th{vertical-align:top!important}[role=main] .align-cells-middle td,[role=main] .align-cells-middle th{vertical-align:middle!important}[role=main] .align-cells-bottom td,[role=main] .align-cells-bottom th{vertical-align:bottom!important}[role=main] .align-data-top td{vertical-align:top!important}[role=main] .align-data-middle td{vertical-align:middle!important}[role=main] .align-data-bottom td{vertical-align:bottom!important}[role=main] .align-header-top th{vertical-align:top!important}[role=main] .align-header-middle th{vertical-align:middle!important}[role=main] .align-header-bottom th{vertical-align:bottom!important}[role=main] .docutils:not(.list-rows) thead{position:relative;z-index:10}[role=main] .docutils:not(.list-rows) th{padding:8px 15px;font-size:18px;font-weight:600}[role=main] .docutils:not(.list-rows) .stub:not(.head){font-size:16px}[role=main] .docutils:not(.list-rows) tbody{position:relative}[role=main] .docutils:not(.list-rows) tbody th{padding:8px 15px}[role=main] .docutils:not(.list-rows) tbody td{padding:8px 15px}[role=main] .docutils:not(.list-rows) tbody p,[role=main] .docutils:not(.list-rows) tbody ul{margin-top:1rem;margin-bottom:1rem}[role=main] table.docutils:not(.list-rows){max-width:100%;overflow-x:auto;border-spacing:0;border-collapse:separate;border:1px solid}[role=main] table.docutils:not(.list-rows) .table-responsive{display:block;width:100%;overflow-x:auto}[role=main] table.docutils:not(.list-rows) tbody td,[role=main] table.docutils:not(.list-rows) tbody th{border:1px solid #dce8f8}[role=main] table.docutils:not(.list-rows) th>div,[role=main] table.docutils:not(.list-rows) th>p{white-space:nowrap}[role=main] table.docutils:not(.list-rows) p,[role=main] table.docutils:not(.list-rows) ul{margin-top:.3rem;margin-bottom:.3rem}[role=main] table.docutils:not(.list-rows).release-notes{border-spacing:0 2rem;border:none;border-radius:unset}[role=main] table.docutils:not(.list-rows).release-notes::after{content:none}[role=main] table.docutils:not(.list-rows).release-notes tr>td:first-child,[role=main] table.docutils:not(.list-rows).release-notes tr>th:first-child{padding-left:0;border-right:1px solid}[role=main] table.docutils:not(.list-rows).release-notes td,[role=main] table.docutils:not(.list-rows).release-notes th{vertical-align:baseline;border:none}[role=main] table.docutils:not(.list-rows).release-notes p,[role=main] table.docutils:not(.list-rows).release-notes ul{margin-top:1rem;margin-bottom:1rem}[role=main] table.docutils:not(.list-rows):not(.colwidths-given) col{width:auto!important}[role=main] table.hlist{display:block;margin-top:1rem;margin-bottom:1rem;overflow-x:auto}[role=main] table.hlist>tbody>tr>td{vertical-align:top}[role=main] table.hlist>tbody>tr>td>ul{padding:0 15px 0 0;margin:0;list-style:none}[role=main] table.hlist>tbody>tr>td>ul>li>ul{list-style:disc}[role=main] table.hlist>tbody>tr>td>ul>li>ul>li>ul{list-style:circle}[role=main] table.hlist>tbody>tr>td>ul>li>ul>li>ul>li>ul{list-style:square}[role=main] table.hlist>tbody>tr>td:last-child>ul{padding:0}[role=main] .table-wrapper{display:inline-block;max-width:100%;height:-moz-fit-content;height:fit-content;margin-top:1rem;margin-bottom:1rem;overflow:hidden;border:1px solid transparent;border-radius:10px}[role=main] .table-wrapper.w-header{background-repeat:no-repeat;background-size:100%}[role=main] .table-wrapper>caption{display:block;border:none}[role=main] .footnote-reference{font-size:.7em;text-decoration:underline;vertical-align:super}[role=main] .footnote.brackets{position:relative;display:flex;flex-flow:row wrap;padding-top:50px;line-height:32px;border-top:1px solid}[role=main] .footnote.brackets::before{position:absolute;top:10px;font-size:20px;font-weight:600;content:"Footnotes"}[role=main] .footnote.brackets .label{display:inline-block;margin-top:.5rem;margin-bottom:.5rem;margin-right:10px}[role=main] .footnote.brackets p{margin-top:.5rem;margin-bottom:.5rem}.document #central-column{display:flex;flex-direction:column}.document [role=main]{order:3}.document [role=main] h1{background-color:#3585f9;background-image:url("../../images/waves.png");background-size:cover;background-repeat:no-repeat;background-position:bottom;color:#fff;display:flex;padding:28px;border-radius:26px;min-height:100px;width:100%;align-items:center;flex-direction:row;margin-bottom:30px}@media (min-width:576px){.document [role=main] h1{margin-left:-28px;margin-right:-28px;width:calc(100% + 56px)}}.light-theme [role=main] .headerlink::after{color:#545f73;background-image:url("../../images/icons/link.svg#link-lt")}.light-theme [role=main] h1 .headerlink::after{color:#545f73;background-image:url("../../images/icons/link.svg#link-white")}.light-theme [role=main] code{color:#7c3db2;background-color:#e2eefe}.light-theme [role=main] caption,.light-theme [role=main] td,.light-theme [role=main] th{background-color:#fff}.light-theme [role=main] .docutils:not(.list-rows) thead{background-color:#256bd1}.light-theme [role=main] .docutils:not(.list-rows) thead th{background-color:#256bd1}.light-theme [role=main] .docutils:not(.list-rows) th{color:#fff;border-color:#256bd1}.light-theme [role=main] .docutils:not(.list-rows) .stub:not(.head){color:#292929}.light-theme [role=main] .docutils:not(.list-rows) tbody th{background-color:#fff;border-color:#dce8f8}.light-theme [role=main] .docutils:not(.list-rows) tbody td{border-color:#dce8f8}.light-theme [role=main] .docutils:not(.list-rows):not(.release-notes) tbody tr:nth-child(2n) td,.light-theme [role=main] .docutils:not(.list-rows):not(.release-notes) tbody tr:nth-child(2n) th{background-color:#f8fafd}.light-theme [role=main] table.docutils:not(.list-rows){border-color:#dce8f8}.light-theme [role=main] table.docutils:not(.list-rows).release-notes tr>td:first-child,.light-theme [role=main] table.docutils:not(.list-rows).release-notes tr>th:first-child{border-color:#dce8f8}.light-theme [role=main] .footnote.brackets{border-color:rgba(0,0,0,.1)}.light-theme [role=main] .toctree-wrapper .caption-text{color:#292929}.dark-theme [role=main] .headerlink::after{color:#9298ab;background-image:url("../../images/icons/link.svg#link-dt")}.dark-theme [role=main] h1 .headerlink::after{color:#545f73;background-image:url("../../images/icons/link.svg#link-white")}.dark-theme [role=main] code{color:#ebd0fc;background-color:#242424}.dark-theme [role=main] caption,.dark-theme [role=main] td,.dark-theme [role=main] th{background-color:#2a2d34}.dark-theme [role=main] .docutils:not(.list-rows) thead{background-color:#499cfe}.dark-theme [role=main] .docutils:not(.list-rows) thead th{background-color:#499cfe}.dark-theme [role=main] .docutils:not(.list-rows) th{color:#2a2d34;border-color:#499cfe}.dark-theme [role=main] .docutils:not(.list-rows) .stub:not(.head){color:#fff}.dark-theme [role=main] .docutils:not(.list-rows) tbody th{background-color:#2a2d34;border-color:#b7c6d7}.dark-theme [role=main] .docutils:not(.list-rows) tbody td{border-color:#b7c6d7}.dark-theme [role=main] .docutils:not(.list-rows):not(.release-notes) tbody tr:nth-child(2n) td,.dark-theme [role=main] .docutils:not(.list-rows):not(.release-notes) tbody tr:nth-child(2n) th{background-color:#28282a}.dark-theme [role=main] .docutils:not(.list-rows):not(.release-notes) tbody tr:nth-child(odd) td,.dark-theme [role=main] .docutils:not(.list-rows):not(.release-notes) tbody tr:nth-child(odd) th{background-color:#35333b}.dark-theme [role=main] table.docutils:not(.list-rows){border-color:#b7c6d7}.dark-theme [role=main] table.docutils:not(.list-rows).release-notes tr>td:first-child,.dark-theme [role=main] table.docutils:not(.list-rows).release-notes tr>th:first-child{border-color:#b7c6d7}.dark-theme [role=main] .footnote.brackets{border-color:rgba(255,255,255,.1)}.dark-theme [role=main] .toctree-wrapper .caption-text{color:#fff}.navbar-brand{position:relative;display:flex;align-content:flex-end;padding-bottom:2px}.navbar-brand img{width:auto;height:28px}@media (max-width:575px){.navbar-brand img{height:24px}}.light-theme .logo-link.docs{color:#292929}.light-theme .logo-light{display:inline-block}.light-theme .logo-dark{display:none}.dark-theme header svg{fill:#fff}.dark-theme .logo-link.docs{color:#fff}.dark-theme .logo-light{display:none}.dark-theme .logo-dark{display:inline-block}header .tooltip{pointer-events:none;font-family:Manrope,sans-serif}@media (min-width:1200px){#version-selector{margin-left:10px}}#version-selector.show .dropdown-toggle::after{transform:rotate(180deg)}#version-selector .dropdown-btn{box-sizing:border-box;display:flex;align-items:center;justify-content:space-between;width:calc((320px + 32px)/ 2);height:40px;border:2px solid;border-radius:10px;transition:color 0s}@media (max-width:575px){#version-selector .dropdown-btn{font-size:14px}}@media (max-width:1199px){#version-selector .dropdown-btn{width:auto;padding:0 5px;border:none}}@media (min-width:1200px) and (max-width:1299px){#version-selector .dropdown-btn{width:263px}}@media (min-width:1300px) and (max-width:1599px){#version-selector .dropdown-btn{width:253px}}@media (min-width:1600px){#version-selector .dropdown-btn{width:268px}}#version-selector .dropdown-btn:focus{box-shadow:none}@media (max-width:1199px){#version-selector .dropdown-btn span{padding-right:5px}}#version-selector .dropdown-menu{top:52px;box-sizing:border-box;width:100%;border:2px solid;border-radius:10px}@media (max-width:575px){#version-selector .dropdown-menu{font-size:14px}}@media (min-width:1200px){#version-selector .dropdown-menu{max-height:60vh;overflow-y:auto}}@media (max-width:1199px){#version-selector .dropdown-menu{left:-5px!important;min-width:185px;max-height:calc(100vh - 70px - 56px);padding:10px 0;overflow-y:auto;border:none}}#version-selector .dropdown-menu>li>a{display:inline-block;width:100%;padding:.4rem .75rem;text-decoration:none}#version-selector .dropdown-menu>li>a:focus,#version-selector .dropdown-menu>li>a:hover{font-weight:500}#version-selector .dropdown-menu>li>a.disabled{font-weight:500}#version-selector .dropdown-menu>li>a.disabled:focus,#version-selector .dropdown-menu>li>a.disabled:hover{font-weight:500}.light-theme header .tooltip .arrow::before{border-left-color:#e2eefe}.light-theme header .tooltip .tooltip-inner{color:#292929;background-color:#e2eefe}.light-theme #version-selector .dropdown-btn{color:#292929;border-color:#fedd0b}@media (min-width:1200px){.light-theme #version-selector .dropdown-btn{background-color:#fff}}.light-theme #version-selector .dropdown-btn[aria-expanded=false]:focus{box-shadow:inset 0 0 2px 2px rgba(101,124,151,.2)}.light-theme #version-selector .dropdown-menu{background-color:#f7f7f7}@media (min-width:1200px){.light-theme #version-selector .dropdown-menu{background-color:#fff;border-color:#fedd0b}}.light-theme #version-selector .dropdown-menu>li>a{color:#292929}.light-theme #version-selector .dropdown-menu>li>a:focus,.light-theme #version-selector .dropdown-menu>li>a:hover{background-color:#e2eefe}.light-theme #version-selector .dropdown-menu>li>a.disabled{color:#b7c6d7}.dark-theme header .tooltip .arrow::before{border-left-color:#242424}.dark-theme header .tooltip .tooltip-inner{color:#fff;background-color:#242424}.dark-theme #version-selector .dropdown-btn{color:#fff;background-color:#343741}@media (min-width:1200px){.dark-theme #version-selector .dropdown-btn{background-color:#2a2d34;border-color:#ffe853}}.dark-theme #version-selector .dropdown-btn[aria-expanded=false]:focus{box-shadow:inset 0 0 2px 2px rgba(152,162,179,.5)}.dark-theme #version-selector .dropdown-menu{background-color:#343741}@media (min-width:1200px){.dark-theme #version-selector .dropdown-menu{background-color:#2a2d34;border-color:#ffe853}}.dark-theme #version-selector .dropdown-menu>li>a{color:#fff}.dark-theme #version-selector .dropdown-menu>li>a:focus,.dark-theme #version-selector .dropdown-menu>li>a:hover{background-color:#242424}.dark-theme #version-selector .dropdown-menu>li>a.disabled{color:#a6b5c8}#light-dark-switch{display:flex;flex-direction:row}@media (min-width:1200px){#light-dark-switch{padding-bottom:8px}}#light-dark-switch+.edit-repo{border-top:1px solid #c1ccd9}#light-dark-switch>span:first-child{margin-left:4px}@media (max-width:575px){#light-dark-switch .text{display:none}}#light-dark-switch .switch-icon{display:inline-block;width:20px;height:20px;margin-right:5px;margin-left:5px;background-position:center;background-size:contain}#mode-switch{position:relative;top:1px;box-sizing:content-box;display:flex;flex-direction:row;width:26px;height:16px;padding:0;margin:0 5px;border:1px solid;border-radius:25px}#mode-switch.dark{justify-content:flex-end}#mode-switch.dark span{top:0;left:calc(100% - 16px)}#mode-switch span{position:absolute;top:0;left:0;display:inline-block;width:16px;height:16px;content:"";background-color:#fff;border-radius:50%;transition:left ease-in 75ms}.light-theme #light-dark-switch{color:#292929}.light-theme #light-dark-switch .switch-icon.icon-sun{background:url("../../images/icons/svg-icons.svg#sun-lt")}.light-theme #light-dark-switch .switch-icon.icon-moon{background:url("../../images/icons/svg-icons.svg#moon-lt")}.light-theme #mode-switch{background-color:#256bd1;border-color:#256bd1}.dark-theme #light-dark-switch{color:#fff}.dark-theme #light-dark-switch .switch-icon.icon-sun{background:url("../../images/icons/svg-icons.svg#sun-dt")}.dark-theme #light-dark-switch .switch-icon.icon-moon{background:url("../../images/icons/svg-icons.svg#moon-dt")}.dark-theme #mode-switch{background-color:#499cfe;border-color:#499cfe}#btn-scroll-wrapper{pointer-events:none;position:fixed;left:0;right:0;bottom:0;height:118px;z-index:10000}#btn-scroll-wrapper .container{display:flex;height:100%;align-items:center;justify-content:flex-end}#btn-scroll-wrapper #btn-scroll{pointer-events:auto;position:relative;background-color:#fedd0b;border-radius:100%;height:40px;width:40px;align-items:center;justify-content:center;box-shadow:3px 3px 12px -2px rgba(31,31,31,.5);-webkit-box-shadow:3px 3px 12px -2px rgba(31,31,31,.5);-moz-box-shadow:3px 3px 12px -2px rgba(31,31,31,.5)}#btn-scroll-wrapper #btn-scroll:not(.init-hidden){display:flex}@media (min-width:1600px){#btn-scroll-wrapper #btn-scroll{right:-50px}}#btn-scroll-wrapper #btn-scroll:focus,#btn-scroll-wrapper #btn-scroll:hover{text-decoration:none}#btn-scroll-wrapper #btn-scroll i{color:#fedd0b;font-size:40px}#btn-scroll-wrapper #btn-scroll svg{fill:black;transform:rotate(180deg) scale(1,.8);stroke-width:10px;stroke:black}@media (max-width:991px){#btn-scroll-wrapper #btn-scroll svg{transform:rotate(180deg) scale(.7,.6)}}:root{scroll-behavior:unset}.loading footer,.loading header{display:none}#central-column{padding-top:60px}body{position:relative;margin-top:0;font-family:Manrope,sans-serif;font-size:16px;font-weight:400;line-height:32px}body>div:first-of-type{padding-top:110px}@media screen and (max-width:576px){body.no-latest-docs>div:first-of-type{padding-top:253px}}@media screen and (min-width:576px) and (max-width:50rem){body.no-latest-docs>div:first-of-type{padding-top:220px}}@media screen and (min-width:50rem) and (max-width:75rem){body.no-latest-docs>div:first-of-type{padding-top:187px}}@media (min-width:1200px){body.no-latest-docs>div:first-of-type{padding-top:160px}}@media screen and (min-width:50rem) and (max-width:75rem){body.no-latest-docs>div:first-of-type redoc[spec-url] .menu-content{top:190px!important}}@media (min-width:1200px){body.no-latest-docs>div:first-of-type redoc[spec-url] .menu-content{top:160px!important}}@media screen and (max-width:75rem){body.no-latest-docs header{padding-top:80px;width:100%;height:190px}}@media screen and (max-width:50rem){body.no-latest-docs header{padding-top:0;height:110px}}@media (min-width:1200px){body.no-latest-docs header{padding-top:50px;height:160px}}@media (min-width:1600px){body.no-latest-docs header .no-latest-notice-wrapper{display:flex;align-items:center}}.inner-body{display:block}@media (min-width:1200px){.inner-body{max-width:100%}}main{padding:0}main strong{font-weight:600}#light-dark-switch{padding:0}#central-column{margin-left:auto;margin-right:auto}header{position:fixed;top:0;z-index:100;display:flex;flex-direction:row;width:calc(294px + (100% - 294px) * .6);height:110px}@media screen and (max-width:75rem){header{padding-top:0;width:100%;height:110px}}@media screen and (max-width:50rem){header{padding-top:0;flex-direction:column;width:100%;height:110px}}@media screen and (min-width:50.01rem) and (max-width:75rem){header #version-selector .dropdown-btn{padding:5px 10px;border:2px solid}}@media screen and (min-width:50.01rem){header #version-selector .dropdown-btn{border-color:#fedd0b}}@media (min-width:992px) and (max-width:1199px){header #version-selector .dropdown-btn{width:263px}}@media screen and (min-width:50.01rem) and (max-width:75rem){header #version-selector .dropdown-menu{left:0!important;border:2px solid}}header .header-left{position:relative;z-index:20;width:294px;padding:7px 40px;pointer-events:all;display:flex;flex-shrink:0;justify-content:center;flex-direction:column}@media screen and (min-width:50rem){header .header-left{padding:10px 15px}}@media screen and (max-width:50rem){header .header-left{width:100%;height:55px;padding:10px 40px}}header .header-left .navbar-brand{justify-content:flex-start}@media screen and (min-width:50rem){header .header-left .navbar-brand{align-items:center;height:50px}}header .header-left #light-dark-switch{align-items:center;padding-top:0;border-top:2px solid}@media screen and (min-width:50rem){header .header-left #light-dark-switch{height:50px}}@media screen and (max-width:50rem){header .header-left #light-dark-switch{position:absolute;right:26px;bottom:-55px;height:55px;border:none}}header .header-right{display:flex;align-items:flex-end;justify-content:flex-end;width:calc(100% - 294px - 80px);padding-bottom:15px;margin-right:40px;margin-left:40px;border-bottom:1px solid}@media screen and (max-width:50rem){header .header-right{position:absolute;bottom:0;z-index:20;align-items:center;justify-content:flex-start;width:auto;height:55px;padding:0 0 0 22px;margin:0;border:none}}#footer-redoc .powered-by-badge{position:absolute;right:0;bottom:15px;z-index:50;height:40px;padding:0 40px;font-size:.8rem;color:#545f73;text-align:right}#footer-redoc .powered-by-badge a{color:#545f73;text-decoration:none}.no-latest-notice-wrapper{position:fixed;top:0;right:0;left:0;z-index:10;padding-right:0;padding-left:0;margin:0}@media screen and (max-width:50rem){.no-latest-notice-wrapper{top:110px}}.no-latest-notice-wrapper .no-latest-notice{padding:3px 40px 5px;display:inline-flex;width:100%;min-height:80px}@media screen and (max-width:50rem){.no-latest-notice-wrapper .no-latest-notice{display:inline-block;padding:0 20px 5px;line-height:26px}}@media (min-width:1200px){.no-latest-notice-wrapper .no-latest-notice{min-height:50px;height:50px;justify-content:center;align-items:center}}.no-latest-notice-wrapper .no-latest-notice .no-latest-title{position:relative;display:inline;padding:0 20px 0 38px;font-weight:600;line-height:32px}@media screen and (max-width:50rem){.no-latest-notice-wrapper .no-latest-notice .no-latest-title{display:inline-block;padding:4px 10px 4px 38px}}.no-latest-notice-wrapper .no-latest-notice .no-latest-title::after{position:absolute;top:3px;left:0;display:inline-block;width:1.5rem;height:1.5rem;vertical-align:middle;content:"";background:url("../../images/icons/svg-icons.svg#circle-exclamation-orange")}.no-latest-notice-wrapper .no-latest-notice .no-latest-text-wrapper{display:inline;padding:0 .5em 0 0}@media screen and (max-width:50rem){.no-latest-notice-wrapper .no-latest-notice .no-latest-text-wrapper{display:inline-block}}.dark-theme [role=main] caption,.dark-theme [role=main] td,.dark-theme [role=main] th,.light-theme [role=main] caption,.light-theme [role=main] td,.light-theme [role=main] th{background-color:transparent}redoc[spec-url] .redoc-wrap{font-family:Manrope,sans-serif;font-size:16px;font-weight:500;line-height:32px;letter-spacing:.03em}redoc[spec-url] .redoc-wrap>div:last-of-type{top:calc(-60px - 110px);width:calc((100% - 294px) * .4)}redoc[spec-url] .redoc-wrap .table.table-striped{display:block;overflow-x:auto}redoc[spec-url] .redoc-wrap table{width:100%;overflow-x:auto}redoc[spec-url] .redoc-wrap table .property-name{font-family:Manrope,sans-serif;font-size:16px;font-weight:500;line-height:32px;display:inline-block;padding:0 10px 10px 0}redoc[spec-url] .redoc-wrap .table.table-bordered{border:none}redoc[spec-url] .redoc-wrap .table.table-bordered th{font-weight:500;border:2px solid}redoc[spec-url] .redoc-wrap .table.table-bordered td{border:2px solid}redoc[spec-url] .redoc-wrap h5 span{font-size:16px}redoc[spec-url] .redoc-wrap code{font-family:"Fira Mono",monospace;font-size:14px;line-height:32px;letter-spacing:.03em}redoc[spec-url] .redoc-wrap pre code{background-color:#25252c;border:none}redoc[spec-url] .redoc-wrap .token{color:#fff;font-family:"Fira mono",monospace;font-size:14px}redoc[spec-url] .redoc-wrap .token.constant,redoc[spec-url] .redoc-wrap .token.number,redoc[spec-url] .redoc-wrap .token.property,redoc[spec-url] .redoc-wrap .token.property.string,redoc[spec-url] .redoc-wrap .token.symbol,redoc[spec-url] .redoc-wrap .token.tag{color:#6ca2f0}redoc[spec-url] .redoc-wrap .token.cdata,redoc[spec-url] .redoc-wrap .token.comment,redoc[spec-url] .redoc-wrap .token.doctype,redoc[spec-url] .redoc-wrap .token.prolog{color:#ffe853}redoc[spec-url] .redoc-wrap .token.atrule,redoc[spec-url] .redoc-wrap .token.attr-value,redoc[spec-url] .redoc-wrap .token.keyword{color:#b677dc}redoc[spec-url] .redoc-wrap .token.attr-name,redoc[spec-url] .redoc-wrap .token.builtin,redoc[spec-url] .redoc-wrap .token.char,redoc[spec-url] .redoc-wrap .token.inserted,redoc[spec-url] .redoc-wrap .token.selector,redoc[spec-url] .redoc-wrap .token.string{color:#f6b7f6}redoc[spec-url] .redoc-wrap .token.entity,redoc[spec-url] .redoc-wrap .token.operator,redoc[spec-url] .redoc-wrap .token.url,redoc[spec-url] .redoc-wrap .token.variable{color:#fff}redoc[spec-url] .redoc-wrap tr.last:first-of-type>[kind=field]{background-image:none}redoc[spec-url] .redoc-wrap .sc-hzhJZQ{font-size:15px;border-radius:3px}redoc[spec-url] .redoc-wrap .react-tabs__tab-panel div{margin-top:0}redoc[spec-url] .redoc-wrap .react-tabs__tab-panel .redoc-json{overflow-x:auto}redoc[spec-url] .redoc-wrap .react-tabs__tab-panel .redoc-json a{text-decoration:none!important}redoc[spec-url] .redoc-wrap [data-rttabs] .react-tabs__tab-list [role=tab]{width:5em;padding:3px 10px;margin-top:7px;font-size:1rem;font-weight:500;border-radius:3px}redoc[spec-url] .redoc-wrap [data-rttabs] .react-tabs__tab-list [role=tab]>[role=tab].react-tabs__tab--selected{font-weight:500}redoc[spec-url] .redoc-wrap [data-rttabs] .react-tabs__tab-list [role=tab].tab-error::before,redoc[spec-url] .redoc-wrap [data-rttabs] .react-tabs__tab-list [role=tab].tab-info::before,redoc[spec-url] .redoc-wrap [data-rttabs] .react-tabs__tab-list [role=tab].tab-redirect::before,redoc[spec-url] .redoc-wrap [data-rttabs] .react-tabs__tab-list [role=tab].tab-success::before{position:relative;top:-2px;display:inline-block;width:5px;height:5px;margin-right:.5em;content:"";border-radius:50%}redoc[spec-url] .redoc-wrap [data-rttabs] .react-tabs__tab-panel .token.punctuation{opacity:.7}redoc[spec-url] .redoc-wrap [data-rttabs] .react-tabs__tab-panel .token.number{color:#499cfe}redoc[spec-url] .redoc-wrap a[download]{padding:0 34px;text-decoration:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:2px solid;border-radius:8px}redoc[spec-url] .redoc-wrap .menu-content{position:fixed;top:110px!important;width:294px;height:calc(100vh - 110px)!important;z-index:100}@media screen and (max-width:50rem){redoc[spec-url] .redoc-wrap .menu-content{width:100%}}redoc[spec-url] .redoc-wrap .menu-content+div{top:6px;right:15px;width:45px;height:45px;padding:.4rem;border-radius:4px;box-shadow:none}redoc[spec-url] .redoc-wrap .menu-content label{padding-right:26px;padding-left:26px;font-family:Manrope,sans-serif;font-size:16px;font-weight:500}redoc[spec-url] .redoc-wrap .menu-content label>span.operation-type{display:none}redoc[spec-url] .redoc-wrap .menu-content label.-depth1{text-transform:uppercase}redoc[spec-url] .redoc-wrap .menu-content label.-depth2{padding-left:36px}redoc[spec-url] .redoc-wrap .menu-content [role=menu]+div a{display:none}redoc[spec-url] .redoc-wrap .menu-content [role=search],redoc[spec-url] .redoc-wrap .menu-content>div:first-of-type{padding:30px 0 5px}redoc[spec-url] .redoc-wrap .menu-content [role=search] input,redoc[spec-url] .redoc-wrap .menu-content>div:first-of-type input{padding-bottom:0;padding-left:28px;font-family:Manrope,sans-serif;font-size:16px;font-weight:500;background-repeat:no-repeat;background-position:left center;background-size:25px 25px;border-bottom:2px solid}redoc[spec-url] .redoc-wrap .menu-content [role=search] svg,redoc[spec-url] .redoc-wrap .menu-content>div:first-of-type svg{display:none}redoc[spec-url] .redoc-wrap .menu-content [role=search] .scrollbar-container{border-bottom:1px solid #b7c6d7}redoc[spec-url] .redoc-wrap .menu-content [role=search] [data-role="search:results"]{background-color:transparent;padding:0 15px}redoc[spec-url] .redoc-wrap .api-content{scroll-margin-top:110px;margin-left:294px}@media screen and (max-width:50rem){redoc[spec-url] .redoc-wrap .api-content{margin-left:0}}redoc[spec-url] .redoc-wrap .api-content h2{margin-top:calc(1.2rem + 10px);margin-bottom:1rem}redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>div:first-of-type>div:first-of-type{padding-top:0;padding-bottom:0}redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"] table th{font-weight:500}redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"] table td,redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"] table th{padding:6px 20px;border:2px solid}redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div{padding-top:0;padding-bottom:0}redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type{margin-bottom:1.5em;margin-top:1.5em;padding-bottom:0;border:2px solid;display:table}redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div{margin:0;display:table-row}redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div:first-child{display:inline-block;border-bottom:2px solid;width:100%}redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div b,redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div div{margin:0;font-weight:400}redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div b{display:inline-block;padding:6px 20px;box-sizing:content-box;width:100%}@media screen and (min-width:50rem){redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div b{border-right:2px solid;width:256px}}@media screen and (max-width:50rem){redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div b{padding:10px;font-weight:500}}redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div b+span{margin-right:20px;margin-left:20px}@media screen and (max-width:50rem){redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div b+span{margin-right:10px;margin-left:10px}}redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div>div{display:block;border-bottom:2px solid}redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div>div:last-of-type{border-bottom:none}redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div>div>:last-child{margin-right:20px;margin-left:20px}@media screen and (max-width:50rem){redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div>div>:last-child{margin-right:10px;margin-left:10px}}redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div>div div,redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div>div span{font-weight:400;display:table-cell;min-width:92px;padding:6px 20px;box-sizing:content-box}@media screen and (max-width:50rem){redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div>div div,redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div>div span{padding:10px}}redoc[spec-url] .redoc-wrap .api-content [id="section/Authentication/basicAuth"]>div>div>div:last-of-type>div>div:first-of-type{border-bottom:none}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type{color:#fff}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type code{color:#fff}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .token,redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .token.punctuation{background-color:#25252c}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type button{border-radius:3px}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type button span{font-family:Manrope,sans-serif;font-size:16px;letter-spacing:.03em}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type button span[type]{color:#000}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type [role=tablist]{font-family:Manrope,sans-serif;font-size:16px;letter-spacing:.03em;color:#000}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type h3{font-size:16px;font-weight:500;color:#fff;text-transform:uppercase}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .http-verb{font-family:Manrope,sans-serif;font-size:16px;color:#000}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .http-verb.get{background-color:#207d82}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .http-verb.post{background-color:#6ca2f0}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .http-verb.put{background-color:#b677dc}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .http-verb.delete{background-color:#f86b63}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .react-tabs__tab-panel>div{padding-top:10px;margin-top:10px}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .react-tabs__tab-panel>div>div{margin-top:0}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .react-tabs__tab-panel>div>div:first-of-type{display:none}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .react-tabs__tab-panel>div>div>div:focus>div:first-of-type,redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .react-tabs__tab-panel>div>div>div:hover>div:first-of-type{opacity:1}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .react-tabs__tab-panel>div>div>div>div:first-of-type{opacity:.4}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .react-tabs__tab-list [role=tab]{width:5em;padding:3px 10px;margin-top:7px;font-size:1rem;font-weight:500;border-radius:3px}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .react-tabs__tab-list [role=tab]>[role=tab].react-tabs__tab--selected{font-weight:500}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .react-tabs__tab-list [role=tab].tab-error::before,redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .react-tabs__tab-list [role=tab].tab-info::before,redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .react-tabs__tab-list [role=tab].tab-redirect::before,redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:last-of-type .react-tabs__tab-list [role=tab].tab-success::before{position:relative;top:-2px;display:inline-block;width:5px;height:5px;margin-right:.5em;content:"";border-radius:50%}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:first-of-type:not(.redoc-markdown){padding:0 40px}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:first-of-type>div:last-of-type{margin-bottom:40px}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:first-of-type>div:last-of-type>div>button{display:flex;flex-direction:row;justify-content:flex-start;align-items:center}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:first-of-type>div:last-of-type>div>button strong{margin-right:10px}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:first-of-type>div:last-of-type>div>button p{margin-top:0}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:first-of-type>div>h5{display:block;width:100%;margin-right:0}redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:first-of-type>div>h5 span{font-size:16px}redoc[spec-url] .redoc-wrap .api-content>[data-section-id] h5{font-size:16px!important;display:inline-block}redoc[spec-url] .redoc-wrap .api-content>[data-section-id]>[data-section-id]>div>h5{display:block;width:100%;margin-top:30px}redoc[spec-url] .redoc-wrap .api-content>[data-section-id]>div>div>div>div[aria-hidden]{background:#25252c}redoc[spec-url] .redoc-wrap .api-content>[data-section-id]>div>div>div>div[aria-hidden] p{color:#fff}redoc[spec-url] .redoc-wrap .api-content>[data-section-id]::after{content:none}redoc[spec-url] .redoc-wrap .api-content [data-section-id],redoc[spec-url] .redoc-wrap .api-content>div:first-of-type{padding:10px 0 0}redoc[spec-url] .redoc-wrap .api-content h1,redoc[spec-url] .redoc-wrap .api-content h2,redoc[spec-url] .redoc-wrap .api-content h3,redoc[spec-url] .redoc-wrap .api-content h4{position:relative;font-family:Manrope,sans-serif;font-weight:600;letter-spacing:.03em}redoc[spec-url] .redoc-wrap .api-content h1 a,redoc[spec-url] .redoc-wrap .api-content h2 a,redoc[spec-url] .redoc-wrap .api-content h3 a,redoc[spec-url] .redoc-wrap .api-content h4 a{position:absolute;top:.3em;right:-24px}redoc[spec-url] .redoc-wrap .api-content .api-info{padding-top:0;padding-bottom:0}redoc[spec-url] .redoc-wrap .api-content .api-info [data-role=redoc-description]{margin-top:2em}redoc[spec-url] .redoc-wrap .api-content .api-info h1{font-size:34px;line-height:46.44px}redoc[spec-url] .redoc-wrap .api-content h1{font-size:28px;line-height:40px}redoc[spec-url] .redoc-wrap .api-content h2,redoc[spec-url] .redoc-wrap .api-content h3{font-size:22px;line-height:36px}.light-theme body{color:#292929}@media (min-width:1200px){.light-theme body>div:not(.loading):first-of-type{background:linear-gradient(90deg,#f7f7f7 50%,#2a2d34 50%)}}.light-theme body .no-latest-notice-wrapper{background-color:#fff}.light-theme body .no-latest-notice-wrapper .no-latest-notice{background-color:rgba(255,122,47,.1)}.light-theme body .no-latest-notice-wrapper .no-latest-notice .no-latest-title{color:#b35621}.light-theme body .loading redoc div{color:#256bd1!important}.light-theme body .loading redoc div *{fill:#256bd1!important}.light-theme body header{background:#fff}@media screen and (max-width:50rem){.light-theme body header{background-color:#f9fcff}}.light-theme body header .header-left{background-color:#f7f7f7}.light-theme body header .header-left #light-dark-switch{border-top-color:#b7c6d7}.light-theme body header .header-right{border-bottom-color:#3585f9}.light-theme body redoc[spec-url] .redoc-wrap{color:#292929}.light-theme body redoc[spec-url] .redoc-wrap a{color:#256bd1}.light-theme body redoc[spec-url] .redoc-wrap a:focus,.light-theme body redoc[spec-url] .redoc-wrap a:hover{color:#3585f9}.light-theme body redoc[spec-url] .redoc-wrap p{color:#292929}.light-theme body redoc[spec-url] .redoc-wrap .token.boolean{color:#f86b63}.light-theme body redoc[spec-url] .redoc-wrap [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type{border-color:#dce8f8}.light-theme body redoc[spec-url] .redoc-wrap [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div:first-child{border-color:#dce8f8}.light-theme body redoc[spec-url] .redoc-wrap [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div:last-child>div:nth-child(odd){background-color:#f7f7f7}@media screen and (min-width:50rem){.light-theme body redoc[spec-url] .redoc-wrap [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div b{border-right-color:#dce8f8}}.light-theme body redoc[spec-url] .redoc-wrap [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div>div{border-bottom-color:#dce8f8}.light-theme body redoc[spec-url] .redoc-wrap table .property-name{color:#292929}.light-theme body redoc[spec-url] .redoc-wrap table .property-name+svg polygon{fill:#256bd1}.light-theme body redoc[spec-url] .redoc-wrap table tr.expanded svg polygon{fill:#256bd1}.light-theme body redoc[spec-url] .redoc-wrap table td[kind=field] :first-child::after,.light-theme body redoc[spec-url] .redoc-wrap table td[kind=field] :first-child::before{background-color:#6ca2f0}.light-theme body redoc[spec-url] .redoc-wrap table td[kind=field] button{color:#292929}.light-theme body redoc[spec-url] .redoc-wrap table>tbody>tr>[colspan="2"]>div,.light-theme body redoc[spec-url] .redoc-wrap table>tbody>tr>[colspan="2"]>div [colspan="2"] [colspan="2"] [colspan="2"] [colspan="2"]>div,.light-theme body redoc[spec-url] .redoc-wrap table>tbody>tr>[colspan="2"]>div [colspan="2"] [colspan="2"]>div{background:#f9fcff}.light-theme body redoc[spec-url] .redoc-wrap table>tbody>tr>[colspan="2"]>div [colspan="2"] [colspan="2"] [colspan="2"] [colspan="2"] [colspan="2"]>div,.light-theme body redoc[spec-url] .redoc-wrap table>tbody>tr>[colspan="2"]>div [colspan="2"] [colspan="2"] [colspan="2"]>div,.light-theme body redoc[spec-url] .redoc-wrap table>tbody>tr>[colspan="2"]>div [colspan="2"]>div{background-color:#fff}.light-theme body redoc[spec-url] .redoc-wrap .table.table-bordered th{color:#fff;background-color:#256bd1;border-color:#256bd1}.light-theme body redoc[spec-url] .redoc-wrap .table.table-bordered td{border-color:#dce8f8}.light-theme body redoc[spec-url] .redoc-wrap .table.table-striped tbody tr:nth-of-type(odd){background-color:#fff}.light-theme body redoc[spec-url] .redoc-wrap .table.table-striped tbody tr:nth-of-type(2n){background-color:#f7f7f7}.light-theme body redoc[spec-url] .redoc-wrap h5{color:#757575;border-bottom-color:#b4b4b4!important}.light-theme body redoc[spec-url] .redoc-wrap h5+svg{fill:#3585f9}.light-theme body redoc[spec-url] .redoc-wrap h5 span{color:#292929}.light-theme body redoc[spec-url] .redoc-wrap [kind=field]{border-left-color:#3585f9;color:#292929}.light-theme body redoc[spec-url] .redoc-wrap svg{color:#3585f9}.light-theme body redoc[spec-url] .redoc-wrap table:not(.table)>tbody>tr:first-of-type>td:first-of-type{background-image:linear-gradient(transparent 0,transparent 28px,#3585f9 28px,#3585f9 100%)}.light-theme body redoc[spec-url] .redoc-wrap table:not(.table)>tbody>tr>td:first-of-type{border-left-color:#3585f9}.light-theme body redoc[spec-url] .redoc-wrap table:not(.table) td:first-of-type>span::after,.light-theme body redoc[spec-url] .redoc-wrap table:not(.table) td:first-of-type>span::before{background-color:#3585f9}.light-theme body redoc[spec-url] .redoc-wrap table:not(.table) tr.last+tr>td:first-of-type{border-left-color:transparent}.light-theme body redoc[spec-url] .redoc-wrap table:not(.table) tr.last>td:first-of-type{background-image:linear-gradient(#3585f9 0,#3585f9 29px,transparent 29px,transparent 100%)}.light-theme body redoc[spec-url] .redoc-wrap table:not(.table) tr.last:first-of-type>td:first-of-type{background-image:none}.light-theme body redoc[spec-url] .redoc-wrap .sc-fUnMCh.kaVHuF{color:#292929}.light-theme body redoc[spec-url] .redoc-wrap .sc-hzhJZQ{border-color:#3585f9}.light-theme body redoc[spec-url] .redoc-wrap .sc-hzhJZQ.fCWfjy{color:#292929;background-color:#fff}.light-theme body redoc[spec-url] .redoc-wrap .sc-hzhJZQ.fpPbRN{color:#fff;background-color:#3585f9}.light-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-list>[role=tab].react-tabs__tab--selected{color:#292929;background-color:#fff}.light-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-list [role=tab]{color:#fff;background-color:#25252c}.light-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-list [role=tab].tab-success::before{background-color:#207d82;box-shadow:0 0 3px 0 #207d82}.light-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-list [role=tab].tab-error::before{background-color:#f86b63;box-shadow:0 0 3px 0 #f86b63}.light-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-list [role=tab].tab-redirect::before{background-color:#ff7a2f;box-shadow:0 0 3px 0 #ff7a2f}.light-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-list [role=tab].tab-info::before{background-color:#499cfe;box-shadow:0 0 3px 0 #499cfe}.light-theme body redoc[spec-url] .redoc-wrap [data-tabs]>.react-tabs__tab-panel{background-color:#25252c}.light-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-panel .redoc-json{background-color:#25252c}.light-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-panel .redoc-json code{background-color:#25252c}.light-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-panel .redoc-json a{color:#499cfe}.light-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-panel .redoc-json a:focus,.light-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-panel .redoc-json a:hover{color:#6ca2f0}.light-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-panel .redoc-json .hoverable{color:#fff}.light-theme body redoc[spec-url] .redoc-wrap a[download]{color:#292929;border-color:#3585f9}.light-theme body redoc[spec-url] .redoc-wrap a[download]:focus,.light-theme body redoc[spec-url] .redoc-wrap a[download]:hover{color:#fff;background-color:#256bd1;border-color:#256bd1}.light-theme body redoc[spec-url] .redoc-wrap .menu-content{background-color:#f7f7f7}.light-theme body redoc[spec-url] .redoc-wrap .menu-content [role=menuitem]>label,.light-theme body redoc[spec-url] .redoc-wrap .menu-content label[role=menuitem]{color:#292929;background-color:#f7f7f7}.light-theme body redoc[spec-url] .redoc-wrap .menu-content [role=menuitem]>label:hover,.light-theme body redoc[spec-url] .redoc-wrap .menu-content label[role=menuitem]:hover{color:#256bd1;background-color:#f7f7f7}.light-theme body redoc[spec-url] .redoc-wrap .menu-content [role=menuitem]>label svg polygon,.light-theme body redoc[spec-url] .redoc-wrap .menu-content label[role=menuitem] svg polygon{fill:#256bd1}.light-theme body redoc[spec-url] .redoc-wrap .menu-content [role=menuitem]>label.active,.light-theme body redoc[spec-url] .redoc-wrap .menu-content label[role=menuitem].active{background-color:#3585f9;color:#fff}.light-theme body redoc[spec-url] .redoc-wrap .menu-content [role=menuitem]>label.active svg polygon,.light-theme body redoc[spec-url] .redoc-wrap .menu-content label[role=menuitem].active svg polygon{fill:#fff}.light-theme body redoc[spec-url] .redoc-wrap [role=search] input{color:rgba(41,41,41,.8);background-image:url("../../images/icons/svg-icons.svg#search-lt");border-bottom-color:#b7c6d7}.light-theme body redoc[spec-url] .redoc-wrap [role=search] ::-moz-placeholder{color:#657c97}.light-theme body redoc[spec-url] .redoc-wrap [role=search] ::placeholder{color:#657c97}.light-theme body redoc[spec-url] .redoc-wrap .api-content h1,.light-theme body redoc[spec-url] .redoc-wrap .api-content h2,.light-theme body redoc[spec-url] .redoc-wrap .api-content h3,.light-theme body redoc[spec-url] .redoc-wrap .api-content h4{color:#000}@media screen and (min-width:50.01rem) and (max-width:75rem){.light-theme body #version-selector .dropdown-btn{border-color:#fedd0b}}@media screen and (min-width:50.01rem) and (max-width:75rem){.light-theme body #version-selector .dropdown-menu{border-color:#fedd0b}}.dark-theme body{color:#fff;background-color:#2a2d34}@media (min-width:1200px){.dark-theme body>div:not(.loading):first-of-type{background:linear-gradient(90deg,#343741 50%,#2a2d34 50%)}}.dark-theme body .no-latest-notice-wrapper{background-color:#2a2d34}.dark-theme body .no-latest-notice-wrapper .no-latest-notice{background-color:rgba(255,122,47,.1)}.dark-theme body .no-latest-notice-wrapper .no-latest-notice .no-latest-title{color:#ff7a2f}.dark-theme body .loading redoc div{color:#499cfe!important}.dark-theme body .loading redoc div *{fill:#499cfe!important}.dark-theme body header{background:#2a2d34}@media screen and (max-width:50rem){.dark-theme body header{background-color:#343741}}.dark-theme body header .header-left{background-color:#343741}.dark-theme body header .header-left #light-dark-switch{border-top-color:#b7c6d7}.dark-theme body header .header-right{border-bottom-color:#dcebff}.dark-theme body redoc[spec-url] .redoc-wrap{color:#fff}.dark-theme body redoc[spec-url] .redoc-wrap h1 a:before,.dark-theme body redoc[spec-url] .redoc-wrap h2 a:before,.dark-theme body redoc[spec-url] .redoc-wrap h3 a:before,.dark-theme body redoc[spec-url] .redoc-wrap h4 a:before,.dark-theme body redoc[spec-url] .redoc-wrap h5 a:before,.dark-theme body redoc[spec-url] .redoc-wrap h6 a:before{filter:invert(1)}.dark-theme body redoc[spec-url] .redoc-wrap a{color:#499cfe}.dark-theme body redoc[spec-url] .redoc-wrap a:focus,.dark-theme body redoc[spec-url] .redoc-wrap a:hover{color:#6ca2f0}.dark-theme body redoc[spec-url] .redoc-wrap p{color:#fff}.dark-theme body redoc[spec-url] .redoc-wrap .token.boolean{color:#f86b63}.dark-theme body redoc[spec-url] .redoc-wrap [id^="tag/"] [id^="operation/"]>div:first-child>div>div:last-child,.dark-theme body redoc[spec-url] .redoc-wrap [id^="tag/"]>div>div:first-child>div>div:last-child{background:0 0}.dark-theme body redoc[spec-url] .redoc-wrap [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type{border-color:#dce8f8}.dark-theme body redoc[spec-url] .redoc-wrap [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div{background-color:#2a2d34}.dark-theme body redoc[spec-url] .redoc-wrap [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div:first-child{border-color:#dce8f8}.dark-theme body redoc[spec-url] .redoc-wrap [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div:last-child>div:nth-child(odd){background-color:#242424}@media screen and (min-width:50rem){.dark-theme body redoc[spec-url] .redoc-wrap [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div b{border-right-color:#dce8f8}}.dark-theme body redoc[spec-url] .redoc-wrap [id="section/Authentication"]>[id^="section/"]>div>div>div:last-of-type>div>div{border-bottom-color:#dce8f8}.dark-theme body redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:first-of-type>div:last-of-type button:not([aria-label])>svg{filter:brightness(3) saturate(.95)}.dark-theme body redoc[spec-url] .redoc-wrap .api-content [id^="tag/"]>div>div:first-of-type>div:last-of-type button:not([aria-label])>svg+strong{filter:brightness(3) saturate(.95)}.dark-theme body redoc[spec-url] .redoc-wrap table .property-name{color:#fff}.dark-theme body redoc[spec-url] .redoc-wrap table .property-name+svg polygon{fill:#3585f9}.dark-theme body redoc[spec-url] .redoc-wrap table>tbody>tr>[colspan="2"]>div,.dark-theme body redoc[spec-url] .redoc-wrap table>tbody>tr>[colspan="2"]>div [colspan="2"] [colspan="2"] [colspan="2"] [colspan="2"]>div,.dark-theme body redoc[spec-url] .redoc-wrap table>tbody>tr>[colspan="2"]>div [colspan="2"] [colspan="2"]>div{background:#343741}.dark-theme body redoc[spec-url] .redoc-wrap table>tbody>tr>[colspan="2"]>div [colspan="2"] [colspan="2"] [colspan="2"] [colspan="2"] [colspan="2"]>div,.dark-theme body redoc[spec-url] .redoc-wrap table>tbody>tr>[colspan="2"]>div [colspan="2"] [colspan="2"] [colspan="2"]>div,.dark-theme body redoc[spec-url] .redoc-wrap table>tbody>tr>[colspan="2"]>div [colspan="2"]>div{background-color:#2a2d34}.dark-theme body redoc[spec-url] .redoc-wrap table tr.expanded svg polygon{fill:#3585f9}.dark-theme body redoc[spec-url] .redoc-wrap table td div>span{color:#b4b4b4}.dark-theme body redoc[spec-url] .redoc-wrap table td[kind=field] :first-child::after,.dark-theme body redoc[spec-url] .redoc-wrap table td[kind=field] :first-child::before{background-color:#6ca2f0}.dark-theme body redoc[spec-url] .redoc-wrap table td[kind=field] button{color:#fff}.dark-theme body redoc[spec-url] .redoc-wrap table td[kind=field] button svg polygon{fill:#499cfe}.dark-theme body redoc[spec-url] .redoc-wrap .table td,.dark-theme body redoc[spec-url] .redoc-wrap .table th{color:#fff}.dark-theme body redoc[spec-url] .redoc-wrap .table.table-bordered th{background-color:#292929;border-color:#dce8f8}.dark-theme body redoc[spec-url] .redoc-wrap .table.table-bordered td{border-color:#dce8f8}.dark-theme body redoc[spec-url] .redoc-wrap .table.table-striped tbody tr:nth-of-type(odd){background-color:#2a2d34}.dark-theme body redoc[spec-url] .redoc-wrap .table.table-striped tbody tr:nth-of-type(2n){background-color:#242424}.dark-theme body redoc[spec-url] .redoc-wrap h5{color:#b4b4b4;border-bottom-color:#b4b4b4!important}.dark-theme body redoc[spec-url] .redoc-wrap h5+svg{fill:#6ca2f0}.dark-theme body redoc[spec-url] .redoc-wrap h5 span{color:#fff}.dark-theme body redoc[spec-url] .redoc-wrap [kind=field]{color:#fff}.dark-theme body redoc[spec-url] .redoc-wrap tr.last:first-of-type>[kind=field]{background-image:none}.dark-theme body redoc[spec-url] .redoc-wrap [kind=field]{border-left-color:#3585f9}.dark-theme body redoc[spec-url] .redoc-wrap svg{color:#6ca2f0}.dark-theme body redoc[spec-url] .redoc-wrap table:not(.table)>tbody>tr:first-of-type>td:first-of-type{background-image:linear-gradient(transparent 0,transparent 28px,#6ca2f0 28px,#6ca2f0 100%)}.dark-theme body redoc[spec-url] .redoc-wrap table:not(.table)>tbody>tr>td:first-of-type{border-left-color:#6ca2f0}.dark-theme body redoc[spec-url] .redoc-wrap table:not(.table)>tbody td:first-of-type>span::after,.dark-theme body redoc[spec-url] .redoc-wrap table:not(.table)>tbody td:first-of-type>span::before{background-color:#6ca2f0}.dark-theme body redoc[spec-url] .redoc-wrap table:not(.table)>tbody tr.last+tr>td:first-of-type{border-left-color:transparent}.dark-theme body redoc[spec-url] .redoc-wrap table:not(.table)>tbody tr.last>[kind=field],.dark-theme body redoc[spec-url] .redoc-wrap table:not(.table)>tbody tr.last>td:first-of-type{background-image:linear-gradient(#6ca2f0 0,#6ca2f0 29px,transparent 29px,transparent 100%)}.dark-theme body redoc[spec-url] .redoc-wrap table:not(.table)>tbody tr.last:first-of-type>td:first-of-type{background-image:none}.dark-theme body redoc[spec-url] .redoc-wrap .sc-fUnMCh.kaVHuF{color:#fff}.dark-theme body redoc[spec-url] .redoc-wrap .sc-hzhJZQ.fCWfjy{color:#292929;background-color:#fff;border-color:#fff}.dark-theme body redoc[spec-url] .redoc-wrap .sc-hzhJZQ.fpPbRN{color:#292929;background-color:#6ca2f0;border-color:#6ca2f0}.dark-theme body redoc[spec-url] .redoc-wrap [data-rttabs] .react-tabs__tab-list>[role=tab].react-tabs__tab--selected{color:#292929;background-color:#fff}.dark-theme body redoc[spec-url] .redoc-wrap [data-rttabs] .react-tabs__tab-list [role=tab]{color:#fff;background-color:#25252c}.dark-theme body redoc[spec-url] .redoc-wrap [data-rttabs] .react-tabs__tab-list [role=tab].tab-success::before{background-color:#207d82;box-shadow:0 0 3px 0 #207d82}.dark-theme body redoc[spec-url] .redoc-wrap [data-rttabs] .react-tabs__tab-list [role=tab].tab-error::before{background-color:#f86b63;box-shadow:0 0 3px 0 #f86b63}.dark-theme body redoc[spec-url] .redoc-wrap [data-rttabs] .react-tabs__tab-list [role=tab].tab-redirect::before{background-color:#ff7a2f;box-shadow:0 0 3px 0 #ff7a2f}.dark-theme body redoc[spec-url] .redoc-wrap [data-rttabs] .react-tabs__tab-list [role=tab].tab-info::before{background-color:#499cfe;box-shadow:0 0 3px 0 #499cfe}.dark-theme body redoc[spec-url] .redoc-wrap [data-rttabs]>.react-tabs__tab-panel{background-color:#25252c}.dark-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-panel .redoc-json{background-color:#25252c}.dark-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-panel .redoc-json code{background-color:#25252c}.dark-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-panel .redoc-json a{color:#499cfe}.dark-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-panel .redoc-json a:focus,.dark-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-panel .redoc-json a:hover{color:#6ca2f0}.dark-theme body redoc[spec-url] .redoc-wrap .react-tabs__tab-panel .redoc-json .hoverable{color:#fff}.dark-theme body redoc[spec-url] .redoc-wrap a[download]{color:#fff;border-color:#499cfe}.dark-theme body redoc[spec-url] .redoc-wrap a[download]:focus,.dark-theme body redoc[spec-url] .redoc-wrap a[download]:hover{color:#292929;background-color:#6ca2f0;border-color:#6ca2f0}.dark-theme body redoc[spec-url] .redoc-wrap .menu-content{background-color:#343741}.dark-theme body redoc[spec-url] .redoc-wrap .menu-content [role=menuitem]>label,.dark-theme body redoc[spec-url] .redoc-wrap .menu-content label[role=menuitem]{color:#fff;background-color:#343741}.dark-theme body redoc[spec-url] .redoc-wrap .menu-content [role=menuitem]>label:hover,.dark-theme body redoc[spec-url] .redoc-wrap .menu-content label[role=menuitem]:hover{color:#499cfe;background-color:#343741}.dark-theme body redoc[spec-url] .redoc-wrap .menu-content [role=menuitem]>label svg polygon,.dark-theme body redoc[spec-url] .redoc-wrap .menu-content label[role=menuitem] svg polygon{fill:#499cfe}.dark-theme body redoc[spec-url] .redoc-wrap .menu-content [role=menuitem]>label.active,.dark-theme body redoc[spec-url] .redoc-wrap .menu-content label[role=menuitem].active{background-color:#3585f9;color:#fff}.dark-theme body redoc[spec-url] .redoc-wrap .menu-content [role=menuitem]>label.active svg polygon,.dark-theme body redoc[spec-url] .redoc-wrap .menu-content label[role=menuitem].active svg polygon{fill:#fff}.dark-theme body redoc[spec-url] .redoc-wrap [role=search] input{color:rgba(255,255,255,.8);background-image:url("../../images/icons/svg-icons.svg#search-dt");border-bottom-color:#b7c6d7}.dark-theme body redoc[spec-url] .redoc-wrap [role=search] ::-moz-placeholder{color:#98a2b3}.dark-theme body redoc[spec-url] .redoc-wrap [role=search] ::placeholder{color:#98a2b3}.dark-theme body redoc[spec-url] .redoc-wrap [role=search] [data-role="search:results"]{color:#fff}.dark-theme body redoc[spec-url] .redoc-wrap .api-content h1,.dark-theme body redoc[spec-url] .redoc-wrap .api-content h2,.dark-theme body redoc[spec-url] .redoc-wrap .api-content h3,.dark-theme body redoc[spec-url] .redoc-wrap .api-content h4{color:#fff}@media screen and (min-width:50.01rem) and (max-width:75rem){.dark-theme body #version-selector .dropdown-btn{border-color:#ffe853}}@media screen and (min-width:50.01rem) and (max-width:75rem){.dark-theme body #version-selector .dropdown-menu{border-color:#ffe853}} /*# sourceMappingURL=api-reference.min.css.map */ \ No newline at end of file diff --git a/source/_themes/wazuh_doc_theme_v3/static/js/redoc.standalone.js b/source/_themes/wazuh_doc_theme_v3/static/js/redoc.standalone.js index 55dbe5bb54..ed4b16e70d 100644 --- a/source/_themes/wazuh_doc_theme_v3/static/js/redoc.standalone.js +++ b/source/_themes/wazuh_doc_theme_v3/static/js/redoc.standalone.js @@ -1,137 +1,1832 @@ -/*! - * ReDoc - OpenAPI/Swagger-generated API Reference Documentation - * ------------------------------------------------------------- - * Version: "2.0.0-rc.35" - * Repo: https://github.com/Redocly/redoc - */ -!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("null"),function(){try{return require("esprima")}catch(e){}}()):"function"==typeof define&&define.amd?define(["null","esprima"],t):"object"==typeof exports?exports.Redoc=t(require("null"),function(){try{return require("esprima")}catch(e){}}()):e.Redoc=t(e.null,e.esprima)}(this,(function(e,t){return function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}return n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=162)}([function(e,t,n){"use strict";e.exports=n(226)},function(e,t,n){"use strict";n.r(t),n.d(t,"__extends",(function(){return o})),n.d(t,"__assign",(function(){return i})),n.d(t,"__rest",(function(){return a})),n.d(t,"__decorate",(function(){return s})),n.d(t,"__param",(function(){return l})),n.d(t,"__metadata",(function(){return c})),n.d(t,"__awaiter",(function(){return u})),n.d(t,"__generator",(function(){return p})),n.d(t,"__exportStar",(function(){return f})),n.d(t,"__values",(function(){return d})),n.d(t,"__read",(function(){return h})),n.d(t,"__spread",(function(){return m})),n.d(t,"__spreadArrays",(function(){return g})),n.d(t,"__await",(function(){return y})),n.d(t,"__asyncGenerator",(function(){return v})),n.d(t,"__asyncDelegator",(function(){return b})),n.d(t,"__asyncValues",(function(){return x})),n.d(t,"__makeTemplateObject",(function(){return w})),n.d(t,"__importStar",(function(){return k})),n.d(t,"__importDefault",(function(){return O})),n.d(t,"__classPrivateFieldGet",(function(){return E})),n.d(t,"__classPrivateFieldSet",(function(){return _})); -/*! ***************************************************************************** -Copyright (c) Microsoft Corporation. All rights reserved. -Licensed under the Apache License, Version 2.0 (the "License"); you may not use -this file except in compliance with the License. You may obtain a copy of the -License at http://www.apache.org/licenses/LICENSE-2.0 - -THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED -WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, -MERCHANTABLITY OR NON-INFRINGEMENT. - -See the Apache Version 2.0 License for specific language governing permissions -and limitations under the License. -***************************************************************************** */ -var r=function(e,t){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)};function o(e,t){function n(){this.constructor=e}r(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var i=function(){return(i=Object.assign||function(e){for(var t,n=1,r=arguments.length;n=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a}function l(e,t){return function(n,r){t(n,r,e)}}function c(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)}function u(e,t,n,r){return new(n||(n=Promise))((function(o,i){function a(e){try{l(r.next(e))}catch(e){i(e)}}function s(e){try{l(r.throw(e))}catch(e){i(e)}}function l(e){var t;e.done?o(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(a,s)}l((r=r.apply(e,t||[])).next())}))}function p(e,t){var n,r,o,i,a={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(i){return function(s){return function(i){if(n)throw new TypeError("Generator is already executing.");for(;a;)try{if(n=1,r&&(o=2&i[0]?r.return:i[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,i[1])).done)return o;switch(r=0,o&&(i=[2&i[0],o.value]),i[0]){case 0:case 1:o=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,r=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!(o=(o=a.trys).length>0&&o[o.length-1])&&(6===i[0]||2===i[0])){a=0;continue}if(3===i[0]&&(!o||i[1]>o[0]&&i[1]=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function h(e,t){var n="function"==typeof Symbol&&e[Symbol.iterator];if(!n)return e;var r,o,i=n.call(e),a=[];try{for(;(void 0===t||t-- >0)&&!(r=i.next()).done;)a.push(r.value)}catch(e){o={error:e}}finally{try{r&&!r.done&&(n=i.return)&&n.call(i)}finally{if(o)throw o.error}}return a}function m(){for(var e=[],t=0;t1||s(e,t)}))})}function s(e,t){try{(n=o[e](t)).value instanceof y?Promise.resolve(n.value.v).then(l,c):u(i[0][2],n)}catch(e){u(i[0][3],e)}var n}function l(e){s("next",e)}function c(e){s("throw",e)}function u(e,t){e(t),i.shift(),i.length&&s(i[0][0],i[0][1])}}function b(e){var t,n;return t={},r("next"),r("throw",(function(e){throw e})),r("return"),t[Symbol.iterator]=function(){return this},t;function r(r,o){t[r]=e[r]?function(t){return(n=!n)?{value:y(e[r](t)),done:"return"===r}:o?o(t):t}:o}}function x(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t,n=e[Symbol.asyncIterator];return n?n.call(e):(e=d(e),t={},r("next"),r("throw"),r("return"),t[Symbol.asyncIterator]=function(){return this},t);function r(n){t[n]=e[n]&&function(t){return new Promise((function(r,o){(function(e,t,n,r){Promise.resolve(r).then((function(t){e({value:t,done:n})}),t)})(r,o,(t=e[n](t)).done,t.value)}))}}}function w(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e}function k(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.hasOwnProperty.call(e,n)&&(t[n]=e[n]);return t.default=e,t}function O(e){return e&&e.__esModule?e:{default:e}}function E(e,t){if(!t.has(e))throw new TypeError("attempted to get private field on non-instance");return t.get(e)}function _(e,t,n){if(!t.has(e))throw new TypeError("attempted to set private field on non-instance");return t.set(e,n),n}},function(e,t,n){"use strict";(function(e,r){n.d(t,"a",(function(){return pn})),n.d(t,"b",(function(){return qe})),n.d(t,"c",(function(){return Se})),n.d(t,"d",(function(){return ot})),n.d(t,"e",(function(){return le})),n.d(t,"f",(function(){return ft})),n.d(t,"g",(function(){return L})),n.d(t,"h",(function(){return ht})),n.d(t,"i",(function(){return $t})),n.d(t,"j",(function(){return Vt})),n.d(t,"k",(function(){return rn})),n.d(t,"l",(function(){return ne})),n.d(t,"m",(function(){return bt})),n.d(t,"n",(function(){return it})),n.d(t,"o",(function(){return et})),n.d(t,"p",(function(){return wt})),n.d(t,"q",(function(){return me})); -/*! ***************************************************************************** -Copyright (c) Microsoft Corporation. All rights reserved. -Licensed under the Apache License, Version 2.0 (the "License"); you may not use -this file except in compliance with the License. You may obtain a copy of the -License at http://www.apache.org/licenses/LICENSE-2.0 - -THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED -WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, -MERCHANTABLITY OR NON-INFRINGEMENT. - -See the Apache Version 2.0 License for specific language governing permissions -and limitations under the License. -***************************************************************************** */ -var o=function(e,t){return(o=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)};function i(e,t){function n(){this.constructor=e}o(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var a=function(){return(a=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0)&&!(r=i.next()).done;)a.push(r.value)}catch(e){o={error:e}}finally{try{r&&!r.done&&(n=i.return)&&n.call(i)}finally{if(o)throw o.error}}return a}function l(){for(var e=[],t=0;t2&&re("box");var n=Q(t);return new Ce(e,X(n),n.name,!0,n.equals)},shallowBox:function(e,t){return arguments.length>2&&re("shallowBox"),ne.box(e,{name:t,deep:!1})},array:function(e,t){arguments.length>2&&re("array");var n=Q(t);return new Mt(e,X(n),n.name)},shallowArray:function(e,t){return arguments.length>2&&re("shallowArray"),ne.array(e,{name:t,deep:!1})},map:function(e,t){arguments.length>2&&re("map");var n=Q(t);return new Wt(e,X(n),n.name)},shallowMap:function(e,t){return arguments.length>2&&re("shallowMap"),ne.map(e,{name:t,deep:!1})},set:function(e,t){arguments.length>2&&re("set");var n=Q(t);return new Gt(e,X(n),n.name)},object:function(e,t,n){"string"==typeof arguments[1]&&re("object");var r=Q(n);return dt({},e,t,r)},shallowObject:function(e,t){return"string"==typeof arguments[1]&&re("shallowObject"),ne.object(e,{},{name:t,deep:!1})},ref:J,shallow:Z,deep:K,struct:ee},ne=function(e,t,n){if("string"==typeof arguments[1])return K.apply(null,arguments);if(vt(e))return e;var r=b(e)?ne.object(e,t,n):Array.isArray(e)?ne.array(e,t):O(e)?ne.map(e,t):E(e)?ne.set(e,t):e;if(r!==e)return r;h(!1)};function re(e){h("Expected one or two arguments to observable."+e+". Did you accidentally try to use observable."+e+" as decorator?")}Object.keys(te).forEach((function(e){return ne[e]=te[e]}));var oe,ie,ae=$(!1,(function(e,t,n,r,o){var i=n.get,s=n.set,l=o[0]||{};!function(e,t,n){var r=Kt(e);n.name=r.name+"."+t,n.context=e,r.values[t]=new Ae(n),Object.defineProperty(e,t,function(e){return en[e]||(en[e]={configurable:Le.computedConfigurable,enumerable:!1,get:function(){return tn(this).read(this,e)},set:function(t){tn(this).write(this,e,t)}})}(t))}(e,t,a({get:i,set:s},l))})),se=ae({equals:D.structural}),le=function(e,t,n){if("string"==typeof t)return ae.apply(null,arguments);if(null!==e&&"object"==typeof e&&1===arguments.length)return ae.apply(null,arguments);var r="object"==typeof t?t:{};return r.get=e,r.set="function"==typeof t?t:r.set,r.name=r.name||e.name||"",new Ae(r)};le.struct=se,function(e){e[e.NOT_TRACKING=-1]="NOT_TRACKING",e[e.UP_TO_DATE=0]="UP_TO_DATE",e[e.POSSIBLY_STALE=1]="POSSIBLY_STALE",e[e.STALE=2]="STALE"}(oe||(oe={})),function(e){e[e.NONE=0]="NONE",e[e.LOG=1]="LOG",e[e.BREAK=2]="BREAK"}(ie||(ie={}));var ce=function(e){this.cause=e};function ue(e){return e instanceof ce}function pe(e){switch(e.dependenciesState){case oe.UP_TO_DATE:return!1;case oe.NOT_TRACKING:case oe.STALE:return!0;case oe.POSSIBLY_STALE:for(var t=ve(!0),n=ge(),r=e.observing,o=r.length,i=0;i0;Le.computationDepth>0&&t&&h(!1),Le.allowStateChanges||!t&&"strict"!==Le.enforceActions||h(!1)}function de(e,t,n){var r=ve(!0);xe(e),e.newObserving=new Array(e.observing.length+100),e.unboundDepsCount=0,e.runId=++Le.runId;var o,i=Le.trackingDerivation;if(Le.trackingDerivation=e,!0===Le.disableErrorBoundaries)o=t.call(n);else try{o=t.call(n)}catch(e){o=new ce(e)}return Le.trackingDerivation=i,function(e){for(var t=e.observing,n=e.observing=e.newObserving,r=oe.UP_TO_DATE,o=0,i=e.unboundDepsCount,a=0;ar&&(r=s.dependenciesState)}n.length=o,e.newObserving=null,i=t.length;for(;i--;){0===(s=t[i]).diffValue&&De(s,e),s.diffValue=0}for(;o--;){var s;1===(s=n[o]).diffValue&&(s.diffValue=0,Me(s,e))}r!==oe.UP_TO_DATE&&(e.dependenciesState=r,e.onBecomeStale())}(e),e.observing.length,be(r),o}function he(e){var t=e.observing;e.observing=[];for(var n=t.length;n--;)De(t[n],e);e.dependenciesState=oe.NOT_TRACKING}function me(e){var t=ge(),n=e();return ye(t),n}function ge(){var e=Le.trackingDerivation;return Le.trackingDerivation=null,e}function ye(e){Le.trackingDerivation=e}function ve(e){var t=Le.allowStateReads;return Le.allowStateReads=e,t}function be(e){Le.allowStateReads=e}function xe(e){if(e.dependenciesState!==oe.UP_TO_DATE){e.dependenciesState=oe.UP_TO_DATE;for(var t=e.observing,n=t.length;n--;)t[n].lowestObserverState=oe.UP_TO_DATE}}var we=0,ke=1,Oe=Object.getOwnPropertyDescriptor((function(){}),"name");Oe&&Oe.configurable;function Ee(e,t){var n=function(){return _e(e,t,this,arguments)};return n.isMobxAction=!0,n}function _e(e,t,n,r){var o=function(e,t,n){var r=Qe()&&!!e,o=0;if(r){o=Date.now();var i=n&&n.length||0,a=new Array(i);if(i>0)for(var s=0;s0&&!e.__mobxGlobals&&(Re=!1),e.__mobxGlobals&&e.__mobxGlobals.version!==(new Pe).version&&(Re=!1),Re?e.__mobxGlobals?(e.__mobxInstanceCount+=1,e.__mobxGlobals.UNCHANGED||(e.__mobxGlobals.UNCHANGED={}),e.__mobxGlobals):(e.__mobxInstanceCount=1,e.__mobxGlobals=new Pe):(setTimeout((function(){Ne||h("There are multiple, different versions of MobX active. Make sure MobX is loaded only once or use `configure({ isolateGlobalState: true })`")}),1),new Pe)}();function Me(e,t){var n=e.observers.length;n&&(e.observersIndexes[t.__mapid]=n),e.observers[n]=t,e.lowestObserverState>t.dependenciesState&&(e.lowestObserverState=t.dependenciesState)}function De(e,t){if(1===e.observers.length)e.observers.length=0,Fe(e);else{var n=e.observers,r=e.observersIndexes,o=n.pop();if(o!==t){var i=r[t.__mapid]||0;i?r[o.__mapid]=i:delete r[o.__mapid],n[i]=o}delete r[t.__mapid]}}function Fe(e){!1===e.isPendingUnobservation&&(e.isPendingUnobservation=!0,Le.pendingUnobservations.push(e))}function ze(){Le.inBatch++}function Ue(){if(0==--Le.inBatch){He();for(var e=Le.pendingUnobservations,t=0;t0&&Fe(e),!1)}function $e(e,t){if(console.log("[mobx.trace] '"+e.name+"' is invalidated due to a change in: '"+t.name+"'"),e.isTracing===ie.BREAK){var n=[];!function e(t,n,r){if(n.length>=1e3)return void n.push("(and many more)");n.push(""+new Array(r).join("\t")+t.name),t.dependencies&&t.dependencies.forEach((function(t){return e(t,n,r+1)}))}(ht(e),n,1),new Function("debugger;\n/*\nTracing '"+e.name+"'\n\nYou are entering this break point because derivation '"+e.name+"' is being traced and '"+t.name+"' is now forcing it to update.\nJust follow the stacktrace you should now see in the devtools to see precisely what piece of your code is causing this update\nThe stackframe you are looking for is at least ~6-8 stack-frames up.\n\n"+(e instanceof Ae?e.derivation.toString().replace(/[*]\//g,"/"):"")+"\n\nThe dependencies for this derivation are:\n\n"+n.join("\n")+"\n*/\n ")()}}var qe=function(){function e(e,t,n,r){void 0===e&&(e="Reaction@"+d()),void 0===r&&(r=!1),this.name=e,this.onInvalidate=t,this.errorHandler=n,this.requiresObservable=r,this.observing=[],this.newObserving=[],this.dependenciesState=oe.NOT_TRACKING,this.diffValue=0,this.runId=0,this.unboundDepsCount=0,this.__mapid="#"+d(),this.isDisposed=!1,this._isScheduled=!1,this._isTrackPending=!1,this._isRunning=!1,this.isTracing=ie.NONE}return e.prototype.onBecomeStale=function(){this.schedule()},e.prototype.schedule=function(){this._isScheduled||(this._isScheduled=!0,Le.pendingReactions.push(this),He())},e.prototype.isScheduled=function(){return this._isScheduled},e.prototype.runReaction=function(){if(!this.isDisposed){if(ze(),this._isScheduled=!1,pe(this)){this._isTrackPending=!0;try{this.onInvalidate(),this._isTrackPending&&Qe()&&Xe({name:this.name,type:"scheduled-reaction"})}catch(e){this.reportExceptionInDerivation(e)}}Ue()}},e.prototype.track=function(e){ze();var t,n=Qe();n&&(t=Date.now(),Ke({name:this.name,type:"reaction"})),this._isRunning=!0;var r=de(this,e,void 0);this._isRunning=!1,this._isTrackPending=!1,this.isDisposed&&he(this),ue(r)&&this.reportExceptionInDerivation(r.cause),n&&Je({time:Date.now()-t}),Ue()},e.prototype.reportExceptionInDerivation=function(e){var t=this;if(this.errorHandler)this.errorHandler(e,this);else{if(Le.disableErrorBoundaries)throw e;var n="[mobx] Encountered an uncaught exception that was thrown by a reaction or observer component, in: '"+this+"'";Le.suppressReactionErrors?console.warn("[mobx] (error in reaction '"+this.name+"' suppressed, fix error of causing action below)"):console.error(n,e),Qe()&&Xe({type:"error",name:this.name,message:n,error:""+e}),Le.globalReactionErrorHandlers.forEach((function(n){return n(e,t)}))}},e.prototype.dispose=function(){this.isDisposed||(this.isDisposed=!0,this._isRunning||(ze(),he(this),Ue()))},e.prototype.getDisposer=function(){var e=this.dispose.bind(this);return e.$mobx=this,e},e.prototype.toString=function(){return"Reaction["+this.name+"]"},e.prototype.trace=function(e){void 0===e&&(e=!1),function(){for(var e=[],t=0;t0||Le.isRunningReactions||We(Ve)}function Ve(){Le.isRunningReactions=!0;for(var e=Le.pendingReactions,t=0;e.length>0;){100==++t&&(console.error("Reaction doesn't converge to a stable state after 100 iterations. Probably there is a cycle in the reactive function: "+e[0]),e.splice(0));for(var n=e.splice(0),r=0,o=n.length;r",e):2===arguments.length&&"function"==typeof t?Ee(e,t):1===arguments.length&&"string"==typeof e?nt(e):!0!==r?nt(t).apply(null,arguments):void(e[t]=Ee(e.name||t,n.value))};function it(e,t){return _e("string"==typeof e?e:e.name||"","function"==typeof e?e:t,this,void 0)}function at(e,t,n){x(e,t,Ee(t,n.bind(e)))}function st(e,t){void 0===t&&(t=u);var n,r=t&&t.name||e.name||"Autorun@"+d();if(!t.scheduler&&!t.delay)n=new qe(r,(function(){this.track(a)}),t.onError,t.requiresObservable);else{var o=ct(t),i=!1;n=new qe(r,(function(){i||(i=!0,o((function(){i=!1,n.isDisposed||n.track(a)})))}),t.onError,t.requiresObservable)}function a(){e(n)}return n.schedule(),n.getDisposer()}ot.bound=function(e,t,n,r){return!0===r?(at(e,t,n.value),null):n?{configurable:!0,enumerable:!1,get:function(){return at(this,t,n.value||n.initializer.call(this)),this[t]},set:tt}:{enumerable:!1,configurable:!0,set:function(e){at(this,t,e)},get:function(){}}};var lt=function(e){return e()};function ct(e){return e.scheduler?e.scheduler:e.delay?function(t){return setTimeout(t,e.delay)}:lt}function ut(e,t,n){return pt("onBecomeUnobserved",e,t,n)}function pt(e,t,n,r){var o="function"==typeof r?on(t,n):on(t),i="function"==typeof r?r:n,a=o[e];return"function"!=typeof a?h(!1):(o[e]=function(){a.call(this),i.call(this)},function(){o[e]=a})}function ft(e){var t=e.enforceActions,n=e.computedRequiresReaction,r=e.computedConfigurable,o=e.disableErrorBoundaries,i=e.arrayBuffer,a=e.reactionScheduler,s=e.reactionRequiresObservable,l=e.observableRequiresReaction;if(!0===e.isolateGlobalState&&((Le.pendingReactions.length||Le.inBatch||Le.isRunningReactions)&&h("isolateGlobalState should be called before MobX is running any reactions"),Ne=!0,Re&&(0==--f().__mobxInstanceCount&&(f().__mobxGlobals=void 0),Le=new Pe)),void 0!==t){var c=void 0;switch(t){case!0:case"observed":c=!0;break;case!1:case"never":c=!1;break;case"strict":case"always":c="strict";break;default:h("Invalid value for 'enforceActions': '"+t+"', expected 'never', 'always' or 'observed'")}Le.enforceActions=c,Le.allowStateChanges=!0!==c&&"strict"!==c}void 0!==n&&(Le.computedRequiresReaction=!!n),void 0!==s&&(Le.reactionRequiresObservable=!!s),void 0!==l&&(Le.observableRequiresReaction=!!l,Le.allowStateReads=!Le.observableRequiresReaction),void 0!==r&&(Le.computedConfigurable=!!r),void 0!==o&&(!0===o&&console.warn("WARNING: Debug feature only. MobX will NOT recover from errors if this is on."),Le.disableErrorBoundaries=!!o),"number"==typeof i&&Ut(i),a&&Ge(a)}function dt(e,t,n,r){var o=(r=Q(r)).defaultDecorator||(!1===r.deep?J:K);B(e),Kt(e,r.name,o.enhancer),ze();try{for(var i in t){var a=Object.getOwnPropertyDescriptor(t,i);0;var s=(n&&i in n?n[i]:a.get?ae:o)(e,i,a,!0);s&&Object.defineProperty(e,i,s)}}finally{Ue()}return e}function ht(e,t){return mt(on(e,t))}function mt(e){var t,n,r={name:e.name};return e.observing&&e.observing.length>0&&(r.dependencies=(t=e.observing,n=[],t.forEach((function(e){-1===n.indexOf(e)&&n.push(e)})),n).map(mt)),r}function gt(){this.message="FLOW_CANCELLED"}function yt(e,t){if(null==e)return!1;if(void 0!==t){if(rn(e)){var n=e.$mobx;return n.values&&!!n.values[t]}return!1}return rn(e)||!!e.$mobx||N(e)||Ye(e)||Ie(e)}function vt(e){return 1!==arguments.length&&h(!1),yt(e)}function bt(e,t,n,r){return"function"==typeof n?function(e,t,n,r){return an(e,t).observe(n,r)}(e,t,n,r):function(e,t,n){return an(e).observe(t,n)}(e,t,n)}gt.prototype=Object.create(Error.prototype);function xt(e){switch(e.length){case 0:return Le.trackingDerivation;case 1:return on(e[0]);case 2:return on(e[0],e[1])}}function wt(e,t){void 0===t&&(t=void 0),ze();try{return e.apply(t)}finally{Ue()}}function kt(e){return void 0!==e.interceptors&&e.interceptors.length>0}function Ot(e,t){var n=e.interceptors||(e.interceptors=[]);return n.push(t),g((function(){var e=n.indexOf(t);-1!==e&&n.splice(e,1)}))}function Et(e,t){var n=ge();try{var r=e.interceptors;if(r)for(var o=0,i=r.length;o0}function St(e,t){var n=e.changeListeners||(e.changeListeners=[]);return n.push(t),g((function(){var e=n.indexOf(t);-1!==e&&n.splice(e,1)}))}function Tt(e,t){var n=ge(),r=e.changeListeners;if(r){for(var o=0,i=(r=r.slice()).length;o0?e.map(this.dehancer):e},e.prototype.intercept=function(e){return Ot(this,e)},e.prototype.observe=function(e,t){return void 0===t&&(t=!1),t&&e({object:this.array,type:"splice",index:0,added:this.values.slice(),addedCount:this.values.length,removed:[],removedCount:0}),St(this,e)},e.prototype.getArrayLength=function(){return this.atom.reportObserved(),this.values.length},e.prototype.setArrayLength=function(e){if("number"!=typeof e||e<0)throw new Error("[mobx.array] Out of range: "+e);var t=this.values.length;if(e!==t)if(e>t){for(var n=new Array(e-t),r=0;r0&&e+t+1>Rt&&Ut(e+t+1)},e.prototype.spliceWithArray=function(e,t,n){var r=this;fe(this.atom);var o=this.values.length;if(void 0===e?e=0:e>o?e=o:e<0&&(e=Math.max(0,o+e)),t=1===arguments.length?o-e:null==t?0:Math.max(0,Math.min(t,o-e)),void 0===n&&(n=c),kt(this)){var i=Et(this,{object:this.array,type:"splice",index:e,removedCount:t,added:n});if(!i)return c;t=i.removedCount,n=i.added}var a=(n=0===n.length?n:n.map((function(e){return r.enhancer(e,void 0)}))).length-t;this.updateArrayLength(o,a);var s=this.spliceItemsIntoValues(e,t,n);return 0===t&&0===n.length||this.notifyArraySplice(e,n,s),this.dehanceValues(s)},e.prototype.spliceItemsIntoValues=function(e,t,n){var r;if(n.length<1e4)return(r=this.values).splice.apply(r,l([e,t],n));var o=this.values.slice(e,e+t);return this.values=this.values.slice(0,e).concat(n,this.values.slice(e+t)),o},e.prototype.notifyArrayChildUpdate=function(e,t,n){var r=!this.owned&&Qe(),o=_t(this),i=o||r?{object:this.array,type:"update",index:e,newValue:t,oldValue:n}:null;r&&Ke(a(a({},i),{name:this.atom.name})),this.atom.reportChanged(),o&&Tt(this,i),r&&Je()},e.prototype.notifyArraySplice=function(e,t,n){var r=!this.owned&&Qe(),o=_t(this),i=o||r?{object:this.array,type:"splice",index:e,removed:n,added:t,removedCount:n.length,addedCount:t.length}:null;r&&Ke(a(a({},i),{name:this.atom.name})),this.atom.reportChanged(),o&&Tt(this,i),r&&Je()},e}(),Mt=function(e){function t(t,n,r,o){void 0===r&&(r="ObservableArray@"+d()),void 0===o&&(o=!1);var i=e.call(this)||this,a=new Lt(r,n,i,o);if(w(i,"$mobx",a),t&&t.length){var s=Te(!0);i.spliceWithArray(0,0,t),je(s)}return Pt&&Object.defineProperty(a.array,"0",Dt),i}return i(t,e),t.prototype.intercept=function(e){return this.$mobx.intercept(e)},t.prototype.observe=function(e,t){return void 0===t&&(t=!1),this.$mobx.observe(e,t)},t.prototype.clear=function(){return this.splice(0)},t.prototype.concat=function(){for(var e=[],t=0;t-1&&(this.splice(t,1),!0)},t.prototype.move=function(e,t){function n(e){if(e<0)throw new Error("[mobx.array] Index out of bounds: "+e+" is negative");var t=this.$mobx.values.length;if(e>=t)throw new Error("[mobx.array] Index out of bounds: "+e+" is not smaller than "+t)}if(n.call(this,e),n.call(this,t),e!==t){var r,o=this.$mobx.values;r=e0;)r[o]=arguments[o+2];t.locks++;try{var i;return null!=e&&(i=e.apply(this,r)),i}finally{t.locks--,0===t.locks&&t.methods.forEach((function(e){e.apply(n,r)}))}}function y(e,t){return function(){for(var n=[],r=arguments.length;r--;)n[r]=arguments[r];g.call.apply(g,[this,e,t].concat(n))}}function v(e,t,n){var r=function(e,t){var n=e[h]=e[h]||{},r=n[t]=n[t]||{};return r.locks=r.locks||0,r.methods=r.methods||[],r}(e,t);r.methods.indexOf(n)<0&&r.methods.push(n);var o=Object.getOwnPropertyDescriptor(e,t);if(!o||!o[m]){var i=e[t],a=function e(t,n,r,o,i){var a,s=y(i,o);return(a={})[m]=!0,a.get=function(){return s},a.set=function(i){if(this===t)s=y(i,o);else{var a=e(this,n,r,o,i);Object.defineProperty(this,n,a)}},a.configurable=!0,a.enumerable=r,a}(e,t,o?o.enumerable:void 0,r,i);Object.defineProperty(e,t,a)}}var b=s.a||"$mobx",x=u("isUnmounted"),w=u("skipRender"),k=u("isForcingUpdate");function O(e){var t=e.prototype;if(t.componentWillReact)throw new Error("The componentWillReact life-cycle event is no longer supported");if(e.__proto__!==i.PureComponent)if(t.shouldComponentUpdate){if(t.shouldComponentUpdate!==_)throw new Error("It is not allowed to use shouldComponentUpdate in observer based components.")}else t.shouldComponentUpdate=_;S(t,"props"),S(t,"state");var n=t.render;return t.render=function(){return E.call(this,n)},v(t,"componentWillUnmount",(function(){if(!0!==Object(o.b)()){if(this.render[b])this.render[b].dispose();else;this[x]=!0}})),e}function E(e){var t=this;if(!0===Object(o.b)())return e.call(this);d(this,w,!1),d(this,k,!1);var n,r=(n=this).displayName||n.name||n.constructor&&(n.constructor.displayName||n.constructor.name)||"",a=e.bind(this),l=!1,c=new s.b(r+".render()",(function(){if(!l&&(l=!0,!0!==t[x])){var e=!0;try{d(t,k,!0),t[w]||i.Component.prototype.forceUpdate.call(t),e=!1}finally{d(t,k,!1),e&&c.dispose()}}}));function u(){l=!1;var e=void 0,t=void 0;if(c.track((function(){try{t=Object(s.c)(!1,a)}catch(t){e=t}})),e)throw e;return t}return c.reactComponent=this,u[b]=c,this.render=u,u.call(this)}function _(e,t){return Object(o.b)()&&console.warn("[mobx-react] It seems that a re-rendering of a React component is triggered while in static (server-side) mode. Please make sure components are rendered only once server-side."),this.state!==t||!p(this.props,e)}function S(e,t){var n=u("reactProp_"+t+"_valueHolder"),r=u("reactProp_"+t+"_atomHolder");function o(){return this[r]||d(this,r,Object(s.g)("reactive "+t)),this[r]}Object.defineProperty(e,t,{configurable:!0,enumerable:!0,get:function(){return o.call(this).reportObserved(),this[n]},set:function(e){this[k]||p(this[n],e)?d(this,n,e):(d(this,n,e),d(this,w,!0),o.call(this).reportChanged(),d(this,w,!1))}})}var T="function"==typeof Symbol&&Symbol.for,j=T?Symbol.for("react.forward_ref"):"function"==typeof i.forwardRef&&Object(i.forwardRef)((function(){})).$$typeof,C=T?Symbol.for("react.memo"):"function"==typeof i.memo&&Object(i.memo)((function(){})).$$typeof;function A(e){if(!0===e.isMobxInjector&&console.warn("Mobx observer: You are trying to use 'observer' on a component that already has 'inject'. Please apply 'observer' before applying 'inject'"),C&&e.$$typeof===C)throw new Error("Mobx observer: You are trying to use 'observer' on function component wrapped to either another observer or 'React.memo'. The observer already applies 'React.memo' for you.");if(j&&e.$$typeof===j){var t=e.render;if("function"!=typeof t)throw new Error("render property of ForwardRef was not a function");return Object(i.forwardRef)((function(){var e=arguments;return a.a.createElement(o.a,null,(function(){return t.apply(void 0,e)}))}))}return"function"!=typeof e||e.prototype&&e.prototype.render||e.isReactClass||Object.prototype.isPrototypeOf.call(i.Component,e)?O(e):Object(o.c)(e)}a.a.createContext({});u("disposeOnUnmountProto"),u("disposeOnUnmountInst");function I(e){function t(t,n,r,o,i,a){for(var l=[],c=arguments.length-6;c-- >0;)l[c]=arguments[c+6];return Object(s.q)((function(){if(o=o||"<>",a=a||r,null==n[r]){if(t){var s=null===n[r]?"null":"undefined";return new Error("The "+i+" `"+a+"` is marked as required in `"+o+"`, but its value is `"+s+"`.")}return null}return e.apply(void 0,[n,r,o,i,a].concat(l))}))}var n=t.bind(null,!1);return n.isRequired=t.bind(null,!0),n}function P(e){var t=typeof e;return Array.isArray(e)?"array":e instanceof RegExp?"object":function(e,t){return"symbol"===e||("Symbol"===t["@@toStringTag"]||"function"==typeof Symbol&&t instanceof Symbol)}(t,e)?"symbol":t}function R(e,t){return I((function(n,r,o,i,a){return Object(s.q)((function(){if(e&&P(n[r])===t.toLowerCase())return null;var i;switch(t){case"Array":i=s.i;break;case"Object":i=s.k;break;case"Map":i=s.j;break;default:throw new Error("Unexpected mobxType: "+t)}var l=n[r];if(!i(l)){var c=function(e){var t=P(e);if("object"===t){if(e instanceof Date)return"date";if(e instanceof RegExp)return"regexp"}return t}(l),u=e?" or javascript `"+t.toLowerCase()+"`":"";return new Error("Invalid prop `"+a+"` of type `"+c+"` supplied to `"+o+"`, expected `mobx.Observable"+t+"`"+u+".")}return null}))}))}function N(e,t){return I((function(n,r,o,i,a){for(var l=[],c=arguments.length-5;c-- >0;)l[c]=arguments[c+5];return Object(s.q)((function(){if("function"!=typeof t)return new Error("Property `"+a+"` of component `"+o+"` has invalid PropType notation.");var s=R(e,"Array")(n,r,o);if(s instanceof Error)return s;for(var c=n[r],u=0;u",'"',"`"," ","\r","\n","\t"]),u=["'"].concat(c),p=["%","/","?",";","#"].concat(u),f=["/","?","#"],d=/^[+a-z0-9A-Z_-]{0,63}$/,h=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,m={javascript:!0,"javascript:":!0},g={javascript:!0,"javascript:":!0},y={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},v=n(235);function b(e,t,n){if(e&&o.isObject(e)&&e instanceof i)return e;var r=new i;return r.parse(e,t,n),r}i.prototype.parse=function(e,t,n){if(!o.isString(e))throw new TypeError("Parameter 'url' must be a string, not "+typeof e);var i=e.indexOf("?"),s=-1!==i&&i127?R+="x":R+=P[N];if(!R.match(d)){var M=A.slice(0,T),D=A.slice(T+1),F=P.match(h);F&&(M.push(F[1]),D.unshift(F[2])),D.length&&(b="/"+D.join(".")+b),this.hostname=M.join(".");break}}}this.hostname.length>255?this.hostname="":this.hostname=this.hostname.toLowerCase(),C||(this.hostname=r.toASCII(this.hostname));var z=this.port?":"+this.port:"",U=this.hostname||"";this.host=U+z,this.href+=this.host,C&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),"/"!==b[0]&&(b="/"+b))}if(!m[k])for(T=0,I=u.length;T0)&&n.host.split("@"))&&(n.auth=C.shift(),n.host=n.hostname=C.shift());return n.search=e.search,n.query=e.query,o.isNull(n.pathname)&&o.isNull(n.search)||(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.href=n.format(),n}if(!O.length)return n.pathname=null,n.search?n.path="/"+n.search:n.path=null,n.href=n.format(),n;for(var _=O.slice(-1)[0],S=(n.host||e.host||O.length>1)&&("."===_||".."===_)||""===_,T=0,j=O.length;j>=0;j--)"."===(_=O[j])?O.splice(j,1):".."===_?(O.splice(j,1),T++):T&&(O.splice(j,1),T--);if(!w&&!k)for(;T--;T)O.unshift("..");!w||""===O[0]||O[0]&&"/"===O[0].charAt(0)||O.unshift(""),S&&"/"!==O.join("/").substr(-1)&&O.push("");var C,A=""===O[0]||O[0]&&"/"===O[0].charAt(0);E&&(n.hostname=n.host=A?"":O.length?O.shift():"",(C=!!(n.host&&n.host.indexOf("@")>0)&&n.host.split("@"))&&(n.auth=C.shift(),n.host=n.hostname=C.shift()));return(w=w||n.host&&O.length)&&!A&&O.unshift(""),O.length?n.pathname=O.join("/"):(n.pathname=null,n.path=null),o.isNull(n.pathname)&&o.isNull(n.search)||(n.path=(n.pathname?n.pathname:"")+(n.search?n.search:"")),n.auth=e.auth||n.auth,n.slashes=n.slashes||e.slashes,n.href=n.format(),n},i.prototype.parseHost=function(){var e=this.host,t=s.exec(e);t&&(":"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)}},function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},function(e,t,n){var r=n(36),o=n(11),i=n(129),a=n(16).f;e.exports=function(e){var t=r.Symbol||(r.Symbol={});o(t,e)||a(t,e,{value:i.f(e)})}},function(e,t){var n,r,o=e.exports={};function i(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(e){if(n===setTimeout)return setTimeout(e,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(e){n=i}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(e){r=a}}();var l,c=[],u=!1,p=-1;function f(){u&&l&&(u=!1,l.length?c=l.concat(c):p=-1,c.length&&d())}function d(){if(!u){var e=s(f);u=!0;for(var t=c.length;t;){for(l=c,c=[];++p1)for(var n=1;n - * @license MIT - */ -var r=n(239),o=n(240),i=n(131);function a(){return l.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function s(e,t){if(a()=a())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+a().toString(16)+" bytes");return 0|e}function h(e,t){if(l.isBuffer(e))return e.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(e)||e instanceof ArrayBuffer))return e.byteLength;"string"!=typeof e&&(e=""+e);var n=e.length;if(0===n)return 0;for(var r=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return U(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return B(e).length;default:if(r)return U(e).length;t=(""+t).toLowerCase(),r=!0}}function m(e,t,n){var r=!1;if((void 0===t||t<0)&&(t=0),t>this.length)return"";if((void 0===n||n>this.length)&&(n=this.length),n<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e||(e="utf8");;)switch(e){case"hex":return C(this,t,n);case"utf8":case"utf-8":return S(this,t,n);case"ascii":return T(this,t,n);case"latin1":case"binary":return j(this,t,n);case"base64":return _(this,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return A(this,t,n);default:if(r)throw new TypeError("Unknown encoding: "+e);e=(e+"").toLowerCase(),r=!0}}function g(e,t,n){var r=e[t];e[t]=e[n],e[n]=r}function y(e,t,n,r,o){if(0===e.length)return-1;if("string"==typeof n?(r=n,n=0):n>2147483647?n=2147483647:n<-2147483648&&(n=-2147483648),n=+n,isNaN(n)&&(n=o?0:e.length-1),n<0&&(n=e.length+n),n>=e.length){if(o)return-1;n=e.length-1}else if(n<0){if(!o)return-1;n=0}if("string"==typeof t&&(t=l.from(t,r)),l.isBuffer(t))return 0===t.length?-1:v(e,t,n,r,o);if("number"==typeof t)return t&=255,l.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?o?Uint8Array.prototype.indexOf.call(e,t,n):Uint8Array.prototype.lastIndexOf.call(e,t,n):v(e,[t],n,r,o);throw new TypeError("val must be string, number or Buffer")}function v(e,t,n,r,o){var i,a=1,s=e.length,l=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;a=2,s/=2,l/=2,n/=2}function c(e,t){return 1===a?e[t]:e.readUInt16BE(t*a)}if(o){var u=-1;for(i=n;is&&(n=s-l),i=n;i>=0;i--){for(var p=!0,f=0;fo&&(r=o):r=o;var i=t.length;if(i%2!=0)throw new TypeError("Invalid hex string");r>i/2&&(r=i/2);for(var a=0;a>8,o=n%256,i.push(o),i.push(r);return i}(t,e.length-n),e,n,r)}function _(e,t,n){return 0===t&&n===e.length?r.fromByteArray(e):r.fromByteArray(e.slice(t,n))}function S(e,t,n){n=Math.min(e.length,n);for(var r=[],o=t;o239?4:c>223?3:c>191?2:1;if(o+p<=n)switch(p){case 1:c<128&&(u=c);break;case 2:128==(192&(i=e[o+1]))&&(l=(31&c)<<6|63&i)>127&&(u=l);break;case 3:i=e[o+1],a=e[o+2],128==(192&i)&&128==(192&a)&&(l=(15&c)<<12|(63&i)<<6|63&a)>2047&&(l<55296||l>57343)&&(u=l);break;case 4:i=e[o+1],a=e[o+2],s=e[o+3],128==(192&i)&&128==(192&a)&&128==(192&s)&&(l=(15&c)<<18|(63&i)<<12|(63&a)<<6|63&s)>65535&&l<1114112&&(u=l)}null===u?(u=65533,p=1):u>65535&&(u-=65536,r.push(u>>>10&1023|55296),u=56320|1023&u),r.push(u),o+=p}return function(e){var t=e.length;if(t<=4096)return String.fromCharCode.apply(String,e);var n="",r=0;for(;r0&&(e=this.toString("hex",0,n).match(/.{2}/g).join(" "),this.length>n&&(e+=" ... ")),""},l.prototype.compare=function(e,t,n,r,o){if(!l.isBuffer(e))throw new TypeError("Argument must be a Buffer");if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===o&&(o=this.length),t<0||n>e.length||r<0||o>this.length)throw new RangeError("out of range index");if(r>=o&&t>=n)return 0;if(r>=o)return-1;if(t>=n)return 1;if(this===e)return 0;for(var i=(o>>>=0)-(r>>>=0),a=(n>>>=0)-(t>>>=0),s=Math.min(i,a),c=this.slice(r,o),u=e.slice(t,n),p=0;po)&&(n=o),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");r||(r="utf8");for(var i=!1;;)switch(r){case"hex":return b(this,e,t,n);case"utf8":case"utf-8":return x(this,e,t,n);case"ascii":return w(this,e,t,n);case"latin1":case"binary":return k(this,e,t,n);case"base64":return O(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return E(this,e,t,n);default:if(i)throw new TypeError("Unknown encoding: "+r);r=(""+r).toLowerCase(),i=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function T(e,t,n){var r="";n=Math.min(e.length,n);for(var o=t;or)&&(n=r);for(var o="",i=t;in)throw new RangeError("Trying to access beyond buffer length")}function P(e,t,n,r,o,i){if(!l.isBuffer(e))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>o||te.length)throw new RangeError("Index out of range")}function R(e,t,n,r){t<0&&(t=65535+t+1);for(var o=0,i=Math.min(e.length-n,2);o>>8*(r?o:1-o)}function N(e,t,n,r){t<0&&(t=4294967295+t+1);for(var o=0,i=Math.min(e.length-n,4);o>>8*(r?o:3-o)&255}function L(e,t,n,r,o,i){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function M(e,t,n,r,i){return i||L(e,0,n,4),o.write(e,t,n,r,23,4),n+4}function D(e,t,n,r,i){return i||L(e,0,n,8),o.write(e,t,n,r,52,8),n+8}l.prototype.slice=function(e,t){var n,r=this.length;if((e=~~e)<0?(e+=r)<0&&(e=0):e>r&&(e=r),(t=void 0===t?r:~~t)<0?(t+=r)<0&&(t=0):t>r&&(t=r),t0&&(o*=256);)r+=this[e+--t]*o;return r},l.prototype.readUInt8=function(e,t){return t||I(e,1,this.length),this[e]},l.prototype.readUInt16LE=function(e,t){return t||I(e,2,this.length),this[e]|this[e+1]<<8},l.prototype.readUInt16BE=function(e,t){return t||I(e,2,this.length),this[e]<<8|this[e+1]},l.prototype.readUInt32LE=function(e,t){return t||I(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},l.prototype.readUInt32BE=function(e,t){return t||I(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},l.prototype.readIntLE=function(e,t,n){e|=0,t|=0,n||I(e,t,this.length);for(var r=this[e],o=1,i=0;++i=(o*=128)&&(r-=Math.pow(2,8*t)),r},l.prototype.readIntBE=function(e,t,n){e|=0,t|=0,n||I(e,t,this.length);for(var r=t,o=1,i=this[e+--r];r>0&&(o*=256);)i+=this[e+--r]*o;return i>=(o*=128)&&(i-=Math.pow(2,8*t)),i},l.prototype.readInt8=function(e,t){return t||I(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},l.prototype.readInt16LE=function(e,t){t||I(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt16BE=function(e,t){t||I(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt32LE=function(e,t){return t||I(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},l.prototype.readInt32BE=function(e,t){return t||I(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},l.prototype.readFloatLE=function(e,t){return t||I(e,4,this.length),o.read(this,e,!0,23,4)},l.prototype.readFloatBE=function(e,t){return t||I(e,4,this.length),o.read(this,e,!1,23,4)},l.prototype.readDoubleLE=function(e,t){return t||I(e,8,this.length),o.read(this,e,!0,52,8)},l.prototype.readDoubleBE=function(e,t){return t||I(e,8,this.length),o.read(this,e,!1,52,8)},l.prototype.writeUIntLE=function(e,t,n,r){(e=+e,t|=0,n|=0,r)||P(this,e,t,n,Math.pow(2,8*n)-1,0);var o=1,i=0;for(this[t]=255&e;++i=0&&(i*=256);)this[t+o]=e/i&255;return t+n},l.prototype.writeUInt8=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,1,255,0),l.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),this[t]=255&e,t+1},l.prototype.writeUInt16LE=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):R(this,e,t,!0),t+2},l.prototype.writeUInt16BE=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,2,65535,0),l.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):R(this,e,t,!1),t+2},l.prototype.writeUInt32LE=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e):N(this,e,t,!0),t+4},l.prototype.writeUInt32BE=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,4,4294967295,0),l.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):N(this,e,t,!1),t+4},l.prototype.writeIntLE=function(e,t,n,r){if(e=+e,t|=0,!r){var o=Math.pow(2,8*n-1);P(this,e,t,n,o-1,-o)}var i=0,a=1,s=0;for(this[t]=255&e;++i>0)-s&255;return t+n},l.prototype.writeIntBE=function(e,t,n,r){if(e=+e,t|=0,!r){var o=Math.pow(2,8*n-1);P(this,e,t,n,o-1,-o)}var i=n-1,a=1,s=0;for(this[t+i]=255&e;--i>=0&&(a*=256);)e<0&&0===s&&0!==this[t+i+1]&&(s=1),this[t+i]=(e/a>>0)-s&255;return t+n},l.prototype.writeInt8=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,1,127,-128),l.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),e<0&&(e=255+e+1),this[t]=255&e,t+1},l.prototype.writeInt16LE=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):R(this,e,t,!0),t+2},l.prototype.writeInt16BE=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,2,32767,-32768),l.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):R(this,e,t,!1),t+2},l.prototype.writeInt32LE=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,4,2147483647,-2147483648),l.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24):N(this,e,t,!0),t+4},l.prototype.writeInt32BE=function(e,t,n){return e=+e,t|=0,n||P(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),l.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):N(this,e,t,!1),t+4},l.prototype.writeFloatLE=function(e,t,n){return M(this,e,t,!0,n)},l.prototype.writeFloatBE=function(e,t,n){return M(this,e,t,!1,n)},l.prototype.writeDoubleLE=function(e,t,n){return D(this,e,t,!0,n)},l.prototype.writeDoubleBE=function(e,t,n){return D(this,e,t,!1,n)},l.prototype.copy=function(e,t,n,r){if(n||(n=0),r||0===r||(r=this.length),t>=e.length&&(t=e.length),t||(t=0),r>0&&r=this.length)throw new RangeError("sourceStart out of bounds");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),e.length-t=0;--o)e[o+t]=this[o+n];else if(i<1e3||!l.TYPED_ARRAY_SUPPORT)for(o=0;o>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(i=t;i55295&&n<57344){if(!o){if(n>56319){(t-=3)>-1&&i.push(239,191,189);continue}if(a+1===r){(t-=3)>-1&&i.push(239,191,189);continue}o=n;continue}if(n<56320){(t-=3)>-1&&i.push(239,191,189),o=n;continue}n=65536+(o-55296<<10|n-56320)}else o&&(t-=3)>-1&&i.push(239,191,189);if(o=null,n<128){if((t-=1)<0)break;i.push(n)}else if(n<2048){if((t-=2)<0)break;i.push(n>>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;i.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;i.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return i}function B(e){return r.toByteArray(function(e){if((e=function(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")}(e).replace(F,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function $(e,t,n,r){for(var o=0;o=t.length||o>=e.length);++o)t[o+n]=e[o];return o}}).call(this,n(6))},function(e,t,n){"use strict";n.d(t,"a",(function(){return g})),n.d(t,"b",(function(){return a})),n.d(t,"c",(function(){return h}));var r=n(2),o=n(0);if(!o.useState)throw new Error("mobx-react-lite requires React with Hooks support");if(!r.o)throw new Error("mobx-react-lite requires mobx at least version 4 to be available");var i=!1;function a(){return i} -/*! ***************************************************************************** -Copyright (c) Microsoft Corporation. All rights reserved. -Licensed under the Apache License, Version 2.0 (the "License"); you may not use -this file except in compliance with the License. You may obtain a copy of the -License at http://www.apache.org/licenses/LICENSE-2.0 - -THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED -WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, -MERCHANTABLITY OR NON-INFRINGEMENT. - -See the Apache Version 2.0 License for specific language governing permissions -and limitations under the License. -***************************************************************************** */var s=function(){return(s=Object.assign||function(e){for(var t,n=1,r=arguments.length;n0)&&!(r=i.next()).done;)a.push(r.value)}catch(e){o={error:e}}finally{try{r&&!r.done&&(n=i.return)&&n.call(i)}finally{if(o)throw o.error}}return a}function c(e){return e.current?Object(r.h)(e.current):""}var u=[];function p(){var e=l(Object(o.useState)(0),2)[1];return Object(o.useCallback)((function(){e((function(e){return e+1}))}),[])}var f={};function d(e,t,n){if(void 0===t&&(t="observed"),void 0===n&&(n=f),a())return e();var i=(n.useForceUpdate||p)(),s=Object(o.useRef)(null);s.current||(s.current=new r.b("observer("+t+")",(function(){i()})));var l,d,h=function(){s.current&&!s.current.isDisposed&&(s.current.dispose(),s.current=null)};if(Object(o.useDebugValue)(s,c),function(e){Object(o.useEffect)((function(){return e}),u)}((function(){h()})),s.current.track((function(){try{l=e()}catch(e){d=e}})),d)throw h(),d;return l}function h(e,t){if(a())return e;var n,r,i,l=s({forwardRef:!1},t),c=e.displayName||e.name,u=function(t,n){return d((function(){return e(t,n)}),c)};return u.displayName=c,n=l.forwardRef?Object(o.memo)(Object(o.forwardRef)(u)):Object(o.memo)(u),r=e,i=n,Object.keys(r).forEach((function(e){r.hasOwnProperty(e)&&!m[e]&&Object.defineProperty(i,e,Object.getOwnPropertyDescriptor(r,e))})),n.displayName=c,n}var m={$$typeof:!0,render:!0,compare:!0,type:!0};function g(e){var t=e.children,n=e.render,r=t||n;return"function"!=typeof r?null:d(r)}function y(e,t,n,r,o){var i="children"===t?"render":"children",a="function"==typeof e[t],s="function"==typeof e[i];return a&&s?new Error("MobX Observer: Do not use children and render in the same time in`"+n):a||s?null:new Error("Invalid prop `"+o+"` of type `"+typeof e[t]+"` supplied to `"+n+"`, expected `function`.")}g.propTypes={children:y,render:y},g.displayName="Observer"},function(e,t,n){var r=n(18),o=n(102),i=n(20),a=n(54),s=Object.defineProperty;t.f=r?s:function(e,t,n){if(i(e),t=a(t,!0),i(n),o)try{return s(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(e[t]=n.value),e}},function(e,t,n){var r=n(4),o=n(34).f,i=n(24),a=n(25),s=n(71),l=n(106),c=n(82);e.exports=function(e,t){var n,u,p,f,d,h=e.target,m=e.global,g=e.stat;if(n=m?r:g?r[h]||s(h,{}):(r[h]||{}).prototype)for(u in t){if(f=t[u],p=e.noTargetGet?(d=o(n,u))&&d.value:n[u],!c(m?u:h+(g?".":"#")+u,e.forced)&&void 0!==p){if(typeof f==typeof p)continue;l(f,p)}(e.sham||p&&p.sham)&&i(f,"sham",!0),a(n,u,f,e)}}},function(e,t,n){var r=n(8);e.exports=!r((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},function(e,t,n){e.exports=n(230)()},function(e,t,n){var r=n(9);e.exports=function(e){if(!r(e))throw TypeError(String(e)+" is not an object");return e}},function(e,t,n){var r; -/*! - Copyright (c) 2017 Jed Watson. - Licensed under the MIT License (MIT), see - http://jedwatson.github.io/classnames -*/!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t=0?e.substr(t).toLowerCase():""},t.getHash=function(e){var t=e.indexOf("#");return t>=0?e.substr(t):"#"},t.stripHash=function(e){var t=e.indexOf("#");return t>=0&&(e=e.substr(0,t)),e},t.isHttp=function(e){var t=s.getProtocol(e);return"http"===t||"https"===t||void 0===t&&r.browser},t.isFileSystemPath=function(e){if(r.browser)return!1;var t=s.getProtocol(e);return void 0===t||"file"===t},t.fromFileSystemPath=function(e){o&&(e=e.replace(/\\/g,"/")),e=encodeURI(e);for(var t=0;t2?r:e).apply(void 0,o)}}e.memoize=a,e.debounce=s,e.bind=l,e.default={memoize:a,debounce:s,bind:l}})?r.apply(t,o):r)||(e.exports=i)},function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},function(e,t,n){var r=n(36),o=n(4),i=function(e){return"function"==typeof e?e:void 0};e.exports=function(e,t){return arguments.length<2?i(r[e])||i(o[e]):r[e]&&r[e][t]||o[e]&&o[e][t]}},function(e,t,n){var r=n(16).f,o=n(11),i=n(5)("toStringTag");e.exports=function(e,t,n){e&&!o(e=n?e:e.prototype,i)&&r(e,i,{configurable:!0,value:t})}},function(e,t,n){"use strict";var r=n(265),o=Array.prototype.slice,i=["name","message","stack"],a=["name","message","description","number","code","fileName","lineNumber","columnNumber","sourceURL","line","column","stack"];function s(t){return function(n,r,i,a){var s=[],p="";"string"==typeof n?(s=o.call(arguments),n=r=void 0):"string"==typeof r?(s=o.call(arguments,1),r=void 0):"string"==typeof i&&(s=o.call(arguments,2)),s.length>0&&(p=e.exports.formatter.apply(null,s)),n&&n.message&&(p+=(p?" \n":"")+n.message);var f=new t(p);return l(f,n),c(f),u(f,r),f}}function l(e,t){!function(e,t){!function(e){if(!m)return!1;var t=Object.getOwnPropertyDescriptor(e,"stack");if(!t)return!1;return"function"==typeof t.get}(e)?e.stack=t?d(e.stack,t.stack):h(e.stack):t?function(e,t){var n=Object.getOwnPropertyDescriptor(e,"stack");Object.defineProperty(e,"stack",{get:function(){return d(n.get.apply(e),t.stack)},enumerable:!1,configurable:!0})}(e,t):(n=e,r=Object.getOwnPropertyDescriptor(n,"stack"),Object.defineProperty(n,"stack",{get:function(){return h(r.get.apply(n))},enumerable:!1,configurable:!0}));var n,r}(e,t),u(e,t)}function c(e){e.toJSON=p,e.inspect=f}function u(e,t){if(t&&"object"==typeof t)for(var n=Object.keys(t),r=0;r=0))try{e[o]=t[o]}catch(e){}}}function p(){var e={},t=Object.keys(this);t=t.concat(a);for(var n=0;n=0)return t.splice(n,1),t.join("\n")}return e}}e.exports=s(Error),e.exports.error=s(Error),e.exports.eval=s(EvalError),e.exports.range=s(RangeError),e.exports.reference=s(ReferenceError),e.exports.syntax=s(SyntaxError),e.exports.type=s(TypeError),e.exports.uri=s(URIError),e.exports.formatter=r;var m=!(!Object.getOwnPropertyDescriptor||!Object.defineProperty||"undefined"!=typeof navigator&&/Android/.test(navigator.userAgent))},function(e,t){"function"==typeof Object.create?e.exports=function(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:e.exports=function(e,t){if(t){e.super_=t;var n=function(){};n.prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e}}},function(e,t,n){var r,o,i,a=n(165),s=n(4),l=n(9),c=n(24),u=n(11),p=n(56),f=n(43),d=s.WeakMap;if(a){var h=new d,m=h.get,g=h.has,y=h.set;r=function(e,t){return y.call(h,e,t),t},o=function(e){return m.call(h,e)||{}},i=function(e){return g.call(h,e)}}else{var v=p("state");f[v]=!0,r=function(e,t){return c(e,v,t),t},o=function(e){return u(e,v)?e[v]:{}},i=function(e){return u(e,v)}}e.exports={set:r,get:o,has:i,enforce:function(e){return i(e)?o(e):r(e,{})},getterFor:function(e){return function(t){var n;if(!l(t)||(n=o(t)).type!==e)throw TypeError("Incompatible receiver, "+e+" required");return n}}}},function(e,t,n){var r=n(18),o=n(77),i=n(42),a=n(35),s=n(54),l=n(11),c=n(102),u=Object.getOwnPropertyDescriptor;t.f=r?u:function(e,t){if(e=a(e),t=s(t,!0),c)try{return u(e,t)}catch(e){}if(l(e,t))return i(!o.f.call(e,t),e[t])}},function(e,t,n){var r=n(78),o=n(44);e.exports=function(e){return r(o(e))}},function(e,t,n){var r=n(4);e.exports=r},function(e,t,n){var r=n(75),o=Math.min;e.exports=function(e){return e>0?o(r(e),9007199254740991):0}},function(e,t,n){"use strict";var r=n(49),o=n(59),i=n(7);function a(e,t,n){var r=[];return e.include.forEach((function(e){n=a(e,t,n)})),e[t].forEach((function(e){n.forEach((function(t,n){t.tag===e.tag&&t.kind===e.kind&&r.push(n)})),n.push(e)})),n.filter((function(e,t){return-1===r.indexOf(t)}))}function s(e){this.include=e.include||[],this.implicit=e.implicit||[],this.explicit=e.explicit||[],this.implicit.forEach((function(e){if(e.loadKind&&"scalar"!==e.loadKind)throw new o("There is a non-scalar type in the implicit list of a schema. Implicit resolving of such types is not supported.")})),this.compiledImplicit=a(this,"implicit",[]),this.compiledExplicit=a(this,"explicit",[]),this.compiledTypeMap=function(){var e,t,n={scalar:{},sequence:{},mapping:{},fallback:{}};function r(e){n[e.kind][e.tag]=n.fallback[e.tag]=e}for(e=0,t=arguments.length;ee.length)return;if(!(w instanceof o)){if(m&&b!=t.length-1){if(f.lastIndex=x,!(T=f.exec(e)))break;for(var k=T.index+(h&&T[1]?T[1].length:0),O=T.index+T[0].length,E=b,_=x,S=t.length;E=(_+=t[E].length)&&(++b,x=_);if(t[b]instanceof o)continue;j=E-b,w=e.slice(x,_),T.index-=x}else{f.lastIndex=0;var T=f.exec(w),j=1}if(T){h&&(g=T[1]?T[1].length:0);O=(k=T.index+g)+(T=T[0].slice(g)).length;var C=w.slice(0,k),A=w.slice(O),I=[b,j];C&&(++b,x+=C.length,I.push(C));var P=new o(c,d?r.tokenize(T,d):T,y,T,m);if(I.push(P),A&&I.push(A),Array.prototype.splice.apply(t,I),1!=j&&r.matchGrammar(e,t,n,b,x,!0,c+","+p),s)break}else if(s)break}}}}},tokenize:function(e,t){var n=[e],o=t.rest;if(o){for(var i in o)t[i]=o[i];delete t.rest}return r.matchGrammar(e,n,t,0,0,!1),n},hooks:{all:{},add:function(e,t){var n=r.hooks.all;n[e]=n[e]||[],n[e].push(t)},run:function(e,t){var n=r.hooks.all[e];if(n&&n.length)for(var o,i=0;o=n[i++];)o(t)}},Token:o};function o(e,t,n,r,o){this.type=e,this.content=t,this.alias=n,this.length=0|(r||"").length,this.greedy=!!o}if(e.Prism=r,o.stringify=function(e,t){if("string"==typeof e)return e;if(Array.isArray(e))return e.map((function(e){return o.stringify(e,t)})).join("");var n={type:e.type,content:o.stringify(e.content,t),tag:"span",classes:["token",e.type],attributes:{},language:t};if(e.alias){var i=Array.isArray(e.alias)?e.alias:[e.alias];Array.prototype.push.apply(n.classes,i)}r.hooks.run("wrap",n);var a=Object.keys(n.attributes).map((function(e){return e+'="'+(n.attributes[e]||"").replace(/"/g,""")+'"'})).join(" ");return"<"+n.tag+' class="'+n.classes.join(" ")+'"'+(a?" "+a:"")+">"+n.content+""},!e.document)return e.addEventListener?(r.disableWorkerMessageHandler||e.addEventListener("message",(function(t){var n=JSON.parse(t.data),o=n.language,i=n.code,a=n.immediateClose;e.postMessage(r.highlight(i,r.languages[o],o)),a&&e.close()}),!1),r):r;var i=r.util.currentScript();if(i&&(r.filename=i.src,i.hasAttribute("data-manual")&&(r.manual=!0)),!r.manual){function a(){r.manual||r.highlightAll()}var s=document.readyState;"loading"===s||"interactive"===s&&i&&i.defer?document.addEventListener("DOMContentLoaded",a):window.requestAnimationFrame?window.requestAnimationFrame(a):window.setTimeout(a,16)}return r}("undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{});e.exports&&(e.exports=n),void 0!==t&&(t.Prism=n),n.languages.markup={comment://,prolog:/<\?[\s\S]+?\?>/,doctype:{pattern:/"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:(?!)*\]\s*)?>/i,greedy:!0},cdata://i,tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/i,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/i,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"attr-value":{pattern:/=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/i,inside:{punctuation:[/^=/,{pattern:/^(\s*)["']|["']$/,lookbehind:!0}]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:/&#?[\da-z]{1,8};/i},n.languages.markup.tag.inside["attr-value"].inside.entity=n.languages.markup.entity,n.hooks.add("wrap",(function(e){"entity"===e.type&&(e.attributes.title=e.content.replace(/&/,"&"))})),Object.defineProperty(n.languages.markup.tag,"addInlined",{value:function(e,t){var r={};r["language-"+t]={pattern:/(^$)/i,lookbehind:!0,inside:n.languages[t]},r.cdata=/^$/i;var o={"included-cdata":{pattern://i,inside:r}};o["language-"+t]={pattern:/[\s\S]+/,inside:n.languages[t]};var i={};i[e]={pattern:RegExp(/(<__[\s\S]*?>)(?:\s*|[\s\S])*?(?=<\/__>)/.source.replace(/__/g,e),"i"),lookbehind:!0,greedy:!0,inside:o},n.languages.insertBefore("markup","cdata",i)}}),n.languages.xml=n.languages.extend("markup",{}),n.languages.html=n.languages.markup,n.languages.mathml=n.languages.markup,n.languages.svg=n.languages.markup,function(e){var t=/("|')(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/;e.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:/@[\w-]+[\s\S]*?(?:;|(?=\s*\{))/,inside:{rule:/@[\w-]+/}},url:{pattern:RegExp("url\\((?:"+t.source+"|[^\n\r()]*)\\)","i"),inside:{function:/^url/i,punctuation:/^\(|\)$/}},selector:RegExp("[^{}\\s](?:[^{};\"']|"+t.source+")*?(?=\\s*\\{)"),string:{pattern:t,greedy:!0},property:/[-_a-z\xA0-\uFFFF][-\w\xA0-\uFFFF]*(?=\s*:)/i,important:/!important\b/i,function:/[-a-z0-9]+(?=\()/i,punctuation:/[(){};:,]/},e.languages.css.atrule.inside.rest=e.languages.css;var n=e.languages.markup;n&&(n.tag.addInlined("style","css"),e.languages.insertBefore("inside","attr-value",{"style-attr":{pattern:/\s*style=("|')(?:\\[\s\S]|(?!\1)[^\\])*\1/i,inside:{"attr-name":{pattern:/^\s*style/i,inside:n.tag.inside},punctuation:/^\s*=\s*['"]|['"]\s*$/,"attr-value":{pattern:/.+/i,inside:e.languages.css}},alias:"language-css"}},n.tag))}(n),n.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/(\b(?:class|interface|extends|implements|trait|instanceof|new)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,boolean:/\b(?:true|false)\b/,function:/\w+(?=\()/,number:/\b0x[\da-f]+\b|(?:\b\d+\.?\d*|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,punctuation:/[{}[\];(),.:]/},n.languages.javascript=n.languages.extend("clike",{"class-name":[n.languages.clike["class-name"],{pattern:/(^|[^$\w\xA0-\uFFFF])[_$A-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\.(?:prototype|constructor))/,lookbehind:!0}],keyword:[{pattern:/((?:^|})\s*)(?:catch|finally)\b/,lookbehind:!0},{pattern:/(^|[^.]|\.\.\.\s*)\b(?:as|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,lookbehind:!0}],number:/\b(?:(?:0[xX](?:[\dA-Fa-f](?:_[\dA-Fa-f])?)+|0[bB](?:[01](?:_[01])?)+|0[oO](?:[0-7](?:_[0-7])?)+)n?|(?:\d(?:_\d)?)+n|NaN|Infinity)\b|(?:\b(?:\d(?:_\d)?)+\.?(?:\d(?:_\d)?)*|\B\.(?:\d(?:_\d)?)+)(?:[Ee][+-]?(?:\d(?:_\d)?)+)?/,function:/#?[_$a-zA-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,operator:/--|\+\+|\*\*=?|=>|&&|\|\||[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?[.?]?|[~:]/}),n.languages.javascript["class-name"][0].pattern=/(\b(?:class|interface|extends|implements|instanceof|new)\s+)[\w.\\]+/,n.languages.insertBefore("javascript","keyword",{regex:{pattern:/((?:^|[^$\w\xA0-\uFFFF."'\])\s])\s*)\/(?:\[(?:[^\]\\\r\n]|\\.)*]|\\.|[^/\\\[\r\n])+\/[gimyus]{0,6}(?=(?:\s|\/\*[\s\S]*?\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/,lookbehind:!0,greedy:!0},"function-variable":{pattern:/#?[_$a-zA-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|[_$a-zA-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*)\s*=>))/,alias:"function"},parameter:[{pattern:/(function(?:\s+[_$A-Za-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*)?\s*\(\s*)(?!\s)(?:[^()]|\([^()]*\))+?(?=\s*\))/,lookbehind:!0,inside:n.languages.javascript},{pattern:/[_$a-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*=>)/i,inside:n.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()]|\([^()]*\))+?(?=\s*\)\s*=>)/,lookbehind:!0,inside:n.languages.javascript},{pattern:/((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:[_$A-Za-z\xA0-\uFFFF][$\w\xA0-\uFFFF]*\s*)\(\s*)(?!\s)(?:[^()]|\([^()]*\))+?(?=\s*\)\s*\{)/,lookbehind:!0,inside:n.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),n.languages.insertBefore("javascript","string",{"template-string":{pattern:/`(?:\\[\s\S]|\${(?:[^{}]|{(?:[^{}]|{[^}]*})*})+}|(?!\${)[^\\`])*`/,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\${(?:[^{}]|{(?:[^{}]|{[^}]*})*})+}/,lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\${|}$/,alias:"punctuation"},rest:n.languages.javascript}},string:/[\s\S]+/}}}),n.languages.markup&&n.languages.markup.tag.addInlined("script","javascript"),n.languages.js=n.languages.javascript,"undefined"!=typeof self&&self.Prism&&self.document&&document.querySelector&&(self.Prism.fileHighlight=function(e){e=e||document;var t={js:"javascript",py:"python",rb:"ruby",ps1:"powershell",psm1:"powershell",sh:"bash",bat:"batch",h:"c",tex:"latex"};Array.prototype.slice.call(e.querySelectorAll("pre[data-src]")).forEach((function(e){if(!e.hasAttribute("data-src-loaded")){for(var r,o=e.getAttribute("data-src"),i=e,a=/\blang(?:uage)?-([\w-]+)\b/i;i&&!a.test(i.className);)i=i.parentNode;if(i&&(r=(e.className.match(a)||[,""])[1]),!r){var s=(o.match(/\.(\w+)$/)||[,""])[1];r=t[s]||s}var l=document.createElement("code");l.className="language-"+r,e.textContent="",l.textContent="Loading…",e.appendChild(l);var c=new XMLHttpRequest;c.open("GET",o,!0),c.onreadystatechange=function(){4==c.readyState&&(c.status<400&&c.responseText?(l.textContent=c.responseText,n.highlightElement(l),e.setAttribute("data-src-loaded","")):c.status>=400?l.textContent="✖ Error "+c.status+" while fetching file: "+c.statusText:l.textContent="✖ Error: File does not exist or is empty")},c.send(null)}}))},document.addEventListener("DOMContentLoaded",(function(){self.Prism.fileHighlight()})))}).call(this,n(6))},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t){e.exports={}},function(e,t){e.exports=function(e){if(null==e)throw TypeError("Can't call method on "+e);return e}},function(e,t,n){var r=n(44);e.exports=function(e){return Object(r(e))}},function(e,t){e.exports={}},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(String(e)+" is not a function");return e}},function(e,t,n){var r=n(47);e.exports=function(e,t,n){if(r(e),void 0===t)return e;switch(n){case 0:return function(){return e.call(t)};case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,o){return e.call(t,n,r,o)}}return function(){return e.apply(t,arguments)}}},function(e,t,n){"use strict";function r(e){return null==e}e.exports.isNothing=r,e.exports.isObject=function(e){return"object"==typeof e&&null!==e},e.exports.toArray=function(e){return Array.isArray(e)?e:r(e)?[]:[e]},e.exports.repeat=function(e,t){var n,r="";for(n=0;n=0;r--){var o=e[r];"."===o?e.splice(r,1):".."===o?(e.splice(r,1),n++):n&&(e.splice(r,1),n--)}if(t)for(;n--;n)e.unshift("..");return e}function r(e,t){if(e.filter)return e.filter(t);for(var n=[],r=0;r=-1&&!o;i--){var a=i>=0?arguments[i]:e.cwd();if("string"!=typeof a)throw new TypeError("Arguments to path.resolve must be strings");a&&(t=a+"/"+t,o="/"===a.charAt(0))}return(o?"/":"")+(t=n(r(t.split("/"),(function(e){return!!e})),!o).join("/"))||"."},t.normalize=function(e){var i=t.isAbsolute(e),a="/"===o(e,-1);return(e=n(r(e.split("/"),(function(e){return!!e})),!i).join("/"))||i||(e="."),e&&a&&(e+="/"),(i?"/":"")+e},t.isAbsolute=function(e){return"/"===e.charAt(0)},t.join=function(){var e=Array.prototype.slice.call(arguments,0);return t.normalize(r(e,(function(e,t){if("string"!=typeof e)throw new TypeError("Arguments to path.join must be strings");return e})).join("/"))},t.relative=function(e,n){function r(e){for(var t=0;t=0&&""===e[n];n--);return t>n?[]:e.slice(t,n-t+1)}e=t.resolve(e).substr(1),n=t.resolve(n).substr(1);for(var o=r(e.split("/")),i=r(n.split("/")),a=Math.min(o.length,i.length),s=a,l=0;l=1;--i)if(47===(t=e.charCodeAt(i))){if(!o){r=i;break}}else o=!1;return-1===r?n?"/":".":n&&1===r?"/":e.slice(0,r)},t.basename=function(e,t){var n=function(e){"string"!=typeof e&&(e+="");var t,n=0,r=-1,o=!0;for(t=e.length-1;t>=0;--t)if(47===e.charCodeAt(t)){if(!o){n=t+1;break}}else-1===r&&(o=!1,r=t+1);return-1===r?"":e.slice(n,r)}(e);return t&&n.substr(-1*t.length)===t&&(n=n.substr(0,n.length-t.length)),n},t.extname=function(e){"string"!=typeof e&&(e+="");for(var t=-1,n=0,r=-1,o=!0,i=0,a=e.length-1;a>=0;--a){var s=e.charCodeAt(a);if(47!==s)-1===r&&(o=!1,r=a+1),46===s?-1===t?t=a:1!==i&&(i=1):-1!==t&&(i=-1);else if(!o){n=a+1;break}}return-1===t||-1===r||0===i||1===i&&t===r-1&&t===n+1?"":e.slice(t,r)};var o="b"==="ab".substr(-1)?function(e,t,n){return e.substr(t,n)}:function(e,t,n){return t<0&&(t=e.length+t),e.substr(t,n)}}).call(this,n(13))},function(e,t,n){(function(t){!function(t){"use strict";var n={newline:/^\n+/,code:/^( {4}[^\n]+\n*)+/,fences:/^ {0,3}(`{3,}|~{3,})([^`~\n]*)\n(?:|([\s\S]*?)\n)(?: {0,3}\1[~`]* *(?:\n+|$)|$)/,hr:/^ {0,3}((?:- *){3,}|(?:_ *){3,}|(?:\* *){3,})(?:\n+|$)/,heading:/^ {0,3}(#{1,6}) +([^\n]*?)(?: +#+)? *(?:\n+|$)/,blockquote:/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/,list:/^( {0,3})(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,html:"^ {0,3}(?:<(script|pre|style)[\\s>][\\s\\S]*?(?:[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?\\?>\\n*|\\n*|\\n*|)[\\s\\S]*?(?:\\n{2,}|$)|<(?!script|pre|style)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:\\n{2,}|$)|(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:\\n{2,}|$))",def:/^ {0,3}\[(label)\]: *\n? *]+)>?(?:(?: +\n? *| *\n *)(title))? *(?:\n+|$)/,nptable:g,table:g,lheading:/^([^\n]+)\n {0,3}(=+|-+) *(?:\n+|$)/,_paragraph:/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html)[^\n]+)*)/,text:/^[^\n]+/};function r(e){this.tokens=[],this.tokens.links=Object.create(null),this.options=e||k.defaults,this.rules=n.normal,this.options.pedantic?this.rules=n.pedantic:this.options.gfm&&(this.rules=n.gfm)}n._label=/(?!\s*\])(?:\\[\[\]]|[^\[\]])+/,n._title=/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/,n.def=f(n.def).replace("label",n._label).replace("title",n._title).getRegex(),n.bullet=/(?:[*+-]|\d{1,9}\.)/,n.item=/^( *)(bull) ?[^\n]*(?:\n(?!\1bull ?)[^\n]*)*/,n.item=f(n.item,"gm").replace(/bull/g,n.bullet).getRegex(),n.list=f(n.list).replace(/bull/g,n.bullet).replace("hr","\\n+(?=\\1?(?:(?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$))").replace("def","\\n+(?="+n.def.source+")").getRegex(),n._tag="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|section|source|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul",n._comment=//,n.html=f(n.html,"i").replace("comment",n._comment).replace("tag",n._tag).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex(),n.paragraph=f(n._paragraph).replace("hr",n.hr).replace("heading"," {0,3}#{1,6} +").replace("|lheading","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}|~{3,})[^`\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|!--)").replace("tag",n._tag).getRegex(),n.blockquote=f(n.blockquote).replace("paragraph",n.paragraph).getRegex(),n.normal=y({},n),n.gfm=y({},n.normal,{nptable:/^ *([^|\n ].*\|.*)\n *([-:]+ *\|[-| :]*)(?:\n((?:.*[^>\n ].*(?:\n|$))*)\n*|$)/,table:/^ *\|(.+)\n *\|?( *[-:]+[-| :]*)(?:\n((?: *[^>\n ].*(?:\n|$))*)\n*|$)/}),n.pedantic=y({},n.normal,{html:f("^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+? *(?:\\n{2,}|\\s*$)|\\s]*)*?/?> *(?:\\n{2,}|\\s*$))").replace("comment",n._comment).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^ *(#{1,6}) *([^\n]+?) *(?:#+ *)?(?:\n+|$)/,fences:g,paragraph:f(n.normal._paragraph).replace("hr",n.hr).replace("heading"," *#{1,6} *[^\n]").replace("lheading",n.lheading).replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").getRegex()}),r.rules=n,r.lex=function(e,t){return new r(t).lex(e)},r.prototype.lex=function(e){return e=e.replace(/\r\n|\r/g,"\n").replace(/\t/g," ").replace(/\u00a0/g," ").replace(/\u2424/g,"\n"),this.token(e,!0)},r.prototype.token=function(e,t){var r,o,i,a,s,l,c,p,f,d,h,m,g,y,x,w;for(e=e.replace(/^ +$/gm,"");e;)if((i=this.rules.newline.exec(e))&&(e=e.substring(i[0].length),i[0].length>1&&this.tokens.push({type:"space"})),i=this.rules.code.exec(e)){var k=this.tokens[this.tokens.length-1];e=e.substring(i[0].length),k&&"paragraph"===k.type?k.text+="\n"+i[0].trimRight():(i=i[0].replace(/^ {4}/gm,""),this.tokens.push({type:"code",codeBlockStyle:"indented",text:this.options.pedantic?i:b(i,"\n")}))}else if(i=this.rules.fences.exec(e))e=e.substring(i[0].length),this.tokens.push({type:"code",lang:i[2]?i[2].trim():i[2],text:i[3]||""});else if(i=this.rules.heading.exec(e))e=e.substring(i[0].length),this.tokens.push({type:"heading",depth:i[1].length,text:i[2]});else if((i=this.rules.nptable.exec(e))&&(l={type:"table",header:v(i[1].replace(/^ *| *\| *$/g,"")),align:i[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:i[3]?i[3].replace(/\n$/,"").split("\n"):[]}).header.length===l.align.length){for(e=e.substring(i[0].length),h=0;h ?/gm,""),this.token(i,t),this.tokens.push({type:"blockquote_end"});else if(i=this.rules.list.exec(e)){for(e=e.substring(i[0].length),c={type:"list_start",ordered:y=(a=i[2]).length>1,start:y?+a:"",loose:!1},this.tokens.push(c),p=[],r=!1,g=(i=i[0].match(this.rules.item)).length,h=0;h1?1===s.length:s.length>1||this.options.smartLists&&s!==a)&&(e=i.slice(h+1).join("\n")+e,h=g-1)),o=r||/\n\n(?!\s*$)/.test(l),h!==g-1&&(r="\n"===l.charAt(l.length-1),o||(o=r)),o&&(c.loose=!0),w=void 0,(x=/^\[[ xX]\] /.test(l))&&(w=" "!==l[1],l=l.replace(/^\[[ xX]\] +/,"")),f={type:"list_item_start",task:x,checked:w,loose:o},p.push(f),this.tokens.push(f),this.token(l,!1),this.tokens.push({type:"list_item_end"});if(c.loose)for(g=p.length,h=0;h?@\[\]\\^_`{|}~])/,autolink:/^<(scheme:[^\s\x00-\x1f<>]*|email)>/,url:g,tag:"^comment|^|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^|^",link:/^!?\[(label)\]\(\s*(href)(?:\s+(title))?\s*\)/,reflink:/^!?\[(label)\]\[(?!\s*\])((?:\\[\[\]]?|[^\[\]\\])+)\]/,nolink:/^!?\[(?!\s*\])((?:\[[^\[\]]*\]|\\[\[\]]|[^\[\]])*)\](?:\[\])?/,strong:/^__([^\s_])__(?!_)|^\*\*([^\s*])\*\*(?!\*)|^__([^\s][\s\S]*?[^\s])__(?!_)|^\*\*([^\s][\s\S]*?[^\s])\*\*(?!\*)/,em:/^_([^\s_])_(?!_)|^\*([^\s*<\[])\*(?!\*)|^_([^\s<][\s\S]*?[^\s_])_(?!_|[^\spunctuation])|^_([^\s_<][\s\S]*?[^\s])_(?!_|[^\spunctuation])|^\*([^\s<"][\s\S]*?[^\s\*])\*(?!\*|[^\spunctuation])|^\*([^\s*"<\[][\s\S]*?[^\s])\*(?!\*)/,code:/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,br:/^( {2,}|\\)\n(?!\s*$)/,del:g,text:/^(`+|[^`])(?:[\s\S]*?(?:(?=[\\?@\\[^_{|}~",o.em=f(o.em).replace(/punctuation/g,o._punctuation).getRegex(),o._escapes=/\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/g,o._scheme=/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/,o._email=/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/,o.autolink=f(o.autolink).replace("scheme",o._scheme).replace("email",o._email).getRegex(),o._attribute=/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/,o.tag=f(o.tag).replace("comment",n._comment).replace("attribute",o._attribute).getRegex(),o._label=/(?:\[[^\[\]]*\]|\\.|`[^`]*`|[^\[\]\\`])*?/,o._href=/<(?:\\[<>]?|[^\s<>\\])*>|[^\s\x00-\x1f]*/,o._title=/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/,o.link=f(o.link).replace("label",o._label).replace("href",o._href).replace("title",o._title).getRegex(),o.reflink=f(o.reflink).replace("label",o._label).getRegex(),o.normal=y({},o),o.pedantic=y({},o.normal,{strong:/^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,em:/^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/,link:f(/^!?\[(label)\]\((.*?)\)/).replace("label",o._label).getRegex(),reflink:f(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",o._label).getRegex()}),o.gfm=y({},o.normal,{escape:f(o.escape).replace("])","~|])").getRegex(),_extended_email:/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/,url:/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/,_backpedal:/(?:[^?!.,:;*_~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_~)]+(?!$))+/,del:/^~+(?=\S)([\s\S]*?\S)~+/,text:/^(`+|[^`])(?:[\s\S]*?(?:(?=[\\/i.test(a[0])&&(this.inLink=!1),!this.inRawBlock&&/^<(pre|code|kbd|script)(\s|>)/i.test(a[0])?this.inRawBlock=!0:this.inRawBlock&&/^<\/(pre|code|kbd|script)(\s|>)/i.test(a[0])&&(this.inRawBlock=!1),e=e.substring(a[0].length),l+=this.options.sanitize?this.options.sanitizer?this.options.sanitizer(a[0]):u(a[0]):a[0];else if(a=this.rules.link.exec(e)){var c=x(a[2],"()");if(c>-1){var p=4+a[1].length+c;a[2]=a[2].substring(0,c),a[0]=a[0].substring(0,p).trim(),a[3]=""}e=e.substring(a[0].length),this.inLink=!0,r=a[2],this.options.pedantic?(t=/^([^'"]*[^\s])\s+(['"])(.*)\2/.exec(r))?(r=t[1],o=t[3]):o="":o=a[3]?a[3].slice(1,-1):"",r=r.trim().replace(/^<([\s\S]*)>$/,"$1"),l+=this.outputLink(a,{href:i.escapes(r),title:i.escapes(o)}),this.inLink=!1}else if((a=this.rules.reflink.exec(e))||(a=this.rules.nolink.exec(e))){if(e=e.substring(a[0].length),t=(a[2]||a[1]).replace(/\s+/g," "),!(t=this.links[t.toLowerCase()])||!t.href){l+=a[0].charAt(0),e=a[0].substring(1)+e;continue}this.inLink=!0,l+=this.outputLink(a,t),this.inLink=!1}else if(a=this.rules.strong.exec(e))e=e.substring(a[0].length),l+=this.renderer.strong(this.output(a[4]||a[3]||a[2]||a[1]));else if(a=this.rules.em.exec(e))e=e.substring(a[0].length),l+=this.renderer.em(this.output(a[6]||a[5]||a[4]||a[3]||a[2]||a[1]));else if(a=this.rules.code.exec(e))e=e.substring(a[0].length),l+=this.renderer.codespan(u(a[2].trim(),!0));else if(a=this.rules.br.exec(e))e=e.substring(a[0].length),l+=this.renderer.br();else if(a=this.rules.del.exec(e))e=e.substring(a[0].length),l+=this.renderer.del(this.output(a[1]));else if(a=this.rules.autolink.exec(e))e=e.substring(a[0].length),r="@"===a[2]?"mailto:"+(n=u(this.mangle(a[1]))):n=u(a[1]),l+=this.renderer.link(r,null,n);else if(this.inLink||!(a=this.rules.url.exec(e))){if(a=this.rules.text.exec(e))e=e.substring(a[0].length),this.inRawBlock?l+=this.renderer.text(this.options.sanitize?this.options.sanitizer?this.options.sanitizer(a[0]):u(a[0]):a[0]):l+=this.renderer.text(u(this.smartypants(a[0])));else if(e)throw new Error("Infinite loop on byte: "+e.charCodeAt(0))}else{if("@"===a[2])r="mailto:"+(n=u(a[0]));else{do{s=a[0],a[0]=this.rules._backpedal.exec(a[0])[0]}while(s!==a[0]);n=u(a[0]),r="www."===a[1]?"http://"+n:n}e=e.substring(a[0].length),l+=this.renderer.link(r,null,n)}return l},i.escapes=function(e){return e?e.replace(i.rules._escapes,"$1"):e},i.prototype.outputLink=function(e,t){var n=t.href,r=t.title?u(t.title):null;return"!"!==e[0].charAt(0)?this.renderer.link(n,r,this.output(e[1])):this.renderer.image(n,r,u(e[1]))},i.prototype.smartypants=function(e){return this.options.smartypants?e.replace(/---/g,"—").replace(/--/g,"–").replace(/(^|[-\u2014/(\[{"\s])'/g,"$1‘").replace(/'/g,"’").replace(/(^|[-\u2014/(\[{\u2018\s])"/g,"$1“").replace(/"/g,"”").replace(/\.{3}/g,"…"):e},i.prototype.mangle=function(e){if(!this.options.mangle)return e;for(var t,n="",r=e.length,o=0;o.5&&(t="x"+t.toString(16)),n+="&#"+t+";";return n},a.prototype.code=function(e,t,n){var r=(t||"").match(/\S*/)[0];if(this.options.highlight){var o=this.options.highlight(e,r);null!=o&&o!==e&&(n=!0,e=o)}return r?'
'+(n?e:u(e,!0))+"
\n":"
"+(n?e:u(e,!0))+"
"},a.prototype.blockquote=function(e){return"
\n"+e+"
\n"},a.prototype.html=function(e){return e},a.prototype.heading=function(e,t,n,r){return this.options.headerIds?"'+e+"\n":""+e+"\n"},a.prototype.hr=function(){return this.options.xhtml?"
\n":"
\n"},a.prototype.list=function(e,t,n){var r=t?"ol":"ul";return"<"+r+(t&&1!==n?' start="'+n+'"':"")+">\n"+e+"\n"},a.prototype.listitem=function(e){return"
  • "+e+"
  • \n"},a.prototype.checkbox=function(e){return" "},a.prototype.paragraph=function(e){return"

    "+e+"

    \n"},a.prototype.table=function(e,t){return t&&(t=""+t+""),"\n\n"+e+"\n"+t+"
    \n"},a.prototype.tablerow=function(e){return"\n"+e+"\n"},a.prototype.tablecell=function(e,t){var n=t.header?"th":"td";return(t.align?"<"+n+' align="'+t.align+'">':"<"+n+">")+e+"\n"},a.prototype.strong=function(e){return""+e+""},a.prototype.em=function(e){return""+e+""},a.prototype.codespan=function(e){return""+e+""},a.prototype.br=function(){return this.options.xhtml?"
    ":"
    "},a.prototype.del=function(e){return""+e+""},a.prototype.link=function(e,t,n){if(null===(e=d(this.options.sanitize,this.options.baseUrl,e)))return n;var r='"},a.prototype.image=function(e,t,n){if(null===(e=d(this.options.sanitize,this.options.baseUrl,e)))return n;var r=''+n+'":">"},a.prototype.text=function(e){return e},s.prototype.strong=s.prototype.em=s.prototype.codespan=s.prototype.del=s.prototype.text=function(e){return e},s.prototype.link=s.prototype.image=function(e,t,n){return""+n},s.prototype.br=function(){return""},l.parse=function(e,t){return new l(t).parse(e)},l.prototype.parse=function(e){this.inline=new i(e.links,this.options),this.inlineText=new i(e.links,y({},this.options,{renderer:new s})),this.tokens=e.reverse();for(var t="";this.next();)t+=this.tok();return t},l.prototype.next=function(){return this.token=this.tokens.pop(),this.token},l.prototype.peek=function(){return this.tokens[this.tokens.length-1]||0},l.prototype.parseText=function(){for(var e=this.token.text;"text"===this.peek().type;)e+="\n"+this.next().text;return this.inline.output(e)},l.prototype.tok=function(){switch(this.token.type){case"space":return"";case"hr":return this.renderer.hr();case"heading":return this.renderer.heading(this.inline.output(this.token.text),this.token.depth,p(this.inlineText.output(this.token.text)),this.slugger);case"code":return this.renderer.code(this.token.text,this.token.lang,this.token.escaped);case"table":var e,t,n,r,o="",i="";for(n="",e=0;e?@[\]^`{|}~]/g,"").replace(/\s/g,"-");if(this.seen.hasOwnProperty(t)){var n=t;do{this.seen[n]++,t=n+"-"+this.seen[n]}while(this.seen.hasOwnProperty(t))}return this.seen[t]=0,t},u.escapeTest=/[&<>"']/,u.escapeReplace=/[&<>"']/g,u.replacements={"&":"&","<":"<",">":">",'"':""","'":"'"},u.escapeTestNoEncode=/[<>"']|&(?!#?\w+;)/,u.escapeReplaceNoEncode=/[<>"']|&(?!#?\w+;)/g;var h={},m=/^$|^[a-z][a-z0-9+.-]*:|^[?#]/i;function g(){}function y(e){for(var t,n,r=1;r=0&&"\\"===n[o];)r=!r;return r?"|":" |"})).split(/ \|/),r=0;if(n.length>t)n.splice(t);else for(;n.lengthAn error occurred:

    "+u(e.message+"",!0)+"
    ";throw e}}g.exec=g,k.options=k.setOptions=function(e){return y(k.defaults,e),k},k.getDefaults=function(){return{baseUrl:null,breaks:!1,gfm:!0,headerIds:!0,headerPrefix:"",highlight:null,langPrefix:"language-",mangle:!0,pedantic:!1,renderer:new a,sanitize:!1,sanitizer:null,silent:!1,smartLists:!1,smartypants:!1,xhtml:!1}},k.defaults=k.getDefaults(),k.Parser=l,k.parser=l.parse,k.Renderer=a,k.TextRenderer=s,k.Lexer=r,k.lexer=r.lex,k.InlineLexer=i,k.inlineLexer=i.output,k.Slugger=c,k.parse=k,e.exports=k}(this||"undefined"!=typeof window&&window)}).call(this,n(6))},function(e,t,n){var r=n(9);e.exports=function(e,t){if(!r(e))return e;var n,o;if(t&&"function"==typeof(n=e.toString)&&!r(o=n.call(e)))return o;if("function"==typeof(n=e.valueOf)&&!r(o=n.call(e)))return o;if(!t&&"function"==typeof(n=e.toString)&&!r(o=n.call(e)))return o;throw TypeError("Can't convert object to primitive value")}},function(e,t){var n=0,r=Math.random();e.exports=function(e){return"Symbol("+String(void 0===e?"":e)+")_"+(++n+r).toString(36)}},function(e,t,n){var r=n(70),o=n(55),i=r("keys");e.exports=function(e){return i[e]||(i[e]=o(e))}},function(e,t,n){var r,o=n(20),i=n(173),a=n(80),s=n(43),l=n(110),c=n(72),u=n(56),p=u("IE_PROTO"),f=function(){},d=function(e){return"